customeranalytics 0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (254) hide show
  1. customeranalytics/__init__.py +319 -0
  2. customeranalytics/configs.py +480 -0
  3. customeranalytics/data_storage_configurations/__init__.py +245 -0
  4. customeranalytics/data_storage_configurations/data_access.py +165 -0
  5. customeranalytics/data_storage_configurations/data_works_pipeline.py +207 -0
  6. customeranalytics/data_storage_configurations/es_create_index.py +544 -0
  7. customeranalytics/data_storage_configurations/logger.py +36 -0
  8. customeranalytics/data_storage_configurations/query_es.py +157 -0
  9. customeranalytics/data_storage_configurations/reports.py +684 -0
  10. customeranalytics/data_storage_configurations/schedule_data_integration.py +355 -0
  11. customeranalytics/docs/queries.yaml +245 -0
  12. customeranalytics/docs/web_configs.yaml +2 -0
  13. customeranalytics/exploratory_analysis/__init__.py +109 -0
  14. customeranalytics/exploratory_analysis/churn.py +232 -0
  15. customeranalytics/exploratory_analysis/cohorts.py +535 -0
  16. customeranalytics/exploratory_analysis/descriptive_statistics.py +470 -0
  17. customeranalytics/exploratory_analysis/funnels.py +407 -0
  18. customeranalytics/exploratory_analysis/product_analytics.py +340 -0
  19. customeranalytics/exploratory_analysis/promotion_analytics.py +299 -0
  20. customeranalytics/exploratory_analysis/rfm.py +202 -0
  21. customeranalytics/exploratory_analysis/sample_data/sample_data_avg_order_count_per_promo_per_cust.csv +99 -0
  22. customeranalytics/exploratory_analysis/sample_data/sample_data_chart_1_search.csv +2 -0
  23. customeranalytics/exploratory_analysis/sample_data/sample_data_chart_2_search.csv +46 -0
  24. customeranalytics/exploratory_analysis/sample_data/sample_data_chart_3_search.csv +2 -0
  25. customeranalytics/exploratory_analysis/sample_data/sample_data_chart_4_search.csv +2 -0
  26. customeranalytics/exploratory_analysis/sample_data/sample_data_churn.csv +2 -0
  27. customeranalytics/exploratory_analysis/sample_data/sample_data_churn_weekly.csv +10 -0
  28. customeranalytics/exploratory_analysis/sample_data/sample_data_client_feature_predicted.csv +1590 -0
  29. customeranalytics/exploratory_analysis/sample_data/sample_data_client_kpis.csv +7060 -0
  30. customeranalytics/exploratory_analysis/sample_data/sample_data_clvrfm_anomaly.csv +561 -0
  31. customeranalytics/exploratory_analysis/sample_data/sample_data_clvsegments_amount.csv +8 -0
  32. customeranalytics/exploratory_analysis/sample_data/sample_data_customer_journey.csv +18 -0
  33. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_clv.csv +103 -0
  34. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_cohort_downloads.csv +68 -0
  35. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_cohort_from_1_to_2.csv +66 -0
  36. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_cohort_from_2_to_3.csv +64 -0
  37. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_cohort_from_3_to_4.csv +55 -0
  38. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_dimension_values.csv +199 -0
  39. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_funnel.csv +36 -0
  40. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_funnel_downloads.csv +68 -0
  41. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_inorganic_ratio.csv +6070 -0
  42. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_orders.csv +57 -0
  43. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_organic_orders.csv +64 -0
  44. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_products_of_sales.csv +12574 -0
  45. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_promotion_discount.csv +64 -0
  46. customeranalytics/exploratory_analysis/sample_data/sample_data_daily_promotion_revenue.csv +6070 -0
  47. customeranalytics/exploratory_analysis/sample_data/sample_data_dcohort_anomaly.csv +6 -0
  48. customeranalytics/exploratory_analysis/sample_data/sample_data_dcohort_anomaly_2.csv +118 -0
  49. customeranalytics/exploratory_analysis/sample_data/sample_data_deliver.csv +47 -0
  50. customeranalytics/exploratory_analysis/sample_data/sample_data_deliver_kpis.csv +2 -0
  51. customeranalytics/exploratory_analysis/sample_data/sample_data_deliver_weekday_hour.csv +25 -0
  52. customeranalytics/exploratory_analysis/sample_data/sample_data_dfunnel_anomaly.csv +118 -0
  53. customeranalytics/exploratory_analysis/sample_data/sample_data_dimension_kpis.csv +199 -0
  54. customeranalytics/exploratory_analysis/sample_data/sample_data_dorders_anomaly.csv +85 -0
  55. customeranalytics/exploratory_analysis/sample_data/sample_data_frequency_clusters.csv +6 -0
  56. customeranalytics/exploratory_analysis/sample_data/sample_data_frequency_recency.csv +3740 -0
  57. customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_funnel.csv +25 -0
  58. customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_funnel_downloads.csv +25 -0
  59. customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_inorganic_ratio.csv +2353 -0
  60. customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_orders.csv +25 -0
  61. customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_organic_orders.csv +2353 -0
  62. customeranalytics/exploratory_analysis/sample_data/sample_data_inorganic_orders_per_promotion_per_day.csv +6070 -0
  63. customeranalytics/exploratory_analysis/sample_data/sample_data_kpis.csv +2 -0
  64. customeranalytics/exploratory_analysis/sample_data/sample_data_monetary_clusters.csv +6 -0
  65. customeranalytics/exploratory_analysis/sample_data/sample_data_monetary_frequency.csv +3740 -0
  66. customeranalytics/exploratory_analysis/sample_data/sample_data_monthly_funnel.csv +5 -0
  67. customeranalytics/exploratory_analysis/sample_data/sample_data_monthly_funnel_downloads.csv +5 -0
  68. customeranalytics/exploratory_analysis/sample_data/sample_data_monthly_orders.csv +4 -0
  69. customeranalytics/exploratory_analysis/sample_data/sample_data_most_combined_products.csv +11 -0
  70. customeranalytics/exploratory_analysis/sample_data/sample_data_most_ordered_categories.csv +11 -0
  71. customeranalytics/exploratory_analysis/sample_data/sample_data_most_ordered_products.csv +11 -0
  72. customeranalytics/exploratory_analysis/sample_data/sample_data_order_and_payment_amount_differences.csv +91 -0
  73. customeranalytics/exploratory_analysis/sample_data/sample_data_prepare.csv +101 -0
  74. customeranalytics/exploratory_analysis/sample_data/sample_data_prepare_weekday_hour.csv +25 -0
  75. customeranalytics/exploratory_analysis/sample_data/sample_data_product_kpis.csv +201 -0
  76. customeranalytics/exploratory_analysis/sample_data/sample_data_product_usage_before_after_amount_accept.csv +11 -0
  77. customeranalytics/exploratory_analysis/sample_data/sample_data_product_usage_before_after_amount_reject.csv +7 -0
  78. customeranalytics/exploratory_analysis/sample_data/sample_data_product_usage_before_after_orders_accept.csv +11 -0
  79. customeranalytics/exploratory_analysis/sample_data/sample_data_product_usage_before_after_orders_reject.csv +11 -0
  80. customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_comparison.csv +91 -0
  81. customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_kpis.csv +99 -0
  82. customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_number_of_customer.csv +99 -0
  83. customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_usage_before_after_amount_accept.csv +81 -0
  84. customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_usage_before_after_amount_reject.csv +11 -0
  85. customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_usage_before_after_orders_accept.csv +55 -0
  86. customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_usage_before_after_orders_reject.csv +37 -0
  87. customeranalytics/exploratory_analysis/sample_data/sample_data_purchase_amount_distribution.csv +22 -0
  88. customeranalytics/exploratory_analysis/sample_data/sample_data_recency_clusters.csv +6 -0
  89. customeranalytics/exploratory_analysis/sample_data/sample_data_recency_monetary.csv +3740 -0
  90. customeranalytics/exploratory_analysis/sample_data/sample_data_rfm.csv +2001 -0
  91. customeranalytics/exploratory_analysis/sample_data/sample_data_ride.csv +101 -0
  92. customeranalytics/exploratory_analysis/sample_data/sample_data_ride_weekday_hour.csv +25 -0
  93. customeranalytics/exploratory_analysis/sample_data/sample_data_segmentation.csv +11 -0
  94. customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_daily_before_after_amount.csv +10 -0
  95. customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_daily_before_after_orders.csv +9 -0
  96. customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_monthly_before_after_amount.csv +10 -0
  97. customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_monthly_before_after_orders.csv +11 -0
  98. customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_weekly_before_after_amount.csv +10 -0
  99. customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_weekly_before_after_orders.csv +10 -0
  100. customeranalytics/exploratory_analysis/sample_data/sample_data_user_counts_per_order_seq.csv +47 -0
  101. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_average_order_per_user.csv +13 -0
  102. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_average_payment_amount.csv +13 -0
  103. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_average_session_per_user.csv +13 -0
  104. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_cohort_downloads.csv +13 -0
  105. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_cohort_from_1_to_2.csv +13 -0
  106. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_cohort_from_2_to_3.csv +13 -0
  107. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_cohort_from_3_to_4.csv +12 -0
  108. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_funnel.csv +25 -0
  109. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_funnel_downloads.csv +25 -0
  110. customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_orders.csv +10 -0
  111. customeranalytics/ml_process/__init__.py +64 -0
  112. customeranalytics/ml_process/ab_test.py +615 -0
  113. customeranalytics/ml_process/anomaly_detection.py +456 -0
  114. customeranalytics/ml_process/clv_prediction.py +301 -0
  115. customeranalytics/ml_process/customer_segmentation.py +354 -0
  116. customeranalytics/ml_process/delivery_analytics.py +754 -0
  117. customeranalytics/utils.py +186 -0
  118. customeranalytics/web/app/__init__.py +37 -0
  119. customeranalytics/web/app/base/__init__.py +9 -0
  120. customeranalytics/web/app/base/forms.py +16 -0
  121. customeranalytics/web/app/base/models.py +43 -0
  122. customeranalytics/web/app/base/routes.py +126 -0
  123. customeranalytics/web/app/base/static/assets/css/app.css +20 -0
  124. customeranalytics/web/app/base/static/assets/fonts/Inter-Black.woff +0 -0
  125. customeranalytics/web/app/base/static/assets/fonts/Inter-Black.woff2 +0 -0
  126. customeranalytics/web/app/base/static/assets/fonts/Inter-BlackItalic.woff +0 -0
  127. customeranalytics/web/app/base/static/assets/fonts/Inter-BlackItalic.woff2 +0 -0
  128. customeranalytics/web/app/base/static/assets/fonts/Inter-Bold.woff +0 -0
  129. customeranalytics/web/app/base/static/assets/fonts/Inter-Bold.woff2 +0 -0
  130. customeranalytics/web/app/base/static/assets/fonts/Inter-BoldItalic.woff +0 -0
  131. customeranalytics/web/app/base/static/assets/fonts/Inter-BoldItalic.woff2 +0 -0
  132. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraBold.woff +0 -0
  133. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraBold.woff2 +0 -0
  134. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraBoldItalic.woff +0 -0
  135. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraBoldItalic.woff2 +0 -0
  136. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraLight-BETA.woff +0 -0
  137. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraLight-BETA.woff2 +0 -0
  138. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraLightItalic-BETA.woff +0 -0
  139. customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraLightItalic-BETA.woff2 +0 -0
  140. customeranalytics/web/app/base/static/assets/fonts/Inter-Italic.woff +0 -0
  141. customeranalytics/web/app/base/static/assets/fonts/Inter-Italic.woff2 +0 -0
  142. customeranalytics/web/app/base/static/assets/fonts/Inter-Light-BETA.woff +0 -0
  143. customeranalytics/web/app/base/static/assets/fonts/Inter-Light-BETA.woff2 +0 -0
  144. customeranalytics/web/app/base/static/assets/fonts/Inter-LightItalic-BETA.woff +0 -0
  145. customeranalytics/web/app/base/static/assets/fonts/Inter-LightItalic-BETA.woff2 +0 -0
  146. customeranalytics/web/app/base/static/assets/fonts/Inter-Medium.woff +0 -0
  147. customeranalytics/web/app/base/static/assets/fonts/Inter-Medium.woff2 +0 -0
  148. customeranalytics/web/app/base/static/assets/fonts/Inter-MediumItalic.woff +0 -0
  149. customeranalytics/web/app/base/static/assets/fonts/Inter-MediumItalic.woff2 +0 -0
  150. customeranalytics/web/app/base/static/assets/fonts/Inter-Regular.woff +0 -0
  151. customeranalytics/web/app/base/static/assets/fonts/Inter-Regular.woff2 +0 -0
  152. customeranalytics/web/app/base/static/assets/fonts/Inter-SemiBold.woff +0 -0
  153. customeranalytics/web/app/base/static/assets/fonts/Inter-SemiBold.woff2 +0 -0
  154. customeranalytics/web/app/base/static/assets/fonts/Inter-SemiBoldItalic.woff +0 -0
  155. customeranalytics/web/app/base/static/assets/fonts/Inter-SemiBoldItalic.woff2 +0 -0
  156. customeranalytics/web/app/base/static/assets/fonts/Inter-Thin-BETA.woff +0 -0
  157. customeranalytics/web/app/base/static/assets/fonts/Inter-Thin-BETA.woff2 +0 -0
  158. customeranalytics/web/app/base/static/assets/fonts/Inter-ThinItalic-BETA.woff +0 -0
  159. customeranalytics/web/app/base/static/assets/fonts/Inter-ThinItalic-BETA.woff2 +0 -0
  160. customeranalytics/web/app/base/static/assets/fonts/Inter-italic.var.woff2 +0 -0
  161. customeranalytics/web/app/base/static/assets/fonts/Inter-upright.var.woff2 +0 -0
  162. customeranalytics/web/app/base/static/assets/fonts/Inter.var.woff2 +0 -0
  163. customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.eot +0 -0
  164. customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.svg +3570 -0
  165. customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.ttf +0 -0
  166. customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.woff +0 -0
  167. customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.woff2 +0 -0
  168. customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.eot +0 -0
  169. customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.svg +801 -0
  170. customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.ttf +0 -0
  171. customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.woff +0 -0
  172. customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.woff2 +0 -0
  173. customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.eot +0 -0
  174. customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.svg +5028 -0
  175. customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.ttf +0 -0
  176. customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.woff +0 -0
  177. customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.woff2 +0 -0
  178. customeranalytics/web/app/base/static/assets/img/avatars/avatar-1.png +0 -0
  179. customeranalytics/web/app/base/static/assets/img/avatars/avatar-2.png +0 -0
  180. customeranalytics/web/app/base/static/assets/img/avatars/avatar-3.png +0 -0
  181. customeranalytics/web/app/base/static/assets/img/avatars/avatar-4.png +0 -0
  182. customeranalytics/web/app/base/static/assets/img/avatars/avatar-5.png +0 -0
  183. customeranalytics/web/app/base/static/assets/img/avatars/info.jpeg +0 -0
  184. customeranalytics/web/app/base/static/assets/img/icons/customanality.png +0 -0
  185. customeranalytics/web/app/base/static/assets/img/icons/icon-48x48.png +0 -0
  186. customeranalytics/web/app/base/static/assets/js/app.js +2 -0
  187. customeranalytics/web/app/base/static/assets/js/app.js.LICENSE +566 -0
  188. customeranalytics/web/app/base/static/assets/js/app.js.LICENSE.txt +556 -0
  189. customeranalytics/web/app/base/static/assets/js/modules/bootstrap.js +15 -0
  190. customeranalytics/web/app/base/static/assets/js/modules/chartjs.js +4 -0
  191. customeranalytics/web/app/base/static/assets/js/modules/feather.js +8 -0
  192. customeranalytics/web/app/base/static/assets/js/modules/flatpickr.js +4 -0
  193. customeranalytics/web/app/base/static/assets/js/modules/moment.js +4 -0
  194. customeranalytics/web/app/base/static/assets/js/modules/sidebar.js +23 -0
  195. customeranalytics/web/app/base/static/assets/js/modules/theme.js +16 -0
  196. customeranalytics/web/app/base/templates/accounts/login.html +81 -0
  197. customeranalytics/web/app/base/templates/accounts/register.html +80 -0
  198. customeranalytics/web/app/base/templates/includes/footer.html +28 -0
  199. customeranalytics/web/app/base/templates/includes/navigation.html +51 -0
  200. customeranalytics/web/app/base/templates/includes/scripts.html +3 -0
  201. customeranalytics/web/app/base/templates/includes/sidebar.html +146 -0
  202. customeranalytics/web/app/base/templates/layouts/base-fullscreen.html +36 -0
  203. customeranalytics/web/app/base/templates/layouts/base.html +84 -0
  204. customeranalytics/web/app/base/util.py +30 -0
  205. customeranalytics/web/app/home/__init__.py +9 -0
  206. customeranalytics/web/app/home/forms.py +1039 -0
  207. customeranalytics/web/app/home/models.py +438 -0
  208. customeranalytics/web/app/home/profiles.py +310 -0
  209. customeranalytics/web/app/home/routes.py +386 -0
  210. customeranalytics/web/app/home/search.py +288 -0
  211. customeranalytics/web/app/home/static/assets/img/avatars/avatar-1.png +0 -0
  212. customeranalytics/web/app/home/static/assets/img/avatars/avatar-2.png +0 -0
  213. customeranalytics/web/app/home/static/assets/img/avatars/avatar-3.png +0 -0
  214. customeranalytics/web/app/home/static/assets/img/avatars/avatar-4.png +0 -0
  215. customeranalytics/web/app/home/static/assets/img/avatars/avatar-5.png +0 -0
  216. customeranalytics/web/app/home/static/assets/img/icons/customanality.png +0 -0
  217. customeranalytics/web/app/home/static/assets/img/icons/icon-48x48.png +0 -0
  218. customeranalytics/web/app/home/templates/abtest-product.html +280 -0
  219. customeranalytics/web/app/home/templates/abtest-promotion.html +362 -0
  220. customeranalytics/web/app/home/templates/abtest-segments.html +298 -0
  221. customeranalytics/web/app/home/templates/add-data-delivery.html +184 -0
  222. customeranalytics/web/app/home/templates/add-data-product.html +177 -0
  223. customeranalytics/web/app/home/templates/add-data-purchase.html +392 -0
  224. customeranalytics/web/app/home/templates/anomaly.html +261 -0
  225. customeranalytics/web/app/home/templates/clv.html +211 -0
  226. customeranalytics/web/app/home/templates/cohorts.html +308 -0
  227. customeranalytics/web/app/home/templates/customer-segmentation.html +308 -0
  228. customeranalytics/web/app/home/templates/data-es.html +152 -0
  229. customeranalytics/web/app/home/templates/data-execute.html +397 -0
  230. customeranalytics/web/app/home/templates/delivery.html +404 -0
  231. customeranalytics/web/app/home/templates/funnel-customer.html +240 -0
  232. customeranalytics/web/app/home/templates/funnel-session.html +236 -0
  233. customeranalytics/web/app/home/templates/index.html +524 -0
  234. customeranalytics/web/app/home/templates/index2.html +515 -0
  235. customeranalytics/web/app/home/templates/page-403.html +46 -0
  236. customeranalytics/web/app/home/templates/page-404.html +45 -0
  237. customeranalytics/web/app/home/templates/page-500.html +45 -0
  238. customeranalytics/web/app/home/templates/pages-blank.html +33 -0
  239. customeranalytics/web/app/home/templates/pages-sign-in.html +67 -0
  240. customeranalytics/web/app/home/templates/pages-sign-up.html +61 -0
  241. customeranalytics/web/app/home/templates/product.html +203 -0
  242. customeranalytics/web/app/home/templates/profile.html +1009 -0
  243. customeranalytics/web/app/home/templates/rfm.html +254 -0
  244. customeranalytics/web/app/home/templates/search.html +167 -0
  245. customeranalytics/web/app/home/templates/settings.html +205 -0
  246. customeranalytics/web/app/home/templates/stats-desc.html +230 -0
  247. customeranalytics/web/app/home/templates/stats-purchase.html +221 -0
  248. customeranalytics/web/config.py +30 -0
  249. customeranalytics/web/db.sqlite3 +0 -0
  250. customeranalytics/web/run.py +30 -0
  251. customeranalytics-0.1.dist-info/METADATA +1102 -0
  252. customeranalytics-0.1.dist-info/RECORD +254 -0
  253. customeranalytics-0.1.dist-info/WHEEL +4 -0
  254. customeranalytics-0.1.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,3740 @@
1
+ recency,monetary,segments_numeric
2
+ 1364,45.17,11.0
3
+ 218,37.51,3.0
4
+ 697,28.15,1.0
5
+ 793,18.642500000000002,1.0
6
+ 470,19.905,11.0
7
+ 1211,40.64,2.0
8
+ 2040,38.78,10.0
9
+ 1379,29.057499999999997,7.0
10
+ 1514,35.412499999999994,5.0
11
+ 601,37.02,2.0
12
+ 869,33.915,2.0
13
+ 39,29.08,
14
+ 1604,34.644999999999996,11.0
15
+ 197,29.035,1.0
16
+ 696,43.2,4.0
17
+ 506,16.427500000000002,11.0
18
+ 176,23.0375,1.0
19
+ 1444,30.2375,7.0
20
+ 124,25.54,1.0
21
+ 420,42.2375,3.0
22
+ 90,35.16,
23
+ 1360,31.295,5.0
24
+ 411,26.987499999999997,3.0
25
+ 107,38.572500000000005,
26
+ 164,44.5225,3.0
27
+ 968,20.085,1.0
28
+ 1179,25.675,1.0
29
+ 195,30.854999999999997,3.0
30
+ 1240,30.4375,1.0
31
+ 1307,46.355000000000004,11.0
32
+ 913,31.028333333333336,1.0
33
+ 720,26.339999999999996,2.0
34
+ 135,41.9875,11.0
35
+ 1081,24.375,1.0
36
+ 1156,46.2625,11.0
37
+ 825,27.96,11.0
38
+ 2316,28.665,10.0
39
+ 2067,14.807500000000001,10.0
40
+ 179,32.0325,1.0
41
+ 362,50.275000000000006,11.0
42
+ 1807,16.975,7.0
43
+ 944,25.07,11.0
44
+ 250,36.739999999999995,2.0
45
+ 1056,22.674999999999997,1.0
46
+ 1080,40.815,2.0
47
+ 1970,42.045,10.0
48
+ 96,32.35,5.0
49
+ 1129,25.682499999999997,1.0
50
+ 388,38.667500000000004,3.0
51
+ 1876,30.150000000000002,10.0
52
+ 1238,25.1175,1.0
53
+ 1439,30.975,5.0
54
+ 156,31.0875,3.0
55
+ 940,38.605000000000004,2.0
56
+ 315,35.1125,3.0
57
+ 532,55.917500000000004,11.0
58
+ 2317,39.595,10.0
59
+ 1060,23.765,1.0
60
+ 852,28.1625,11.0
61
+ 758,19.674999999999997,1.0
62
+ 481,36.4225,2.0
63
+ 1542,33.7025,11.0
64
+ 816,13.2475,1.0
65
+ 1106,32.58,1.0
66
+ 244,17.065,0.0
67
+ 1200,22.59,1.0
68
+ 290,33.94,2.0
69
+ 998,26.14,1.0
70
+ 96,28.4725,
71
+ 341,21.2675,3.0
72
+ 1198,20.22,1.0
73
+ 74,33.2525,
74
+ 1197,21.93,1.0
75
+ 1812,29.0625,7.0
76
+ 1083,30.425,5.0
77
+ 624,25.1525,11.0
78
+ 131,37.5325,3.0
79
+ 725,27.325000000000003,1.0
80
+ 291,24.585,1.0
81
+ 2117,40.1725,10.0
82
+ 356,28.474999999999998,1.0
83
+ 698,27.775,1.0
84
+ 1123,34.2675,2.0
85
+ 400,35.015,2.0
86
+ 312,16.735,1.0
87
+ 865,31.037499999999998,1.0
88
+ 674,29.0,1.0
89
+ 2146,35.89,10.0
90
+ 965,13.677499999999998,1.0
91
+ 626,20.5475,1.0
92
+ 1539,27.87,7.0
93
+ 176,20.21,1.0
94
+ 139,27.7,1.0
95
+ 721,42.3225,11.0
96
+ 2257,39.2425,10.0
97
+ 581,28.095000000000002,11.0
98
+ 216,40.225,3.0
99
+ 272,32.93333333333333,1.0
100
+ 225,17.994999999999997,3.0
101
+ 82,37.8325,
102
+ 724,12.287500000000001,1.0
103
+ 1019,31.2375,1.0
104
+ 1623,30.6675,7.0
105
+ 750,41.8625,11.0
106
+ 207,39.317499999999995,3.0
107
+ 217,34.67,2.0
108
+ 440,25.23,3.0
109
+ 1153,30.5125,1.0
110
+ 917,21.79,1.0
111
+ 970,29.705,1.0
112
+ 641,21.225,1.0
113
+ 1541,43.557500000000005,11.0
114
+ 37,35.71,
115
+ 283,27.8475,1.0
116
+ 1636,34.545,11.0
117
+ 325,32.4275,1.0
118
+ 1299,41.225,2.0
119
+ 557,10.6475,1.0
120
+ 674,16.955,1.0
121
+ 893,23.85,11.0
122
+ 1321,22.525,1.0
123
+ 1034,15.875,1.0
124
+ 26,29.619999999999997,
125
+ 288,28.259999999999998,3.0
126
+ 1683,13.3475,7.0
127
+ 1373,33.7625,11.0
128
+ 29,37.1525,
129
+ 396,23.8275,1.0
130
+ 2016,51.8675,10.0
131
+ 245,45.0275,3.0
132
+ 485,43.66,11.0
133
+ 467,24.405,11.0
134
+ 472,19.534999999999997,1.0
135
+ 1061,29.177500000000002,1.0
136
+ 1165,34.7175,2.0
137
+ 747,26.725,11.0
138
+ 315,33.26,1.0
139
+ 683,40.11,2.0
140
+ 1133,27.8375,1.0
141
+ 113,25.805,
142
+ 124,21.43,1.0
143
+ 527,30.299999999999997,1.0
144
+ 49,29.18,
145
+ 976,29.575,1.0
146
+ 588,35.072500000000005,2.0
147
+ 1273,39.18,2.0
148
+ 2647,26.335,10.0
149
+ 144,46.620000000000005,3.0
150
+ 549,27.975,11.0
151
+ 2311,26.2825,3.0
152
+ 822,25.96,1.0
153
+ 659,35.685,4.0
154
+ 866,22.130000000000003,1.0
155
+ 93,37.645,
156
+ 655,35.39,2.0
157
+ 715,36.807500000000005,1.0
158
+ 1059,12.6275,1.0
159
+ 158,37.7575,3.0
160
+ 291,27.535000000000004,1.0
161
+ 363,36.3225,3.0
162
+ 1043,11.7525,1.0
163
+ 1944,26.5775,2.0
164
+ 724,24.677500000000002,11.0
165
+ 265,23.424999999999997,1.0
166
+ 2112,31.115000000000002,10.0
167
+ 802,30.64,1.0
168
+ 48,28.8825,
169
+ 1032,40.7075,2.0
170
+ 974,29.5325,1.0
171
+ 754,28.93,11.0
172
+ 1178,28.915,1.0
173
+ 2093,38.565,10.0
174
+ 591,14.647499999999999,11.0
175
+ 2043,23.9775,10.0
176
+ 2093,28.0875,10.0
177
+ 724,44.885000000000005,11.0
178
+ 1623,27.57,7.0
179
+ 530,15.622499999999999,1.0
180
+ 1980,25.5425,10.0
181
+ 749,29.332500000000003,2.0
182
+ 432,16.1625,0.0
183
+ 1373,35.0225,1.0
184
+ 2348,31.1175,10.0
185
+ 366,35.962500000000006,2.0
186
+ 1521,34.699999999999996,11.0
187
+ 469,32.504999999999995,11.0
188
+ 965,46.7025,11.0
189
+ 985,15.7375,11.0
190
+ 1946,37.435,10.0
191
+ 1765,30.5,5.0
192
+ 1753,23.549999999999997,7.0
193
+ 988,26.005000000000003,1.0
194
+ 192,38.69,3.0
195
+ 1416,23.3325,7.0
196
+ 2145,33.125,10.0
197
+ 102,29.634999999999998,
198
+ 799,19.325000000000003,11.0
199
+ 1855,36.595,11.0
200
+ 495,39.942499999999995,2.0
201
+ 1265,28.815,1.0
202
+ 727,32.24,1.0
203
+ 2045,20.575,10.0
204
+ 1467,25.715,7.0
205
+ 374,28.3,1.0
206
+ 2108,28.5225,10.0
207
+ 1587,51.075,11.0
208
+ 77,24.2675,
209
+ 991,35.260000000000005,4.0
210
+ 997,27.5075,1.0
211
+ 1033,37.0,2.0
212
+ 58,17.3575,
213
+ 218,30.267500000000002,1.0
214
+ 2118,28.2175,10.0
215
+ 124,43.3225,11.0
216
+ 492,25.9375,1.0
217
+ 193,31.5325,1.0
218
+ 20,23.57,
219
+ 1989,34.376666666666665,10.0
220
+ 266,31.5925,3.0
221
+ 300,23.535,3.0
222
+ 1095,24.625,1.0
223
+ 820,40.345,2.0
224
+ 458,16.857499999999998,11.0
225
+ 124,15.399999999999999,3.0
226
+ 1332,13.4325,1.0
227
+ 2247,15.7775,8.0
228
+ 1288,23.4575,1.0
229
+ 1972,22.6075,10.0
230
+ 674,35.7175,2.0
231
+ 1970,22.9025,10.0
232
+ 1706,29.669999999999998,7.0
233
+ 169,32.2175,1.0
234
+ 295,23.027500000000003,1.0
235
+ 1075,33.485,5.0
236
+ 324,17.895,0.0
237
+ 1651,37.0975,2.0
238
+ 435,31.752499999999998,1.0
239
+ 817,40.18,2.0
240
+ 49,22.46,
241
+ 1490,26.845,7.0
242
+ 50,35.7075,
243
+ 1589,37.0325,7.0
244
+ 2268,18.12,8.0
245
+ 302,47.805,3.0
246
+ 252,38.43,2.0
247
+ 1658,31.93,5.0
248
+ 97,26.207500000000003,
249
+ 123,34.0925,3.0
250
+ 612,26.720000000000002,11.0
251
+ 2011,23.1625,10.0
252
+ 314,28.737499999999997,3.0
253
+ 289,25.945,1.0
254
+ 2293,22.9975,10.0
255
+ 1521,8.4925,7.0
256
+ 195,28.442500000000003,3.0
257
+ 631,32.057500000000005,2.0
258
+ 168,24.65,3.0
259
+ 1929,35.3175,10.0
260
+ 1279,23.134999999999998,11.0
261
+ 1541,41.3125,11.0
262
+ 1218,33.955,2.0
263
+ 170,40.425,2.0
264
+ 201,28.384999999999998,3.0
265
+ 553,40.1525,2.0
266
+ 1886,28.294999999999998,10.0
267
+ 1835,28.8175,5.0
268
+ 2237,30.9825,10.0
269
+ 1492,24.7175,7.0
270
+ 1468,14.875,7.0
271
+ 1066,31.052500000000002,1.0
272
+ 99,22.43,7.0
273
+ 1324,24.1725,1.0
274
+ 1097,35.075,2.0
275
+ 173,28.94,3.0
276
+ 360,43.8775,3.0
277
+ 19,14.307500000000001,
278
+ 1395,28.54,7.0
279
+ 364,37.5125,2.0
280
+ 1373,28.555,5.0
281
+ 3,29.13,
282
+ 1795,16.0975,7.0
283
+ 365,21.41,3.0
284
+ 2090,18.1075,8.0
285
+ 66,18.9725,
286
+ 793,32.49,11.0
287
+ 260,22.5975,3.0
288
+ 663,50.462500000000006,11.0
289
+ 392,22.802500000000002,1.0
290
+ 1586,36.144999999999996,5.0
291
+ 712,37.565,4.0
292
+ 1035,31.122500000000002,1.0
293
+ 1666,17.68,7.0
294
+ 219,19.465,3.0
295
+ 418,30.333333333333332,1.0
296
+ 396,36.9375,2.0
297
+ 994,39.1875,2.0
298
+ 727,25.0675,11.0
299
+ 659,23.615000000000002,11.0
300
+ 1397,38.47,11.0
301
+ 337,24.785,3.0
302
+ 591,23.125,1.0
303
+ 250,21.165,3.0
304
+ 940,33.3925,1.0
305
+ 1538,20.1375,7.0
306
+ 1707,43.92,11.0
307
+ 301,27.707500000000003,1.0
308
+ 522,39.4375,2.0
309
+ 362,17.919999999999998,0.0
310
+ 292,14.91,3.0
311
+ 315,14.850000000000001,1.0
312
+ 843,8.455,11.0
313
+ 1515,29.2375,7.0
314
+ 438,22.189999999999998,1.0
315
+ 1995,23.4975,10.0
316
+ 974,41.650000000000006,4.0
317
+ 1923,29.6075,10.0
318
+ 914,53.2525,4.0
319
+ 1805,36.35,11.0
320
+ 1718,34.537499999999994,11.0
321
+ 1263,30.9075,1.0
322
+ 69,43.2025,
323
+ 440,34.69,2.0
324
+ 917,30.740000000000002,5.0
325
+ 1277,27.979999999999997,5.0
326
+ 1181,20.384999999999998,1.0
327
+ 2077,37.1125,10.0
328
+ 391,22.2225,3.0
329
+ 2139,42.3425,10.0
330
+ 75,22.197499999999998,
331
+ 1504,25.255,7.0
332
+ 744,35.4725,2.0
333
+ 650,21.655,11.0
334
+ 1497,31.35,7.0
335
+ 373,47.849999999999994,3.0
336
+ 2156,40.4525,10.0
337
+ 1277,26.6575,1.0
338
+ 389,30.3875,1.0
339
+ 1,15.6325,
340
+ 1907,24.5925,10.0
341
+ 1949,45.019999999999996,10.0
342
+ 729,38.0025,2.0
343
+ 486,42.37,4.0
344
+ 695,21.25,11.0
345
+ 2199,27.002499999999998,7.0
346
+ 989,39.125,2.0
347
+ 844,30.0125,11.0
348
+ 196,41.935,3.0
349
+ 561,38.72,2.0
350
+ 341,22.84,3.0
351
+ 1441,36.364999999999995,5.0
352
+ 2206,28.5225,10.0
353
+ 845,38.6025,4.0
354
+ 73,38.629999999999995,
355
+ 338,31.369999999999997,1.0
356
+ 322,37.455,2.0
357
+ 1229,43.8525,11.0
358
+ 444,21.6725,3.0
359
+ 384,41.04,2.0
360
+ 308,30.8675,3.0
361
+ 587,18.135,1.0
362
+ 1541,26.8575,7.0
363
+ 1257,34.57,2.0
364
+ 609,16.6075,1.0
365
+ 1059,29.36,5.0
366
+ 392,48.6975,11.0
367
+ 1396,27.372500000000002,7.0
368
+ 434,36.745000000000005,3.0
369
+ 1382,42.91,11.0
370
+ 617,31.042499999999997,1.0
371
+ 888,20.575,1.0
372
+ 392,39.2975,2.0
373
+ 130,28.4975,3.0
374
+ 1811,40.3825,11.0
375
+ 1369,25.544999999999998,7.0
376
+ 891,40.4775,2.0
377
+ 1751,33.6575,11.0
378
+ 578,33.3225,1.0
379
+ 584,33.7725,2.0
380
+ 135,32.2525,3.0
381
+ 240,33.285,3.0
382
+ 915,24.4625,11.0
383
+ 1610,16.68,7.0
384
+ 843,14.575,1.0
385
+ 1366,24.475,7.0
386
+ 1091,27.4375,1.0
387
+ 238,19.9925,3.0
388
+ 928,24.245,1.0
389
+ 677,36.8725,4.0
390
+ 1109,23.15,11.0
391
+ 417,31.965000000000003,3.0
392
+ 2184,25.2675,10.0
393
+ 794,30.455,11.0
394
+ 652,40.5975,4.0
395
+ 1555,22.5275,7.0
396
+ 323,20.2225,3.0
397
+ 581,29.9075,1.0
398
+ 1034,23.447499999999998,1.0
399
+ 267,41.192499999999995,3.0
400
+ 218,39.8825,3.0
401
+ 604,40.275,2.0
402
+ 2570,24.865000000000002,10.0
403
+ 604,32.335,11.0
404
+ 872,36.5275,2.0
405
+ 2616,22.8725,10.0
406
+ 1369,14.997499999999999,7.0
407
+ 690,32.9875,1.0
408
+ 480,36.4875,2.0
409
+ 687,30.182499999999997,11.0
410
+ 984,19.57,1.0
411
+ 530,36.58,4.0
412
+ 1229,28.409999999999997,1.0
413
+ 1519,31.025000000000002,5.0
414
+ 1256,28.6475,1.0
415
+ 1635,15.987499999999999,7.0
416
+ 178,41.2875,2.0
417
+ 1353,28.165,7.0
418
+ 1546,35.150000000000006,11.0
419
+ 632,17.46,1.0
420
+ 290,26.294999999999998,1.0
421
+ 1207,25.425,1.0
422
+ 338,27.1675,3.0
423
+ 2055,31.96,10.0
424
+ 2483,23.0125,10.0
425
+ 939,38.745000000000005,2.0
426
+ 153,29.729999999999997,1.0
427
+ 192,38.27166666666667,2.0
428
+ 229,19.619999999999997,3.0
429
+ 400,37.894999999999996,2.0
430
+ 1645,30.335,7.0
431
+ 363,43.0275,11.0
432
+ 1211,23.9125,1.0
433
+ 1907,39.3775,10.0
434
+ 1494,28.82166666666667,7.0
435
+ 158,35.442499999999995,1.0
436
+ 553,23.245,11.0
437
+ 349,19.197499999999998,3.0
438
+ 499,42.4075,2.0
439
+ 487,21.770000000000003,1.0
440
+ 2569,37.224999999999994,10.0
441
+ 216,21.384999999999998,3.0
442
+ 1368,27.245,7.0
443
+ 460,27.6175,11.0
444
+ 1464,20.112499999999997,7.0
445
+ 1363,31.49,5.0
446
+ 1150,17.4225,1.0
447
+ 443,34.0375,2.0
448
+ 1033,32.085,5.0
449
+ 795,34.28,4.0
450
+ 722,35.3525,4.0
451
+ 480,28.2525,11.0
452
+ 325,29.720000000000002,1.0
453
+ 788,33.8,1.0
454
+ 1138,29.177500000000002,1.0
455
+ 1036,29.4925,1.0
456
+ 9,25.1075,
457
+ 1067,20.622500000000002,1.0
458
+ 1618,27.44,7.0
459
+ 345,29.5475,1.0
460
+ 365,24.4575,1.0
461
+ 707,23.1875,1.0
462
+ 1423,36.5975,5.0
463
+ 1920,37.305,10.0
464
+ 1982,31.335,10.0
465
+ 1042,29.095,1.0
466
+ 673,23.3,11.0
467
+ 1376,40.2825,11.0
468
+ 1896,35.2125,10.0
469
+ 584,46.075,4.0
470
+ 618,25.32,11.0
471
+ 1786,25.9725,7.0
472
+ 744,28.509999999999998,1.0
473
+ 8,20.491666666666664,1.0
474
+ 173,16.72,3.0
475
+ 724,29.045,1.0
476
+ 1094,26.44,1.0
477
+ 432,27.6,3.0
478
+ 1536,33.8725,5.0
479
+ 724,18.67,11.0
480
+ 5,24.835,
481
+ 2129,18.48,8.0
482
+ 59,33.785,
483
+ 891,28.3975,1.0
484
+ 1086,42.855000000000004,11.0
485
+ 1956,41.1525,10.0
486
+ 1824,34.397499999999994,11.0
487
+ 388,30.3925,3.0
488
+ 2174,21.565,10.0
489
+ 1401,28.705,7.0
490
+ 2137,14.575,7.0
491
+ 1092,12.89,1.0
492
+ 350,18.5825,3.0
493
+ 1620,31.314999999999998,7.0
494
+ 104,46.53,4.0
495
+ 634,32.385,11.0
496
+ 1336,25.605,1.0
497
+ 795,21.615000000000002,1.0
498
+ 502,28.7725,11.0
499
+ 963,20.065,1.0
500
+ 1042,51.5225,11.0
501
+ 1965,46.695,10.0
502
+ 746,20.84,1.0
503
+ 1098,26.5275,1.0
504
+ 252,21.4725,1.0
505
+ 774,26.207499999999996,1.0
506
+ 1225,29.939999999999998,5.0
507
+ 991,39.7175,2.0
508
+ 297,15.982499999999998,3.0
509
+ 569,27.7175,1.0
510
+ 2209,30.6225,10.0
511
+ 341,23.92,3.0
512
+ 700,40.805,4.0
513
+ 792,20.0625,1.0
514
+ 464,39.067499999999995,4.0
515
+ 699,20.262500000000003,11.0
516
+ 626,29.235,1.0
517
+ 299,27.285000000000004,1.0
518
+ 651,25.055,1.0
519
+ 32,29.085,
520
+ 193,22.8,1.0
521
+ 2033,31.93,10.0
522
+ 823,19.502499999999998,1.0
523
+ 1323,26.525,1.0
524
+ 294,27.6125,3.0
525
+ 338,40.6025,2.0
526
+ 798,48.7975,4.0
527
+ 126,40.6475,3.0
528
+ 732,18.6475,1.0
529
+ 98,29.9575,1.0
530
+ 323,27.455000000000002,3.0
531
+ 1234,25.285,1.0
532
+ 219,30.7125,1.0
533
+ 2470,36.29,10.0
534
+ 1404,39.0,11.0
535
+ 1800,30.25,7.0
536
+ 339,34.7325,2.0
537
+ 1176,55.805,11.0
538
+ 559,19.545,1.0
539
+ 1470,24.1175,7.0
540
+ 1108,25.7525,1.0
541
+ 99,24.87,
542
+ 1139,35.7325,2.0
543
+ 1057,34.2025,4.0
544
+ 642,20.5,1.0
545
+ 843,30.752499999999998,11.0
546
+ 1809,33.1425,7.0
547
+ 1803,32.2375,7.0
548
+ 1652,28.987499999999997,7.0
549
+ 269,30.1575,1.0
550
+ 1114,16.817500000000003,1.0
551
+ 2093,23.8925,10.0
552
+ 634,39.05,2.0
553
+ 1588,33.29,5.0
554
+ 1008,20.127499999999998,1.0
555
+ 911,32.745,1.0
556
+ 1921,32.199999999999996,10.0
557
+ 2051,32.005,10.0
558
+ 1083,18.3075,1.0
559
+ 319,26.7325,1.0
560
+ 1009,29.9025,5.0
561
+ 451,21.945,3.0
562
+ 1971,29.195,10.0
563
+ 312,37.332499999999996,2.0
564
+ 1815,27.8675,7.0
565
+ 326,39.72,3.0
566
+ 1141,41.9025,11.0
567
+ 1379,26.5,7.0
568
+ 362,41.792500000000004,3.0
569
+ 557,16.6825,11.0
570
+ 168,23.214999999999996,3.0
571
+ 1589,33.4775,7.0
572
+ 747,21.085,11.0
573
+ 1131,25.7575,11.0
574
+ 197,28.785000000000004,1.0
575
+ 2005,28.095,10.0
576
+ 1061,19.1375,1.0
577
+ 1366,38.485,5.0
578
+ 827,33.6025,1.0
579
+ 2149,22.314999999999998,10.0
580
+ 1113,35.3425,4.0
581
+ 632,29.415,1.0
582
+ 1225,23.4825,1.0
583
+ 26,24.735,
584
+ 170,18.235,3.0
585
+ 1753,28.0475,5.0
586
+ 1421,35.864999999999995,5.0
587
+ 2584,33.2475,10.0
588
+ 147,26.445,3.0
589
+ 470,23.375,1.0
590
+ 985,16.16,1.0
591
+ 50,26.4125,
592
+ 1253,31.6175,1.0
593
+ 1133,26.3575,1.0
594
+ 217,21.887500000000003,1.0
595
+ 2003,24.6675,10.0
596
+ 1705,29.9925,5.0
597
+ 1152,25.442500000000003,1.0
598
+ 1555,39.45,11.0
599
+ 2341,27.16,10.0
600
+ 880,27.3075,1.0
601
+ 1395,41.0275,11.0
602
+ 34,28.1325,
603
+ 273,28.565,3.0
604
+ 300,21.7825,3.0
605
+ 556,16.9,11.0
606
+ 371,32.3075,3.0
607
+ 162,30.415,1.0
608
+ 1957,29.1025,10.0
609
+ 1,47.665,
610
+ 1526,21.3825,7.0
611
+ 826,28.6475,1.0
612
+ 171,39.942499999999995,2.0
613
+ 1251,17.18,1.0
614
+ 253,34.8925,2.0
615
+ 287,24.82,1.0
616
+ 298,14.0325,0.0
617
+ 396,29.5775,3.0
618
+ 773,16.974999999999998,1.0
619
+ 1265,26.869999999999997,1.0
620
+ 265,23.3075,1.0
621
+ 2042,23.55,10.0
622
+ 323,30.35,1.0
623
+ 2068,29.2125,10.0
624
+ 2270,25.4525,10.0
625
+ 1010,37.584999999999994,2.0
626
+ 14,30.72,
627
+ 1541,34.2975,11.0
628
+ 1032,33.855000000000004,2.0
629
+ 81,26.365,
630
+ 1664,19.31,7.0
631
+ 169,37.045,2.0
632
+ 721,44.3675,11.0
633
+ 2071,33.97,10.0
634
+ 1093,32.644999999999996,1.0
635
+ 159,36.114999999999995,3.0
636
+ 497,23.130000000000003,1.0
637
+ 1179,29.44,1.0
638
+ 1170,28.939999999999998,1.0
639
+ 625,43.385000000000005,11.0
640
+ 1337,30.2925,1.0
641
+ 1041,35.96,2.0
642
+ 12,29.4075,
643
+ 1660,24.1325,7.0
644
+ 2041,28.5275,10.0
645
+ 1975,8.1725,10.0
646
+ 317,26.729999999999997,1.0
647
+ 362,29.34,3.0
648
+ 0,32.5275,1.0
649
+ 1732,29.622500000000002,7.0
650
+ 97,47.7825,
651
+ 1978,26.89,10.0
652
+ 1969,17.5825,10.0
653
+ 97,27.637500000000003,
654
+ 190,40.825,2.0
655
+ 1973,29.619999999999997,10.0
656
+ 1393,18.63,7.0
657
+ 1632,25.6525,7.0
658
+ 989,24.7725,1.0
659
+ 246,49.1175,3.0
660
+ 1163,22.287499999999998,11.0
661
+ 292,24.395,1.0
662
+ 192,43.775000000000006,11.0
663
+ 380,26.23,3.0
664
+ 195,16.975,3.0
665
+ 1154,30.552500000000002,1.0
666
+ 628,29.03,1.0
667
+ 1128,19.35,1.0
668
+ 171,37.875,3.0
669
+ 1457,43.0475,11.0
670
+ 987,37.7975,2.0
671
+ 486,26.832500000000003,1.0
672
+ 162,14.821666666666665,1.0
673
+ 610,47.05,4.0
674
+ 1929,13.16,8.0
675
+ 1921,47.5025,10.0
676
+ 1180,13.302499999999998,1.0
677
+ 1377,18.7825,7.0
678
+ 1516,16.29,7.0
679
+ 1298,10.48,1.0
680
+ 2241,28.09,10.0
681
+ 986,25.825,1.0
682
+ 28,24.3875,
683
+ 2307,36.8225,11.0
684
+ 1441,39.75,5.0
685
+ 1023,35.065,2.0
686
+ 1560,13.5125,7.0
687
+ 343,29.2425,3.0
688
+ 2268,39.677499999999995,10.0
689
+ 1286,29.080000000000002,1.0
690
+ 1436,37.475,5.0
691
+ 1132,23.46,11.0
692
+ 466,45.615,4.0
693
+ 3,32.815,
694
+ 29,26.98,
695
+ 197,26.775,1.0
696
+ 615,28.247500000000002,1.0
697
+ 2508,26.96,10.0
698
+ 7,34.2575,
699
+ 264,37.89,3.0
700
+ 1237,25.4225,1.0
701
+ 1564,25.055,7.0
702
+ 1033,25.6075,1.0
703
+ 2334,22.4,10.0
704
+ 494,29.6875,2.0
705
+ 1586,24.275,7.0
706
+ 536,25.82,1.0
707
+ 1752,47.4725,11.0
708
+ 320,45.035,11.0
709
+ 251,35.2075,2.0
710
+ 860,27.822499999999998,11.0
711
+ 1565,31.7725,7.0
712
+ 1153,49.1,4.0
713
+ 574,36.2025,4.0
714
+ 366,30.895,1.0
715
+ 224,20.1675,3.0
716
+ 154,31.862499999999997,3.0
717
+ 130,22.7575,1.0
718
+ 241,16.735,3.0
719
+ 558,30.342499999999998,1.0
720
+ 843,40.957499999999996,2.0
721
+ 2126,34.775,10.0
722
+ 1753,27.18,7.0
723
+ 164,41.655,3.0
724
+ 1588,22.817500000000003,7.0
725
+ 1233,46.697500000000005,11.0
726
+ 723,38.004999999999995,4.0
727
+ 626,27.1075,1.0
728
+ 322,35.325,3.0
729
+ 1325,25.67,11.0
730
+ 437,21.155,1.0
731
+ 879,26.052500000000002,1.0
732
+ 1644,28.002499999999998,5.0
733
+ 3,37.0325,
734
+ 290,25.065,1.0
735
+ 1264,37.815,2.0
736
+ 216,21.62,1.0
737
+ 503,15.06,11.0
738
+ 1013,25.095,11.0
739
+ 539,13.91,1.0
740
+ 1703,25.9975,7.0
741
+ 1064,31.405,1.0
742
+ 274,21.61,1.0
743
+ 734,28.375,11.0
744
+ 1400,29.16,5.0
745
+ 683,28.04,1.0
746
+ 485,12.685,11.0
747
+ 466,24.4675,1.0
748
+ 842,41.7725,11.0
749
+ 627,25.2175,1.0
750
+ 483,32.315,1.0
751
+ 1702,19.942500000000003,7.0
752
+ 488,25.23,11.0
753
+ 1633,29.11,7.0
754
+ 1177,39.5425,2.0
755
+ 648,17.375,11.0
756
+ 1635,28.29,7.0
757
+ 393,25.24,2.0
758
+ 577,35.2325,4.0
759
+ 77,31.3125,
760
+ 297,14.4875,3.0
761
+ 1225,30.2725,1.0
762
+ 1670,28.8725,7.0
763
+ 1470,35.72,5.0
764
+ 2259,19.875,8.0
765
+ 559,25.957500000000003,1.0
766
+ 209,30.5625,3.0
767
+ 1528,35.56,5.0
768
+ 912,37.2775,2.0
769
+ 364,27.9425,3.0
770
+ 38,26.735,
771
+ 246,37.835,3.0
772
+ 770,34.1,1.0
773
+ 841,48.705,4.0
774
+ 993,41.0475,2.0
775
+ 1833,21.7175,7.0
776
+ 7,16.2125,3.0
777
+ 1514,20.197499999999998,7.0
778
+ 989,27.795,5.0
779
+ 1538,36.067499999999995,11.0
780
+ 423,38.6225,2.0
781
+ 1635,14.465,7.0
782
+ 1883,19.5025,10.0
783
+ 147,29.307499999999997,3.0
784
+ 704,36.56999999999999,2.0
785
+ 415,14.5475,1.0
786
+ 468,26.950000000000003,1.0
787
+ 1898,26.0225,10.0
788
+ 1611,22.5075,7.0
789
+ 2276,27.53,10.0
790
+ 1209,29.445,1.0
791
+ 326,30.387500000000003,1.0
792
+ 1922,24.395,10.0
793
+ 392,33.9975,3.0
794
+ 684,33.572500000000005,11.0
795
+ 1491,16.945,7.0
796
+ 580,14.59,1.0
797
+ 1516,24.64,7.0
798
+ 984,20.125,1.0
799
+ 1355,42.245,11.0
800
+ 799,24.052500000000002,1.0
801
+ 649,27.3475,11.0
802
+ 1947,53.197500000000005,10.0
803
+ 1061,28.3675,1.0
804
+ 99,31.6175,
805
+ 794,21.772499999999997,11.0
806
+ 1030,42.754999999999995,11.0
807
+ 474,46.004999999999995,4.0
808
+ 51,22.244999999999997,
809
+ 287,28.97166666666666,1.0
810
+ 144,21.590000000000003,1.0
811
+ 184,17.947499999999998,0.0
812
+ 176,30.6375,1.0
813
+ 180,39.41,2.0
814
+ 60,24.585,
815
+ 241,30.80426829268293,1.0
816
+ 258,28.738139534883725,1.0
817
+ 298,31.673658536585364,1.0
818
+ 183,23.005,1.0
819
+ 286,32.202299999999994,1.0
820
+ 183,28.887500000000003,1.0
821
+ 48,41.57,
822
+ 191,30.652499999999996,1.0
823
+ 292,32.150735294117645,1.0
824
+ 0,29.6725,
825
+ 194,29.81833333333334,1.0
826
+ 318,29.98097826086957,1.0
827
+ 187,30.10166666666667,1.0
828
+ 180,28.9975,1.0
829
+ 177,31.25,1.0
830
+ 188,22.8125,1.0
831
+ 252,31.613297872340436,1.0
832
+ 173,32.895,1.0
833
+ 147,25.475,1.0
834
+ 177,30.70125,1.0
835
+ 153,35.980000000000004,2.0
836
+ 204,29.04,1.0
837
+ 183,18.8525,0.0
838
+ 273,27.644166666666667,1.0
839
+ 243,32.48886363636363,1.0
840
+ 7,25.284999999999997,
841
+ 278,35.37636363636364,2.0
842
+ 591,27.233235294117645,1.0
843
+ 322,30.303974358974354,1.0
844
+ 187,25.575,1.0
845
+ 185,31.447499999999998,1.0
846
+ 259,29.924222222222227,1.0
847
+ 255,27.164069767441863,1.0
848
+ 214,40.0625,2.0
849
+ 5,28.14,
850
+ 268,32.11872549019607,1.0
851
+ 243,28.334183673469386,1.0
852
+ 362,31.485113636363643,1.0
853
+ 450,29.21484848484848,1.0
854
+ 203,38.22,2.0
855
+ 287,24.555428571428575,1.0
856
+ 252,28.656744186046506,1.0
857
+ 293,29.50637499999999,1.0
858
+ 272,30.5029347826087,1.0
859
+ 279,31.837099999999992,1.0
860
+ 256,30.946020408163257,1.0
861
+ 231,40.625,2.0
862
+ 282,26.472209302325584,1.0
863
+ 169,12.877500000000001,1.0
864
+ 461,29.5438888888889,1.0
865
+ 168,29.119999999999997,1.0
866
+ 267,28.86562500000001,1.0
867
+ 240,28.741860465116286,1.0
868
+ 193,28.661666666666665,1.0
869
+ 319,28.842926829268297,1.0
870
+ 169,29.648333333333337,1.0
871
+ 314,31.10333333333333,1.0
872
+ 192,34.7775,2.0
873
+ 145,28.862499999999997,1.0
874
+ 27,38.9875,
875
+ 179,26.814999999999998,1.0
876
+ 192,37.165,2.0
877
+ 31,26.979999999999997,
878
+ 185,28.3,1.0
879
+ 243,29.112448979591846,1.0
880
+ 207,40.81166666666667,2.0
881
+ 201,29.6425,1.0
882
+ 243,27.682735849056602,1.0
883
+ 144,16.64,0.0
884
+ 168,37.5125,2.0
885
+ 336,29.37946808510639,1.0
886
+ 304,36.180888888888894,2.0
887
+ 266,32.24675675675676,1.0
888
+ 179,23.384999999999998,1.0
889
+ 171,21.4375,1.0
890
+ 182,30.14833333333333,1.0
891
+ 50,48.2475,
892
+ 191,18.189999999999998,0.0
893
+ 289,29.14532608695652,1.0
894
+ 254,29.653703703703698,1.0
895
+ 187,28.8575,1.0
896
+ 176,18.0825,0.0
897
+ 269,27.55468085106383,1.0
898
+ 247,25.788220338983056,1.0
899
+ 168,42.07666666666666,11.0
900
+ 79,21.342499999999998,
901
+ 334,30.029204545454537,1.0
902
+ 180,39.495000000000005,2.0
903
+ 360,27.280595238095234,1.0
904
+ 245,29.76848484848485,1.0
905
+ 50,16.243333333333336,
906
+ 199,27.903333333333332,1.0
907
+ 168,17.572499999999998,0.0
908
+ 217,13.040000000000001,0.0
909
+ 506,28.363295454545458,1.0
910
+ 195,33.254999999999995,1.0
911
+ 194,24.380000000000003,1.0
912
+ 362,37.183571428571426,2.0
913
+ 170,20.9825,1.0
914
+ 288,31.2301388888889,1.0
915
+ 269,32.64175,1.0
916
+ 253,30.663222222222224,1.0
917
+ 254,28.642291666666654,1.0
918
+ 177,28.73,1.0
919
+ 148,25.11,1.0
920
+ 306,28.772391304347824,1.0
921
+ 261,27.011938775510206,1.0
922
+ 278,27.39322916666666,1.0
923
+ 175,14.63,0.0
924
+ 189,41.870000000000005,11.0
925
+ 256,26.31930232558139,1.0
926
+ 168,28.65166666666667,1.0
927
+ 53,46.417500000000004,
928
+ 290,31.53309090909091,1.0
929
+ 184,22.012500000000003,1.0
930
+ 178,37.02375,2.0
931
+ 188,22.80666666666667,1.0
932
+ 176,35.2025,2.0
933
+ 144,32.745000000000005,1.0
934
+ 225,32.545,1.0
935
+ 266,32.56181818181819,1.0
936
+ 240,30.974404761904765,1.0
937
+ 196,29.05375,1.0
938
+ 370,31.7953409090909,1.0
939
+ 283,26.94234042553192,1.0
940
+ 189,30.720000000000002,1.0
941
+ 241,27.67390243902439,1.0
942
+ 252,27.565306122448984,1.0
943
+ 173,17.481666666666666,0.0
944
+ 364,33.4425,1.0
945
+ 279,27.540999999999997,1.0
946
+ 260,32.18022727272727,1.0
947
+ 293,29.00309523809524,1.0
948
+ 183,32.65,1.0
949
+ 195,40.17166666666666,2.0
950
+ 182,35.3425,2.0
951
+ 178,20.1,0.0
952
+ 194,23.542499999999997,1.0
953
+ 79,28.075,
954
+ 169,23.423333333333336,1.0
955
+ 245,25.803452380952383,1.0
956
+ 278,29.32111111111111,1.0
957
+ 184,38.15125,2.0
958
+ 194,15.5975,0.0
959
+ 189,24.197499999999998,1.0
960
+ 215,25.305,1.0
961
+ 29,48.935,
962
+ 219,17.5475,0.0
963
+ 209,25.6375,1.0
964
+ 241,28.113809523809522,1.0
965
+ 145,26.95,1.0
966
+ 5,32.77,
967
+ 321,31.65236111111111,1.0
968
+ 262,30.119468085106387,1.0
969
+ 242,37.27271739130435,2.0
970
+ 172,36.75,2.0
971
+ 173,41.150000000000006,2.0
972
+ 179,33.67,2.0
973
+ 155,18.18,0.0
974
+ 241,30.495348837209306,1.0
975
+ 178,30.72666666666667,1.0
976
+ 274,28.93418604651163,1.0
977
+ 382,26.838749999999997,1.0
978
+ 194,21.93,1.0
979
+ 181,29.2675,1.0
980
+ 181,32.88833333333333,1.0
981
+ 296,33.58922222222222,1.0
982
+ 347,29.348804347826093,1.0
983
+ 262,30.544069767441854,1.0
984
+ 270,31.498846153846152,1.0
985
+ 183,21.465000000000003,1.0
986
+ 288,28.704000000000004,1.0
987
+ 169,20.043333333333333,0.0
988
+ 286,29.933513513513507,1.0
989
+ 189,29.3675,1.0
990
+ 351,33.006842105263146,1.0
991
+ 190,16.259999999999998,0.0
992
+ 58,24.002499999999998,
993
+ 153,11.625,0.0
994
+ 104,39.33,
995
+ 168,35.57833333333334,2.0
996
+ 168,20.6725,0.0
997
+ 241,28.350128205128193,1.0
998
+ 176,21.683333333333334,1.0
999
+ 172,35.4675,2.0
1000
+ 168,35.49,2.0
1001
+ 267,32.91435897435897,1.0
1002
+ 323,31.67641304347826,1.0
1003
+ 172,28.92833333333333,1.0
1004
+ 321,31.47984375,1.0
1005
+ 190,24.9175,1.0
1006
+ 243,29.897941176470596,1.0
1007
+ 206,34.435,2.0
1008
+ 298,31.43386363636364,1.0
1009
+ 186,20.127499999999998,0.0
1010
+ 151,22.705,1.0
1011
+ 240,25.255714285714287,1.0
1012
+ 92,35.4525,
1013
+ 172,23.295,1.0
1014
+ 387,28.564310344827582,1.0
1015
+ 190,30.037499999999998,1.0
1016
+ 264,28.73326086956522,1.0
1017
+ 299,29.435641025641026,1.0
1018
+ 314,31.356428571428577,1.0
1019
+ 193,23.9,1.0
1020
+ 283,27.793571428571425,1.0
1021
+ 210,14.015,0.0
1022
+ 168,31.0475,1.0
1023
+ 193,36.54,2.0
1024
+ 281,29.63315217391305,1.0
1025
+ 253,29.339791666666667,1.0
1026
+ 246,29.070555555555565,1.0
1027
+ 353,31.06681818181818,1.0
1028
+ 176,38.655,2.0
1029
+ 256,27.424508196721316,1.0
1030
+ 2,23.9975,
1031
+ 169,36.91,2.0
1032
+ 282,26.57697674418604,1.0
1033
+ 305,30.999999999999996,1.0
1034
+ 208,38.685,2.0
1035
+ 189,22.197499999999998,1.0
1036
+ 173,16.66166666666667,0.0
1037
+ 177,30.873333333333335,1.0
1038
+ 193,19.4825,0.0
1039
+ 271,29.63378378378378,1.0
1040
+ 39,10.9525,
1041
+ 320,27.369318181818183,1.0
1042
+ 300,30.54291666666666,1.0
1043
+ 195,30.875,1.0
1044
+ 361,28.814607843137257,1.0
1045
+ 253,29.744326923076926,1.0
1046
+ 170,28.1475,1.0
1047
+ 436,28.53644736842105,1.0
1048
+ 254,30.537222222222226,1.0
1049
+ 219,28.377499999999998,1.0
1050
+ 398,31.579999999999995,1.0
1051
+ 286,26.828699999999994,1.0
1052
+ 176,21.7375,1.0
1053
+ 172,53.825,11.0
1054
+ 299,29.86452830188678,1.0
1055
+ 211,17.637500000000003,0.0
1056
+ 170,22.1375,1.0
1057
+ 173,21.2775,1.0
1058
+ 191,19.556250000000002,0.0
1059
+ 188,35.082499999999996,2.0
1060
+ 197,14.753333333333332,0.0
1061
+ 208,18.66,0.0
1062
+ 52,21.715,
1063
+ 250,30.45487804878049,1.0
1064
+ 324,29.730000000000004,1.0
1065
+ 53,36.915,
1066
+ 243,28.44714285714286,1.0
1067
+ 177,28.97,1.0
1068
+ 176,38.42000000000001,2.0
1069
+ 334,30.41114583333334,1.0
1070
+ 354,30.81426829268291,1.0
1071
+ 379,27.354456521739127,1.0
1072
+ 268,29.89577777777778,1.0
1073
+ 370,30.543382352941173,1.0
1074
+ 324,25.96866666666667,1.0
1075
+ 50,32.2675,
1076
+ 148,36.6825,2.0
1077
+ 208,28.1025,1.0
1078
+ 246,29.00476190476191,1.0
1079
+ 179,37.21,2.0
1080
+ 318,30.72073170731706,1.0
1081
+ 194,40.68,2.0
1082
+ 255,28.65794117647059,1.0
1083
+ 170,28.552500000000002,1.0
1084
+ 169,23.490000000000002,1.0
1085
+ 49,34.79,
1086
+ 251,27.26175438596492,1.0
1087
+ 168,42.535,11.0
1088
+ 297,30.592567567567574,1.0
1089
+ 172,17.523333333333337,0.0
1090
+ 349,28.257500000000004,1.0
1091
+ 196,35.4,2.0
1092
+ 88,33.81666666666666,
1093
+ 37,18.375,
1094
+ 239,26.415434782608692,1.0
1095
+ 275,30.472111111111126,1.0
1096
+ 304,30.696590909090904,1.0
1097
+ 280,30.351538461538464,1.0
1098
+ 213,7.34,0.0
1099
+ 171,33.1475,1.0
1100
+ 199,53.565,11.0
1101
+ 187,41.68666666666667,11.0
1102
+ 267,29.78705882352941,1.0
1103
+ 77,22.6575,
1104
+ 204,50.227500000000006,11.0
1105
+ 256,30.960833333333333,1.0
1106
+ 60,38.0775,
1107
+ 207,26.6525,1.0
1108
+ 61,28.817500000000003,
1109
+ 270,33.310138888888886,1.0
1110
+ 211,29.015,1.0
1111
+ 206,36.235,2.0
1112
+ 264,25.904387755102036,1.0
1113
+ 192,27.973333333333333,1.0
1114
+ 277,27.413499999999992,1.0
1115
+ 291,29.519000000000005,1.0
1116
+ 292,27.996625,1.0
1117
+ 179,20.873333333333335,1.0
1118
+ 184,24.456666666666667,1.0
1119
+ 170,35.06166666666667,2.0
1120
+ 201,36.675,2.0
1121
+ 266,29.88008771929825,1.0
1122
+ 171,33.3325,1.0
1123
+ 50,27.34,
1124
+ 245,28.632702702702698,1.0
1125
+ 196,27.005,1.0
1126
+ 327,29.766444444444446,1.0
1127
+ 244,30.45439024390244,1.0
1128
+ 278,30.330000000000002,1.0
1129
+ 152,29.12,1.0
1130
+ 195,30.313333333333333,1.0
1131
+ 194,35.305,2.0
1132
+ 5,42.9225,
1133
+ 358,29.304399999999998,1.0
1134
+ 171,27.265,1.0
1135
+ 201,29.6,1.0
1136
+ 246,29.53636363636364,1.0
1137
+ 277,31.51,1.0
1138
+ 270,32.429574468085114,1.0
1139
+ 290,29.59702380952381,1.0
1140
+ 225,42.1375,11.0
1141
+ 263,26.795545454545447,1.0
1142
+ 150,40.71,2.0
1143
+ 254,28.62141509433962,1.0
1144
+ 255,28.735999999999994,1.0
1145
+ 57,38.9725,
1146
+ 267,27.57283783783783,1.0
1147
+ 251,32.30822916666667,1.0
1148
+ 461,34.069021739130434,2.0
1149
+ 146,44.635,11.0
1150
+ 153,40.205,2.0
1151
+ 148,31.962500000000002,1.0
1152
+ 258,28.10520833333334,1.0
1153
+ 196,45.19,11.0
1154
+ 204,20.0925,0.0
1155
+ 299,33.77723404255319,2.0
1156
+ 62,29.395,
1157
+ 210,25.877499999999998,1.0
1158
+ 110,29.947499999999998,
1159
+ 176,33.343333333333334,1.0
1160
+ 289,29.4625,1.0
1161
+ 275,26.597727272727273,1.0
1162
+ 150,28.45,1.0
1163
+ 380,29.370975609756105,1.0
1164
+ 285,27.095545454545466,1.0
1165
+ 0,29.7425,
1166
+ 253,30.490425531914898,1.0
1167
+ 264,31.41300000000001,1.0
1168
+ 242,31.554459459459455,1.0
1169
+ 255,30.328068181818182,1.0
1170
+ 422,28.838297872340434,1.0
1171
+ 182,18.923333333333332,0.0
1172
+ 257,30.88616279069768,1.0
1173
+ 193,24.415000000000003,1.0
1174
+ 251,28.932083333333342,1.0
1175
+ 200,26.5175,1.0
1176
+ 272,31.486341463414636,1.0
1177
+ 242,28.9795,1.0
1178
+ 248,32.03076086956521,1.0
1179
+ 150,35.7775,2.0
1180
+ 261,32.992,1.0
1181
+ 204,13.29,0.0
1182
+ 241,33.03645161290322,1.0
1183
+ 51,35.230000000000004,
1184
+ 318,27.96614583333333,1.0
1185
+ 173,26.18,1.0
1186
+ 169,33.501666666666665,1.0
1187
+ 211,28.205,1.0
1188
+ 172,20.0325,0.0
1189
+ 161,29.953999999999997,1.0
1190
+ 172,23.74,1.0
1191
+ 219,16.7225,0.0
1192
+ 168,23.6525,1.0
1193
+ 252,31.052272727272733,1.0
1194
+ 182,27.371666666666666,1.0
1195
+ 268,31.424545454545463,1.0
1196
+ 145,28.52,1.0
1197
+ 260,31.550000000000004,1.0
1198
+ 270,24.79691176470588,1.0
1199
+ 171,19.623333333333335,0.0
1200
+ 242,28.23767441860465,1.0
1201
+ 151,31.2775,1.0
1202
+ 186,37.82,2.0
1203
+ 194,30.7225,1.0
1204
+ 244,30.805760869565212,1.0
1205
+ 395,30.470540540540544,1.0
1206
+ 173,29.996250000000003,1.0
1207
+ 265,31.24010416666667,1.0
1208
+ 260,28.653863636363635,1.0
1209
+ 292,29.60179487179488,1.0
1210
+ 253,29.06726190476191,1.0
1211
+ 266,28.547399999999996,1.0
1212
+ 191,32.464999999999996,1.0
1213
+ 173,32.04666666666666,1.0
1214
+ 176,38.50833333333333,2.0
1215
+ 182,30.74,1.0
1216
+ 320,29.049130434782615,1.0
1217
+ 190,18.48375,0.0
1218
+ 187,42.9725,11.0
1219
+ 170,35.3925,2.0
1220
+ 528,29.889605263157897,1.0
1221
+ 287,30.32460000000001,1.0
1222
+ 354,28.41023809523809,1.0
1223
+ 241,28.786702127659577,1.0
1224
+ 318,28.503292682926823,1.0
1225
+ 194,35.26,2.0
1226
+ 172,35.62166666666666,2.0
1227
+ 325,31.758205128205127,1.0
1228
+ 348,26.55833333333334,1.0
1229
+ 185,27.98,1.0
1230
+ 149,34.615,2.0
1231
+ 306,29.186176470588236,1.0
1232
+ 196,22.855,1.0
1233
+ 192,34.16166666666667,2.0
1234
+ 491,34.36347222222221,2.0
1235
+ 219,13.790000000000001,0.0
1236
+ 260,31.236020408163263,1.0
1237
+ 297,31.053369565217398,1.0
1238
+ 176,31.3925,1.0
1239
+ 158,16.645,0.0
1240
+ 181,36.575,2.0
1241
+ 297,30.216190476190473,1.0
1242
+ 241,29.20021276595745,1.0
1243
+ 286,27.934519230769233,1.0
1244
+ 175,26.471666666666664,1.0
1245
+ 244,28.864375,1.0
1246
+ 283,29.07630434782607,1.0
1247
+ 184,26.939431818181813,1.0
1248
+ 318,31.289666666666665,1.0
1249
+ 248,31.27577586206896,1.0
1250
+ 49,25.849999999999998,
1251
+ 206,20.237499999999997,0.0
1252
+ 360,27.418452380952377,1.0
1253
+ 155,26.5625,1.0
1254
+ 288,29.79425531914893,1.0
1255
+ 263,29.246315789473687,1.0
1256
+ 168,19.223333333333333,0.0
1257
+ 325,34.15927083333333,2.0
1258
+ 269,32.37340909090909,1.0
1259
+ 274,30.751511627906982,1.0
1260
+ 263,28.502111111111116,1.0
1261
+ 202,24.0175,1.0
1262
+ 260,30.419250000000005,1.0
1263
+ 187,23.8125,1.0
1264
+ 175,28.831666666666667,1.0
1265
+ 432,28.60244680851064,1.0
1266
+ 173,30.0325,1.0
1267
+ 211,33.8575,2.0
1268
+ 261,28.817307692307693,1.0
1269
+ 188,28.302500000000002,1.0
1270
+ 285,34.94308510638298,2.0
1271
+ 15,44.3825,
1272
+ 301,31.159534883720934,1.0
1273
+ 218,22.3325,1.0
1274
+ 182,36.9425,2.0
1275
+ 190,31.23,1.0
1276
+ 270,31.20500000000001,1.0
1277
+ 295,31.827083333333334,1.0
1278
+ 244,34.76440476190477,2.0
1279
+ 213,52.23833333333334,11.0
1280
+ 219,12.6825,0.0
1281
+ 261,25.888552631578943,1.0
1282
+ 173,22.189,1.0
1283
+ 374,30.025454545454547,1.0
1284
+ 288,27.36770833333333,1.0
1285
+ 313,29.110000000000007,1.0
1286
+ 341,29.60523255813952,1.0
1287
+ 49,15.825,
1288
+ 252,28.459300000000006,1.0
1289
+ 265,29.009729729729735,1.0
1290
+ 49,20.9175,
1291
+ 151,35.2525,2.0
1292
+ 191,29.15833333333333,1.0
1293
+ 151,24.2425,1.0
1294
+ 277,29.00357142857143,1.0
1295
+ 286,27.707653061224484,1.0
1296
+ 172,21.82,1.0
1297
+ 187,31.009999999999998,1.0
1298
+ 269,28.436333333333327,1.0
1299
+ 48,26.9425,
1300
+ 313,31.83297297297297,1.0
1301
+ 172,42.3,11.0
1302
+ 322,30.636739130434773,1.0
1303
+ 187,25.386666666666667,1.0
1304
+ 371,29.559166666666677,1.0
1305
+ 149,41.212500000000006,2.0
1306
+ 215,27.775,1.0
1307
+ 249,29.11722222222222,1.0
1308
+ 260,31.961315789473677,1.0
1309
+ 249,29.151250000000005,1.0
1310
+ 1,14.487499999999999,
1311
+ 243,30.479615384615386,1.0
1312
+ 310,28.877875,1.0
1313
+ 359,26.792500000000004,1.0
1314
+ 410,31.885937499999994,1.0
1315
+ 274,25.569565217391304,1.0
1316
+ 204,30.8125,1.0
1317
+ 51,39.92166666666666,
1318
+ 278,32.550104166666664,1.0
1319
+ 178,13.5075,0.0
1320
+ 49,28.915000000000003,
1321
+ 197,19.8675,0.0
1322
+ 520,29.800405405405407,1.0
1323
+ 248,28.9856862745098,1.0
1324
+ 243,27.916666666666668,1.0
1325
+ 157,39.9925,2.0
1326
+ 195,17.55625,0.0
1327
+ 179,43.129999999999995,11.0
1328
+ 198,30.48,1.0
1329
+ 258,31.476808510638314,1.0
1330
+ 245,32.480588235294114,1.0
1331
+ 244,29.130116279069764,1.0
1332
+ 150,51.1075,11.0
1333
+ 183,50.9075,11.0
1334
+ 173,22.55666666666667,1.0
1335
+ 196,13.0775,0.0
1336
+ 276,30.91233333333334,1.0
1337
+ 108,32.3575,
1338
+ 285,28.74357142857142,1.0
1339
+ 216,28.985,1.0
1340
+ 310,32.546710526315785,1.0
1341
+ 300,26.268387096774187,1.0
1342
+ 196,39.5125,2.0
1343
+ 176,29.746666666666666,1.0
1344
+ 244,25.442051282051278,1.0
1345
+ 196,24.425,1.0
1346
+ 242,29.96999999999999,1.0
1347
+ 266,32.400568181818194,1.0
1348
+ 325,31.485869565217396,1.0
1349
+ 172,25.39375,1.0
1350
+ 276,34.97552631578947,2.0
1351
+ 245,28.753369565217394,1.0
1352
+ 212,19.53,0.0
1353
+ 154,19.822499999999998,0.0
1354
+ 217,31.7875,1.0
1355
+ 240,29.588229166666654,1.0
1356
+ 268,31.766923076923085,1.0
1357
+ 48,25.0525,
1358
+ 192,27.973750000000003,1.0
1359
+ 286,29.465476190476195,1.0
1360
+ 313,27.995348837209296,1.0
1361
+ 248,32.17657142857143,1.0
1362
+ 173,18.445,0.0
1363
+ 203,21.7175,1.0
1364
+ 213,28.145,1.0
1365
+ 312,29.84499999999999,1.0
1366
+ 170,39.1025,2.0
1367
+ 296,29.26033333333333,1.0
1368
+ 193,27.823333333333334,1.0
1369
+ 178,29.817500000000003,1.0
1370
+ 4,43.817499999999995,
1371
+ 185,36.7875,2.0
1372
+ 192,32.705,1.0
1373
+ 251,31.120319148936176,1.0
1374
+ 265,30.39154761904762,1.0
1375
+ 170,33.22,1.0
1376
+ 53,35.879999999999995,
1377
+ 197,25.7525,1.0
1378
+ 247,27.581590909090906,1.0
1379
+ 176,29.495,1.0
1380
+ 202,27.012500000000003,1.0
1381
+ 255,29.551956521739132,1.0
1382
+ 25,29.299999999999997,
1383
+ 262,29.700131578947374,1.0
1384
+ 177,45.3425,11.0
1385
+ 202,20.192500000000003,0.0
1386
+ 242,32.00405405405406,1.0
1387
+ 203,46.504999999999995,11.0
1388
+ 205,26.475,1.0
1389
+ 220,18.315,0.0
1390
+ 242,31.277297297297302,1.0
1391
+ 305,29.088414634146336,1.0
1392
+ 263,27.63829268292683,1.0
1393
+ 318,27.267187499999995,1.0
1394
+ 157,12.8925,0.0
1395
+ 365,31.064166666666665,1.0
1396
+ 2,33.8975,
1397
+ 189,38.555,2.0
1398
+ 336,29.81846153846154,1.0
1399
+ 183,24.886666666666667,1.0
1400
+ 50,29.42,
1401
+ 2,26.4025,
1402
+ 264,31.425102040816334,1.0
1403
+ 151,8.23,0.0
1404
+ 147,41.7025,11.0
1405
+ 330,29.496022727272734,1.0
1406
+ 50,29.189999999999998,
1407
+ 214,28.64723684210527,1.0
1408
+ 177,38.3775,2.0
1409
+ 258,29.23718749999999,1.0
1410
+ 196,39.9375,2.0
1411
+ 73,36.879999999999995,
1412
+ 283,28.399772727272737,1.0
1413
+ 276,30.91608108108108,1.0
1414
+ 264,31.683461538461536,1.0
1415
+ 300,33.33157407407408,1.0
1416
+ 258,27.53051020408163,1.0
1417
+ 194,36.7125,2.0
1418
+ 301,26.209999999999994,1.0
1419
+ 265,27.66011627906977,1.0
1420
+ 322,30.442000000000014,1.0
1421
+ 175,20.255000000000003,0.0
1422
+ 185,29.115000000000002,1.0
1423
+ 203,15.865,0.0
1424
+ 172,36.678333333333335,2.0
1425
+ 207,47.769999999999996,11.0
1426
+ 276,30.07848837209303,1.0
1427
+ 180,29.565,1.0
1428
+ 295,29.230609756097554,1.0
1429
+ 278,29.976511627906984,1.0
1430
+ 285,28.50326923076923,1.0
1431
+ 29,26.4125,
1432
+ 341,27.276071428571424,1.0
1433
+ 55,16.5225,
1434
+ 313,32.63414634146341,1.0
1435
+ 185,26.116666666666664,1.0
1436
+ 321,28.00566666666666,1.0
1437
+ 214,36.6175,2.0
1438
+ 278,32.28542553191489,1.0
1439
+ 242,31.467653061224507,1.0
1440
+ 174,25.39,1.0
1441
+ 243,28.921250000000004,1.0
1442
+ 203,38.526666666666664,2.0
1443
+ 171,16.7775,0.0
1444
+ 202,15.51,0.0
1445
+ 213,22.9775,1.0
1446
+ 175,18.9125,0.0
1447
+ 146,34.89,2.0
1448
+ 324,25.87602941176471,1.0
1449
+ 297,31.424555555555557,1.0
1450
+ 184,29.855,1.0
1451
+ 195,29.110000000000003,1.0
1452
+ 201,36.962500000000006,2.0
1453
+ 309,30.915350877192974,1.0
1454
+ 266,31.74478723404255,1.0
1455
+ 175,18.768333333333334,0.0
1456
+ 388,31.31770833333333,1.0
1457
+ 278,28.79437499999999,1.0
1458
+ 292,32.599512195121946,1.0
1459
+ 157,21.145,1.0
1460
+ 355,28.121219512195122,1.0
1461
+ 150,28.7425,1.0
1462
+ 268,31.697400000000002,1.0
1463
+ 245,30.502763157894737,1.0
1464
+ 258,29.872391304347808,1.0
1465
+ 168,24.6725,1.0
1466
+ 189,31.435000000000002,1.0
1467
+ 4,24.5,
1468
+ 5,14.232500000000002,
1469
+ 187,22.586666666666662,1.0
1470
+ 185,39.60125,2.0
1471
+ 248,28.447624999999995,1.0
1472
+ 188,33.589999999999996,1.0
1473
+ 283,29.387500000000003,1.0
1474
+ 341,28.26976744186047,1.0
1475
+ 183,18.549999999999997,0.0
1476
+ 189,37.45,2.0
1477
+ 224,27.8775,1.0
1478
+ 145,37.010000000000005,2.0
1479
+ 188,20.572499999999998,0.0
1480
+ 168,17.765,0.0
1481
+ 331,31.384047619047607,1.0
1482
+ 281,26.548548387096773,1.0
1483
+ 175,24.7575,1.0
1484
+ 173,26.606666666666666,1.0
1485
+ 180,37.5525,2.0
1486
+ 528,32.99948717948718,1.0
1487
+ 246,26.354583333333334,1.0
1488
+ 241,29.46614583333333,1.0
1489
+ 268,29.91854166666667,1.0
1490
+ 318,31.258240740740735,1.0
1491
+ 349,28.58094339622642,1.0
1492
+ 186,37.885000000000005,2.0
1493
+ 276,33.69754901960784,2.0
1494
+ 192,35.835,2.0
1495
+ 241,32.81377551020409,1.0
1496
+ 53,29.0175,
1497
+ 172,44.89,11.0
1498
+ 241,27.914803921568627,1.0
1499
+ 242,28.55666666666667,1.0
1500
+ 178,16.5225,0.0
1501
+ 248,30.843076923076918,1.0
1502
+ 203,21.8125,1.0
1503
+ 296,30.835849056603774,1.0
1504
+ 246,25.303500000000003,1.0
1505
+ 1,44.115,
1506
+ 155,19.38,0.0
1507
+ 366,27.59957446808511,1.0
1508
+ 186,45.8925,11.0
1509
+ 224,45.0575,11.0
1510
+ 151,37.495,2.0
1511
+ 171,33.2675,1.0
1512
+ 185,34.52333333333333,2.0
1513
+ 260,29.103536585365855,1.0
1514
+ 210,25.57166666666667,1.0
1515
+ 242,29.606410256410246,1.0
1516
+ 148,49.735,11.0
1517
+ 176,32.97333333333333,1.0
1518
+ 49,48.1075,
1519
+ 316,30.630384615384617,1.0
1520
+ 188,25.685,1.0
1521
+ 151,38.455,2.0
1522
+ 177,39.53666666666667,2.0
1523
+ 168,28.103333333333335,1.0
1524
+ 241,26.46892156862745,1.0
1525
+ 147,32.46,1.0
1526
+ 185,38.74375,2.0
1527
+ 652,31.988717948717948,1.0
1528
+ 302,30.147619047619052,1.0
1529
+ 192,21.85666666666667,1.0
1530
+ 204,40.5375,2.0
1531
+ 242,28.93255813953488,1.0
1532
+ 193,27.197499999999998,1.0
1533
+ 285,30.182333333333325,1.0
1534
+ 5,14.267500000000002,
1535
+ 255,29.75871794871795,1.0
1536
+ 180,16.00375,0.0
1537
+ 170,51.932500000000005,11.0
1538
+ 170,31.376666666666665,1.0
1539
+ 193,28.481666666666666,1.0
1540
+ 170,28.11,1.0
1541
+ 49,17.32,
1542
+ 245,31.283541666666668,1.0
1543
+ 260,27.567500000000003,1.0
1544
+ 178,27.27,1.0
1545
+ 2,43.4875,
1546
+ 3,25.2175,
1547
+ 269,30.569318181818186,1.0
1548
+ 247,31.007159090909102,1.0
1549
+ 195,22.55,1.0
1550
+ 339,28.6625,1.0
1551
+ 321,29.151739130434787,1.0
1552
+ 675,30.587840909090914,1.0
1553
+ 1,29.520000000000003,
1554
+ 240,29.080121951219514,1.0
1555
+ 208,20.2325,0.0
1556
+ 182,29.33,1.0
1557
+ 187,28.353333333333335,1.0
1558
+ 199,26.472500000000004,1.0
1559
+ 240,26.588750000000005,1.0
1560
+ 172,33.7325,2.0
1561
+ 325,29.93344444444444,1.0
1562
+ 245,29.494069767441868,1.0
1563
+ 170,31.950000000000003,1.0
1564
+ 72,18.028333333333336,
1565
+ 263,24.785,1.0
1566
+ 220,14.605,0.0
1567
+ 248,30.08579545454546,1.0
1568
+ 169,24.365000000000002,1.0
1569
+ 253,31.056136363636366,1.0
1570
+ 170,17.342,0.0
1571
+ 323,27.55348837209302,1.0
1572
+ 48,31.095,
1573
+ 183,29.788333333333338,1.0
1574
+ 175,38.42,2.0
1575
+ 173,21.694999999999997,1.0
1576
+ 194,19.015,0.0
1577
+ 182,28.995,1.0
1578
+ 288,32.40914893617021,1.0
1579
+ 169,18.2225,0.0
1580
+ 79,36.4825,
1581
+ 149,28.305,1.0
1582
+ 206,24.18,1.0
1583
+ 3,24.7325,
1584
+ 244,25.954761904761913,1.0
1585
+ 241,29.228229166666665,1.0
1586
+ 49,23.8125,
1587
+ 145,17.67,0.0
1588
+ 277,27.064142857142862,1.0
1589
+ 365,31.248947368421053,1.0
1590
+ 187,23.6925,1.0
1591
+ 52,27.28,
1592
+ 5,16.073333333333334,
1593
+ 341,25.272857142857145,1.0
1594
+ 169,52.275,11.0
1595
+ 193,23.259999999999998,1.0
1596
+ 389,31.244565217391308,1.0
1597
+ 261,32.59344444444445,1.0
1598
+ 157,44.2475,11.0
1599
+ 241,32.76192307692307,1.0
1600
+ 193,36.733333333333334,2.0
1601
+ 274,29.797542372881342,1.0
1602
+ 74,29.92,
1603
+ 0,29.880000000000003,
1604
+ 195,21.711666666666662,1.0
1605
+ 244,30.707375000000003,1.0
1606
+ 299,28.837500000000002,1.0
1607
+ 309,27.084000000000003,1.0
1608
+ 186,21.68,1.0
1609
+ 287,30.173365384615376,1.0
1610
+ 174,34.692499999999995,2.0
1611
+ 53,27.28,
1612
+ 190,29.4675,1.0
1613
+ 269,31.162954545454536,1.0
1614
+ 168,34.946666666666665,2.0
1615
+ 173,15.594999999999999,0.0
1616
+ 188,39.8275,2.0
1617
+ 264,29.970975609756092,1.0
1618
+ 182,21.8125,1.0
1619
+ 310,29.424605263157893,1.0
1620
+ 217,36.915,2.0
1621
+ 203,29.80666666666667,1.0
1622
+ 354,26.97306818181818,1.0
1623
+ 245,26.73223404255319,1.0
1624
+ 253,28.129999999999995,1.0
1625
+ 263,29.705288461538466,1.0
1626
+ 195,31.197499999999998,1.0
1627
+ 257,30.320188679245284,1.0
1628
+ 201,43.25,11.0
1629
+ 168,41.580000000000005,11.0
1630
+ 243,30.10758333333333,1.0
1631
+ 182,27.2075,1.0
1632
+ 260,29.490937499999987,1.0
1633
+ 210,25.005,1.0
1634
+ 255,29.653421052631582,1.0
1635
+ 195,26.135,1.0
1636
+ 268,30.521363636363628,1.0
1637
+ 256,28.283125000000002,1.0
1638
+ 154,24.55,1.0
1639
+ 287,28.60370967741935,1.0
1640
+ 206,33.73,2.0
1641
+ 2,22.802500000000002,
1642
+ 204,18.4975,0.0
1643
+ 242,29.692386363636363,1.0
1644
+ 241,29.438749999999995,1.0
1645
+ 333,30.975480769230767,1.0
1646
+ 191,16.775,0.0
1647
+ 283,32.58857142857143,1.0
1648
+ 204,36.644999999999996,2.0
1649
+ 265,29.083545454545447,1.0
1650
+ 193,38.735,2.0
1651
+ 148,36.6,2.0
1652
+ 168,38.151666666666664,2.0
1653
+ 171,30.1375,1.0
1654
+ 230,22.3175,1.0
1655
+ 172,23.4175,1.0
1656
+ 27,30.435000000000002,
1657
+ 204,26.565,1.0
1658
+ 170,31.665,1.0
1659
+ 211,25.12,1.0
1660
+ 196,32.557500000000005,1.0
1661
+ 192,43.88,11.0
1662
+ 182,37.4475,2.0
1663
+ 266,30.201909090909094,1.0
1664
+ 50,19.305,
1665
+ 10,36.54,
1666
+ 245,27.97694444444444,1.0
1667
+ 177,36.178333333333335,2.0
1668
+ 93,29.009999999999998,
1669
+ 195,33.093333333333334,1.0
1670
+ 254,29.29,1.0
1671
+ 47,31.081666666666667,
1672
+ 182,32.725,1.0
1673
+ 168,17.403333333333332,0.0
1674
+ 250,30.034625,1.0
1675
+ 282,29.027674418604658,1.0
1676
+ 326,33.05986486486487,1.0
1677
+ 169,22.896666666666665,1.0
1678
+ 173,30.235,1.0
1679
+ 201,17.8875,0.0
1680
+ 154,19.55,0.0
1681
+ 168,15.963333333333333,0.0
1682
+ 198,27.7125,1.0
1683
+ 371,28.985689655172415,1.0
1684
+ 172,24.14,1.0
1685
+ 215,35.1925,2.0
1686
+ 199,25.689999999999998,1.0
1687
+ 218,16.79,0.0
1688
+ 152,31.235,1.0
1689
+ 315,31.644302325581403,1.0
1690
+ 290,29.995978260869553,1.0
1691
+ 187,33.6225,1.0
1692
+ 264,28.76759615384614,1.0
1693
+ 306,31.956875000000007,1.0
1694
+ 328,29.219897959183665,1.0
1695
+ 185,22.125,1.0
1696
+ 51,55.66,
1697
+ 276,33.390392156862745,1.0
1698
+ 184,19.075000000000003,0.0
1699
+ 219,40.0075,2.0
1700
+ 261,29.466499999999996,1.0
1701
+ 264,25.035000000000004,1.0
1702
+ 194,34.1225,2.0
1703
+ 378,30.396571428571423,1.0
1704
+ 281,26.654047619047613,1.0
1705
+ 174,32.32,1.0
1706
+ 406,27.325438596491235,1.0
1707
+ 244,26.19755813953488,1.0
1708
+ 297,28.18769230769231,1.0
1709
+ 286,30.058048780487812,1.0
1710
+ 185,26.7125,1.0
1711
+ 194,38.605,2.0
1712
+ 188,36.1,2.0
1713
+ 171,33.82333333333333,2.0
1714
+ 186,37.852500000000006,2.0
1715
+ 336,26.97838235294117,1.0
1716
+ 256,30.569499999999998,1.0
1717
+ 291,29.83585365853659,1.0
1718
+ 244,29.90079545454545,1.0
1719
+ 158,34.582499999999996,2.0
1720
+ 337,30.399130434782606,1.0
1721
+ 185,20.635,0.0
1722
+ 258,27.240204081632648,1.0
1723
+ 171,30.1775,1.0
1724
+ 206,21.93,1.0
1725
+ 259,31.525700000000008,1.0
1726
+ 240,27.665555555555564,1.0
1727
+ 245,29.383488372093034,1.0
1728
+ 360,28.943888888888882,1.0
1729
+ 240,26.12243243243243,1.0
1730
+ 301,32.37764705882352,1.0
1731
+ 187,31.99333333333333,1.0
1732
+ 192,42.64,11.0
1733
+ 191,31.153333333333336,1.0
1734
+ 254,28.15413461538461,1.0
1735
+ 185,29.6075,1.0
1736
+ 246,31.492631578947375,1.0
1737
+ 7,38.4125,
1738
+ 251,29.053000000000008,1.0
1739
+ 259,30.72141304347826,1.0
1740
+ 325,30.891046511627902,1.0
1741
+ 313,27.23060975609756,1.0
1742
+ 249,30.693452380952387,1.0
1743
+ 323,30.258648648648652,1.0
1744
+ 2,28.0175,
1745
+ 146,37.73,2.0
1746
+ 254,31.6714,1.0
1747
+ 191,19.8625,0.0
1748
+ 3,35.150000000000006,
1749
+ 181,19.131666666666668,0.0
1750
+ 193,36.285,2.0
1751
+ 287,27.518829787234036,1.0
1752
+ 179,16.53,0.0
1753
+ 170,20.0975,0.0
1754
+ 176,25.2925,1.0
1755
+ 187,23.14,1.0
1756
+ 60,23.4775,
1757
+ 378,30.072419354838708,1.0
1758
+ 245,32.75255813953488,1.0
1759
+ 169,28.151249999999997,1.0
1760
+ 346,28.198666666666664,1.0
1761
+ 184,35.75833333333333,2.0
1762
+ 208,36.3325,2.0
1763
+ 325,29.50228571428572,1.0
1764
+ 270,27.064999999999998,1.0
1765
+ 268,28.793749999999996,1.0
1766
+ 194,33.9725,2.0
1767
+ 299,32.37053571428571,1.0
1768
+ 257,33.287,1.0
1769
+ 52,30.7425,
1770
+ 336,28.90478723404254,1.0
1771
+ 257,30.163000000000007,1.0
1772
+ 179,17.1625,0.0
1773
+ 191,29.825,1.0
1774
+ 283,31.42634615384616,1.0
1775
+ 218,29.3875,1.0
1776
+ 182,24.708000000000002,1.0
1777
+ 189,21.558333333333334,1.0
1778
+ 403,26.961944444444452,1.0
1779
+ 298,29.25369047619047,1.0
1780
+ 247,28.483522727272735,1.0
1781
+ 333,29.38631578947368,1.0
1782
+ 201,29.235,1.0
1783
+ 170,20.93,1.0
1784
+ 171,15.217500000000001,0.0
1785
+ 279,30.629787234042556,1.0
1786
+ 183,29.680000000000003,1.0
1787
+ 281,31.956794871794866,1.0
1788
+ 268,29.88204545454545,1.0
1789
+ 272,30.327435897435898,1.0
1790
+ 192,33.125,1.0
1791
+ 247,31.216052631578947,1.0
1792
+ 434,31.735147058823532,1.0
1793
+ 250,29.415416666666673,1.0
1794
+ 168,14.235,0.0
1795
+ 301,30.816749999999995,1.0
1796
+ 190,30.34,1.0
1797
+ 210,17.325,0.0
1798
+ 171,30.198333333333334,1.0
1799
+ 268,32.208720930232566,1.0
1800
+ 365,25.331046511627914,1.0
1801
+ 196,26.515,1.0
1802
+ 226,22.6075,1.0
1803
+ 157,32.95,1.0
1804
+ 316,28.454255319148924,1.0
1805
+ 255,28.87848837209302,1.0
1806
+ 289,29.71051282051282,1.0
1807
+ 295,31.020348837209298,1.0
1808
+ 241,30.707403846153845,1.0
1809
+ 53,28.6075,
1810
+ 275,28.141162790697678,1.0
1811
+ 185,23.15,1.0
1812
+ 330,30.012346938775526,1.0
1813
+ 169,22.528333333333336,1.0
1814
+ 174,46.175,11.0
1815
+ 341,26.209047619047617,1.0
1816
+ 272,28.98884615384615,1.0
1817
+ 352,30.76242424242424,1.0
1818
+ 73,39.839999999999996,
1819
+ 247,27.660952380952374,1.0
1820
+ 337,31.960789473684205,1.0
1821
+ 350,29.553900000000013,1.0
1822
+ 323,30.26803921568628,1.0
1823
+ 212,14.7725,0.0
1824
+ 247,32.36922413793103,1.0
1825
+ 264,27.644479166666667,1.0
1826
+ 246,29.695833333333333,1.0
1827
+ 273,29.638382352941182,1.0
1828
+ 147,14.079999999999998,0.0
1829
+ 407,28.117244897959182,1.0
1830
+ 144,42.807500000000005,11.0
1831
+ 266,32.06053191489361,1.0
1832
+ 187,32.3025,1.0
1833
+ 182,31.22,1.0
1834
+ 217,27.881666666666664,1.0
1835
+ 183,17.215,0.0
1836
+ 200,23.025000000000002,1.0
1837
+ 177,19.868333333333336,0.0
1838
+ 191,26.682499999999997,1.0
1839
+ 188,26.0,1.0
1840
+ 295,31.79347222222223,1.0
1841
+ 254,31.721734693877554,1.0
1842
+ 333,29.676805555555557,1.0
1843
+ 277,28.22176470588235,1.0
1844
+ 169,28.9375,1.0
1845
+ 172,24.70375,1.0
1846
+ 338,30.165595238095243,1.0
1847
+ 310,27.30895348837209,1.0
1848
+ 275,27.9747,1.0
1849
+ 214,23.35,1.0
1850
+ 256,29.377830188679248,1.0
1851
+ 171,30.0625,1.0
1852
+ 329,30.314313725490194,1.0
1853
+ 289,29.235468749999995,1.0
1854
+ 241,28.05919642857142,1.0
1855
+ 299,31.524711538461546,1.0
1856
+ 240,27.48598039215687,1.0
1857
+ 334,29.96009615384616,1.0
1858
+ 99,33.8375,
1859
+ 175,33.946666666666665,2.0
1860
+ 199,16.433333333333334,0.0
1861
+ 193,22.822499999999998,1.0
1862
+ 253,29.873055555555556,1.0
1863
+ 179,43.2175,11.0
1864
+ 380,31.80115384615385,1.0
1865
+ 277,28.81688888888889,1.0
1866
+ 172,24.957500000000003,1.0
1867
+ 173,21.247500000000002,1.0
1868
+ 244,30.34320512820512,1.0
1869
+ 274,26.578699999999998,1.0
1870
+ 317,29.15522727272727,1.0
1871
+ 208,28.8525,1.0
1872
+ 191,24.935000000000002,1.0
1873
+ 197,12.52,0.0
1874
+ 269,29.749166666666667,1.0
1875
+ 548,25.087096774193547,1.0
1876
+ 49,22.555,
1877
+ 286,31.181097560975616,1.0
1878
+ 168,28.095,1.0
1879
+ 272,33.03170454545454,1.0
1880
+ 187,21.7675,1.0
1881
+ 26,37.4075,
1882
+ 243,30.14489130434782,1.0
1883
+ 77,44.81,
1884
+ 60,10.0525,
1885
+ 153,52.8875,11.0
1886
+ 193,25.53125,1.0
1887
+ 183,29.8875,1.0
1888
+ 196,26.86,1.0
1889
+ 279,29.15142857142857,1.0
1890
+ 410,28.604625,1.0
1891
+ 186,25.816666666666666,1.0
1892
+ 242,27.79313725490196,1.0
1893
+ 172,42.6975,11.0
1894
+ 181,19.903333333333332,0.0
1895
+ 63,38.1125,
1896
+ 185,29.0475,1.0
1897
+ 169,30.597499999999997,1.0
1898
+ 213,16.93,0.0
1899
+ 291,28.095113636363635,1.0
1900
+ 231,26.3375,1.0
1901
+ 57,26.47,
1902
+ 303,29.349574468085102,1.0
1903
+ 245,28.623148148148147,1.0
1904
+ 171,25.055,1.0
1905
+ 172,40.1875,2.0
1906
+ 87,28.22666666666667,
1907
+ 313,33.81395348837209,2.0
1908
+ 180,25.21,1.0
1909
+ 242,27.254375,1.0
1910
+ 330,29.75321428571428,1.0
1911
+ 300,28.168906250000003,1.0
1912
+ 352,27.926025641025646,1.0
1913
+ 337,30.228191489361695,1.0
1914
+ 284,31.219019607843144,1.0
1915
+ 189,32.2525,1.0
1916
+ 182,25.136666666666667,1.0
1917
+ 241,31.790918367346936,1.0
1918
+ 285,28.86295918367346,1.0
1919
+ 172,32.3625,1.0
1920
+ 197,24.7325,1.0
1921
+ 168,39.343333333333334,2.0
1922
+ 459,28.825138888888887,1.0
1923
+ 317,30.08829545454545,1.0
1924
+ 230,28.935,1.0
1925
+ 262,27.195100000000004,1.0
1926
+ 351,28.82670212765958,1.0
1927
+ 0,23.3625,
1928
+ 81,36.45,
1929
+ 279,30.885609756097548,1.0
1930
+ 325,29.741111111111113,1.0
1931
+ 244,28.363777777777777,1.0
1932
+ 246,29.48456521739131,1.0
1933
+ 197,28.8025,1.0
1934
+ 265,31.38870370370371,1.0
1935
+ 187,21.82125,1.0
1936
+ 241,29.5765306122449,1.0
1937
+ 291,29.826315789473682,1.0
1938
+ 144,28.5775,1.0
1939
+ 248,31.0613725490196,1.0
1940
+ 168,38.55,2.0
1941
+ 9,33.435,
1942
+ 75,38.775,
1943
+ 96,24.427500000000002,
1944
+ 249,27.599199999999986,1.0
1945
+ 242,29.407424242424245,1.0
1946
+ 272,27.69009090909091,1.0
1947
+ 317,31.63124999999999,1.0
1948
+ 158,27.4275,1.0
1949
+ 197,31.60773584905661,1.0
1950
+ 178,25.535,1.0
1951
+ 259,31.710096153846163,1.0
1952
+ 188,31.263333333333332,1.0
1953
+ 171,20.2825,0.0
1954
+ 173,20.913333333333334,1.0
1955
+ 192,26.9125,1.0
1956
+ 241,29.380204081632655,1.0
1957
+ 361,30.418902439024382,1.0
1958
+ 205,37.205,2.0
1959
+ 270,34.108857142857154,2.0
1960
+ 197,22.1075,1.0
1961
+ 293,28.76775862068967,1.0
1962
+ 182,26.4225,1.0
1963
+ 173,46.5325,11.0
1964
+ 177,32.3925,1.0
1965
+ 187,26.48,1.0
1966
+ 193,10.05,0.0
1967
+ 172,32.0975,1.0
1968
+ 195,32.4275,1.0
1969
+ 145,40.197500000000005,2.0
1970
+ 194,26.560000000000002,1.0
1971
+ 257,31.62921052631579,1.0
1972
+ 310,28.739285714285707,1.0
1973
+ 177,27.322499999999998,1.0
1974
+ 220,21.055,1.0
1975
+ 155,30.11825581395349,1.0
1976
+ 79,32.435,
1977
+ 309,32.57474358974358,1.0
1978
+ 173,25.218333333333334,1.0
1979
+ 176,45.325,11.0
1980
+ 151,42.197500000000005,11.0
1981
+ 187,25.7,1.0
1982
+ 50,30.93,
1983
+ 170,25.229166666666668,1.0
1984
+ 199,37.540000000000006,2.0
1985
+ 171,22.69666666666667,1.0
1986
+ 312,33.63363636363636,1.0
1987
+ 246,32.21340909090909,1.0
1988
+ 72,9.219999999999999,
1989
+ 347,30.141442307692316,1.0
1990
+ 180,28.3475,1.0
1991
+ 445,30.62738095238095,1.0
1992
+ 174,15.497499999999999,0.0
1993
+ 192,39.095,2.0
1994
+ 193,21.785,1.0
1995
+ 272,27.608947368421056,1.0
1996
+ 183,42.1,11.0
1997
+ 174,23.37,1.0
1998
+ 181,30.08666666666667,1.0
1999
+ 211,26.9825,1.0
2000
+ 253,29.774705882352936,1.0
2001
+ 169,34.36833333333333,2.0
2002
+ 295,28.903984374999997,1.0
2003
+ 360,28.893947368421053,1.0
2004
+ 172,37.44,2.0
2005
+ 153,35.905,2.0
2006
+ 169,31.345,1.0
2007
+ 263,28.675138888888892,1.0
2008
+ 178,29.552500000000002,1.0
2009
+ 188,39.9225,2.0
2010
+ 173,41.115,2.0
2011
+ 200,33.7725,2.0
2012
+ 168,35.8225,2.0
2013
+ 241,32.38519999999999,1.0
2014
+ 347,31.459673913043474,1.0
2015
+ 202,26.4125,1.0
2016
+ 182,9.530000000000001,0.0
2017
+ 63,41.555,
2018
+ 171,20.814999999999998,0.0
2019
+ 203,42.4425,11.0
2020
+ 171,26.834999999999997,1.0
2021
+ 254,30.352708333333325,1.0
2022
+ 244,28.585256410256413,1.0
2023
+ 317,33.4154,1.0
2024
+ 267,26.26269230769231,1.0
2025
+ 80,22.18166666666667,
2026
+ 336,29.526666666666667,1.0
2027
+ 175,45.88,11.0
2028
+ 168,25.43,1.0
2029
+ 211,28.5475,1.0
2030
+ 214,25.137500000000003,1.0
2031
+ 222,41.42,2.0
2032
+ 172,33.77,2.0
2033
+ 175,33.5,1.0
2034
+ 85,34.625,
2035
+ 264,27.279999999999994,1.0
2036
+ 256,29.764591836734688,1.0
2037
+ 15,24.155,
2038
+ 183,30.5,1.0
2039
+ 290,28.726595744680854,1.0
2040
+ 386,27.110487804878044,1.0
2041
+ 254,28.962352941176476,1.0
2042
+ 181,20.455,0.0
2043
+ 185,39.3925,2.0
2044
+ 241,29.153260869565226,1.0
2045
+ 260,26.72344827586207,1.0
2046
+ 320,32.056000000000004,1.0
2047
+ 171,29.4575,1.0
2048
+ 147,38.8475,2.0
2049
+ 288,29.553030303030305,1.0
2050
+ 272,31.460888888888885,1.0
2051
+ 257,31.079124999999998,1.0
2052
+ 304,33.116395348837216,1.0
2053
+ 384,31.715897435897432,1.0
2054
+ 49,24.009999999999998,
2055
+ 344,28.693461538461534,1.0
2056
+ 197,22.0375,1.0
2057
+ 450,29.89776595744681,1.0
2058
+ 144,38.795,2.0
2059
+ 244,26.79927083333334,1.0
2060
+ 189,35.1975,2.0
2061
+ 194,21.939999999999998,1.0
2062
+ 274,27.45771739130435,1.0
2063
+ 171,32.2325,1.0
2064
+ 177,19.92,0.0
2065
+ 333,30.580568181818183,1.0
2066
+ 260,30.731951219512194,1.0
2067
+ 168,33.793749999999996,2.0
2068
+ 192,28.482499999999998,1.0
2069
+ 301,27.08531914893616,1.0
2070
+ 49,20.036666666666665,
2071
+ 189,20.67125,0.0
2072
+ 206,25.3375,1.0
2073
+ 261,30.195760869565216,1.0
2074
+ 170,35.27,2.0
2075
+ 199,38.27833333333333,2.0
2076
+ 211,32.92,1.0
2077
+ 191,19.8125,0.0
2078
+ 190,33.355000000000004,1.0
2079
+ 179,22.697499999999998,1.0
2080
+ 186,30.112499999999997,1.0
2081
+ 300,31.09906976744185,1.0
2082
+ 191,27.880000000000003,1.0
2083
+ 194,22.895,1.0
2084
+ 170,27.5775,1.0
2085
+ 253,30.518409090909095,1.0
2086
+ 284,34.18243902439024,2.0
2087
+ 195,19.03,0.0
2088
+ 171,34.2375,2.0
2089
+ 273,34.041458333333345,2.0
2090
+ 50,17.3425,
2091
+ 172,36.0,2.0
2092
+ 168,18.515,0.0
2093
+ 309,28.08301886792454,1.0
2094
+ 207,23.7175,1.0
2095
+ 79,24.155,
2096
+ 190,13.6025,0.0
2097
+ 187,24.016666666666666,1.0
2098
+ 341,29.61159574468086,1.0
2099
+ 268,29.83086956521739,1.0
2100
+ 265,26.271176470588237,1.0
2101
+ 28,25.380000000000003,
2102
+ 202,40.5275,2.0
2103
+ 208,38.1175,2.0
2104
+ 215,19.975,0.0
2105
+ 172,23.935,1.0
2106
+ 205,25.138333333333332,1.0
2107
+ 268,27.620810810810816,1.0
2108
+ 249,28.932558139534887,1.0
2109
+ 180,25.509999999999998,1.0
2110
+ 174,21.4675,1.0
2111
+ 246,27.579326923076923,1.0
2112
+ 208,32.435,1.0
2113
+ 269,32.91642857142856,1.0
2114
+ 363,25.678625000000004,1.0
2115
+ 262,27.430394736842107,1.0
2116
+ 203,27.6825,1.0
2117
+ 171,38.9975,2.0
2118
+ 176,24.9725,1.0
2119
+ 321,31.696938775510198,1.0
2120
+ 77,25.4675,
2121
+ 265,32.341081081081086,1.0
2122
+ 290,30.303499999999993,1.0
2123
+ 168,47.585,11.0
2124
+ 265,29.692179487179484,1.0
2125
+ 313,29.41671428571429,1.0
2126
+ 324,30.320326086956523,1.0
2127
+ 427,27.71697368421053,1.0
2128
+ 202,17.145,0.0
2129
+ 73,31.667499999999997,
2130
+ 186,38.6475,2.0
2131
+ 263,35.29510638297872,2.0
2132
+ 150,45.644999999999996,11.0
2133
+ 360,29.50595744680851,1.0
2134
+ 185,29.5625,1.0
2135
+ 268,32.28274509803921,1.0
2136
+ 274,31.320531914893625,1.0
2137
+ 269,28.82358490566038,1.0
2138
+ 176,34.86833333333333,2.0
2139
+ 171,26.68,1.0
2140
+ 363,29.75945652173914,1.0
2141
+ 262,31.941666666666663,1.0
2142
+ 197,40.4775,2.0
2143
+ 240,30.937547169811303,1.0
2144
+ 269,29.102894736842106,1.0
2145
+ 155,23.229999999999997,1.0
2146
+ 289,29.55369999999999,1.0
2147
+ 207,36.765,2.0
2148
+ 184,37.79166666666667,2.0
2149
+ 277,27.84010416666666,1.0
2150
+ 282,29.291666666666668,1.0
2151
+ 208,29.62,1.0
2152
+ 268,28.25967391304348,1.0
2153
+ 247,28.851250000000004,1.0
2154
+ 243,27.202375,1.0
2155
+ 203,21.0275,1.0
2156
+ 179,30.663333333333338,1.0
2157
+ 186,30.765,1.0
2158
+ 188,36.945,2.0
2159
+ 285,32.505625,1.0
2160
+ 174,12.6175,0.0
2161
+ 207,15.754999999999999,0.0
2162
+ 254,29.326525423728807,1.0
2163
+ 183,23.465,1.0
2164
+ 176,11.85,0.0
2165
+ 231,27.4925,1.0
2166
+ 224,18.13,0.0
2167
+ 12,20.5975,
2168
+ 391,28.054021739130434,1.0
2169
+ 168,28.941250000000004,1.0
2170
+ 177,29.669999999999998,1.0
2171
+ 173,38.8875,2.0
2172
+ 205,35.6575,2.0
2173
+ 51,47.6925,
2174
+ 260,28.767000000000007,1.0
2175
+ 100,37.41,
2176
+ 179,26.784999999999997,1.0
2177
+ 176,36.982,2.0
2178
+ 318,29.924634146341454,1.0
2179
+ 150,21.75833333333333,1.0
2180
+ 319,28.67810810810812,1.0
2181
+ 325,28.381000000000007,1.0
2182
+ 337,30.188431372549026,1.0
2183
+ 275,30.000312500000007,1.0
2184
+ 0,25.71,
2185
+ 338,29.988552631578955,1.0
2186
+ 287,28.85055555555555,1.0
2187
+ 169,35.36,2.0
2188
+ 248,29.60029411764706,1.0
2189
+ 216,24.54,1.0
2190
+ 168,26.605,1.0
2191
+ 317,30.96010638297872,1.0
2192
+ 256,30.477065217391303,1.0
2193
+ 260,29.23780487804878,1.0
2194
+ 310,31.038229166666657,1.0
2195
+ 170,25.9525,1.0
2196
+ 179,26.082500000000003,1.0
2197
+ 261,31.973260869565216,1.0
2198
+ 77,31.3125,
2199
+ 363,26.783152173913045,1.0
2200
+ 302,31.77375,1.0
2201
+ 210,28.545,1.0
2202
+ 262,27.594069767441855,1.0
2203
+ 317,30.33109756097561,1.0
2204
+ 57,29.035,
2205
+ 241,27.213611111111113,1.0
2206
+ 148,24.8275,1.0
2207
+ 172,35.961666666666666,2.0
2208
+ 169,17.031,0.0
2209
+ 192,34.54,2.0
2210
+ 197,26.7575,1.0
2211
+ 246,32.62616279069767,1.0
2212
+ 182,39.62833333333334,2.0
2213
+ 243,28.80109589041096,1.0
2214
+ 255,30.669222222222228,1.0
2215
+ 195,24.7,1.0
2216
+ 241,29.178181818181816,1.0
2217
+ 172,34.5625,2.0
2218
+ 178,32.0525,1.0
2219
+ 72,30.572499999999998,
2220
+ 410,31.500897435897425,1.0
2221
+ 209,34.875,2.0
2222
+ 169,21.682499999999997,1.0
2223
+ 262,27.147555555555552,1.0
2224
+ 262,28.796764705882353,1.0
2225
+ 268,29.732959183673465,1.0
2226
+ 287,29.214130434782597,1.0
2227
+ 199,28.8375,1.0
2228
+ 80,18.2775,
2229
+ 216,23.4775,1.0
2230
+ 169,40.06,2.0
2231
+ 91,23.52,
2232
+ 53,38.8625,
2233
+ 207,18.834999999999997,0.0
2234
+ 349,32.375975609756104,1.0
2235
+ 251,30.75882978723404,1.0
2236
+ 262,30.383928571428562,1.0
2237
+ 148,22.9975,1.0
2238
+ 74,30.285,
2239
+ 222,20.880000000000003,1.0
2240
+ 185,28.5975,1.0
2241
+ 535,26.002236842105265,1.0
2242
+ 283,26.4453488372093,1.0
2243
+ 172,33.415,1.0
2244
+ 185,29.9925,1.0
2245
+ 186,28.455,1.0
2246
+ 275,31.355540540540545,1.0
2247
+ 266,29.278409090909097,1.0
2248
+ 150,33.1,1.0
2249
+ 322,31.002692307692307,1.0
2250
+ 244,27.85308823529412,1.0
2251
+ 185,30.8375,1.0
2252
+ 171,40.95125,2.0
2253
+ 147,23.8425,1.0
2254
+ 190,24.947499999999998,1.0
2255
+ 200,38.61833333333333,2.0
2256
+ 173,35.895,2.0
2257
+ 195,28.375,1.0
2258
+ 201,21.785,1.0
2259
+ 241,27.47365853658537,1.0
2260
+ 245,32.17629629629629,1.0
2261
+ 196,36.0875,2.0
2262
+ 53,18.9725,
2263
+ 169,30.031666666666666,1.0
2264
+ 174,29.9725,1.0
2265
+ 14,27.145,
2266
+ 286,27.706097560975618,1.0
2267
+ 333,27.830487804878043,1.0
2268
+ 339,34.19444444444444,2.0
2269
+ 191,23.903333333333332,1.0
2270
+ 244,34.6979761904762,2.0
2271
+ 240,30.738962264150953,1.0
2272
+ 50,25.615000000000002,
2273
+ 292,31.439183673469387,1.0
2274
+ 259,29.060731707317068,1.0
2275
+ 178,36.2475,2.0
2276
+ 193,27.1025,1.0
2277
+ 271,36.35785714285714,2.0
2278
+ 185,23.3125,1.0
2279
+ 184,17.7625,0.0
2280
+ 242,29.227954545454534,1.0
2281
+ 257,29.83442857142857,1.0
2282
+ 259,29.844534883720936,1.0
2283
+ 188,36.55,2.0
2284
+ 144,20.045,0.0
2285
+ 300,32.16472727272727,1.0
2286
+ 267,31.893023255813954,1.0
2287
+ 245,27.826428571428565,1.0
2288
+ 74,34.435,
2289
+ 248,32.075609756097556,1.0
2290
+ 355,26.412073170731706,1.0
2291
+ 182,24.427500000000002,1.0
2292
+ 77,27.155,
2293
+ 173,44.07,11.0
2294
+ 52,45.38249999999999,
2295
+ 272,29.23673076923078,1.0
2296
+ 252,27.048255813953478,1.0
2297
+ 172,37.2575,2.0
2298
+ 261,32.27141304347826,1.0
2299
+ 61,17.8975,
2300
+ 4,42.55500000000001,
2301
+ 212,29.85,1.0
2302
+ 174,37.582499999999996,2.0
2303
+ 260,27.86744186046512,1.0
2304
+ 186,37.675,2.0
2305
+ 298,31.70083333333334,1.0
2306
+ 271,27.95955555555556,1.0
2307
+ 344,30.565340909090914,1.0
2308
+ 79,19.200000000000003,
2309
+ 172,31.8,1.0
2310
+ 325,32.1263888888889,1.0
2311
+ 78,23.93166666666667,
2312
+ 180,33.6525,2.0
2313
+ 259,32.1935,1.0
2314
+ 302,30.202346938775506,1.0
2315
+ 179,38.915,2.0
2316
+ 173,29.96,1.0
2317
+ 188,25.905,1.0
2318
+ 190,29.8525,1.0
2319
+ 219,49.055,11.0
2320
+ 292,31.29012195121951,1.0
2321
+ 268,30.64011363636363,1.0
2322
+ 259,27.886052631578963,1.0
2323
+ 289,28.916071428571428,1.0
2324
+ 300,29.736574074074063,1.0
2325
+ 194,40.4,2.0
2326
+ 286,26.92545454545453,1.0
2327
+ 24,27.0625,
2328
+ 180,34.835,2.0
2329
+ 194,28.325000000000003,1.0
2330
+ 294,30.802888888888887,1.0
2331
+ 193,20.3325,0.0
2332
+ 190,27.442500000000003,1.0
2333
+ 196,29.689999999999998,1.0
2334
+ 353,28.5529,1.0
2335
+ 208,23.026666666666667,1.0
2336
+ 146,34.754999999999995,2.0
2337
+ 298,27.018604651162786,1.0
2338
+ 336,28.952840909090902,1.0
2339
+ 173,27.744,1.0
2340
+ 267,30.29337209302326,1.0
2341
+ 249,30.222073170731708,1.0
2342
+ 179,27.346666666666664,1.0
2343
+ 360,25.799883720930236,1.0
2344
+ 260,30.273557692307683,1.0
2345
+ 278,28.032874999999997,1.0
2346
+ 213,41.8825,11.0
2347
+ 25,26.2275,
2348
+ 176,35.822500000000005,2.0
2349
+ 252,28.176899999999996,1.0
2350
+ 173,24.633333333333336,1.0
2351
+ 284,29.349666666666675,1.0
2352
+ 247,29.38743902439024,1.0
2353
+ 219,23.6175,1.0
2354
+ 25,18.33,
2355
+ 313,27.412500000000005,1.0
2356
+ 359,26.913589743589746,1.0
2357
+ 192,15.34,0.0
2358
+ 52,31.447499999999998,
2359
+ 173,34.3125,2.0
2360
+ 265,32.0796511627907,1.0
2361
+ 304,29.65365853658537,1.0
2362
+ 244,29.840853658536584,1.0
2363
+ 323,26.109222222222233,1.0
2364
+ 253,30.102894736842103,1.0
2365
+ 241,27.311304347826084,1.0
2366
+ 186,27.7925,1.0
2367
+ 241,31.72855555555555,1.0
2368
+ 53,26.82,
2369
+ 256,28.224142857142855,1.0
2370
+ 365,27.995978260869556,1.0
2371
+ 345,29.14726190476191,1.0
2372
+ 211,34.13833333333333,2.0
2373
+ 268,27.575100000000006,1.0
2374
+ 321,30.051956521739132,1.0
2375
+ 196,19.95,0.0
2376
+ 173,29.598333333333333,1.0
2377
+ 61,26.085,
2378
+ 242,29.159999999999993,1.0
2379
+ 182,30.0075,1.0
2380
+ 203,38.5275,2.0
2381
+ 202,21.91,1.0
2382
+ 241,28.566222222222223,1.0
2383
+ 172,25.259999999999998,1.0
2384
+ 326,31.87190476190476,1.0
2385
+ 243,29.827558139534883,1.0
2386
+ 266,29.450416666666666,1.0
2387
+ 290,32.39,1.0
2388
+ 171,41.1575,2.0
2389
+ 180,37.1175,2.0
2390
+ 177,20.2325,0.0
2391
+ 168,21.265,1.0
2392
+ 168,18.33,0.0
2393
+ 168,30.19666666666667,1.0
2394
+ 284,27.626511627906982,1.0
2395
+ 146,36.515,2.0
2396
+ 288,27.90911764705882,1.0
2397
+ 277,27.94978723404256,1.0
2398
+ 183,23.811666666666667,1.0
2399
+ 173,42.474999999999994,11.0
2400
+ 324,28.24952380952381,1.0
2401
+ 213,28.42,1.0
2402
+ 243,29.663207547169808,1.0
2403
+ 194,32.25,1.0
2404
+ 196,16.69333333333333,0.0
2405
+ 215,22.377499999999998,1.0
2406
+ 191,32.46,1.0
2407
+ 168,25.176666666666666,1.0
2408
+ 188,38.85,2.0
2409
+ 172,38.167500000000004,2.0
2410
+ 168,27.48,1.0
2411
+ 196,31.365000000000002,1.0
2412
+ 262,26.33333333333334,1.0
2413
+ 342,33.89486111111111,2.0
2414
+ 169,35.0175,2.0
2415
+ 281,32.42380952380953,1.0
2416
+ 268,24.099886363636358,1.0
2417
+ 83,28.7725,
2418
+ 193,31.630000000000003,1.0
2419
+ 58,24.28,
2420
+ 253,29.632040816326523,1.0
2421
+ 209,27.22,1.0
2422
+ 186,30.916249999999998,1.0
2423
+ 266,30.701785714285716,1.0
2424
+ 323,29.644999999999996,1.0
2425
+ 168,28.24,1.0
2426
+ 190,28.082500000000003,1.0
2427
+ 291,31.631750000000004,1.0
2428
+ 353,29.23,1.0
2429
+ 197,50.129999999999995,11.0
2430
+ 291,31.84536585365854,1.0
2431
+ 241,31.321666666666665,1.0
2432
+ 248,28.235813953488375,1.0
2433
+ 153,34.8825,2.0
2434
+ 319,27.79472972972974,1.0
2435
+ 171,36.7975,2.0
2436
+ 170,26.92833333333333,1.0
2437
+ 189,41.39666666666667,2.0
2438
+ 222,29.990000000000002,1.0
2439
+ 3,35.559999999999995,2.0
2440
+ 317,28.342888888888886,1.0
2441
+ 261,27.287727272727263,1.0
2442
+ 186,23.268333333333334,1.0
2443
+ 344,30.566538461538467,1.0
2444
+ 180,32.31333333333333,1.0
2445
+ 325,27.11954545454545,1.0
2446
+ 177,30.994999999999997,1.0
2447
+ 286,29.179074074074077,1.0
2448
+ 261,32.1084375,1.0
2449
+ 170,30.4225,1.0
2450
+ 49,23.177500000000002,
2451
+ 171,46.475,11.0
2452
+ 182,31.05666666666667,1.0
2453
+ 193,31.817500000000003,1.0
2454
+ 193,18.06833333333333,0.0
2455
+ 181,21.42833333333333,1.0
2456
+ 193,24.7475,1.0
2457
+ 208,32.925,1.0
2458
+ 355,31.56028571428572,1.0
2459
+ 357,28.575100000000006,1.0
2460
+ 185,35.0925,2.0
2461
+ 80,37.754999999999995,
2462
+ 76,21.0175,
2463
+ 197,34.7825,2.0
2464
+ 224,32.74,1.0
2465
+ 253,25.947972972972966,1.0
2466
+ 266,29.066714285714287,1.0
2467
+ 151,31.125,1.0
2468
+ 268,31.56779069767441,1.0
2469
+ 426,29.373243243243248,1.0
2470
+ 2,44.16,
2471
+ 172,29.97375,1.0
2472
+ 243,30.140568181818175,1.0
2473
+ 179,23.0325,1.0
2474
+ 168,19.23,0.0
2475
+ 274,29.171515151515155,1.0
2476
+ 255,32.58617647058824,1.0
2477
+ 324,26.334891304347824,1.0
2478
+ 302,30.730121951219516,1.0
2479
+ 260,31.770816326530603,1.0
2480
+ 284,28.50940476190476,1.0
2481
+ 272,30.81,1.0
2482
+ 252,32.37887500000001,1.0
2483
+ 173,21.38,1.0
2484
+ 177,16.425,0.0
2485
+ 81,41.272499999999994,
2486
+ 199,20.1875,0.0
2487
+ 176,25.9925,1.0
2488
+ 169,27.060000000000002,1.0
2489
+ 211,27.325,1.0
2490
+ 339,28.108625,1.0
2491
+ 173,41.806666666666665,11.0
2492
+ 332,29.701399999999992,1.0
2493
+ 179,27.822499999999998,1.0
2494
+ 284,30.325555555555557,1.0
2495
+ 52,33.0675,
2496
+ 248,30.682916666666667,1.0
2497
+ 190,31.2075,1.0
2498
+ 195,30.69333333333333,1.0
2499
+ 56,16.77,
2500
+ 255,30.068365384615383,1.0
2501
+ 248,25.311444444444437,1.0
2502
+ 316,29.78513888888889,1.0
2503
+ 240,30.685624999999995,1.0
2504
+ 158,27.2125,1.0
2505
+ 285,30.060000000000013,1.0
2506
+ 255,33.04977777777777,1.0
2507
+ 252,29.246874999999992,1.0
2508
+ 298,29.979736842105265,1.0
2509
+ 295,25.236842105263154,1.0
2510
+ 242,28.659130434782607,1.0
2511
+ 317,33.80478260869565,2.0
2512
+ 169,46.083,11.0
2513
+ 180,28.490000000000002,1.0
2514
+ 182,26.965,1.0
2515
+ 241,30.46262500000001,1.0
2516
+ 189,22.6,1.0
2517
+ 145,22.8825,1.0
2518
+ 182,17.2225,0.0
2519
+ 290,29.0575,1.0
2520
+ 266,28.05115384615385,1.0
2521
+ 188,23.80333333333333,1.0
2522
+ 152,7.535,0.0
2523
+ 194,34.8275,2.0
2524
+ 296,28.624090909090906,1.0
2525
+ 269,29.718522727272713,1.0
2526
+ 3,33.705,
2527
+ 314,28.936111111111106,1.0
2528
+ 285,30.869404761904757,1.0
2529
+ 275,30.03375,1.0
2530
+ 303,32.00657407407407,1.0
2531
+ 284,31.39627659574468,1.0
2532
+ 291,30.100869565217405,1.0
2533
+ 172,18.496666666666666,0.0
2534
+ 245,31.869749999999993,1.0
2535
+ 217,32.504999999999995,1.0
2536
+ 275,31.014999999999993,1.0
2537
+ 320,28.76511627906977,1.0
2538
+ 187,31.405,1.0
2539
+ 177,24.933333333333334,1.0
2540
+ 54,21.3875,
2541
+ 227,31.25666666666667,1.0
2542
+ 176,26.415,1.0
2543
+ 25,39.427499999999995,
2544
+ 86,19.5375,
2545
+ 299,31.373771929824564,1.0
2546
+ 171,38.74625,2.0
2547
+ 432,32.81814285714285,1.0
2548
+ 262,28.77536585365853,1.0
2549
+ 243,33.21776315789474,1.0
2550
+ 254,29.539999999999996,1.0
2551
+ 52,26.067500000000003,
2552
+ 168,29.197499999999998,1.0
2553
+ 264,32.947361111111114,1.0
2554
+ 174,32.817499999999995,1.0
2555
+ 288,32.276666666666664,1.0
2556
+ 173,29.659999999999997,1.0
2557
+ 219,19.9625,0.0
2558
+ 60,20.4775,
2559
+ 257,28.469444444444438,1.0
2560
+ 177,23.53833333333333,1.0
2561
+ 51,45.225,
2562
+ 303,28.16529411764706,1.0
2563
+ 168,30.655,1.0
2564
+ 223,36.435,2.0
2565
+ 177,26.865,1.0
2566
+ 198,38.5975,2.0
2567
+ 187,15.518333333333333,0.0
2568
+ 216,28.83,1.0
2569
+ 202,33.3125,1.0
2570
+ 151,30.1075,1.0
2571
+ 51,25.73,
2572
+ 259,31.90314814814815,1.0
2573
+ 316,30.695930232558137,1.0
2574
+ 221,17.4675,0.0
2575
+ 216,38.0775,2.0
2576
+ 48,23.1025,
2577
+ 172,18.241666666666664,0.0
2578
+ 193,25.65125,1.0
2579
+ 150,19.9075,0.0
2580
+ 263,28.603977272727267,1.0
2581
+ 255,30.206704545454556,1.0
2582
+ 173,25.141666666666666,1.0
2583
+ 185,32.3975,1.0
2584
+ 328,29.405666666666672,1.0
2585
+ 155,30.200000000000003,1.0
2586
+ 327,30.68364864864865,1.0
2587
+ 322,29.099891304347832,1.0
2588
+ 400,27.980595238095248,1.0
2589
+ 255,27.690000000000005,1.0
2590
+ 290,26.852826086956522,1.0
2591
+ 256,29.443555555555562,1.0
2592
+ 215,20.27,0.0
2593
+ 175,32.53666666666667,1.0
2594
+ 169,25.525,1.0
2595
+ 197,36.832499999999996,2.0
2596
+ 332,29.450675675675676,1.0
2597
+ 81,45.6525,
2598
+ 220,19.1375,0.0
2599
+ 267,26.89255555555556,1.0
2600
+ 276,26.908170731707315,1.0
2601
+ 248,30.72662790697675,1.0
2602
+ 52,25.5175,
2603
+ 252,28.94988095238095,1.0
2604
+ 292,27.468,1.0
2605
+ 186,25.945,1.0
2606
+ 294,24.887244897959178,1.0
2607
+ 477,31.418552631578958,1.0
2608
+ 150,32.6975,1.0
2609
+ 281,27.90448717948718,1.0
2610
+ 189,19.8425,0.0
2611
+ 197,24.755,1.0
2612
+ 212,35.9125,2.0
2613
+ 185,30.180000000000007,1.0
2614
+ 220,17.365,0.0
2615
+ 269,30.79345238095238,1.0
2616
+ 287,28.875975609756104,1.0
2617
+ 276,29.867567567567566,1.0
2618
+ 265,30.9640243902439,1.0
2619
+ 60,25.725,
2620
+ 198,31.064999999999998,1.0
2621
+ 339,32.118750000000006,1.0
2622
+ 293,27.387307692307694,1.0
2623
+ 220,26.675,1.0
2624
+ 144,38.417500000000004,2.0
2625
+ 252,31.815399999999986,1.0
2626
+ 212,26.465,2.0
2627
+ 200,20.513333333333332,0.0
2628
+ 244,32.3942372881356,1.0
2629
+ 284,25.77921875,1.0
2630
+ 195,25.265,1.0
2631
+ 202,24.898333333333337,1.0
2632
+ 300,31.21450980392157,1.0
2633
+ 155,34.769999999999996,1.0
2634
+ 191,24.425,1.0
2635
+ 194,32.0925,1.0
2636
+ 285,25.546093750000004,1.0
2637
+ 262,28.36208333333333,1.0
2638
+ 181,21.498333333333335,1.0
2639
+ 246,27.353048780487804,1.0
2640
+ 192,19.997500000000002,0.0
2641
+ 218,42.5175,11.0
2642
+ 178,27.067500000000003,1.0
2643
+ 284,27.29740384615384,1.0
2644
+ 170,31.615,1.0
2645
+ 325,29.54666666666667,1.0
2646
+ 168,36.23125,2.0
2647
+ 183,28.084999999999997,1.0
2648
+ 340,28.281976744186046,1.0
2649
+ 245,29.790468749999995,1.0
2650
+ 265,31.97622222222222,1.0
2651
+ 247,31.30077777777777,1.0
2652
+ 252,27.139431818181823,1.0
2653
+ 242,32.92,1.0
2654
+ 255,29.01476190476191,1.0
2655
+ 169,31.622500000000002,1.0
2656
+ 188,31.195000000000004,1.0
2657
+ 170,21.880000000000003,1.0
2658
+ 152,33.335,1.0
2659
+ 171,23.047500000000003,1.0
2660
+ 4,30.88,
2661
+ 214,45.935,11.0
2662
+ 362,30.38088888888889,1.0
2663
+ 267,28.849749999999993,1.0
2664
+ 178,35.6625,2.0
2665
+ 255,33.44738095238095,1.0
2666
+ 194,9.675,0.0
2667
+ 191,30.974999999999998,1.0
2668
+ 210,20.451666666666668,0.0
2669
+ 294,24.200138888888894,1.0
2670
+ 194,26.456666666666667,1.0
2671
+ 197,30.71666666666667,1.0
2672
+ 241,29.11744186046511,1.0
2673
+ 3,28.1825,
2674
+ 260,30.167129629629624,1.0
2675
+ 146,45.3,11.0
2676
+ 217,37.3125,2.0
2677
+ 26,35.5525,
2678
+ 245,29.82530612244899,1.0
2679
+ 278,31.278953488372085,1.0
2680
+ 254,28.155425531914887,1.0
2681
+ 444,29.8017924528302,1.0
2682
+ 147,15.8275,0.0
2683
+ 156,19.8225,0.0
2684
+ 169,37.293749999999996,2.0
2685
+ 244,29.859625,1.0
2686
+ 247,29.092105263157894,1.0
2687
+ 258,29.573899999999995,1.0
2688
+ 190,41.39666666666667,2.0
2689
+ 81,35.2225,
2690
+ 181,21.854999999999997,1.0
2691
+ 185,19.008333333333333,0.0
2692
+ 171,24.224999999999998,1.0
2693
+ 187,39.86,2.0
2694
+ 310,30.620526315789473,1.0
2695
+ 148,26.725,1.0
2696
+ 309,28.861666666666675,1.0
2697
+ 101,30.2025,
2698
+ 290,28.149651162790697,1.0
2699
+ 194,26.585,1.0
2700
+ 258,32.639210526315786,1.0
2701
+ 185,35.1325,2.0
2702
+ 173,30.87,1.0
2703
+ 197,31.955000000000002,1.0
2704
+ 180,22.97,1.0
2705
+ 264,28.073289473684213,1.0
2706
+ 267,30.830263157894734,1.0
2707
+ 195,24.6925,1.0
2708
+ 246,29.755609756097556,1.0
2709
+ 362,29.62878048780488,1.0
2710
+ 265,27.87329545454546,1.0
2711
+ 224,31.54,1.0
2712
+ 243,27.66707317073171,1.0
2713
+ 183,27.8125,1.0
2714
+ 319,33.31951612903225,1.0
2715
+ 86,35.961666666666666,
2716
+ 251,29.696707317073166,1.0
2717
+ 248,30.02329545454546,1.0
2718
+ 243,29.322714285714294,1.0
2719
+ 172,26.94,1.0
2720
+ 211,45.510000000000005,11.0
2721
+ 51,29.9625,
2722
+ 172,25.18,1.0
2723
+ 212,32.2875,1.0
2724
+ 192,31.310000000000002,1.0
2725
+ 181,22.451666666666664,1.0
2726
+ 240,31.349999999999994,1.0
2727
+ 5,28.0,
2728
+ 243,29.779782608695655,1.0
2729
+ 257,28.8407,1.0
2730
+ 7,24.86,
2731
+ 173,39.9975,2.0
2732
+ 194,24.6425,1.0
2733
+ 176,23.716666666666665,1.0
2734
+ 194,13.885,0.0
2735
+ 152,30.1575,1.0
2736
+ 308,31.268,1.0
2737
+ 170,30.265,1.0
2738
+ 197,36.6275,2.0
2739
+ 294,31.3125,1.0
2740
+ 342,31.02290322580645,1.0
2741
+ 362,25.994142857142855,1.0
2742
+ 53,28.585,1.0
2743
+ 173,23.01,1.0
2744
+ 275,30.026333333333326,1.0
2745
+ 371,26.708448275862064,1.0
2746
+ 252,24.799767441860467,1.0
2747
+ 343,27.2053125,1.0
2748
+ 290,25.565384615384612,1.0
2749
+ 325,26.248673469387754,1.0
2750
+ 241,29.403928571428565,1.0
2751
+ 193,30.515,1.0
2752
+ 50,42.0325,
2753
+ 175,35.821666666666665,2.0
2754
+ 168,40.37833333333334,1.0
2755
+ 208,20.299999999999997,0.0
2756
+ 195,28.4775,1.0
2757
+ 173,30.60166666666667,1.0
2758
+ 302,27.316770833333326,1.0
2759
+ 60,29.252499999999998,
2760
+ 171,26.62,1.0
2761
+ 243,30.629599999999996,1.0
2762
+ 244,28.131999999999998,1.0
2763
+ 317,29.924433962264153,1.0
2764
+ 166,28.905681818181804,1.0
2765
+ 171,39.653749999999995,2.0
2766
+ 300,33.69842105263157,2.0
2767
+ 172,32.4275,1.0
2768
+ 162,34.70333333333333,2.0
2769
+ 283,24.383749999999996,1.0
2770
+ 253,26.450116279069768,1.0
2771
+ 345,29.42134146341463,1.0
2772
+ 356,28.99098039215686,1.0
2773
+ 316,27.63035714285714,1.0
2774
+ 172,27.24,1.0
2775
+ 168,30.90833333333333,1.0
2776
+ 168,29.473000000000003,1.0
2777
+ 267,31.24445945945946,1.0
2778
+ 251,31.87589743589744,1.0
2779
+ 172,40.7875,2.0
2780
+ 276,28.0247619047619,1.0
2781
+ 254,30.519615384615385,1.0
2782
+ 257,28.794807692307693,1.0
2783
+ 169,22.755,1.0
2784
+ 147,13.985,0.0
2785
+ 209,12.105,0.0
2786
+ 194,21.13333333333333,1.0
2787
+ 195,35.72,2.0
2788
+ 266,28.696447368421044,1.0
2789
+ 210,25.721666666666664,1.0
2790
+ 262,28.44,1.0
2791
+ 53,18.975,
2792
+ 256,30.71469387755102,1.0
2793
+ 256,29.410086206896544,1.0
2794
+ 247,26.412755102040816,1.0
2795
+ 51,25.6575,
2796
+ 212,18.5,0.0
2797
+ 194,35.525,2.0
2798
+ 495,28.416363636363634,1.0
2799
+ 338,29.078571428571422,1.0
2800
+ 63,16.9625,
2801
+ 83,37.595,
2802
+ 283,27.880113636363635,1.0
2803
+ 254,30.6804347826087,1.0
2804
+ 352,33.36738095238096,1.0
2805
+ 177,35.541666666666664,2.0
2806
+ 194,29.22,1.0
2807
+ 177,33.53333333333334,1.0
2808
+ 146,41.865,11.0
2809
+ 181,23.1675,1.0
2810
+ 244,30.03527027027027,1.0
2811
+ 332,31.46604166666667,1.0
2812
+ 170,43.82875,11.0
2813
+ 169,26.075,1.0
2814
+ 266,27.716874999999998,1.0
2815
+ 319,28.85343750000001,1.0
2816
+ 339,29.754743589743587,1.0
2817
+ 274,31.00790909090909,1.0
2818
+ 253,33.345921052631574,1.0
2819
+ 334,29.212023809523803,1.0
2820
+ 265,30.590833333333336,1.0
2821
+ 256,29.835555555555555,1.0
2822
+ 266,32.25681818181818,1.0
2823
+ 204,16.2,0.0
2824
+ 249,31.148875000000004,1.0
2825
+ 211,28.5125,1.0
2826
+ 286,28.979999999999993,1.0
2827
+ 243,29.009027777777778,1.0
2828
+ 216,45.6675,11.0
2829
+ 188,40.33,2.0
2830
+ 279,29.051521739130433,1.0
2831
+ 197,30.015,1.0
2832
+ 175,18.325,0.0
2833
+ 206,25.5575,1.0
2834
+ 263,31.7009375,1.0
2835
+ 186,24.1025,1.0
2836
+ 204,27.8625,1.0
2837
+ 249,32.833452380952394,1.0
2838
+ 174,24.39,1.0
2839
+ 275,32.87033333333334,1.0
2840
+ 211,34.1075,2.0
2841
+ 267,29.060188679245293,1.0
2842
+ 169,21.23,1.0
2843
+ 182,25.6625,1.0
2844
+ 244,28.23288888888889,1.0
2845
+ 301,25.112820512820512,1.0
2846
+ 35,27.115000000000002,
2847
+ 358,29.390731707317077,1.0
2848
+ 264,27.180116279069765,1.0
2849
+ 196,21.1425,1.0
2850
+ 149,27.479999999999997,1.0
2851
+ 180,28.065,1.0
2852
+ 343,28.807261904761905,1.0
2853
+ 298,32.1834693877551,1.0
2854
+ 257,29.879404761904766,1.0
2855
+ 63,29.0,
2856
+ 317,27.928552631578942,1.0
2857
+ 359,29.591511627906975,1.0
2858
+ 193,46.980000000000004,11.0
2859
+ 326,30.39963414634147,1.0
2860
+ 284,31.625357142857144,1.0
2861
+ 183,17.7725,0.0
2862
+ 181,39.96125,2.0
2863
+ 260,27.94034090909091,1.0
2864
+ 173,27.653333333333336,1.0
2865
+ 240,30.71488372093024,1.0
2866
+ 172,44.59,11.0
2867
+ 147,17.87,0.0
2868
+ 256,26.408039215686273,1.0
2869
+ 315,31.87027027027027,1.0
2870
+ 287,34.486428571428576,2.0
2871
+ 266,34.132763157894736,2.0
2872
+ 158,33.2625,1.0
2873
+ 146,22.465,1.0
2874
+ 269,33.04329545454546,1.0
2875
+ 188,36.3375,2.0
2876
+ 151,27.3075,1.0
2877
+ 315,31.288111111111125,1.0
2878
+ 185,28.605,1.0
2879
+ 184,45.625,11.0
2880
+ 8,25.775000000000002,
2881
+ 284,27.850510204081626,1.0
2882
+ 78,47.19333333333333,
2883
+ 50,31.7225,
2884
+ 174,39.31,2.0
2885
+ 362,30.641944444444448,1.0
2886
+ 170,18.9225,0.0
2887
+ 298,25.16727272727272,1.0
2888
+ 149,39.03,2.0
2889
+ 250,31.93614583333334,1.0
2890
+ 241,29.868,1.0
2891
+ 201,20.981666666666666,1.0
2892
+ 341,26.052051282051284,1.0
2893
+ 241,29.430400000000006,1.0
2894
+ 294,31.602613636363643,1.0
2895
+ 271,29.71010638297873,1.0
2896
+ 194,28.4925,1.0
2897
+ 151,25.619999999999997,1.0
2898
+ 180,26.684000000000005,1.0
2899
+ 169,38.48875,2.0
2900
+ 28,34.55,
2901
+ 248,26.320909090909087,1.0
2902
+ 295,29.24325581395349,1.0
2903
+ 243,25.933265306122443,1.0
2904
+ 299,32.16295081967213,1.0
2905
+ 169,30.481666666666666,1.0
2906
+ 220,29.167499999999997,1.0
2907
+ 245,29.63163043478261,1.0
2908
+ 305,27.24777777777778,1.0
2909
+ 52,28.36,
2910
+ 172,26.911666666666665,1.0
2911
+ 290,30.227307692307694,1.0
2912
+ 259,27.94459459459459,1.0
2913
+ 169,31.331666666666667,1.0
2914
+ 200,21.155,1.0
2915
+ 158,30.439999999999998,1.0
2916
+ 270,31.579324324324322,1.0
2917
+ 144,22.785,1.0
2918
+ 222,18.9675,0.0
2919
+ 172,36.41166666666667,2.0
2920
+ 246,30.940952380952385,1.0
2921
+ 179,8.0625,0.0
2922
+ 212,39.22,2.0
2923
+ 252,30.900270270270276,1.0
2924
+ 253,29.46272727272727,1.0
2925
+ 182,30.4825,1.0
2926
+ 171,31.590000000000003,1.0
2927
+ 264,28.54461538461539,1.0
2928
+ 248,24.054204545454546,1.0
2929
+ 260,30.691100000000006,1.0
2930
+ 195,40.395,2.0
2931
+ 299,30.236734693877544,1.0
2932
+ 180,27.009999999999998,1.0
2933
+ 25,32.6425,
2934
+ 263,31.63618421052631,1.0
2935
+ 192,29.08,1.0
2936
+ 152,25.445,1.0
2937
+ 185,15.155,0.0
2938
+ 172,41.18333333333334,2.0
2939
+ 251,31.984500000000004,1.0
2940
+ 178,19.326666666666668,0.0
2941
+ 244,27.088749999999997,1.0
2942
+ 350,30.867236842105275,1.0
2943
+ 300,28.45662162162163,1.0
2944
+ 75,32.50397435897436,1.0
2945
+ 168,13.74,0.0
2946
+ 188,26.0,1.0
2947
+ 196,38.165,2.0
2948
+ 256,29.061326530612252,1.0
2949
+ 332,29.70675675675676,1.0
2950
+ 245,29.078378378378375,1.0
2951
+ 150,56.004999999999995,11.0
2952
+ 196,37.355,2.0
2953
+ 300,30.52352272727272,1.0
2954
+ 243,27.398214285714282,1.0
2955
+ 294,30.329418604651185,1.0
2956
+ 183,26.4875,1.0
2957
+ 292,28.778269230769236,1.0
2958
+ 305,31.308026315789473,1.0
2959
+ 178,32.455,1.0
2960
+ 181,33.042500000000004,1.0
2961
+ 256,34.19795918367347,2.0
2962
+ 515,30.39095238095239,1.0
2963
+ 366,32.5496052631579,1.0
2964
+ 244,28.95588235294117,1.0
2965
+ 240,30.539245283018875,1.0
2966
+ 178,38.035,2.0
2967
+ 173,32.403333333333336,1.0
2968
+ 273,30.332195121951212,1.0
2969
+ 187,25.3125,1.0
2970
+ 179,25.125,1.0
2971
+ 222,12.8525,0.0
2972
+ 172,27.12375,1.0
2973
+ 198,40.995000000000005,2.0
2974
+ 269,29.505131578947367,1.0
2975
+ 168,29.938333333333333,1.0
2976
+ 244,31.902358490566026,1.0
2977
+ 256,26.204545454545453,1.0
2978
+ 191,27.82,1.0
2979
+ 370,31.196874999999995,1.0
2980
+ 287,30.587790697674414,1.0
2981
+ 54,22.15,
2982
+ 299,28.050238095238093,1.0
2983
+ 175,14.07,0.0
2984
+ 259,32.089999999999996,1.0
2985
+ 246,30.2756862745098,1.0
2986
+ 252,33.010333333333335,1.0
2987
+ 188,44.155,11.0
2988
+ 249,27.094893617021267,1.0
2989
+ 168,35.655,2.0
2990
+ 194,38.0275,2.0
2991
+ 348,29.393375,1.0
2992
+ 299,29.13656862745098,1.0
2993
+ 378,32.94499999999999,1.0
2994
+ 176,31.8375,1.0
2995
+ 312,26.991630434782614,1.0
2996
+ 169,33.2525,1.0
2997
+ 149,29.965,1.0
2998
+ 221,20.98,1.0
2999
+ 169,21.371666666666666,1.0
3000
+ 317,32.28960784313726,1.0
3001
+ 53,17.4875,
3002
+ 176,32.405,1.0
3003
+ 151,29.668333333333333,1.0
3004
+ 4,28.1,
3005
+ 310,31.905921052631577,1.0
3006
+ 173,19.1675,0.0
3007
+ 219,36.504999999999995,2.0
3008
+ 171,33.788333333333334,2.0
3009
+ 194,12.072500000000002,0.0
3010
+ 261,27.54846153846154,1.0
3011
+ 254,31.257111111111108,1.0
3012
+ 0,37.7625,
3013
+ 0,30.8975,
3014
+ 197,50.288333333333334,11.0
3015
+ 272,28.68488888888889,1.0
3016
+ 316,28.416578947368418,1.0
3017
+ 259,29.13265957446809,1.0
3018
+ 190,24.3575,1.0
3019
+ 76,42.9975,
3020
+ 321,28.67095744680851,1.0
3021
+ 181,27.3625,1.0
3022
+ 323,29.128902439024387,1.0
3023
+ 244,28.084042553191484,1.0
3024
+ 209,22.55,1.0
3025
+ 213,39.8725,2.0
3026
+ 292,27.571568627450983,1.0
3027
+ 172,35.900000000000006,2.0
3028
+ 243,26.858205128205125,1.0
3029
+ 271,29.5524358974359,1.0
3030
+ 243,26.343114754098355,1.0
3031
+ 173,15.8525,0.0
3032
+ 10,25.015,
3033
+ 211,31.771666666666672,1.0
3034
+ 434,32.554583333333326,1.0
3035
+ 331,26.93602040816327,1.0
3036
+ 177,32.98166666666666,1.0
3037
+ 359,29.387564102564102,1.0
3038
+ 314,27.719871794871803,1.0
3039
+ 194,29.9725,1.0
3040
+ 52,36.105000000000004,
3041
+ 295,30.269148936170197,1.0
3042
+ 158,14.96,0.0
3043
+ 258,30.606000000000005,1.0
3044
+ 156,19.825,0.0
3045
+ 193,20.58,0.0
3046
+ 168,33.485,1.0
3047
+ 437,29.622446808510634,1.0
3048
+ 184,25.398750000000003,1.0
3049
+ 367,31.743918918918915,1.0
3050
+ 177,23.180000000000003,1.0
3051
+ 176,24.447,1.0
3052
+ 241,25.210340909090913,1.0
3053
+ 250,29.482619047619046,1.0
3054
+ 181,44.682500000000005,11.0
3055
+ 170,14.881666666666666,0.0
3056
+ 221,22.65,1.0
3057
+ 240,30.0953,1.0
3058
+ 2,31.71,
3059
+ 173,46.355,11.0
3060
+ 276,29.110333333333337,1.0
3061
+ 280,28.98583333333333,1.0
3062
+ 455,30.57845238095238,1.0
3063
+ 53,25.07,
3064
+ 171,25.85,1.0
3065
+ 172,23.105,1.0
3066
+ 0,32.901666666666664,
3067
+ 211,42.56,11.0
3068
+ 94,39.475,
3069
+ 297,27.24326530612246,1.0
3070
+ 262,29.184727272727276,1.0
3071
+ 183,26.6525,1.0
3072
+ 279,32.6078409090909,1.0
3073
+ 169,42.9625,11.0
3074
+ 245,29.67744186046512,1.0
3075
+ 240,29.544418604651163,1.0
3076
+ 239,29.254358974358976,1.0
3077
+ 282,30.48671428571428,1.0
3078
+ 267,30.970789473684206,1.0
3079
+ 257,27.954583333333318,1.0
3080
+ 203,30.998333333333335,1.0
3081
+ 284,31.351100000000002,1.0
3082
+ 168,26.06625,1.0
3083
+ 172,22.5925,1.0
3084
+ 216,30.34,1.0
3085
+ 243,29.309512195121947,1.0
3086
+ 186,24.89,1.0
3087
+ 282,31.21574468085106,1.0
3088
+ 377,29.800454545454546,1.0
3089
+ 147,27.5375,1.0
3090
+ 293,30.495699999999996,1.0
3091
+ 175,36.345,2.0
3092
+ 149,30.895000000000003,1.0
3093
+ 265,29.73219512195123,1.0
3094
+ 25,24.002499999999998,
3095
+ 296,26.302125,1.0
3096
+ 336,28.921999999999993,1.0
3097
+ 229,27.015,1.0
3098
+ 248,29.853522727272722,1.0
3099
+ 175,33.791666666666664,2.0
3100
+ 324,32.88133333333334,1.0
3101
+ 180,25.490000000000002,1.0
3102
+ 206,37.905,2.0
3103
+ 170,33.7,2.0
3104
+ 257,31.135454545454557,1.0
3105
+ 243,31.57264705882353,1.0
3106
+ 178,18.502499999999998,0.0
3107
+ 145,42.0225,11.0
3108
+ 169,30.31,1.0
3109
+ 147,33.1425,1.0
3110
+ 171,26.1625,1.0
3111
+ 146,26.4325,1.0
3112
+ 196,17.822499999999998,0.0
3113
+ 288,29.9745652173913,1.0
3114
+ 240,30.86877777777777,1.0
3115
+ 292,28.93674418604651,1.0
3116
+ 169,16.27,0.0
3117
+ 241,30.466749999999998,1.0
3118
+ 351,29.425000000000004,1.0
3119
+ 203,23.1175,1.0
3120
+ 197,32.1525,1.0
3121
+ 63,34.745,
3122
+ 305,30.160487804878052,1.0
3123
+ 212,31.1675,1.0
3124
+ 173,25.540000000000003,1.0
3125
+ 206,21.1475,1.0
3126
+ 480,30.046808510638304,1.0
3127
+ 215,34.2475,2.0
3128
+ 173,46.9675,11.0
3129
+ 180,15.1275,0.0
3130
+ 192,36.903333333333336,2.0
3131
+ 316,32.53972972972972,1.0
3132
+ 329,28.512272727272727,1.0
3133
+ 241,28.052040816326535,1.0
3134
+ 190,30.052500000000002,1.0
3135
+ 187,40.3575,2.0
3136
+ 271,28.875,1.0
3137
+ 151,47.2675,11.0
3138
+ 184,27.022499999999997,1.0
3139
+ 319,30.955476190476208,1.0
3140
+ 256,30.52968085106384,1.0
3141
+ 371,33.958793103448286,2.0
3142
+ 172,23.3975,1.0
3143
+ 182,19.3525,0.0
3144
+ 332,28.71805555555556,1.0
3145
+ 214,36.35166666666667,2.0
3146
+ 183,19.818333333333335,0.0
3147
+ 174,39.3275,2.0
3148
+ 173,13.059999999999999,0.0
3149
+ 144,41.8625,11.0
3150
+ 89,18.025,
3151
+ 192,40.7325,2.0
3152
+ 205,46.495,11.0
3153
+ 279,32.87543859649123,1.0
3154
+ 51,28.380000000000003,
3155
+ 274,29.65973684210526,1.0
3156
+ 63,11.4575,
3157
+ 173,37.775,2.0
3158
+ 168,29.8125,1.0
3159
+ 58,14.815,
3160
+ 168,25.630000000000003,1.0
3161
+ 241,27.93611111111111,1.0
3162
+ 279,29.711250000000007,1.0
3163
+ 196,49.201666666666675,11.0
3164
+ 171,25.2675,1.0
3165
+ 184,16.689999999999998,0.0
3166
+ 213,30.8075,1.0
3167
+ 190,37.9325,2.0
3168
+ 279,32.66486842105263,1.0
3169
+ 171,46.2275,11.0
3170
+ 195,27.32,1.0
3171
+ 259,27.157575757575763,1.0
3172
+ 144,28.2375,1.0
3173
+ 252,26.565714285714282,1.0
3174
+ 174,25.497500000000002,1.0
3175
+ 365,32.27983870967741,1.0
3176
+ 242,31.13385416666667,1.0
3177
+ 299,27.374249999999996,1.0
3178
+ 178,28.856666666666666,1.0
3179
+ 184,12.475,0.0
3180
+ 325,30.981166666666663,1.0
3181
+ 178,36.364999999999995,2.0
3182
+ 294,27.52905405405405,1.0
3183
+ 177,31.903750000000002,1.0
3184
+ 208,29.385,1.0
3185
+ 330,29.43488636363637,1.0
3186
+ 182,18.463333333333335,0.0
3187
+ 4,26.957499999999996,
3188
+ 171,35.06,2.0
3189
+ 254,30.103829787234044,1.0
3190
+ 158,22.697499999999998,1.0
3191
+ 271,27.362222222222226,1.0
3192
+ 261,31.3557,1.0
3193
+ 212,20.22,0.0
3194
+ 156,25.11,1.0
3195
+ 264,27.87618421052631,1.0
3196
+ 185,38.985,2.0
3197
+ 275,28.52116666666667,1.0
3198
+ 182,13.77,0.0
3199
+ 205,36.537499999999994,2.0
3200
+ 168,26.958333333333332,1.0
3201
+ 157,48.1175,11.0
3202
+ 282,29.6,1.0
3203
+ 190,27.965,1.0
3204
+ 168,22.008750000000003,1.0
3205
+ 259,29.8689423076923,1.0
3206
+ 254,27.819722222222225,1.0
3207
+ 148,32.81,1.0
3208
+ 188,29.955,1.0
3209
+ 216,47.21,11.0
3210
+ 304,31.86337500000001,1.0
3211
+ 182,37.72,2.0
3212
+ 173,31.525000000000002,1.0
3213
+ 181,32.04833333333334,1.0
3214
+ 242,30.909545454545455,1.0
3215
+ 193,34.85,2.0
3216
+ 169,43.225,11.0
3217
+ 247,26.974428571428575,1.0
3218
+ 266,28.254024390243902,1.0
3219
+ 522,29.784886363636375,1.0
3220
+ 183,32.18000000000001,1.0
3221
+ 183,25.11,1.0
3222
+ 177,38.415,2.0
3223
+ 222,34.67,2.0
3224
+ 321,26.234750000000002,1.0
3225
+ 176,22.017500000000002,1.0
3226
+ 53,31.055,
3227
+ 186,8.785,0.0
3228
+ 50,32.3425,
3229
+ 266,30.626309523809535,1.0
3230
+ 182,15.424999999999999,0.0
3231
+ 264,29.95990000000001,1.0
3232
+ 170,28.596666666666664,1.0
3233
+ 200,20.245,0.0
3234
+ 192,13.635000000000002,0.0
3235
+ 72,34.70666666666667,
3236
+ 266,30.336363636363636,1.0
3237
+ 195,42.120000000000005,11.0
3238
+ 169,23.912499999999998,1.0
3239
+ 172,36.885,2.0
3240
+ 190,37.8825,2.0
3241
+ 149,28.73,1.0
3242
+ 188,14.785,0.0
3243
+ 37,25.82,
3244
+ 193,25.814999999999998,1.0
3245
+ 171,17.422500000000003,0.0
3246
+ 171,40.30166666666667,2.0
3247
+ 193,16.3375,0.0
3248
+ 186,34.89,2.0
3249
+ 187,27.869999999999997,1.0
3250
+ 169,22.622500000000002,1.0
3251
+ 216,19.665,0.0
3252
+ 26,28.2275,
3253
+ 240,27.241176470588233,1.0
3254
+ 246,27.778333333333332,1.0
3255
+ 179,24.893333333333334,1.0
3256
+ 297,26.913181818181826,1.0
3257
+ 185,23.169999999999998,1.0
3258
+ 171,34.196666666666665,2.0
3259
+ 186,17.71,0.0
3260
+ 244,30.170980392156867,1.0
3261
+ 187,17.17166666666667,0.0
3262
+ 171,35.2025,2.0
3263
+ 172,28.296666666666667,1.0
3264
+ 48,15.815000000000001,
3265
+ 288,28.108999999999998,1.0
3266
+ 261,27.833703703703705,1.0
3267
+ 241,31.037857142857135,1.0
3268
+ 212,22.1075,1.0
3269
+ 170,38.29,2.0
3270
+ 303,29.18320512820512,1.0
3271
+ 343,28.22784090909091,1.0
3272
+ 173,28.78833333333333,1.0
3273
+ 307,26.12792452830189,1.0
3274
+ 400,31.464512195121948,1.0
3275
+ 287,28.354594594594598,1.0
3276
+ 150,33.3125,1.0
3277
+ 283,33.14369565217392,1.0
3278
+ 318,30.509078947368423,1.0
3279
+ 172,31.542499999999997,1.0
3280
+ 172,11.6875,0.0
3281
+ 176,34.9875,2.0
3282
+ 213,16.645,0.0
3283
+ 244,29.689761904761912,1.0
3284
+ 227,15.7425,0.0
3285
+ 150,12.36,0.0
3286
+ 267,30.473717948717947,1.0
3287
+ 355,31.212444444444447,1.0
3288
+ 168,19.525,0.0
3289
+ 194,19.965,0.0
3290
+ 155,30.2775,1.0
3291
+ 54,32.305,
3292
+ 211,28.625,1.0
3293
+ 282,34.41173913043479,2.0
3294
+ 373,28.947325581395358,1.0
3295
+ 178,31.934000000000005,1.0
3296
+ 196,32.36333333333334,1.0
3297
+ 170,29.677500000000002,1.0
3298
+ 430,26.98909090909091,1.0
3299
+ 60,29.665,
3300
+ 205,32.305,1.0
3301
+ 332,29.555500000000002,1.0
3302
+ 272,27.823292682926827,1.0
3303
+ 518,32.54338235294117,1.0
3304
+ 316,27.31791666666667,1.0
3305
+ 172,39.614999999999995,2.0
3306
+ 254,28.52655555555555,1.0
3307
+ 194,38.3,2.0
3308
+ 281,27.920434782608694,1.0
3309
+ 179,36.145,2.0
3310
+ 191,28.39333333333333,1.0
3311
+ 256,28.834736842105258,1.0
3312
+ 178,11.6075,0.0
3313
+ 240,30.77159574468086,1.0
3314
+ 250,30.044767441860465,1.0
3315
+ 211,20.395,0.0
3316
+ 240,28.16166666666666,1.0
3317
+ 353,29.592272727272736,1.0
3318
+ 207,35.66,2.0
3319
+ 249,28.599433962264147,1.0
3320
+ 52,26.8375,
3321
+ 192,37.715,2.0
3322
+ 183,32.24,1.0
3323
+ 154,22.645,1.0
3324
+ 173,28.6825,1.0
3325
+ 177,12.127500000000001,0.0
3326
+ 183,24.728333333333335,1.0
3327
+ 269,31.975243902439015,1.0
3328
+ 181,14.43,0.0
3329
+ 296,30.134361702127656,1.0
3330
+ 195,32.86,1.0
3331
+ 147,33.6025,1.0
3332
+ 153,20.197499999999998,0.0
3333
+ 257,29.186025641025637,1.0
3334
+ 170,27.585,1.0
3335
+ 242,32.00424528301886,1.0
3336
+ 448,28.484555555555563,1.0
3337
+ 251,32.8095,1.0
3338
+ 269,30.533874999999995,1.0
3339
+ 246,27.514999999999993,1.0
3340
+ 209,28.902500000000003,1.0
3341
+ 73,35.587500000000006,
3342
+ 323,32.216944444444444,1.0
3343
+ 244,32.44326086956521,1.0
3344
+ 220,42.6275,11.0
3345
+ 564,31.071999999999996,1.0
3346
+ 177,19.1625,0.0
3347
+ 220,20.5625,0.0
3348
+ 176,31.8875,1.0
3349
+ 93,21.494999999999997,
3350
+ 296,30.700465116279073,1.0
3351
+ 2,35.2775,
3352
+ 328,27.9625,1.0
3353
+ 153,26.13,1.0
3354
+ 198,43.432500000000005,11.0
3355
+ 308,32.034680851063825,1.0
3356
+ 181,16.04,0.0
3357
+ 172,27.361666666666668,1.0
3358
+ 247,29.72943181818181,1.0
3359
+ 191,30.73,1.0
3360
+ 154,23.5825,1.0
3361
+ 242,29.606125,1.0
3362
+ 195,35.3575,2.0
3363
+ 267,28.579857142857144,1.0
3364
+ 171,33.9875,2.0
3365
+ 263,28.737407407407414,1.0
3366
+ 53,21.12,
3367
+ 354,29.07405405405406,1.0
3368
+ 170,36.156666666666666,2.0
3369
+ 180,32.8625,1.0
3370
+ 191,21.65,1.0
3371
+ 240,29.933255813953487,1.0
3372
+ 183,34.69,2.0
3373
+ 212,34.9725,2.0
3374
+ 24,41.665,
3375
+ 9,17.6875,
3376
+ 206,25.7275,1.0
3377
+ 149,50.8825,11.0
3378
+ 185,22.253333333333334,1.0
3379
+ 183,17.6475,0.0
3380
+ 170,39.15833333333333,2.0
3381
+ 289,31.660480769230762,1.0
3382
+ 193,33.3925,1.0
3383
+ 243,32.67666666666667,1.0
3384
+ 333,26.121829268292686,1.0
3385
+ 172,25.2725,1.0
3386
+ 269,31.62557142857143,1.0
3387
+ 277,28.331931818181825,1.0
3388
+ 194,20.01,0.0
3389
+ 189,24.175,1.0
3390
+ 195,34.61,2.0
3391
+ 257,28.802999999999994,1.0
3392
+ 169,32.085,1.0
3393
+ 79,29.6525,
3394
+ 214,15.504999999999999,0.0
3395
+ 287,28.185000000000002,1.0
3396
+ 186,33.141666666666666,1.0
3397
+ 50,36.805,
3398
+ 7,18.3075,
3399
+ 181,40.2575,2.0
3400
+ 251,30.86195121951219,1.0
3401
+ 284,28.57756410256411,1.0
3402
+ 182,17.33,0.0
3403
+ 178,32.67,1.0
3404
+ 320,33.80777777777778,2.0
3405
+ 178,29.768333333333334,1.0
3406
+ 231,18.935000000000002,0.0
3407
+ 50,24.1,
3408
+ 425,31.37958333333334,1.0
3409
+ 240,31.16275510204082,1.0
3410
+ 315,31.846219512195116,1.0
3411
+ 348,31.149489795918363,1.0
3412
+ 172,23.08625,1.0
3413
+ 157,38.4475,2.0
3414
+ 256,32.823,1.0
3415
+ 169,29.0775,1.0
3416
+ 209,23.365000000000002,1.0
3417
+ 219,37.675,2.0
3418
+ 179,30.1625,1.0
3419
+ 60,12.875,
3420
+ 172,32.405,1.0
3421
+ 171,21.77,1.0
3422
+ 50,29.4575,
3423
+ 173,26.80666666666667,1.0
3424
+ 194,44.11,11.0
3425
+ 26,32.325,
3426
+ 252,25.72361111111112,1.0
3427
+ 145,29.3125,1.0
3428
+ 192,22.215,1.0
3429
+ 174,31.976666666666663,1.0
3430
+ 180,26.47,1.0
3431
+ 145,44.322500000000005,11.0
3432
+ 207,18.9675,0.0
3433
+ 333,29.03974999999999,1.0
3434
+ 277,29.672812500000003,1.0
3435
+ 359,27.47244186046512,1.0
3436
+ 223,22.4875,1.0
3437
+ 192,26.122500000000002,1.0
3438
+ 279,30.167386363636357,1.0
3439
+ 269,32.41297619047621,1.0
3440
+ 240,27.897685185185193,1.0
3441
+ 319,31.00637931034483,1.0
3442
+ 171,33.589999999999996,1.0
3443
+ 181,40.70666666666667,2.0
3444
+ 195,33.5725,1.0
3445
+ 157,24.6275,1.0
3446
+ 255,30.92142857142857,1.0
3447
+ 256,32.50321428571427,1.0
3448
+ 277,29.415,1.0
3449
+ 173,29.17,1.0
3450
+ 370,30.87488095238095,1.0
3451
+ 179,27.675,1.0
3452
+ 52,33.715,
3453
+ 170,26.959999999999997,1.0
3454
+ 193,20.0925,0.0
3455
+ 173,39.197500000000005,2.0
3456
+ 205,31.317500000000003,1.0
3457
+ 195,23.03,1.0
3458
+ 193,34.69,2.0
3459
+ 181,24.06,1.0
3460
+ 204,21.61,1.0
3461
+ 297,29.76855555555556,1.0
3462
+ 191,21.8,1.0
3463
+ 170,38.51666666666667,2.0
3464
+ 157,32.5225,1.0
3465
+ 196,29.58,1.0
3466
+ 24,28.375,
3467
+ 261,31.411808510638302,1.0
3468
+ 533,29.21436363636364,1.0
3469
+ 172,39.635,2.0
3470
+ 174,26.375,1.0
3471
+ 182,32.016666666666666,1.0
3472
+ 327,28.908749999999998,1.0
3473
+ 253,28.536627906976744,1.0
3474
+ 213,30.1075,1.0
3475
+ 251,26.71946808510639,1.0
3476
+ 267,29.25418604651162,1.0
3477
+ 182,39.92,2.0
3478
+ 447,27.613714285714288,1.0
3479
+ 197,22.112499999999997,1.0
3480
+ 253,30.854999999999997,1.0
3481
+ 249,29.203548387096774,1.0
3482
+ 3,29.729999999999997,
3483
+ 181,16.82,0.0
3484
+ 216,24.383333333333336,1.0
3485
+ 157,37.0375,2.0
3486
+ 4,26.27,
3487
+ 243,27.96928571428571,1.0
3488
+ 301,30.199166666666663,1.0
3489
+ 75,12.9225,
3490
+ 310,28.053444444444448,1.0
3491
+ 255,29.480952380952388,1.0
3492
+ 171,28.372500000000002,1.0
3493
+ 268,29.509456521739136,1.0
3494
+ 170,22.39833333333333,1.0
3495
+ 169,25.13,1.0
3496
+ 264,30.441222222222223,1.0
3497
+ 254,27.257142857142856,1.0
3498
+ 298,28.43355263157895,1.0
3499
+ 180,18.044999999999998,0.0
3500
+ 268,32.732934782608694,1.0
3501
+ 287,29.651836734693884,1.0
3502
+ 309,29.3030612244898,1.0
3503
+ 327,32.05398148148149,1.0
3504
+ 295,26.7459375,1.0
3505
+ 158,28.6,1.0
3506
+ 358,33.22727272727273,1.0
3507
+ 50,18.267500000000002,
3508
+ 241,28.780660377358497,1.0
3509
+ 91,34.4625,
3510
+ 144,28.2,1.0
3511
+ 289,31.640227272727273,1.0
3512
+ 265,34.195609756097554,2.0
3513
+ 313,30.837169811320752,1.0
3514
+ 144,25.557499999999997,1.0
3515
+ 240,29.6067,1.0
3516
+ 310,29.780666666666665,1.0
3517
+ 186,57.417500000000004,11.0
3518
+ 289,29.415789473684203,1.0
3519
+ 207,27.14,1.0
3520
+ 258,29.65872093023256,1.0
3521
+ 320,31.942653061224487,1.0
3522
+ 264,27.703958333333336,1.0
3523
+ 148,23.785,1.0
3524
+ 221,26.07,1.0
3525
+ 93,37.1075,
3526
+ 421,32.82628205128205,1.0
3527
+ 194,38.9525,2.0
3528
+ 295,29.387692307692298,1.0
3529
+ 284,30.566707317073167,1.0
3530
+ 254,31.72635135135135,1.0
3531
+ 170,20.46,0.0
3532
+ 78,32.165,
3533
+ 241,30.35904761904762,1.0
3534
+ 262,28.94159574468085,1.0
3535
+ 384,30.53,1.0
3536
+ 438,29.9614423076923,1.0
3537
+ 217,32.92,1.0
3538
+ 2,30.1825,
3539
+ 192,28.7175,1.0
3540
+ 316,29.671750000000003,1.0
3541
+ 169,32.949999999999996,1.0
3542
+ 28,24.347499999999997,
3543
+ 362,28.1672972972973,1.0
3544
+ 261,29.848200000000002,1.0
3545
+ 191,35.75125,2.0
3546
+ 244,28.854899999999997,1.0
3547
+ 184,37.0775,2.0
3548
+ 49,21.215,
3549
+ 194,35.6675,2.0
3550
+ 171,36.0175,2.0
3551
+ 213,36.980000000000004,2.0
3552
+ 243,29.975294117647053,1.0
3553
+ 179,22.4425,1.0
3554
+ 298,31.181836734693864,1.0
3555
+ 212,30.4525,1.0
3556
+ 175,27.9825,1.0
3557
+ 209,21.155,1.0
3558
+ 261,26.347954545454545,1.0
3559
+ 77,31.819999999999997,
3560
+ 194,25.03333333333333,1.0
3561
+ 199,38.515,2.0
3562
+ 207,36.712500000000006,2.0
3563
+ 191,23.810000000000002,1.0
3564
+ 272,33.22957446808511,1.0
3565
+ 372,30.537547169811315,1.0
3566
+ 176,27.38333333333333,1.0
3567
+ 247,27.028026315789468,1.0
3568
+ 208,33.525,1.0
3569
+ 170,21.8775,1.0
3570
+ 77,14.018333333333333,
3571
+ 326,28.601666666666656,1.0
3572
+ 269,26.829047619047618,1.0
3573
+ 213,25.662499999999998,1.0
3574
+ 199,20.327499999999997,0.0
3575
+ 253,32.51160377358491,1.0
3576
+ 192,33.53333333333333,1.0
3577
+ 170,30.425,1.0
3578
+ 274,32.177499999999995,1.0
3579
+ 243,31.41045454545454,1.0
3580
+ 186,23.86875,1.0
3581
+ 246,29.025250000000007,1.0
3582
+ 168,30.92,1.0
3583
+ 376,27.28351351351351,1.0
3584
+ 170,33.207499999999996,1.0
3585
+ 25,17.77,
3586
+ 172,49.894999999999996,11.0
3587
+ 171,36.8725,2.0
3588
+ 146,28.2575,1.0
3589
+ 304,32.49338235294118,1.0
3590
+ 168,33.0125,1.0
3591
+ 339,30.49020833333334,1.0
3592
+ 168,24.921666666666667,1.0
3593
+ 304,29.067352941176477,1.0
3594
+ 263,28.43311111111111,1.0
3595
+ 282,30.312058823529416,1.0
3596
+ 180,39.5375,2.0
3597
+ 245,29.356777777777783,1.0
3598
+ 8,32.322500000000005,
3599
+ 155,40.42,2.0
3600
+ 378,31.50074468085106,1.0
3601
+ 182,30.019999999999996,1.0
3602
+ 168,23.263333333333332,1.0
3603
+ 266,28.032272727272723,1.0
3604
+ 249,29.777857142857133,1.0
3605
+ 171,25.790000000000003,1.0
3606
+ 171,24.224999999999998,1.0
3607
+ 174,40.345,2.0
3608
+ 390,24.001176470588234,1.0
3609
+ 244,29.757358490566045,1.0
3610
+ 57,23.119999999999997,
3611
+ 263,27.30202127659574,1.0
3612
+ 296,26.081744186046503,1.0
3613
+ 190,41.1,2.0
3614
+ 176,24.438333333333333,1.0
3615
+ 246,28.71402439024391,1.0
3616
+ 242,30.441627906976745,1.0
3617
+ 187,25.737499999999997,1.0
3618
+ 198,29.165,1.0
3619
+ 438,30.486250000000002,1.0
3620
+ 308,28.442926829268288,1.0
3621
+ 76,36.88249999999999,
3622
+ 179,28.71,1.0
3623
+ 248,24.991794871794873,1.0
3624
+ 263,27.561862745098043,1.0
3625
+ 187,22.439999999999998,1.0
3626
+ 241,32.04152173913043,1.0
3627
+ 145,32.3025,1.0
3628
+ 248,30.009124999999994,1.0
3629
+ 181,15.461666666666668,0.0
3630
+ 170,42.67666666666667,11.0
3631
+ 49,33.555,
3632
+ 255,28.967702702702706,1.0
3633
+ 49,46.26,
3634
+ 182,35.677499999999995,2.0
3635
+ 181,21.551666666666666,1.0
3636
+ 260,28.297000000000004,1.0
3637
+ 151,29.902499999999996,1.0
3638
+ 176,35.32125,2.0
3639
+ 300,29.618152173913053,1.0
3640
+ 265,31.508421052631576,1.0
3641
+ 175,22.905,1.0
3642
+ 73,32.8675,
3643
+ 174,28.9625,1.0
3644
+ 182,41.36,2.0
3645
+ 197,16.9825,0.0
3646
+ 209,23.6725,1.0
3647
+ 438,29.078461538461543,1.0
3648
+ 201,28.6,1.0
3649
+ 186,22.247500000000002,1.0
3650
+ 400,28.680813953488375,1.0
3651
+ 252,29.646250000000002,1.0
3652
+ 326,33.320540540540534,1.0
3653
+ 211,27.3275,1.0
3654
+ 254,32.74592105263159,1.0
3655
+ 168,31.021666666666665,1.0
3656
+ 240,29.93536585365854,1.0
3657
+ 274,26.687894736842107,1.0
3658
+ 144,19.7525,0.0
3659
+ 203,35.178333333333335,2.0
3660
+ 177,50.45,11.0
3661
+ 243,29.31940476190476,1.0
3662
+ 78,21.3425,
3663
+ 49,37.2975,
3664
+ 364,28.63191489361702,1.0
3665
+ 147,21.82,1.0
3666
+ 195,27.6925,1.0
3667
+ 195,17.695,0.0
3668
+ 293,30.80073170731707,1.0
3669
+ 318,30.30216981132076,1.0
3670
+ 195,43.425,11.0
3671
+ 196,23.174999999999997,1.0
3672
+ 174,23.70625,1.0
3673
+ 72,37.015,
3674
+ 171,22.8975,1.0
3675
+ 309,29.77522222222222,1.0
3676
+ 258,31.139699999999994,1.0
3677
+ 61,21.747500000000002,
3678
+ 183,16.82,0.0
3679
+ 90,31.659999999999997,
3680
+ 172,20.7375,0.0
3681
+ 316,30.16341463414635,1.0
3682
+ 172,23.7225,1.0
3683
+ 310,29.736562500000005,1.0
3684
+ 191,27.275,1.0
3685
+ 339,31.112499999999994,1.0
3686
+ 244,31.379148936170218,1.0
3687
+ 182,19.86,0.0
3688
+ 308,27.05617021276597,1.0
3689
+ 301,27.580660377358488,1.0
3690
+ 257,31.947948717948723,1.0
3691
+ 388,27.520625,1.0
3692
+ 171,24.965000000000003,1.0
3693
+ 187,30.005,1.0
3694
+ 281,31.889021739130424,1.0
3695
+ 182,16.14,0.0
3696
+ 196,29.3025,1.0
3697
+ 265,31.543207547169814,1.0
3698
+ 244,28.756304347826084,1.0
3699
+ 168,25.284999999999997,1.0
3700
+ 246,32.39010869565218,1.0
3701
+ 218,35.7775,2.0
3702
+ 180,45.7125,11.0
3703
+ 184,47.97,11.0
3704
+ 189,39.8475,2.0
3705
+ 279,27.879456521739133,1.0
3706
+ 51,29.6,
3707
+ 310,28.882023809523805,1.0
3708
+ 196,30.456666666666667,1.0
3709
+ 185,35.36666666666667,2.0
3710
+ 258,27.778928571428576,1.0
3711
+ 341,26.99833333333332,1.0
3712
+ 194,15.3675,0.0
3713
+ 271,30.647083333333338,1.0
3714
+ 210,25.6,1.0
3715
+ 184,50.96666666666667,11.0
3716
+ 287,25.35625000000001,1.0
3717
+ 149,23.627499999999998,1.0
3718
+ 177,33.76499999999999,2.0
3719
+ 168,28.211666666666662,1.0
3720
+ 170,24.1575,1.0
3721
+ 94,26.35,
3722
+ 251,30.852555555555554,1.0
3723
+ 245,27.322777777777773,1.0
3724
+ 196,20.085,0.0
3725
+ 179,20.776249999999997,0.0
3726
+ 334,29.87776595744681,1.0
3727
+ 172,29.705000000000002,1.0
3728
+ 291,29.329705882352936,1.0
3729
+ 418,29.95122448979592,1.0
3730
+ 168,37.32625,2.0
3731
+ 341,27.99877358490565,1.0
3732
+ 289,28.474680851063845,1.0
3733
+ 260,33.58060975609755,1.0
3734
+ 72,31.825,
3735
+ 300,27.967205882352946,1.0
3736
+ 213,20.563333333333333,0.0
3737
+ 28,25.884999999999998,
3738
+ 184,27.317500000000003,1.0
3739
+ 275,31.26719512195121,1.0
3740
+ 49,21.349999999999998,0.0