From be67c982c8f04c38aa78564e4a80ae8460729521 Mon Sep 17 00:00:00 2001 From: Alessandra Vertrees Date: Mon, 27 May 2024 13:27:17 -0700 Subject: [PATCH 1/3] p5 visuals work using static json file --- README.md | 4 + app/(dashboard)/layout.tsx | 1 + app/(dashboard)/visualizer/page.tsx | 35 +++ app/api/storage/route.tsx | 57 ++++ components/FileUploader.tsx | 44 +++ components/P5Wrapper.tsx | 66 +++++ components/Visualizer.tsx | 24 ++ .../1d4df6b8-90ea-4437-8bea-fddb5b2802ba.json | 1 + .../080d4929-6e50-43a2-a0da-279772288a06.json | 1 + firebase.config.js | 13 +- package-lock.json | 77 ++++- package.json | 4 + utils/eeg.ts | 242 ++++++++++++++++ utils/firebase.ts | 166 +++++++++++ utils/sketch.ts | 272 ++++++++++++++++++ 15 files changed, 1000 insertions(+), 7 deletions(-) create mode 100644 app/(dashboard)/visualizer/page.tsx create mode 100644 app/api/storage/route.tsx create mode 100644 components/FileUploader.tsx create mode 100644 components/P5Wrapper.tsx create mode 100644 components/Visualizer.tsx create mode 100644 data/eeg/1d4df6b8-90ea-4437-8bea-fddb5b2802ba.json create mode 100644 data/muse/080d4929-6e50-43a2-a0da-279772288a06.json create mode 100644 utils/eeg.ts create mode 100644 utils/firebase.ts create mode 100644 utils/sketch.ts diff --git a/README.md b/README.md index 2c96bef..77c9526 100644 --- a/README.md +++ b/README.md @@ -120,8 +120,12 @@ https://vitest.dev/guide/mocking.html ## Recharts https://recharts.org/en-US/ + ## Filestore +https://firebase.google.com/docs/storage/web/start + ## P5.js +https://github.com/P5-wrapper/react ## Acknowledgment diff --git a/app/(dashboard)/layout.tsx b/app/(dashboard)/layout.tsx index 24d8a55..db35fa1 100644 --- a/app/(dashboard)/layout.tsx +++ b/app/(dashboard)/layout.tsx @@ -7,6 +7,7 @@ const DashboardLayout = ({children}) => { {label: 'home', href: '/' }, {label: 'journal', href: '/journal'}, {label: 'history', href: '/history'}, + {label: 'visualizer', href: '/visualizer'}, ] return (
diff --git a/app/(dashboard)/visualizer/page.tsx b/app/(dashboard)/visualizer/page.tsx new file mode 100644 index 0000000..96fb79b --- /dev/null +++ b/app/(dashboard)/visualizer/page.tsx @@ -0,0 +1,35 @@ + +import Uploader from "@/components/FileUploader" +import {Visualizer} from "@/components/Visualizer" +const getEEGData = async () => { + // const user = await getUserFromClerkID + // const entry = await prisma.journalEntry.findMany({ + // where:{ + // userId: user.id, + // }, + // orderBy:{ + // createdAt: 'desc' + // } + // }) + // eegData = + // return eegData +} + +const VisualizerPage = async () => { + // const data = await getEEGData() + // console.log('data ', data) + return ( +
+

Journal

+
+ Visualization + +
+
+ +
+
+ ) +} + +export default VisualizerPage \ No newline at end of file diff --git a/app/api/storage/route.tsx b/app/api/storage/route.tsx new file mode 100644 index 0000000..7c2642d --- /dev/null +++ b/app/api/storage/route.tsx @@ -0,0 +1,57 @@ +import type { NextApiRequest, NextApiResponse } from 'next' +import { initializeApp } from 'firebase/app' +import { getDownloadURL, getStorage, ref } from 'firebase/storage' +import { firebaseConfig } from '@/firebase' +// https://dev.to/reeshee/how-to-use-firebase-storage-to-upload-and-retrieve-files-in-nextjs-pages-router-2p16 +async function filePOST(request: NextApiRequest, res: NextApiResponse) { + // Initialize the Firebase app with the provided configuration + const app = initializeApp(firebaseConfig) + // Get a reference to the Firebase Storage and parse the request data as a FormData object + const storage = getStorage(app) + // More code to handle uploads incoming... +} + + + +async function fileGET(request: NextApiRequest, res: NextApiResponse) { + // Extract the 'file' parameter from the request URL. + const file = request.query.file + // Check if the 'image' parameter exists in the URL. + if (file && typeof file === 'string') { + try { + // Initialize the Firebase app with the provided configuration. + const app = initializeApp(firebaseConfig) + // Get a reference to the Firebase storage. + const storage = getStorage(app) + // Create a reference to the specified file in storage. + const fileRef = ref(storage, file) + // Get the download URL of the file. + const filePublicURL = await getDownloadURL(fileRef) + // Return a JSON response with the file's public URL and a 200 status code. + return res.status(200).json({ filePublicURL }) + } catch (e: any) { + // If an error occurs, log the error message and return a JSON response with a 500 status code. + const tmp = e.message || e.toString() + console.log(tmp) + return res.status(500).send(tmp) + } + } + // If the 'file' parameter is not found in the URL, return a JSON response with a 400 status code. + return res.status(400).json({ error: 'Invalid Request' }) +} + +export const GET = async (request: NextApiRequest, response: NextApiResponse) => { + return await fileGET(request, response) +} + +export const POST = async (request: NextApiRequest, response: NextApiResponse) => { + await filePOST(request, response) +} + +// Disable parsing the body by Next.js default behavior +export const config = { + api: { + bodyParser: false, + }, +} + diff --git a/components/FileUploader.tsx b/components/FileUploader.tsx new file mode 100644 index 0000000..dd32a90 --- /dev/null +++ b/components/FileUploader.tsx @@ -0,0 +1,44 @@ +// Use next app router, server components, and server actions to upload files to firebase storage +// +// you probably dont want to do this since just storing images in the next public folder is usually best +// but if for some reason you need to upload files to firebase storage from nextjs, here you go +// also worth noting that the firebase-admin storage sdk has almost no documentation +// and from what I can tell does almost nothing, but it's just a wrapper around the google cloud storage sdk +// so you can use that instead if you want better documentation and functionality +'use client' +import {Upload} from '@/utils/firebase' + +const Uploader = () => { + // const handleOnClick = async () => { + + // console.log("data is : ", data) + // // router.push(`/journal/${data.id}`) + // } + const handleFormData = async (formData: FormData) => { + const file = formData.get("file") as File; + console.log("file is: ", file) + const res = await Upload(file) + console.log("res is, ", res) + } + return ( +
+

Upload an image

+
+ + +
+
+ ); +} + +export default Uploader; \ No newline at end of file diff --git a/components/P5Wrapper.tsx b/components/P5Wrapper.tsx new file mode 100644 index 0000000..c080f9d --- /dev/null +++ b/components/P5Wrapper.tsx @@ -0,0 +1,66 @@ +import { P5CanvasInstance, ReactP5Wrapper } from "@p5-wrapper/react"; +// import React from "react"; +import { type Sketch } from "@p5-wrapper/react"; +import { NextReactP5Wrapper } from "@p5-wrapper/next"; +import {sketch1, sketch2, sketch3} from "@/utils/sketch"; +import { Download } from "@/utils/firebase"; +import {eeg, getData } from "@/utils/eeg" +import { NextResponse, NextRequest } from "next/server"; +// import {getData} from "@/utils/" +// processed EEG JSON https://firebasestorage.googleapis.com/v0/b/entheogen-a76f2.appspot.com/o/eeg%2F1d4df6b8-90ea-4437-8bea-fddb5b2802ba.json?alt=media&token=09a53f76-5b1f-450c-bf3c-dae19fe321d7 +import React, { useState, useEffect } from "react" +import data from "@/data/eeg/1d4df6b8-90ea-4437-8bea-fddb5b2802ba.json" +// const [results, setResults] = useState('') +// const [loading, setLoading] = useState(false) +// const getData = async () => { +// setLoading(true) +// // "1d4df6b8-90ea-4437-8bea-fddb5b2802ba" - eeg/ +// // 020164cc-7d0b-4b61-8c37-4b38be8e52a5 - muse/ await Download("020164cc-7d0b-4b61-8c37-4b38be8e52a5") +// const res = await fetch("https://firebasestorage.googleapis.com/v0/b/entheogen-a76f2.appspot.com/o/eeg%2F1d4df6b8-90ea-4437-8bea-fddb5b2802ba.json?alt=media&token=09a53f76-5b1f-450c-bf3c-dae19fe321d7") // +// setResults(res) +// setLoading(false) +// console.log("res in getData before is: ", res.json()) +// const { data } = res.json() + +// // const contents = await res.download(); +// // console.log("contents are: ", contents); +// // const parsedContents = JSON.parse(res); +// // console.log("parsedContents :",parsedContents ) +// const eegData = await eeg(data.data) +// // console.log("res in getData after is: ", res) +// return res +// } + +// const eegData = async () => { +// const data = await getData() +// return data +// } + +export default function P5() { + const [rotation, setRotation] = useState(0); + const [render, setRender] = useState({ + renderAlpha: true, + renderBeta: true, + renderGamma: true, + renderDelta: true, + renderTheta: true + }) + // localStorage.canvasWidth = width + useEffect(() => { + const interval = setInterval( + () => setRotation(rotation => rotation + 100), + 100 + ); + + return () => { + clearInterval(interval); + }; + }, []); + + // console.log("data in P5", data) + return ; + + // return ; + // return ; + +} \ No newline at end of file diff --git a/components/Visualizer.tsx b/components/Visualizer.tsx new file mode 100644 index 0000000..2c3578c --- /dev/null +++ b/components/Visualizer.tsx @@ -0,0 +1,24 @@ +// processed EEG JSON https://firebasestorage.googleapis.com/v0/b/entheogen-a76f2.appspot.com/o/eeg%2F1d4df6b8-90ea-4437-8bea-fddb5b2802ba.json?alt=media&token=09a53f76-5b1f-450c-bf3c-dae19fe321d7 +// raw EEG JSON https://firebasestorage.googleapis.com/v0/b/entheogen-a76f2.appspot.com/o/muse%2F020164cc-7d0b-4b61-8c37-4b38be8e52a5.json?alt=media&token=d4d4a9aa-c512-43d5-8b86-f4acd16c0426 +"use client" +import P5 from "./P5Wrapper" +export const Visualizer = () => { + return ( +
+ Viz + + {/* + + + + + + + + + */} + {/* {this.props.renderViz ? : null} */} + {/* */} +
+ ) +} \ No newline at end of file diff --git a/data/eeg/1d4df6b8-90ea-4437-8bea-fddb5b2802ba.json b/data/eeg/1d4df6b8-90ea-4437-8bea-fddb5b2802ba.json new file mode 100644 index 0000000..d157ac8 --- /dev/null +++ b/data/eeg/1d4df6b8-90ea-4437-8bea-fddb5b2802ba.json @@ -0,0 +1 @@ +{"data":{"alpha":[{"average":0.14116485975682735,"rel_min":0.14116485975682735,"rel_max":0.0,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.1309763491153717,"rel_min":0.1309763491153717,"rel_max":0.0,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.12078783847391605,"rel_min":0.12078783847391605,"rel_max":0.0,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.12274918938055634,"rel_min":0.12078783847391605,"rel_max":0.12274918938055634,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.12910793982446195,"rel_min":0.12078783847391605,"rel_max":0.12910793982446195,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.13104883270959058,"rel_min":0.12078783847391605,"rel_max":0.13104883270959058,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.1312011153038059,"rel_min":0.12078783847391605,"rel_max":0.1312011153038059,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":0.13055763393640518,"rel_min":0.12078783847391605,"rel_max":0.1312011153038059,"scaled_dist":187.95010747404976,"scaled_rad":83.93347663206629},{"average":0.12786429396106136,"rel_min":0.12078783847391605,"rel_max":0.1312011153038059,"scaled_dist":137.51437011954778,"scaled_rad":16.685826826063675},{"average":0.12223629038780928,"rel_min":0.12078783847391605,"rel_max":0.1312011153038059,"scaled_dist":32.123846587699646,"scaled_rad":-123.83487121640049},{"average":0.12350351312621073,"rel_min":0.12078783847391605,"rel_max":0.1312011153038059,"scaled_dist":55.85397861290352,"scaled_rad":-92.19469518279531},{"average":0.1868835681428512,"rel_min":0.12078783847391605,"rel_max":0.1868835681428512,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.1983258560872995,"rel_min":0.12078783847391605,"rel_max":0.1983258560872995,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.19806386809796095,"rel_min":0.12078783847391605,"rel_max":0.1983258560872995,"scaled_dist":199.34112762366783,"scaled_rad":99.12150349822377},{"average":0.1967125111569961,"rel_min":0.12078783847391605,"rel_max":0.1983258560872995,"scaled_dist":195.94260633567112,"scaled_rad":94.59014178089481},{"average":0.19914781989064068,"rel_min":0.12078783847391605,"rel_max":0.19914781989064068,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.20308715696720517,"rel_min":0.12078783847391605,"rel_max":0.20308715696720517,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":0.21405230027933916,"rel_min":0.12078783847391605,"rel_max":0.21405230027933916,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.22464083154734812,"rel_min":0.12078783847391605,"rel_max":0.22464083154734812,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2319525116123259,"rel_min":0.12078783847391605,"rel_max":0.2319525116123259,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.23515608055250986,"rel_min":0.12078783847391605,"rel_max":0.23515608055250986,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.24322047643363476,"rel_min":0.12078783847391605,"rel_max":0.24322047643363476,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.24632544362026712,"rel_min":0.12078783847391605,"rel_max":0.24632544362026712,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.24876103620044887,"rel_min":0.12078783847391605,"rel_max":0.24876103620044887,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.25889780767261983,"rel_min":0.12078783847391605,"rel_max":0.25889780767261983,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.26401465830321497,"rel_min":0.12078783847391605,"rel_max":0.26401465830321497,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2709254340303165,"rel_min":0.12078783847391605,"rel_max":0.2709254340303165,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2777622155845165,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":0.271056452380686,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":191.66982631932578,"scaled_rad":88.893101759101},{"average":0.2466077631339431,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":161.29866326157529,"scaled_rad":48.39821768210035},{"average":0.21725806978441053,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":124.83927219085027,"scaled_rad":-0.2143037455330159},{"average":0.20784003240987659,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":113.13980045642731,"scaled_rad":-15.813599391430273},{"average":0.2072057823340098,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":112.3519090370087,"scaled_rad":-16.864121283988425},{"average":0.20523364600889824,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":109.90204052677534,"scaled_rad":-20.130612630966226},{"average":0.20548535851495606,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":110.21472811047374,"scaled_rad":-19.713695852701704},{"average":0.20424584257933828,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":108.67495065191969,"scaled_rad":-21.766732464107093},{"average":0.1976272199000861,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":100.45302649964339,"scaled_rad":-32.729298000475495},{"average":0.1949402938940023,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":97.11521697409783,"scaled_rad":-37.17971070120289},{"average":0.19551423201576257,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":97.82818641410012,"scaled_rad":-36.22908478119986},{"average":0.20048796627670526,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":104.00676280813461,"scaled_rad":-27.990982922487206},{"average":0.19773370808944468,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":100.58531048959858,"scaled_rad":-32.55291934720191},{"average":0.1909213981458119,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":92.12278008521017,"scaled_rad":-43.83629321971979},{"average":0.19018098166169123,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":91.20300440550287,"scaled_rad":-45.06266079266287},{"average":0.19037308645519344,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":91.44164484748109,"scaled_rad":-44.7444735366919},{"average":0.19263238716456627,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":94.24824071641893,"scaled_rad":-41.00234571144145},{"average":0.1927668788348851,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":94.41531177728191,"scaled_rad":-40.77958429695747},{"average":0.1915503499355722,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":92.90408975664046,"scaled_rad":-42.79454699114606},{"average":0.19037693079250553,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":91.44642044073177,"scaled_rad":-44.73810607902432},{"average":0.19528160654768653,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":97.53920953067623,"scaled_rad":-36.6143872924317},{"average":0.20965411350131036,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":115.39332628236733,"scaled_rad":-12.808898290176927},{"average":0.23122763202763072,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":142.1928345210172,"scaled_rad":22.923779361356253},{"average":0.24236286933032367,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":156.02548233267393,"scaled_rad":41.36730977689854},{"average":0.24226709792636475,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":155.90651117243908,"scaled_rad":41.2086815632521},{"average":0.23866279650893477,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":151.42910034058312,"scaled_rad":35.23880045411079},{"average":0.2331008950417692,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":144.51987855508673,"scaled_rad":26.026504740115627},{"average":0.2265410000857498,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":136.37090838575455,"scaled_rad":15.161211181006024},{"average":0.22016376577187002,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":128.44884674680077,"scaled_rad":4.598462329067644},{"average":0.2120400656913889,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":118.35725380754235,"scaled_rad":-8.856994923276886},{"average":0.2051764488599058,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":109.83098788583594,"scaled_rad":-20.2253494855521},{"average":0.1992699271067977,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":102.49366466750861,"scaled_rad":-30.008447109988538},{"average":0.19526943927783458,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":97.52409484976586,"scaled_rad":-36.6345402003122},{"average":0.19002324222557007,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":91.0070540178676,"scaled_rad":-45.32392797617655},{"average":0.18053845960706,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":79.22466860788234,"scaled_rad":-61.03377518949024},{"average":0.1827522531093564,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":81.97473356048054,"scaled_rad":-57.3670219193593},{"average":0.19352314134056753,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":95.35477203393366,"scaled_rad":-39.52697062142181},{"average":0.20852380457588218,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":113.98921024435178,"scaled_rad":-14.681053007530977},{"average":0.17903780217157372,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":77.36049048336177,"scaled_rad":-63.51934602218432},{"average":0.19050339623080456,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":91.60352098747218,"scaled_rad":-44.528638683370446},{"average":0.1921466223463632,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":93.64480376515868,"scaled_rad":-41.80692831312177},{"average":0.18815302133027997,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":88.68378902841894,"scaled_rad":-48.42161462877476},{"average":0.1901496895916865,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":91.16413211460264,"scaled_rad":-45.11449051386316},{"average":0.19442018744949666,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":96.46911944821218,"scaled_rad":-38.04117406905044},{"average":0.19523913540864643,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":97.48645014239094,"scaled_rad":-36.684733143478766},{"average":0.1950797403885706,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":97.28844312056414,"scaled_rad":-36.94874250591451},{"average":0.19376777932047845,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":95.65867135152112,"scaled_rad":-39.121771531305185},{"average":0.1954090296241798,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":97.6974996948008,"scaled_rad":-36.40333374026562},{"average":0.19834874531665406,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":101.34933492156895,"scaled_rad":-31.534220104574757},{"average":0.19627252603188539,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":98.77017029621972,"scaled_rad":-34.97310627170705},{"average":0.1888926035099769,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":89.6025283010028,"scaled_rad":-47.19662893199627},{"average":0.18144522935617716,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":80.35109512622591,"scaled_rad":-59.531873165032124},{"average":0.17403195152220166,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":71.1420177963207,"scaled_rad":-71.81064293823907},{"average":0.16513840942757158,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":60.09409557885613,"scaled_rad":-86.5412058948585},{"average":0.1580631696585431,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":51.304942977291944,"scaled_rad":-98.26007603027742},{"average":0.15004745462820643,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":41.34749348975963,"scaled_rad":-111.53667534698717},{"average":0.15056916860973132,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":41.99558796396592,"scaled_rad":-110.67254938137879},{"average":0.15035893521163352,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":41.73442742691733,"scaled_rad":-111.0207634307769},{"average":0.15587513283665838,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":48.586874027944226,"scaled_rad":-101.88416796274103},{"average":0.15505128700963475,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":47.56345900170451,"scaled_rad":-103.24872133106066},{"average":0.15169701993130566,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":43.39665106582513,"scaled_rad":-108.80446524556649},{"average":0.1530758333702882,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":45.10946958787067,"scaled_rad":-106.52070721617244},{"average":0.16155123411790356,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":55.63795949944737,"scaled_rad":-92.48272066740351},{"average":0.18206914056740378,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":81.12614318456903,"scaled_rad":-58.49847575390797},{"average":0.19244824866614035,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":94.01949633243737,"scaled_rad":-41.30733822341685},{"average":0.1875280613436344,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":87.90743813829869,"scaled_rad":-49.4567491489351},{"average":0.16233916990458966,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":56.616765602914384,"scaled_rad":-91.17764586278084},{"average":0.1657240645145066,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":60.82162031285693,"scaled_rad":-85.57117291619078},{"average":0.16851680864071109,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":64.29088144090824,"scaled_rad":-80.94549141212237},{"average":0.17440198894057954,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":71.60169343200006,"scaled_rad":-71.1977420906666},{"average":0.181944170985559,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":80.97090085197765,"scaled_rad":-58.705465530696486},{"average":0.1875103895738721,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":87.88548554216752,"scaled_rad":-49.48601927710999},{"average":0.18942034495348978,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":90.2581103353402,"scaled_rad":-46.32251955287974},{"average":0.18477251097632974,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":84.48438062079175,"scaled_rad":-54.02082583894433},{"average":0.1852441694117287,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":85.07029404561773,"scaled_rad":-53.239607939176366},{"average":0.18789008877669963,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":88.35716344218048,"scaled_rad":-48.85711541042603},{"average":0.20631173292086238,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":111.24128424095736,"scaled_rad":-18.344954345390192},{"average":0.22243698536998258,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":131.27273322936742,"scaled_rad":8.363644305823215},{"average":0.2258433478179379,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":135.50425616691845,"scaled_rad":14.005674889224565},{"average":0.22271118530382714,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":131.61335561681614,"scaled_rad":8.817807489088182},{"average":0.21644142804957858,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":123.82480638296857,"scaled_rad":-1.566924822708586},{"average":0.21230705676769668,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":118.68892105692622,"scaled_rad":-8.414771924098403},{"average":0.215900680167718,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":123.15306721824794,"scaled_rad":-2.4625770423361075},{"average":0.22277747500421746,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":131.69570339747978,"scaled_rad":8.927604529973024},{"average":0.22774928847772885,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":137.8718937107029,"scaled_rad":17.162524947603828},{"average":0.22901052396679134,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":139.43865208805195,"scaled_rad":19.251536117402566},{"average":0.2332100091745024,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":144.6554245994452,"scaled_rad":26.207232799260254},{"average":0.23491930457410112,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":146.77878134757808,"scaled_rad":29.038375130104072},{"average":0.23504769566476855,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":146.93827401855398,"scaled_rad":29.251032024738606},{"average":0.2345495349964348,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":146.31943843459982,"scaled_rad":28.42591791279972},{"average":0.23416713853718854,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":145.84440989219965,"scaled_rad":27.792546522932838},{"average":0.23777499372760455,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":150.32623536640065,"scaled_rad":33.76831382186751},{"average":0.24300152559048874,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":156.81884729467944,"scaled_rad":42.42512972623922},{"average":0.23107668360481498,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":142.00532020823016,"scaled_rad":22.673760277640184},{"average":0.23045001721115616,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":141.22684954943358,"scaled_rad":21.635799399244746},{"average":0.23155280190610117,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":142.5967738611113,"scaled_rad":23.462365148148365},{"average":0.23320429587364197,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":144.64832730313296,"scaled_rad":26.197769737510583},{"average":0.24404784862602513,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":158.1186326207001,"scaled_rad":44.15817682760013},{"average":0.25534530919719867,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":172.15280082018057,"scaled_rad":62.87040109357406},{"average":0.2553959079668857,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":172.21565668411574,"scaled_rad":62.954208912154314},{"average":0.25000242880263995,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":165.5156559808997,"scaled_rad":54.02087464119958},{"average":0.24411044556360978,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":158.19639310017254,"scaled_rad":44.261857466896714},{"average":0.23411342982231206,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":145.77769072698499,"scaled_rad":27.703587635979943},{"average":0.2247750601364356,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":134.17718545813537,"scaled_rad":12.236247277513797},{"average":0.21680382686786184,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":124.27499303677797,"scaled_rad":-0.9666759509627241},{"average":0.2111574430574677,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":117.26082382461993,"scaled_rad":-10.318901567173441},{"average":0.20400186559116398,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":108.37187244533781,"scaled_rad":-22.1708367395496},{"average":0.1970646020901554,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":99.75411961460959,"scaled_rad":-33.66117384718723},{"average":0.18995283250391048,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":90.9195881780513,"scaled_rad":-45.440549095931615},{"average":0.18397472850114538,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":83.49334255760938,"scaled_rad":-55.34220992318751},{"average":0.17490282268832913,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":72.22384962467831,"scaled_rad":-70.36820050042894},{"average":0.16559031242504715,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":60.65546798962638,"scaled_rad":-85.79270934716483},{"average":0.1582495307430942,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":51.53644834878233,"scaled_rad":-97.95140220162357},{"average":0.15611045886303337,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":48.87920565548617,"scaled_rad":-101.49439245935179},{"average":0.1558768000141099,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":48.58894506405234,"scaled_rad":-101.88140658126356},{"average":0.17387091936284882,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":70.94197705303634,"scaled_rad":-72.07736392928489},{"average":0.18238720347912146,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":81.52125395950301,"scaled_rad":-57.971661387329334},{"average":0.18302795438937944,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":82.31722098163856,"scaled_rad":-56.910372024481944},{"average":0.18142061318163158,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":80.32051590607074,"scaled_rad":-59.57264545857237},{"average":0.18171770967593467,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":80.68958133863038,"scaled_rad":-59.08055821515951},{"average":0.18523240676962288,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":85.05568200986481,"scaled_rad":-53.25909065351361},{"average":0.18817759832988182,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":88.71431958385465,"scaled_rad":-48.38090722152715},{"average":0.1935456291901947,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":95.38270736171143,"scaled_rad":-39.48972351771812},{"average":0.20061534606410483,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":104.16499919677412,"scaled_rad":-27.78000107096787},{"average":0.20552673545099942,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":110.26612823498432,"scaled_rad":-19.645162353354237},{"average":0.20793150610883127,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":113.253432831497,"scaled_rad":-15.662089558004027},{"average":0.21401832035231974,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":120.8147227651017,"scaled_rad":-5.580369646531068},{"average":0.22511371516455442,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":134.59787660339558,"scaled_rad":12.797168804527416},{"average":0.23019677139581388,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":140.91225722614664,"scaled_rad":21.216342968195505},{"average":0.23487706647454937,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":146.72631145048916,"scaled_rad":28.968415267318846},{"average":0.23759161629391917,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":150.09843640820856,"scaled_rad":33.46458187761138},{"average":0.23730990709736943,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":149.74848570709193,"scaled_rad":32.99798094278921},{"average":0.23895214204184756,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":151.78853721146965,"scaled_rad":35.71804961529281},{"average":0.23931813366527174,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":152.24318699496538,"scaled_rad":36.3242493266205},{"average":0.24608650538453294,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":160.65113553758653,"scaled_rad":47.53484738344869},{"average":0.24154261217975034,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":155.006525307292,"scaled_rad":40.00870040972265},{"average":0.2361520012445522,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":148.31008763566481,"scaled_rad":31.080116847553086},{"average":0.2322501892740109,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":143.46309701044018,"scaled_rad":24.617462680586897},{"average":0.22491407186952894,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":134.34987152609216,"scaled_rad":12.466495368122878},{"average":0.22252612376940392,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":131.3834645997166,"scaled_rad":8.511286132955433},{"average":0.22349069141865482,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":132.58169003667055,"scaled_rad":10.10892004889405},{"average":0.22850801683962346,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":138.81441715492846,"scaled_rad":18.419222873237942},{"average":0.22957263370616393,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":140.13692782703083,"scaled_rad":20.18257043604109},{"average":0.20970553200865208,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":115.4572004579888,"scaled_rad":-12.723732722681603},{"average":0.2109064468952445,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":116.94902611257015,"scaled_rad":-10.734631849906492},{"average":0.22018245184772658,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":128.47205935550227,"scaled_rad":4.629412474002976},{"average":0.2311357719344752,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":142.0787221512468,"scaled_rad":22.771629534995697},{"average":0.23622366004962136,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":148.39910513804764,"scaled_rad":31.198806850730165},{"average":0.23656108396622422,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":148.81826694616362,"scaled_rad":31.757689261551462},{"average":0.23774412883382834,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":150.28789373130616,"scaled_rad":33.71719164174149},{"average":0.23022410827142567,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":140.9462162125903,"scaled_rad":21.26162161678704},{"average":0.2149910648456878,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":122.02310581269377,"scaled_rad":-3.969192249741667},{"average":0.20642944795815327,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":111.38751468120016,"scaled_rad":-18.149980425066474},{"average":0.20139710529410576,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":105.13613252857115,"scaled_rad":-26.485156628571815},{"average":0.2000871829973544,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":103.50889340478382,"scaled_rad":-28.654808793621612},{"average":0.19953074356864975,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":102.81766155793943,"scaled_rad":-29.57645125608076},{"average":0.19876449377955618,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":101.86579468881361,"scaled_rad":-30.845607081581875},{"average":0.19272712916536358,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":94.36593310988809,"scaled_rad":-40.84542252014924},{"average":0.19242446660437687,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":93.98995328134049,"scaled_rad":-41.346728958212694},{"average":0.1919333339331949,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":93.37984816327395,"scaled_rad":-42.16020244896809},{"average":0.19516848246493038,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":97.39868216217515,"scaled_rad":-36.801757117099825},{"average":0.200275984524112,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":103.74343039352938,"scaled_rad":-28.342092808627513},{"average":0.2005129282348131,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":104.0377715747921,"scaled_rad":-27.949637900277224},{"average":0.19139269357159114,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":92.70824256461977,"scaled_rad":-43.055676580507},{"average":0.17923263109100915,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":77.60251494613851,"scaled_rad":-63.19664673848199},{"average":0.1690971003077233,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":65.01174351502657,"scaled_rad":-79.9843419799646},{"average":0.16362964528111312,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":58.219846965962404,"scaled_rad":-89.04020404538346},{"average":0.16228002843884182,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":56.54329765207357,"scaled_rad":-91.27560313056858},{"average":0.1623750952956489,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":56.66139359498225,"scaled_rad":-91.118141873357},{"average":0.1643082902889059,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":59.06288758797647,"scaled_rad":-87.91614988269805},{"average":0.16831864385711187,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":64.04471303104972,"scaled_rad":-81.27371595860038},{"average":0.16792151322588325,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":63.551381096787495,"scaled_rad":-81.93149187095001},{"average":0.1685390215533883,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":64.31847523074697,"scaled_rad":-80.9086996923374},{"average":0.16936190020624953,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":65.34068879363235,"scaled_rad":-79.54574827515688},{"average":0.17099441648483862,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":67.36866737322293,"scaled_rad":-76.84177683570276},{"average":0.17271664205427265,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":69.50808650786944,"scaled_rad":-73.98921798950742},{"average":0.17493417834545055,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":72.26280090609903,"scaled_rad":-70.31626545853464},{"average":0.1759854709024279,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":73.56875957517622,"scaled_rad":-68.5749872330984},{"average":0.17729134659692286,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":75.19097184391548,"scaled_rad":-66.41203754144604},{"average":0.17612308905853963,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":73.73971448473372,"scaled_rad":-68.34704735368838},{"average":0.18391977972462417,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":83.42508293703393,"scaled_rad":-55.433222750621425},{"average":0.19679565891800893,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":99.4200273918285,"scaled_rad":-34.10663014422869},{"average":0.20791117413525614,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":113.22817562124315,"scaled_rad":-15.695765838342481},{"average":0.20938226165039078,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":115.05562077969176,"scaled_rad":-13.259172293744314},{"average":0.20556943291719532,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":110.31916877613158,"scaled_rad":-19.574441631824584},{"average":0.19853303317746548,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":101.5782648496228,"scaled_rad":-31.228980200502946},{"average":0.19364293004104563,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":95.50357846351274,"scaled_rad":-39.32856204864969},{"average":0.19073724042175821,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":91.89401181836641,"scaled_rad":-44.14131757551148},{"average":0.1901276092160888,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":91.13670296775202,"scaled_rad":-45.15106270966399},{"average":0.18950353778574033,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":90.36145587865413,"scaled_rad":-46.18472549512785},{"average":0.18566276639121582,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":85.59029235682286,"scaled_rad":-52.54627685756954},{"average":0.17807399304583668,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":76.16320731538141,"scaled_rad":-65.11572357949147},{"average":0.17480457623434417,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":72.10180385593753,"scaled_rad":-70.5309281920833},{"average":0.1729632721089565,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":69.81446046232361,"scaled_rad":-73.58071938356854},{"average":0.18080108669991585,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":79.55091473829894,"scaled_rad":-60.59878034893475},{"average":0.1846599160219609,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":84.34451055724341,"scaled_rad":-54.20731925700879},{"average":0.2075886153512531,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":112.82747988963162,"scaled_rad":-16.230026813824537},{"average":0.23875386132735066,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":151.54222478750216,"scaled_rad":35.38963305000286},{"average":0.24501180369817213,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":159.31609708928804,"scaled_rad":45.754796119050695},{"average":0.2397840221069361,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":152.82193269726903,"scaled_rad":37.09591026302536},{"average":0.2408182876078843,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":154.1067396600181,"scaled_rad":38.80898621335743},{"average":0.2431029939295157,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":156.94489542096898,"scaled_rad":42.59319389462527},{"average":0.24797831270924378,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":163.00121607371565,"scaled_rad":50.66828809828749},{"average":0.2487313769886206,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":163.9367033626699,"scaled_rad":51.91560448355986},{"average":0.24803236403498527,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":163.0683608441782,"scaled_rad":50.75781445890422},{"average":0.24844821524989402,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":163.58494825417358,"scaled_rad":51.446597672231405},{"average":0.24751947492044024,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":162.43122898114927,"scaled_rad":49.908305308198976},{"average":0.24610333217276356,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":160.67203846305352,"scaled_rad":47.562717950738005},{"average":0.2445291729981889,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":158.71655346803564,"scaled_rad":44.9554046240475},{"average":0.24342748234752848,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":157.3479882229739,"scaled_rad":43.13065096396517},{"average":0.24296200448436717,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":156.76975255810166,"scaled_rad":42.35967007746885},{"average":0.23950468366965652,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":152.47492705041026,"scaled_rad":36.63323606721363},{"average":0.23907872757785548,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":151.94578694850253,"scaled_rad":35.92771593133668},{"average":0.23373244886001773,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":145.304420572869,"scaled_rad":27.072560763825294},{"average":0.20144243876415271,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":105.19244762165751,"scaled_rad":-26.41006983779002},{"average":0.20716441264681396,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":112.30051791731337,"scaled_rad":-16.932642776915515},{"average":0.19314215935158485,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":94.88150060442337,"scaled_rad":-40.1579991941022},{"average":0.18630916453383076,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":86.39327460226986,"scaled_rad":-51.47563386364021},{"average":0.19388031633759317,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":95.79846944303965,"scaled_rad":-38.93537407594715},{"average":0.18850872228522936,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":89.12565532208966,"scaled_rad":-47.832459570547144},{"average":0.17430367714250422,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":71.47956649015414,"scaled_rad":-71.36057801312784},{"average":0.16636643136292695,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":61.619594719557135,"scaled_rad":-84.5072070405905},{"average":0.15777186814146452,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":50.943076302768986,"scaled_rad":-98.74256492964136},{"average":0.15654891350173525,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":49.42387196422154,"scaled_rad":-100.76817071437128},{"average":0.15631564998108408,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":49.13410246575791,"scaled_rad":-101.15453004565612},{"average":0.15679945371399714,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":49.73510327655634,"scaled_rad":-100.35319563125822},{"average":0.15694733829621008,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":49.91881156106957,"scaled_rad":-100.10825125190725},{"average":0.15983189265534747,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":53.5021231204808,"scaled_rad":-95.33050250602561},{"average":0.15988285549651787,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":53.56543124892285,"scaled_rad":-95.24609166810288},{"average":0.16261000576782828,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":56.95320900408373,"scaled_rad":-90.7290546612217},{"average":0.16603107185149746,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":61.202997400093494,"scaled_rad":-85.06267013320868},{"average":0.16957736551188507,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":65.60834862049268,"scaled_rad":-79.18886850600978},{"average":0.17702121094896875,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":74.85539827884926,"scaled_rad":-66.85946896153432},{"average":0.18693504978739123,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":87.17077489684532,"scaled_rad":-50.43896680420626},{"average":0.18239314226653186,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":81.52863136444223,"scaled_rad":-57.961824847410355},{"average":0.18451610464376933,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":84.16586217358014,"scaled_rad":-54.44551710189316},{"average":0.18214587068079777,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":81.22146047384412,"scaled_rad":-58.37138603487452},{"average":0.18036236008979323,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":79.00591057552636,"scaled_rad":-61.325452565964866},{"average":0.18133362099416694,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":80.2124506481105,"scaled_rad":-59.71673246918601},{"average":0.18528340801374235,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":85.11903784402296,"scaled_rad":-53.17461620796942},{"average":0.1898436904452104,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":90.78400744291311,"scaled_rad":-45.621323409449204},{"average":0.19162345986675333,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":92.99490990730922,"scaled_rad":-42.67345345692107},{"average":0.1913724214910801,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":92.68305975598301,"scaled_rad":-43.089253658689344},{"average":0.19263512915109887,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":94.25164692438548,"scaled_rad":-40.99780410081938},{"average":0.19327286812357414,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":95.04387239405595,"scaled_rad":-39.94150347459207},{"average":0.2063080956615562,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":111.23676588848633,"scaled_rad":-18.350978815351596},{"average":0.16894509524784304,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":64.8229166044043,"scaled_rad":-80.23611119412762},{"average":0.17032293329501283,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":66.53452345479367,"scaled_rad":-77.95396872694178},{"average":0.16826936722285912,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":63.983499577897966,"scaled_rad":-81.35533389613606},{"average":0.16904036716805945,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":64.94126728547826,"scaled_rad":-80.078310286029},{"average":0.1720715081953447,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":68.7066748073961,"scaled_rad":-75.05776692347187},{"average":0.17966369395809514,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":78.13799889344888,"scaled_rad":-62.48266814206818},{"average":0.18667305657288782,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":86.84531619607807,"scaled_rad":-50.87291173856258},{"average":0.19056260193440508,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":91.6770687372044,"scaled_rad":-44.43057501706083},{"average":0.19315633275167682,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":94.89910738247724,"scaled_rad":-40.13452349003036},{"average":0.1942727715039337,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":96.28599332333818,"scaled_rad":-38.28534223554911},{"average":0.1920290783701236,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":93.49878582395942,"scaled_rad":-42.001618901387445},{"average":0.1901579875681367,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":91.17444020078572,"scaled_rad":-45.10074639895238},{"average":0.1884051864830459,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":88.99703890839594,"scaled_rad":-48.00394812213878},{"average":0.18413216733218482,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":83.6889195213011,"scaled_rad":-55.08144063826521},{"average":0.18054135879791733,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":79.22827010149922,"scaled_rad":-61.02897319800104},{"average":0.18029531961114242,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":78.92263014736007,"scaled_rad":-61.43649313685326},{"average":0.18392756343195119,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":83.43475217705073,"scaled_rad":-55.42033043059905},{"average":0.18532466504416645,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":85.17028901686264,"scaled_rad":-53.10628131084982},{"average":0.1878050449256604,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":88.25151848752039,"scaled_rad":-48.99797534997285},{"average":0.1913155989125878,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":92.61247242185907,"scaled_rad":-43.18337010418793},{"average":0.19239136423852485,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":93.94883216679963,"scaled_rad":-41.40155711093384},{"average":0.19222704160052376,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":93.74470385617964,"scaled_rad":-41.67372819176049},{"average":0.18715204344905587,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":87.44033331015753,"scaled_rad":-50.07955558645665},{"average":0.17913578644444877,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":77.4822105599904,"scaled_rad":-63.35705258667947},{"average":0.17163121781894394,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":68.15972807011009,"scaled_rad":-75.78702923985323},{"average":0.1682028018993636,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":63.90080940692515,"scaled_rad":-81.46558745743314},{"average":0.16072245806059568,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":54.608419939235134,"scaled_rad":-93.85544008101984},{"average":0.1573945874385289,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":50.47440276236941,"scaled_rad":-99.36746298350747},{"average":0.16275350486386334,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":57.131469458062924,"scaled_rad":-90.49137405591611},{"average":0.16047632726718133,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":54.30266618757679,"scaled_rad":-94.26311174989762},{"average":0.1582899968399376,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":51.58671699153608,"scaled_rad":-97.88437734461857},{"average":0.15519152184814408,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":47.737664461300334,"scaled_rad":-103.0164473849329},{"average":0.1534707505340879,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":45.60005186224199,"scaled_rad":-105.86659751701069},{"average":0.1522680182469549,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":44.105968558279024,"scaled_rad":-107.8587085889613},{"average":0.14733611367956334,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":37.979354722673556,"scaled_rad":-116.02752703643526},{"average":0.13596705646524507,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":23.856246240898592,"scaled_rad":-134.85833834546855},{"average":0.136861112765321,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":24.96687959217459,"scaled_rad":-133.37749387710056},{"average":0.1382513786845196,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":26.693924854171144,"scaled_rad":-131.07476686110516},{"average":0.13955884313764283,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":28.31811074394471,"scaled_rad":-128.9091856747404},{"average":0.1388990200854316,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":27.498451525991346,"scaled_rad":-130.00206463201155},{"average":0.14278394481137632,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":32.32446412437524,"scaled_rad":-123.56738116749969},{"average":0.1505030929464611,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":41.9135060689786,"scaled_rad":-110.78199190802854},{"average":0.16019890680674123,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":53.95804313009713,"scaled_rad":-94.7226091598705},{"average":0.17495408281683922,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":72.28752705562887,"scaled_rad":-70.28329725916153},{"average":0.19088428253804254,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":92.07667355720065,"scaled_rad":-43.89776859039915},{"average":0.19941300296923145,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":102.67139936337509,"scaled_rad":-29.771467515499893},{"average":0.20243092039106791,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":106.42037998104284,"scaled_rad":-24.772826691942896},{"average":0.20326066155981573,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":107.45111844221108,"scaled_rad":-23.398508743718565},{"average":0.20541621621225273,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":110.12883671039098,"scaled_rad":-19.828217719478715},{"average":0.20779581307606013,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":113.08486938899499,"scaled_rad":-15.886840814673377},{"average":0.20471128028172714,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":109.25313642743565,"scaled_rad":-20.995818096752487},{"average":0.19913494835487722,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":102.32598853393206,"scaled_rad":-30.232015288090622},{"average":0.19860244608435793,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":101.66449240531165,"scaled_rad":-31.114010126251145},{"average":0.20235755702298952,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":106.329245000681,"scaled_rad":-24.89433999909201},{"average":0.20289584464396387,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":106.99792792857083,"scaled_rad":-24.002762761905586},{"average":0.20202528693233476,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":105.91648548622835,"scaled_rad":-25.444686018362205},{"average":0.20643393206902502,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":111.39308502736803,"scaled_rad":-18.142553296842635},{"average":0.20764407316918473,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":112.89637186229447,"scaled_rad":-16.138170850274065},{"average":0.19976905581762303,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":103.11370279349119,"scaled_rad":-29.181729608678438},{"average":0.1940314709181022,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":95.9862398533563,"scaled_rad":-38.68501352885828},{"average":0.18840567960556764,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":88.99765148538785,"scaled_rad":-48.003131352816226},{"average":0.18885055948270574,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":89.55029948844891,"scaled_rad":-47.2662673487348},{"average":0.18448537993258646,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":84.12769467904414,"scaled_rad":-54.49640709460782},{"average":0.18390716872448046,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":83.40941703618255,"scaled_rad":-55.454110618423286},{"average":0.18242908784553716,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":81.57328443480348,"scaled_rad":-57.90228742026203},{"average":0.18599022988449124,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":85.99708091916075,"scaled_rad":-52.003892107785674},{"average":0.17842722383718337,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":76.60200507066139,"scaled_rad":-64.53065990578483},{"average":0.17115077764689052,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":67.56290561236331,"scaled_rad":-76.58279251684893},{"average":0.16419832014177352,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":58.92627816747401,"scaled_rad":-88.09829577670133},{"average":0.15939517534164668,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":52.959614988012454,"scaled_rad":-96.05384668265006},{"average":0.1544209799958744,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":46.78046581551929,"scaled_rad":-104.29271224597429},{"average":0.16083810302951088,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":54.75207885576375,"scaled_rad":-93.66389485898168},{"average":0.1660630453420905,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":61.242716179555494,"scaled_rad":-85.00971176059268},{"average":0.1644389507917409,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":59.22519941568879,"scaled_rad":-87.69973411241496},{"average":0.162293627687375,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":56.560191195547226,"scaled_rad":-91.25307840593705},{"average":0.16507876303579125,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":60.02000038821894,"scaled_rad":-86.63999948237476},{"average":0.16979862170086968,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":65.88320211980995,"scaled_rad":-78.82239717358674},{"average":0.17403135351328688,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":71.14127492515583,"scaled_rad":-71.81163343312558},{"average":0.17810797395854766,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":76.2054197968106,"scaled_rad":-65.05944027091921},{"average":0.18179771108394963,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":80.78896236405673,"scaled_rad":-58.94805018125771},{"average":0.19249007751194525,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":94.0714578377613,"scaled_rad":-41.23805621631827},{"average":0.27603586717100626,"rel_min":0.12078783847391605,"rel_max":0.2777622155845165,"scaled_dist":197.8554592995944,"scaled_rad":97.14061239945914},{"average":0.2818344799013866,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.28077437468497446,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":198.7163934909287,"scaled_rad":98.28852465457163},{"average":0.27533027267182103,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":192.12451499439376,"scaled_rad":89.49935332585838},{"average":0.2725498800476392,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":188.75793400326123,"scaled_rad":85.010578671015},{"average":0.2710687031974588,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":186.96448160198744,"scaled_rad":82.61930880264995},{"average":0.27018216997385025,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":185.89104115596905,"scaled_rad":81.18805487462544},{"average":0.27261834157523046,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":188.84082923014685,"scaled_rad":85.12110564019585},{"average":0.2777434004122739,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":195.04640088544622,"scaled_rad":93.395201180595},{"average":0.2809629856825691,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":198.94476922236254,"scaled_rad":98.59302562981674},{"average":0.28170787960372334,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":199.8467086439958,"scaled_rad":99.79561152532779},{"average":0.2812785962926432,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":199.32691981189942,"scaled_rad":99.10255974919926},{"average":0.2783458605914822,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":195.77587735204193,"scaled_rad":94.36783646938926},{"average":0.267188892535724,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":182.2666929841539,"scaled_rad":76.35559064553857},{"average":0.25227960441764946,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":164.21408935793127,"scaled_rad":52.28545247724173},{"average":0.2412690176174165,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":150.8821477103783,"scaled_rad":34.50953028050441},{"average":0.22876855022003573,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":135.746214909277,"scaled_rad":14.328286545702667},{"average":0.21295849870061426,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":116.60294052018867,"scaled_rad":-11.1960793064151},{"average":0.20349897875545178,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":105.14907614303291,"scaled_rad":-26.467898475956105},{"average":0.20210369644562404,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":103.4596273721379,"scaled_rad":-28.720496837149454},{"average":0.20297676708271845,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":104.51676692329136,"scaled_rad":-27.310977435611505},{"average":0.19813067093491554,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":98.64897147940343,"scaled_rad":-35.13470469412876},{"average":0.19813067093491554,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":98.64897147940343,"scaled_rad":-35.13470469412876},{"average":0.19813067093491554,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":98.64897147940343,"scaled_rad":-35.13470469412876},{"average":0.19813067093491554,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":98.64897147940343,"scaled_rad":-35.13470469412876},{"average":0.19813067093491554,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":98.64897147940343,"scaled_rad":-35.13470469412876},{"average":0.1981950111940737,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":98.7268765535151,"scaled_rad":-35.03083126197987},{"average":0.22271317223150175,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":128.41418552140607,"scaled_rad":4.552247361874777},{"average":0.22444450041318,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":130.51052849655161,"scaled_rad":7.347371328735477},{"average":0.2259081358452896,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":132.282741234002,"scaled_rad":9.710321645336023},{"average":0.22744787405269135,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":134.1471014453173,"scaled_rad":12.196135260423091},{"average":0.18498819335833078,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":82.73567391095825,"scaled_rad":-56.35243478538899},{"average":0.18712100124985134,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":85.3181403018132,"scaled_rad":-52.90914626424906},{"average":0.19001498559350985,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":88.82226148069267,"scaled_rad":-48.23698469240976},{"average":0.19509940753475977,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":94.97862878991255,"scaled_rad":-40.02849494678327},{"average":0.20119483680333322,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":102.35915344312072,"scaled_rad":-30.187795409172367},{"average":0.20533338320270486,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":107.37022688572287,"scaled_rad":-23.506364152369486},{"average":0.20634763797806724,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":108.59831633510599,"scaled_rad":-21.868911553191992},{"average":0.20685813520198243,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":109.21644135641105,"scaled_rad":-21.044744858118577},{"average":0.1897881133363971,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":88.54755789330424,"scaled_rad":-48.60325614226099},{"average":0.18321335884845918,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":80.58665219676853,"scaled_rad":-59.217797070975294},{"average":0.18136444959967804,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":78.34793861468681,"scaled_rad":-62.20274851375092},{"average":0.1795990985710567,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":76.21039977792566,"scaled_rad":-65.05280029609911},{"average":0.17643881175564347,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":72.38383175053146,"scaled_rad":-70.15489099929138},{"average":0.17834392414428293,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":74.6905977438602,"scaled_rad":-67.0792030081864},{"average":0.18251282656727882,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":79.73842715078585,"scaled_rad":-60.34876379895218},{"average":0.1855491891744273,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":83.4149441097602,"scaled_rad":-55.4467411869864},{"average":0.18425797730240573,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":81.85150687932529,"scaled_rad":-57.5313241608996},{"average":0.18332315704757624,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":80.71959907872798,"scaled_rad":-59.040534561696006},{"average":0.18490518773043596,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":82.63516826057014,"scaled_rad":-56.48644231923981},{"average":0.18643559397111092,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":84.48822905268867,"scaled_rad":-54.0156945964151},{"average":0.18672917405239486,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":84.84370443139224,"scaled_rad":-53.54172742481033},{"average":0.18605984445186516,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":84.0332605069092,"scaled_rad":-54.622319324121065},{"average":0.18699308830907702,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":85.16325955900535,"scaled_rad":-53.11565392132617},{"average":0.19778363231296947,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":98.22876693071086,"scaled_rad":-35.69497742571885},{"average":0.2267215734397553,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":133.2676753469698,"scaled_rad":11.023567129293099},{"average":0.24115844740921144,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":150.74826605715737,"scaled_rad":34.33102140954318},{"average":0.25384292946384257,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":166.10700920590557,"scaled_rad":54.80934560787409},{"average":0.26383223114670185,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":178.20234885963455,"scaled_rad":70.93646514617942},{"average":0.2763946849089789,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":193.41333657059076,"scaled_rad":91.21778209412102},{"average":0.2470301272920691,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":157.85786838731772,"scaled_rad":43.810491183090335},{"average":0.25273625052375476,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":164.76700986531506,"scaled_rad":53.02267982042011},{"average":0.2585645479163485,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":171.82408340303067,"scaled_rad":62.43211120404092},{"average":0.2644895355890645,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":178.99823236968246,"scaled_rad":71.99764315957663},{"average":0.2526811767546904,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":164.70032492937128,"scaled_rad":52.933766572495045},{"average":0.26554561688646566,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":180.27696659951715,"scaled_rad":73.70262213268958},{"average":0.27129972016359394,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":187.2442037247033,"scaled_rad":82.99227163293776},{"average":0.266568071127431,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":181.5149842024986,"scaled_rad":75.35331226999813},{"average":0.2506100799677507,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":162.19258015510275,"scaled_rad":49.59010687347035},{"average":0.23619620897314128,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":144.73984212197416,"scaled_rad":26.31978949596558},{"average":0.23009702801144738,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":137.35477480862727,"scaled_rad":16.47303307816972},{"average":0.2291127826486315,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":136.163021636702,"scaled_rad":14.884028848936026},{"average":0.2295909440057857,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":136.74199344150716,"scaled_rad":15.655991255342883},{"average":0.23233386262000857,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":140.06319980155624,"scaled_rad":20.084266402075002},{"average":0.24092299261585223,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":150.46317048299275,"scaled_rad":33.950893977323716},{"average":0.2454423959304313,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":155.93539665630178,"scaled_rad":41.24719554173572},{"average":0.24097313251587804,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":150.52388134550048,"scaled_rad":34.031841794000655},{"average":0.23579250537633345,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":144.251025958658,"scaled_rad":25.668034611544044},{"average":0.23279788043813496,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":140.62504619420764,"scaled_rad":20.83339492561018},{"average":0.23034624731403658,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":137.65653685454228,"scaled_rad":16.87538247272306},{"average":0.2239690025704443,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":129.93478175317588,"scaled_rad":6.57970900423453},{"average":0.21032091942818268,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":113.40928212678597,"scaled_rad":-15.4542904976187},{"average":0.19516066005921254,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":95.05279514422095,"scaled_rad":-39.92960647437205},{"average":0.1996036470912244,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":100.43249423985533,"scaled_rad":-32.756674346859555},{"average":0.20132401605898684,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":102.51556747714949,"scaled_rad":-29.979243363800663},{"average":0.20155202357896737,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":102.79164567413709,"scaled_rad":-29.611139101150542},{"average":0.1978503199403777,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":98.30951426719263,"scaled_rad":-35.58731431040982},{"average":0.19480919159747004,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":94.62722681549145,"scaled_rad":-40.49703091267804},{"average":0.19082830572786094,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":89.80705336950638,"scaled_rad":-46.92392884065815},{"average":0.18983866415415587,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":88.60876630706305,"scaled_rad":-48.52164492391593},{"average":0.18804648202831434,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":86.43873959032155,"scaled_rad":-51.41501387957125},{"average":0.1855401721651722,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":83.40402605031382,"scaled_rad":-55.46129859958155},{"average":0.18514775779164797,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":82.92887920987698,"scaled_rad":-56.09482772016402},{"average":0.18270680707420964,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":79.97330444171368,"scaled_rad":-60.03559407771509},{"average":0.22212928152746625,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":127.7071935203453,"scaled_rad":3.6095913604604277},{"average":0.21900124353110922,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":123.91967330953527,"scaled_rad":-1.440435587286288},{"average":0.21593510919143405,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":120.20710786304672,"scaled_rad":-6.390522849271036},{"average":0.21844943792088406,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":123.25153088172583,"scaled_rad":-2.3312921576988686},{"average":0.22456053102036141,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":130.6510217611104,"scaled_rad":7.534695681480542},{"average":0.23128109400743965,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":138.7884766677404,"scaled_rad":18.384635556987234},{"average":0.2357642687857151,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":144.21683626602132,"scaled_rad":25.62244835469511},{"average":0.22641802403089514,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":132.90012881384706,"scaled_rad":10.533505085129434},{"average":0.23803763056588745,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":146.96948943037344,"scaled_rad":29.292652573831276},{"average":0.24475106098618124,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":155.09830801580708,"scaled_rad":40.131077354409456},{"average":0.24902255288122788,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":160.2703557663913,"scaled_rad":47.0271410218551},{"average":0.25206808817780973,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":163.95797928694094,"scaled_rad":51.94397238258793},{"average":0.25726194052404655,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":170.24684814219307,"scaled_rad":60.32913085625745},{"average":0.26807401328474345,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":183.3384231644851,"scaled_rad":77.7845642193135},{"average":0.2604659956815685,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":174.12641216277004,"scaled_rad":65.50188288369341},{"average":0.24979942197440774,"rel_min":0.12078783847391605,"rel_max":0.2818344799013866,"scaled_dist":161.2110116647529,"scaled_rad":48.28134888633721},{"average":0.28374668488143084,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":0.2632848578694673,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":175.51494530493383,"scaled_rad":67.35326040657844},{"average":0.24796637779690772,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":157.18452827019854,"scaled_rad":42.91270436026471},{"average":0.24150721617599033,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":149.45535895017807,"scaled_rad":32.60714526690407},{"average":0.24030906177185318,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":148.02162206533,"scaled_rad":30.695496087106676},{"average":0.24198838774186032,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":150.03113901620782,"scaled_rad":33.374852021610394},{"average":0.23918097386515494,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":146.6717282322818,"scaled_rad":28.895637643042363},{"average":0.233286781776027,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":139.61861339551066,"scaled_rad":19.491484527347524},{"average":0.22826959528343335,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":133.61494199243032,"scaled_rad":11.486589323240395},{"average":0.2224215536133239,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":126.61705172251764,"scaled_rad":2.15606896335683},{"average":0.2159190823817078,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":118.83605720691907,"scaled_rad":-8.218590390774608},{"average":0.2069878108034094,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":108.14870886000615,"scaled_rad":-22.468388186658473},{"average":0.20560063685925686,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":106.4887871983536,"scaled_rad":-24.68161706886187},{"average":0.2041921084649503,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":104.80331235028724,"scaled_rad":-26.928916866283686},{"average":0.20305704164784402,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":103.44506740553462,"scaled_rad":-28.739910125953855},{"average":0.2165878651016963,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":119.63633674542068,"scaled_rad":-7.151551006105791},{"average":0.2338362756992895,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":140.2761494384956,"scaled_rad":20.368199251327468},{"average":0.2025925990417754,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":102.88930556639579,"scaled_rad":-29.480925911472298},{"average":0.20112996431421643,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":101.13908593633803,"scaled_rad":-31.81455208488265},{"average":0.20436356070729875,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":105.00847572739129,"scaled_rad":-26.65536569681163},{"average":0.20648703609167793,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":107.54947125529559,"scaled_rad":-23.267371659605885},{"average":0.20570504484082394,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":106.61372399592192,"scaled_rad":-24.51503467210412},{"average":0.203506650548184,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":103.9830789188651,"scaled_rad":-28.022561441513204},{"average":0.20371265961561955,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":104.22959372328063,"scaled_rad":-27.693875035625837},{"average":0.20372236541339328,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":104.24120788604382,"scaled_rad":-27.67838948527492},{"average":0.20252629450300438,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":102.8099641538528,"scaled_rad":-29.586714461529624},{"average":0.19926665412504377,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":98.90940958001404,"scaled_rad":-34.78745389331462},{"average":0.19303990849888833,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":91.45835415179938,"scaled_rad":-44.72219446426749},{"average":0.1885748382936786,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":86.1153567680394,"scaled_rad":-51.846190975947465},{"average":0.16145076360365357,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":53.65811568443431,"scaled_rad":-95.12251242075426},{"average":0.15728957239808816,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":48.67874633460418,"scaled_rad":-101.7616715538611},{"average":0.1627569902028656,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":55.221174042182966,"scaled_rad":-93.03843461042271},{"average":0.16628688138846054,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":59.44511644460826,"scaled_rad":-87.40651140718899},{"average":0.16773004715661247,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":61.172039106332804,"scaled_rad":-85.10394785822294},{"average":0.20197587376832962,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":102.15131906874235,"scaled_rad":-30.464907908343548},{"average":0.20358938105895133,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":104.08207599668734,"scaled_rad":-27.890565337750218},{"average":0.20840853335432322,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":109.84877549361126,"scaled_rad":-20.20163267518501},{"average":0.19897003759209725,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":98.5544719672383,"scaled_rad":-35.26070404368228},{"average":0.18227727900421808,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":78.57956421355694,"scaled_rad":-61.89391438192409},{"average":0.18611903357328755,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":83.17668893236569,"scaled_rad":-55.76441475684575},{"average":0.18963393652185856,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":87.38269609356846,"scaled_rad":-50.15640520857541},{"average":0.19194117741736436,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":90.14358931625686,"scaled_rad":-46.47521424499085},{"average":0.19595123321463273,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":94.94210684203676,"scaled_rad":-40.07719087728434},{"average":0.2006149836440803,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":100.52284918153543,"scaled_rad":-32.63620109128611},{"average":0.20601447621981303,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":106.9839961243339,"scaled_rad":-24.021338500888135},{"average":0.20944565462418732,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":111.08981672630236,"scaled_rad":-18.546911031596863},{"average":0.20814850996248424,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":109.53762600693778,"scaled_rad":-20.616498657416315},{"average":0.2066428108434928,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":107.73587461585903,"scaled_rad":-23.0188338455213},{"average":0.20650220455797497,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":107.56762216267576,"scaled_rad":-23.24317044976567},{"average":0.21054467066254431,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":112.40492254721427,"scaled_rad":-16.793436603714326},{"average":0.21432319907254951,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":116.92638950770348,"scaled_rad":-10.764813989728708},{"average":0.21793356437661202,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":121.24662894123277,"scaled_rad":-5.004494745022981},{"average":0.22304391854489403,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":127.36178675428562,"scaled_rad":3.1490490057141187},{"average":0.2188503997604971,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":122.34373354033202,"scaled_rad":-3.5416886128906526},{"average":0.2105317941508614,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":112.3895142411694,"scaled_rad":-16.81398101177416},{"average":0.20683406634460028,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":107.96473499096682,"scaled_rad":-22.71368667871093},{"average":0.20211424052686755,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":102.31689165660556,"scaled_rad":-30.24414445785925},{"average":0.20070517707765673,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":100.63077655053152,"scaled_rad":-32.49229793262465},{"average":0.19937221469172767,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":99.03572558529481,"scaled_rad":-34.61903255294027},{"average":0.19815091745484442,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":97.574295497623,"scaled_rad":-36.56760600316936},{"average":0.19691430229849463,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":96.09453566374944,"scaled_rad":-38.54061911500075},{"average":0.19550023293670485,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":94.40243037687567,"scaled_rad":-40.796759497499124},{"average":0.19493540962029135,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":93.72655085803567,"scaled_rad":-41.69793218928578},{"average":0.19656981789068598,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":95.68231834015167,"scaled_rad":-39.090242213131134},{"average":0.20065291493709358,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":100.568238568492,"scaled_rad":-32.57568190867734},{"average":0.20079602113803902,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":100.73948247331553,"scaled_rad":-32.347356702245975},{"average":0.19546926525750555,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":94.3653737973957,"scaled_rad":-40.846168270139074},{"average":0.196086738496236,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":95.1042553261182,"scaled_rad":-39.86099289850908},{"average":0.1916488323723444,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":89.7937630562186,"scaled_rad":-46.94164925837522},{"average":0.1838902421922327,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":80.50967005682185,"scaled_rad":-59.32043992423755},{"average":0.17734905868879894,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":72.68235161852216,"scaled_rad":-69.75686450863712},{"average":0.1824630406551632,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":78.80185053143938,"scaled_rad":-61.5975326247475},{"average":0.18085156541774708,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":76.8735252013108,"scaled_rad":-64.16863306491894},{"average":0.1802402676008849,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":76.14203331292305,"scaled_rad":-65.14395558276928},{"average":0.17915679235701207,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":74.84552393516974,"scaled_rad":-66.87263475310702},{"average":0.1791367178331792,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":74.82150233564502,"scaled_rad":-66.90466355247331},{"average":0.18212387526607163,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":78.39599805806421,"scaled_rad":-62.13866925591441},{"average":0.18471865781323904,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":81.5009696987711,"scaled_rad":-57.99870706830521},{"average":0.183605713687618,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":80.16919723424722,"scaled_rad":-59.77440368767037},{"average":0.1821584057233749,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":78.43731793312826,"scaled_rad":-62.083576089162335},{"average":0.1987004635221028,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":98.23189393721555,"scaled_rad":-35.690808083712625},{"average":0.19641463577039064,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":95.49662413499071,"scaled_rad":-39.33783448667907},{"average":0.19485418386349496,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":93.62935440062036,"scaled_rad":-41.82752746583954},{"average":0.18984786519451655,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":87.63868766498635,"scaled_rad":-49.81508311335155},{"average":0.18928664034063167,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":86.9671141424672,"scaled_rad":-50.710514476710415},{"average":0.19133297725159762,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":89.41580414264358,"scaled_rad":-47.445594476475236},{"average":0.19352829975305477,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":92.042773449444,"scaled_rad":-43.94296873407468},{"average":0.19518165891252418,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":94.0212179659834,"scaled_rad":-41.30504271202214},{"average":0.19641780422913038,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":95.50041557968898,"scaled_rad":-39.332779227081375},{"average":0.1981521376819761,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":97.57575564720015,"scaled_rad":-36.565659137066476},{"average":0.2016189843952227,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":101.7242577014704,"scaled_rad":-31.034323064706143},{"average":0.20666232565334283,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":107.75922644980143,"scaled_rad":-22.987698066931443},{"average":0.2138987472915094,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":116.41848153506209,"scaled_rad":-11.442024619917248},{"average":0.21978942325508657,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":123.46738890168037,"scaled_rad":-2.043481464426179},{"average":0.22226348358339498,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":126.42790178364866,"scaled_rad":1.9038690448648765},{"average":0.22587520550146248,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":130.74976457017047,"scaled_rad":7.666352760227284},{"average":0.20931558862487618,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":110.93417700237937,"scaled_rad":-18.75443066349419},{"average":0.20624007620115897,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":107.25395383041908,"scaled_rad":-23.66139489277458},{"average":0.20377777889370918,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":104.30751682783996,"scaled_rad":-27.58997756288008},{"average":0.20377325803964538,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":104.30210707831193,"scaled_rad":-27.597190562250773},{"average":0.2012195587289839,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":101.24629650676614,"scaled_rad":-31.67160465764516},{"average":0.19899095512098736,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":98.57950232443272,"scaled_rad":-35.22733023408972},{"average":0.196808166742902,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":95.96753161458719,"scaled_rad":-38.70995784721708},{"average":0.19440771685176658,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":93.09510253761123,"scaled_rad":-42.53986328318504},{"average":0.19148386426662145,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":89.59635873405293,"scaled_rad":-47.20485502126277},{"average":0.1879506634316699,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":85.36845593525294,"scaled_rad":-52.842058752996095},{"average":0.1839947478481002,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":80.6347237335225,"scaled_rad":-59.15370168863667},{"average":0.1803041352560487,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":76.21845869903429,"scaled_rad":-65.0420550679543},{"average":0.17780310669686736,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":73.22567506198794,"scaled_rad":-69.03243325068276},{"average":0.1747741736471653,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":69.60118975350171,"scaled_rad":-73.86508032866439},{"average":0.1747741736471653,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":69.60118975350171,"scaled_rad":-73.86508032866439},{"average":0.1747741736471653,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":69.60118975350171,"scaled_rad":-73.86508032866439},{"average":0.1747741736471653,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":69.60118975350171,"scaled_rad":-73.86508032866439},{"average":0.1747741736471653,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":69.60118975350171,"scaled_rad":-73.86508032866439},{"average":0.1747741736471653,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":69.60118975350171,"scaled_rad":-73.86508032866439},{"average":0.1747741736471653,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":69.60118975350171,"scaled_rad":-73.86508032866439},{"average":0.1747741736471653,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":69.60118975350171,"scaled_rad":-73.86508032866439},{"average":0.17477256997678536,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":69.59927076762901,"scaled_rad":-73.86763897649466},{"average":0.17383923381567,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":68.48242098972644,"scaled_rad":-75.35677201369809},{"average":0.17383637653074713,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":68.47900190219454,"scaled_rad":-75.36133079707395},{"average":0.17214109240665573,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":66.45038908683912,"scaled_rad":-78.06614788421452},{"average":0.15656782022885204,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":47.815082433541164,"scaled_rad":-102.91322342194512},{"average":0.15956981373684748,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":51.407331317012115,"scaled_rad":-98.12355824398385},{"average":0.1607789946735816,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":52.854262783828624,"scaled_rad":-96.1943162882285},{"average":0.1649623850265802,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":57.86019610269084,"scaled_rad":-89.51973852974555},{"average":0.17150831721130563,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":65.6931969133949,"scaled_rad":-79.07573744880682},{"average":0.17960678446232467,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":75.3839939996701,"scaled_rad":-66.15467466710655},{"average":0.1864570098949524,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":83.58111854252527,"scaled_rad":-55.22517527663298},{"average":0.19339907573228735,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":91.88814125484296,"scaled_rad":-44.149144993542734},{"average":0.19644523101444003,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":95.5332350506983,"scaled_rad":-39.2890199324023},{"average":0.20147748463380857,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":101.55493609614466,"scaled_rad":-31.260085205140484},{"average":0.2053899484525873,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":106.23667299770551,"scaled_rad":-25.01776933639266},{"average":0.208883223637789,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":110.41679992012413,"scaled_rad":-19.44426677316784},{"average":0.20078678684113221,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":100.72843251845562,"scaled_rad":-32.36208997539252},{"average":0.20761443267886837,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":108.89853784080866,"scaled_rad":-21.468616212255114},{"average":0.21451989519169645,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":117.16176024135322,"scaled_rad":-10.450986344862372},{"average":0.2194762544155715,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":123.09264444900595,"scaled_rad":-2.543140734658749},{"average":0.22022185428917507,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":123.98484501717338,"scaled_rad":-1.353539977102173},{"average":0.22371487793148748,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":128.16467093805392,"scaled_rad":4.219561250738536},{"average":0.22869937980224278,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":134.12923123180218,"scaled_rad":12.172308309069564},{"average":0.230960500552611,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":136.83493611399794,"scaled_rad":15.779914818663912},{"average":0.23451004452279214,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":141.0823954538513,"scaled_rad":21.44319393846837},{"average":0.23673909207756974,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":143.74972087228642,"scaled_rad":24.999627829715195},{"average":0.23762687261419735,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":144.81205782703796,"scaled_rad":26.416077102717253},{"average":0.2382749787608131,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":145.58759534081017,"scaled_rad":27.450127121080214},{"average":0.2385984497989258,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":145.97466762207952,"scaled_rad":27.96622349610601},{"average":0.2386000732361686,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":145.97661026139812,"scaled_rad":27.968813681864134},{"average":0.23726354491992643,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":144.37729222857726,"scaled_rad":25.836389638102986},{"average":0.2335751027548352,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":139.96362437286504,"scaled_rad":19.951499163820046},{"average":0.23400223399323178,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":140.4747386408137,"scaled_rad":20.632984854418254},{"average":0.23656216991895979,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":143.53801207776866,"scaled_rad":24.717349437024836},{"average":0.23768087640718663,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":144.87667990718313,"scaled_rad":26.502239876244147},{"average":0.2382233001737822,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":145.52575565126165,"scaled_rad":27.367674201682206},{"average":0.27777425332750183,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":192.85326216593512,"scaled_rad":90.4710162212468},{"average":0.27927058419633294,"rel_min":0.12078783847391605,"rel_max":0.28374668488143084,"scaled_dist":194.64380331085948,"scaled_rad":92.85840441447928},{"average":0.28582190466075896,"rel_min":0.12078783847391605,"rel_max":0.28582190466075896,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":0.29072307609620585,"rel_min":0.12078783847391605,"rel_max":0.29072307609620585,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.29029500558015625,"rel_min":0.12078783847391605,"rel_max":0.29072307609620585,"scaled_dist":199.50879080879503,"scaled_rad":99.34505441172666},{"average":0.29096656716548097,"rel_min":0.12078783847391605,"rel_max":0.29096656716548097,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.29764603301286696,"rel_min":0.12078783847391605,"rel_max":0.29764603301286696,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.29748591377783695,"rel_min":0.12078783847391605,"rel_max":0.29764603301286696,"scaled_dist":199.8234560128116,"scaled_rad":99.76460801708214},{"average":0.305526405109458,"rel_min":0.12078783847391605,"rel_max":0.305526405109458,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":0.3178726580278699,"rel_min":0.12078783847391605,"rel_max":0.3178726580278699,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.3403207749862739,"rel_min":0.12078783847391605,"rel_max":0.3403207749862739,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.36195378832164266,"rel_min":0.12078783847391605,"rel_max":0.36195378832164266,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.37745897895796743,"rel_min":0.12078783847391605,"rel_max":0.37745897895796743,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.4082539275972338,"rel_min":0.12078783847391605,"rel_max":0.4082539275972338,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.40849940378754435,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.35681391691301334,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":164.96953492451024,"scaled_rad":53.29271323268034},{"average":0.35590464012829337,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":164.35326156467113,"scaled_rad":52.471015419561525},{"average":0.35277549174479533,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":162.23244332743076,"scaled_rad":49.643257769907706},{"average":0.3493997119893459,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":159.94446768906855,"scaled_rad":46.59262358542475},{"average":0.3448015014497931,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":156.82797477285445,"scaled_rad":42.43729969713928},{"average":0.3345632918692064,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":149.88890415872007,"scaled_rad":33.1852055449601},{"average":0.32439587570843287,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":142.99781464276822,"scaled_rad":23.997086190357635},{"average":0.32027906188726796,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":140.20759418620761,"scaled_rad":20.27679224827682},{"average":0.3153329569950839,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":136.85531165656886,"scaled_rad":15.807082208758516},{"average":0.30831633235905814,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":132.09970927912002,"scaled_rad":9.466279038826684},{"average":0.28910821662949665,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":119.0811760714559,"scaled_rad":-7.891765238058781},{"average":0.2573214988087037,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":97.53734286371582,"scaled_rad":-36.61687618171223},{"average":0.22633624565283028,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":76.53671204510788,"scaled_rad":-64.6177172731895},{"average":0.21658675621912873,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":69.92887743303936,"scaled_rad":-73.42816342261418},{"average":0.22304379011009945,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":74.30521040167324,"scaled_rad":-67.593052797769},{"average":0.22686642420999073,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":76.89604698714814,"scaled_rad":-64.1386040171358},{"average":0.22917050664241498,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":78.4576667775551,"scaled_rad":-62.056444296593185},{"average":0.22829222520055126,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":77.86240088695132,"scaled_rad":-62.85013215073157},{"average":0.23029238105597305,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":79.21803075668592,"scaled_rad":-61.04262565775211},{"average":0.2246745202639019,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":75.41045752528066,"scaled_rad":-66.11938996629245},{"average":0.21389172505872148,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":68.10228740456225,"scaled_rad":-75.86361679391699},{"average":0.20326565329468887,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":60.90033849532177,"scaled_rad":-85.46621533957097},{"average":0.1954331783657303,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":55.591783695023736,"scaled_rad":-92.54428840663502},{"average":0.1919494484532823,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":53.23064352957074,"scaled_rad":-95.69247529390567},{"average":0.19343587237843354,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":54.23808535794678,"scaled_rad":-94.34921952273763},{"average":0.1942693392247278,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":54.80297761332141,"scaled_rad":-93.59602984890478},{"average":0.19253486799866412,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":53.62741872081137,"scaled_rad":-95.16344170558483},{"average":0.18809145842587263,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":50.615844035762386,"scaled_rad":-99.17887461898349},{"average":0.18799945995706807,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":50.5534909586543,"scaled_rad":-99.2620120551276},{"average":0.18583662618305619,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":49.08760415819644,"scaled_rad":-101.2165277890714},{"average":0.18486027434715127,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":48.42586986957332,"scaled_rad":-102.09884017390223},{"average":0.18504665813555843,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":48.55219374084272,"scaled_rad":-101.93040834554304},{"average":0.19313743828541344,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":54.035818034853655,"scaled_rad":-94.6189092868618},{"average":0.20515199815728766,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":62.17883158546151,"scaled_rad":-83.7615578860513},{"average":0.20516150612049475,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":62.185275722746574,"scaled_rad":-83.75296570300456},{"average":0.2021087955137762,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":60.11626411502335,"scaled_rad":-86.51164784663553},{"average":0.19958609881908146,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":58.40647585910379,"scaled_rad":-88.79136552119493},{"average":0.1980377999058024,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":57.357097507697226,"scaled_rad":-90.1905366564037},{"average":0.1976990947677266,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":57.12753599579629,"scaled_rad":-90.49661867227161},{"average":0.19547966328819033,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":55.62328941454469,"scaled_rad":-92.50228078060707},{"average":0.1954307554549474,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":55.590141537878786,"scaled_rad":-92.54647794949496},{"average":0.21298915050923825,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":67.49055656587535,"scaled_rad":-76.67925791216621},{"average":0.2264419354432257,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":76.6083445813413,"scaled_rad":-64.52220722487826},{"average":0.23428709086641517,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":81.92549374027183,"scaled_rad":-57.432675012970876},{"average":0.23289276374872103,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":80.98047163921737,"scaled_rad":-58.692704481043506},{"average":0.23247001003830617,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":80.69394518887799,"scaled_rad":-59.07473974816267},{"average":0.23528377650689114,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":82.60100951135651,"scaled_rad":-56.5319873181913},{"average":0.24280408094808043,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":87.6979869805568,"scaled_rad":-49.73601735925759},{"average":0.24579717307911417,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":89.72659144390312,"scaled_rad":-47.03121140812917},{"average":0.24986752315723007,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":92.48532053554524,"scaled_rad":-43.352905952606335},{"average":0.2502165122219084,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":92.72185210332594,"scaled_rad":-43.03753052889874},{"average":0.24647469483587864,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":90.18579002504133,"scaled_rad":-46.418946633278225},{"average":0.24615776286332844,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":89.97098553993166,"scaled_rad":-46.70535261342444},{"average":0.24532058414239896,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":89.40357751654096,"scaled_rad":-47.461896644612025},{"average":0.2463855193494711,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":90.12535025846289,"scaled_rad":-46.49953298871614},{"average":0.24785953603890362,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":91.12438293247452,"scaled_rad":-45.167489423367314},{"average":0.24205535209157328,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":87.19052692465067,"scaled_rad":-50.41263076713243},{"average":0.2311133039541079,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":79.77442119918271,"scaled_rad":-60.30077173442305},{"average":0.2189496726045288,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":71.53037264805006,"scaled_rad":-71.29283646926658},{"average":0.20252531699696488,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":60.39856659783545,"scaled_rad":-86.13524453621939},{"average":0.18892385484784927,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":51.1800107980839,"scaled_rad":-98.42665226922146},{"average":0.19428407573442666,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":54.812965461352974,"scaled_rad":-93.58271271819602},{"average":0.19099769755213084,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":52.58558282260116,"scaled_rad":-96.55255623653179},{"average":0.18448609242501696,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":48.17226353735427,"scaled_rad":-102.43698195019431},{"average":0.17535255686313256,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":41.98189912629563,"scaled_rad":-110.69080116493916},{"average":0.17355134551585233,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":40.76110630784647,"scaled_rad":-112.31852492287138},{"average":0.1730754060723952,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":40.43853258241081,"scaled_rad":-112.74862322345226},{"average":0.17288275224059693,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":40.30795911325009,"scaled_rad":-112.92272118233322},{"average":0.1764695118566142,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":42.73892890885405,"scaled_rad":-109.68142812152793},{"average":0.1810840803488644,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":45.86650862574131,"scaled_rad":-105.51132183234492},{"average":0.1924454627839044,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":53.5668232530583,"scaled_rad":-95.24423566258892},{"average":0.2131709465743802,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":67.61377105210582,"scaled_rad":-76.51497193052558},{"average":0.23220384728279567,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":80.51355015585952,"scaled_rad":-59.315266458853955},{"average":0.23867947443834964,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":84.90248493488563,"scaled_rad":-53.46335342015249},{"average":0.23873729667610535,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":84.94167465723855,"scaled_rad":-53.411100457015266},{"average":0.2451240051332835,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":89.27034371088658,"scaled_rad":-47.63954171881788},{"average":0.25598362907767297,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":96.63058544064661,"scaled_rad":-37.82588607913783},{"average":0.2565223790663288,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":96.99572977425505,"scaled_rad":-37.339026967659905},{"average":0.25422872634855714,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":95.44117884934552,"scaled_rad":-39.411761534205965},{"average":0.2542635133126842,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":95.46475613584558,"scaled_rad":-39.3803251522059},{"average":0.25057952810360606,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":92.96789051632433,"scaled_rad":-42.70947931156755},{"average":0.24857066299740252,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":91.60635784633007,"scaled_rad":-44.524856204893226},{"average":0.2481918754836534,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":91.3496300185816,"scaled_rad":-44.86715997522451},{"average":0.2526110633895986,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":94.34478817539727,"scaled_rad":-40.873615766136965},{"average":0.25611928186293764,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":96.72252575975675,"scaled_rad":-37.70329898699099},{"average":0.2508893916499963,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":93.17790428994594,"scaled_rad":-42.42946094673874},{"average":0.23894953628898494,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":85.08552262687579,"scaled_rad":-53.219303164165595},{"average":0.23094167010587396,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":79.65809427861164,"scaled_rad":-60.45587429518447},{"average":0.21657920082375778,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":69.92375667226727,"scaled_rad":-73.43499110364363},{"average":0.20063134297769758,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":59.114902754310314,"scaled_rad":-87.84679632758623},{"average":0.19272278508078822,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":53.75478180047852,"scaled_rad":-94.99362426602863},{"average":0.19389730290606105,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":54.550825489853814,"scaled_rad":-93.9322326801949},{"average":0.1946403430595214,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":55.05442995833191,"scaled_rad":-93.26076005555745},{"average":0.19572232510417986,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":55.78775640100864,"scaled_rad":-92.2829914653218},{"average":0.16898792112696465,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":37.66819012679871,"scaled_rad":-116.44241316426837},{"average":0.16988433824675808,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":38.27574769289507,"scaled_rad":-115.63233640947324},{"average":0.13897828699587142,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":17.328796925193593,"scaled_rad":-143.56160409974188},{"average":0.13938137416239885,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":17.601994137085878,"scaled_rad":-143.19734115055218},{"average":0.1355793119326763,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":15.025100385916339,"scaled_rad":-146.6331994854449},{"average":0.13493172858433866,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":14.586192923895524,"scaled_rad":-147.21840943480598},{"average":0.13347949177960608,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":13.601921830677014,"scaled_rad":-148.53077089243064},{"average":0.13017790253926703,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":11.364229713002459,"scaled_rad":-151.5143603826634},{"average":0.12550439110845732,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":8.196700705211384,"scaled_rad":-155.7377323930515},{"average":0.12789932440516502,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":9.819895769855108,"scaled_rad":-153.57347230685986},{"average":0.12531523061739558,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":8.068494890068603,"scaled_rad":-155.90867347990854},{"average":0.1274506160245858,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":9.515778227282325,"scaled_rad":-153.97896236362357},{"average":0.129868389280966,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":11.154453351378242,"scaled_rad":-151.79406219816235},{"average":0.13331607838039375,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":13.491166419049163,"scaled_rad":-148.6784447746011},{"average":0.13544691385666155,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":14.935365985442258,"scaled_rad":-146.75284535274366},{"average":0.13374781613094008,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":13.783781911459982,"scaled_rad":-148.28829078472003},{"average":0.13148983731935981,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":12.253409408782922,"scaled_rad":-150.3287874549561},{"average":0.1306979539860415,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":11.716700883254084,"scaled_rad":-151.04439882232788},{"average":0.13372301994685593,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":13.76697599720645,"scaled_rad":-148.3106986703914},{"average":0.14214384826610846,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":19.474294437687863,"scaled_rad":-140.70094074974952},{"average":0.1573334386781416,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":29.7692234132321,"scaled_rad":-126.9743687823572},{"average":0.17913162099503388,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":44.5432056379663,"scaled_rad":-107.27572581604494},{"average":0.19549190003673236,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":55.63158301915907,"scaled_rad":-92.49122264112123},{"average":0.20983306443028538,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":65.35148097909823,"scaled_rad":-79.53135869453568},{"average":0.2233015671991644,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":74.47992194763725,"scaled_rad":-67.360104069817},{"average":0.2405880611404717,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":86.19605270129816,"scaled_rad":-51.73859639826911},{"average":0.25285030103508455,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":94.50693438880688,"scaled_rad":-40.65742081492414},{"average":0.2628870717342326,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":101.30947735992589,"scaled_rad":-31.58736352009879},{"average":0.2695142594338567,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":105.80113413436939,"scaled_rad":-25.598487820840802},{"average":0.27461000579646744,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":109.25483798400752,"scaled_rad":-20.993549354656608},{"average":0.27594928612986624,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":110.16255145992596,"scaled_rad":-19.783264720098714},{"average":0.27470388187387557,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":109.31846363310032,"scaled_rad":-20.90871515586622},{"average":0.2766727772786429,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":110.65290635357671,"scaled_rad":-19.129458195231052},{"average":0.2798136385566458,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":112.78166314700948,"scaled_rad":-16.29111580398734},{"average":0.28562315730402477,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":116.71913488021559,"scaled_rad":-11.041153493045869},{"average":0.29704957229828616,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":124.46352611263654,"scaled_rad":-0.7152985164846086},{"average":0.3231544407201609,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":142.1564170352402,"scaled_rad":22.875222713653585},{"average":0.3248001564026268,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":143.27182078250016,"scaled_rad":24.36242771000022},{"average":0.318989773375753,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":139.3337632733927,"scaled_rad":19.111684364523626},{"average":0.30023445774991714,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":126.62212082324905,"scaled_rad":2.1628277643320644},{"average":0.2796032908784885,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":112.63909745905751,"scaled_rad":-16.4812033879233},{"average":0.2631443890661815,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":101.48387729993296,"scaled_rad":-31.354830266756068},{"average":0.25723710988297477,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":97.48014724664286,"scaled_rad":-36.693137004476185},{"average":0.2532356038457689,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":94.76807803800827,"scaled_rad":-40.30922928265562},{"average":0.24947122685427878,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":92.2167259137362,"scaled_rad":-43.7110321150184},{"average":0.2392387482401509,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":85.2815395315695,"scaled_rad":-52.95794729124064},{"average":0.2300956550460954,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":79.08469731948352,"scaled_rad":-61.220403574021944},{"average":0.24750907295173213,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":90.88685232808625,"scaled_rad":-45.48419689588499},{"average":0.23741772196726085,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":84.04731690716277,"scaled_rad":-54.6035774571163},{"average":0.23137553285045054,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":79.95215001147801,"scaled_rad":-60.06379998469596},{"average":0.2284988068609204,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":78.00241411070918,"scaled_rad":-62.66344785238775},{"average":0.22444937098412673,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":75.25785987246022,"scaled_rad":-66.32285350338637},{"average":0.20329564264378486,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":60.920664140095006,"scaled_rad":-85.43911447987333},{"average":0.21690514512961104,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":70.14466937548829,"scaled_rad":-73.14044083268227},{"average":0.22632883980755916,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":76.53169264372825,"scaled_rad":-64.62440980836233},{"average":0.23223898857165876,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":80.53736759024326,"scaled_rad":-59.283509879675634},{"average":0.23233391819236687,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":80.60170729107492,"scaled_rad":-59.1977236119001},{"average":0.23185096901313515,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":80.27438263227113,"scaled_rad":-59.634156490305145},{"average":0.23221024693613138,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":80.51788759846147,"scaled_rad":-59.30948320205137},{"average":0.23318283942917403,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":81.17707394690241,"scaled_rad":-58.43056807079678},{"average":0.23562107438949612,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":82.8296172388084,"scaled_rad":-56.227177014922134},{"average":0.23763069026030514,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":84.19165874861208,"scaled_rad":-54.4111216685172},{"average":0.23279443884480602,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":80.91383074404679,"scaled_rad":-58.7815590079376},{"average":0.2323634994890913,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":80.62175637340837,"scaled_rad":-59.17099150212215},{"average":0.2371011687715472,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":83.83276914264424,"scaled_rad":-54.889641143141006},{"average":0.23914210212711728,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":85.21603645726309,"scaled_rad":-53.0452847236492},{"average":0.2374036097500276,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":84.0377521809152,"scaled_rad":-54.61633042544638},{"average":0.23160784953513985,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":80.10960545983663,"scaled_rad":-59.85385938688448},{"average":0.21251704197274007,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":67.17057928405565,"scaled_rad":-77.10589428792579},{"average":0.2150558632853414,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":68.89129619516623,"scaled_rad":-74.81160507311168},{"average":0.21782730432941502,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":70.76967394826505,"scaled_rad":-72.30710140231325},{"average":0.21873979885900424,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":71.38812817368326,"scaled_rad":-71.48249576842232},{"average":0.21534197082277387,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":69.0852090458315,"scaled_rad":-74.55305460555799},{"average":0.2114682790129149,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":66.45976747868738,"scaled_rad":-78.05364336175015},{"average":0.21256395430766287,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":67.2023746875528,"scaled_rad":-77.06350041659626},{"average":0.24299322616582641,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":87.82618244402475,"scaled_rad":-49.56509007463366},{"average":0.25404838304874017,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":95.31894899241928,"scaled_rad":-39.574734676774284},{"average":0.2559037455027888,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":96.57644337970643,"scaled_rad":-37.89807549372475},{"average":0.25513923764875895,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":96.0582889170128,"scaled_rad":-38.58894811064958},{"average":0.25787557301006503,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":97.91287336819062,"scaled_rad":-36.116168842412506},{"average":0.25995250661756,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":99.32054028981759,"scaled_rad":-34.23927961357653},{"average":0.26403700351733506,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":102.08885756127631,"scaled_rad":-30.54818991829825},{"average":0.2688740031448779,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":105.3671926756214,"scaled_rad":-26.177076432504776},{"average":0.27257621530374526,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":107.87641183124404,"scaled_rad":-22.831450891674592},{"average":0.2769693855535734,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":110.85393620633357,"scaled_rad":-18.86141839155522},{"average":0.2849480803748925,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":116.26159331063255,"scaled_rad":-11.651208919156602},{"average":0.2961967786412494,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":123.88553487707082,"scaled_rad":-1.4859534972388815},{"average":0.2980840534246041,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":125.16465823227206,"scaled_rad":0.21954430969609007},{"average":0.3025159859395239,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":128.16845420226474,"scaled_rad":4.224605603019654},{"average":0.301841692226133,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":127.71144346664174,"scaled_rad":3.6152579555223383},{"average":0.3050100638606292,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":129.85884573756982,"scaled_rad":6.47846098342643},{"average":0.3111919127040803,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":134.04866870544018,"scaled_rad":12.064891607253571},{"average":0.30754820323753645,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":131.5791004584998,"scaled_rad":8.772133944666393},{"average":0.28827534797947385,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":118.51668925085345,"scaled_rad":-8.644414332195396},{"average":0.26811970701019694,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":104.85595932946636,"scaled_rad":-26.858720894044836},{"average":0.2539611018442731,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":95.2597930983817,"scaled_rad":-39.65360920215771},{"average":0.25362896529541723,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":95.03468352742547,"scaled_rad":-39.95375529676602},{"average":0.25705293653589306,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":97.35532152876883,"scaled_rad":-36.859571294974884},{"average":0.2616780127802318,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":100.49002300197141,"scaled_rad":-32.67996933070478},{"average":0.25782364174192085,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":97.87767632188114,"scaled_rad":-36.16309823749181},{"average":0.2506852868588974,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":93.03956979435172,"scaled_rad":-42.61390694086437},{"average":0.24004160227710145,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":85.82568358443265,"scaled_rad":-52.232421887423115},{"average":0.23080295270465942,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":79.56407687890318,"scaled_rad":-60.58123082812908},{"average":0.22284624003160802,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":74.17131844198147,"scaled_rad":-67.77157541069137},{"average":0.22466779666809508,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":75.40590052674325,"scaled_rad":-66.12546596434231},{"average":0.22482312286869674,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":75.51117474150868,"scaled_rad":-65.98510034465508},{"average":0.22540484945015085,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":75.90544698169442,"scaled_rad":-65.45940402440742},{"average":0.22199510450580875,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":73.5944510249559,"scaled_rad":-68.54073196672546},{"average":0.218516475418538,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":71.2367680055807,"scaled_rad":-71.68430932589239},{"average":0.21395282097953053,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":68.14369590527642,"scaled_rad":-75.80840545963143},{"average":0.2091552648262114,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":64.89209408357894,"scaled_rad":-80.14387455522807},{"average":0.2077592982010332,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":63.945960786458905,"scaled_rad":-81.4053856180548},{"average":0.20359582571933668,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":61.124116857293906,"scaled_rad":-85.16784419027479},{"average":0.19799525615749228,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":57.32826296671717,"scaled_rad":-90.22898271104377},{"average":0.18105141090499038,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":45.844366514253764,"scaled_rad":-105.54084464766164},{"average":0.17631130326707203,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":42.63170112005421,"scaled_rad":-109.82439850659438},{"average":0.17294917557547443,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":40.35297833340898,"scaled_rad":-112.86269555545469},{"average":0.16709410908725664,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":36.384636066882834,"scaled_rad":-118.15381857748956},{"average":0.15786157088270564,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":30.127171415001605,"scaled_rad":-126.49710477999785},{"average":0.15509876698462255,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":28.25464759226641,"scaled_rad":-128.99380321031146},{"average":0.15593049457771177,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":28.81836104770433,"scaled_rad":-128.24218526972754},{"average":0.15838062272322648,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":30.47896509000119,"scaled_rad":-126.02804654666508},{"average":0.16197880052906624,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":32.91767370212773,"scaled_rad":-122.7764350638297},{"average":0.17160296682749912,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":39.4405690405499,"scaled_rad":-114.0792412792668},{"average":0.2012630351097651,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":59.543039751927665,"scaled_rad":-87.27594699742977},{"average":0.22807145649228783,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":77.71277221955854,"scaled_rad":-63.04963704058861},{"average":0.25096168186934337,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":93.22689986215143,"scaled_rad":-42.36413351713142},{"average":0.2678605734049315,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":104.68032838820866,"scaled_rad":-27.09289548238843},{"average":0.27944233705437627,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":112.5300090542599,"scaled_rad":-16.626654594320115},{"average":0.32583944349850735,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":143.97621020624746,"scaled_rad":25.301613608329973},{"average":0.34873265819732613,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":159.49236389789124,"scaled_rad":45.98981853052166},{"average":0.3550148011348942,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":163.75016240345496,"scaled_rad":51.66688320460665},{"average":0.35326413912048865,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":162.5636300079395,"scaled_rad":50.08484001058605},{"average":0.3532785494323997,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":162.57339677146743,"scaled_rad":50.09786236195657},{"average":0.353224611339827,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":162.53683957558198,"scaled_rad":50.049119434109315},{"average":0.35433628782306215,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":163.29029178385363,"scaled_rad":51.05372237847152},{"average":0.35634510887407317,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":164.65179459490727,"scaled_rad":52.86905945987638},{"average":0.3627774788368213,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":169.01141128730055,"scaled_rad":58.68188171640074},{"average":0.370382445145992,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":174.16576936349304,"scaled_rad":65.55435915132406},{"average":0.36639263140276124,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":171.4616247487922,"scaled_rad":61.948832998389605},{"average":0.3525120210082781,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":162.053872842908,"scaled_rad":49.40516379054401},{"average":0.3331114038325615,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":148.9048694472995,"scaled_rad":31.873159263065986},{"average":0.321708229987015,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":141.17623018506598,"scaled_rad":21.56830691342131},{"average":0.3038275815668408,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":129.05740403314138,"scaled_rad":5.409872044188489},{"average":0.27838923054567855,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":111.81625335600633,"scaled_rad":-17.57832885865821},{"average":0.2626570847647143,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":101.15360090425688,"scaled_rad":-31.795198794324136},{"average":0.24900974959638011,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":91.90395410982158,"scaled_rad":-44.12806118690453},{"average":0.24689368959516286,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":90.46976880069937,"scaled_rad":-46.04030826573417},{"average":0.2566072148064653,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":97.05322822520745,"scaled_rad":-37.262362366390064},{"average":0.27643122879773413,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":110.48919394345559,"scaled_rad":-19.34774140872588},{"average":0.2784520131228216,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":111.85880500849048,"scaled_rad":-17.521593322012706},{"average":0.27638584524562604,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":110.45843469103752,"scaled_rad":-19.38875374528328},{"average":0.27053829518316147,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":106.4951867731528,"scaled_rad":-24.67308430246291},{"average":0.26708652612316625,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":104.15570846276461,"scaled_rad":-27.792388716313837},{"average":0.27067291696055407,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":106.58642831418345,"scaled_rad":-24.551428914422047},{"average":0.28096953903494715,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":113.56508870386207,"scaled_rad":-15.24654839485055},{"average":0.28799063656310553,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":118.32372263815819,"scaled_rad":-8.901703149122397},{"average":0.2808050788854812,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":113.45362384456486,"scaled_rad":-15.395168207246854},{"average":0.2683306454048065,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":104.99892538265239,"scaled_rad":-26.668099489796788},{"average":0.26138219897758125,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":100.28953161243004,"scaled_rad":-32.947291183426614},{"average":0.2621396159656715,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":100.80288015480299,"scaled_rad":-32.26282646026266},{"average":0.258337111274122,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":98.22568651976832,"scaled_rad":-35.6990846403089},{"average":0.24773153361728353,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":91.0376277400348,"scaled_rad":-45.28316301328694},{"average":0.23816633874636173,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":84.55470100124859,"scaled_rad":-53.92706533166853},{"average":0.23101554045687542,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":79.70816080419458,"scaled_rad":-60.389118927740554},{"average":0.22356215656879969,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":74.65653955083816,"scaled_rad":-67.12461393221577},{"average":0.21035841887845955,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":65.70754632281249,"scaled_rad":-79.05660490291667},{"average":0.20907939181522617,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":64.84067023092291,"scaled_rad":-80.21243969210278},{"average":0.20887097514683514,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":64.69941330824082,"scaled_rad":-80.40078225567889},{"average":0.20898994005626792,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":64.78004321727525,"scaled_rad":-80.29327571029965},{"average":0.21414138549080072,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":68.27149778789315,"scaled_rad":-75.63800294947579},{"average":0.220076692293712,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":72.29422390008838,"scaled_rad":-70.27436813321548},{"average":0.22828417930959,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":77.85694768684887,"scaled_rad":-62.85740308420151},{"average":0.23635150331974888,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":83.32467429792948,"scaled_rad":-55.56710093609402},{"average":0.24412997536146455,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":88.59662798696912,"scaled_rad":-48.537829350707824},{"average":0.24851008788873322,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":91.56530233235503,"scaled_rad":-44.57959689019327},{"average":0.24915168247086747,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":92.00015083550714,"scaled_rad":-43.99979888599047},{"average":0.2542382206026856,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":95.4476136951364,"scaled_rad":-39.40318173981812},{"average":0.2560117215608919,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":96.64962546158468,"scaled_rad":-37.800499384553746},{"average":0.2604152198075887,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":99.63414976171089,"scaled_rad":-33.821133651052136},{"average":0.2555672427073187,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":96.34837453219538,"scaled_rad":-38.20216729040615},{"average":0.2366655430028049,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":83.5375184987845,"scaled_rad":-55.28330866828733},{"average":0.21835528907294458,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":71.12752200653144,"scaled_rad":-71.82997065795809},{"average":0.24118364167028605,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":86.59971462287298,"scaled_rad":-51.200380502836026},{"average":0.2668162525259775,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":103.97252725698182,"scaled_rad":-28.03663032402423},{"average":0.27570212289572643,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":109.9950335827606,"scaled_rad":-20.006621889652536},{"average":0.27073039387860204,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":106.62538399191972,"scaled_rad":-24.49948801077369},{"average":0.2600374924619504,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":99.3781404757471,"scaled_rad":-34.162479365670535},{"average":0.2511591190059454,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":93.36071527410898,"scaled_rad":-42.18571296785467},{"average":0.24685073598219953,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":90.44065646898369,"scaled_rad":-46.07912470802175},{"average":0.24653387435738297,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":90.225899662903,"scaled_rad":-46.365467116129324},{"average":0.2371821758986914,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":83.88767270474436,"scaled_rad":-54.81643639367417},{"average":0.22455070217180512,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":75.32653831288282,"scaled_rad":-66.23128224948958},{"average":0.21935236869009775,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":71.80330480008345,"scaled_rad":-70.92892693322206},{"average":0.2192274992477448,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":71.71867302230878,"scaled_rad":-71.04176930358828},{"average":0.22224669447037534,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":73.76496917231297,"scaled_rad":-68.31337443691602},{"average":0.23569718739058163,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":82.88120374766316,"scaled_rad":-56.15839500311576},{"average":0.2444638280510097,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":88.82290069307442,"scaled_rad":-48.2361324092341},{"average":0.2432558135618305,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":88.00415423381004,"scaled_rad":-49.327794354919945},{"average":0.23973350246570513,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":85.61686520357685,"scaled_rad":-52.51084639523086},{"average":0.23363215539299337,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":81.48160328637913,"scaled_rad":-58.0245289514945},{"average":0.2408299223029639,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":86.35997703515164,"scaled_rad":-51.52003061979781},{"average":0.257247124630357,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":97.48693486304404,"scaled_rad":-36.68408684927461},{"average":0.26646240371670554,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":103.73270193841037,"scaled_rad":-28.356397415452847},{"average":0.2747041999518296,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":109.31867921428828,"scaled_rad":-20.908427714282283},{"average":0.27975002754707234,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":112.73855001440633,"scaled_rad":-16.348599980791562},{"average":0.27550099079738466,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":109.85871386570685,"scaled_rad":-20.188381512390862},{"average":0.2754189752779383,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":109.80312685350381,"scaled_rad":-20.262497528661555},{"average":0.2650664070935554,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":102.78654830980132,"scaled_rad":-29.617935586931566},{"average":0.2680329500976851,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":104.79715878065501,"scaled_rad":-26.93712162579331},{"average":0.27562130874455737,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":109.94026081246619,"scaled_rad":-20.079652250045058},{"average":0.2791666834058758,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":112.3431814535029,"scaled_rad":-16.875758061996123},{"average":0.2857098850322531,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":116.7779156490251,"scaled_rad":-10.962779134633195},{"average":0.2908405299822025,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":120.25527243914766,"scaled_rad":-6.326303414469777},{"average":0.29065589872515124,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":120.13013636724263,"scaled_rad":-6.493151510343154},{"average":0.2889495626771437,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":118.97364643261398,"scaled_rad":-8.035138089848033},{"average":0.2774642368904867,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":111.18932769674134,"scaled_rad":-18.4142297376782},{"average":0.262516728741309,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":101.05847290850114,"scaled_rad":-31.922036121998474},{"average":0.2561131734558505,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":96.71838571282922,"scaled_rad":-37.70881904956104},{"average":0.24713358037968372,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":90.63235768700491,"scaled_rad":-45.823523083993436},{"average":0.23968620392796486,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":85.58480804643997,"scaled_rad":-52.553589271413344},{"average":0.23769270351551103,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":84.23368898383036,"scaled_rad":-54.355081354892846},{"average":0.23928383113914414,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":85.31209501269555,"scaled_rad":-52.917206649739256},{"average":0.23689080431634318,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":83.69019208384556,"scaled_rad":-55.07974388820591},{"average":0.23278846844107287,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":80.90978423056481,"scaled_rad":-58.78695435924692},{"average":0.22858082444054256,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":78.05800251922133,"scaled_rad":-62.58932997437155},{"average":0.22739352934859083,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":77.25329888251417,"scaled_rad":-63.66226815664777},{"average":0.23544695115214243,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":82.71160310459395,"scaled_rad":-56.38452919387473},{"average":0.25476992142749133,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":95.80798037252075,"scaled_rad":-38.922692836639},{"average":0.2764404889978585,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":110.49547015630884,"scaled_rad":-19.339373124921536},{"average":0.2942157883395388,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":122.54289469362018,"scaled_rad":-3.276140408506393},{"average":0.3092545975675579,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":132.73562989446967,"scaled_rad":10.314173192626242},{"average":0.31961763017073586,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":139.7593008248227,"scaled_rad":19.67906776643028},{"average":0.32422820261595275,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":142.88417217240738,"scaled_rad":23.845562896543186},{"average":0.33024973283074566,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":146.96533724689664,"scaled_rad":29.287116329195527},{"average":0.33824967822545476,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":152.38739718483401,"scaled_rad":36.516529579778705},{"average":0.3485675418819011,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":159.38045431416356,"scaled_rad":45.840605752218096},{"average":0.35882551289631603,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":166.33291847955235,"scaled_rad":55.11055797273647},{"average":0.36868712050342783,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":173.01674254234442,"scaled_rad":64.02232338979258},{"average":0.3769583818180084,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":178.6226901328941,"scaled_rad":71.49692017719212},{"average":0.38398258858321865,"rel_min":0.12078783847391605,"rel_max":0.40849940378754435,"scaled_dist":183.38343139028115,"scaled_rad":77.84457518704153},{"average":0.4093743362113203,"rel_min":0.12078783847391605,"rel_max":0.4093743362113203,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.41596666436604,"rel_min":0.12078783847391605,"rel_max":0.41596666436604,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.4229571081747816,"rel_min":0.12078783847391605,"rel_max":0.4229571081747816,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.4292109569864263,"rel_min":0.12078783847391605,"rel_max":0.4292109569864263,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.4326237461722062,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.4291334734613829,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":197.8174316625876,"scaled_rad":97.08990888345011},{"average":0.4009704134078362,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":180.20625676301484,"scaled_rad":73.60834235068646},{"average":0.36252955348062954,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":156.16807674348402,"scaled_rad":41.55743565797869},{"average":0.33559300426580585,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":139.32387449730564,"scaled_rad":19.098499329740832},{"average":0.3156164551995588,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":126.83196137328171,"scaled_rad":2.44261516437561},{"average":0.29816552663870743,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":115.91939170007257,"scaled_rad":-12.107477733236578},{"average":0.2792839545984657,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":104.11219933719215,"scaled_rad":-27.850400883743816},{"average":0.2610585707449615,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":92.71534040049822,"scaled_rad":-43.046212799335706},{"average":0.2450076856455043,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":82.67825834187127,"scaled_rad":-56.42898887750498},{"average":0.23590288572164966,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":76.98476397088486,"scaled_rad":-64.02031470548685},{"average":0.2225885394150467,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":68.65891866028142,"scaled_rad":-75.12144178629146},{"average":0.21266423982147337,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":62.45296747579115,"scaled_rad":-83.3960433656118},{"average":0.19577971412129624,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":51.894585871065544,"scaled_rad":-97.47388550524595},{"average":0.18929955961320477,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":47.842358087533846,"scaled_rad":-102.87685588328821},{"average":0.18810789439042933,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":47.0971754042553,"scaled_rad":-103.87043279432626},{"average":0.18617724735173044,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":45.889886047089504,"scaled_rad":-105.480151937214},{"average":0.1862234051743842,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":45.91874986679494,"scaled_rad":-105.44166684427341},{"average":0.18896146768029295,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":47.6309394366016,"scaled_rad":-103.15874741786453},{"average":0.19254755115722336,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":49.87342101341221,"scaled_rad":-100.16877198211705},{"average":0.1966195464948303,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":52.419757311545034,"scaled_rad":-96.77365691793996},{"average":0.20321684877127708,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":56.5452409782683,"scaled_rad":-91.2730120289756},{"average":0.21464278112591512,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":63.690206500680574,"scaled_rad":-81.7463913324259},{"average":0.2285506738476964,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":72.38721352840017,"scaled_rad":-70.15038196213311},{"average":0.23805236673485133,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":78.32889653300103,"scaled_rad":-62.22813795599863},{"average":0.24010735961099067,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":79.61394293386286,"scaled_rad":-60.51474275484952},{"average":0.2465079219450613,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":83.6163994320778,"scaled_rad":-55.17813409056295},{"average":0.23997547229379415,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":79.53146998505095,"scaled_rad":-60.624706686598756},{"average":0.22516305520423463,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":70.26883774431896,"scaled_rad":-72.97488300757473},{"average":0.23262858427986652,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":74.93724870601206,"scaled_rad":-66.75033505865059},{"average":0.22559845940593412,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":70.54110856764424,"scaled_rad":-72.61185524314102},{"average":0.2261609391483712,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":70.89284339698068,"scaled_rad":-72.14287547069243},{"average":0.22564890791861275,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":70.57265547975241,"scaled_rad":-72.56979269366344},{"average":0.22051985233014906,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":67.36530887514617,"scaled_rad":-76.84625483313845},{"average":0.21552387079133356,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":64.24117731743087,"scaled_rad":-81.01176357675884},{"average":0.21158914149014485,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":61.78067743659561,"scaled_rad":-84.29243008453919},{"average":0.20797988090283867,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":59.52370254323068,"scaled_rad":-87.3017299423591},{"average":0.2068489339534599,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":58.816488750064075,"scaled_rad":-88.24468166658124},{"average":0.2074419481128926,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":59.18731763228907,"scaled_rad":-87.7502431569479},{"average":0.21640383706174113,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":64.79144564283328,"scaled_rad":-80.2780724762223},{"average":0.2294834336028724,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":72.97049514468955,"scaled_rad":-69.37267314041395},{"average":0.24337845530059682,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":81.65945354930601,"scaled_rad":-57.787395267592004},{"average":0.2473719343671511,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":84.15669135532393,"scaled_rad":-54.45774485956811},{"average":0.2516035520926294,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":86.8028441430479,"scaled_rad":-50.92954114260279},{"average":0.2544030237378829,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":88.55343462139848,"scaled_rad":-48.59542050480202},{"average":0.2568486860032927,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":90.08277787527521,"scaled_rad":-46.55629616629973},{"average":0.2644711005336023,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":94.84929384318124,"scaled_rad":-40.200941542425014},{"average":0.26938710499043556,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":97.92341342151401,"scaled_rad":-36.10211543798131},{"average":0.2745056437541905,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":101.12418355186706,"scaled_rad":-31.834421930843916},{"average":0.26872259621561273,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":97.50787689126997,"scaled_rad":-36.656164144973374},{"average":0.2567217471032519,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":90.00339931463843,"scaled_rad":-46.66213424714876},{"average":0.25148758792784065,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":86.73032840135312,"scaled_rad":-51.02622879819583},{"average":0.2532946442921714,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":87.86033294010379,"scaled_rad":-49.51955607986163},{"average":0.25848380865830545,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":91.10526729953992,"scaled_rad":-45.19297693394678},{"average":0.2642199418687977,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":94.69223707573457,"scaled_rad":-40.41035056568725},{"average":0.2708051885162926,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":98.81018200946531,"scaled_rad":-34.91975732071292},{"average":0.27409435765395995,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":100.86699447400578,"scaled_rad":-32.17734070132563},{"average":0.2739010147641874,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":100.74609158060926,"scaled_rad":-32.33854455918765},{"average":0.2744370398520845,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":101.08128355035853,"scaled_rad":-31.891621932855287},{"average":0.3002446532292768,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":117.21952960963392,"scaled_rad":-10.373960520488112},{"average":0.302087943791795,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":118.37219243908208,"scaled_rad":-8.837076747890563},{"average":0.3041708681703594,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":119.6747052151702,"scaled_rad":-7.100393046439734},{"average":0.30356972615643973,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":119.29879375077353,"scaled_rad":-7.601608332301964},{"average":0.29992733387686454,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":117.02110065327314,"scaled_rad":-10.638532462302493},{"average":0.2860908907269673,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":108.36877310656722,"scaled_rad":-22.17496919124372},{"average":0.2652055468797856,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":95.3085643568397,"scaled_rad":-39.588580857547086},{"average":0.2602382829346487,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":92.2023907399166,"scaled_rad":-43.73014568011122},{"average":0.34152756355917796,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":143.03492583436724,"scaled_rad":24.046567779156305},{"average":0.32922064388433864,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":135.33905349462506,"scaled_rad":13.785404659500074},{"average":0.3257199959818724,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":133.14999725020635,"scaled_rad":10.866663000275139},{"average":0.3248280941839986,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":132.59226529473938,"scaled_rad":10.123020392985808},{"average":0.3262967411357324,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":133.51065265334074,"scaled_rad":11.34753687112098},{"average":0.33344108674087025,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":137.9782183140272,"scaled_rad":17.304291085369613},{"average":0.34248810527529244,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":143.63558031327204,"scaled_rad":24.84744041769605},{"average":0.3344379449023046,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":138.60158251513704,"scaled_rad":18.135443353516024},{"average":0.331956559834817,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":137.04990076132103,"scaled_rad":16.066534348428036},{"average":0.3236156711416999,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":131.8341021473542,"scaled_rad":9.112136196472278},{"average":0.31546026585712317,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":126.73429166615995,"scaled_rad":2.3123888882132633},{"average":0.3065116991537962,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":121.13849444053363,"scaled_rad":-5.148674079288497},{"average":0.29738726529218396,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":115.4327224011703,"scaled_rad":-12.75637013177294},{"average":0.2915526980804837,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":111.7841990009006,"scaled_rad":-17.62106799879922},{"average":0.2900326099720354,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":110.83364400120439,"scaled_rad":-18.888474665060812},{"average":0.30103939612930136,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":117.71650529998557,"scaled_rad":-9.711326266685916},{"average":0.3030486472063895,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":118.97294803271689,"scaled_rad":-8.03606928971081},{"average":0.3015910740236883,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":118.06148542174094,"scaled_rad":-9.25135277101208},{"average":0.30503326946330767,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":120.21398965282907,"scaled_rad":-6.381347129561249},{"average":0.3009761061969656,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":117.67692827726047,"scaled_rad":-9.764095630319389},{"average":0.29414487487443214,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":113.40516202132675,"scaled_rad":-15.459783971564349},{"average":0.2939928119017283,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":113.31007265238232,"scaled_rad":-15.586569796823596},{"average":0.2661377282711465,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":95.89148430553031,"scaled_rad":-38.811354259292926},{"average":0.27001681101884295,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":98.31718678919894,"scaled_rad":-35.57708428106808},{"average":0.26357430618088273,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":94.28850243185504,"scaled_rad":-40.9486634241933},{"average":0.2436816396340378,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":81.84904347003506,"scaled_rad":-57.534608706619935},{"average":0.23107094927140517,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":73.96321454525133,"scaled_rad":-68.04904727299822},{"average":0.22223966470077255,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":68.44075722471871,"scaled_rad":-75.41232370037505},{"average":0.2219029621566447,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":68.23020739872351,"scaled_rad":-75.693056801702},{"average":0.22180631591427036,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":68.1697717118839,"scaled_rad":-75.77363771748813},{"average":0.2190324998626085,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":66.43522441722985,"scaled_rad":-78.08636744369355},{"average":0.1967468712562356,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":52.49937716243808,"scaled_rad":-96.66749711674923},{"average":0.18992002792795426,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":48.23035484605087,"scaled_rad":-102.35952687193218},{"average":0.1801727034155026,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":42.13507129144791,"scaled_rad":-110.48657161140278},{"average":0.17216639284190186,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":37.12849403940586,"scaled_rad":-117.16200794745885},{"average":0.1630245253980853,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":31.411820277547086,"scaled_rad":-124.78423962993722},{"average":0.1470652524257238,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":21.432025928073088,"scaled_rad":-138.09063209590255},{"average":0.14631580781042852,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":20.96337656353623,"scaled_rad":-138.71549791528503},{"average":0.14313869367151458,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":18.976635326258197,"scaled_rad":-141.36448623165575},{"average":0.14875864236511158,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":22.49095156822132,"scaled_rad":-136.67873124237158},{"average":0.16274678209037693,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":31.23813936503482,"scaled_rad":-125.01581417995357},{"average":0.18321678031384117,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":44.0386204996114,"scaled_rad":-107.94850600051814},{"average":0.18277344931185577,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":43.761392819113496,"scaled_rad":-108.31814290784867},{"average":0.18207511657699324,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":43.32470518970186,"scaled_rad":-108.90039308039752},{"average":0.18375149921160122,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":44.37299567094059,"scaled_rad":-107.50267243874589},{"average":0.21410718210350532,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":63.35528096198681,"scaled_rad":-82.19295871735093},{"average":0.2209530392040809,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":67.63619313937413,"scaled_rad":-76.48507581416783},{"average":0.22624645095657842,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":70.946316400534,"scaled_rad":-72.07157813262133},{"average":0.2297052002258544,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":73.10917221943915,"scaled_rad":-69.18777037408114},{"average":0.22836801658416145,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":72.27299266572847,"scaled_rad":-70.30267644569538},{"average":0.2266659498829907,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":71.208641195822,"scaled_rad":-71.72181173890401},{"average":0.2284026586687095,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":72.29465536178144,"scaled_rad":-70.27379285095809},{"average":0.2349391459272458,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":76.38210964125396,"scaled_rad":-64.82385381166138},{"average":0.23900521368006447,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":78.92473924940921,"scaled_rad":-61.433681000787715},{"average":0.2464174559847256,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":83.5598284541052,"scaled_rad":-55.253562061193065},{"average":0.25780210019042504,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":90.67897530443942,"scaled_rad":-45.76136626074745},{"average":0.27495093488671485,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":101.40263695860641,"scaled_rad":-31.463150721858113},{"average":0.27717565556983026,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":102.79381905950558,"scaled_rad":-29.60824125399256},{"average":0.2807472695058758,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":105.02725241446971,"scaled_rad":-26.63033011404039},{"average":0.2819764650341215,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":105.79590388176584,"scaled_rad":-25.605461490978882},{"average":0.2795898160372268,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":104.30346332920207,"scaled_rad":-27.595382227730568},{"average":0.2550797064794561,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":88.97658388467845,"scaled_rad":-48.03122148709541},{"average":0.2575623984744404,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":90.52908289800678,"scaled_rad":-45.961222802657645},{"average":0.31413437237968145,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":125.90517217825514,"scaled_rad":1.2068962376735328},{"average":0.350140839136894,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":148.4210558347637,"scaled_rad":31.2280744463516},{"average":0.36507435557327117,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":157.75941499483525,"scaled_rad":43.67921999311366},{"average":0.37202055600705886,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":162.103074756748,"scaled_rad":49.47076634233065},{"average":0.38040248149132666,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":167.34453486150804,"scaled_rad":56.45937981534402},{"average":0.3877486364129218,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":171.9382977167371,"scaled_rad":62.58439695564948},{"average":0.3986634877489374,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":178.7636695163899,"scaled_rad":71.68489268851988},{"average":0.4110272597051687,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":186.49509322978005,"scaled_rad":81.99345763970672},{"average":0.4213226626683312,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":192.93310607004315,"scaled_rad":90.57747476005753},{"average":0.4173331349525306,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":190.4383391577804,"scaled_rad":87.25111887704054},{"average":0.3994884780388048,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":179.27955977326113,"scaled_rad":72.37274636434816},{"average":0.37214216931022476,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":162.17912306783697,"scaled_rad":49.57216409044926},{"average":0.3669057918929666,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":158.9046650238542,"scaled_rad":45.20622003180557},{"average":0.3630445821487802,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":156.4901390455155,"scaled_rad":41.98685206068731},{"average":0.35853641626450933,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":153.67105270641636,"scaled_rad":38.228070275221825},{"average":0.3560044724454234,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":152.08775510491162,"scaled_rad":36.11700680654883},{"average":0.35060300736773803,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":148.71006297855226,"scaled_rad":31.613417304736316},{"average":0.33444829386925057,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":138.60805402308284,"scaled_rad":18.144072030777124},{"average":0.31832225372504697,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":128.52397534423432,"scaled_rad":4.6986337923124495},{"average":0.30322640846730764,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":119.08410728353854,"scaled_rad":-7.887856955281933},{"average":0.27549850631866835,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":101.7450491907931,"scaled_rad":-31.006601078942538},{"average":0.2474917691131371,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":84.23162748323733,"scaled_rad":-54.35783002235023},{"average":0.21599202960564032,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":64.53393054608773,"scaled_rad":-80.62142593854969},{"average":0.19524689126911957,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":51.56139635180409,"scaled_rad":-97.91813819759454},{"average":0.2101474322457967,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":60.8791350044781,"scaled_rad":-85.49448666069587},{"average":0.2602597848868909,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":92.21583653170555,"scaled_rad":-43.712217957725954},{"average":0.27137860583522555,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":99.16875642130024,"scaled_rad":-34.44165810493301},{"average":0.27285738710347,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":100.09348106073038,"scaled_rad":-33.208691919026165},{"average":0.2781137058084829,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":103.38040896792062,"scaled_rad":-28.826121376105846},{"average":0.285878956673318,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":108.23624462142045,"scaled_rad":-22.351673838106052},{"average":0.2917080956978916,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":111.88137361949474,"scaled_rad":-17.491501840673692},{"average":0.29368692757052617,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":113.11879434506778,"scaled_rad":-15.841607539909631},{"average":0.3059433836375039,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":120.78311033324788,"scaled_rad":-5.6225195556694985},{"average":0.33243210420248587,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":137.34727238981594,"scaled_rad":16.46302985308793},{"average":0.34967041210899674,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":148.12688422663476,"scaled_rad":30.83584563551298},{"average":0.3472596315048334,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":146.6193534830403,"scaled_rad":28.825804644053733},{"average":0.3367213902110275,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":140.029486820602,"scaled_rad":20.03931576080265},{"average":0.3294092676291863,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":135.45700537039457,"scaled_rad":13.942673827192749},{"average":0.33068870935886185,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":136.25707723873154,"scaled_rad":15.009436318308701},{"average":0.33343711549876137,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":137.9757349816331,"scaled_rad":17.300979975510813},{"average":0.3367102772864405,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":140.02253758787745,"scaled_rad":20.030050117169907},{"average":0.3362565500583578,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":139.7388088469214,"scaled_rad":19.651745129228516},{"average":0.32421286624722084,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":132.20754549592857,"scaled_rad":9.610060661238123},{"average":0.31531254759295657,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":126.64191916895429,"scaled_rad":2.189225558605699},{"average":0.3152163525216717,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":126.58176561242833,"scaled_rad":2.1090208165711033},{"average":0.3149813274375913,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":126.43479763900295,"scaled_rad":1.913063518670583},{"average":0.3131233820897585,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":125.2729707490159,"scaled_rad":0.36396099868784404},{"average":0.3127257041859886,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":125.02429126945398,"scaled_rad":0.0323883592719767},{"average":0.31841546758608025,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":128.58226466388214,"scaled_rad":4.7763528851761805},{"average":0.32956718138949426,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":135.55575340581913,"scaled_rad":14.07433787442551},{"average":0.32372050246761763,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":131.89965620334743,"scaled_rad":9.199541604463235},{"average":0.3030767131441852,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":118.9904984742634,"scaled_rad":-8.012668700982147},{"average":0.2929360836808816,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":112.64926997386434,"scaled_rad":-16.467640034847562},{"average":0.28507309911972406,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":107.73231861716167,"scaled_rad":-23.023575177117777},{"average":0.27397150118564,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":100.79016877583902,"scaled_rad":-32.279774965547986},{"average":0.26652273693200784,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":96.13224134156927,"scaled_rad":-38.490344877907646},{"average":0.25887505142492295,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":91.34992270197108,"scaled_rad":-44.86676973070523},{"average":0.25257437690000595,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":87.40992893593068,"scaled_rad":-50.12009475209244},{"average":0.24739612733285865,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":84.17181991555867,"scaled_rad":-54.43757344592177},{"average":0.23051601904324173,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":73.61620064524669,"scaled_rad":-68.5117324730044},{"average":0.22310591350058903,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":68.98244761955178,"scaled_rad":-74.69006984059764},{"average":0.22320162333688887,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":69.04229774462628,"scaled_rad":-74.61026967383162},{"average":0.2281630756453383,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":72.14483717726823,"scaled_rad":-70.47355043030903},{"average":0.24141431045854275,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":80.431217048168,"scaled_rad":-59.42504393577602},{"average":0.24482796293936332,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":82.56587254269833,"scaled_rad":-56.57883660973556},{"average":0.2450706657286963,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":82.71764160697722,"scaled_rad":-56.376477857363696},{"average":0.23492740000015758,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":76.37476457378207,"scaled_rad":-64.83364723495724},{"average":0.2192918490172706,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":66.59740293455454,"scaled_rad":-77.87012942059394},{"average":0.22090109027635838,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":67.60370797440174,"scaled_rad":-76.52838936746436},{"average":0.2262031480021546,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":70.91923781239137,"scaled_rad":-72.1076829168115},{"average":0.23418660168770228,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":75.91152199214665,"scaled_rad":-65.45130401047115},{"average":0.24399556808833675,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":82.04535199986455,"scaled_rad":-57.272864000180604},{"average":0.2769555191790804,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":102.65616141605756,"scaled_rad":-29.791784778589943},{"average":0.26743019001596435,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":96.69969796539954,"scaled_rad":-37.73373604613394},{"average":0.2517325275956622,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":86.88349625035985,"scaled_rad":-50.8220049995202},{"average":0.23512230223402103,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":76.49664257007795,"scaled_rad":-64.67114323989607},{"average":0.22837036042975814,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":72.27445834007857,"scaled_rad":-70.30072221322858},{"average":0.22674058845140418,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":71.25531484847494,"scaled_rad":-71.65958020203341},{"average":0.22042838279331367,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":67.30811033180152,"scaled_rad":-76.922519557598},{"average":0.22864039834153835,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":72.44332084595807,"scaled_rad":-70.07557220538925},{"average":0.2659483361085491,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":95.77305191594732,"scaled_rad":-38.96926411207025},{"average":0.293623638254389,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":113.07921770766946,"scaled_rad":-15.894376389774067},{"average":0.30018825312204,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":117.18426099354558,"scaled_rad":-10.420985341939257},{"average":0.29159825721450944,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":111.81268844331471,"scaled_rad":-17.583082075580393},{"average":0.285697122346908,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":108.12253836510229,"scaled_rad":-22.503282179863618},{"average":0.28614581453140436,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":108.40311854787409,"scaled_rad":-22.129175269501218},{"average":0.29265432867172186,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":112.47308042856251,"scaled_rad":-16.702559428583328},{"average":0.29616681188658006,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":114.6695376356653,"scaled_rad":-13.773949819112943},{"average":0.29353289275823474,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":113.02247192787556,"scaled_rad":-15.970037429499257},{"average":0.29963451173569033,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":116.83799051066501,"scaled_rad":-10.882679319113322},{"average":0.3443497143660837,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":144.79969824755278,"scaled_rad":26.39959766340371},{"average":0.3994670777146391,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":179.26617753244378,"scaled_rad":72.35490337659172},{"average":0.4296451971090738,"rel_min":0.12078783847391605,"rel_max":0.4326237461722062,"scaled_dist":198.13742723986493,"scaled_rad":97.51656965315323},{"average":0.4411991630902009,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.4367432137523329,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":197.28814166626336,"scaled_rad":96.38418888835116},{"average":0.43418269788843267,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":195.72983034858916,"scaled_rad":94.30644046478557},{"average":0.43187899599543106,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":194.32781414434515,"scaled_rad":92.43708552579358},{"average":0.431252598973612,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":193.94659347618995,"scaled_rad":91.92879130158664},{"average":0.42276284553352544,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":188.7797913264861,"scaled_rad":85.03972176864815},{"average":0.4025509721985375,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":176.478992329938,"scaled_rad":68.63865643991736},{"average":0.3727958446905847,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":158.370238305718,"scaled_rad":44.49365107429071},{"average":0.3601416460953133,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":150.668985146102,"scaled_rad":34.22531352813601},{"average":0.3571723525764042,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":148.8618947229383,"scaled_rad":31.815859630584413},{"average":0.35416325433782087,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":147.03057943710547,"scaled_rad":29.37410591614065},{"average":0.35296291720304196,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":146.30006299371135,"scaled_rad":28.400083991615162},{"average":0.3525635426931873,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":146.05700657392057,"scaled_rad":28.076008765227442},{"average":0.3497061512661779,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":144.31801894939102,"scaled_rad":25.757358599188052},{"average":0.3343068145492599,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":134.94609470983693,"scaled_rad":13.261459613115903},{"average":0.3172107989646796,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":124.5415840609529,"scaled_rad":-0.6112212520627907},{"average":0.3114753720587236,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":121.05104499214569,"scaled_rad":-5.265273343805717},{"average":0.31224912464747673,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":121.52194518578757,"scaled_rad":-4.637406418949894},{"average":0.312146849741567,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":121.459701422474,"scaled_rad":-4.720398103367984},{"average":0.3076551872730991,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":118.72610833739763,"scaled_rad":-8.365188883469813},{"average":0.2558317827459082,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":87.18676154650517,"scaled_rad":-50.417651271326434},{"average":0.2695909379449602,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":95.56048325259114,"scaled_rad":-39.252688996545146},{"average":0.2784591826911532,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":100.95763245628613,"scaled_rad":-32.05649005828515},{"average":0.2747583709094884,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":98.70534534287378,"scaled_rad":-35.059539542834955},{"average":0.2693629022229646,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":95.42170237197654,"scaled_rad":-39.43773017069795},{"average":0.2655193878644368,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":93.08256750896729,"scaled_rad":-42.55657665471027},{"average":0.2607148430064784,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":90.15855647900798,"scaled_rad":-46.45525802798933},{"average":0.25461433671006684,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":86.44583275045413,"scaled_rad":-51.405556332727826},{"average":0.24372335734588454,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":79.81766198102557,"scaled_rad":-60.243117358632574},{"average":0.23264490265627297,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":73.07539509310777,"scaled_rad":-69.23280654252297},{"average":0.2261216567880907,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":69.10539513814709,"scaled_rad":-74.52613981580387},{"average":0.22532236055086177,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":68.61894926596608,"scaled_rad":-75.17473431204522},{"average":0.22979689330614933,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":71.34211733228207,"scaled_rad":-71.54384355695723},{"average":0.2416145257482061,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":78.53424242012282,"scaled_rad":-61.95434343983622},{"average":0.2502934967871846,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":83.81620102326389,"scaled_rad":-54.911731968981485},{"average":0.24910554056798026,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":83.0932195149721,"scaled_rad":-55.87570731337051},{"average":0.24112949766484754,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":78.23905785893983,"scaled_rad":-62.347922854746884},{"average":0.22944691191999195,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":71.12912120805825,"scaled_rad":-71.82783838925566},{"average":0.2057122842075131,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":56.68439953826074,"scaled_rad":-91.087467282319},{"average":0.19512709516443705,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":50.2423305325171,"scaled_rad":-99.67689262331052},{"average":0.19337981042051297,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":49.17894575523674,"scaled_rad":-101.09473899301767},{"average":0.19985657821054795,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":53.12065949013458,"scaled_rad":-95.83912067982055},{"average":0.20655753084658518,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":57.198810490546656,"scaled_rad":-90.40158601260445},{"average":0.21573813354312363,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":62.78605846927808,"scaled_rad":-82.95192204096254},{"average":0.21720062779683258,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":63.67612182710345,"scaled_rad":-81.76517089719539},{"average":0.22211140343179442,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":66.66478413473055,"scaled_rad":-77.78028782035926},{"average":0.22999703648369668,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":71.46392301336552,"scaled_rad":-71.38143598217931},{"average":0.2312562570383447,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":72.23027547750024,"scaled_rad":-70.35963269666632},{"average":0.22556748236095311,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":68.76812861543212,"scaled_rad":-74.97582851275716},{"average":0.2236419858523162,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":67.59628545528835,"scaled_rad":-76.53828605961552},{"average":0.22472665850880344,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":68.25640933907528,"scaled_rad":-75.65812088123296},{"average":0.22820900094119567,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":70.37573759668197,"scaled_rad":-72.8323498710907},{"average":0.2384934262909855,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":76.63476400784486,"scaled_rad":-64.4869813228735},{"average":0.24673172751004643,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":81.6485341660649,"scaled_rad":-57.80195444524678},{"average":0.251245997312665,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":84.39588591015455,"scaled_rad":-54.138818786460604},{"average":0.25242232729038366,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":85.11179177250146,"scaled_rad":-53.18427763666472},{"average":0.2580141896298661,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":88.51495849110893,"scaled_rad":-48.64672201185475},{"average":0.265674881194105,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":93.17719961762202,"scaled_rad":-42.430400509837284},{"average":0.2841085198512108,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":104.39577793235658,"scaled_rad":-27.472296090191207},{"average":0.2922301142220478,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":109.3385211522157,"scaled_rad":-20.881971797045708},{"average":0.2971696468414205,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":112.34468475124325,"scaled_rad":-16.87375366500899},{"average":0.2995409445811949,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":113.78783929582674,"scaled_rad":-14.949547605564334},{"average":0.2968684333378067,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":112.16136840537118,"scaled_rad":-17.118175459505068},{"average":0.30142950925848805,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":114.93720601222853,"scaled_rad":-13.417058650361952},{"average":0.3058756226673722,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":117.64307827117786,"scaled_rad":-9.809228971762849},{"average":0.31150918375940007,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":121.07162254707389,"scaled_rad":-5.2378366039014566},{"average":0.31682982504155294,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":124.30972610431338,"scaled_rad":-0.9203651942488023},{"average":0.3212152816243145,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":126.97868306038423,"scaled_rad":2.6382440805123224},{"average":0.3271168322461551,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":130.5703238135227,"scaled_rad":7.427098418030255},{"average":0.3312692060683791,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":133.09742829805788,"scaled_rad":10.796571064077199},{"average":0.32238116595558647,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":127.68823177833387,"scaled_rad":3.5843090377785245},{"average":0.3048444815279935,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":117.01553327906606,"scaled_rad":-10.645955627911889},{"average":0.28332099804731103,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":103.91649789459775,"scaled_rad":-28.11133614053631},{"average":0.28257845247045477,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":103.46459006125143,"scaled_rad":-28.7138799183314},{"average":0.2907962608466467,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":108.46588842446161,"scaled_rad":-22.045482100717834},{"average":0.28457777753155783,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":104.681364741054,"scaled_rad":-27.09151367859465},{"average":0.2707697332634608,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":96.27788950339361,"scaled_rad":-38.296147328808516},{"average":0.2585187748130133,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":88.82204536087401,"scaled_rad":-48.237272852167976},{"average":0.25715956052405586,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":87.99483743785785,"scaled_rad":-49.34021674952285},{"average":0.24785096311832175,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":82.32969281073846,"scaled_rad":-56.89374291901538},{"average":0.24009827282980412,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":77.61146193025571,"scaled_rad":-63.18471742632572},{"average":0.23816322132262432,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":76.43380366754621,"scaled_rad":-64.7549284432717},{"average":0.23056283461422614,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":71.80826363735991,"scaled_rad":-70.92231515018678},{"average":0.22247195045337767,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":66.884210427771,"scaled_rad":-77.48771942963866},{"average":0.2108332415984478,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":59.80097693273374,"scaled_rad":-86.932030756355},{"average":0.20717330234071457,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":57.57356453988942,"scaled_rad":-89.9019139468141},{"average":0.20720099141333084,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":57.590415907944646,"scaled_rad":-89.8794454560738},{"average":0.19145687911020692,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":48.008663756125955,"scaled_rad":-102.65511499183205},{"average":0.19566553984870236,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":50.57002404821127,"scaled_rad":-99.2399679357183},{"average":0.22535440293629924,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":68.63845002851806,"scaled_rad":-75.14873329530926},{"average":0.22837731128190622,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":70.47817004496656,"scaled_rad":-72.69577327337791},{"average":0.2917515481261373,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":109.04726930955906,"scaled_rad":-21.270307587254564},{"average":0.2879356570940997,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":106.72494580199127,"scaled_rad":-24.36673893067831},{"average":0.26865052754208274,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":94.98815632631687,"scaled_rad":-40.01579156491083},{"average":0.25908348382732205,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":89.1657231566638,"scaled_rad":-47.77903579111492},{"average":0.24974908238950624,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":83.48487438343798,"scaled_rad":-55.35350082208268},{"average":0.24032940439398376,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":77.75212691788998,"scaled_rad":-62.997164109480025},{"average":0.24373225554570338,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":79.82307736066844,"scaled_rad":-60.23589685244208},{"average":0.25486960262923836,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":86.60118573087097,"scaled_rad":-51.19841902550537},{"average":0.2708648050096044,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":96.33574947610276,"scaled_rad":-38.219000698529655},{"average":0.287752528118694,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":106.61349484049084,"scaled_rad":-24.515340212678865},{"average":0.29304484849395024,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":109.83436249993098,"scaled_rad":-20.220850000092014},{"average":0.29256601016451883,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":109.54294497793501,"scaled_rad":-20.609406696086637},{"average":0.29121841080458094,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":108.72280581617913,"scaled_rad":-21.702925578427795},{"average":0.28018123851659205,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":102.0056630974088,"scaled_rad":-30.659115870121582},{"average":0.2521135875558642,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":84.92389501728098,"scaled_rad":-53.434806643625336},{"average":0.21660476821845256,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":63.31348602475392,"scaled_rad":-82.24868530032809},{"average":0.19131661840612305,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":47.9233021125289,"scaled_rad":-102.76893051662813},{"average":0.18857348653305026,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":46.25385202087004,"scaled_rad":-104.99486397217328},{"average":0.19011441612209395,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":47.19165055287689,"scaled_rad":-103.74446592949748},{"average":0.2066067403772843,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":57.22875905275125,"scaled_rad":-90.36165459633166},{"average":0.21009926778116841,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":59.35428580987508,"scaled_rad":-87.52761892016656},{"average":0.2154238690659176,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":62.59479939587122,"scaled_rad":-83.20693413883836},{"average":0.21330410633961877,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":61.30472722965396,"scaled_rad":-84.92703036046137},{"average":0.20764085611200514,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":57.858114361937204,"scaled_rad":-89.52251418408372},{"average":0.205744738902962,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":56.704151229684605,"scaled_rad":-91.06113169375385},{"average":0.20747627116024223,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":57.75794915825034,"scaled_rad":-89.65606778899954},{"average":0.21391910495008118,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":61.67901090762255,"scaled_rad":-84.42798545650327},{"average":0.22515821326779176,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":68.51905042426007,"scaled_rad":-75.30793276765323},{"average":0.23824841695423363,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":76.48565310883457,"scaled_rad":-64.68579585488723},{"average":0.24190634071238135,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":78.71183888330127,"scaled_rad":-61.717548155598294},{"average":0.25367108487503587,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":85.87177654925303,"scaled_rad":-52.17096460099596},{"average":0.26462824972790183,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":92.54022732535356,"scaled_rad":-43.27969689952859},{"average":0.2690314105270576,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":95.21995893865912,"scaled_rad":-39.70672141512115},{"average":0.2728023360285795,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":97.51491675164337,"scaled_rad":-36.64677766447549},{"average":0.2900128814192273,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":107.98912940687781,"scaled_rad":-22.68116079082958},{"average":0.29729840870095636,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":112.42304828174444,"scaled_rad":-16.769268957674058},{"average":0.2941481772548352,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":110.50584035306314,"scaled_rad":-19.32554619591582},{"average":0.280767302695673,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":102.36233749104221,"scaled_rad":-30.18355001194371},{"average":0.2604730572987278,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":90.01140745714419,"scaled_rad":-46.65145672380774},{"average":0.24994687235676774,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":83.60524791786963,"scaled_rad":-55.1930027761738},{"average":0.24307306870655315,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":79.42190104835103,"scaled_rad":-60.77079860219861},{"average":0.24150574597788144,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":78.46803984367297,"scaled_rad":-62.04261354176937},{"average":0.2459068756250621,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":81.14653531267055,"scaled_rad":-58.47128624977259},{"average":0.24423231066141585,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":80.12740726436553,"scaled_rad":-59.83012364751262},{"average":0.24238998978731105,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":79.00618418999177,"scaled_rad":-61.325087746677625},{"average":0.24371080751762958,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":79.81002424689538,"scaled_rad":-60.25330100413949},{"average":0.2479556361765273,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":82.39339607208395,"scaled_rad":-56.80880523722141},{"average":0.2469378134076563,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":81.77395654332342,"scaled_rad":-57.63472460890209},{"average":0.23777691662897554,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":76.19870144276773,"scaled_rad":-65.06839807630969},{"average":0.23553114479078638,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":74.83194104823008,"scaled_rad":-66.89074526902657},{"average":0.23587357929072544,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":75.04034419243256,"scaled_rad":-66.61287441008992},{"average":0.24319663606249967,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":79.49710324177671,"scaled_rad":-60.67052901096439},{"average":0.2536516805068827,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":85.85996719203258,"scaled_rad":-52.18671041062322},{"average":0.28169190263403443,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":102.92504228369083,"scaled_rad":-29.433276955078895},{"average":0.28858143443312556,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":107.11796119013603,"scaled_rad":-23.842718413151943},{"average":0.3009002484830899,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":114.61510175662445,"scaled_rad":-13.846530991167384},{"average":0.3197974854177356,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":126.11582260870082,"scaled_rad":1.4877634782677944},{"average":0.33893064629990566,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":137.76012505803297,"scaled_rad":17.0135000773773},{"average":0.34438022337576935,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":141.0766980008465,"scaled_rad":21.435597334462017},{"average":0.34207171195478664,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":139.67175475288008,"scaled_rad":19.562339670506788},{"average":0.3496584366362628,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":144.28898017292272,"scaled_rad":25.718640230563665},{"average":0.3677247869699243,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":155.28402948737178,"scaled_rad":40.37870598316238},{"average":0.3820945349645513,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":164.02935352455424,"scaled_rad":52.039138032739004},{"average":0.40095385903147635,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":175.50700088129025,"scaled_rad":67.34266784172033},{"average":0.41005796083503526,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":181.04769097337746,"scaled_rad":74.73025463116997},{"average":0.41092181563261654,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":181.57342671548983,"scaled_rad":75.43123562065313},{"average":0.4113747489453463,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":181.8490786328747,"scaled_rad":75.79877151049962},{"average":0.4116138596489387,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":181.9945996666782,"scaled_rad":75.99279955557097},{"average":0.40925574307622065,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":180.5594670844241,"scaled_rad":74.07928944589887},{"average":0.40268959437159046,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":176.5633567754759,"scaled_rad":68.75114236730124},{"average":0.3973829458105977,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":173.33376908648637,"scaled_rad":64.4450254486485},{"average":0.39616165860433994,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":172.59050258207841,"scaled_rad":63.45400344277127},{"average":0.38908113306216935,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":168.28134627377142,"scaled_rad":57.70846169836193},{"average":0.38829644040807204,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":167.80378803598998,"scaled_rad":57.071717381319985},{"average":0.38496078834386543,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":165.7737344687534,"scaled_rad":54.364979291671204},{"average":0.37864369234390194,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":161.92919582309818,"scaled_rad":49.23892776413092},{"average":0.36743949821064426,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":155.1104048249906,"scaled_rad":40.14720643332083},{"average":0.3531836564065424,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":146.43440326627862,"scaled_rad":28.5792043550382},{"average":0.3467714259830805,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":142.5319665029323,"scaled_rad":23.375955337243113},{"average":0.3418300665920467,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":139.52469114396825,"scaled_rad":19.36625485862436},{"average":0.33959664589157923,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":138.16544756194844,"scaled_rad":17.55393008259793},{"average":0.3394798883999431,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":138.09438980237545,"scaled_rad":17.45918640316728},{"average":0.3294455331550888,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":131.98755423690386,"scaled_rad":9.316738982538482},{"average":0.30801154877854525,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":118.94298735578195,"scaled_rad":-8.076016858957388},{"average":0.28848236594906174,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":107.05766883181947,"scaled_rad":-23.92310822424068},{"average":0.2754966252220051,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":99.15464154397763,"scaled_rad":-34.46047794136314},{"average":0.28352908304440044,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":104.04313690924879,"scaled_rad":-27.942484121001627},{"average":0.31506634933882144,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":123.23648762735112,"scaled_rad":-2.351349830198501},{"average":0.3196614152951674,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":126.03301132251242,"scaled_rad":1.377348430016582},{"average":0.32828777459542113,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":131.28295080440796,"scaled_rad":8.377267739210623},{"average":0.332040910625975,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":133.56708207484436,"scaled_rad":11.422776099792515},{"average":0.33370739921213755,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":134.5812948985979,"scaled_rad":12.775059864797214},{"average":0.3361771709857707,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":136.08438002342993,"scaled_rad":14.779173364573268},{"average":0.3296957510186062,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":132.13983500739263,"scaled_rad":9.519780009856873},{"average":0.31356612361622277,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":122.32346117219357,"scaled_rad":-3.568718437075205},{"average":0.2883689187456316,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":106.98862568955423,"scaled_rad":-24.015165747261022},{"average":0.2585294832363024,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":88.82856242934494,"scaled_rad":-48.22858342754007},{"average":0.23137671742023028,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":72.303586789127,"scaled_rad":-70.26188428116399},{"average":0.21505142997425816,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":62.3681356755406,"scaled_rad":-83.50915243261252},{"average":0.20913245000514977,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":58.76588754851708,"scaled_rad":-88.31214993531056},{"average":0.20418981879428513,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":55.75783816926109,"scaled_rad":-92.3228824409852},{"average":0.20029861135918228,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":53.38967764698943,"scaled_rad":-95.48042980401408},{"average":0.1948960772517712,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":50.10173471236689,"scaled_rad":-99.86435371684414},{"average":0.18653424746028596,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":45.01278596409051,"scaled_rad":-106.64961871454598},{"average":0.17917541595541428,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":40.53425467257497,"scaled_rad":-112.62099376990005},{"average":0.18327449830034856,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":43.02892635192159,"scaled_rad":-109.29476486410454},{"average":0.1841768202293672,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":43.578072910238006,"scaled_rad":-108.56256945301598},{"average":0.18854974151737294,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":46.23940097716045,"scaled_rad":-105.01413203045271},{"average":0.19258457036375146,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":48.69496844496469,"scaled_rad":-101.74004207338041},{"average":0.1975193631176151,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":51.698247396343234,"scaled_rad":-97.73567013820902},{"average":0.20697699764006122,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":57.45409492790474,"scaled_rad":-90.06120676279367},{"average":0.22583013930183454,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":68.92797971786496,"scaled_rad":-74.76269370951337},{"average":0.25859628755697783,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":88.86921905266281,"scaled_rad":-48.17437459644958},{"average":0.27052455124312214,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":96.12867351040927,"scaled_rad":-38.49510198612096},{"average":0.2852740136834711,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":105.10508899545006,"scaled_rad":-26.526548006066577},{"average":0.3057645265446091,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":117.57546597949388,"scaled_rad":-9.899378694008135},{"average":0.3342353838860341,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":134.90262252811638,"scaled_rad":13.203496704155185},{"average":0.3505760174831031,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":144.8474131975611,"scaled_rad":26.463217596748137},{"average":0.3523496365426539,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":145.92682484765365,"scaled_rad":27.902433130204912},{"average":0.348529145685932,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":143.60170192026354,"scaled_rad":24.80226922701806},{"average":0.3407640264362266,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":138.87590686446794,"scaled_rad":18.501209152623943},{"average":0.36663151920815423,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":154.6186746850705,"scaled_rad":39.49156624676067},{"average":0.35618353731443775,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":148.26010895174446,"scaled_rad":31.01347860232596},{"average":0.35347564928497827,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":146.61210800678109,"scaled_rad":28.816144009041494},{"average":0.36443248354188945,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":153.28035758458984,"scaled_rad":37.7071434461198},{"average":0.37064275266497104,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":157.05988217053002,"scaled_rad":42.74650956070673},{"average":0.3699601198818801,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":156.6444368273851,"scaled_rad":42.192582436513476},{"average":0.3611054394191297,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":151.25554274786364,"scaled_rad":35.00739033048487},{"average":0.3510929673541561,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":145.16202512638748,"scaled_rad":26.882700168516664},{"average":0.344245440834386,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":140.9946703271954,"scaled_rad":21.32622710292719},{"average":0.33877394417525597,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":137.66475728555088,"scaled_rad":16.88634304740117},{"average":0.3248277190279305,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":129.17718617056212,"scaled_rad":5.569581560749498},{"average":0.3172388440096479,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":124.55865207119061,"scaled_rad":-0.5884639050791804},{"average":0.3059348902625727,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":117.67914809822886,"scaled_rad":-9.76113586902818},{"average":0.30102231125966666,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":114.68938827399701,"scaled_rad":-13.7474823013373},{"average":0.3002873723370281,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":114.24210979504143,"scaled_rad":-14.343853606611418},{"average":0.29787164394307203,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":112.77191507771809,"scaled_rad":-16.304113229709202},{"average":0.2973457451862691,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":112.45185692216013,"scaled_rad":-16.730857437119823},{"average":0.29849732383562805,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":113.15269930622354,"scaled_rad":-15.796400925035272},{"average":0.29498990970241823,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":111.01811259398737,"scaled_rad":-18.642516541350176},{"average":0.29185770770251623,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":109.11187725504502,"scaled_rad":-21.18416365993997},{"average":0.2921815350761308,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":109.30895623760117,"scaled_rad":-20.921391683198436},{"average":0.29297722079266486,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":109.79320477316698,"scaled_rad":-20.27572696911068},{"average":0.30114192636878967,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":114.76218515877292,"scaled_rad":-13.65041978830277},{"average":0.3082974877073101,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":119.11700770657922,"scaled_rad":-7.843989724561027},{"average":0.31848919296808875,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":125.31960534644688,"scaled_rad":0.42614046192917954},{"average":0.3524987772393085,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":146.0175907900949,"scaled_rad":28.023454386793247},{"average":0.3561120109991112,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":148.21657855685166,"scaled_rad":30.95543807580222},{"average":0.350836858864653,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":145.00615936379958,"scaled_rad":26.674879151732796},{"average":0.34147409489637753,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":139.30804936097692,"scaled_rad":19.07739914796926},{"average":0.3388694365487467,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":137.72287324900188,"scaled_rad":16.96383099866918},{"average":0.3341753621700949,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":134.8660937486728,"scaled_rad":13.154791664897061},{"average":0.3287847293366091,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":131.58539384273598,"scaled_rad":8.780525123648005},{"average":0.32328389382455497,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":128.23762538874905,"scaled_rad":4.31683385166545},{"average":0.30321498088264615,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":116.02383104687043,"scaled_rad":-11.968225270839412},{"average":0.2825822991392628,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":103.46693111588945,"scaled_rad":-28.71075851214738},{"average":0.27972150102841176,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":101.72587020836995,"scaled_rad":-31.032173055506718},{"average":0.27779812209496474,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":100.55531578907367,"scaled_rad":-32.5929122812351},{"average":0.27603180260175136,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":99.48034660192309,"scaled_rad":-34.026204530769206},{"average":0.27866090137709865,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":101.08039698031307,"scaled_rad":-31.892804026249223},{"average":0.28402956628897785,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":104.34772736905687,"scaled_rad":-27.536363507924165},{"average":0.29141661116418566,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":108.84342911240378,"scaled_rad":-21.542094516794947},{"average":0.300671949244141,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":114.47616050151011,"scaled_rad":-14.031785997986503},{"average":0.30706869140138915,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":118.36917121877237,"scaled_rad":-8.841105041636837},{"average":0.30354596566996805,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":116.22526597931255,"scaled_rad":-11.699645360916577},{"average":0.30311587737608936,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":115.96351737411958,"scaled_rad":-12.04864350117387},{"average":0.29854430325062664,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":113.18129063624502,"scaled_rad":-15.758279151673293},{"average":0.2945564830543773,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":110.75433229074997,"scaled_rad":-18.994223612333343},{"average":0.28142697877055384,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":102.76381154866428,"scaled_rad":-29.64825126844761},{"average":0.26594714930979535,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":93.34290001108722,"scaled_rad":-42.2094666518837},{"average":0.25024564443418196,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":83.78707842952694,"scaled_rad":-54.950562093964066},{"average":0.24159929260294705,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":78.52497163879488,"scaled_rad":-61.966704481606826},{"average":0.22965182486035549,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":71.2538297320742,"scaled_rad":-71.6615603572344},{"average":0.21411028128525575,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":61.79535943370441,"scaled_rad":-84.27285408839411},{"average":0.19655728888233218,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":51.112736019350436,"scaled_rad":-98.51635197419941},{"average":0.18470057907798385,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":43.89682873324943,"scaled_rad":-108.13756168900076},{"average":0.18910417404415383,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":46.576824577439716,"scaled_rad":-104.56423389674704},{"average":0.17654651603432464,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":38.9343253154388,"scaled_rad":-114.75423291274826},{"average":0.17349867205240418,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":37.079429652227645,"scaled_rad":-117.22742713036314},{"average":0.17139146274456304,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":35.79699740511181,"scaled_rad":-118.93733679318424},{"average":0.17122872732579708,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":35.69795781374479,"scaled_rad":-119.06938958167362},{"average":0.17303365333975174,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":36.79642264841521,"scaled_rad":-117.60476980211305},{"average":0.1769857476341777,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":39.20163847009687,"scaled_rad":-114.39781537320417},{"average":0.15313474126413565,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":24.686089596385745,"scaled_rad":-133.75188053815234},{"average":0.1554064661008638,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":26.068644796931476,"scaled_rad":-131.90847360409137},{"average":0.15958700674515136,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":28.61289140435816,"scaled_rad":-128.51614479418913},{"average":0.1620989647698358,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":30.141650774521096,"scaled_rad":-126.4777989673052},{"average":0.1618350186363732,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":29.981015078866946,"scaled_rad":-126.69197989484407},{"average":0.160553377254282,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":29.201017462343625,"scaled_rad":-127.73197671687517},{"average":0.15984765247903704,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":28.771518500852252,"scaled_rad":-128.30464199886367},{"average":0.1593810109687703,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":28.487523874223537,"scaled_rad":-128.6833015010353},{"average":0.16012669472132227,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":28.941341578456587,"scaled_rad":-128.07821122872454},{"average":0.15815954346479275,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":27.744147641935655,"scaled_rad":-129.67446981075247},{"average":0.15545483272950592,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":26.098080375079363,"scaled_rad":-131.86922616656085},{"average":0.15625287058016765,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":26.583760402354933,"scaled_rad":-131.2216527968601},{"average":0.1597688977635502,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":28.723588954234863,"scaled_rad":-128.3685480610202},{"average":0.16103226617254965,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":29.492465772337106,"scaled_rad":-127.34337897021719},{"average":0.157474594267281,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":27.32729254583459,"scaled_rad":-130.23027660555388},{"average":0.17627868334753344,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":38.77132429171771,"scaled_rad":-114.97156761104304},{"average":0.1818369760818549,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":42.15406079296557,"scaled_rad":-110.4612522760459},{"average":0.18735692146777225,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":45.51345937709157,"scaled_rad":-105.9820541638779},{"average":0.1891587669936119,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":46.610049449116985,"scaled_rad":-104.51993406784402},{"average":0.19608925455334283,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":50.82789373338498,"scaled_rad":-98.89614168882002},{"average":0.197966400038876,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":51.97031081279792,"scaled_rad":-97.37291891626944},{"average":0.19940951784122,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":52.84858180335696,"scaled_rad":-96.20189092885738},{"average":0.20186263832685616,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":54.341533075512906,"scaled_rad":-94.21128923264945},{"average":0.2026598454769314,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":54.826707544457896,"scaled_rad":-93.56438994072279},{"average":0.1956701820025562,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":50.57284922925811,"scaled_rad":-99.23620102765585},{"average":0.1741811533038034,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":37.494782774287934,"scaled_rad":-116.67362296761608},{"average":0.17273970771292074,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":36.61752947945283,"scaled_rad":-117.84329402739624},{"average":0.17018373884912644,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":35.061985432947054,"scaled_rad":-119.91735275607058},{"average":0.1606285334608265,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":29.24675698261098,"scaled_rad":-127.67099068985203},{"average":0.1682685166796181,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":33.896395160813626,"scaled_rad":-121.47147311891516},{"average":0.17112797971318167,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":35.63664355001353,"scaled_rad":-119.1511419333153},{"average":0.17446487092926136,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":37.66745125606072,"scaled_rad":-116.44339832525236},{"average":0.17689285693707543,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":39.14510586795917,"scaled_rad":-114.47319217605443},{"average":0.17958825675452145,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":40.78550657798844,"scaled_rad":-112.28599122934874},{"average":0.1823114110528432,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":42.442798463063575,"scaled_rad":-110.07626871591523},{"average":0.1830327765539635,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":42.88181625647932,"scaled_rad":-109.49091165802758},{"average":0.20053417228686699,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":53.5330383130131,"scaled_rad":-95.28928224931586},{"average":0.23282806443293994,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":73.18686601721706,"scaled_rad":-69.08417864371059},{"average":0.23312629863560516,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":73.36836918221712,"scaled_rad":-68.8421744237105},{"average":0.22900851299977604,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":70.86231481616657,"scaled_rad":-72.18358024511123},{"average":0.23101753616421822,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":72.08499169107225,"scaled_rad":-70.55334441190367},{"average":0.23955254653169175,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":77.27933687737453,"scaled_rad":-63.62755083016728},{"average":0.24486674544297987,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":80.51351965459749,"scaled_rad":-59.31530712720334},{"average":0.2503995467235888,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":83.88074224265922,"scaled_rad":-54.82567700978768},{"average":0.254254852400667,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":86.22705321631338,"scaled_rad":-51.69726237824882},{"average":0.253835174502811,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":85.97164030236623,"scaled_rad":-52.03781293017836},{"average":0.2478293106377636,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":82.31651526867157,"scaled_rad":-56.91131297510458},{"average":0.24210732449865216,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":78.83415615273532,"scaled_rad":-61.55445846301957},{"average":0.23472679762245796,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":74.34242121614587,"scaled_rad":-67.54343837847217},{"average":0.2269336411777278,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":69.5995629275311,"scaled_rad":-73.86724942995852},{"average":0.22722727732953468,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":69.77826775224638,"scaled_rad":-73.62897633033815},{"average":0.23130313105842026,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":72.2588026649387,"scaled_rad":-70.32159644674839},{"average":0.23967629114995648,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":77.35464695135684,"scaled_rad":-63.527137398190874},{"average":0.24190516562952621,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":78.71112373642865,"scaled_rad":-61.71850168476179},{"average":0.23637118521623138,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":75.34318353679674,"scaled_rad":-66.20908861760432},{"average":0.23659678612576157,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":75.48048260826705,"scaled_rad":-66.02602318897725},{"average":0.2355047484144549,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":74.81587640572468,"scaled_rad":-66.91216479236708},{"average":0.22665168364491428,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":69.42796562533063,"scaled_rad":-74.09604583289249},{"average":0.21905943932723623,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":64.80738099487098,"scaled_rad":-80.256825340172},{"average":0.22263295240602787,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":66.98219504427726,"scaled_rad":-77.35707327429698},{"average":0.22011634303390784,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":65.45060489792054,"scaled_rad":-79.39919346943927},{"average":0.2182726115414144,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":64.32852333146286,"scaled_rad":-80.89530222471619},{"average":0.21734937573065763,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":63.76664873694542,"scaled_rad":-81.64446835073943},{"average":0.2174286359929603,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":63.81488595567523,"scaled_rad":-81.58015205909969},{"average":0.22277540878928237,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":67.06889296223598,"scaled_rad":-77.24147605035202},{"average":0.22983005570083953,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":71.3622997243131,"scaled_rad":-71.51693370091586},{"average":0.23735152674635174,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":75.9398122564664,"scaled_rad":-65.4135836580448},{"average":0.24947489567571207,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":83.31800634513161,"scaled_rad":-55.5759915398245},{"average":0.2563109550387714,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":87.47838231621492,"scaled_rad":-50.0288235783801},{"average":0.25900908160163183,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":89.12044250365639,"scaled_rad":-47.8394099951248},{"average":0.26016792885765627,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":89.8257085088308,"scaled_rad":-46.89905532155892},{"average":0.26309745998824674,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":91.60859983188021,"scaled_rad":-44.521866890826374},{"average":0.26623252058829316,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":93.51657489406371,"scaled_rad":-41.977900141248384},{"average":0.26467517484764114,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":92.56878561167542,"scaled_rad":-43.24161918443275},{"average":0.26158190609819687,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":90.68624476558021,"scaled_rad":-45.75167364589305},{"average":0.25504649369510246,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":86.70884034602793,"scaled_rad":-51.05487953862941},{"average":0.24430819725639452,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":80.17359129371768,"scaled_rad":-59.76854494170975},{"average":0.23750189711528202,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":76.03132656850428,"scaled_rad":-65.29156457532763},{"average":0.23845326615309761,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":76.61032284023784,"scaled_rad":-64.51956954634954},{"average":0.23965559866618463,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":77.34205365634662,"scaled_rad":-63.543928458204505},{"average":0.23424619812157846,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":74.04993185802553,"scaled_rad":-67.93342418929929},{"average":0.2258159675227681,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":68.91935487627654,"scaled_rad":-74.77419349829795},{"average":0.22641623102022893,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":69.28467087172406,"scaled_rad":-74.28710550436791},{"average":0.2420241230186039,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":78.78352033757228,"scaled_rad":-61.621972883236936},{"average":0.2516762650927752,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":84.65774374936159,"scaled_rad":-53.78967500085122},{"average":0.23925669988515486,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":77.09928676165599,"scaled_rad":-63.86761765112534},{"average":0.21495702641640232,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":62.310682357359866,"scaled_rad":-83.58575685685351},{"average":0.1985598528744532,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":52.331481888995505,"scaled_rad":-96.89135748133933},{"average":0.19399688048682753,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":49.55449010615955,"scaled_rad":-100.59401319178727},{"average":0.1954670223891926,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":50.449207767292485,"scaled_rad":-99.40105631027669},{"average":0.19442140555295806,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":49.81285297143776,"scaled_rad":-100.24952937141632},{"average":0.19041639243531197,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":47.37543113912187,"scaled_rad":-103.4994251478375},{"average":0.1880907977140591,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":45.96009111895436,"scaled_rad":-105.38654517472752},{"average":0.18529831516298437,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":44.26060656386977,"scaled_rad":-107.65252458150697},{"average":0.1829363404060988,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":42.8231259188137,"scaled_rad":-109.56916544158173},{"average":0.17710577413296927,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":39.27468572363069,"scaled_rad":-114.30041903515908},{"average":0.17419935840432976,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":37.50586226595975,"scaled_rad":-116.65885031205366},{"average":0.17347861722530114,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":37.06722443042477,"scaled_rad":-117.24370075943364},{"average":0.1750075708841905,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":37.99773449850827,"scaled_rad":-116.00302066865564},{"average":0.178334363930312,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":40.022396531819936,"scaled_rad":-113.30347129090674},{"average":0.1765326513416448,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":38.92588736439008,"scaled_rad":-114.76548351414655},{"average":0.16967184167713364,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":34.75044853999192,"scaled_rad":-120.33273528001077},{"average":0.16457108641991217,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":31.646166017052547,"scaled_rad":-124.47177864392994},{"average":0.18012227354368737,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":41.11050530895422,"scaled_rad":-111.85265958806104},{"average":0.185562017081445,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":44.421093632051296,"scaled_rad":-107.4385418239316},{"average":0.19255299594667222,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":48.67575248454935,"scaled_rad":-101.7656633539342},{"average":0.19580368331023656,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":50.654097153403264,"scaled_rad":-99.12787046212898},{"average":0.19684221662850265,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":51.28614097178082,"scaled_rad":-98.2851453709589},{"average":0.19671977547685532,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":51.21162417809438,"scaled_rad":-98.38450109587416},{"average":0.19638758753158006,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":51.00945701247921,"scaled_rad":-98.65405731669438},{"average":0.19472511870480036,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":49.99769058502765,"scaled_rad":-100.00307921996313},{"average":0.19086078383561028,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":47.645884510774536,"scaled_rad":-103.13882065230061},{"average":0.19100543593354383,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":47.733918724705084,"scaled_rad":-103.02144170039321},{"average":0.19132920568991293,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":47.93096264182501,"scaled_rad":-102.75871647756665},{"average":0.19765980891422416,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":51.7837216859039,"scaled_rad":-97.62170441879479},{"average":0.2033339166984385,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":55.236942383539514,"scaled_rad":-93.01741015528064},{"average":0.2055926349760981,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":56.61158188690628,"scaled_rad":-91.18455748412495},{"average":0.2067810994230807,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":57.3348726989247,"scaled_rad":-90.22016973476705},{"average":0.1839130074513011,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":43.4175183737075,"scaled_rad":-108.77664216839},{"average":0.18191988345369217,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":42.204517616012104,"scaled_rad":-110.39397651198385},{"average":0.17112213947441218,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":35.63308922320746,"scaled_rad":-119.15588103572338},{"average":0.16058451695909745,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":29.21996886003933,"scaled_rad":-127.70670818661422},{"average":0.15399460636790674,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":25.20939723988481,"scaled_rad":-133.05413701348692},{"average":0.14839511341663816,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":21.801586586484838,"scaled_rad":-137.59788455135356},{"average":0.1376831586492555,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":15.282368883611385,"scaled_rad":-146.29017482185148},{"average":0.13638656901948878,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":14.493273872355777,"scaled_rad":-147.34230150352562},{"average":0.13200437275571444,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":11.826301122689845,"scaled_rad":-150.89826516974688},{"average":0.12892622653361113,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":9.952963736662765,"scaled_rad":-153.39604835111632},{"average":0.12854075854036898,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":9.718370721661696,"scaled_rad":-153.7088390377844},{"average":0.1309869719087947,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":11.207118372557849,"scaled_rad":-151.72384216992288},{"average":0.1373514250270091,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":15.08047821568471,"scaled_rad":-146.55936237908705},{"average":0.14287265482533731,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":18.44065848385518,"scaled_rad":-142.07912202152642},{"average":0.14266765019745936,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":18.315894159485328,"scaled_rad":-142.24547445401956},{"average":0.14131488889939176,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":17.492613479755644,"scaled_rad":-143.34318202699248},{"average":0.14560411011154514,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":20.103002289737802,"scaled_rad":-139.86266361368294},{"average":0.146300781752067,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":20.52699157933128,"scaled_rad":-139.29734456089162},{"average":0.15559663285662514,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":26.184378900330817,"scaled_rad":-131.75416146622558},{"average":0.16166814529889292,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":29.87945718028885,"scaled_rad":-126.82739042628154},{"average":0.16276600045865558,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":30.547603839618372,"scaled_rad":-125.93652821384217},{"average":0.15985472502176476,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":28.775822798877787,"scaled_rad":-128.2989029348296},{"average":0.15641313653022793,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":26.681297093042065,"scaled_rad":-131.09160387594392},{"average":0.16090726575968542,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":29.416391430902028,"scaled_rad":-127.44481142546397},{"average":0.1816029007888628,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":42.011604273402405,"scaled_rad":-110.65119430213012},{"average":0.19926346824617025,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":52.75969708285338,"scaled_rad":-96.32040388952882},{"average":0.20638896703323098,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":57.09622378065607,"scaled_rad":-90.53836829245857},{"average":0.21218560842491524,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":60.62401753991879,"scaled_rad":-85.83464328010828},{"average":0.21410313909781156,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":61.79101275041135,"scaled_rad":-84.2786496661182},{"average":0.20791790131928747,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":58.0267220585745,"scaled_rad":-89.29770392190066},{"average":0.19967764863981527,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":53.011764255752155,"scaled_rad":-95.98431432566379},{"average":0.19531571807097034,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":50.35712506051339,"scaled_rad":-99.52383325264881},{"average":0.1974333559749303,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":51.645904075321056,"scaled_rad":-97.80546123290526},{"average":0.19238860650765977,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":48.575706268499346,"scaled_rad":-101.89905830866753},{"average":0.17892879942080647,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":40.38416564464777,"scaled_rad":-112.82111247380297},{"average":0.16308713597730398,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":30.743044578835164,"scaled_rad":-125.67594056155312},{"average":0.16090625960590876,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":29.415779093036996,"scaled_rad":-127.44562787595066},{"average":0.15951895116957335,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":28.571473276414007,"scaled_rad":-128.57136896478133},{"average":0.1582989959140179,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":27.82901738750869,"scaled_rad":-129.5613101499884},{"average":0.15290888614000062,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":24.54863581175727,"scaled_rad":-133.9351522509903},{"average":0.1425625360753909,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":18.251922469883233,"scaled_rad":-142.3307700401557},{"average":0.13121762786442476,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":11.347493908290623,"scaled_rad":-151.53667478894585},{"average":0.1247692611211328,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":7.423064843719344,"scaled_rad":-156.76924687504086},{"average":0.1245655128618121,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":7.299065136108764,"scaled_rad":-156.93457981852166},{"average":0.12378585785307794,"rel_min":0.12078783847391605,"rel_max":0.4411991630902009,"scaled_dist":6.824572772628072,"scaled_rad":-157.56723630316256},{"average":0.11988379409969017,"rel_min":0.11988379409969017,"rel_max":0.4411991630902009,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.11825790524715273,"rel_min":0.11825790524715273,"rel_max":0.4411991630902009,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.1171009253135196,"rel_min":0.1171009253135196,"rel_max":0.4411991630902009,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.11553890554890182,"rel_min":0.11553890554890182,"rel_max":0.4411991630902009,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.11409614664754474,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.11489752829597946,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":5.47773763490245,"scaled_rad":-159.36301648679674},{"average":0.1207639335207482,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":8.97495093262955,"scaled_rad":-154.7000654231606},{"average":0.12398628256419991,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":10.895930048954025,"scaled_rad":-152.13875993472797},{"average":0.1266438263064928,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":12.480204738264204,"scaled_rad":-150.0263936823144},{"average":0.12870801681024222,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":13.710756362668752,"scaled_rad":-148.38565818310832},{"average":0.152301528976864,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":27.775850969638828,"scaled_rad":-129.63219870714823},{"average":0.15986816145008353,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":32.28664193795286,"scaled_rad":-123.61781074939618},{"average":0.1711177678614583,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":38.99301008482884,"scaled_rad":-114.67598655356154},{"average":0.18276117378132892,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":45.93413884318378,"scaled_rad":-105.42114820908829},{"average":0.1939671605827686,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":52.614503488074845,"scaled_rad":-96.51399534923354},{"average":0.20001662700455095,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":56.22084733985756,"scaled_rad":-91.70553688018991},{"average":0.20373854297283853,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":58.439639516429594,"scaled_rad":-88.7471473114272},{"average":0.21018436659804798,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":62.28226873026381,"scaled_rad":-83.62364169298158},{"average":0.2177222371879832,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":66.77591351844953,"scaled_rad":-77.63211530873396},{"average":0.22557261691611377,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":71.45585827601744,"scaled_rad":-71.39218896531007},{"average":0.23210092266166274,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":75.34765858475969,"scaled_rad":-66.20312188698708},{"average":0.23872147253663825,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":79.2944495366143,"scaled_rad":-60.94073395118093},{"average":0.23635725605658894,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":77.88503968578696,"scaled_rad":-62.81994708561737},{"average":0.22342519534094898,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":70.17568907516097,"scaled_rad":-73.09908123311868},{"average":0.2171665583678179,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":66.44464977435247,"scaled_rad":-78.07380030086337},{"average":0.21386720775879373,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":64.47776675457297,"scaled_rad":-80.69631099390269},{"average":0.21444337090422333,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":64.82124207491894,"scaled_rad":-80.23834390010806},{"average":0.21854446896363094,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":67.26608079967794,"scaled_rad":-76.97855893376274},{"average":0.2177837746333351,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":66.81259860308775,"scaled_rad":-77.58320186254966},{"average":0.21504177633229146,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":65.17797696456415,"scaled_rad":-79.76269738058113},{"average":0.21240718742710457,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":63.60738662853309,"scaled_rad":-81.85681782862254},{"average":0.21171953642400554,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":63.19744866139784,"scaled_rad":-82.40340178480287},{"average":0.2088387757495001,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":61.480104878886316,"scaled_rad":-84.69319349481823},{"average":0.20568203169624416,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":59.598235683428065,"scaled_rad":-87.2023524220959},{"average":0.20317243084079073,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":58.102156032021945,"scaled_rad":-89.1971252906374},{"average":0.1972410348143509,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":54.56619895729246,"scaled_rad":-93.91173472361005},{"average":0.18875760667432276,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":49.50886715614872,"scaled_rad":-100.6548437918017},{"average":0.18667706642411427,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":48.26856875351452,"scaled_rad":-102.30857499531396},{"average":0.18618230769362798,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":47.97362206212031,"scaled_rad":-102.70183725050624},{"average":0.18591640468544224,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":47.81510598617544,"scaled_rad":-102.91319201843274},{"average":0.1816880909633615,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":45.29442860211258,"scaled_rad":-106.27409519718321},{"average":0.17003708862640596,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":38.348771296917356,"scaled_rad":-115.53497160411018},{"average":0.2004319613927336,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":56.46844580769319,"scaled_rad":-91.3754055897424},{"average":0.26807085717839313,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":96.79086417498407,"scaled_rad":-37.61218110002123},{"average":0.2819623471985776,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":105.07217134052301,"scaled_rad":-26.570438212635963},{"average":0.28679910370096545,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":107.95556730618198,"scaled_rad":-22.725910258424022},{"average":0.2808320442610656,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":104.39834975608197,"scaled_rad":-27.468866991890707},{"average":0.2669558185241407,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":96.12614227806037,"scaled_rad":-38.49847696258615},{"average":0.24922549108498726,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":85.55634109360376,"scaled_rad":-52.591545208528316},{"average":0.23272345245867862,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":75.71877503528431,"scaled_rad":-65.70829995295423},{"average":0.22123433294165404,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":68.86962295413085,"scaled_rad":-74.84050272782552},{"average":0.21326116516726035,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":64.11647902743968,"scaled_rad":-81.17802796341374},{"average":0.20790524307406266,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":60.92358640440073,"scaled_rad":-85.43521812746569},{"average":0.2091881748253517,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":61.68839650680228,"scaled_rad":-84.41547132426362},{"average":0.21208584040213457,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":63.415818019503966,"scaled_rad":-82.11224264066136},{"average":0.20704790787943483,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":60.412492484293956,"scaled_rad":-86.11667668760805},{"average":0.19230517278860454,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":51.62372198019838,"scaled_rad":-97.83503735973548},{"average":0.1824406396796012,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":45.743054852223814,"scaled_rad":-105.67592686370156},{"average":0.1775157070519884,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":42.807093353523136,"scaled_rad":-109.59054219530248},{"average":0.17185096019421028,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":39.43009717268729,"scaled_rad":-114.09320376975026},{"average":0.17138011474767453,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":39.149406205441,"scaled_rad":-114.46745839274533},{"average":0.17023595503653446,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":38.46732400975012,"scaled_rad":-115.37690132033316},{"average":0.17266777742071665,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":39.91703661121939,"scaled_rad":-113.44395118504082},{"average":0.176542890516224,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":42.227156101531094,"scaled_rad":-110.3637918646252},{"average":0.18180430016898028,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":45.36370584492772,"scaled_rad":-106.18172554009635},{"average":0.1863567638710071,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":48.07762279852102,"scaled_rad":-102.56316960197196},{"average":0.18984887927546965,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":50.15942109948402,"scaled_rad":-99.78743853402129},{"average":0.1952464670687914,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":53.377152415888006,"scaled_rad":-95.49713011214932},{"average":0.19869647603011145,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":55.43384927785458,"scaled_rad":-92.75486762952723},{"average":0.20050578142738476,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":56.51245306544804,"scaled_rad":-91.31672924606927},{"average":0.20100457456971327,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":56.80980484108081,"scaled_rad":-90.92026021189224},{"average":0.19935126323362226,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":55.824195738346454,"scaled_rad":-92.23440568220471},{"average":0.2005521006849417,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":56.54006594203301,"scaled_rad":-91.27991207728931},{"average":0.20630354147867364,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":59.96874405993823,"scaled_rad":-86.70834125341568},{"average":0.21106656045529076,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":62.808181954890095,"scaled_rad":-82.92242406014653},{"average":0.21279091725182617,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":63.83614427385988,"scaled_rad":-81.55180763485349},{"average":0.21193657357478923,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":63.32683372443727,"scaled_rad":-82.23088836741697},{"average":0.20372522909913146,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":58.43170255087938,"scaled_rad":-88.75772993216081},{"average":0.19508407588597454,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":53.28034413514004,"scaled_rad":-95.62620781981327},{"average":0.20542604067019038,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":59.445628560988894,"scaled_rad":-87.40582858534813},{"average":0.24480541196792568,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":82.92134421341417,"scaled_rad":-56.10487438211443},{"average":0.28576507636475246,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":107.33913969645101,"scaled_rad":-23.547813738065287},{"average":0.3287799350113632,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":132.9821237548373,"scaled_rad":10.642831673116405},{"average":0.3622126974239251,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":152.91281330135962,"scaled_rad":37.217084401812826},{"average":0.3867708456658595,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":167.55296844042644,"scaled_rad":56.73729125390193},{"average":0.4009295073495061,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":175.99354798119964,"scaled_rad":67.99139730826622},{"average":0.3957479680872643,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":172.9046123696435,"scaled_rad":63.87281649285805},{"average":0.38244359659594157,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":164.97331149378397,"scaled_rad":53.29774865837868},{"average":0.3707008905739094,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":157.97298572730577,"scaled_rad":43.96398096974107},{"average":0.36009105031879385,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":151.64800935671875,"scaled_rad":35.53067914229172},{"average":0.3551476027381953,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":148.70101030822264,"scaled_rad":31.60134707763021},{"average":0.3512220518672169,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":146.36082271788598,"scaled_rad":28.481096957181336},{"average":0.3442963002017443,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":142.23208801695145,"scaled_rad":22.976117355935287},{"average":0.3370942988304523,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":137.93866913419362,"scaled_rad":17.251558845591518},{"average":0.32898757201859424,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":133.10590499308566,"scaled_rad":10.80787332411424},{"average":0.3251266425703997,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":130.8042409773094,"scaled_rad":7.738987969745864},{"average":0.3208801611620198,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":128.27273306387121,"scaled_rad":4.3636440851616385},{"average":0.3252585361286395,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":130.88286832882838,"scaled_rad":7.843824438437849},{"average":0.3227359803941193,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":129.3790657238235,"scaled_rad":5.838754298431326},{"average":0.3104421408313561,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":122.05018584735464,"scaled_rad":-3.9330855368604603},{"average":0.2921561515802465,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":111.14913105811678,"scaled_rad":-18.467825255844275},{"average":0.27715357520210426,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":102.2054581273274,"scaled_rad":-30.392722496896766},{"average":0.25522988935669494,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":89.13581790710559,"scaled_rad":-47.81890945719253},{"average":0.23013362409289462,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":74.17486835774864,"scaled_rad":-67.76684218966848},{"average":0.22102353073738057,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":68.74395480750117,"scaled_rad":-75.00806025666509},{"average":0.23428057774181196,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":76.64704354687791,"scaled_rad":-64.47060860416278},{"average":0.2304591176631877,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":74.36890889854651,"scaled_rad":-67.50812146860464},{"average":0.22725180055646377,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":72.45689095810417,"scaled_rad":-70.05747872252778},{"average":0.23049943748645438,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":74.39294525755814,"scaled_rad":-67.47607298992247},{"average":0.2372962951630217,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":78.44484077764417,"scaled_rad":-62.073545629807754},{"average":0.24818077692425394,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":84.93354261391224,"scaled_rad":-53.42194318145033},{"average":0.2597089211537648,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":91.80595898353845,"scaled_rad":-44.25872135528206},{"average":0.2531154992053536,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":87.87534014081803,"scaled_rad":-49.49954647890928},{"average":0.22916321374501558,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":73.59636553654464,"scaled_rad":-68.53817928460714},{"average":0.22723197089598804,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":72.445069655339,"scaled_rad":-70.07324045954799},{"average":0.25145941422250573,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":86.88807754945655,"scaled_rad":-50.815896600724585},{"average":0.2523363276404473,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":87.4108428799578,"scaled_rad":-50.118876160056246},{"average":0.2548374443032912,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":88.90186474383005,"scaled_rad":-48.13084700822658},{"average":0.25385622141073255,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":88.31691610553928,"scaled_rad":-48.910778525947606},{"average":0.25199014498516237,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":87.20446869694139,"scaled_rad":-50.394041737411456},{"average":0.27717715090367023,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":102.21951260427892,"scaled_rad":-30.373983194294738},{"average":0.27484431285347405,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":100.82880876811298,"scaled_rad":-32.22825497584935},{"average":0.3054517710990036,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":119.07521451143813,"scaled_rad":-7.899713984749127},{"average":0.3105416736016071,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":122.10952155880736,"scaled_rad":-3.8539712549234935},{"average":0.29340902398519036,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":111.89602150755684,"scaled_rad":-17.47197132325752},{"average":0.26722772968286673,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":96.2882400677054,"scaled_rad":-38.28234657639277},{"average":0.2394194602330955,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":79.71054964565448,"scaled_rad":-60.38593380579401},{"average":0.22749690373258835,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":72.6030073707991,"scaled_rad":-69.86265683893453},{"average":0.23347146090486048,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":76.16469463759111,"scaled_rad":-65.11374048321184},{"average":0.24116089982778746,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":80.74869574610314,"scaled_rad":-59.0017390051958},{"average":0.24951561051830268,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":85.72929360902766,"scaled_rad":-52.36094185462976},{"average":0.254410308350697,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":88.64723086224227,"scaled_rad":-48.47035885034363},{"average":0.2544563072451282,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":88.67465275676231,"scaled_rad":-48.4337963243169},{"average":0.2529551601111214,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":87.77975519722654,"scaled_rad":-49.62699307036459},{"average":0.24943336698552884,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":85.68026474630025,"scaled_rad":-52.42631367159966},{"average":0.24508027830140083,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":83.0852037082319,"scaled_rad":-55.886395055690784},{"average":0.24174660186921895,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":81.09785760746787,"scaled_rad":-58.536189856709484},{"average":0.23358348197182693,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":76.23147515308747,"scaled_rad":-65.02469979588335},{"average":0.22524013566741966,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":71.25765208336156,"scaled_rad":-71.65646388885123},{"average":0.21879796679688798,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":67.41720162400634,"scaled_rad":-76.77706450132486},{"average":0.20084496404086877,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":56.71465422625872,"scaled_rad":-91.04712769832169},{"average":0.18708864301905087,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":48.51392704120462,"scaled_rad":-101.98143061172716},{"average":0.17637190220221668,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":42.12522270576472,"scaled_rad":-110.49970305898037},{"average":0.1677555676344111,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":36.988659738554546,"scaled_rad":-117.34845368192727},{"average":0.17026152817944362,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":38.48256924631663,"scaled_rad":-115.35657433824449},{"average":0.17830998554125982,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":43.28059649358078,"scaled_rad":-108.9592046752256},{"average":0.18462093212464306,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":47.04281977462311,"scaled_rad":-103.94290696716918},{"average":0.18532701679871658,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":47.46374683589487,"scaled_rad":-103.3816708854735},{"average":0.18532572055715546,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":47.46297409124957,"scaled_rad":-103.38270121166724},{"average":0.1858083544848811,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":47.75069267278395,"scaled_rad":-102.99907643628806},{"average":0.18554876961307082,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":47.595943106260535,"scaled_rad":-103.20540919165262},{"average":0.18566490920477718,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":47.66517884926601,"scaled_rad":-103.11309486764532},{"average":0.17871818309467213,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":43.523940391112085,"scaled_rad":-108.63474614518388},{"average":0.16788458604519937,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":37.06557309257164,"scaled_rad":-117.2459025432378},{"average":0.16091306723454143,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":32.90955465268476,"scaled_rad":-122.78726046308697},{"average":0.15716660117743,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":30.676127125535068,"scaled_rad":-125.7651638326199},{"average":0.1551137292479639,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":29.452322983954897,"scaled_rad":-127.39690268806014},{"average":0.1535820294733487,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":28.539211697797356,"scaled_rad":-128.61438440293685},{"average":0.15239954268791733,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":27.834281105390115,"scaled_rad":-129.55429185947983},{"average":0.15186793637362175,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":27.51736800438907,"scaled_rad":-129.97684266081455},{"average":0.15237725049577241,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":27.820991782914483,"scaled_rad":-129.572010956114},{"average":0.15341215967662725,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":28.437945097687937,"scaled_rad":-128.74940653641607},{"average":0.2109308619747421,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":62.72728632758967,"scaled_rad":-83.0302848965471},{"average":0.22004961661106692,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":68.16336323516862,"scaled_rad":-75.7821823531085},{"average":0.235856664745872,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":77.58661594561055,"scaled_rad":-63.217845405852586},{"average":0.25636788564128127,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":89.81422582247019,"scaled_rad":-46.914365570039735},{"average":0.2842224850824073,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":106.41953551997884,"scaled_rad":-24.7739526400282},{"average":0.30382341305621796,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":118.10448112659677,"scaled_rad":-9.194025164537635},{"average":0.3154553346902645,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":125.03876361444019,"scaled_rad":0.051684819253608794},{"average":0.31804844107040586,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":126.5846244555499,"scaled_rad":2.112832607399895},{"average":0.3192108484636941,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":127.27758486953906,"scaled_rad":3.036779826052083},{"average":0.30645182095529994,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":119.6713867023845,"scaled_rad":-7.1048177301539965},{"average":0.2844123140483104,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":106.53270062849322,"scaled_rad":-24.623065828675692},{"average":0.25894517529186517,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":91.35065763936224,"scaled_rad":-44.86578981418366},{"average":0.23798440692417516,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":78.85505342222383,"scaled_rad":-61.52659543703487},{"average":0.22649767079526575,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":72.00732217994711,"scaled_rad":-70.6569037600705},{"average":0.22493114407267473,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":71.07344907101843,"scaled_rad":-71.90206790530874},{"average":0.22182146887403,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":69.21963961878421,"scaled_rad":-74.37381384162103},{"average":0.21665156099581212,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":66.1376379692237,"scaled_rad":-78.4831493743684},{"average":0.2129340090133069,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":63.921447349912775,"scaled_rad":-81.43807020011629},{"average":0.20795388110865562,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":60.95258160245415,"scaled_rad":-85.39655786339445},{"average":0.20199637773191062,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":57.401060827441874,"scaled_rad":-90.13191889674415},{"average":0.19018433939244794,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":50.359403122035125,"scaled_rad":-99.5207958372865},{"average":0.20641370786821658,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":60.03441892345525,"scaled_rad":-86.62077476872632},{"average":0.1910843344063928,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":50.89592837217758,"scaled_rad":-98.80542883709654},{"average":0.17898842137474957,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":43.685040906748384,"scaled_rad":-108.41994545766882},{"average":0.17381235506588316,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":40.59936795513286,"scaled_rad":-112.53417605982284},{"average":0.17135898747614453,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":39.136811341617495,"scaled_rad":-114.48425154450999},{"average":0.17085615225762277,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":38.83704991270101,"scaled_rad":-114.88393344973198},{"average":0.16903010563583457,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":37.74846597018294,"scaled_rad":-116.33537870642274},{"average":0.16323825882699747,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":34.29570011065064,"scaled_rad":-120.93906651913247},{"average":0.1599503256014973,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":32.33562347808027,"scaled_rad":-123.5525020292263},{"average":0.1617292481589399,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":33.39611476450692,"scaled_rad":-122.1385136473241},{"average":0.1661279535202589,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":36.018369841165836,"scaled_rad":-118.64217354511221},{"average":0.17075858457543092,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":38.77888567369667,"scaled_rad":-114.96148576840443},{"average":0.17886149320706596,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":43.60937363541753,"scaled_rad":-108.52083515277661},{"average":0.18720204976961188,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":48.581533621540984,"scaled_rad":-101.89128850461202},{"average":0.19294615192084363,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":52.005836862983436,"scaled_rad":-97.32555084935541},{"average":0.1793351207357785,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":43.891723120003036,"scaled_rad":-108.14436917332927},{"average":0.17416949707030535,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":40.81227547160799,"scaled_rad":-112.25029937118934},{"average":0.17247181186788862,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":39.800213222621366,"scaled_rad":-113.59971570317151},{"average":0.18174937016644485,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":45.33095973756712,"scaled_rad":-106.22538701657717},{"average":0.1934733747055485,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":52.320136755829196,"scaled_rad":-96.90648432556107},{"average":0.20443563973470255,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":58.855208501521226,"scaled_rad":-88.19305533130502},{"average":0.21624437535448313,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":65.89489731546065,"scaled_rad":-78.80680357938579},{"average":0.23234757702185552,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":75.49469972415567,"scaled_rad":-66.0070670344591},{"average":0.2561051963649735,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":89.65762558858333,"scaled_rad":-47.12316588188888},{"average":0.2792939624060755,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":103.48143384076924,"scaled_rad":-28.691421545640992},{"average":0.28549832008103193,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":107.18011494672167,"scaled_rad":-23.759846737704407},{"average":0.27896251905624564,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":103.28384638370537,"scaled_rad":-28.954871488392826},{"average":0.2633294787639939,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":93.96432713823394,"scaled_rad":-41.38089714902141},{"average":0.2575541326953926,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":90.52139807073426,"scaled_rad":-45.97146923902096},{"average":0.2530833740483939,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":87.85618897041532,"scaled_rad":-49.52508137277957},{"average":0.26287941169296414,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":93.6960230430738,"scaled_rad":-41.73863594256825},{"average":0.2770160447662917,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":102.12347039369197,"scaled_rad":-30.50203947507734},{"average":0.3155434737022305,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":125.09130702269209,"scaled_rad":0.12174269692280859},{"average":0.30482286494074157,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":118.70029684117385,"scaled_rad":-8.399604211768178},{"average":0.2877679161083054,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":108.53311752716688,"scaled_rad":-21.955843297110818},{"average":0.27369081101575005,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":100.14115733401006,"scaled_rad":-33.145123554653225},{"average":0.25484181110109516,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":88.90446797745668,"scaled_rad":-48.12737603005775},{"average":0.24651310108984026,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":83.9393702236748,"scaled_rad":-54.74750636843358},{"average":0.23864660631893395,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":79.24981860471061,"scaled_rad":-61.00024186038583},{"average":0.23354616472020626,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":76.20922875455172,"scaled_rad":-65.05436166059769},{"average":0.22756558709280117,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":72.64395243876929,"scaled_rad":-69.80806341497427},{"average":0.22584271466777764,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":71.61687501669824,"scaled_rad":-71.17749997773566},{"average":0.23281976234256035,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":75.77618944729794,"scaled_rad":-65.63174740360274},{"average":0.24569407913727648,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":83.45111645430629,"scaled_rad":-55.398511394258264},{"average":0.25153411413512883,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":86.93260933983842,"scaled_rad":-50.75652088021542},{"average":0.24602661892163183,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":83.64935754255583,"scaled_rad":-55.134189943258875},{"average":0.24089667522353464,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":80.59118023802363,"scaled_rad":-59.21175968263515},{"average":0.2216472694039409,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":69.11579191650131,"scaled_rad":-74.51227744466492},{"average":0.21584737779424715,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":65.65823020951977,"scaled_rad":-79.12235972064029},{"average":0.15154698070927694,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":27.32603270204951,"scaled_rad":-130.2319563972673},{"average":0.14917552450997207,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":25.912306947106742,"scaled_rad":-132.11692407052433},{"average":0.15064724500130924,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":26.789662035212633,"scaled_rad":-130.94711728638316},{"average":0.15562284840430418,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":29.755830535080637,"scaled_rad":-126.99222595322581},{"average":0.16034713990731217,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":32.572181338278014,"scaled_rad":-123.23709154896265},{"average":0.16656501641905402,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":36.27892159697636,"scaled_rad":-118.29477120403152},{"average":0.16529622275276754,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":35.522539807482104,"scaled_rad":-119.30328025669053},{"average":0.16703071978946143,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":36.556547154261196,"scaled_rad":-117.92460379431839},{"average":0.1677429711220421,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":36.981150422563914,"scaled_rad":-117.3584661032481},{"average":0.1710714983536187,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":38.96542686616322,"scaled_rad":-114.71276417844904},{"average":0.16911634441912174,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":37.799876571417634,"scaled_rad":-116.26683123810982},{"average":0.17070300983431846,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":38.745755210288586,"scaled_rad":-115.00565971961521},{"average":0.17392467408300588,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":40.666326091371175,"scaled_rad":-112.44489854483842},{"average":0.17977170173388224,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":44.151987594345336,"scaled_rad":-107.79734987420622},{"average":0.1856760465207412,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":47.67181827630831,"scaled_rad":-103.10424229825558},{"average":0.19444620409940785,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":52.9000816730777,"scaled_rad":-96.1332244358964},{"average":0.2057950915823206,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":59.665635483114016,"scaled_rad":-87.11248602251464},{"average":0.21693810526534962,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":66.3084591776842,"scaled_rad":-78.25538776308771},{"average":0.22750998194123195,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":72.61080384639641,"scaled_rad":-69.85226153813811},{"average":0.24717056853874664,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":84.33131449227564,"scaled_rad":-54.22491401029913},{"average":0.26041375370869113,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":92.22613960340969,"scaled_rad":-43.69848052878706},{"average":0.26223064335764307,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":93.30926468552809,"scaled_rad":-42.2543137526292},{"average":0.25757011229978805,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":90.53092419156003,"scaled_rad":-45.958767744586595},{"average":0.2507497442686946,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":86.46501315066821,"scaled_rad":-51.37998246577571},{"average":0.24684784118166955,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":84.1389230086555,"scaled_rad":-54.481435988459324},{"average":0.24006682338005808,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":80.09647031074205,"scaled_rad":-59.87137291901058},{"average":0.22765369193814597,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":72.69647547884725,"scaled_rad":-69.73803269487033},{"average":0.218785078967695,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":67.40951864168485,"scaled_rad":-76.7873084777535},{"average":0.21601313317063714,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":65.75704402893227,"scaled_rad":-78.99060796142362},{"average":0.23031044972779224,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":74.28028162840577,"scaled_rad":-67.62629116212563},{"average":0.25149361581829105,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":86.90846657322854,"scaled_rad":-50.788711235695274},{"average":0.26176588582503707,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":93.03220298232593,"scaled_rad":-42.62372935689875},{"average":0.26763714158305635,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":96.53230788892334,"scaled_rad":-37.95692281476886},{"average":0.2644700326155027,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":94.64425972785962,"scaled_rad":-40.47432036285383},{"average":0.25720198401272015,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":90.31146728541798,"scaled_rad":-46.25137695277601},{"average":0.2535723326080724,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":88.14767793366067,"scaled_rad":-49.13642942178575},{"average":0.2507986292019604,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":86.49415553550615,"scaled_rad":-51.341125952658444},{"average":0.2533136827579369,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":87.99348577326751,"scaled_rad":-49.342018968976646},{"average":0.25246710334946093,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":87.48880383407861,"scaled_rad":-50.0149282212285},{"average":0.245925834940496,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":83.58927593115641,"scaled_rad":-55.21429875845811},{"average":0.2431882403810506,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":81.95727955002418,"scaled_rad":-57.39029393330108},{"average":0.24579737342284272,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":83.51269456478805,"scaled_rad":-55.316407246949254},{"average":0.25456279762163486,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":88.73813619279001,"scaled_rad":-48.349151742946646},{"average":0.2698073087424134,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":97.82603669851018,"scaled_rad":-36.231951068653075},{"average":0.2878469478469703,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":108.58023170302273,"scaled_rad":-21.89302439596969},{"average":0.29277085696215405,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":111.5155830424964,"scaled_rad":-17.97922261000477},{"average":0.29329386581766675,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":111.82737083318729,"scaled_rad":-17.563505555750254},{"average":0.29398970492379,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":112.24219007627984,"scaled_rad":-17.01041323162687},{"average":0.29646494206463675,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":113.71778405799945,"scaled_rad":-15.042954589334045},{"average":0.2990907856351779,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":115.28316092863827,"scaled_rad":-12.9557854284823},{"average":0.30921883398457856,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":121.32092068277174,"scaled_rad":-4.905439089637639},{"average":0.27864637082959826,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":103.09537699914668,"scaled_rad":-29.20616400113775},{"average":0.2998994740817344,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":115.76525445621711,"scaled_rad":-12.312994058377171},{"average":0.3072911641862519,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":120.17175484883455,"scaled_rad":-6.437660201553911},{"average":0.3005992141923537,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":116.18239925376344,"scaled_rad":-11.756800994982086},{"average":0.2889639941471008,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":109.24615044291802,"scaled_rad":-21.005132742775942},{"average":0.29509141789492316,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":112.89896796756116,"scaled_rad":-16.134709376585107},{"average":0.28940722454847084,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":109.51037890894416,"scaled_rad":-20.652828121407765},{"average":0.2889706999454812,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":109.25014805412444,"scaled_rad":-20.99980259450075},{"average":0.29873844336238137,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":115.07311473602736,"scaled_rad":-13.235847018630153},{"average":0.30697642973491124,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":119.9841282757785,"scaled_rad":-6.687828965628626},{"average":0.3164699318570202,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":125.64360807496827,"scaled_rad":0.8581440999577126},{"average":0.3251813437652421,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":130.83685068268684,"scaled_rad":7.7824675769158205},{"average":0.32949124239732924,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":133.4061642964741,"scaled_rad":11.20821906196548},{"average":0.33494081276919385,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":136.6548846356211,"scaled_rad":15.539846180828164},{"average":0.3382162682403246,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":138.607522748888,"scaled_rad":18.143363665184012},{"average":0.3414423970601091,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":140.53075515040962,"scaled_rad":20.70767353387953},{"average":0.3379607389490149,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":138.4551908861394,"scaled_rad":17.94025451485257},{"average":0.32682742255721076,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":131.8181481587074,"scaled_rad":9.090864211609869},{"average":0.31635241266513375,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":125.57354989370452,"scaled_rad":0.7647331916060409},{"average":0.3076757984837512,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":120.40105168879663,"scaled_rad":-6.131931081604478},{"average":0.3066905603055219,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":119.81370936819043,"scaled_rad":-6.915054175746064},{"average":0.306477209502157,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":119.68652189340466,"scaled_rad":-7.084637475460454},{"average":0.30642001634949995,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":119.6524266261417,"scaled_rad":-7.130097831811042},{"average":0.3005910360106892,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":116.17752389235002,"scaled_rad":-11.763301476866616},{"average":0.2780010500673166,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":102.71067388630645,"scaled_rad":-29.71910148492472},{"average":0.2528501210589344,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":87.71713695726281,"scaled_rad":-49.71048405698291},{"average":0.23123524076354246,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":74.83158884022082,"scaled_rad":-66.89121487970556},{"average":0.21199391591513642,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":63.361017928818214,"scaled_rad":-82.18530942824236},{"average":0.19338920444572044,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":52.26995928927761,"scaled_rad":-96.97338761429651},{"average":0.1913088376617064,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":51.029764297208935,"scaled_rad":-98.62698093705475},{"average":0.19562367124929028,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":53.602019847552846,"scaled_rad":-95.19730686992952},{"average":0.22008107669563495,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":68.1821179276734,"scaled_rad":-75.75717609643546},{"average":0.24893569551289724,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":85.38358164561052,"scaled_rad":-52.82189113918595},{"average":0.26430566537706685,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":94.54627343643507,"scaled_rad":-40.60496875141989},{"average":0.26625995407310815,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":95.711307925791,"scaled_rad":-39.05158943227865},{"average":0.2661614809213908,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":95.65260389794769,"scaled_rad":-39.12986146940307},{"average":0.2626363932427981,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":93.55114942405999,"scaled_rad":-41.931800767919995},{"average":0.2589278840161841,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":91.3403495755771,"scaled_rad":-44.87953389923054},{"average":0.2556473070015881,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":89.38465829274122,"scaled_rad":-47.48712227634502},{"average":0.25201084270139634,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":87.21680748460993,"scaled_rad":-50.377590020520074},{"average":0.24839868309387675,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":85.06344573598845,"scaled_rad":-53.24873901868206},{"average":0.24545693962978019,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":83.30974752269366,"scaled_rad":-55.58700330307512},{"average":0.24277038766742817,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":81.70817980144189,"scaled_rad":-57.72242693141081},{"average":0.2397452195837234,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":79.9047486293975,"scaled_rad":-60.12700182746998},{"average":0.237324840487076,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":78.46185785761831,"scaled_rad":-62.05085618984222},{"average":0.2349103767289944,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":77.02249347037963,"scaled_rad":-63.970008706160485},{"average":0.23315958981663293,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":75.97877503689236,"scaled_rad":-65.3616332841435},{"average":0.2348974534157157,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":77.01478933448766,"scaled_rad":-63.98028088734978},{"average":0.23601273005608234,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":77.67965310504118,"scaled_rad":-63.093795859945075},{"average":0.2369916980522128,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":78.2632575038068,"scaled_rad":-62.31565666159092},{"average":0.2378156438255768,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":78.7544465718665,"scaled_rad":-61.660737904178006},{"average":0.24615857272631908,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":83.72802080954078,"scaled_rad":-55.029305587278955},{"average":0.2450028059055756,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":83.03901912286729,"scaled_rad":-55.94797450284361},{"average":0.24463922135558389,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":82.82227093136655,"scaled_rad":-56.23697209151125},{"average":0.24402277886980983,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":82.45478338559816,"scaled_rad":-56.7269554858691},{"average":0.24369284456935042,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":82.2580955369526,"scaled_rad":-56.98920595072987},{"average":0.24513160301708667,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":83.11580055098678,"scaled_rad":-55.84559926535094},{"average":0.24790667319926163,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":84.7701377423987,"scaled_rad":-53.63981634346838},{"average":0.2523251457065306,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":87.40417685425902,"scaled_rad":-50.12776419432129},{"average":0.1739440068739313,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":40.677851189095605,"scaled_rad":-112.42953174787252},{"average":0.17899872679668685,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":43.69118440643122,"scaled_rad":-108.41175412475837},{"average":0.18357936622453386,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":46.42189810679465,"scaled_rad":-104.77080252427379},{"average":0.19061724729817153,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":50.61747791001525,"scaled_rad":-99.17669611997965},{"average":0.18619841037618354,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":47.983221555064404,"scaled_rad":-102.68903792658078},{"average":0.1762013065205379,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":42.02352337480426,"scaled_rad":-110.63530216692763},{"average":0.1702469700560959,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":38.47389053071297,"scaled_rad":-115.36814595904937},{"average":0.16701248811048527,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":36.54567847613339,"scaled_rad":-117.93909536515548},{"average":0.16628974849340356,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":36.114822696007494,"scaled_rad":-118.51356973865668},{"average":0.16865441405435935,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":37.52450026303542,"scaled_rad":-116.6339996492861},{"average":0.1730130345145386,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":40.1228590277396,"scaled_rad":-113.1695212963472},{"average":0.17999668886335446,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":44.286111977312544,"scaled_rad":-107.61851736358327},{"average":0.1884425398483535,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":49.321042440460786,"scaled_rad":-100.90527674605227},{"average":0.19425191383123008,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":52.78425699280818,"scaled_rad":-96.28765734292242},{"average":0.1957729681661421,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":53.69102208025224,"scaled_rad":-95.07863722633033},{"average":0.19459399567383467,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":52.98818650722643,"scaled_rad":-96.01575132369808},{"average":0.19199490362131852,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":51.438757352605656,"scaled_rad":-98.08165686319245},{"average":0.1884987135754382,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":49.35452998484557,"scaled_rad":-100.86062668687256},{"average":0.18685308740204654,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":48.373502333981236,"scaled_rad":-102.16866355469168},{"average":0.20156683358517938,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":57.14499131905421,"scaled_rad":-90.4733449079277},{"average":0.21717319711762711,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":66.44860741505806,"scaled_rad":-78.06852344658923},{"average":0.2263508272984388,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":71.91978253512004,"scaled_rad":-70.7736232865066},{"average":0.23091399100220644,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":74.64007821417465,"scaled_rad":-67.14656238110045},{"average":0.23017939600955556,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":74.20215494118021,"scaled_rad":-67.73046007842638},{"average":0.22624728326714147,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":71.85805554060141,"scaled_rad":-70.85592594586477},{"average":0.22354659419786185,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":70.24806008951437,"scaled_rad":-73.00258654731417},{"average":0.2236088021029567,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":70.28514486367945,"scaled_rad":-72.95314018176072},{"average":0.22215947033567623,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":69.42113664482149,"scaled_rad":-74.10515114023801},{"average":0.21792201653654822,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":66.89501047265632,"scaled_rad":-77.47331936979155},{"average":0.21521315848019845,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":65.28014514144405,"scaled_rad":-79.62647314474125},{"average":0.21379362374748523,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":64.43390020035649,"scaled_rad":-80.754799732858},{"average":0.21267071269185153,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":63.76448523063255,"scaled_rad":-81.64735302582325},{"average":0.21575461638284876,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":65.60293119265529,"scaled_rad":-79.19609174312626},{"average":0.22539316351707298,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":71.34887848355476,"scaled_rad":-71.53482868859365},{"average":0.23231534140472865,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":75.4754827037561,"scaled_rad":-66.03268972832518},{"average":0.2279646258532482,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":72.88183639084471,"scaled_rad":-69.49088481220704},{"average":0.21710314826918503,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":66.40684832156282,"scaled_rad":-78.12420223791622},{"average":0.208601498740279,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":61.33865397665587,"scaled_rad":-84.88179469779216},{"average":0.20107209340193144,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":56.85005568445648,"scaled_rad":-90.86659242072469},{"average":0.19370718578722,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":52.45952147145113,"scaled_rad":-96.72063803806515},{"average":0.19090746711227793,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":50.79049026669179,"scaled_rad":-98.94601297774426},{"average":0.22726569367417446,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":72.46517323560514,"scaled_rad":-70.0464356858598},{"average":0.2198318794700301,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":68.03356087821108,"scaled_rad":-75.95525216238522},{"average":0.21321771839749884,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":64.09057856282267,"scaled_rad":-81.21256191623642},{"average":0.20562522201612038,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":59.564369020428096,"scaled_rad":-87.24750797276253},{"average":0.19919291693385285,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":55.7297987841672,"scaled_rad":-92.36026828777706},{"average":0.1936398881290777,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":52.41940247933525,"scaled_rad":-96.77413002755299},{"average":0.18923033249373783,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":49.79067909352686,"scaled_rad":-100.27909454196418},{"average":0.18694337369304184,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":48.42732582645634,"scaled_rad":-102.09689889805821},{"average":0.18918459605160556,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":49.763413657968414,"scaled_rad":-100.3154484560421},{"average":0.19338246356925848,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":52.26594076653704,"scaled_rad":-96.97874564461728},{"average":0.19663438946008682,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":54.204551897696376,"scaled_rad":-94.39393080307148},{"average":0.19663736128607112,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":54.20632352937755,"scaled_rad":-94.39156862749658},{"average":0.2026582451856877,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":57.79562812581211,"scaled_rad":-89.60582916558386},{"average":0.20258654328682787,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":57.752883578758635,"scaled_rad":-89.66282189498848},{"average":0.20329123177368358,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":58.17297831353449,"scaled_rad":-89.102695581954},{"average":0.20557476426986038,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":59.53428901496772,"scaled_rad":-87.2876146467097},{"average":0.19955985795882508,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":55.94854791295161,"scaled_rad":-92.06860278273118},{"average":0.20008829203505293,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":56.26356990811715,"scaled_rad":-91.64857345584379},{"average":0.19043287634666398,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":50.50756655568118,"scaled_rad":-99.32324459242508},{"average":0.18377806138091649,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":46.54034872799644,"scaled_rad":-104.6128683626714},{"average":0.1807731869722001,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":44.749015477474686,"scaled_rad":-107.00131269670041},{"average":0.18424085208530747,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":46.81623792136944,"scaled_rad":-104.24501610484073},{"average":0.19257736702424944,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":51.78598852401688,"scaled_rad":-97.6186819679775},{"average":0.20000459867940193,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":56.21367674439939,"scaled_rad":-91.71509767413413},{"average":0.20660612754085483,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":60.149128462280416,"scaled_rad":-86.46782871695943},{"average":0.2123797199415524,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":63.59101209386531,"scaled_rad":-81.87865054151291},{"average":0.2207164671034876,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":68.56090113450142,"scaled_rad":-75.25213182066477},{"average":0.22897247342658114,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":73.48265713208168,"scaled_rad":-68.68979049055775},{"average":0.24992729839003133,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":85.97471823353939,"scaled_rad":-52.03370902194746},{"average":0.2708436882255421,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":98.4438665229121,"scaled_rad":-35.40817796945052},{"average":0.2856607596013961,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":107.27695204353446,"scaled_rad":-23.630730608620695},{"average":0.2848857142209541,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":106.81491457647037,"scaled_rad":-24.246780564706143},{"average":0.28487520927592413,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":106.80865213259834,"scaled_rad":-24.25513048986886},{"average":0.285138697779327,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":106.96572881969935,"scaled_rad":-24.045694907067514},{"average":0.28276029654574103,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":105.54786283486955,"scaled_rad":-25.936182886840584},{"average":0.2811416717385124,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":104.58293184510929,"scaled_rad":-27.222757539854285},{"average":0.27809181206698075,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":102.76478096892214,"scaled_rad":-29.646958708103796},{"average":0.27471100208537785,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":100.7493365576104,"scaled_rad":-32.33421792318612},{"average":0.24550039293072182,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":83.33565188082451,"scaled_rad":-55.55246415890062},{"average":0.2558224395660733,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":89.48906225222167,"scaled_rad":-47.34791699703774},{"average":0.26700795508816055,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":96.15722309808594,"scaled_rad":-38.45703586921874},{"average":0.27652907206445543,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":101.8331652846447,"scaled_rad":-30.88911295380703},{"average":0.2847378182906451,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":106.72674753134834,"scaled_rad":-24.364336624868884},{"average":0.2956689763479496,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":113.24327509002359,"scaled_rad":-15.675633213301865},{"average":0.30997444248206696,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":121.77137099843269,"scaled_rad":-4.3048386687564175},{"average":0.3248747038207171,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":130.6540495889132,"scaled_rad":7.538732785217604},{"average":0.3210231337035084,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":128.35796506782359,"scaled_rad":4.477286757098142},{"average":0.2869149719428594,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":108.0246412860402,"scaled_rad":-22.633811618613066},{"average":0.24403822713065892,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":82.46399274997009,"scaled_rad":-56.714676333373205},{"average":0.242282970388562,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":81.41760966114613,"scaled_rad":-58.10985378513848},{"average":0.23953491363436388,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":79.77937632139773,"scaled_rad":-60.29416490480301},{"average":0.24687401116629643,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":84.15452404791748,"scaled_rad":-54.46063460277668},{"average":0.2669335435301325,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":96.11286320812442,"scaled_rad":-38.51618238916741},{"average":0.28401671313631643,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":106.29686612388433,"scaled_rad":-24.937511834820867},{"average":0.28502863782147564,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":106.90011740463379,"scaled_rad":-24.133176793821576},{"average":0.2762584483969591,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":101.67183502320081,"scaled_rad":-31.104219969065554},{"average":0.27266062955052006,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":99.52702241130426,"scaled_rad":-33.963970118260974},{"average":0.270570480638061,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":98.2809958770275,"scaled_rad":-35.625338830629985},{"average":0.2650665360733709,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":94.99986077229292,"scaled_rad":-40.00018563694276},{"average":0.2585529019674623,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":91.11680685103735,"scaled_rad":-45.177590865283506},{"average":0.2595135756016409,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":91.68950520369125,"scaled_rad":-44.413993061744975},{"average":0.26270739559118256,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":93.59347693936556,"scaled_rad":-41.87536408084591},{"average":0.26541207744932666,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":95.20585266146642,"scaled_rad":-39.725529784711426},{"average":0.268549305310239,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":97.07608742582592,"scaled_rad":-37.231883432232095},{"average":0.2271219422055695,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":72.37947688011806,"scaled_rad":-70.16069749317592},{"average":0.23026767378097426,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":74.25478106983489,"scaled_rad":-67.6602919068868},{"average":0.23100494502128374,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":74.6942997677175,"scaled_rad":-67.07426697637665},{"average":0.23318952272287996,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":75.9966193135415,"scaled_rad":-65.33784091527798},{"average":0.23383768682587971,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":76.38301746253904,"scaled_rad":-64.82264338328127},{"average":0.19671347455548155,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":54.2516978817649,"scaled_rad":-94.33106949098013},{"average":0.19223473675741903,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":51.58173207062632,"scaled_rad":-97.89102390583156},{"average":0.18996727797878835,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":50.23000359486494,"scaled_rad":-99.69332854018008},{"average":0.18758759073649045,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":48.81137096562583,"scaled_rad":-101.5848387124989},{"average":0.18567819803660712,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":47.67310088628976,"scaled_rad":-103.10253215161364},{"average":0.18485971328459289,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":47.185167364983464,"scaled_rad":-103.75311018002205},{"average":0.18511219164833162,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":47.335680440235656,"scaled_rad":-103.55242607968577},{"average":0.18530420113504503,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":47.45014544981064,"scaled_rad":-103.39980606691913},{"average":0.18668959781570235,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":48.27603924824199,"scaled_rad":-102.29861433567734},{"average":0.18868109577094358,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":49.46325575726529,"scaled_rad":-100.71565899031293},{"average":0.19226496312456084,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":51.59975129177798,"scaled_rad":-97.86699827762935},{"average":0.20307842689923558,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":58.04611629016139,"scaled_rad":-89.27184494645147},{"average":0.1729709991552806,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":40.097799964865615,"scaled_rad":-113.20293338017918},{"average":0.17562643555725424,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":41.68081837911382,"scaled_rad":-111.09224216118156},{"average":0.18053538414102585,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":44.60725111044657,"scaled_rad":-107.1903318527379},{"average":0.1858870203553566,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":47.79758873907385,"scaled_rad":-102.93654834790152},{"average":0.1869766392773004,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":48.44715685400529,"scaled_rad":-102.07045752799294},{"average":0.183278016649456,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":46.242250826927744,"scaled_rad":-105.010332230763},{"average":0.17987000429404956,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":44.21058992532075,"scaled_rad":-107.71921343290566},{"average":0.18150505548548448,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":45.18531338032656,"scaled_rad":-106.41958215956458},{"average":0.18447849911210656,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":46.957909406792595,"scaled_rad":-104.0561207909432},{"average":0.18788997996828438,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":48.99163802901487,"scaled_rad":-101.34448262798017},{"average":0.1914701754926546,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":51.12594463017268,"scaled_rad":-98.49874049310307},{"average":0.19322028555651063,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":52.16925956552044,"scaled_rad":-97.10765391263939},{"average":0.1965977679469988,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":54.18272025844759,"scaled_rad":-94.4230396554032},{"average":0.20215010620318177,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":57.4927048979365,"scaled_rad":-90.00972680275132},{"average":0.21133250536327394,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":62.96672300908368,"scaled_rad":-82.71103598788842},{"average":0.20809212910491182,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":61.03499710434447,"scaled_rad":-85.28667052754069},{"average":0.18838521931893415,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":49.286871238500225,"scaled_rad":-100.95083834866637},{"average":0.18002069844752408,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":44.300425110110865,"scaled_rad":-107.59943318651884},{"average":0.17364799687660895,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":40.50138705829791,"scaled_rad":-112.66481725560278},{"average":0.1675727487610396,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":36.87967364391335,"scaled_rad":-117.4937684747822},{"average":0.1649187604430843,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":35.29751849404785,"scaled_rad":-119.60330867460286},{"average":0.16374166056468056,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":34.595799265698986,"scaled_rad":-120.53893431240135},{"average":0.1639216458684237,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":34.70309614914446,"scaled_rad":-120.39587180114071},{"average":0.16395845629432995,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":34.72504040734722,"scaled_rad":-120.3666127902037},{"average":0.16242493505957187,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":33.810843271442025,"scaled_rad":-121.58554230474397},{"average":0.15828320424754477,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":31.341781637194245,"scaled_rad":-124.877624483741},{"average":0.15096726610000213,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":26.980440203276558,"scaled_rad":-130.69274639563125},{"average":0.1422394639575633,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":21.777426680856365,"scaled_rad":-137.63009775885817},{"average":0.13395116955480155,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":16.83642238772758,"scaled_rad":-144.2181034830299},{"average":0.12800851803420152,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":13.29375543491409,"scaled_rad":-148.94165942011455},{"average":0.12252961770996108,"rel_min":0.11409614664754474,"rel_max":0.4411991630902009,"scaled_dist":10.027550265527701,"scaled_rad":-153.29659964596306},{"average":0.11378427316466193,"rel_min":0.11378427316466193,"rel_max":0.4411991630902009,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.09663050340032735,"rel_min":0.09663050340032735,"rel_max":0.4411991630902009,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.09455307636829749,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.097933695789257,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":6.901711319810636,"scaled_rad":-157.46438490691915},{"average":0.09920319141191038,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":7.615845002260102,"scaled_rad":-156.5122066636532},{"average":0.10263252318380475,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":9.544958646216749,"scaled_rad":-153.94005513837766},{"average":0.11209647862490305,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":14.86874962988562,"scaled_rad":-146.8416671601525},{"average":0.11929421612613374,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":18.91771734220827,"scaled_rad":-141.4430435437223},{"average":0.12728117641291758,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":23.410649227437712,"scaled_rad":-135.45246769674972},{"average":0.1336359858397825,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":26.985441748412562,"scaled_rad":-130.68607766878324},{"average":0.13984402657161538,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":30.477671977102805,"scaled_rad":-126.02977069719626},{"average":0.1463121503466142,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":34.116207603026766,"scaled_rad":-121.17838986263098},{"average":0.153808821682061,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":38.333335579967965,"scaled_rad":-115.55555256004271},{"average":0.16137462646110154,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":42.58935342763658,"scaled_rad":-109.88086209648455},{"average":0.16634521354337672,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":45.38547465378287,"scaled_rad":-106.15270046162283},{"average":0.16728813175287582,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":45.9158976353059,"scaled_rad":-105.44546981959212},{"average":0.16678890987271583,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":45.6350686562403,"scaled_rad":-105.81990845834626},{"average":0.1669097083622898,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":45.703021840681764,"scaled_rad":-105.72930421242432},{"average":0.16783494091586654,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":46.22349605013737,"scaled_rad":-105.03533859981684},{"average":0.17069825102953812,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":47.83420360909473,"scaled_rad":-102.88772852120702},{"average":0.17809156450101313,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":51.99318933592403,"scaled_rad":-97.34241421876796},{"average":0.19439794859736673,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":61.1660749405433,"scaled_rad":-85.1119000792756},{"average":0.21041355912941834,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":70.17539070488229,"scaled_rad":-73.09947906015695},{"average":0.2704815355266792,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":103.96563339371096,"scaled_rad":-28.04582214171873},{"average":0.2791886173784179,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":108.86365770763078,"scaled_rad":-21.515123056492286},{"average":0.2926809765533464,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":116.45356031980648,"scaled_rad":-11.395252906924668},{"average":0.309446993367807,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":125.8850046777596,"scaled_rad":1.1800062370128046},{"average":0.3258548439136791,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":135.11496854869714,"scaled_rad":13.486624731596208},{"average":0.34234345617923534,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":144.39036358398835,"scaled_rad":25.85381811198448},{"average":0.3635447450071974,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":156.3167965650977,"scaled_rad":41.755728753463615},{"average":0.3834565583412795,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":167.5178565189664,"scaled_rad":56.69047535862188},{"average":0.4136469917248498,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":184.50098350438412,"scaled_rad":79.33464467251216},{"average":0.4146944166816495,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":185.0901950212584,"scaled_rad":80.12026002834457},{"average":0.4223911668338168,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":189.41987401422128,"scaled_rad":85.89316535229503},{"average":0.4244620599452265,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":190.5848205467026,"scaled_rad":87.44642739560345},{"average":0.42240942978626095,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":189.43014753486102,"scaled_rad":85.9068633798147},{"average":0.4121279398258259,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":183.6464660825639,"scaled_rad":78.19528811008524},{"average":0.3866687779562165,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":169.32483732419104,"scaled_rad":59.09978309892139},{"average":0.35136747720375283,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":149.46667676675514,"scaled_rad":32.62223568900686},{"average":0.321421920510553,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":132.6213010973087,"scaled_rad":10.161734796411622},{"average":0.3061107325168306,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":124.0082465349154,"scaled_rad":-1.322337953446123},{"average":0.30019768706014927,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":120.68196099984203,"scaled_rad":-5.757385333543937},{"average":0.29067461998437955,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":115.32491774764208,"scaled_rad":-12.900109669810547},{"average":0.2707830085485611,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":104.13522203618747,"scaled_rad":-27.81970395175003},{"average":0.23659641327401607,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":84.90412053558298,"scaled_rad":-53.461172619222694},{"average":0.212715690884374,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":71.47041669655458,"scaled_rad":-71.37277773792722},{"average":0.19792618040122237,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":63.150823155236985,"scaled_rad":-82.46556912635069},{"average":0.15743068414943656,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":40.37075416968028,"scaled_rad":-112.83899444042629},{"average":0.14004156689899153,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":30.588795008095655,"scaled_rad":-125.88160665587246},{"average":0.12919292358709794,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":24.486070855561387,"scaled_rad":-134.01857219258483},{"average":0.12401001302301336,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":21.57051058037126,"scaled_rad":-137.90598589283832},{"average":0.11997520485606529,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":19.300796244360097,"scaled_rad":-140.93227167418655},{"average":0.1216140761698058,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":20.222716088318357,"scaled_rad":-139.70304521557551},{"average":0.12452124614321491,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":21.858096283074662,"scaled_rad":-137.52253828923378},{"average":0.127134961080349,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":23.328398220018297,"scaled_rad":-135.56213570664227},{"average":0.13334973267886652,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":26.82441478599542,"scaled_rad":-130.90078028533944},{"average":0.12727616273886747,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":23.40782886835327,"scaled_rad":-135.45622817552896},{"average":0.13640014992971441,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":28.540376358042657,"scaled_rad":-128.61283152260978},{"average":0.13924836158098045,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":30.142590527684924,"scaled_rad":-126.47654596308676},{"average":0.1415409773918636,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":31.432263483032234,"scaled_rad":-124.75698202262369},{"average":0.14542431972318173,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":33.61677322831183,"scaled_rad":-121.84430236225089},{"average":0.14642296255940154,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":34.17854317328481,"scaled_rad":-121.09527576895358},{"average":0.14635873406734232,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":34.14241250159603,"scaled_rad":-121.14344999787195},{"average":0.14451638999085198,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":33.106032433634006,"scaled_rad":-122.52529008848799},{"average":0.14998120988080155,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":36.18017611896306,"scaled_rad":-118.4264318413826},{"average":0.15971075188083175,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":41.653368411273476,"scaled_rad":-111.12884211830203},{"average":0.16546855779931818,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":44.892326521899996,"scaled_rad":-106.81023130413334},{"average":0.17173575333622973,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":48.41783330391708,"scaled_rad":-102.10955559477722},{"average":0.17394578355942975,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":49.66104910825338,"scaled_rad":-100.45193452232883},{"average":0.17642894050069952,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":51.05790781254929,"scaled_rad":-98.58945624993427},{"average":0.1754623416936647,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":50.51416370410071,"scaled_rad":-99.31444839453238},{"average":0.17096036004699622,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":47.981648684525034,"scaled_rad":-102.69113508729995},{"average":0.16614181707105177,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":45.271057345690814,"scaled_rad":-106.30525687241224},{"average":0.16286084296749648,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":43.42539984456762,"scaled_rad":-108.7661335405765},{"average":0.15492679727188466,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":38.962234183951075,"scaled_rad":-114.71702108806522},{"average":0.1417900809254692,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":31.572392539478372,"scaled_rad":-124.5701432806955},{"average":0.13032118135813062,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":25.120753529847207,"scaled_rad":-133.17232862687038},{"average":0.1276292319681977,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":23.6064421005708,"scaled_rad":-135.19141053257226},{"average":0.1320033766251608,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":26.067044544330933,"scaled_rad":-131.9106072742254},{"average":0.13499282688530365,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":27.7487101481187,"scaled_rad":-129.66838646917506},{"average":0.13202010458622102,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":26.07645458105626,"scaled_rad":-131.89806055859165},{"average":0.12702646033797074,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":23.26736292905673,"scaled_rad":-135.643516094591},{"average":0.1207015701118705,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":19.70940095766138,"scaled_rad":-140.38746538978484},{"average":0.11621174481472027,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":17.18372429065006,"scaled_rad":-143.75503427913327},{"average":0.12327448652373461,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":21.156752361677103,"scaled_rad":-138.45766351776388},{"average":0.1352375717619009,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":27.886387314440654,"scaled_rad":-129.48481691407912},{"average":0.14296291976100356,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":32.232153551327556,"scaled_rad":-123.69046193156325},{"average":0.14768943734399756,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":34.89097753344636,"scaled_rad":-120.1453632887382},{"average":0.15255279652522172,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":37.62677948438408,"scaled_rad":-116.49762735415456},{"average":0.156133894378006,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":39.641266617057695,"scaled_rad":-113.81164451058973},{"average":0.15601246346903477,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":39.57295767558568,"scaled_rad":-113.90272309921909},{"average":0.15886939523146462,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":41.18007719896502,"scaled_rad":-111.75989706804663},{"average":0.16153945811764078,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":42.68207673898017,"scaled_rad":-109.7572310146931},{"average":0.16325178598831602,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":43.645318349290186,"scaled_rad":-108.47290886761309},{"average":0.16400273505541305,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":44.067752277417576,"scaled_rad":-107.90966363010989},{"average":0.16745676505628654,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":46.0107594999704,"scaled_rad":-105.3189873333728},{"average":0.17651767578652705,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":51.1078243741352,"scaled_rad":-98.52290083448639},{"average":0.18650338286764168,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":56.72511807916843,"scaled_rad":-91.0331758944421},{"average":0.18685503195726913,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":56.922932435377696,"scaled_rad":-90.7694234194964},{"average":0.18350320142289422,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":55.037415825673506,"scaled_rad":-93.28344556576866},{"average":0.18181498903911594,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":54.08773998207783,"scaled_rad":-94.54968002389623},{"average":0.17932820268988128,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":52.688839614597875,"scaled_rad":-96.41488051386949},{"average":0.1748979067229436,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":50.19665018380844,"scaled_rad":-99.73779975492208},{"average":0.17236779994447768,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":48.77338062820355,"scaled_rad":-101.6354924957286},{"average":0.1715904759121291,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":48.33610990133226,"scaled_rad":-102.21852013155699},{"average":0.17070153879691574,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":47.83605308803938,"scaled_rad":-102.88526254928082},{"average":0.16876654125059704,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":46.747552349143525,"scaled_rad":-104.33659686780862},{"average":0.16648579776053726,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":45.464557970734596,"scaled_rad":-106.04725603902054},{"average":0.1640138384237992,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":44.07399829293091,"scaled_rad":-107.90133560942544},{"average":0.16275259610606882,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":43.3645073701191,"scaled_rad":-108.84732350650788},{"average":0.1629476135478449,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":43.474211193710346,"scaled_rad":-108.70105174171954},{"average":0.16409435969756192,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":44.119294198424065,"scaled_rad":-107.8409410687679},{"average":0.17642183366115205,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":51.053909977971486,"scaled_rad":-98.59478669603801},{"average":0.20141033352831014,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":65.11077564224479,"scaled_rad":-79.85229914367362},{"average":0.21119737688844142,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":70.61631436986548,"scaled_rad":-72.51158084017936},{"average":0.2229572839269309,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":77.23165480019074,"scaled_rad":-63.691126933079005},{"average":0.23185484990255106,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":82.2368327949963,"scaled_rad":-57.01755627333826},{"average":0.24364879133225417,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":88.87131870695508,"scaled_rad":-48.17157505739323},{"average":0.25497197265424104,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":95.24098633732652,"scaled_rad":-39.67868488356464},{"average":0.2571300545273805,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":96.45497945994269,"scaled_rad":-38.06002738674307},{"average":0.25329682804574505,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":94.29866155372446,"scaled_rad":-40.93511792836739},{"average":0.25189618063819785,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":93.51075061246863,"scaled_rad":-41.985665850041826},{"average":0.254405870831675,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":94.92253515720707,"scaled_rad":-40.10328645705725},{"average":0.25571877224538814,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":95.66108604666064,"scaled_rad":-39.11855193778581},{"average":0.25117643630350434,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":93.10587038839782,"scaled_rad":-42.525506148802904},{"average":0.24820815444925176,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":91.4361127198406,"scaled_rad":-44.75184970687921},{"average":0.2446555982128169,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":89.43768119950857,"scaled_rad":-47.416425067321896},{"average":0.2430973168487295,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":88.56109589352525,"scaled_rad":-48.58520547529966},{"average":0.24817131031535777,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":91.41538666411826,"scaled_rad":-44.77948444784232},{"average":0.2515029016061858,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":93.28951802343938,"scaled_rad":-42.280642635414154},{"average":0.24661652838845924,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":90.54076990841709,"scaled_rad":-45.94564012211053},{"average":0.2372317411806954,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":85.26151369981581,"scaled_rad":-52.98464840024559},{"average":0.22904282101652526,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":80.65497263912228,"scaled_rad":-59.12670314783695},{"average":0.2264476822296216,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":79.19512040703235,"scaled_rad":-61.07317279062353},{"average":0.21727694954581486,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":74.036277016491,"scaled_rad":-67.95163064467867},{"average":0.19615991604878635,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":62.15724047273195,"scaled_rad":-83.7903460363574},{"average":0.19362769958105716,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":60.732784146463565,"scaled_rad":-85.68962113804858},{"average":0.19332340596034037,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":60.56160882294873,"scaled_rad":-85.91785490273503},{"average":0.19472691784666266,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":61.35113112917459,"scaled_rad":-84.86515849443389},{"average":0.19043213551363652,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":58.93517264292759,"scaled_rad":-88.08643647609655},{"average":0.17166009978711527,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":48.375275656095845,"scaled_rad":-102.16629912520554},{"average":0.173370424320666,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":49.33739032237203,"scaled_rad":-100.88347957017064},{"average":0.19934936063405176,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":63.95140956319598,"scaled_rad":-81.39812058240535},{"average":0.2070206869836488,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":68.26678681818723,"scaled_rad":-75.64428424241703},{"average":0.21730612059251708,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":74.05268670442581,"scaled_rad":-67.92975106076558},{"average":0.22261804289824103,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":77.0408203926251,"scaled_rad":-63.94557280983321},{"average":0.21884978221354248,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":74.92104791671159,"scaled_rad":-66.7719361110512},{"average":0.2173705849149725,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":74.08895003858798,"scaled_rad":-67.88139994854934},{"average":0.22173600932926935,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":76.54464705463654,"scaled_rad":-64.6071372604846},{"average":0.22628684768835258,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":79.1046456065116,"scaled_rad":-61.19380585798453},{"average":0.23002900531118092,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":81.2097342384134,"scaled_rad":-58.38702101544878},{"average":0.23409738344724318,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":83.49833280311779,"scaled_rad":-55.3355562625096},{"average":0.23771299655761635,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":85.53223592081947,"scaled_rad":-52.62368543890736},{"average":0.2412606136042891,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":87.52788898196646,"scaled_rad":-49.96281469071138},{"average":0.2457789917632376,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":90.06962758725987,"scaled_rad":-46.57382988365349},{"average":0.24854694372773223,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":91.62669300282728,"scaled_rad":-44.497742662896954},{"average":0.24878647661851083,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":91.76143825307238,"scaled_rad":-44.318082329236816},{"average":0.2487741086786894,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":91.75448087389645,"scaled_rad":-44.32735883480473},{"average":0.23415997503480157,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":83.53354266136056,"scaled_rad":-55.28860978485258},{"average":0.21697294548525267,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":73.86526458023296,"scaled_rad":-68.17964722635605},{"average":0.2021849037301108,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":65.5464972474689,"scaled_rad":-79.27133700337478},{"average":0.20103776386246092,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":64.90119276326976,"scaled_rad":-80.13174298230697},{"average":0.21129561007250605,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":70.67157381639132,"scaled_rad":-72.4379015781449},{"average":0.2243247247227463,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":78.00088591341525,"scaled_rad":-62.66548544877968},{"average":0.23426134423084596,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":83.59056621935189,"scaled_rad":-55.21257837419748},{"average":0.23434961001671822,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":83.64021867153404,"scaled_rad":-55.14637510462127},{"average":0.22613510851762092,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":79.01928725565732,"scaled_rad":-61.307616992456914},{"average":0.21638360738851667,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":73.53374221991935,"scaled_rad":-68.62167704010753},{"average":0.20550589529693594,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":67.41466590806144,"scaled_rad":-76.78044545591807},{"average":0.2017748614681522,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":65.31583478178797,"scaled_rad":-79.57888695761605},{"average":0.19949129536615,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":64.0312525899005,"scaled_rad":-81.29166321346598},{"average":0.20088102349467826,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":64.81302107205971,"scaled_rad":-80.24930523725371},{"average":0.20223646429731795,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":65.57550178838403,"scaled_rad":-79.23266428215462},{"average":0.20595947862875974,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":67.66982167959219,"scaled_rad":-76.44023776054375},{"average":0.20975205721859566,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":69.80327378924001,"scaled_rad":-73.59563494768},{"average":0.21118237393294734,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":70.60787470637753,"scaled_rad":-72.52283372482997},{"average":0.20594786022168896,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":67.66328593761908,"scaled_rad":-76.44895208317456},{"average":0.20119113111929107,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":64.98746696692427,"scaled_rad":-80.01671071076764},{"average":0.1970273675469735,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":62.645210908937095,"scaled_rad":-83.13971878808387},{"average":0.19427964804063486,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":61.09952692674379,"scaled_rad":-85.20063076434161},{"average":0.18941456179071597,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":58.36275344198996,"scaled_rad":-88.84966207734672},{"average":0.184553140237921,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":55.6280414717506,"scaled_rad":-92.49594470433253},{"average":0.18599272482580953,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":56.43785587725252,"scaled_rad":-91.41619216366331},{"average":0.18752438566485868,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":57.299466248911486,"scaled_rad":-90.26737833478468},{"average":0.19077763586082724,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":59.129528126179416,"scaled_rad":-87.82729583176078},{"average":0.1921636756820386,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":59.90922181230213,"scaled_rad":-86.78770425026383},{"average":0.19852361770454624,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":63.48690158972864,"scaled_rad":-82.01746454702848},{"average":0.20878203934617742,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":69.25760634233383,"scaled_rad":-74.32319154355488},{"average":0.2226847140359755,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":77.07832513407817,"scaled_rad":-63.89556648789578},{"average":0.23950022538295068,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":86.53761181943675,"scaled_rad":-51.283184240751},{"average":0.24116393353876828,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":87.47350321648777,"scaled_rad":-50.03532904468297},{"average":0.2335429833442898,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":83.18646423105848,"scaled_rad":-55.751381025255355},{"average":0.2256656467408777,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":78.75519932859996,"scaled_rad":-61.65973422853338},{"average":0.2163969543776549,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":73.54125034703127,"scaled_rad":-68.61166620395831},{"average":0.21274139876593737,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":71.48487823844667,"scaled_rad":-71.3534956820711},{"average":0.21091059352553101,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":70.45498915112042,"scaled_rad":-72.72668113183944},{"average":0.20830377789772087,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":68.98856830607339,"scaled_rad":-74.68190892523548},{"average":0.2040844396662007,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":66.61504964637336,"scaled_rad":-77.84660047150217},{"average":0.20057794178322738,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":64.64252748797857,"scaled_rad":-80.47663001602858},{"average":0.19765527547446377,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":62.99843008708645,"scaled_rad":-82.66875988388473},{"average":0.19350716184834307,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":60.66497764646375,"scaled_rad":-85.780029804715},{"average":0.1890299518225965,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":58.14639749090298,"scaled_rad":-89.13813667879603},{"average":0.18485190593297773,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":55.79610715247701,"scaled_rad":-92.27185713003064},{"average":0.1833494501288282,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":54.950925588248936,"scaled_rad":-93.39876588233474},{"average":0.1867591422506469,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":56.86899127317345,"scaled_rad":-90.84134496910207},{"average":0.18821998493585446,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":57.690764068329806,"scaled_rad":-89.74564790889359},{"average":0.18248728150621554,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":54.46592694597566,"scaled_rad":-94.04543073869911},{"average":0.18505550406841317,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":55.910637902803245,"scaled_rad":-92.119149462929},{"average":0.19266026473463807,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":60.18856973794187,"scaled_rad":-86.41524034941084},{"average":0.19287383163512825,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":60.308708251517515,"scaled_rad":-86.25505566464331},{"average":0.19358282841238536,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":60.70754261561651,"scaled_rad":-85.7232765125113},{"average":0.1941346159605401,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":61.01794153835553,"scaled_rad":-85.30941128219263},{"average":0.1953856974068042,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":61.721716631646046,"scaled_rad":-84.3710444911386},{"average":0.19500011256595598,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":61.50481228209335,"scaled_rad":-84.66025029054221},{"average":0.19433996459448521,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":61.13345700255121,"scaled_rad":-85.15539066326505},{"average":0.12564591778067827,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":22.490761637469088,"scaled_rad":-136.67898448337456},{"average":0.12655702271258756,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":23.003288587945942,"scaled_rad":-135.99561521607208},{"average":0.130547318058704,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":25.247962975737153,"scaled_rad":-133.00271603235046},{"average":0.1369525215636942,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":28.851103848563756,"scaled_rad":-128.198528201915},{"average":0.15073777875626118,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":36.60577137696747,"scaled_rad":-117.8589714973767},{"average":0.1700376451255046,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":47.46259072719342,"scaled_rad":-103.3832123637421},{"average":0.1795637125800383,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":52.82132179264555,"scaled_rad":-96.23823760980594},{"average":0.18422039721478173,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":55.440862409307556,"scaled_rad":-92.74551678758992},{"average":0.19056543714740412,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":59.01015926351948,"scaled_rad":-87.98645431530736},{"average":0.19587199870642705,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":61.995277352677725,"scaled_rad":-84.00629686309637},{"average":0.19872564668151682,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":63.60054963601646,"scaled_rad":-81.86593381864472},{"average":0.19949026538032213,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":64.03067318847604,"scaled_rad":-81.29243574869861},{"average":0.20321723299611147,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":66.1272169341493,"scaled_rad":-78.49704408780092},{"average":0.2099428345909396,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":69.91059243217889,"scaled_rad":-73.45254342376148},{"average":0.2169511225872693,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":73.85298847134335,"scaled_rad":-68.1960153715422},{"average":0.22325602477768702,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":77.39970650516838,"scaled_rad":-63.46705799310881},{"average":0.24063979406991517,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":87.17865726166137,"scaled_rad":-50.4284569844515},{"average":0.2612994481525305,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":98.80040261066326,"scaled_rad":-34.932796519115655},{"average":0.2830372222985998,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":111.02862649909314,"scaled_rad":-18.628498001209152},{"average":0.3052076650018489,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":123.50024089986925,"scaled_rad":-1.9996788001743084},{"average":0.3242740877795613,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":134.22574043402852,"scaled_rad":12.300987245371374},{"average":0.3251011805993374,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":134.69100776585256,"scaled_rad":12.921343687803414},{"average":0.3121053886400973,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":127.38044079532489,"scaled_rad":3.173921060433173},{"average":0.31263343829406537,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":127.67748635985878,"scaled_rad":3.5699818131450627},{"average":0.32599393164886165,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":135.19321004456137,"scaled_rad":13.590946726081825},{"average":0.34458082255504624,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":145.64895688705693,"scaled_rad":27.53194251607593},{"average":0.34641056201656995,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":146.67824643817013,"scaled_rad":28.904328584226846},{"average":0.352147507886029,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":149.90547007459907,"scaled_rad":33.207293432798735},{"average":0.35548300764282664,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":151.78180007655095,"scaled_rad":35.70906676873463},{"average":0.35742028414241933,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":152.87158280276893,"scaled_rad":37.16211040369191},{"average":0.36091195093683687,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":154.835761978568,"scaled_rad":39.78101597142404},{"average":0.36836220005961806,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":159.02677591061868,"scaled_rad":45.369034547491594},{"average":0.36848705250338504,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":159.09700957967516,"scaled_rad":45.4626794395669},{"average":0.3050467537477713,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":123.40972294583186,"scaled_rad":-2.1203694055575113},{"average":0.2975251284601511,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":119.17855753745785,"scaled_rad":-7.761923283389535},{"average":0.2853576898906941,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":112.33396701147976,"scaled_rad":-16.88804398469364},{"average":0.28154491186893604,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":110.1891520468173,"scaled_rad":-19.74779727091027},{"average":0.27760092522479407,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":107.9705278503622,"scaled_rad":-22.70596286618371},{"average":0.2773786466952033,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":107.8454887544933,"scaled_rad":-22.872681660675596},{"average":0.2767530845886364,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":107.49358917895185,"scaled_rad":-23.341881094730866},{"average":0.2753189558060109,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":106.68684384610657,"scaled_rad":-24.417541538524546},{"average":0.18773488142026037,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":57.417877140814205,"scaled_rad":-90.10949714558106},{"average":0.1964878878480046,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":62.34173556238478,"scaled_rad":-83.54435258348697},{"average":0.2015711644614445,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":65.20124841306927,"scaled_rad":-79.73166878257429},{"average":0.20364107621055694,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":66.36564289648584,"scaled_rad":-78.17914280468553},{"average":0.20413098543635888,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":66.64123319647967,"scaled_rad":-77.81168907136042},{"average":0.20336883601429648,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":66.2124986946493,"scaled_rad":-78.38333507380094},{"average":0.20616276781756634,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":67.78417863712245,"scaled_rad":-76.28776181717006},{"average":0.21327890173560504,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":71.78724160875433,"scaled_rad":-70.9503445216609},{"average":0.2239475391647875,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":77.78870644098123,"scaled_rad":-62.94839141202503},{"average":0.22430947503231458,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":77.99230745328516,"scaled_rad":-62.67692339561977},{"average":0.22086949270520492,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":76.05720251634547,"scaled_rad":-65.25706331153937},{"average":0.22604424385412253,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":78.96817284802114,"scaled_rad":-61.3757695359718},{"average":0.24714682988499062,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":90.83908220959296,"scaled_rad":-45.54789038720939},{"average":0.26903653118726756,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":103.15277019698512,"scaled_rad":-29.129639737353187},{"average":0.2787410412170148,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":108.61188117007069,"scaled_rad":-21.850825106572415},{"average":0.28544410145614435,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":112.38257640275299,"scaled_rad":-16.823231462996006},{"average":0.288835208149006,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":114.2901871632302,"scaled_rad":-14.27975044902638},{"average":0.31173555464210334,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":127.17239682087587,"scaled_rad":2.896529094501176},{"average":0.32503173232612065,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":134.6519407929485,"scaled_rad":12.869254390598002},{"average":0.33341553670835156,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":139.3681107344444,"scaled_rad":19.15748097925922},{"average":0.3342891093389985,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":139.85952451207294,"scaled_rad":19.812699349430602},{"average":0.3341239862779074,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":139.76663727593748,"scaled_rad":19.68884970124998},{"average":0.3352671929062998,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":140.40972918170408,"scaled_rad":20.54630557560543},{"average":0.33603262962749453,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":140.84031289907549,"scaled_rad":21.120417198767313},{"average":0.3279425684142969,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":136.28938329969094,"scaled_rad":15.052511066254596},{"average":0.3113998089182075,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":126.9835286389823,"scaled_rad":2.6447048519763996},{"average":0.2943493222114456,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":117.39206046675994,"scaled_rad":-10.143919377653418},{"average":0.2849626977449381,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":112.11177073876023,"scaled_rad":-17.18430568165303},{"average":0.27447208446013444,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":106.21045043284876,"scaled_rad":-25.052732756201635},{"average":0.2701705475158332,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":103.7906922521898,"scaled_rad":-28.279076997080267},{"average":0.2685460014131411,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":102.87683081783558,"scaled_rad":-29.497558909552538},{"average":0.27030880674565555,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":103.86846768612104,"scaled_rad":-28.175376418505294},{"average":0.26504968748187385,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":100.91003747236772,"scaled_rad":-32.119950036843036},{"average":0.25177457780539864,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":93.44234495810198,"scaled_rad":-42.076873389197345},{"average":0.2236051505386854,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":77.59610140475743,"scaled_rad":-63.20519812699008},{"average":0.19240519753686156,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":60.045085921243476,"scaled_rad":-86.6065521050087},{"average":0.17803298522956854,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":51.96023653948626,"scaled_rad":-97.38635128068498},{"average":0.16766201968711425,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":46.126222084273316,"scaled_rad":-105.16503722096891},{"average":0.1581757619575552,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":40.78988531856209,"scaled_rad":-112.28015290858389},{"average":0.15905276187582174,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":41.28322705993063,"scaled_rad":-111.62236392009248},{"average":0.15797466643326746,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":40.676762370580946,"scaled_rad":-112.43098350589207},{"average":0.1546968046660276,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":38.832855662571404,"scaled_rad":-114.88952578323813},{"average":0.14894324553299693,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":35.59628651058482,"scaled_rad":-119.20495131922024},{"average":0.14992562153495212,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":36.148905818054295,"scaled_rad":-118.4681255759276},{"average":0.16552024314032723,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":44.9214012522455,"scaled_rad":-106.77146499700599},{"average":0.17545603714137964,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":50.51061718290033,"scaled_rad":-99.31917708946622},{"average":0.18626721437652538,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":56.592265416087244,"scaled_rad":-91.21031277855035},{"average":0.20664390069802252,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":68.05483194977393,"scaled_rad":-75.92689073363476},{"average":0.23423851384569916,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":83.5777233652879,"scaled_rad":-55.22970217961614},{"average":0.2581823873090563,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":97.04695179220617,"scaled_rad":-37.2707309437251},{"average":0.26146500711172405,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":98.89353505403811,"scaled_rad":-34.80861992794918},{"average":0.24946019799741143,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":92.14042902757667,"scaled_rad":-43.81276129656443},{"average":0.2513288362127574,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":93.19160042673572,"scaled_rad":-42.41119943101904},{"average":0.25311733975434797,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":94.19769339581616,"scaled_rad":-41.06974213891178},{"average":0.26219436240789706,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":99.30382176489846,"scaled_rad":-34.26157098013539},{"average":0.2671893089711849,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":102.11364601259733,"scaled_rad":-30.51513864987021},{"average":0.27736705400614586,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":107.83896747976155,"scaled_rad":-22.881376693651248},{"average":0.2912454886933493,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":115.64605046055343,"scaled_rad":-12.4719327192621},{"average":0.29864964533496546,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":119.81113583269392,"scaled_rad":-6.918485556408086},{"average":0.29865066117766786,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":119.81170727813802,"scaled_rad":-6.917723629149322},{"average":0.3293399726895771,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":137.0754698707424,"scaled_rad":16.100626494323222},{"average":0.3312761708225575,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":138.16464597972896,"scaled_rad":17.552861306305317},{"average":0.3312818400283098,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":138.1678350972873,"scaled_rad":17.557113463049774},{"average":0.32339375128594283,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":133.73052175759986,"scaled_rad":11.640695676799822},{"average":0.3050690774556274,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":123.42228077699939,"scaled_rad":-2.103625630667466},{"average":0.29104170651643213,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":115.53141618074766,"scaled_rad":-12.624778425669774},{"average":0.2973248956983491,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":119.0659199221868,"scaled_rad":-7.9121067704176085},{"average":0.2923996530439794,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":116.29530645101099,"scaled_rad":-11.606258065318684},{"average":0.2965609673152375,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":118.63618469535798,"scaled_rad":-8.485087072856004},{"average":0.3018705269972548,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":121.62298932882264,"scaled_rad":-4.502680894903136},{"average":0.3021857590295417,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":121.80031787413307,"scaled_rad":-4.266242834489248},{"average":0.300906170788553,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":121.08050675682777,"scaled_rad":-5.2259909908962925},{"average":0.29980593890100354,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":120.46158957792346,"scaled_rad":-6.051213896102041},{"average":0.2993608486615379,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":120.21121145447033,"scaled_rad":-6.38505139403955},{"average":0.2973781388277223,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":119.09587096050937,"scaled_rad":-7.872172052654179},{"average":0.2608280070141206,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":98.53520122656779,"scaled_rad":-35.28639836457627},{"average":0.2040109055722511,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":66.5736842628614,"scaled_rad":-77.9017543161848},{"average":0.16047921130787135,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":42.08565250162565,"scaled_rad":-110.5524633311658},{"average":0.14738447416216668,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":34.7194255594449,"scaled_rad":-120.37409925407346},{"average":0.1436619405399129,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":32.62537608320825,"scaled_rad":-123.166165222389},{"average":0.1421446637651133,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":31.771857228044365,"scaled_rad":-124.30419036260751},{"average":0.1432836008278944,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":32.41254736057278,"scaled_rad":-123.44993685256962},{"average":0.14314293294589112,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":32.333416979353025,"scaled_rad":-123.55544402752929},{"average":0.1420033529104856,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":31.69236515325135,"scaled_rad":-124.41017979566486},{"average":0.14024926420766107,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":30.705631680257635,"scaled_rad":-125.72582442632316},{"average":0.134974742732239,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":27.73853720810096,"scaled_rad":-129.6819503891987},{"average":0.1323794277663897,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":26.278585869470614,"scaled_rad":-131.62855217403919},{"average":0.13472092792825968,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":27.595757904737084,"scaled_rad":-129.87232279368388},{"average":0.13508135332306997,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":27.79850922569572,"scaled_rad":-129.60198769907237},{"average":0.13392758332464047,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":27.149475071520346,"scaled_rad":-130.4673665713062},{"average":0.13357650530852058,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":26.951981963230047,"scaled_rad":-130.73069071569327},{"average":0.13305702495755573,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":26.65975691780666,"scaled_rad":-131.1203241095911},{"average":0.22418943685532122,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":77.92478197006089,"scaled_rad":-62.76695737325214},{"average":0.19990986196995744,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":64.26671028254117,"scaled_rad":-80.97771962327845},{"average":0.17604338415823967,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":50.84101949429175,"scaled_rad":-98.87864067427766},{"average":0.1774108531956605,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":51.61026649436242,"scaled_rad":-97.85297800751678},{"average":0.17951483722145278,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":52.79382777125242,"scaled_rad":-96.27489630499679},{"average":0.18277298237232012,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":54.626643224117544,"scaled_rad":-93.83114236784327},{"average":0.18542789525932524,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":56.12012038366595,"scaled_rad":-91.8398394884454},{"average":0.18543785613928887,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":56.125723711288295,"scaled_rad":-91.83236838494894},{"average":0.18449004684033504,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":55.59254932860943,"scaled_rad":-92.5432675618541},{"average":0.18493257164805227,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":55.84148431103168,"scaled_rad":-92.21135425195776},{"average":0.18470284085322175,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":55.712253067097606,"scaled_rad":-92.3836625772032},{"average":0.18411096782136332,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":55.379304721123674,"scaled_rad":-92.82759370516843},{"average":0.17848187539699545,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":52.2127522493159,"scaled_rad":-97.0496636675788},{"average":0.16870018421882196,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":46.710224302782166,"scaled_rad":-104.38636759629044},{"average":0.17097941002991784,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":47.992364936091136,"scaled_rad":-102.67684675187849},{"average":0.1717233629534578,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":48.410863299832,"scaled_rad":-102.11884893355733},{"average":0.16794299973432053,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":46.28428274413353,"scaled_rad":-104.95428967448862},{"average":0.16138089177521103,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":42.592877876052846,"scaled_rad":-109.87616283192953},{"average":0.15299742053238244,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":37.8768953365959,"scaled_rad":-116.16413955120547},{"average":0.14532368907738544,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":33.56016512949887,"scaled_rad":-121.91977982733484},{"average":0.1425054480332153,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":31.974810427214123,"scaled_rad":-124.03358609704783},{"average":0.14066438038166185,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":30.93914839090521,"scaled_rad":-125.41446881212639},{"average":0.14055789548984235,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":30.879247083202117,"scaled_rad":-125.49433722239718},{"average":0.1395651277366365,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":30.32078206862243,"scaled_rad":-126.23895724183676},{"average":0.1396599183000624,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":30.374104926072945,"scaled_rad":-126.1678600985694},{"average":0.13920710690510196,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":30.119383394806604,"scaled_rad":-126.50748880692453},{"average":0.13935945564873523,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":30.205084650774683,"scaled_rad":-126.39322046563376},{"average":0.14257058750836554,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":32.011453557313814,"scaled_rad":-123.98472859024825},{"average":0.14559717922688672,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":33.714012471775476,"scaled_rad":-121.71465003763268},{"average":0.14671798566293098,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":34.34450352129357,"scaled_rad":-120.8739953049419},{"average":0.1468110753651426,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":34.39686958751092,"scaled_rad":-120.80417388331878},{"average":0.18407790837671992,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":55.36070767949419,"scaled_rad":-92.85238976067441},{"average":0.1968788602604773,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":62.56167060089377,"scaled_rad":-83.25110586547497},{"average":0.20685778031383273,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":68.1751463761602,"scaled_rad":-75.76647149845307},{"average":0.21523137503633819,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":72.88557304310976,"scaled_rad":-69.485902609187},{"average":0.31260472030925207,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":127.66133153436645,"scaled_rad":3.548442045821929},{"average":0.29091859700092987,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":115.462162967045,"scaled_rad":-12.717116043939996},{"average":0.2933445743967398,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":116.82685626751329,"scaled_rad":-10.897524976648924},{"average":0.2957283680385768,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":118.16781979764869,"scaled_rad":-9.109573603135061},{"average":0.2990658624982739,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":120.04527188659449,"scaled_rad":-6.6063041512073255},{"average":0.3033112005592695,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":122.43341631863674,"scaled_rad":-3.422111575151007},{"average":0.30631399401683723,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":124.12258791657102,"scaled_rad":-1.1698827779052863},{"average":0.3078832536628078,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":125.00534887273248,"scaled_rad":0.007131830309987208},{"average":0.255108582678888,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":95.3178340382715,"scaled_rad":-39.57622128230467},{"average":0.23253264993074393,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":82.61811794593368,"scaled_rad":-56.50917607208842},{"average":0.2215506768091266,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":76.44039132289124,"scaled_rad":-64.74614490281168},{"average":0.2166926609285761,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":73.70759515702154,"scaled_rad":-68.38987312397126},{"average":0.20622821003671113,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":67.82099207082918,"scaled_rad":-76.23867723889443},{"average":0.19437231985400483,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":61.15165791653235,"scaled_rad":-85.13112277795686},{"average":0.18220910121013623,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":54.30944123962183,"scaled_rad":-94.25407834717089},{"average":0.1721538606771546,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":48.65303264584924,"scaled_rad":-101.79595647220103},{"average":0.1584398508680742,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":40.93844414995751,"scaled_rad":-112.08207446672331},{"average":0.15739251699893958,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":40.349283872936724,"scaled_rad":-112.86762150275104},{"average":0.1594026848200978,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":41.480070401735254,"scaled_rad":-111.35990613101966},{"average":0.1585065561011728,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":40.975968071191524,"scaled_rad":-112.03204257174463},{"average":0.15749023351649058,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":40.404252677294615,"scaled_rad":-112.79432976360718},{"average":0.1565017559489097,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":39.84820103539938,"scaled_rad":-113.53573195280083},{"average":0.1558347619405223,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":39.47299463146877,"scaled_rad":-114.03600715804164},{"average":0.15670208887718234,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":39.9608949976552,"scaled_rad":-113.38547333645973},{"average":0.1583601014104468,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":40.89358241681521,"scaled_rad":-112.14189011091305},{"average":0.158945858165657,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":41.22309015292194,"scaled_rad":-111.70254646277074},{"average":0.15935034316751165,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":41.45062647421015,"scaled_rad":-111.39916470105314},{"average":0.1573284291878777,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":40.31323233900699,"scaled_rad":-112.91569021465735},{"average":0.15609885410043656,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":39.621555290757556,"scaled_rad":-113.83792627898993},{"average":0.1625799217415372,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":43.26737227362318,"scaled_rad":-108.97683696850243},{"average":0.1721499066533054,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":48.650808375389744,"scaled_rad":-101.79892216614701},{"average":0.18071607250227856,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":53.46956273187508,"scaled_rad":-95.3739163574999},{"average":0.19531431844706287,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":61.681563583096775,"scaled_rad":-84.42458188920429},{"average":0.17977747630398228,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":52.94157102598685,"scaled_rad":-96.07790529868419},{"average":0.18392577742780825,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":55.27512894033025,"scaled_rad":-92.96649474622633},{"average":0.18533859146833537,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":56.06988401894104,"scaled_rad":-91.90682130807862},{"average":0.18876586391319586,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":57.99783922267006,"scaled_rad":-89.33621436977324},{"average":0.1930766268509032,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":60.422787332721285,"scaled_rad":-86.10295022303828},{"average":0.19899925453060044,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":63.754463188238695,"scaled_rad":-81.66071574901507},{"average":0.2069965485709847,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":68.25320815496326,"scaled_rad":-75.66238912671564},{"average":0.2165121786787037,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":73.60606786427773,"scaled_rad":-68.52524284762968},{"average":0.2452404370566474,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":89.76667257981063,"scaled_rad":-46.97776989358583},{"average":0.276178026544875,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":107.1700998253177,"scaled_rad":-23.773200232909716},{"average":0.29886952619751683,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":119.93482616078326,"scaled_rad":-6.753565118955635},{"average":0.30717902114859064,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":124.60919456569566,"scaled_rad":-0.5210739124057682},{"average":0.31090953805467847,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":126.70773490569012,"scaled_rad":2.276979874253499},{"average":0.3224919631095267,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":133.22323579322023,"scaled_rad":10.96431439096034},{"average":0.3288102677984686,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":136.77749318004052,"scaled_rad":15.70332424005403},{"average":0.338194982312116,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":142.05670849577368,"scaled_rad":22.742277994364912},{"average":0.3391452354801004,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":142.59125763639506,"scaled_rad":23.455010181860104},{"average":0.32512782992084527,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":134.70599889915275,"scaled_rad":12.941331865536995},{"average":0.31677368444962767,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":130.00651308555882,"scaled_rad":6.675350780745106},{"average":0.3099650588283374,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":126.17643380006344,"scaled_rad":1.56857840008459},{"average":0.30772859996327095,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":124.91835100209484,"scaled_rad":-0.10886533054019765},{"average":0.30192036964507596,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":121.65102748271336,"scaled_rad":-4.465296689715501},{"average":0.2926226902378553,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":116.4207723208758,"scaled_rad":-11.43897023883224},{"average":0.28005603893598696,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":109.35161130123839,"scaled_rad":-20.864518265015448},{"average":0.2695087301573858,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":103.41839788672426,"scaled_rad":-28.775469484367648},{"average":0.27204583025381185,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":104.84560141722302,"scaled_rad":-26.872531443702627},{"average":0.28268011467031234,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":110.82774153260016,"scaled_rad":-18.89634462319978},{"average":0.2854941265345292,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":112.41071717992806,"scaled_rad":-16.78571042676259},{"average":0.27449714133594166,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":106.22454576226274,"scaled_rad":-25.033938983649676},{"average":0.2579446971095053,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":96.91324311731313,"scaled_rad":-37.44900917691582},{"average":0.2449155480636352,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":89.58391167159877,"scaled_rad":-47.221451104534964},{"average":0.2394289380500039,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":86.49751031401928,"scaled_rad":-51.33665291464095},{"average":0.23370274571667177,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":83.27633590077525,"scaled_rad":-55.63155213229966},{"average":0.22545123584409485,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":78.6345860389245,"scaled_rad":-61.82055194810066},{"average":0.2178310758273115,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":74.34799155483665,"scaled_rad":-67.53601126021779},{"average":0.20871903581278253,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":69.22216475080114,"scaled_rad":-74.37044699893181},{"average":0.20044389801720777,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":64.56712339321146,"scaled_rad":-80.57716880905137},{"average":0.1953184325551107,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":61.68387790626399,"scaled_rad":-84.42149612498135},{"average":0.19156813642766116,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":59.57421109372804,"scaled_rad":-87.23438520836261},{"average":0.18643792156754563,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":56.68829391178941,"scaled_rad":-91.08227478428078},{"average":0.18340564319206512,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":54.98253606288266,"scaled_rad":-93.35661858282312},{"average":0.18365510266987567,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":55.122865349830825,"scaled_rad":-93.16951286689223},{"average":0.18269531168648648,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":54.58295086952965,"scaled_rad":-93.88939884062714},{"average":0.17176063515168155,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":48.431830156035005,"scaled_rad":-102.09089312528666},{"average":0.1145670844329783,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":16.258547902615504,"scaled_rad":-144.98860279651265},{"average":0.1195085807626095,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":19.038304608916146,"scaled_rad":-141.28226052144515},{"average":0.12432889892183906,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":21.749894547630344,"scaled_rad":-137.66680726982622},{"average":0.12697139942234245,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":23.236389325260852,"scaled_rad":-135.68481423298553},{"average":0.1471244514766034,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":34.57315411537834,"scaled_rad":-120.56912784616222},{"average":0.1651431724847202,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":44.70928641622153,"scaled_rad":-107.05428477837128},{"average":0.17948803234968905,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":52.77874913573872,"scaled_rad":-96.29500115234836},{"average":0.18665743618485786,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":56.811778214701,"scaled_rad":-90.91762904706532},{"average":0.18386715055889635,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":55.24214936872761,"scaled_rad":-93.01046750836318},{"average":0.17770186074158412,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":51.77396795711867,"scaled_rad":-97.63470939050843},{"average":0.173638270987919,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":49.48806301742034,"scaled_rad":-100.68258264343955},{"average":0.16837110999927193,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":46.525109064877476,"scaled_rad":-104.6331879134967},{"average":0.1586951044273491,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":41.08203280122228,"scaled_rad":-111.89062293170362},{"average":0.147313912279162,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":34.67973214384621,"scaled_rad":-120.42702380820506},{"average":0.1418123728224147,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":31.584932475946385,"scaled_rad":-124.55342336540483},{"average":0.13624321898252997,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":28.45209745955471,"scaled_rad":-128.7305367205937},{"average":0.13050157326944573,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":25.22223000413571,"scaled_rad":-133.03702666115237},{"average":0.144333881850492,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":33.00336550983646,"scaled_rad":-122.66217932021804},{"average":0.13507261959562852,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":27.793596212347758,"scaled_rad":-129.6085383835363},{"average":0.1326606927205936,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":26.436806799031444,"scaled_rad":-131.41759093462474},{"average":0.13836756066999117,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":29.64711060097599,"scaled_rad":-127.13718586536535},{"average":0.1333511087439466,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":26.82518886855655,"scaled_rad":-130.89974817525794},{"average":0.12641141275764653,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":22.921378125658567,"scaled_rad":-136.10482916578857},{"average":0.1271518483595321,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":23.337897878508166,"scaled_rad":-135.54946949532246},{"average":0.12600826478461988,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":22.694593927736076,"scaled_rad":-136.4072080963519},{"average":0.12570705234297289,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":22.525151870343734,"scaled_rad":-136.63313083954168},{"average":0.12609927414673472,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":22.745789733176196,"scaled_rad":-136.33894702243174},{"average":0.13603230385291418,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":28.333450655651585,"scaled_rad":-128.88873245913123},{"average":0.1429215150184656,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":32.208862000941814,"scaled_rad":-123.72151733207758},{"average":0.14158637400461738,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":31.457800593722556,"scaled_rad":-124.72293254170326},{"average":0.13874785752071964,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":29.861040279494308,"scaled_rad":-126.85194629400759},{"average":0.13522724624838411,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":27.880578868267744,"scaled_rad":-129.49256150897634},{"average":0.12182773078670939,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":20.34290394530583,"scaled_rad":-139.54279473959224},{"average":0.11100847962341182,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":14.256713857905321,"scaled_rad":-147.65771485612623},{"average":0.113803306594491,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":15.828897362165275,"scaled_rad":-145.56147018377965},{"average":0.113803306594491,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":15.828897362165275,"scaled_rad":-145.56147018377965},{"average":0.113803306594491,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":15.828897362165275,"scaled_rad":-145.56147018377965},{"average":0.113803306594491,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":15.828897362165275,"scaled_rad":-145.56147018377965},{"average":0.113803306594491,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":15.828897362165275,"scaled_rad":-145.56147018377965},{"average":0.113803306594491,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":15.828897362165275,"scaled_rad":-145.56147018377965},{"average":0.113803306594491,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":15.828897362165275,"scaled_rad":-145.56147018377965},{"average":0.11381984804748083,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":15.838202481872576,"scaled_rad":-145.54906335750323},{"average":0.15729364083067093,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":40.29366272632371,"scaled_rad":-112.94178303156838},{"average":0.16479983765537048,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":44.51614910907256,"scaled_rad":-107.31180118790326},{"average":0.17051737010478973,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":47.73245204841945,"scaled_rad":-103.02339726877406},{"average":0.17051737010478973,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":47.73245204841945,"scaled_rad":-103.02339726877406},{"average":0.17051737010478973,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":47.73245204841945,"scaled_rad":-103.02339726877406},{"average":0.17051737010478973,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":47.73245204841945,"scaled_rad":-103.02339726877406},{"average":0.17051737010478973,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":47.73245204841945,"scaled_rad":-103.02339726877406},{"average":0.17051737010478973,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":47.73245204841945,"scaled_rad":-103.02339726877406},{"average":0.17051869144181667,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":47.73319534462304,"scaled_rad":-103.02240620716927},{"average":0.17400305718183517,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":49.693267433504566,"scaled_rad":-100.40897675532725},{"average":0.17400305718183517,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":49.693267433504566,"scaled_rad":-100.40897675532725},{"average":0.17400305718183517,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":49.693267433504566,"scaled_rad":-100.40897675532725},{"average":0.17400317848078417,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":49.69333566821415,"scaled_rad":-100.40888577571447},{"average":0.17431558290164534,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":49.86907358766973,"scaled_rad":-100.17456854977368},{"average":0.153323064963284,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":38.0600812038483,"scaled_rad":-115.91989172820226},{"average":0.15619787563532872,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":39.677258210950804,"scaled_rad":-113.76365571873227},{"average":0.15933619339570956,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":41.44266675504095,"scaled_rad":-111.40977765994539},{"average":0.1632265921908705,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":43.63114599688218,"scaled_rad":-108.49180533749042},{"average":0.16574053336469474,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":45.04532186002702,"scaled_rad":-106.60623751996397},{"average":0.1352689557562193,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":27.904041859310787,"scaled_rad":-129.46127752091894},{"average":0.14020941297119519,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":30.683214028916655,"scaled_rad":-125.75571462811112},{"average":0.14040144926667078,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":30.791240858158734,"scaled_rad":-125.61167885578836},{"average":0.13395428782129495,"rel_min":0.09455307636829749,"rel_max":0.4411991630902009,"scaled_dist":27.16449724268307,"scaled_rad":-130.4473370097559}],"beta":[{"average":0.213841849938035,"rel_min":0.213841849938035,"rel_max":0.0,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.22408303804695606,"rel_min":0.213841849938035,"rel_max":0.22408303804695606,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2343242261558771,"rel_min":0.213841849938035,"rel_max":0.2343242261558771,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.23255977407097816,"rel_min":0.213841849938035,"rel_max":0.2343242261558771,"scaled_dist":183.20174608180574,"scaled_rad":77.60232810907434},{"average":0.2258247870951891,"rel_min":0.213841849938035,"rel_max":0.2343242261558771,"scaled_dist":119.08211238740863,"scaled_rad":-7.890516816788477},{"average":0.21895924024283886,"rel_min":0.213841849938035,"rel_max":0.2343242261558771,"scaled_dist":53.719499086609495,"scaled_rad":-95.04066788452067},{"average":0.2129642322127308,"rel_min":0.2129642322127308,"rel_max":0.2343242261558771,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.20963469985872507,"rel_min":0.20963469985872507,"rel_max":0.2343242261558771,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.20679723533491293,"rel_min":0.20679723533491293,"rel_max":0.2343242261558771,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.2018972471356392,"rel_min":0.2018972471356392,"rel_max":0.2343242261558771,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.19245274043218655,"rel_min":0.19245274043218655,"rel_max":0.2343242261558771,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.1599108761486908,"rel_min":0.1599108761486908,"rel_max":0.2343242261558771,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.15631523011968687,"rel_min":0.15631523011968687,"rel_max":0.2343242261558771,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.1588310222806675,"rel_min":0.15631523011968687,"rel_max":0.2343242261558771,"scaled_dist":11.288755096445955,"scaled_rad":-151.61499320473874},{"average":0.1597164844473203,"rel_min":0.15631523011968687,"rel_max":0.2343242261558771,"scaled_dist":13.502155233235227,"scaled_rad":-148.66379302235302},{"average":0.16062132001388818,"rel_min":0.15631523011968687,"rel_max":0.2343242261558771,"scaled_dist":15.76398328443689,"scaled_rad":-145.6480222874175},{"average":0.1559592372573474,"rel_min":0.1559592372573474,"rel_max":0.2343242261558771,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.15595432536469567,"rel_min":0.15595432536469567,"rel_max":0.2343242261558771,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.15601250264597566,"rel_min":0.15595432536469567,"rel_max":0.2343242261558771,"scaled_dist":5.1447567208209986,"scaled_rad":-159.80699103890532},{"average":0.15558402556926013,"rel_min":0.15558402556926013,"rel_max":0.2343242261558771,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.1589967179156485,"rel_min":0.15558402556926013,"rel_max":0.2343242261558771,"scaled_dist":13.451527969041546,"scaled_rad":-148.73129604127794},{"average":0.16346932769837705,"rel_min":0.15558402556926013,"rel_max":0.2343242261558771,"scaled_dist":24.52794003218659,"scaled_rad":-133.96274662375123},{"average":0.16528425138929617,"rel_min":0.15558402556926013,"rel_max":0.2343242261558771,"scaled_dist":29.022596092148177,"scaled_rad":-127.96987187713576},{"average":0.16869425137216845,"rel_min":0.15558402556926013,"rel_max":0.2343242261558771,"scaled_dist":37.467456426592285,"scaled_rad":-116.71005809787695},{"average":0.19675691463053227,"rel_min":0.15558402556926013,"rel_max":0.2343242261558771,"scaled_dist":106.96460393971438,"scaled_rad":-24.047194747047484},{"average":0.19639186202906644,"rel_min":0.15558402556926013,"rel_max":0.2343242261558771,"scaled_dist":106.06055166710772,"scaled_rad":-25.252597777189692},{"average":0.19656626335172742,"rel_min":0.15558402556926013,"rel_max":0.2343242261558771,"scaled_dist":106.4924563062314,"scaled_rad":-24.676724925024786},{"average":0.19657078478485346,"rel_min":0.15558402556926013,"rel_max":0.2343242261558771,"scaled_dist":106.50365362923807,"scaled_rad":-24.661795161015903},{"average":0.198212337455359,"rel_min":0.15558402556926013,"rel_max":0.2343242261558771,"scaled_dist":110.56895659219477,"scaled_rad":-19.24139121040696},{"average":0.20460086974004904,"rel_min":0.15558402556926013,"rel_max":0.2343242261558771,"scaled_dist":126.3901481339178,"scaled_rad":1.8535308452237587},{"average":0.21372814740865462,"rel_min":0.15558402556926013,"rel_max":0.2343242261558771,"scaled_dist":148.9938389058282,"scaled_rad":31.99178520777093},{"average":0.22118472855072469,"rel_min":0.15558402556926013,"rel_max":0.2343242261558771,"scaled_dist":167.4600519948357,"scaled_rad":56.613402659780945},{"average":0.22370316432506748,"rel_min":0.15558402556926013,"rel_max":0.2343242261558771,"scaled_dist":173.696954775603,"scaled_rad":64.92927303413734},{"average":0.2263043542009066,"rel_min":0.15558402556926013,"rel_max":0.2343242261558771,"scaled_dist":180.1387979765313,"scaled_rad":73.51839730204173},{"average":0.22897985742560456,"rel_min":0.15558402556926013,"rel_max":0.2343242261558771,"scaled_dist":186.76467808515747,"scaled_rad":82.3529041135433},{"average":0.2343614250421524,"rel_min":0.15558402556926013,"rel_max":0.2343614250421524,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.24184434629372648,"rel_min":0.15558402556926013,"rel_max":0.24184434629372648,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.24853312797648341,"rel_min":0.15558402556926013,"rel_max":0.24853312797648341,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2535422347390499,"rel_min":0.15558402556926013,"rel_max":0.2535422347390499,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.25510072787292304,"rel_min":0.15558402556926013,"rel_max":0.25510072787292304,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2557106961200877,"rel_min":0.15558402556926013,"rel_max":0.2557106961200877,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2558821936448415,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.25338348850261333,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":195.14200994810474,"scaled_rad":93.52267993080633},{"average":0.2500387593595819,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":188.63917748959332,"scaled_rad":84.85223665279108},{"average":0.2448190458946758,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":178.49099487383825,"scaled_rad":71.32132649845099},{"average":0.23989983866720097,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":168.92705738861184,"scaled_rad":58.56940985148245},{"average":0.235882468521595,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":161.1164742700565,"scaled_rad":48.155299026742},{"average":0.23369385053714117,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":156.8613566028336,"scaled_rad":42.48180880377814},{"average":0.23115008362397857,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":151.91575732037302,"scaled_rad":35.887676427164024},{"average":0.22507706817239523,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":140.10858241597847,"scaled_rad":20.14477655463793},{"average":0.21207542235360427,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":114.8307435151353,"scaled_rad":-13.55900864648629},{"average":0.19648825069173023,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":84.52611749469818,"scaled_rad":-53.965176673735755},{"average":0.1838406002465284,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":59.936517463760026,"scaled_rad":-86.75131004831998},{"average":0.17476786524747256,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":42.2972787940897,"scaled_rad":-110.27029494121373},{"average":0.17057385810396888,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":34.1432774930198,"scaled_rad":-121.1422966759736},{"average":0.17080442371246005,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":34.591543842430056,"scaled_rad":-120.54460821009326},{"average":0.17393942896211356,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":40.6866304767319,"scaled_rad":-112.41782603102413},{"average":0.1815874681904398,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":55.55597134445116,"scaled_rad":-92.59203820739846},{"average":0.19086174647939408,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":73.58705108444471,"scaled_rad":-68.55059855407373},{"average":0.19474000828340648,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":81.12717934693228,"scaled_rad":-58.4970942040903},{"average":0.19733038388925497,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":86.16339538987945,"scaled_rad":-51.78213948016074},{"average":0.20046732364402664,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":92.26224309484965,"scaled_rad":-43.65034254020047},{"average":0.2152696686782061,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":121.0410068255078,"scaled_rad":-5.278657565989619},{"average":0.22408834009547718,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":138.18629431542482,"scaled_rad":17.581725753899747},{"average":0.23129240821760436,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":152.19246522331412,"scaled_rad":36.256620297752164},{"average":0.24164123988399902,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":172.31269487123996,"scaled_rad":63.083593161653255},{"average":0.2537691190060395,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":195.89175393257548,"scaled_rad":94.52233857676731},{"average":0.24395846427582643,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":176.81784950243758,"scaled_rad":69.0904660032501},{"average":0.23706449155250323,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":163.41456700145525,"scaled_rad":51.219422668606995},{"average":0.2332058155110904,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":155.91251743751423,"scaled_rad":41.216689916685596},{"average":0.22840075013818037,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":146.57049488919236,"scaled_rad":28.760659852256452},{"average":0.22395825192021826,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":137.93337649387126,"scaled_rad":17.244501991828315},{"average":0.21941855491126236,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":129.10728391679334,"scaled_rad":5.476378555724466},{"average":0.21383578176736026,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":118.25323958130214,"scaled_rad":-8.995680558263814},{"average":0.2073632670690616,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":105.66935704002651,"scaled_rad":-25.774190613298003},{"average":0.19908710880401104,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":89.57882525216058,"scaled_rad":-47.228232997119235},{"average":0.19074486728225434,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":73.35981419787393,"scaled_rad":-68.85358106950143},{"average":0.18199858200760224,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":56.355260064124124,"scaled_rad":-91.52631991450117},{"average":0.17621311283658578,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":45.107133503147836,"scaled_rad":-106.52382199580289},{"average":0.1733628980931826,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":39.565737427550566,"scaled_rad":-113.91235009659925},{"average":0.1736374262628364,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":40.099475920582194,"scaled_rad":-113.20069877255708},{"average":0.17873183224441075,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":50.00403535040545,"scaled_rad":-99.99461953279274},{"average":0.18775580710091863,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":67.54847440429728,"scaled_rad":-76.60203412760362},{"average":0.19931237662344106,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":90.0167916241461,"scaled_rad":-46.64427783447189},{"average":0.20931069381973322,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":109.45554998519374,"scaled_rad":-20.72593335307502},{"average":0.2155186526022505,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":121.52508211940619,"scaled_rad":-4.633223840791743},{"average":0.21507942409993247,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":120.67113274430422,"scaled_rad":-5.771823007594378},{"average":0.21628354115157641,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":123.01218073726086,"scaled_rad":-2.6504256836521733},{"average":0.2213323311775588,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":132.828053489041,"scaled_rad":10.437404652054681},{"average":0.2243164412573808,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":138.6297692803682,"scaled_rad":18.173025707157592},{"average":0.22560570070745198,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":141.1363513803965,"scaled_rad":21.515135173861978},{"average":0.22549944433748073,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":140.9297674263528,"scaled_rad":21.23968990180373},{"average":0.22844084252112656,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":146.64844262068647,"scaled_rad":28.8645901609153},{"average":0.23336659902904897,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":156.22511323665475,"scaled_rad":41.633484315539675},{"average":0.24120263612191928,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":171.45996011798803,"scaled_rad":61.94661349065069},{"average":0.2413816184659178,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":171.80793812944495,"scaled_rad":62.410584172593246},{"average":0.2381076351115384,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":165.4426498459851,"scaled_rad":53.923533127980136},{"average":0.23191838219229663,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":153.4094857074072,"scaled_rad":37.879314276542914},{"average":0.22608106651089407,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":142.06055900501988,"scaled_rad":22.74741200669314},{"average":0.22353079605847598,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":137.1023155219806,"scaled_rad":16.136420695974124},{"average":0.22610120119361005,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":142.09970491570746,"scaled_rad":22.79960655427658},{"average":0.23455603470039718,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":158.53761764588904,"scaled_rad":44.71682352785203},{"average":0.2339847419157769,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":157.42690849597707,"scaled_rad":43.2358779946361},{"average":0.234302607884344,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":158.04490446798604,"scaled_rad":44.05987262398139},{"average":0.23144327549352534,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":152.485781834864,"scaled_rad":36.64770911315202},{"average":0.22860033641446312,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":146.95853112775862,"scaled_rad":29.27804150367814},{"average":0.2288435043018555,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":147.43129886570753,"scaled_rad":29.908398487610043},{"average":0.23150854580173338,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":152.61268056437,"scaled_rad":36.81690741916},{"average":0.23443537355836377,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":158.3030278906825,"scaled_rad":44.40403718757665},{"average":0.23542210288684476,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":160.22143001851396,"scaled_rad":46.96190669135191},{"average":0.23219195812068008,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":153.9413728500973,"scaled_rad":38.58849713346308},{"average":0.22594988859990345,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":141.80552251597956,"scaled_rad":22.407363354639386},{"average":0.2194642105296386,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":129.19604770734094,"scaled_rad":5.594730276454584},{"average":0.21296326868366777,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":116.55689702007187,"scaled_rad":-11.25747063990417},{"average":0.2080508687088023,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":107.00619421584007,"scaled_rad":-23.991741045546576},{"average":0.20447523028043837,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":100.0544272303699,"scaled_rad":-33.26076369284014},{"average":0.2028721194777988,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":96.93765438683053,"scaled_rad":-37.4164608175593},{"average":0.20307156437281834,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":97.32541575151971,"scaled_rad":-36.89944566464038},{"average":0.20429748126125635,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":99.70884705273022,"scaled_rad":-33.72153726302638},{"average":0.2049810233991593,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":101.03779173286267,"scaled_rad":-31.94961102284978},{"average":0.20581088244360835,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":102.65120618272202,"scaled_rad":-29.79839175637065},{"average":0.21168020366095616,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":114.06235814434463,"scaled_rad":-14.583522474207172},{"average":0.21399635706490616,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":118.56543055769022,"scaled_rad":-8.579425923079725},{"average":0.2169835870604842,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":124.37321209861287,"scaled_rad":-0.8357172018495191},{"average":0.2202918185889721,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":130.8050857851692,"scaled_rad":7.740114380225606},{"average":0.2209426345274089,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":132.07040408988183,"scaled_rad":9.427205453175759},{"average":0.21879233047366142,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":127.88977648196003,"scaled_rad":3.853035309280017},{"average":0.2162168466602452,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":122.88251310664388,"scaled_rad":-2.8233158578081543},{"average":0.21395628164385178,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":118.48751580355716,"scaled_rad":-8.683312261923817},{"average":0.21389780295296357,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":118.37382135686887,"scaled_rad":-8.834904857508178},{"average":0.21340942229250914,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":117.42431020810245,"scaled_rad":-10.100919722530051},{"average":0.21119859734211455,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":113.12601769091435,"scaled_rad":-15.831976412114216},{"average":0.20834465631584925,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":107.5773769649705,"scaled_rad":-23.230164046705994},{"average":0.20592410246660905,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":102.87132889192745,"scaled_rad":-29.50489481076343},{"average":0.2084719098828457,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":107.82478373261561,"scaled_rad":-22.900288356512505},{"average":0.2148615013643661,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":120.24744670645536,"scaled_rad":-6.336737724726191},{"average":0.22223156527446133,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":134.57634712451258,"scaled_rad":12.768462832683412},{"average":0.22784349406003088,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":145.4870759462136,"scaled_rad":27.316101261618144},{"average":0.23194046187207853,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":153.45241308723956,"scaled_rad":37.9365507829861},{"average":0.23983000570109914,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":168.79128792590745,"scaled_rad":58.38838390120992},{"average":0.246866051953101,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":182.47079020860565,"scaled_rad":76.62772027814086},{"average":0.25183246400154813,"rel_min":0.15558402556926013,"rel_max":0.2558821936448415,"scaled_dist":192.12650344872586,"scaled_rad":89.50200459830111},{"average":0.25694056980676583,"rel_min":0.15558402556926013,"rel_max":0.25694056980676583,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.247673965861193,"rel_min":0.15558402556926013,"rel_max":0.25694056980676583,"scaled_dist":182.17196745429243,"scaled_rad":76.22928993905657},{"average":0.2505899557843804,"rel_min":0.15558402556926013,"rel_max":0.25694056980676583,"scaled_dist":187.7820446259166,"scaled_rad":83.70939283455547},{"average":0.2513625220497687,"rel_min":0.15558402556926013,"rel_max":0.25694056980676583,"scaled_dist":189.26838596563024,"scaled_rad":85.69118128750696},{"average":0.25388468424377797,"rel_min":0.15558402556926013,"rel_max":0.25694056980676583,"scaled_dist":194.12077740746287,"scaled_rad":92.16103654328381},{"average":0.25740939300708676,"rel_min":0.15558402556926013,"rel_max":0.25740939300708676,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2625895663095801,"rel_min":0.15558402556926013,"rel_max":0.2625895663095801,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.265563955369095,"rel_min":0.15558402556926013,"rel_max":0.265563955369095,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2657940439534503,"rel_min":0.15558402556926013,"rel_max":0.2657940439534503,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2653876477729921,"rel_min":0.15558402556926013,"rel_max":0.2657940439534503,"scaled_dist":199.28094327220697,"scaled_rad":99.04125769627598},{"average":0.2660555141837963,"rel_min":0.15558402556926013,"rel_max":0.2660555141837963,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.26707335895338613,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2653747500070641,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":197.02905439938746,"scaled_rad":96.03873919918334},{"average":0.26039734048147994,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":188.32333495495578,"scaled_rad":84.43111327327438},{"average":0.25856285061758416,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":185.11472734558774,"scaled_rad":80.15296979411698},{"average":0.25799272406280416,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":184.1175496353304,"scaled_rad":78.82339951377386},{"average":0.25871443851563913,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":185.37986158958643,"scaled_rad":80.50648211944858},{"average":0.2610368067049421,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":189.44179095240528,"scaled_rad":85.92238793654039},{"average":0.26379669698313896,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":194.26896668224967,"scaled_rad":92.35862224299959},{"average":0.26618496528654184,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":198.44615839223144,"scaled_rad":97.9282111896419},{"average":0.26600431233781613,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":198.13018803047368,"scaled_rad":97.50691737396488},{"average":0.2568828396658163,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":182.17631049752922,"scaled_rad":76.23508066337229},{"average":0.2546804559614622,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":178.32423954766202,"scaled_rad":71.09898606354938},{"average":0.2522881306169263,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":174.13995188511754,"scaled_rad":65.51993584682342},{"average":0.24669346673982942,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":164.3546260344813,"scaled_rad":52.47283471264177},{"average":0.2398306526066292,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":152.3512467393228,"scaled_rad":36.46832898576375},{"average":0.2309515239152859,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":136.82124003593293,"scaled_rad":15.761653381243917},{"average":0.22200013572240576,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":121.16484812265816,"scaled_rad":-5.113535836455782},{"average":0.21747612205949443,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":113.25213900968649,"scaled_rad":-15.66381465375133},{"average":0.22039244661844054,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":118.35292553098667,"scaled_rad":-8.862765958684435},{"average":0.22489190515066157,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":126.22268658480982,"scaled_rad":1.630248779746438},{"average":0.22623580319528608,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":128.57322641447115,"scaled_rad":4.764301885961544},{"average":0.2249300368981702,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":126.28938077463482,"scaled_rad":1.7191743661797716},{"average":0.2239121520701288,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":124.50905313751277,"scaled_rad":-0.6545958166496462},{"average":0.2241037244050853,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":124.84412201076371,"scaled_rad":-0.20783731898168867},{"average":0.22487135874002837,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":126.18674996242757,"scaled_rad":1.5823332832367782},{"average":0.23466112271117764,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":143.30949988323673,"scaled_rad":24.41266651098232},{"average":0.24528119456436898,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":161.88449668797293,"scaled_rad":49.179328917297255},{"average":0.24960912786712303,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":169.45425218314034,"scaled_rad":59.27233624418713},{"average":0.25371792437611046,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":176.64072729185804,"scaled_rad":68.85430305581073},{"average":0.25816624656401044,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":184.42104851462355,"scaled_rad":79.22806468616474},{"average":0.2632705653693689,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":193.34873815839904,"scaled_rad":91.13165087786541},{"average":0.2666774346014938,"rel_min":0.15558402556926013,"rel_max":0.26707335895338613,"scaled_dist":199.3075099987099,"scaled_rad":99.07667999827987},{"average":0.2693214506031044,"rel_min":0.15558402556926013,"rel_max":0.2693214506031044,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.26798572120341385,"rel_min":0.15558402556926013,"rel_max":0.2693214506031044,"scaled_dist":197.7099250061081,"scaled_rad":96.94656667481081},{"average":0.26571435229654644,"rel_min":0.15558402556926013,"rel_max":0.2693214506031044,"scaled_dist":193.815719236043,"scaled_rad":91.75429231472395},{"average":0.2616238674671246,"rel_min":0.15558402556926013,"rel_max":0.2693214506031044,"scaled_dist":186.80268424338422,"scaled_rad":82.40357899117893},{"average":0.25541667512765054,"rel_min":0.15558402556926013,"rel_max":0.2693214506031044,"scaled_dist":176.16060661733218,"scaled_rad":68.21414215644288},{"average":0.2493018710020325,"rel_min":0.15558402556926013,"rel_max":0.2693214506031044,"scaled_dist":165.67692629714992,"scaled_rad":54.2359017295332},{"average":0.24671406345441937,"rel_min":0.15558402556926013,"rel_max":0.2693214506031044,"scaled_dist":161.24019430999266,"scaled_rad":48.320259079990166},{"average":0.25003537054081965,"rel_min":0.15558402556926013,"rel_max":0.2693214506031044,"scaled_dist":166.9344931008729,"scaled_rad":55.91265746783051},{"average":0.25245528573112697,"rel_min":0.15558402556926013,"rel_max":0.2693214506031044,"scaled_dist":171.08337779708887,"scaled_rad":61.44450372945178},{"average":0.2525297163770749,"rel_min":0.15558402556926013,"rel_max":0.2693214506031044,"scaled_dist":171.2109872972646,"scaled_rad":61.61464972968611},{"average":0.2514456805335928,"rel_min":0.15558402556926013,"rel_max":0.2693214506031044,"scaled_dist":169.3524346755914,"scaled_rad":59.136579567455186},{"average":0.250097436026722,"rel_min":0.15558402556926013,"rel_max":0.2693214506031044,"scaled_dist":167.0409028402121,"scaled_rad":56.05453712028276},{"average":0.2492624478922649,"rel_min":0.15558402556926013,"rel_max":0.2693214506031044,"scaled_dist":165.60933635125133,"scaled_rad":54.14578180166842},{"average":0.2501637510318852,"rel_min":0.15558402556926013,"rel_max":0.2693214506031044,"scaled_dist":167.15459827514016,"scaled_rad":56.206131033520194},{"average":0.2537116185296327,"rel_min":0.15558402556926013,"rel_max":0.2693214506031044,"scaled_dist":173.23732928346828,"scaled_rad":64.31643904462436},{"average":0.258048163374784,"rel_min":0.15558402556926013,"rel_max":0.2693214506031044,"scaled_dist":180.6722280826355,"scaled_rad":74.22963744351398},{"average":0.2627607321016269,"rel_min":0.15558402556926013,"rel_max":0.2693214506031044,"scaled_dist":188.75181051964714,"scaled_rad":85.00241402619613},{"average":0.26685181647318923,"rel_min":0.15558402556926013,"rel_max":0.2693214506031044,"scaled_dist":195.76587341246596,"scaled_rad":94.3544978832879},{"average":0.27053133971696974,"rel_min":0.15558402556926013,"rel_max":0.27053133971696974,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2743953297050988,"rel_min":0.15558402556926013,"rel_max":0.2743953297050988,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2793604522961581,"rel_min":0.15558402556926013,"rel_max":0.2793604522961581,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2858954025297493,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2856852123424268,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":199.68546808817524,"scaled_rad":99.58062411756703},{"average":0.2834192764138776,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":196.29468582208762,"scaled_rad":95.0595810961168},{"average":0.2793374660380539,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":190.1866003897086,"scaled_rad":86.91546718627811},{"average":0.27064382817190125,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":177.17730355437715,"scaled_rad":69.56973807250287},{"average":0.26456198602352504,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":168.07633902928472,"scaled_rad":57.435118705712966},{"average":0.2580776039790799,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":158.3730074540978,"scaled_rad":44.49734327213042},{"average":0.25267138715102294,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":150.28305931556534,"scaled_rad":33.71074575408716},{"average":0.24858559123998464,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":144.1690098654238,"scaled_rad":25.55867982056506},{"average":0.24489407032659208,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":138.64495974100672,"scaled_rad":18.19327965467565},{"average":0.2432489301923508,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":136.18314609388122,"scaled_rad":14.910861458508293},{"average":0.24247900000132552,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":135.03101041124276,"scaled_rad":13.37468054832371},{"average":0.24277893731957428,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":135.47984134544618,"scaled_rad":13.973121793928243},{"average":0.24475160460411147,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":138.4317717866492,"scaled_rad":17.90902904886559},{"average":0.24855114651076934,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":144.1174662292989,"scaled_rad":25.48995497239855},{"average":0.25072167129129974,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":147.36547374848703,"scaled_rad":29.820631664649397},{"average":0.2490950585948512,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":144.9313848515242,"scaled_rad":26.575179802032295},{"average":0.2483643185114488,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":143.83789386411277,"scaled_rad":25.117191818817048},{"average":0.24480979000528655,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":138.51884133877726,"scaled_rad":18.02512178503636},{"average":0.2429851935187404,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":135.78848637533935,"scaled_rad":14.3846485004525},{"average":0.24466707646879593,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":138.30528255162616,"scaled_rad":17.74037673550157},{"average":0.24967328028491975,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":145.79664490934368,"scaled_rad":27.72885987912491},{"average":0.2534048523607473,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":151.38062822499074,"scaled_rad":35.174170966654344},{"average":0.2559878177131,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":155.24581832164282,"scaled_rad":40.3277577621904},{"average":0.25714394775949,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":156.97586955972014,"scaled_rad":42.63449274629352},{"average":0.25667138253980926,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":156.2687155108017,"scaled_rad":41.69162068106894},{"average":0.2541997581720352,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":152.57013781975274,"scaled_rad":36.760183759670326},{"average":0.25064049566435254,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":147.24400125986847,"scaled_rad":29.658668346491282},{"average":0.24868356415883025,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":144.31561808659765,"scaled_rad":25.75415744879689},{"average":0.2498593302127921,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":146.07505295614155,"scaled_rad":28.10007060818873},{"average":0.25384009830685106,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":152.03193712425877,"scaled_rad":36.04258283234503},{"average":0.25795451618981463,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":158.18881694466893,"scaled_rad":44.25175592622526},{"average":0.25844068158901135,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":158.91632251674267,"scaled_rad":45.22176335565692},{"average":0.2572671345279863,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":157.16020818323153,"scaled_rad":42.88027757764206},{"average":0.25454450374724213,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":153.0860205364685,"scaled_rad":37.44802738195801},{"average":0.25372239346192643,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":151.8558017376512,"scaled_rad":35.80773565020161},{"average":0.26271903999303103,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":165.3185255188397,"scaled_rad":53.7580340251196},{"average":0.24728849489760937,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":142.22801443844838,"scaled_rad":22.970685917931206},{"average":0.24938536288634855,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":145.36580077254658,"scaled_rad":27.154401030062104},{"average":0.24991484243816475,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":146.15812232583247,"scaled_rad":28.21082976777663},{"average":0.24644452664503444,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":140.96508703263936,"scaled_rad":21.286782710185832},{"average":0.24747419811695093,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":142.50590366513183,"scaled_rad":23.341204886842434},{"average":0.25000284443867493,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":146.2898099075291,"scaled_rad":28.386413210038825},{"average":0.2489322182163596,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":144.68770794052443,"scaled_rad":26.250277254032568},{"average":0.24537545273384725,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":139.3653079684928,"scaled_rad":19.15374395799043},{"average":0.24154958430500256,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":133.64021810277129,"scaled_rad":11.520290803695048},{"average":0.23557959025791983,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":124.70662484073318,"scaled_rad":-0.3911668790224212},{"average":0.2357223073797902,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":124.92018899310307,"scaled_rad":-0.10641467586256681},{"average":0.24224826769501556,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":134.6857389485363,"scaled_rad":12.914318598048396},{"average":0.2535781857150141,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":151.64000699045556,"scaled_rad":35.52000932060744},{"average":0.27136779843253384,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":178.26066407220944,"scaled_rad":71.01421876294594},{"average":0.27794803846483085,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":188.10743905247054,"scaled_rad":84.14325206996074},{"average":0.2816476125457112,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":193.64354006374603,"scaled_rad":91.52472008499473},{"average":0.27710982030973985,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":186.85311618323786,"scaled_rad":82.47082157765047},{"average":0.26995131576084086,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":176.14101705885713,"scaled_rad":68.18802274514283},{"average":0.26236603724706264,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":164.79028664154882,"scaled_rad":53.05371552206512},{"average":0.26437970647453807,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":167.80357303692446,"scaled_rad":57.07143071589928},{"average":0.2567713311732267,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":156.41828022242555,"scaled_rad":41.89104029656741},{"average":0.25309163635631776,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":150.91192685533002,"scaled_rad":34.5492358071067},{"average":0.25228675824583024,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":149.7074945547439,"scaled_rad":32.94332607299191},{"average":0.25248914555217444,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":150.01035011239094,"scaled_rad":33.34713348318792},{"average":0.2519629430025816,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":149.2229323169231,"scaled_rad":32.29724308923082},{"average":0.25038600397265093,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":146.86317587808418,"scaled_rad":29.150901170778923},{"average":0.24907330567086183,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":144.89883343293846,"scaled_rad":26.531777910584623},{"average":0.24853702285412932,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":144.0963313667179,"scaled_rad":25.461775155623855},{"average":0.2475792650023804,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":142.66312740980115,"scaled_rad":23.55083654640154},{"average":0.2477524754465063,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":142.92232225059234,"scaled_rad":23.89642966745646},{"average":0.24093402877286837,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":132.71909109478514,"scaled_rad":10.292121459713542},{"average":0.278065097047524,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":188.2826073620809,"scaled_rad":84.37680981610791},{"average":0.28124051099724096,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":193.03434688504328,"scaled_rad":90.71246251339105},{"average":0.2839993151570485,"rel_min":0.15558402556926013,"rel_max":0.2858954025297493,"scaled_dist":197.16266494683143,"scaled_rad":96.21688659577524},{"average":0.2860237319397626,"rel_min":0.15558402556926013,"rel_max":0.2860237319397626,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.28809521459443593,"rel_min":0.15558402556926013,"rel_max":0.28809521459443593,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2888193623961082,"rel_min":0.15558402556926013,"rel_max":0.2888193623961082,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2887990844578505,"rel_min":0.15558402556926013,"rel_max":0.2888193623961082,"scaled_dist":199.9703217025271,"scaled_rad":99.96042893670278},{"average":0.28857795706560424,"rel_min":0.15558402556926013,"rel_max":0.2888193623961082,"scaled_dist":199.64668502689003,"scaled_rad":99.52891336918668},{"average":0.2883081075738681,"rel_min":0.15558402556926013,"rel_max":0.2888193623961082,"scaled_dist":199.25173987088436,"scaled_rad":99.00231982784584},{"average":0.28852416126346087,"rel_min":0.15558402556926013,"rel_max":0.2888193623961082,"scaled_dist":199.56795079866052,"scaled_rad":99.42393439821404},{"average":0.2895035543854822,"rel_min":0.15558402556926013,"rel_max":0.2895035543854822,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.28594233327499635,"rel_min":0.15558402556926013,"rel_max":0.2895035543854822,"scaled_dist":194.81451194845738,"scaled_rad":93.08601593127648},{"average":0.27846598697871694,"rel_min":0.15558402556926013,"rel_max":0.2895035543854822,"scaled_dist":183.92821671831848,"scaled_rad":78.57095562442464},{"average":0.2689002984617319,"rel_min":0.15558402556926013,"rel_max":0.2895035543854822,"scaled_dist":169.99963380512852,"scaled_rad":59.99951174017136},{"average":0.26294799586016826,"rel_min":0.15558402556926013,"rel_max":0.2895035543854822,"scaled_dist":161.33249602795087,"scaled_rad":48.443328037267804},{"average":0.25814941501052213,"rel_min":0.15558402556926013,"rel_max":0.2895035543854822,"scaled_dist":154.3452905475232,"scaled_rad":39.127054063364284},{"average":0.25200761406589617,"rel_min":0.15558402556926013,"rel_max":0.2895035543854822,"scaled_dist":145.4022245526779,"scaled_rad":27.20296607023718},{"average":0.24897136904095132,"rel_min":0.15558402556926013,"rel_max":0.2895035543854822,"scaled_dist":140.9811532937076,"scaled_rad":21.308204391610104},{"average":0.24668279319442174,"rel_min":0.15558402556926013,"rel_max":0.2895035543854822,"scaled_dist":137.64876186418212,"scaled_rad":16.865015818909484},{"average":0.2453847441720922,"rel_min":0.15558402556926013,"rel_max":0.2895035543854822,"scaled_dist":135.75867487245128,"scaled_rad":14.34489982993503},{"average":0.24494666950935023,"rel_min":0.15558402556926013,"rel_max":0.2895035543854822,"scaled_dist":135.12079509502234,"scaled_rad":13.494393460029784},{"average":0.24494138076851094,"rel_min":0.15558402556926013,"rel_max":0.2895035543854822,"scaled_dist":135.11309416840783,"scaled_rad":13.484125557877093},{"average":0.24762122422105534,"rel_min":0.15558402556926013,"rel_max":0.2895035543854822,"scaled_dist":139.01520969902086,"scaled_rad":18.686946265361144},{"average":0.25228114732409884,"rel_min":0.15558402556926013,"rel_max":0.2895035543854822,"scaled_dist":145.80051586852264,"scaled_rad":27.734021158030174},{"average":0.2561284478965611,"rel_min":0.15558402556926013,"rel_max":0.2895035543854822,"scaled_dist":151.40256374206072,"scaled_rad":35.20341832274761},{"average":0.2572774894038836,"rel_min":0.15558402556926013,"rel_max":0.2895035543854822,"scaled_dist":153.0756811425511,"scaled_rad":37.434241523401454},{"average":0.2600669556009611,"rel_min":0.15558402556926013,"rel_max":0.2895035543854822,"scaled_dist":157.13741816655576,"scaled_rad":42.849890888741015},{"average":0.2664906240950357,"rel_min":0.15558402556926013,"rel_max":0.2895035543854822,"scaled_dist":166.49091102466994,"scaled_rad":55.3212146995599},{"average":0.27559272106429533,"rel_min":0.15558402556926013,"rel_max":0.2895035543854822,"scaled_dist":179.74445906725106,"scaled_rad":72.99261208966806},{"average":0.2831185876734947,"rel_min":0.15558402556926013,"rel_max":0.2895035543854822,"scaled_dist":190.7028607414967,"scaled_rad":87.60381432199557},{"average":0.2895086028658953,"rel_min":0.15558402556926013,"rel_max":0.2895086028658953,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.29565252420900306,"rel_min":0.15558402556926013,"rel_max":0.29565252420900306,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2967988953770954,"rel_min":0.15558402556926013,"rel_max":0.2967988953770954,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2960343967711964,"rel_min":0.15558402556926013,"rel_max":0.2967988953770954,"scaled_dist":198.94432343879106,"scaled_rad":98.5924312517214},{"average":0.2976250227142885,"rel_min":0.15558402556926013,"rel_max":0.2976250227142885,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2992333187331115,"rel_min":0.15558402556926013,"rel_max":0.2992333187331115,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":0.3035068755005142,"rel_min":0.15558402556926013,"rel_max":0.3035068755005142,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.3082189870138581,"rel_min":0.15558402556926013,"rel_max":0.3082189870138581,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.31174368717181034,"rel_min":0.15558402556926013,"rel_max":0.31174368717181034,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":0.3142656414609426,"rel_min":0.15558402556926013,"rel_max":0.3142656414609426,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.31498903331775513,"rel_min":0.15558402556926013,"rel_max":0.31498903331775513,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.31447899855579003,"rel_min":0.15558402556926013,"rel_max":0.31498903331775513,"scaled_dist":199.37607494276395,"scaled_rad":99.1680999236853},{"average":0.3123212331194983,"rel_min":0.15558402556926013,"rel_max":0.31498903331775513,"scaled_dist":196.73648246057064,"scaled_rad":95.64864328076087},{"average":0.30779298863508414,"rel_min":0.15558402556926013,"rel_max":0.31498903331775513,"scaled_dist":191.19708512962893,"scaled_rad":88.26278017283857},{"average":0.3035823801958636,"rel_min":0.15558402556926013,"rel_max":0.31498903331775513,"scaled_dist":186.04625168189014,"scaled_rad":81.3950022425202},{"average":0.303291201707907,"rel_min":0.15558402556926013,"rel_max":0.31498903331775513,"scaled_dist":185.69005330422615,"scaled_rad":80.92007107230154},{"average":0.30615671958507407,"rel_min":0.15558402556926013,"rel_max":0.31498903331775513,"scaled_dist":189.19543869920193,"scaled_rad":85.59391826560258},{"average":0.3108375062414023,"rel_min":0.15558402556926013,"rel_max":0.31498903331775513,"scaled_dist":194.92144072935218,"scaled_rad":93.22858763913626},{"average":0.3150157664813124,"rel_min":0.15558402556926013,"rel_max":0.3150157664813124,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.3174622989041202,"rel_min":0.15558402556926013,"rel_max":0.3174622989041202,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.3204276086390018,"rel_min":0.15558402556926013,"rel_max":0.3204276086390018,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.323312144692233,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.3219664554120204,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":198.4355073495514,"scaled_rad":97.91400979940187},{"average":0.3166272011358382,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":192.22811297048375,"scaled_rad":89.637483960645},{"average":0.3091543974598309,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":183.5402631070208,"scaled_rad":78.05368414269438},{"average":0.29810174192217265,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":170.69049265044524,"scaled_rad":60.920656867260305},{"average":0.2859475723161078,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":156.56010660918167,"scaled_rad":42.080142145575564},{"average":0.2759170974716993,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":144.8987190917695,"scaled_rad":26.531625455692676},{"average":0.27258946216321206,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":141.03002439377872,"scaled_rad":21.373365858371642},{"average":0.27072938287931825,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":138.86750410644777,"scaled_rad":18.490005475263672},{"average":0.269467771870654,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":137.4007604979467,"scaled_rad":16.534347330595608},{"average":0.26434395298738744,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":131.44383039307598,"scaled_rad":8.591773857434617},{"average":0.26152732656047145,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":128.16923245374102,"scaled_rad":4.225643271654661},{"average":0.25730554321946125,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":123.26100504499381,"scaled_rad":-2.318659940008274},{"average":0.2509444564372125,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":115.86563252770546,"scaled_rad":-12.179156629726066},{"average":0.2406700232066214,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":103.92062002508294,"scaled_rad":-28.10583996655609},{"average":0.24070082180737312,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":103.95642634770785,"scaled_rad":-28.058098203056204},{"average":0.24002807402209927,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":103.17429262550102,"scaled_rad":-29.100943165998643},{"average":0.23569135298903587,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":98.13243914339435,"scaled_rad":-35.82341447547421},{"average":0.2306368067281234,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":92.25604509550489,"scaled_rad":-43.658606539326826},{"average":0.22894745974706998,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":90.29201745942382,"scaled_rad":-46.27731005410158},{"average":0.230063737666159,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":91.58979743430548,"scaled_rad":-44.54693675425936},{"average":0.23386239875322717,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":96.00610470497371,"scaled_rad":-38.658527060035055},{"average":0.23807849771418105,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":100.90772347757343,"scaled_rad":-32.12303536323543},{"average":0.22600910278106573,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":86.87589611157314,"scaled_rad":-50.83213851790248},{"average":0.21986795499388662,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":79.73622373724727,"scaled_rad":-60.3517016836703},{"average":0.21198409508934982,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":70.570481645681,"scaled_rad":-72.57269113909202},{"average":0.20631891889074308,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":63.984171821754714,"scaled_rad":-81.35443757099371},{"average":0.20268592975305516,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":59.76047405686329,"scaled_rad":-86.98603459084896},{"average":0.2021044170968024,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":59.08440990875137,"scaled_rad":-87.88745345499818},{"average":0.19775661663217864,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":54.02967552649767,"scaled_rad":-94.6270992980031},{"average":0.1645240041458707,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":15.393581180988111,"scaled_rad":-146.14189175868253},{"average":0.15920532153820208,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":9.210103336495127,"scaled_rad":-154.38652888467317},{"average":0.15657870350249486,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":6.156408347002134,"scaled_rad":-158.45812220399716},{"average":0.15687141495608936,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":6.496713441636138,"scaled_rad":-158.0043820778185},{"average":0.15814984713991484,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":7.983013277045332,"scaled_rad":-156.02264896393956},{"average":0.16057030672150718,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":10.797029322050042,"scaled_rad":-152.27062757059994},{"average":0.1638356124035479,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":14.593259860658229,"scaled_rad":-147.2089868524557},{"average":0.16603454077980653,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":17.149724665799553,"scaled_rad":-143.80036711226725},{"average":0.16750890171093927,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":18.86381043194409,"scaled_rad":-141.51491942407455},{"average":0.1684269438995278,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":19.931122387213293,"scaled_rad":-140.09183681704894},{"average":0.1687808164084951,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":20.3425330654552,"scaled_rad":-139.54328924605974},{"average":0.16865027704776064,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":20.190768558249605,"scaled_rad":-139.74564192233385},{"average":0.1700679654073294,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":21.83896703302786,"scaled_rad":-137.54804395596287},{"average":0.17358575680805496,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":25.9287363974512,"scaled_rad":-132.09501813673174},{"average":0.17884770398707808,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":32.046253873201465,"scaled_rad":-123.93832816906472},{"average":0.18431345380169925,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":38.40071142882278,"scaled_rad":-115.46571809490297},{"average":0.19219081050726355,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":47.558892928842056,"scaled_rad":-103.25480942821059},{"average":0.20309285039766303,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":60.23355827263726,"scaled_rad":-86.35525563648366},{"average":0.21366656658782518,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":72.526515874874,"scaled_rad":-69.964645500168},{"average":0.22315627324332793,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":83.55920858912494,"scaled_rad":-55.25438854783343},{"average":0.22599702948664732,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":86.86185975068207,"scaled_rad":-50.85085366575724},{"average":0.23185516241937876,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":93.67250025542121,"scaled_rad":-41.76999965943838},{"average":0.23185516241937876,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":93.67250025542121,"scaled_rad":-41.76999965943838},{"average":0.23185516241937876,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":93.67250025542121,"scaled_rad":-41.76999965943838},{"average":0.23185516241937876,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":93.67250025542121,"scaled_rad":-41.76999965943838},{"average":0.23185516241937876,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":93.67250025542121,"scaled_rad":-41.76999965943838},{"average":0.23181369740281899,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":93.62429320301143,"scaled_rad":-41.834275729318094},{"average":0.21601433907793569,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":75.25602621556942,"scaled_rad":-66.32529837924078},{"average":0.21556057214426497,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":74.7284787027942,"scaled_rad":-67.02869506294107},{"average":0.21543605080140488,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":74.58371071764846,"scaled_rad":-67.2217190431354},{"average":0.21564661314315284,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":74.82850960322321,"scaled_rad":-66.89532052903573},{"average":0.19192028306280226,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":47.24437886914956,"scaled_rad":-103.67416150780059},{"average":0.19441085315511092,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":50.13990509659218,"scaled_rad":-99.81345987121043},{"average":0.19639633796333425,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":52.44822131469566,"scaled_rad":-96.73570491373913},{"average":0.19719597954685109,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":53.377881228615394,"scaled_rad":-95.49615836184614},{"average":0.19772840031872854,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":53.99687136013881,"scaled_rad":-94.67083818648159},{"average":0.19941073393791306,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":55.952745291452985,"scaled_rad":-92.06300627806269},{"average":0.20219385739814005,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":59.1883928237929,"scaled_rad":-87.74880956827613},{"average":0.20431385547168515,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":61.65309359372286,"scaled_rad":-84.4625418750362},{"average":0.214472031675845,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":73.4629461704329,"scaled_rad":-68.71607177275614},{"average":0.21894807732579383,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":78.66677786129024,"scaled_rad":-61.77762951827968},{"average":0.22138558263639435,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":81.50061119855326,"scaled_rad":-57.999185068595665},{"average":0.22358701516167453,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":84.05998731672759,"scaled_rad":-54.58668357769656},{"average":0.22751667585578703,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":88.62859417500947,"scaled_rad":-48.49520776665405},{"average":0.22925845593214034,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":90.65358030533075,"scaled_rad":-45.795226259559},{"average":0.22948293572064127,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":90.91455955548014,"scaled_rad":-45.44725392602648},{"average":0.22895629211463295,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":90.3022859324967,"scaled_rad":-46.26361875667108},{"average":0.2291501756299925,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":90.52769408524293,"scaled_rad":-45.963074553009434},{"average":0.22755473985862318,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":88.67284722328701,"scaled_rad":-48.43620370228399},{"average":0.22332406378132694,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":83.75428115704551,"scaled_rad":-54.994291790606},{"average":0.21838126107224543,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":78.00779968863868,"scaled_rad":-62.65626708181509},{"average":0.2141922018319112,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":73.1376171805628,"scaled_rad":-69.1498437592496},{"average":0.21194190805887475,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":70.52143518295517,"scaled_rad":-72.63808642272645},{"average":0.211317937732344,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":69.79600992743026,"scaled_rad":-73.60532009675967},{"average":0.1952226729132235,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":51.0837233046524,"scaled_rad":-98.5550355937968},{"average":0.19629463606452854,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":52.329983118436076,"scaled_rad":-96.89335584208524},{"average":0.19853503707326153,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":54.93466383021719,"scaled_rad":-93.42044822637709},{"average":0.20085603816403172,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":57.63304985557026,"scaled_rad":-89.82260019257298},{"average":0.20160682869238267,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":58.50591573991907,"scaled_rad":-88.65877901344125},{"average":0.19874631895358305,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":55.180299248286175,"scaled_rad":-93.09293433561844},{"average":0.20145854263458973,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":58.333518997972526,"scaled_rad":-88.88864133603664},{"average":0.1965459648171346,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":52.62217686039445,"scaled_rad":-96.50376418614074},{"average":0.1937434769115237,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":49.36401630597087,"scaled_rad":-100.8479782587055},{"average":0.19760901271532288,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":53.85807183871191,"scaled_rad":-94.8559042150508},{"average":0.2124244607940671,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":71.08244894650616,"scaled_rad":-71.89006807132512},{"average":0.21955420063574071,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":79.37145425101943,"scaled_rad":-60.83806099864077},{"average":0.22824362913031854,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":89.47374696915554,"scaled_rad":-47.36833737445929},{"average":0.237317649568332,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":100.02316464977315,"scaled_rad":-33.30244713363581},{"average":0.2506178069271077,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":115.48587119249524,"scaled_rad":-12.685505076673024},{"average":0.2614592268975342,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":128.09006007440354,"scaled_rad":4.120080099204699},{"average":0.2649110172800895,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":132.10309693499568,"scaled_rad":9.47079591332755},{"average":0.26325398819211354,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":130.17664194435451,"scaled_rad":6.902189259139334},{"average":0.2610118585621294,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":127.56995154483742,"scaled_rad":3.426602059783221},{"average":0.26087876734061116,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":127.4152202551064,"scaled_rad":3.2202936734751972},{"average":0.2612668017575214,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":127.86634742265085,"scaled_rad":3.8217965635344626},{"average":0.2650443454577724,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":132.25810370895886,"scaled_rad":9.677471611945151},{"average":0.27236586065824936,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":140.7700662323463,"scaled_rad":21.026754976461746},{"average":0.27918210142995414,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":148.69459884758376,"scaled_rad":31.592798463445007},{"average":0.2835466480783878,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":153.76880227211853,"scaled_rad":38.35840302949137},{"average":0.2851701778755791,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":155.65631112935543,"scaled_rad":40.87508150580723},{"average":0.284972283074957,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":155.42623947337378,"scaled_rad":40.56831929783172},{"average":0.283459331141252,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":153.6672879712934,"scaled_rad":38.22305062839118},{"average":0.278935300058698,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":148.40766861998333,"scaled_rad":31.210224826644406},{"average":0.2738542375589693,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":142.50044690529478,"scaled_rad":23.333929207059697},{"average":0.2734388458203863,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":142.01751423158908,"scaled_rad":22.69001897545209},{"average":0.28010124342342896,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":149.76318943134976,"scaled_rad":33.017585908466344},{"average":0.285573327349187,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":156.12501099771745,"scaled_rad":41.50001466362326},{"average":0.2894898482995701,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":160.67834164566185,"scaled_rad":47.571122194215775},{"average":0.29284739125989845,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":164.58180685285237,"scaled_rad":52.77574247046982},{"average":0.2918773889374197,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":163.45408626627216,"scaled_rad":51.27211502169621},{"average":0.29276845198241586,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":164.49003238361254,"scaled_rad":52.65337651148337},{"average":0.29255933257057365,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":164.2469110422271,"scaled_rad":52.32921472296948},{"average":0.28881295644844485,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":159.89139005007013,"scaled_rad":46.521853400093505},{"average":0.2853001452700332,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":155.8074106709891,"scaled_rad":41.07654756131879},{"average":0.27172388449725177,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":140.0237074700284,"scaled_rad":20.031609960037883},{"average":0.27225228081025726,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":140.638018782734,"scaled_rad":20.85069171031199},{"average":0.2745518971943354,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":143.31154303877403,"scaled_rad":24.415390718365387},{"average":0.2723661455023565,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":140.7703973908973,"scaled_rad":21.0271965211964},{"average":0.26575613919120394,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":133.0856320849099,"scaled_rad":10.780842779879833},{"average":0.25731638782135735,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":123.273612933169,"scaled_rad":-2.301849422441336},{"average":0.24956428546360448,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":114.26105160674342,"scaled_rad":-14.318597857675428},{"average":0.23457285956249327,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":96.83208342894257,"scaled_rad":-37.55722209474325},{"average":0.22974861421780945,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":91.22343624961283,"scaled_rad":-45.03541833384956},{"average":0.22630507745709036,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":87.21999501476591,"scaled_rad":-50.37333998031211},{"average":0.22458053108547693,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":85.21504471649146,"scaled_rad":-53.046607044678055},{"average":0.22346104946949089,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":83.91354013718339,"scaled_rad":-54.78194648375549},{"average":0.22190086148856653,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":82.09967220692184,"scaled_rad":-57.200437057437554},{"average":0.2182118754117844,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":77.8108726381083,"scaled_rad":-62.91883648252228},{"average":0.2178128489357387,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":77.34696614922754,"scaled_rad":-63.53737846769661},{"average":0.21608020823889523,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":75.3326054227666,"scaled_rad":-66.22319276964454},{"average":0.19848970596402757,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":54.88196207485951,"scaled_rad":-93.49071723352066},{"average":0.1938465607593861,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":49.4838611503433,"scaled_rad":-100.6881851328756},{"average":0.1917240460896785,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":47.01623459638705,"scaled_rad":-103.97835387148393},{"average":0.19164985396476317,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":46.929979146590455,"scaled_rad":-104.0933611378794},{"average":0.1905188924296105,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":45.615128061942706,"scaled_rad":-105.84649591740973},{"average":0.18876993114369944,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":43.581793087843266,"scaled_rad":-108.55760921620899},{"average":0.18853351257946657,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":43.306933867657236,"scaled_rad":-108.92408817645702},{"average":0.19176876040108612,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":47.06821926520751,"scaled_rad":-103.90904097972333},{"average":0.19046940787337752,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":45.557597526717664,"scaled_rad":-105.92320329770979},{"average":0.18954572484289345,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":44.4837275525821,"scaled_rad":-107.35502992989053},{"average":0.18991663317516946,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":44.914944006758134,"scaled_rad":-106.78007465765583},{"average":0.19241783000232038,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":47.82282483106307,"scaled_rad":-102.90290022524923},{"average":0.19660999973511098,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":52.696623584477955,"scaled_rad":-96.40450188736273},{"average":0.20100924114080337,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":57.81116298667006,"scaled_rad":-89.58511601777325},{"average":0.20421803606829295,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":61.54169436168484,"scaled_rad":-84.61107418442022},{"average":0.20566434130893552,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":63.223162701042575,"scaled_rad":-82.3691163986099},{"average":0.2077514401045763,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":65.64961490999846,"scaled_rad":-79.13384678666873},{"average":0.22878587506634354,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":90.10415979485086,"scaled_rad":-46.52778694019885},{"average":0.2320647185422049,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":93.91612931514457,"scaled_rad":-41.44516091314058},{"average":0.23324107264274174,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":95.28375360380963,"scaled_rad":-39.62166186158716},{"average":0.23432235481071864,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":96.54084766685644,"scaled_rad":-37.94553644419143},{"average":0.23695879707254425,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":99.60596425997262,"scaled_rad":-33.85871432003651},{"average":0.2405117539169847,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":103.73661682013119,"scaled_rad":-28.351177573158424},{"average":0.24287836130990328,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":106.48802453895723,"scaled_rad":-24.68263394805703},{"average":0.2438891515135765,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":107.66316494324312,"scaled_rad":-23.115780075675843},{"average":0.24329755148734677,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":106.97537326157394,"scaled_rad":-24.032835651234763},{"average":0.24208396657301887,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":105.56446458668181,"scaled_rad":-25.9140472177576},{"average":0.2411727509168534,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":104.50508912905806,"scaled_rad":-27.32654782792258},{"average":0.23926581151270673,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":102.28808946464302,"scaled_rad":-30.28254738047599},{"average":0.2439608930563084,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":107.74657135658552,"scaled_rad":-23.00457152455263},{"average":0.2396138447051447,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":102.692711378251,"scaled_rad":-29.743051495665327},{"average":0.23257238285942097,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":94.5063376974645,"scaled_rad":-40.65821640338066},{"average":0.22963516712263526,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":91.09154313786364,"scaled_rad":-45.211275816181825},{"average":0.22858347181223318,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":89.86884662996297,"scaled_rad":-46.84153782671605},{"average":0.28498224838450553,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":155.4378250999946,"scaled_rad":40.58376679999279},{"average":0.28542023569628033,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":155.94702729127098,"scaled_rad":41.26270305502797},{"average":0.2847839098505349,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":155.20723756150372,"scaled_rad":40.27631674867163},{"average":0.28409131004976823,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":154.40202397027227,"scaled_rad":39.20269862702969},{"average":0.2856784116195899,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":156.24718152485215,"scaled_rad":41.66290869980287},{"average":0.28126511952590827,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":151.11630685238916,"scaled_rad":34.82174246985218},{"average":0.2780208961243038,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":147.34458648361158,"scaled_rad":29.792781978148753},{"average":0.27514967887388647,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":144.00652148437976,"scaled_rad":25.34202864583966},{"average":0.2725359734888445,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":140.9678386877909,"scaled_rad":21.290451583721193},{"average":0.2695704751148498,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":137.5201628541103,"scaled_rad":16.69355047214708},{"average":0.26820450522662964,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":135.93209205479707,"scaled_rad":14.576122739729414},{"average":0.27041942695494736,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":138.50715066321857,"scaled_rad":18.00953421762472},{"average":0.276169360455242,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":145.191998966653,"scaled_rad":26.922665288870633},{"average":0.27933166088213235,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":148.8684760324425,"scaled_rad":31.824634709923316},{"average":0.27931756008025044,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":148.85208249997248,"scaled_rad":31.802776666629995},{"average":0.2752377665447957,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":144.10893183702137,"scaled_rad":25.478575782695174},{"average":0.2689085095370001,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":136.7505644805302,"scaled_rad":15.667419307373592},{"average":0.26020154674723023,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":126.62788646516233,"scaled_rad":2.170515286883102},{"average":0.25153840509419506,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":116.55615471752789,"scaled_rad":-11.258460376629472},{"average":0.2479326865619662,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":112.36416164289545,"scaled_rad":-16.847784476139395},{"average":0.24630517753270956,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":110.47202654733425,"scaled_rad":-19.370631270220997},{"average":0.2431287977508414,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":106.77918088315452,"scaled_rad":-24.294425489127292},{"average":0.24461117777902047,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":108.50258961751818,"scaled_rad":-21.996547176642423},{"average":0.24314108672578522,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":106.79346799330979,"scaled_rad":-24.27537600892029},{"average":0.24163084481451802,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":105.03766715182306,"scaled_rad":-26.616443797569275},{"average":0.23946739142139753,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":102.52244541163773,"scaled_rad":-29.970072784483023},{"average":0.23595868947671395,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":98.44324341026271,"scaled_rad":-35.40900878631639},{"average":0.230970820783155,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":92.64436841941583,"scaled_rad":-43.140842107445565},{"average":0.22506251359697094,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":85.77539554038893,"scaled_rad":-52.29947261281477},{"average":0.21905588667086257,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":78.7921165486751,"scaled_rad":-61.610511268433214},{"average":0.21383560960585216,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":72.72304457076363,"scaled_rad":-69.70260723898183},{"average":0.21194578124922323,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":70.52593813762908,"scaled_rad":-72.63208248316121},{"average":0.21367120861839084,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":72.53191267992396,"scaled_rad":-69.9574497601014},{"average":0.21310931818793907,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":71.8786612483154,"scaled_rad":-70.82845166891282},{"average":0.21483213960956993,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":73.88160612705518,"scaled_rad":-68.15785849725975},{"average":0.2193766230595446,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":79.16500331399526,"scaled_rad":-61.113328914673005},{"average":0.22509824994034064,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":85.81694246164179,"scaled_rad":-52.244076717810955},{"average":0.23185293830834067,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":93.66991451336021,"scaled_rad":-41.77344731551972},{"average":0.23162992538184923,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":93.41064063076247,"scaled_rad":-42.11914582565004},{"average":0.23387514352660232,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":96.02092172445231,"scaled_rad":-38.63877103406358},{"average":0.23462158017964274,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":96.88872581182878,"scaled_rad":-37.481698917561644},{"average":0.23314121116964961,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":95.16765507867989,"scaled_rad":-39.776459895093495},{"average":0.22974578568856216,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":91.220147813505,"scaled_rad":-45.039802915326675},{"average":0.22516693260596163,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":85.896792637427,"scaled_rad":-52.137609816764},{"average":0.22549589360406733,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":86.27924129878461,"scaled_rad":-51.627678268287184},{"average":0.22512975453373488,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":85.85356956831895,"scaled_rad":-52.19524057557474},{"average":0.2085807921549121,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":66.61381608664738,"scaled_rad":-77.84824521780351},{"average":0.2026568052360628,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":59.72661401691765,"scaled_rad":-87.03118131077646},{"average":0.20169181357661303,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":58.60471880592598,"scaled_rad":-88.52704159209871},{"average":0.2001811514298121,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":56.84842940038983,"scaled_rad":-90.86876079948023},{"average":0.19761454959484664,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":53.86450899136573,"scaled_rad":-94.8473213448457},{"average":0.1943524411647917,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":50.07199556435747,"scaled_rad":-99.90400591419004},{"average":0.19125223180036183,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":46.467705304472105,"scaled_rad":-104.70972626070386},{"average":0.18868589476020384,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":43.48409274476824,"scaled_rad":-108.68787634030902},{"average":0.18719106416355832,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":41.746209032305195,"scaled_rad":-111.00505462359308},{"average":0.18704296829061465,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":41.57403339845788,"scaled_rad":-111.2346221353895},{"average":0.18754975045461664,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":42.1632161931921,"scaled_rad":-110.44904507574387},{"average":0.18763020688825063,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":42.25675450173968,"scaled_rad":-110.32432733101376},{"average":0.1866208467579123,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":41.08327669464837,"scaled_rad":-111.88896440713552},{"average":0.18261992481532166,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":36.43182181108665,"scaled_rad":-118.09090425188447},{"average":0.17883641854859889,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":32.03313347028423,"scaled_rad":-123.95582203962104},{"average":0.17778306465708849,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":30.80850870302065,"scaled_rad":-125.58865506263913},{"average":0.18199393262563016,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":35.704045946025246,"scaled_rad":-119.06127207196633},{"average":0.1825193866266874,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":36.314936539337396,"scaled_rad":-118.24675128088347},{"average":0.18502497673034668,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":39.22792496828019,"scaled_rad":-114.36276670895975},{"average":0.18502451364709213,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":39.22738658965227,"scaled_rad":-114.3634845471303},{"average":0.18476225795099255,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":38.92248922952672,"scaled_rad":-114.77001436063105},{"average":0.1841524453337651,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":38.213523666798565,"scaled_rad":-115.71530177760192},{"average":0.18332733394263287,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":37.25425266255616,"scaled_rad":-116.99432978325845},{"average":0.18217679849041787,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":35.91664502493975,"scaled_rad":-118.77780663341368},{"average":0.18075478497827263,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":34.26341814611796,"scaled_rad":-120.9821091385094},{"average":0.17953084471216343,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":32.84047038315932,"scaled_rad":-122.87937282245424},{"average":0.17887331062107237,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":32.07602403729199,"scaled_rad":-123.89863461694402},{"average":0.1790880053182235,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":32.325627181734184,"scaled_rad":-123.56583042435443},{"average":0.18058889264480993,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":34.070552422741486,"scaled_rad":-121.23926343634469},{"average":0.18423209711909294,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":38.30612649463772,"scaled_rad":-115.59183134048304},{"average":0.18423209711909294,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":38.30612649463772,"scaled_rad":-115.59183134048304},{"average":0.18423209711909294,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":38.30612649463772,"scaled_rad":-115.59183134048304},{"average":0.18423209711909294,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":38.30612649463772,"scaled_rad":-115.59183134048304},{"average":0.18423209711909294,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":38.30612649463772,"scaled_rad":-115.59183134048304},{"average":0.18423209711909294,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":38.30612649463772,"scaled_rad":-115.59183134048304},{"average":0.18423209711909294,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":38.30612649463772,"scaled_rad":-115.59183134048304},{"average":0.18423209711909294,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":38.30612649463772,"scaled_rad":-115.59183134048304},{"average":0.18431536839894733,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":38.402937331464074,"scaled_rad":-115.46275022471457},{"average":0.23277925327420235,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":94.74684436440442,"scaled_rad":-40.33754084746077},{"average":0.23280291501273456,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":94.77435340127855,"scaled_rad":-40.300862131628605},{"average":0.24668633151456154,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":110.91515455025811,"scaled_rad":-18.779793932989207},{"average":0.28470192734767674,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":155.11192505134778,"scaled_rad":40.149233401797034},{"average":0.292499551815646,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":164.17741019006326,"scaled_rad":52.23654692008432},{"average":0.29667771977636526,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":169.03493054264592,"scaled_rad":58.71324072352789},{"average":0.30325286158565745,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":176.679162526622,"scaled_rad":68.90555003549599},{"average":0.3080452191131268,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":182.25073706488635,"scaled_rad":76.33431608651514},{"average":0.31183310097234473,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":186.65451245096784,"scaled_rad":82.20601660129046},{"average":0.31382252691191126,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":188.96741061165758,"scaled_rad":85.28988081554343},{"average":0.3137623535136783,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":188.89745327405208,"scaled_rad":85.19660436540275},{"average":0.3145521028389951,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":189.815612490539,"scaled_rad":86.42081665405198},{"average":0.3172524461910229,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":192.95502022013594,"scaled_rad":90.60669362684789},{"average":0.31746158778193206,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":193.19816734681055,"scaled_rad":90.93088979574739},{"average":0.32050928122124145,"rel_min":0.15558402556926013,"rel_max":0.323312144692233,"scaled_dist":196.74140281485757,"scaled_rad":95.65520375314341},{"average":0.3305593290628993,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.3263635799040397,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":195.3240767717407,"scaled_rad":93.76543569565428},{"average":0.32013978027489143,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":188.3880069181569,"scaled_rad":84.51734255754249},{"average":0.314076352641729,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":181.63066251092368,"scaled_rad":75.50755001456491},{"average":0.309191369020672,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":176.18662676938408,"scaled_rad":68.2488356925121},{"average":0.3067472447079933,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":173.46278956804053,"scaled_rad":64.6170527573874},{"average":0.3027046360691224,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":168.95753271841616,"scaled_rad":58.61004362455486},{"average":0.29843114193516596,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":164.1949671478309,"scaled_rad":52.2599561971079},{"average":0.29395541472013736,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":159.2070243381629,"scaled_rad":45.609365784217204},{"average":0.29049841265537235,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":155.35439262860464,"scaled_rad":40.47252350480619},{"average":0.28759170157837943,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":152.1150288515661,"scaled_rad":36.153371802088145},{"average":0.2844073171498346,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":148.56621395501804,"scaled_rad":31.421618606690714},{"average":0.2809825764996428,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":144.74953575270433,"scaled_rad":26.33271433693912},{"average":0.27761741544369584,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":140.99925561140705,"scaled_rad":21.33234081520942},{"average":0.27495325602846277,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":138.03020183297292,"scaled_rad":17.373602443963904},{"average":0.2735921566159213,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":136.513334137097,"scaled_rad":15.351112182795987},{"average":0.27125917316936865,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":133.9133570946551,"scaled_rad":11.884476126206806},{"average":0.26853148162655244,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":130.87350038214197,"scaled_rad":7.831333842855969},{"average":0.2666061565436942,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":128.7278353444985,"scaled_rad":4.9704471259979925},{"average":0.2650183528016734,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":126.95831859835204,"scaled_rad":2.611091464469382},{"average":0.23227407803430986,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":90.46669119638551,"scaled_rad":-46.04441173815265},{"average":0.2304371817758487,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":88.41957504200236,"scaled_rad":-48.77389994399684},{"average":0.22696722542714093,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":84.55250652154334,"scaled_rad":-53.92999130460889},{"average":0.22374750046700334,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":80.96430661737999,"scaled_rad":-58.71425784349336},{"average":0.22207024935961822,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":79.09510588213458,"scaled_rad":-61.20652549048722},{"average":0.22087338844385856,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":77.76127262730832,"scaled_rad":-62.98496983025558},{"average":0.21977427634447813,"rel_min":0.15558402556926013,"rel_max":0.3305593290628993,"scaled_dist":76.53637485545232,"scaled_rad":-64.6181668593969},{"average":0.14471500461992506,"rel_min":0.14471500461992506,"rel_max":0.3305593290628993,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.14186349681666213,"rel_min":0.14186349681666213,"rel_max":0.3305593290628993,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.14154710692418798,"rel_min":0.14154710692418798,"rel_max":0.3305593290628993,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.14282320600613027,"rel_min":0.14154710692418798,"rel_max":0.3305593290628993,"scaled_dist":6.316525027657362,"scaled_rad":-158.24463329645684},{"average":0.14449678938983687,"rel_min":0.14154710692418798,"rel_max":0.3305593290628993,"scaled_dist":8.043126387770931,"scaled_rad":-155.94249814963877},{"average":0.14577483409564063,"rel_min":0.14154710692418798,"rel_max":0.3305593290628993,"scaled_dist":9.361658675322351,"scaled_rad":-154.1844550995702},{"average":0.08580242393279,"rel_min":0.08580242393279,"rel_max":0.3305593290628993,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.08531216390748725,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.09332056812007768,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":11.367612120880295,"scaled_rad":-151.50985050549295},{"average":0.091255127443514,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":9.725346728435534,"scaled_rad":-153.69953769541928},{"average":0.08953985036350787,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":8.361502092803407,"scaled_rad":-155.51799720959545},{"average":0.08842238850066997,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":7.472990035527212,"scaled_rad":-156.70267995263038},{"average":0.08887571589014023,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":7.833437997854049,"scaled_rad":-156.22208266952794},{"average":0.09062564343866981,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":9.224833783191787,"scaled_rad":-154.36688828907762},{"average":0.09268283879864611,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":10.86054319064271,"scaled_rad":-152.18594241247638},{"average":0.09421753542724409,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":12.08080537955308,"scaled_rad":-150.5589261605959},{"average":0.09629134547815446,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":13.729725397328862,"scaled_rad":-148.36036613689484},{"average":0.09798743006009986,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":15.078309766366383,"scaled_rad":-146.56225364484482},{"average":0.0994062743161267,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":16.206455854211704,"scaled_rad":-145.05805886105105},{"average":0.10253645859427693,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":18.69531615909024,"scaled_rad":-141.73957845454635},{"average":0.10592428596197244,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":21.389032664567434,"scaled_rad":-138.14795644724342},{"average":0.10842195938095174,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":23.374973323218164,"scaled_rad":-135.50003556904244},{"average":0.1099413572911196,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":24.58307125289242,"scaled_rad":-133.88923832947677},{"average":0.11326616215239779,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":27.22667754101566,"scaled_rad":-130.36442994531245},{"average":0.1178526492896848,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":30.873467876815102,"scaled_rad":-125.50204283091321},{"average":0.12051700243866571,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":32.99193829306657,"scaled_rad":-122.67741560924458},{"average":0.12029923850376205,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":32.818790655338304,"scaled_rad":-122.9082791262156},{"average":0.12099166193286708,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":33.36934775796543,"scaled_rad":-122.17420298937944},{"average":0.12229378328484908,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":34.404685571047125,"scaled_rad":-120.79375257193716},{"average":0.12392989148364494,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":35.705581744762405,"scaled_rad":-119.0592243403168},{"average":0.1262645659643146,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":37.56191930300527,"scaled_rad":-116.58410759599298},{"average":0.12900345934883803,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":39.739657869906225,"scaled_rad":-113.68045617345837},{"average":0.13160907698152616,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":41.811426724205546,"scaled_rad":-110.91809770105928},{"average":0.13347218586951606,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":43.29281482884605,"scaled_rad":-108.9429135615386},{"average":0.13509403720117089,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":44.58237513618855,"scaled_rad":-107.22349981841526},{"average":0.136009657935841,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":45.31040003770995,"scaled_rad":-106.25279994972007},{"average":0.13497540091369808,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":44.48804549921788,"scaled_rad":-107.3492726677095},{"average":0.1338329351876566,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":43.579652464636155,"scaled_rad":-108.56046338048512},{"average":0.13260257072152054,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":42.601369715702056,"scaled_rad":-109.86484037906393},{"average":0.13196903617310346,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":42.09763611754591,"scaled_rad":-110.53648517660545},{"average":0.13189917787428465,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":42.042090650747,"scaled_rad":-110.610545799004},{"average":0.1333120380747488,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":43.1654787189268,"scaled_rad":-109.11269504143094},{"average":0.13720517364905,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":46.26097397779209,"scaled_rad":-104.98536802961056},{"average":0.13707061513690402,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":46.15398432165544,"scaled_rad":-105.12802090445942},{"average":0.13373181687167554,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":43.49925165101692,"scaled_rad":-108.66766446531078},{"average":0.12910886839914917,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":39.823470316005846,"scaled_rad":-113.56870624532553},{"average":0.12460311057899769,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":36.24086917004455,"scaled_rad":-118.34550777327394},{"average":0.12218444862501228,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":34.31775180912305,"scaled_rad":-120.9096642545026},{"average":0.12192560035254507,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":34.11193734802981,"scaled_rad":-121.18408353596026},{"average":0.11714967881501825,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":30.314524647142665,"scaled_rad":-126.24730047047645},{"average":0.11364749546532006,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":27.529881845019425,"scaled_rad":-129.9601575399741},{"average":0.112760362910049,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":26.824508357141454,"scaled_rad":-130.9006555238114},{"average":0.11477593304506972,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":28.427120872886444,"scaled_rad":-128.76383883615142},{"average":0.11594157334312863,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":29.353940385672445,"scaled_rad":-127.52807948577008},{"average":0.1155332455137635,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":29.029272303675477,"scaled_rad":-127.96097026176604},{"average":0.11677196954080231,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":30.014201875112107,"scaled_rad":-126.64773083318386},{"average":0.11466067119247535,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":28.335474303835746,"scaled_rad":-128.88603426155234},{"average":0.11320685095659636,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":27.17951824694614,"scaled_rad":-130.42730900407182},{"average":0.11429920496843886,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":28.04806664453641,"scaled_rad":-129.26924447395146},{"average":0.1174139391630888,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":30.52464233735573,"scaled_rad":-125.96714355019236},{"average":0.12082774036783867,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":33.23901106208442,"scaled_rad":-122.3479852505541},{"average":0.1233492159681853,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":35.24387722131612,"scaled_rad":-119.67483037157851},{"average":0.12338927213432874,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":35.27572652890352,"scaled_rad":-119.63236462812864},{"average":0.12187516876916754,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":34.07183837786481,"scaled_rad":-121.2375488295136},{"average":0.12073883939048519,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":33.168324452626806,"scaled_rad":-122.44223406316426},{"average":0.12054270791636534,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":33.01237713544117,"scaled_rad":-122.65016381941177},{"average":0.12263122482246833,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":34.67299081239031,"scaled_rad":-120.43601225014626},{"average":0.12395065670099223,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":35.722092505978154,"scaled_rad":-119.03720999202913},{"average":0.12360053876769174,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":35.44370805676207,"scaled_rad":-119.40838925765058},{"average":0.1157898218866786,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":29.233280340574666,"scaled_rad":-127.68895954590045},{"average":0.11087677882577496,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":25.32684009173793,"scaled_rad":-132.89754654434944},{"average":0.1064196879884637,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":21.78293485342486,"scaled_rad":-137.62275352876685},{"average":0.10180900656994443,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":18.116907252080267,"scaled_rad":-142.51079033055964},{"average":0.09979885816773951,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":16.51860564406141,"scaled_rad":-144.64185914125144},{"average":0.09635738557204604,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":13.7822349474421,"scaled_rad":-148.29035340341053},{"average":0.0933733243719753,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":11.40955947270195,"scaled_rad":-151.45392070306406},{"average":0.09141785403955038,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":9.854733285083345,"scaled_rad":-153.52702228655554},{"average":0.09112080414203204,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":9.618544092113996,"scaled_rad":-153.84194121051468},{"average":0.0921106143915412,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":10.405558280563328,"scaled_rad":-152.7925889592489},{"average":0.09281035925770272,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":10.9619367765799,"scaled_rad":-152.05075096456014},{"average":0.09450171380330183,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":12.306760216976553,"scaled_rad":-150.25765304403126},{"average":0.09645367349212122,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":13.858795034906363,"scaled_rad":-148.1882732867915},{"average":0.09708275361378588,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":14.358986846081313,"scaled_rad":-147.52135087189157},{"average":0.09659425688024784,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":13.970575167685135,"scaled_rad":-148.03923310975316},{"average":0.09667042059443472,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":14.031134172544704,"scaled_rad":-147.9584877699404},{"average":0.09734498708785293,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":14.567492935889407,"scaled_rad":-147.24334275214747},{"average":0.09892233766372095,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":15.821669970308339,"scaled_rad":-145.57110670625553},{"average":0.10102050186384359,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":17.48995436725394,"scaled_rad":-143.3467275103281},{"average":0.10401579039823525,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":19.87155687766927,"scaled_rad":-140.17125749644097},{"average":0.10858872026413471,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":23.50756760703006,"scaled_rad":-135.32324319062658},{"average":0.11432902949443347,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":28.071780609039372,"scaled_rad":-129.23762585461418},{"average":0.11905709636687319,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":31.83114328930316,"scaled_rad":-124.22514228092912},{"average":0.11888288267665026,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":31.69262315769657,"scaled_rad":-124.40983578973791},{"average":0.11477495640288309,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":28.426344328838425,"scaled_rad":-128.76487422821543},{"average":0.10752852305304259,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":22.6645876034408,"scaled_rad":-136.4472165287456},{"average":0.1040154383756768,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":19.871276978821697,"scaled_rad":-140.1716306949044},{"average":0.10312378241608328,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":19.16230685877748,"scaled_rad":-141.1169241882967},{"average":0.10445067712606895,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":20.217342370740447,"scaled_rad":-139.71021017234608},{"average":0.10582548904024291,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":21.31047762918079,"scaled_rad":-138.2526964944256},{"average":0.10607444152942505,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":21.50842379243105,"scaled_rad":-137.9887682767586},{"average":0.10563233834864526,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":21.156900380539913,"scaled_rad":-138.4574661592801},{"average":0.10441116324114771,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":20.18592423975101,"scaled_rad":-139.7521010136653},{"average":0.10404887036957707,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":19.89785929958541,"scaled_rad":-140.13618760055277},{"average":0.10452759806935474,"rel_min":0.08531216390748725,"rel_max":0.3305593290628993,"scaled_dist":20.278503460742137,"scaled_rad":-139.62866205234383},{"average":0.07357729045253196,"rel_min":0.07357729045253196,"rel_max":0.3305593290628993,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.0765280584555002,"rel_min":0.07357729045253196,"rel_max":0.3305593290628993,"scaled_dist":7.239066059598121,"scaled_rad":-157.0145785872025},{"average":0.08005891239736229,"rel_min":0.07357729045253196,"rel_max":0.3305593290628993,"scaled_dist":9.918305909924886,"scaled_rad":-153.4422587867668},{"average":0.08099588849372136,"rel_min":0.07357729045253196,"rel_max":0.3305593290628993,"scaled_dist":10.629290770104319,"scaled_rad":-152.49427897319424},{"average":0.08057932166017247,"rel_min":0.07357729045253196,"rel_max":0.3305593290628993,"scaled_dist":10.313196567640643,"scaled_rad":-152.91573790981246},{"average":0.07903131953675022,"rel_min":0.07357729045253196,"rel_max":0.3305593290628993,"scaled_dist":9.138560333530073,"scaled_rad":-154.48191955529325},{"average":0.0773126532503343,"rel_min":0.07357729045253196,"rel_max":0.3305593290628993,"scaled_dist":7.834422784994094,"scaled_rad":-156.22076962000787},{"average":0.07411018410745598,"rel_min":0.07357729045253196,"rel_max":0.3305593290628993,"scaled_dist":5.40436391302716,"scaled_rad":-159.46084811596378},{"average":0.07147726268876031,"rel_min":0.07147726268876031,"rel_max":0.3305593290628993,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.06950642163858967,"rel_min":0.06950642163858967,"rel_max":0.3305593290628993,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.06862028714999355,"rel_min":0.06862028714999355,"rel_max":0.3305593290628993,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.06876400973353732,"rel_min":0.06862028714999355,"rel_max":0.3305593290628993,"scaled_dist":5.106993992137886,"scaled_rad":-159.85734134381616},{"average":0.06903737399732127,"rel_min":0.06862028714999355,"rel_max":0.3305593290628993,"scaled_dist":5.31049947588931,"scaled_rad":-159.58600069881425},{"average":0.06924865313167627,"rel_min":0.06862028714999355,"rel_max":0.3305593290628993,"scaled_dist":5.467785808229661,"scaled_rad":-159.3762855890271},{"average":0.06861839473925992,"rel_min":0.06861839473925992,"rel_max":0.3305593290628993,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.06724816627937975,"rel_min":0.06724816627937975,"rel_max":0.3305593290628993,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.06569896235652567,"rel_min":0.06569896235652567,"rel_max":0.3305593290628993,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.0638721274415223,"rel_min":0.0638721274415223,"rel_max":0.3305593290628993,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.06225285625874618,"rel_min":0.06225285625874618,"rel_max":0.3305593290628993,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.06184366482368438,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.06283395337685943,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":5.718626762663263,"scaled_rad":-159.04183098311566},{"average":0.06496154629723348,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":7.262565857719541,"scaled_rad":-156.9832455230406},{"average":0.067026782945601,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":8.761254620698226,"scaled_rad":-154.98499383906903},{"average":0.10951386303189464,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":39.593028571366915,"scaled_rad":-113.8759619048441},{"average":0.1085624048339366,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":38.90257999209596,"scaled_rad":-114.79656001053871},{"average":0.10429161070654823,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":35.80337527249556,"scaled_rad":-118.92883297000593},{"average":0.09818710852660752,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":31.37349609720213,"scaled_rad":-124.83533853706383},{"average":0.09288768150906425,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":27.527839122396973,"scaled_rad":-129.96288117013736},{"average":0.09064860335897684,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":25.90299808269354,"scaled_rad":-132.12933588974195},{"average":0.0910664982443408,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":26.20625358094178,"scaled_rad":-131.72499522541096},{"average":0.09215532537414937,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":26.99638723732462,"scaled_rad":-130.67148368356717},{"average":0.09292803245991879,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":27.557120762672437,"scaled_rad":-129.92383898310342},{"average":0.09237332589095679,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":27.154584567940976,"scaled_rad":-130.46055390941203},{"average":0.0895222850610181,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":25.08565805629882,"scaled_rad":-133.21912259160158},{"average":0.08160774050407228,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":19.342277993309516,"scaled_rad":-140.87696267558732},{"average":0.0755854105357738,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":14.972029064416507,"scaled_rad":-146.70396124744465},{"average":0.07224995666001158,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":12.551576547757016,"scaled_rad":-149.9312312696573},{"average":0.07263642581327875,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":12.83202720589212,"scaled_rad":-149.55729705881052},{"average":0.07438120707593043,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":14.09816979263093,"scaled_rad":-147.86910694315876},{"average":0.0757023091942692,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":15.056859394167242,"scaled_rad":-146.59085414111036},{"average":0.07816549781226105,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":16.84433159780038,"scaled_rad":-144.2075578695995},{"average":0.07994559821678777,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":18.136104371320947,"scaled_rad":-142.48519417157206},{"average":0.08178687125198311,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":19.4722685390468,"scaled_rad":-140.7036419479376},{"average":0.08574684285938278,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":22.34591740365305,"scaled_rad":-136.8721101284626},{"average":0.09106362277030637,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":26.204166923886266,"scaled_rad":-131.7277774348183},{"average":0.09519488847544116,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":29.20211948010245,"scaled_rad":-127.7305073598634},{"average":0.09751195262891922,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":30.883552943266686,"scaled_rad":-125.48859607564441},{"average":0.09929795890442424,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":32.17961145444243,"scaled_rad":-123.76051806074344},{"average":0.10187130265421496,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":34.04702038510484,"scaled_rad":-121.27063948652687},{"average":0.10534192679452307,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":36.565562462940726,"scaled_rad":-117.91258338274571},{"average":0.10070498034787866,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":33.20065048560723,"scaled_rad":-122.39913268585704},{"average":0.1045361617079217,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":35.980839602321055,"scaled_rad":-118.69221386357194},{"average":0.10479204992161077,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":36.1665310535829,"scaled_rad":-118.44462526188948},{"average":0.10155647370778738,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":33.818557170177684,"scaled_rad":-121.57525710642976},{"average":0.09689385790380231,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":30.435017604848525,"scaled_rad":-126.08664319353531},{"average":0.09322973231363828,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":27.776056534957476,"scaled_rad":-129.6319246200567},{"average":0.09185775633576698,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":26.780449090775367,"scaled_rad":-130.9594012122995},{"average":0.0922375531350008,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":27.056057794347876,"scaled_rad":-130.5919229408695},{"average":0.09376776478723693,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":28.16649277040648,"scaled_rad":-129.11134297279136},{"average":0.0957030198933422,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":29.570857293624538,"scaled_rad":-127.23885694183394},{"average":0.0986317057805018,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":31.696128812919834,"scaled_rad":-124.40516158277356},{"average":0.10067705617506438,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":33.18038663640364,"scaled_rad":-122.42615115146181},{"average":0.10028076321098277,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":32.89280709311687,"scaled_rad":-122.80959054251085},{"average":0.09587351151144256,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":29.694578646541178,"scaled_rad":-127.0738951379451},{"average":0.0901965067659737,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":25.574923290756093,"scaled_rad":-132.56676894565854},{"average":0.08545044816257256,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":22.130831446376888,"scaled_rad":-137.15889140483083},{"average":0.0954354781910178,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":29.376709207390103,"scaled_rad":-127.49772105681319},{"average":0.09683800773599291,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":30.3944885841319,"scaled_rad":-126.14068188782414},{"average":0.09911340168317813,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":32.04568305750702,"scaled_rad":-123.9390892566573},{"average":0.10163873676222299,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":33.87825333884116,"scaled_rad":-121.49566221487845},{"average":0.1037099527218379,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":35.38128113317682,"scaled_rad":-119.49162515576424},{"average":0.10240229708869265,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":34.432349297791426,"scaled_rad":-120.75686760294477},{"average":0.098462998266088,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":31.573702137854827,"scaled_rad":-124.5683971495269},{"average":0.09249375797263062,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":27.241979011405547,"scaled_rad":-130.3440279847926},{"average":0.0891230689895696,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":24.795957289680484,"scaled_rad":-133.60539028042604},{"average":0.08781881516753054,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":23.849494060535754,"scaled_rad":-134.86734125261898},{"average":0.08772520950611765,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":23.781566855669627,"scaled_rad":-134.95791085910716},{"average":0.0884582087873046,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":24.313485455339407,"scaled_rad":-134.24868605954745},{"average":0.09132550369618497,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":26.394207131221805,"scaled_rad":-131.47439049170427},{"average":0.09454958594308611,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":28.7338401404313,"scaled_rad":-128.35487981275827},{"average":0.09627357007142294,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":29.98489078527354,"scaled_rad":-126.68681228630194},{"average":0.09664713660985433,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":30.25597834989453,"scaled_rad":-126.32536220014063},{"average":0.0966989300959271,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":30.293563541709773,"scaled_rad":-126.27524861105364},{"average":0.09756469756461048,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":30.921828577435296,"scaled_rad":-125.43756189675294},{"average":0.10012750111003144,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":32.78158875469167,"scaled_rad":-122.9578816604111},{"average":0.1032573201950708,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":35.05281742798317,"scaled_rad":-119.9295767626891},{"average":0.10753319724622712,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":38.155710693755815,"scaled_rad":-115.79238574165892},{"average":0.11307404968987882,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":42.176563849343474,"scaled_rad":-110.43124820087537},{"average":0.12087078241421897,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":47.83445091577396,"scaled_rad":-102.88739877896806},{"average":0.1246326939249468,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":50.564372696362405,"scaled_rad":-99.2475030715168},{"average":0.1300639176309654,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":54.50567111553758,"scaled_rad":-93.99243851261656},{"average":0.13702726921908348,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":59.558795069168525,"scaled_rad":-87.2549399077753},{"average":0.1414574422769321,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":62.77365695199289,"scaled_rad":-82.96845739734282},{"average":0.1433767160787762,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":64.16642425649371,"scaled_rad":-81.11143432467506},{"average":0.1427632794439684,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":63.72126917360642,"scaled_rad":-81.70497443519143},{"average":0.14152169473017706,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":62.82028329369961,"scaled_rad":-82.90628894173385},{"average":0.12893441101405365,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":53.68601740863006,"scaled_rad":-95.0853101218266},{"average":0.12707402168839557,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":52.335981043871,"scaled_rad":-96.885358608172},{"average":0.12391835719949885,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":50.04599703018484,"scaled_rad":-99.93867062642022},{"average":0.12011652176500949,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":47.28710349182581,"scaled_rad":-103.61719534423226},{"average":0.11818655398954828,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":45.886575847557516,"scaled_rad":-105.48456553658998},{"average":0.11950848180751364,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":46.845864637933985,"scaled_rad":-104.20551381608803},{"average":0.12088026915444061,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":47.8413351975238,"scaled_rad":-102.87821973663495},{"average":0.12048506571733508,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":47.55454629575373,"scaled_rad":-103.26060493899502},{"average":0.11575490108532585,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":44.12198829488974,"scaled_rad":-107.83734894014702},{"average":0.10879993076899094,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":39.074946413185444,"scaled_rad":-114.56673811575274},{"average":0.10386434081567532,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":35.493316575485444,"scaled_rad":-119.34224456601942},{"average":0.1022492140607203,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":34.321260907990535,"scaled_rad":-120.90498545601261},{"average":0.10246111484586766,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":34.47503182127437,"scaled_rad":-120.69995757163417},{"average":0.10412858764910726,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":35.68507366067478,"scaled_rad":-119.08656845243362},{"average":0.10724759524732473,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":37.94845671790873,"scaled_rad":-116.06872437612168},{"average":0.1117009014737273,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":41.18010574219279,"scaled_rad":-111.75985901040961},{"average":0.11350669717137434,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":42.49052492463279,"scaled_rad":-110.01263343382296},{"average":0.11652937543071355,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":44.684004274784975,"scaled_rad":-107.08799430028671},{"average":0.11727274120542534,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":45.223445570398304,"scaled_rad":-106.36873923946894},{"average":0.11583769713589073,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":44.18207124504399,"scaled_rad":-107.75723833994135},{"average":0.11193387506939206,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":41.349168648455624,"scaled_rad":-111.53444180205918},{"average":0.10816148795965957,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":38.61164499690184,"scaled_rad":-115.18447333746421},{"average":0.10632477023634392,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":37.27878650106174,"scaled_rad":-116.96161799858434},{"average":0.10597527418417244,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":37.025166265090796,"scaled_rad":-117.29977831321227},{"average":0.10815742228070603,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":38.6086946389531,"scaled_rad":-115.18840714806254},{"average":0.13554394095654562,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":58.482382155117534,"scaled_rad":-88.69015712650996},{"average":0.1350190161460652,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":58.10145781141214,"scaled_rad":-89.19805625145048},{"average":0.13266133011514178,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":56.390546103560254,"scaled_rad":-91.47927186191966},{"average":0.12896895188559065,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":53.71108282477834,"scaled_rad":-95.05188956696222},{"average":0.12495118801792462,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":50.79549561324375,"scaled_rad":-98.93933918234167},{"average":0.12147652027284221,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":48.274019196119454,"scaled_rad":-102.30130773850739},{"average":0.12604878744590797,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":51.59199509928123,"scaled_rad":-97.87733986762504},{"average":0.11894139936649716,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":46.434347593286475,"scaled_rad":-104.75420320895137},{"average":0.11603841233924812,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":44.32772507123794,"scaled_rad":-107.56303323834942},{"average":0.11584812846511255,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":44.18964099057414,"scaled_rad":-107.74714534590115},{"average":0.11677812675228309,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":44.86451666822282,"scaled_rad":-106.84731110903624},{"average":0.11934387886555317,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":46.7264165448235,"scaled_rad":-104.36477794023534},{"average":0.12252826665593948,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":49.03724431470202,"scaled_rad":-101.28367424706397},{"average":0.12462292734912976,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":50.557285345166434,"scaled_rad":-99.25695287311143},{"average":0.1236924130254226,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":49.88203519316425,"scaled_rad":-100.15728640911433},{"average":0.1201698552111624,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":47.32580619279883,"scaled_rad":-103.5655917429349},{"average":0.1167833006295194,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":44.86827121697209,"scaled_rad":-106.8423050440372},{"average":0.1130653701675412,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":42.170265344711716,"scaled_rad":-110.43964620705104},{"average":0.10883646148232308,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":39.10145580600381,"scaled_rad":-114.53139225866158},{"average":0.1059503549196083,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":37.00708300000179,"scaled_rad":-117.32388933333095},{"average":0.10393426806829553,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":35.544060972167884,"scaled_rad":-119.27458537044282},{"average":0.10362658158602586,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":35.32078085854871,"scaled_rad":-119.57229218860172},{"average":0.10199410733548159,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":34.13613656266297,"scaled_rad":-121.15181791644937},{"average":0.10256681588075595,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":34.55173632550032,"scaled_rad":-120.5976848993329},{"average":0.10282046422149455,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":34.7358023589564,"scaled_rad":-120.35226352139148},{"average":0.10141791312075028,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":33.71800733975104,"scaled_rad":-121.7093235469986},{"average":0.11289625666279478,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":42.04754405297416,"scaled_rad":-110.60327459603445},{"average":0.1132076672407754,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":42.27352664642715,"scaled_rad":-110.30196447143047},{"average":0.1111691384507392,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":40.79421908472436,"scaled_rad":-112.27437455370085},{"average":0.10904614185194739,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":39.25361542123317,"scaled_rad":-114.3285127716891},{"average":0.10631842858916007,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":37.274184531897234,"scaled_rad":-116.96775395747036},{"average":0.10394837175202376,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":35.554295650279386,"scaled_rad":-119.26093913296083},{"average":0.1030172084501416,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":34.87857455161884,"scaled_rad":-120.16190059784155},{"average":0.10289736395929329,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":34.79160650760255,"scaled_rad":-120.27785798986326},{"average":0.10347811230537245,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":35.213040545718854,"scaled_rad":-119.71594593904153},{"average":0.10561617309202358,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":36.764575900300265,"scaled_rad":-117.64723213293298},{"average":0.10847586460134356,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":38.83977998598757,"scaled_rad":-114.88029335201657},{"average":0.10937322142139615,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":39.49096859609583,"scaled_rad":-114.01204187187221},{"average":0.10775034989495379,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":38.31329274845882,"scaled_rad":-115.58227633538823},{"average":0.1042235865247216,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":35.754011885014044,"scaled_rad":-118.99465081998127},{"average":0.10151082974274284,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":33.78543452655032,"scaled_rad":-121.61942063126625},{"average":0.09827304876622464,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":31.435860703942808,"scaled_rad":-124.75218572807626},{"average":0.09553354160499332,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":29.447871287871585,"scaled_rad":-127.40283828283789},{"average":0.09553058068340924,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":29.445722623741673,"scaled_rad":-127.40570316834444},{"average":0.09643592032182483,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":30.10270415844625,"scaled_rad":-126.52972778873834},{"average":0.09690221549681155,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":30.441082493702012,"scaled_rad":-126.078556675064},{"average":0.09620064069229357,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":29.93196782311393,"scaled_rad":-126.75737623584808},{"average":0.09522509510485758,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":29.224039648965242,"scaled_rad":-127.70128046804635},{"average":0.09412064304569108,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":28.42256738590527,"scaled_rad":-128.7699101521263},{"average":0.09308589197177854,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":27.671675323158524,"scaled_rad":-129.77109956912196},{"average":0.09218661040563828,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":27.019089974649617,"scaled_rad":-130.64121336713384},{"average":0.0918015298813565,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":26.73964700861508,"scaled_rad":-131.01380398851322},{"average":0.09284423547255438,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":27.496311458598846,"scaled_rad":-130.00491805520153},{"average":0.09623781684786081,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":29.95894559665064,"scaled_rad":-126.72140587113248},{"average":0.10229423203356358,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":34.35392928528553,"scaled_rad":-120.86142761961929},{"average":0.10577696323020602,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":36.881257140429476,"scaled_rad":-117.49165714609404},{"average":0.10683248948733001,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":37.647225215725406,"scaled_rad":-116.4703663790328},{"average":0.10598944137098538,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":37.03544702574666,"scaled_rad":-117.28607063233778},{"average":0.10425761126686703,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":35.77870275942638,"scaled_rad":-118.96172965409816},{"average":0.10171359542266026,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":33.932576330493305,"scaled_rad":-121.42323155934226},{"average":0.09703970090900144,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":30.540852097580263,"scaled_rad":-125.94553053655966},{"average":0.09361816864468876,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":28.05793472307611,"scaled_rad":-129.25608703589853},{"average":0.09157543774971663,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":26.57557780262147,"scaled_rad":-131.23256292983805},{"average":0.09017633685141117,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":25.560286505993925,"scaled_rad":-132.58628465867477},{"average":0.08878575842522207,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":24.551179746718883,"scaled_rad":-133.93176033770817},{"average":0.08815073534514853,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":24.09035993941466,"scaled_rad":-134.5461867474471},{"average":0.08642863262203017,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":22.84067458162645,"scaled_rad":-136.21243389116472},{"average":0.08156425442824583,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":19.310721274016036,"scaled_rad":-140.91903830131196},{"average":0.07592868777721618,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":15.221136470457681,"scaled_rad":-146.37181803938975},{"average":0.07069527808951376,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":11.423386562609016,"scaled_rad":-151.43548458318799},{"average":0.06756375374345272,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":9.150920425546405,"scaled_rad":-154.4654394326048},{"average":0.06586540087859537,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":7.918469724971082,"scaled_rad":-156.1087070333719},{"average":0.06559373822491031,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":7.721331171033164,"scaled_rad":-156.37155843862246},{"average":0.06726304725572484,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":8.932705513241416,"scaled_rad":-154.75639264901145},{"average":0.07077176380852188,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":11.478890268538514,"scaled_rad":-151.36147964194865},{"average":0.07769277949413168,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":16.50129215387289,"scaled_rad":-144.66494379483615},{"average":0.08595266280305987,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":22.495275607725976,"scaled_rad":-136.67296585636535},{"average":0.09539258013256617,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":29.34557919708069,"scaled_rad":-127.53922773722576},{"average":0.10307757892426347,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":34.92238384158745,"scaled_rad":-120.10348821121673},{"average":0.10870897052909738,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":39.008938922221105,"scaled_rad":-114.65474810370519},{"average":0.10966464351446525,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":39.702446063586855,"scaled_rad":-113.73007191521754},{"average":0.1094821454135725,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":39.5700119169775,"scaled_rad":-113.90665077736334},{"average":0.11225991033712383,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":41.585764000601145,"scaled_rad":-111.21898133253181},{"average":0.11642163164805965,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":44.605817401395974,"scaled_rad":-107.19224346480536},{"average":0.12189098363792035,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":48.5747845289446,"scaled_rad":-101.90028729474054},{"average":0.11480462293709731,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":43.43239604715384,"scaled_rad":-108.75680527046154},{"average":0.10772324160631973,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":38.2936209652801,"scaled_rad":-115.60850537962654},{"average":0.10087280138246794,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":33.322433865216155,"scaled_rad":-122.23675484637846},{"average":0.09884871201911055,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":31.8536046215911,"scaled_rad":-124.19519383787853},{"average":0.10112301285150758,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":33.50400584986717,"scaled_rad":-121.99465886684376},{"average":0.1036504664192101,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":35.33811346356863,"scaled_rad":-119.54918204857515},{"average":0.1039454968751956,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":35.55220942660098,"scaled_rad":-119.26372076453202},{"average":0.10075996770283498,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":33.24055338537617,"scaled_rad":-122.34592881949845},{"average":0.09885470488826918,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":31.85795349157321,"scaled_rad":-124.18939534456905},{"average":0.09742573204859303,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":30.820984900531972,"scaled_rad":-125.57202013262403},{"average":0.09765110345435256,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":30.98453109441513,"scaled_rad":-125.35395854077983},{"average":0.09899178857265047,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":31.957431571982223,"scaled_rad":-124.0567579040237},{"average":0.10057017888691087,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":33.10282855563847,"scaled_rad":-122.52956192581539},{"average":0.10174198967018984,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":33.95318130074669,"scaled_rad":-121.39575826567108},{"average":0.10284947420372383,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":34.75685415193887,"scaled_rad":-120.32419446408151},{"average":0.1047913522007126,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":36.16602473559236,"scaled_rad":-118.44530035254351},{"average":0.1073974197688356,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":38.05718049393919,"scaled_rad":-115.92375934141441},{"average":0.1102344492032092,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":40.11593929860033,"scaled_rad":-113.17874760186622},{"average":0.11301524210740779,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":42.13388870937976,"scaled_rad":-110.48814838749365},{"average":0.11288357909807828,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":42.03834427250466,"scaled_rad":-110.61554096999379},{"average":0.1115759286399206,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":41.08941619247375,"scaled_rad":-111.880778410035},{"average":0.11166168884018994,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":41.15165014932129,"scaled_rad":-111.79779980090495},{"average":0.11361273120318797,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":42.56747107610556,"scaled_rad":-109.91003856519258},{"average":0.11650244294975547,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":44.66446007068472,"scaled_rad":-107.11405323908704},{"average":0.11905529106928346,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":46.516995853134695,"scaled_rad":-104.64400552915374},{"average":0.12049245486243335,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":47.559908407033106,"scaled_rad":-103.25345545728919},{"average":0.12025742437167716,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":47.3893528652592,"scaled_rad":-103.48086284632107},{"average":0.11927778549639359,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":46.6784542981022,"scaled_rad":-104.42872760253039},{"average":0.11862344189867748,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":46.20361409138819,"scaled_rad":-105.06184787814908},{"average":0.120082912708927,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":47.26271427002647,"scaled_rad":-103.64971430663137},{"average":0.12218792277714141,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":48.790265573981706,"scaled_rad":-101.61297923469105},{"average":0.12472117210486991,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":50.62857902067124,"scaled_rad":-99.16189463910501},{"average":0.12702211008353298,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":52.2983101363083,"scaled_rad":-96.93558648492227},{"average":0.1381039278201136,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":60.34009833928223,"scaled_rad":-86.21320221429036},{"average":0.13366089098577955,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":57.11590154692901,"scaled_rad":-90.51213127076133},{"average":0.12864020477834587,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":53.47251956091269,"scaled_rad":-95.36997391878309},{"average":0.1240230163256542,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":50.12194544822021,"scaled_rad":-99.83740606903972},{"average":0.1204047079599115,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":47.496232751800264,"scaled_rad":-103.33835633093298},{"average":0.11343474224596084,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":42.4383090983044,"scaled_rad":-110.08225453559413},{"average":0.11407474063909971,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":42.9027393614802,"scaled_rad":-109.46301418469307},{"average":0.11426608783544087,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":43.04159506753726,"scaled_rad":-109.27787324328366},{"average":0.1132514073705051,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":42.3052677260603,"scaled_rad":-110.25964303191961},{"average":0.11057534029398776,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":40.36331513688658,"scaled_rad":-112.8489131508179},{"average":0.10632201486226243,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":37.27678699743247,"scaled_rad":-116.96428400342339},{"average":0.10092108155866819,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":33.3574695390229,"scaled_rad":-122.19004061463613},{"average":0.09571523328808257,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":29.579720237960565,"scaled_rad":-127.22703968271925},{"average":0.08871196529329158,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":24.497629981515626,"scaled_rad":-134.00316002464584},{"average":0.08392714477160287,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":21.02540961665186,"scaled_rad":-138.63278717779752},{"average":0.0807017994418975,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":18.684860020954844,"scaled_rad":-141.75351997206022},{"average":0.07874328493504658,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":17.263616752843962,"scaled_rad":-143.64851099620805},{"average":0.07861593334640907,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":17.171201002334502,"scaled_rad":-143.77173199688733},{"average":0.0773879416827622,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":16.28007924696869,"scaled_rad":-144.9598943373751},{"average":0.0771236619030725,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":16.08829825353314,"scaled_rad":-145.21560232862248},{"average":0.07716434627311837,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":16.117821847482922,"scaled_rad":-145.17623753668943},{"average":0.07748691891367086,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":16.351904460738172,"scaled_rad":-144.86412738568245},{"average":0.07808062050202119,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":16.782738331387606,"scaled_rad":-144.28968222481652},{"average":0.07892251444178738,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":17.39367896530711,"scaled_rad":-143.47509471292386},{"average":0.08004880082781342,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":18.21099583403852,"scaled_rad":-142.38533888794865},{"average":0.08161876695249343,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":19.35027960143389,"scaled_rad":-140.86629386475482},{"average":0.08384434851682067,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":20.96532651830238,"scaled_rad":-138.71289797559683},{"average":0.086462288411394,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":22.865097716558044,"scaled_rad":-136.17986971125595},{"average":0.08851871759992246,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":24.357395133972716,"scaled_rad":-134.1901398213697},{"average":0.07181647722562681,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":12.237011745796753,"scaled_rad":-150.35065100560433},{"average":0.07162255469012309,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":12.096287182789652,"scaled_rad":-150.53828375628046},{"average":0.07338549215998501,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":13.375605259003633,"scaled_rad":-148.8325263213285},{"average":0.07451405238311787,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":14.19457219244968,"scaled_rad":-147.7405704100671},{"average":0.06966294728204638,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":10.674250824556413,"scaled_rad":-152.43433223392478},{"average":0.06746640995215412,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":9.080280556609221,"scaled_rad":-154.55962592452104},{"average":0.06537391343135461,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":7.5618100100144225,"scaled_rad":-156.58425331998077},{"average":0.0631280024661057,"rel_min":0.06184366482368438,"rel_max":0.3305593290628993,"scaled_dist":5.9320105732623265,"scaled_rad":-158.75731923565024},{"average":0.06090753146347258,"rel_min":0.06090753146347258,"rel_max":0.3305593290628993,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.05881274597906131,"rel_min":0.05881274597906131,"rel_max":0.3305593290628993,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.05693043334989823,"rel_min":0.05693043334989823,"rel_max":0.3305593290628993,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.05532036463723576,"rel_min":0.05532036463723576,"rel_max":0.3305593290628993,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.054255280820284,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.05446628078451688,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":5.148912016624826,"scaled_rad":-159.80145064450022},{"average":0.055748606299458756,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":6.0539059065228855,"scaled_rad":-158.59479212463614},{"average":0.05772636024426643,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":7.44969442895111,"scaled_rad":-156.7337407613985},{"average":0.05942172267202369,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":8.646186755123537,"scaled_rad":-155.13841765983528},{"average":0.060333751083301204,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":9.289845584338208,"scaled_rad":-154.28020588754904},{"average":0.061127178109705624,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":9.849802165260279,"scaled_rad":-153.53359711298629},{"average":0.061833947016917086,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":10.348600274744433,"scaled_rad":-152.8685329670074},{"average":0.0627510479988973,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":10.995839041688274,"scaled_rad":-152.00554794441564},{"average":0.06484065790294183,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":12.470569266888923,"scaled_rad":-150.03924097748143},{"average":0.06914666010815577,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":15.509505668137113,"scaled_rad":-145.98732577581717},{"average":0.07494565385487752,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":19.602112301311777,"scaled_rad":-140.5305169315843},{"average":0.08082963788331488,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":23.75470033917434,"scaled_rad":-134.99373288110087},{"average":0.08512642401073015,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":26.78713254628505,"scaled_rad":-130.9504899382866},{"average":0.08651690323176808,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":27.76845529499959,"scaled_rad":-129.6420596066672},{"average":0.08611563734891937,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":27.485264195726256,"scaled_rad":-130.01964773903165},{"average":0.08547874700984251,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":27.035782485596055,"scaled_rad":-130.61895668587192},{"average":0.08464696724013132,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":26.448758675683358,"scaled_rad":-131.40165509908886},{"average":0.08360693164184284,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":25.714759507172534,"scaled_rad":-132.38032065710328},{"average":0.08269265245608225,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":25.0695122067538,"scaled_rad":-133.24065039099494},{"average":0.08203238548295012,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":24.603532570987802,"scaled_rad":-133.86195657201625},{"average":0.08143035447763353,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":24.178652636063163,"scaled_rad":-134.4284631519158},{"average":0.09631216456407912,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":34.68140489508458,"scaled_rad":-120.42479347322055},{"average":0.09627282310192475,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":34.65363988342842,"scaled_rad":-120.46181348876212},{"average":0.0945618023994114,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":33.4460968195022,"scaled_rad":-122.0718709073304},{"average":0.09266853971937716,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":32.109937523412185,"scaled_rad":-123.85341663545043},{"average":0.09205006143441388,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":31.67345001504987,"scaled_rad":-124.4353999799335},{"average":0.09293401221993489,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":32.29729322065228,"scaled_rad":-123.6036090391303},{"average":0.09510736853989678,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":33.83112699937577,"scaled_rad":-121.55849733416564},{"average":0.09684103351046938,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":35.05465112582944,"scaled_rad":-119.92713183222742},{"average":0.08954211768264381,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":29.903483072090918,"scaled_rad":-126.79535590387877},{"average":0.09034483655249408,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":30.469997318322147,"scaled_rad":-126.04000357557047},{"average":0.0911460306053899,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":31.03543543371849,"scaled_rad":-125.28608608837536},{"average":0.09276229494330782,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":32.176104735882504,"scaled_rad":-123.76519368549},{"average":0.09675366395167379,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":34.992990559965484,"scaled_rad":-120.00934592004603},{"average":0.10099262671732304,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":37.9846142605918,"scaled_rad":-116.02051431921095},{"average":0.10433286348763804,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":40.34196723588912,"scaled_rad":-112.8773770188145},{"average":0.10450847184155652,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":40.465901826178,"scaled_rad":-112.71213089842934},{"average":0.10480790934614297,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":40.67722813053632,"scaled_rad":-112.43036249261824},{"average":0.10501233216382215,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":40.821498363639954,"scaled_rad":-112.23800218181339},{"average":0.10490330070434582,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":40.74455003540115,"scaled_rad":-112.34059995279847},{"average":0.10511991830292795,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":40.8974266653028,"scaled_rad":-112.13676444626293},{"average":0.10643985917430526,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":41.82896737762914,"scaled_rad":-110.89471016316115},{"average":0.10846478211209673,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":43.25804514677793,"scaled_rad":-108.98927313762943},{"average":0.10970500184654257,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":44.13332312317798,"scaled_rad":-107.8222358357627},{"average":0.111633251146612,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":45.49417402603329,"scaled_rad":-106.00776796528895},{"average":0.11416493949416856,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":47.28089858151299,"scaled_rad":-103.62546855798269},{"average":0.116652761282031,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":49.03666456365742,"scaled_rad":-101.28444724845679},{"average":0.11628692733240094,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":48.77847934837884,"scaled_rad":-101.62869420216155},{"average":0.11560636960898682,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":48.29817963178104,"scaled_rad":-102.26909382429196},{"average":0.11477686729071275,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":47.71276312017997,"scaled_rad":-103.04964917309337},{"average":0.11688521363957663,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":49.20071648403173,"scaled_rad":-101.06571135462437},{"average":0.1554157525746471,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":76.39342372131902,"scaled_rad":-64.80876837157464},{"average":0.15285129421973218,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":74.58357192077895,"scaled_rad":-67.22190410562807},{"average":0.14769612770541607,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":70.94534267048236,"scaled_rad":-72.07287643935685},{"average":0.13757373213837965,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":63.80151995732797,"scaled_rad":-81.59797339022938},{"average":0.12888218063903067,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":57.66750725229209,"scaled_rad":-89.77665699694388},{"average":0.12127229495928907,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":52.29687400609869,"scaled_rad":-96.93750132520175},{"average":0.12119221493901776,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":52.24035799031019,"scaled_rad":-97.01285601291976},{"average":0.11499027097449613,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":47.86337154811447,"scaled_rad":-102.84883793584737},{"average":0.11174285555972117,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":45.57152671301789,"scaled_rad":-105.90463104930949},{"average":0.10517667475079093,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":40.937482203409004,"scaled_rad":-112.08335706212132},{"average":0.10213327254846331,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":38.78961852486898,"scaled_rad":-114.94717530017469},{"average":0.09932020453880268,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":36.80431188396824,"scaled_rad":-117.59425082137568},{"average":0.09757879781198568,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":35.57532405737243,"scaled_rad":-119.23290125683675},{"average":0.09562615276335977,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":34.19725599465728,"scaled_rad":-121.07032534045695},{"average":0.08990373672418933,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":30.158693640122333,"scaled_rad":-126.45507514650356},{"average":0.1009438897983734,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":37.95021845909839,"scaled_rad":-116.06637538786882},{"average":0.09876322174783457,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":36.41122446838534,"scaled_rad":-118.11836737548622},{"average":0.0972019432115164,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":35.30936108086554,"scaled_rad":-119.58751855884594},{"average":0.09566624320879648,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":34.22554959697648,"scaled_rad":-121.03260053736471},{"average":0.09411202941587837,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":33.12867211166033,"scaled_rad":-122.49510385111957},{"average":0.09344056360991654,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":32.654788963746455,"scaled_rad":-123.12694804833806},{"average":0.09267860489690183,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":32.11704096481955,"scaled_rad":-123.8439453802406},{"average":0.09208014573235189,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":31.694681836064525,"scaled_rad":-124.4070908852473},{"average":0.09136112448609164,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":31.187236708450488,"scaled_rad":-125.08368438873268},{"average":0.09190090686300663,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":31.568185030300622,"scaled_rad":-124.5757532929325},{"average":0.0932453360713559,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":32.51700824623089,"scaled_rad":-123.31065567169216},{"average":0.09501976718328319,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":33.76930284352898,"scaled_rad":-121.64092954196136},{"average":0.09520556061307124,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":33.90042549279563,"scaled_rad":-121.46609934293917},{"average":0.09453916737015162,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":33.43012227720458,"scaled_rad":-122.09317029706057},{"average":0.09346987807774945,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":32.67547748157229,"scaled_rad":-123.09936335790361},{"average":0.0920118053175932,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":31.646450979648545,"scaled_rad":-124.47139869380194},{"average":0.09178974047858755,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":31.48972999100751,"scaled_rad":-124.68036001198999},{"average":0.09209818756071615,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":31.707414753129648,"scaled_rad":-124.3901136624938},{"average":0.09368275210992795,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":32.8257121109193,"scaled_rad":-122.89905051877427},{"average":0.09562842104920478,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":34.19885682440477,"scaled_rad":-121.06819090079364},{"average":0.09620044987781165,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":34.60256289490141,"scaled_rad":-120.52991614013146},{"average":0.09698165493350619,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":35.153893889974896,"scaled_rad":-119.79480814670013},{"average":0.1202988822802942,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":51.60989358141332,"scaled_rad":-97.85347522478224},{"average":0.12681572899222374,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":56.20912083453853,"scaled_rad":-91.72117222061529},{"average":0.13646802949895923,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":63.02117665053118,"scaled_rad":-82.6384311326251},{"average":0.14130742990406747,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":66.43655577725133,"scaled_rad":-78.08459229699822},{"average":0.13562547257600702,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":62.42654692642589,"scaled_rad":-83.43127076476549},{"average":0.13018253907237365,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":58.58522777109978,"scaled_rad":-88.55302963853363},{"average":0.12829523450142927,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":57.2532733763853,"scaled_rad":-90.32896883148626},{"average":0.12807028558927083,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":57.09451696963016,"scaled_rad":-90.54064404049312},{"average":0.1281979071277563,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":57.18458513968758,"scaled_rad":-90.42055314708324},{"average":0.12815580800989312,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":57.15487392830456,"scaled_rad":-90.46016809559393},{"average":0.12872209030768697,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":57.55452441758309,"scaled_rad":-89.92730077655588},{"average":0.12897522245609278,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":57.733170981949705,"scaled_rad":-89.6891053574004},{"average":0.13042746112924186,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":58.75808011037266,"scaled_rad":-88.32255985283646},{"average":0.12980360785505915,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":58.317799234144566,"scaled_rad":-88.90960102114059},{"average":0.12808332456859883,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":57.103719154633,"scaled_rad":-90.52837446048935},{"average":0.11513330101050584,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":47.96431417707445,"scaled_rad":-102.71424776390074},{"average":0.1116412049100939,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":45.49978734906939,"scaled_rad":-106.00028353457415},{"average":0.10753758851268519,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":42.603683572869706,"scaled_rad":-109.86175523617372},{"average":0.10486120546041532,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":40.714841558023934,"scaled_rad":-112.38021125596809},{"average":0.10278864858392127,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":39.252146409375705,"scaled_rad":-114.33047145416572},{"average":0.1015169265496081,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":38.354635865218505,"scaled_rad":-115.52715217970866},{"average":0.10211162401662607,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":38.77434019747888,"scaled_rad":-114.9675464033615},{"average":0.10242578387509677,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":38.99605671879453,"scaled_rad":-114.67192437494063},{"average":0.09545595100342086,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":34.07713707711271,"scaled_rad":-121.23048389718306},{"average":0.09315553247241945,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":32.45362987047422,"scaled_rad":-123.39516017270104},{"average":0.09388198088804836,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":32.96631668034409,"scaled_rad":-122.71157775954121},{"average":0.09605544165935781,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":34.50022417500806,"scaled_rad":-120.66636776665592},{"average":0.09808613142398968,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":35.93337184918008,"scaled_rad":-118.75550420109323},{"average":0.09898372503210721,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":36.566843398714624,"scaled_rad":-117.91087546838051},{"average":0.1049174973765943,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":40.754569255553946,"scaled_rad":-112.32724099259474},{"average":0.10127858030366438,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":38.186424366854155,"scaled_rad":-115.7514341775278},{"average":0.10133110094337469,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":38.22349050760978,"scaled_rad":-115.70201265652028},{"average":0.10304937754682768,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":39.43615438207868,"scaled_rad":-114.08512749056175},{"average":0.10545303193562706,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":41.13251970425564,"scaled_rad":-111.82330706099248},{"average":0.10708994053826985,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":42.28775857804538,"scaled_rad":-110.28298856260616},{"average":0.10491492335702665,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":40.75275265598227,"scaled_rad":-112.32966312535697},{"average":0.09754243646768877,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":35.54966224683076,"scaled_rad":-119.26711700422564},{"average":0.08909013998960341,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":29.584502403137826,"scaled_rad":-127.2206634624829},{"average":0.08572154182845705,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":27.20713353865143,"scaled_rad":-130.39048861513143},{"average":0.08668218319253547,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":27.88510068095984,"scaled_rad":-129.48653242538688},{"average":0.0882640075097163,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":29.001464135683516,"scaled_rad":-127.99804781908864},{"average":0.08865882535219977,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":29.28010456738893,"scaled_rad":-127.62652724348143},{"average":0.08758062907918229,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":28.519173721186508,"scaled_rad":-128.64110170508465},{"average":0.08725629575654943,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":28.290277335789092,"scaled_rad":-128.94629688561454},{"average":0.08859509233734061,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":29.235125357071237,"scaled_rad":-127.68649952390501},{"average":0.09189795220752696,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":31.566099799113456,"scaled_rad":-124.57853360118206},{"average":0.09725259395568392,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":35.34510755354839,"scaled_rad":-119.53985659526882},{"average":0.10134639343438609,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":38.23428309558013,"scaled_rad":-115.68762253922648},{"average":0.10227091029877494,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":38.8867555790724,"scaled_rad":-114.81765922790348},{"average":0.10182855062946054,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":38.57456277529356,"scaled_rad":-115.2339162996086},{"average":0.10154234667878445,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":38.372575975835474,"scaled_rad":-115.50323203221937},{"average":0.10201933258091626,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":38.70920604516414,"scaled_rad":-115.05439193978114},{"average":0.10398382437354735,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":40.09563487962947,"scaled_rad":-113.20582016049404},{"average":0.10838867965341908,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":43.20433627230965,"scaled_rad":-109.06088497025381},{"average":0.12013174790375303,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":51.49193945213863,"scaled_rad":-98.01074739714849},{"average":0.13773962753490776,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":63.91859968355253,"scaled_rad":-81.44186708859664},{"average":0.14964435225215567,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":72.32029098930192,"scaled_rad":-70.23961201426411},{"average":0.15643402997397893,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":77.11206716549815,"scaled_rad":-63.85057711266914},{"average":0.15858709688685582,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":78.63158181134342,"scaled_rad":-61.824557584875436},{"average":0.1622072272147462,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":81.18646806229972,"scaled_rad":-58.41804258360037},{"average":0.16202728421530968,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":81.05947432075558,"scaled_rad":-58.58736757232589},{"average":0.16076598507994463,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":80.16931967785213,"scaled_rad":-59.774240429530494},{"average":0.15923914821412571,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":79.09176330208287,"scaled_rad":-61.21098226388952},{"average":0.15100230209260102,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":73.27865631391826,"scaled_rad":-68.96179158144233},{"average":0.14873786216324655,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":71.68054079938771,"scaled_rad":-71.09261226748305},{"average":0.14933408117017796,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":72.10131894973004,"scaled_rad":-70.53157473369328},{"average":0.15124433279005497,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":73.44946809283972,"scaled_rad":-68.73404254288037},{"average":0.15242953787639252,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":74.28591979633732,"scaled_rad":-67.61877360488357},{"average":0.1493206154730653,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":72.09181561109396,"scaled_rad":-70.54424585187472},{"average":0.1424571692860647,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":67.24797776297844,"scaled_rad":-77.00269631602876},{"average":0.13687252041137274,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":63.306643795954166,"scaled_rad":-82.25780827206111},{"average":0.1328653764982636,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":60.478624923171814,"scaled_rad":-86.02850010243758},{"average":0.13097374363031705,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":59.143615857630785,"scaled_rad":-87.80851218982562},{"average":0.1307205802152321,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":58.96494722698439,"scaled_rad":-88.04673703068748},{"average":0.12853272875909078,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":57.420883588897745,"scaled_rad":-90.10548854813634},{"average":0.13189095557624478,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":59.79093293674523,"scaled_rad":-86.94542275100636},{"average":0.13197251314495473,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":59.84849172388423,"scaled_rad":-86.8686777014877},{"average":0.1402499295017194,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":65.69023092327453,"scaled_rad":-79.07969210230064},{"average":0.1512453064881107,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":73.4501552746674,"scaled_rad":-68.73312630044349},{"average":0.15987928280787123,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":79.54353462636968,"scaled_rad":-60.608620498173764},{"average":0.16239918649917037,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":81.32194222817168,"scaled_rad":-58.23741036243777},{"average":0.1612223224864357,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":80.49137718961042,"scaled_rad":-59.34483041385279},{"average":0.15806654439789578,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":78.264204872812,"scaled_rad":-62.314393502917326},{"average":0.1494265353506472,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":72.1665679582269,"scaled_rad":-70.44457605569745},{"average":0.12776520219060733,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":56.87920610785392,"scaled_rad":-90.82772518952811},{"average":0.10867540761663239,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":43.4066928906155,"scaled_rad":-108.791076145846},{"average":0.09809175930162774,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":35.937343691599324,"scaled_rad":-118.7502084112009},{"average":0.09277509129841767,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":32.185135690232585,"scaled_rad":-123.75315241302323},{"average":0.09001339349515969,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":30.236083278367676,"scaled_rad":-126.35188896217643},{"average":0.08980779850037035,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":30.090985787980138,"scaled_rad":-126.54535228269316},{"average":0.09118602069054046,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":31.063658207340374,"scaled_rad":-125.24845572354617},{"average":0.09427142264712758,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":33.241162971969054,"scaled_rad":-122.3451160373746},{"average":0.09753358093935661,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":35.54341250841486,"scaled_rad":-119.27544998878018},{"average":0.10034098914877555,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":37.52472477770162,"scaled_rad":-116.63370029639785},{"average":0.10104950746460463,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":38.02475752230098,"scaled_rad":-115.96698997026536},{"average":0.10111975546152498,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":38.074334643905225,"scaled_rad":-115.9008871414597},{"average":0.10353145128949916,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":39.77637516573653,"scaled_rad":-113.63149977901796},{"average":0.1061046232631349,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":41.59237655279685,"scaled_rad":-111.21016459627087},{"average":0.10697500411196983,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":42.206642853281096,"scaled_rad":-110.39114286229187},{"average":0.10477013595383583,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":40.650569775196466,"scaled_rad":-112.46590696640472},{"average":0.10274525336436523,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":39.221520481644106,"scaled_rad":-114.37130602447453},{"average":0.10240768090977023,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":38.98328065466834,"scaled_rad":-114.68895912710889},{"average":0.10601053294724941,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":41.52597285109806,"scaled_rad":-111.29870286520259},{"average":0.11724632374939203,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":49.45556787640863,"scaled_rad":-100.72590949812184},{"average":0.13417098372834033,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":61.40004975022107,"scaled_rad":-84.79993366637191},{"average":0.1406223661323508,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":65.9530759428645,"scaled_rad":-78.72923207618066},{"average":0.13819383606469235,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":64.23915475276462,"scaled_rad":-81.01446032964716},{"average":0.13617183903083946,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":62.8121419235675,"scaled_rad":-82.91714410191},{"average":0.13638573814748287,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":62.96310000040624,"scaled_rad":-82.71586666612501},{"average":0.13880046410871583,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":64.66727902143516,"scaled_rad":-80.44362797141979},{"average":0.14377484812321892,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.17792205760367,"scaled_rad":-75.76277058986179},{"average":0.15150067742898568,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":73.63038185400038,"scaled_rad":-68.49282419466617},{"average":0.15762745584019028,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":77.95432063732159,"scaled_rad":-62.72757248357122},{"average":0.1571015386262804,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":77.58315757487388,"scaled_rad":-63.22245656683482},{"average":0.1493966126713137,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":72.14545019861701,"scaled_rad":-70.47273306851066},{"average":0.1394583754390294,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":65.13159617576977,"scaled_rad":-79.82453843230697},{"average":0.1313427886990792,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":59.40406730185077,"scaled_rad":-87.4612435975323},{"average":0.1323063377801047,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":60.08408654874574,"scaled_rad":-86.55455126833903},{"average":0.12779657101685651,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":56.9013444773693,"scaled_rad":-90.7982073635076},{"average":0.12379433276905558,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":54.07678774978961,"scaled_rad":-94.56428300028053},{"average":0.1220197408659486,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":52.82437967503709,"scaled_rad":-96.23416043328388},{"average":0.12013264238437424,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":51.492570726715485,"scaled_rad":-98.0099056977127},{"average":0.11775879116452785,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":49.817238820381675,"scaled_rad":-100.24368157282443},{"average":0.11424437205119702,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":47.33695765382505,"scaled_rad":-103.55072312823327},{"average":0.10964279044541368,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":44.089417783038044,"scaled_rad":-107.88077628928261},{"average":0.10541913123707002,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":41.10859448035584,"scaled_rad":-111.85520735952554},{"average":0.10259458015843921,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":39.115183729278556,"scaled_rad":-114.51308836096193},{"average":0.10106902157122095,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":38.03852949131261,"scaled_rad":-115.94862734491653},{"average":0.10119188736407686,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":38.12524132112215,"scaled_rad":-115.83301157183713},{"average":0.10276442914230427,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":39.23505367712892,"scaled_rad":-114.3532617638281},{"average":0.10491529862988253,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":40.75301750265159,"scaled_rad":-112.32930999646456},{"average":0.10719888366728536,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":42.36464456756722,"scaled_rad":-110.18047390991038},{"average":0.10946535151739319,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":43.964191275558086,"scaled_rad":-108.04774496592256},{"average":0.11266279152168154,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":46.22076625085034,"scaled_rad":-105.03897833219955},{"average":0.11836323729774402,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":50.243823217993025,"scaled_rad":-99.6749023760093},{"average":0.12819836546615598,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":57.18490860938882,"scaled_rad":-90.42012185414825},{"average":0.13730462865888893,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":63.61160171749598,"scaled_rad":-81.85119771000537},{"average":0.1434000531745725,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":67.9134126685777,"scaled_rad":-76.11544977522973},{"average":0.1460965812362869,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":69.81647190849372,"scaled_rad":-73.5780374553417},{"average":0.14791159413872296,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":71.0974068720823,"scaled_rad":-71.87012417055693},{"average":0.14952043223452602,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":72.23283514639454,"scaled_rad":-70.3562198048073},{"average":0.15469160068352075,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":75.88235767046751,"scaled_rad":-65.49018977270998},{"average":0.15815415248683054,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":78.32603377995592,"scaled_rad":-62.231954960058786},{"average":0.15849742405386508,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":78.56829572290421,"scaled_rad":-61.908939036127734},{"average":0.15789754290586264,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":78.1449330374695,"scaled_rad":-62.47342261670734},{"average":0.15756135855927178,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":77.90767285976969,"scaled_rad":-62.789769520307075},{"average":0.1570374361976203,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":77.53791765288135,"scaled_rad":-63.28277646282487},{"average":0.15832296169675397,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":78.44516991330046,"scaled_rad":-62.073106782266066},{"average":0.1661177574415671,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":83.94630237916972,"scaled_rad":-54.738263494440375},{"average":0.1645204384620182,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":82.81900365519832,"scaled_rad":-56.241328459735584},{"average":0.16254196186259903,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":81.42270512341577,"scaled_rad":-58.10305983544565},{"average":0.15925377197936177,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":79.10208394066622,"scaled_rad":-61.19722141244503},{"average":0.15538108714228627,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":76.36895879091588,"scaled_rad":-64.84138827877882},{"average":0.15410295159469684,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":75.46692194648611,"scaled_rad":-66.04410407135185},{"average":0.15288546286428203,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":74.60768624602898,"scaled_rad":-67.18975167196137},{"average":0.1480566815828141,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":71.19980150501554,"scaled_rad":-71.73359799331261},{"average":0.14363561162495042,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.07965669618372,"scaled_rad":-75.89379107175506},{"average":0.14083167939420171,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":66.1007975789409,"scaled_rad":-78.53226989474548},{"average":0.14010843454119984,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":65.59037166505226,"scaled_rad":-79.21283777993033},{"average":0.1414348572486677,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":66.52648689608614,"scaled_rad":-77.96468413855182},{"average":0.14273485442663442,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":67.44395246098051,"scaled_rad":-76.74139671869267},{"average":0.1440186438150704,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.34997947121526,"scaled_rad":-75.53336070504632},{"average":0.14522007465492534,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":69.1978824073532,"scaled_rad":-74.4028234568624},{"average":0.14720751608466573,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":70.6005078168046,"scaled_rad":-72.53265624426054},{"average":0.14988643699786489,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":72.49114091247006,"scaled_rad":-70.01181211670658},{"average":0.15326074774294526,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":74.87254140035908,"scaled_rad":-66.8366114661879},{"average":0.15726443129801468,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":77.69811814526803,"scaled_rad":-63.06917580630929},{"average":0.16159141055892381,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":80.75185898346378,"scaled_rad":-58.997521355381636},{"average":0.16213545499291585,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":81.13581522769258,"scaled_rad":-58.485579696409914},{"average":0.1589601174090939,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":78.89483890909162,"scaled_rad":-61.47354812121118},{"average":0.15552005261678903,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":76.46703287886498,"scaled_rad":-64.71062282818004},{"average":0.15289508399927593,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":74.61447630696273,"scaled_rad":-67.18069825738304},{"average":0.15321333414452176,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":74.83907952474999,"scaled_rad":-66.88122730033335},{"average":0.15307235839972916,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":74.73958670005413,"scaled_rad":-67.01388439992783},{"average":0.1499785375872807,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":72.55614037610555,"scaled_rad":-69.92514616519261},{"average":0.14549908062641975,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":69.39478927421763,"scaled_rad":-74.14028096770983},{"average":0.14431674108566606,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.56035991310843,"scaled_rad":-75.25285344918876},{"average":0.14356904880940727,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.03268037023601,"scaled_rad":-75.95642617301866},{"average":0.14209931076941143,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":66.99542116385791,"scaled_rad":-77.33943844818944},{"average":0.1404622852757095,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":65.84009979487249,"scaled_rad":-78.87986694017003},{"average":0.1379167752433641,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":64.04362066449252,"scaled_rad":-81.2751724473433},{"average":0.13527187197141757,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":62.17699532436468,"scaled_rad":-83.76400623418043},{"average":0.135292656572825,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":62.19166393780059,"scaled_rad":-83.74444808293255},{"average":0.1381438399698475,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":64.20387029509288,"scaled_rad":-81.06150627320949},{"average":0.07462570684891563,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":19.37631153378996,"scaled_rad":-140.8315846216134},{"average":0.07771477351513491,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":21.556402646258334,"scaled_rad":-137.92479647165555},{"average":0.07873377484570218,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":22.27555700076182,"scaled_rad":-136.96592399898424},{"average":0.07894592356403152,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":22.425279744012748,"scaled_rad":-136.76629367464966},{"average":0.08416473984402817,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":26.108429451995885,"scaled_rad":-131.85542739733881},{"average":0.0854901129630053,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":27.04380394196211,"scaled_rad":-130.60826141071718},{"average":0.08601231419656909,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":27.412344472557326,"scaled_rad":-130.11687403659022},{"average":0.08422596870250133,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":26.151641368282334,"scaled_rad":-131.7978115089569},{"average":0.0806368446979588,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":23.6186376524944,"scaled_rad":-135.17514979667413},{"average":0.07751273179582491,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":21.41381285969518,"scaled_rad":-138.1149161870731},{"average":0.0758249810190939,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":20.222692412652144,"scaled_rad":-139.70307678313048},{"average":0.07544281417712673,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":19.952980352124662,"scaled_rad":-140.06269286383377},{"average":0.07617262311955791,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":20.468038834543712,"scaled_rad":-139.3759482206084},{"average":0.07718624026273135,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":21.1833933296225,"scaled_rad":-138.42214222717},{"average":0.07686916575964566,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":20.959619814558323,"scaled_rad":-138.72050691392224},{"average":0.0763895054195702,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":20.621102275964084,"scaled_rad":-139.1718636320479},{"average":0.07849971083400799,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":22.110367664700085,"scaled_rad":-137.18617644706654},{"average":0.0802017900469498,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":23.311600323557897,"scaled_rad":-135.5845329019228},{"average":0.08540762221436378,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":26.985586568429564,"scaled_rad":-130.68588457542725},{"average":0.0897532061698021,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":30.0524575632635,"scaled_rad":-126.596723248982},{"average":0.09321751600561673,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":32.49737439412614,"scaled_rad":-123.33683414116516},{"average":0.09616205806735377,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":34.57546809449257,"scaled_rad":-120.56604254067656},{"average":0.10352419812760362,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":39.771256288258535,"scaled_rad":-113.63832494898863},{"average":0.1037939071839256,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":39.961601910471806,"scaled_rad":-113.3845307860376},{"average":0.10658578656780567,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":41.931954800048636,"scaled_rad":-110.75739359993516},{"average":0.11280008850744512,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":46.317662812425105,"scaled_rad":-104.90978291676652},{"average":0.11800613437264851,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":49.99179987328807,"scaled_rad":-100.01093350228257},{"average":0.12222838485755652,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":52.97162897747156,"scaled_rad":-96.03782803003793},{"average":0.1263704931055864,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":55.89489815685252,"scaled_rad":-92.14013579086331},{"average":0.13000140632907348,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":58.457394374636046,"scaled_rad":-88.72347416715193},{"average":0.13290122890829337,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":60.50392755626847,"scaled_rad":-85.99476325830871},{"average":0.13510223099277205,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":62.05727217500702,"scaled_rad":-83.92363709999064},{"average":0.1372888120078967,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":63.600439206620365,"scaled_rad":-81.86608105783952},{"average":0.1392243132996585,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":64.9664081610895,"scaled_rad":-80.04478911854734},{"average":0.1403280279974629,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":65.74534848947323,"scaled_rad":-79.0062020140357},{"average":0.14293182279090702,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":67.58296175627477,"scaled_rad":-76.55605099163364},{"average":0.14895987868735494,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":71.83722769006664,"scaled_rad":-70.88369641324448},{"average":0.15789482322500342,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":78.1430136382753,"scaled_rad":-62.47598181563292},{"average":0.16231746405516775,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":81.26426708123891,"scaled_rad":-58.31431055834811},{"average":0.16035765227854656,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":79.88114114127598,"scaled_rad":-60.158478478298704},{"average":0.1544860111829668,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":75.73726405760513,"scaled_rad":-65.68364792319316},{"average":0.14770571238099628,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":70.95210700039367,"scaled_rad":-72.06385733280845},{"average":0.1428836230599796,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":67.54894507215224,"scaled_rad":-76.60140657046371},{"average":0.13697855438872733,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":63.381476668348384,"scaled_rad":-82.15803110886883},{"average":0.1305100497362971,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":58.81636654692038,"scaled_rad":-88.24484460410616},{"average":0.12358583043594508,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":53.92963842202859,"scaled_rad":-94.76048210396189},{"average":0.11569746982157679,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":48.36247308519959,"scaled_rad":-102.18336921973389},{"average":0.10854080033880707,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":43.311694575017576,"scaled_rad":-108.91774056664323},{"average":0.10404285710587662,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":40.13729689246433,"scaled_rad":-113.15027081004757},{"average":0.10244944440508569,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":39.01275500235999,"scaled_rad":-114.64965999685336},{"average":0.10069030746873482,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":37.77125418190436,"scaled_rad":-116.30499442412753},{"average":0.0950186592477864,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":33.76852092439588,"scaled_rad":-121.6419721008055},{"average":0.0861102439163162,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":27.481457811548005,"scaled_rad":-130.024722917936},{"average":0.08562552261662608,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":27.139368529683487,"scaled_rad":-130.48084196042203},{"average":0.08475975922212038,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":26.528360971153724,"scaled_rad":-131.29551870512836},{"average":0.08447846552073086,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":26.32983955201479,"scaled_rad":-131.56021393064694},{"average":0.08523663277150069,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":26.86491174817132,"scaled_rad":-130.8467843357716},{"average":0.08561621976307413,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":27.13280309405499,"scaled_rad":-130.48959587459336},{"average":0.0907489831804518,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":30.755221486961748,"scaled_rad":-125.65970468405101},{"average":0.09573474155264267,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":34.2738919109417,"scaled_rad":-120.9681441187444},{"average":0.09968929168402771,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":37.064793023410985,"scaled_rad":-117.24694263545203},{"average":0.10372183190234605,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":39.9107351931819,"scaled_rad":-113.45235307575747},{"average":0.11140409606235399,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":45.33244913740236,"scaled_rad":-106.2234011501302},{"average":0.12161458972537056,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":52.53844657736729,"scaled_rad":-96.61540456351028},{"average":0.1283663123992632,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":57.30343619580749,"scaled_rad":-90.26208507225668},{"average":0.12945679913051095,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":58.073040962533874,"scaled_rad":-89.23594538328817},{"average":0.1319897934950452,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":59.86068723201765,"scaled_rad":-86.85241702397646},{"average":0.14131207479301977,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":66.43983388103396,"scaled_rad":-78.08022149195472},{"average":0.14130137729245498,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":66.43228418126155,"scaled_rad":-78.09028775831794},{"average":0.14052837871885776,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":65.88674486394,"scaled_rad":-78.81767351474667},{"average":0.1415439361915631,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":66.6034687354761,"scaled_rad":-77.86204168603189},{"average":0.14402089785080144,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.3515702440264,"scaled_rad":-75.53123967463146},{"average":0.1558682699436906,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":76.71278526352125,"scaled_rad":-64.38295298197166},{"average":0.16530854389370916,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":83.37520455112147,"scaled_rad":-55.49972726517137},{"average":0.17009617178992545,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":86.75404552612744,"scaled_rad":-50.9946059651634},{"average":0.16908997349888197,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":86.04392684346091,"scaled_rad":-51.941430875385464},{"average":0.164792503395431,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":83.01101192417927,"scaled_rad":-55.98531743442764},{"average":0.1613773169776644,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":80.60076366433573,"scaled_rad":-59.19898178088569},{"average":0.15536817141057901,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":76.3598435872157,"scaled_rad":-64.8535418837124},{"average":0.14763147830306697,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":70.89971672494065,"scaled_rad":-72.13371103341248},{"average":0.14072391074437782,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":66.02474047138375,"scaled_rad":-78.63367937148833},{"average":0.13654267125356057,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":63.07385464146123,"scaled_rad":-82.56819381138503},{"average":0.1349667377606198,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":61.96164860221561,"scaled_rad":-84.05113519704585},{"average":0.13432302709537972,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":61.507353485947185,"scaled_rad":-84.65686201873709},{"average":0.13447582741467598,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":61.61519143639447,"scaled_rad":-84.51307808480738},{"average":0.13461131567533036,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":61.71081150057972,"scaled_rad":-84.3855846658937},{"average":0.13511289413705457,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":62.06479762802994,"scaled_rad":-83.91360316262674},{"average":0.13572598360478877,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":62.49748200948784,"scaled_rad":-83.33669065401622},{"average":0.13540836022032343,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":62.273321124532735,"scaled_rad":-83.63557183395635},{"average":0.1383425261860621,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":64.34409195455923,"scaled_rad":-80.8745440605877},{"average":0.13830161463802995,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":64.31521886378474,"scaled_rad":-80.91304151495369},{"average":0.1445281818777518,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.70958304146635,"scaled_rad":-75.05388927804488},{"average":0.14279738616266033,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":67.48808387563986,"scaled_rad":-76.68255483248019},{"average":0.14072082099114913,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":66.02255989573376,"scaled_rad":-78.63658680568832},{"average":0.13956424309861945,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":65.20631167035397,"scaled_rad":-79.72491777286137},{"average":0.13924399869319143,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":64.98030101486177,"scaled_rad":-80.02626531351765},{"average":0.13774454307170386,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":63.922068795501254,"scaled_rad":-81.43724160599834},{"average":0.13355831608608149,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":60.967663069677144,"scaled_rad":-85.37644924043047},{"average":0.12852017416980907,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":57.41202325939659,"scaled_rad":-90.11730232080454},{"average":0.12352953077052678,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":53.889905255517306,"scaled_rad":-94.81345965931027},{"average":0.1176285726218252,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":49.72533782946778,"scaled_rad":-100.3662162273763},{"average":0.11274252229402477,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":46.2770357869133,"scaled_rad":-104.9639522841156},{"average":0.09969883450249795,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":37.07152781290659,"scaled_rad":-117.23796291612456},{"average":0.09886801931039467,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":36.485184748117746,"scaled_rad":-118.01975366917634},{"average":0.10069796229593815,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":37.7766565323735,"scaled_rad":-116.29779129016868},{"average":0.1048143332856318,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":40.681761789048714,"scaled_rad":-112.42431761460172},{"average":0.10887464563194005,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":43.54730397913231,"scaled_rad":-108.60359469449025},{"average":0.1122385301932076,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":45.92134624749312,"scaled_rad":-105.43820500334252},{"average":0.11525085864295362,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":48.047279803069145,"scaled_rad":-102.60362692924114},{"average":0.11793997224611659,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":49.9451063313158,"scaled_rad":-100.07319155824561},{"average":0.12082173478069574,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":51.97889373985029,"scaled_rad":-97.36147501353295},{"average":0.12365500036482746,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":53.97845470328779,"scaled_rad":-94.69539372894963},{"average":0.12564836641753552,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":55.385261381475715,"scaled_rad":-92.81965149136572},{"average":0.1272304101739036,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":56.50177970414934,"scaled_rad":-91.33096039446755},{"average":0.13166280193741012,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":59.629914812487804,"scaled_rad":-87.1601135833496},{"average":0.13884683380247187,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":64.70000416730232,"scaled_rad":-80.3999944435969},{"average":0.15072390846269015,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":73.08218160362031,"scaled_rad":-69.22375786183959},{"average":0.1583722336350807,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":78.47994330165588,"scaled_rad":-62.02674226445883},{"average":0.16921044389007986,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":86.12894813226578,"scaled_rad":-51.828069156978984},{"average":0.17902453204672703,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":93.05518465582834,"scaled_rad":-42.59308712556221},{"average":0.16867005249189315,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":85.74756999714022,"scaled_rad":-52.336573337146376},{"average":0.15884592517297663,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":78.81424839228777,"scaled_rad":-61.58100214361632},{"average":0.15194413599382517,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":73.94335019700407,"scaled_rad":-68.07553307066125},{"average":0.1473608648617769,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":70.70873283821443,"scaled_rad":-72.3883562157141},{"average":0.14385713241774623,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.23599372732721,"scaled_rad":-75.68534169689705},{"average":0.10434308608422395,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":40.34918177489762,"scaled_rad":-112.86775763346984},{"average":0.10238716443253693,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":38.9688012683331,"scaled_rad":-114.70826497555586},{"average":0.10382504269137238,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":39.983575616578314,"scaled_rad":-113.3552325112289},{"average":0.10536912350019692,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":41.07330180638933,"scaled_rad":-111.90226425814757},{"average":0.10715603812468415,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":42.33440657119917,"scaled_rad":-110.2207912384011},{"average":0.10884215458054346,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":43.52437360564472,"scaled_rad":-108.63416852580704},{"average":0.1112023650515756,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":45.19007863160635,"scaled_rad":-106.41322849119155},{"average":0.11345564876041332,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":46.78032070738491,"scaled_rad":-104.2929057234868},{"average":0.11530200557225505,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":48.08337645556922,"scaled_rad":-102.55549805924105},{"average":0.11682261746434591,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":49.15653959177255,"scaled_rad":-101.1246138776366},{"average":0.11889506256396978,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":50.619155854534654,"scaled_rad":-99.17445886062046},{"average":0.12293328970691703,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":53.469111538800526,"scaled_rad":-95.37451794826598},{"average":0.129772896747905,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":58.29612504611456,"scaled_rad":-88.93849993851393},{"average":0.1342453184681122,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":61.452511067193115,"scaled_rad":-84.72998524374252},{"average":0.1368220907271841,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":63.271053335085675,"scaled_rad":-82.30526221988578},{"average":0.1374354852705105,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":63.703953021895984,"scaled_rad":-81.72806263747202},{"average":0.13599384759926875,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":62.68652548987047,"scaled_rad":-83.0846326801727},{"average":0.13371865510254313,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":61.08082141248422,"scaled_rad":-85.22557145002104},{"average":0.13230743518178867,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":60.084861033700754,"scaled_rad":-86.55351862173234},{"average":0.1328044533367336,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":60.43562875075266,"scaled_rad":-86.08582833232978},{"average":0.13512349357803716,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":62.07227812281368,"scaled_rad":-83.90362916958176},{"average":0.13932784767384773,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":65.03947695286186,"scaled_rad":-79.94736406285087},{"average":0.14235441743402735,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":67.17546123173425,"scaled_rad":-77.09938502435435},{"average":0.1450997356372247,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":69.11295383464181,"scaled_rad":-74.51606155381093},{"average":0.14888031156109283,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":71.78107364628843,"scaled_rad":-70.95856847161542},{"average":0.15252036813046038,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":74.35002272807462,"scaled_rad":-67.53330302923385},{"average":0.15251892431206596,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":74.34900376150969,"scaled_rad":-67.5346616513204},{"average":0.1499248217181254,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":72.51823070901271,"scaled_rad":-69.97569238798306},{"average":0.14659786040824643,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":70.17024681390618,"scaled_rad":-73.10633758145843},{"average":0.14338310331717993,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":67.90145040377351,"scaled_rad":-76.13139946163533},{"average":0.14054894405229326,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":65.9012587302602,"scaled_rad":-78.7983216929864},{"average":0.1442504670351868,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.51358738145117,"scaled_rad":-75.31521682473178},{"average":0.14862281851625692,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":71.59934940423565,"scaled_rad":-71.20086746101913},{"average":0.1548102391427441,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":75.96608608377053,"scaled_rad":-65.37855188830595},{"average":0.1599002769191061,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":79.55835110016672,"scaled_rad":-60.588865199777715},{"average":0.15381946043212713,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":75.26684968170137,"scaled_rad":-66.31086709106484},{"average":0.1460073337286525,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":69.75348599098943,"scaled_rad":-73.66201867868077},{"average":0.14392094820944082,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.28103135692257,"scaled_rad":-75.62529152410326},{"average":0.14134920882846888,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":66.46604101393206,"scaled_rad":-78.04527864809059},{"average":0.1340424345282332,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":61.30932688828573,"scaled_rad":-84.9208974822857},{"average":0.1286262908464205,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":57.4869144963178,"scaled_rad":-90.01744733824293},{"average":0.12481425137865165,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":54.79658946871557,"scaled_rad":-93.60454737504591},{"average":0.12313647461605483,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":53.61250812503903,"scaled_rad":-95.18332249994796},{"average":0.12300491092442892,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":53.519657802974535,"scaled_rad":-95.3071229293673},{"average":0.11840678165094624,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":50.27455439594152,"scaled_rad":-99.63392747207797},{"average":0.10981166214571275,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":44.20859801860739,"scaled_rad":-107.72186930852348},{"average":0.10568351540560776,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":41.29518209350435,"scaled_rad":-111.60642387532752},{"average":0.10344621130102075,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":39.71621753193055,"scaled_rad":-113.71170995742594},{"average":0.10359041047011308,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":39.817985269869425,"scaled_rad":-113.5760196401741},{"average":0.10532444871593888,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":41.04177283319576,"scaled_rad":-111.94430288907233},{"average":0.10804121591794638,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":42.959115730489415,"scaled_rad":-109.38784569268077},{"average":0.11165896974978912,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":45.512324782967305,"scaled_rad":-105.98356695604359},{"average":0.11140265415792595,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":45.33143152160825,"scaled_rad":-106.224757971189},{"average":0.11019587505820433,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":44.47975408169218,"scaled_rad":-107.36032789107709},{"average":0.10781821808758639,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":42.80173628854213,"scaled_rad":-109.59768494861049},{"average":0.09886360988059092,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":36.48207281828103,"scaled_rad":-118.02390290895863},{"average":0.092466703140243,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":31.967492513353545,"scaled_rad":-124.0433433155286},{"average":0.09265984813825771,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":32.10380348980293,"scaled_rad":-123.86159534692942},{"average":0.09319155608236505,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":32.479053326931236,"scaled_rad":-123.36126223075836},{"average":0.09442983105227645,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":33.35295879689633,"scaled_rad":-122.19605493747156},{"average":0.09675067759370203,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":34.99088295492605,"scaled_rad":-120.0121560600986},{"average":0.10042891997864269,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":37.586781457410616,"scaled_rad":-116.55095805678584},{"average":0.14091726120459994,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":66.1611964516096,"scaled_rad":-78.45173806452054},{"average":0.14842859876641584,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":71.46227992783858,"scaled_rad":-71.3836267628819},{"average":0.1528774672643403,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":74.60204339715088,"scaled_rad":-67.1972754704655},{"average":0.15336757388790387,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":74.94793334050408,"scaled_rad":-66.73608887932791},{"average":0.15377140035183046,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":75.23293155521188,"scaled_rad":-66.3560912597175},{"average":0.15587253675811877,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":76.71579654337324,"scaled_rad":-64.37893794216902},{"average":0.1573477252197217,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":77.7569023535928,"scaled_rad":-62.99079686187628},{"average":0.16075004085951367,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":80.15806713557555,"scaled_rad":-59.789243819232595},{"average":0.1694201141613484,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":86.27692172569449,"scaled_rad":-51.63077103240734},{"average":0.18184491704791744,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":95.04565522160598,"scaled_rad":-39.93912637119202},{"average":0.19632475335100616,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":105.26471678462369,"scaled_rad":-26.313710953835084},{"average":0.21147921537586778,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":115.95989158804606,"scaled_rad":-12.05347788260525},{"average":0.2283151526841135,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":127.84175794501378,"scaled_rad":3.7890105933516907},{"average":0.2386000640483087,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":135.10027525148854,"scaled_rad":13.467033668651396},{"average":0.24103522383120926,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":136.81887532516046,"scaled_rad":15.758500433547283},{"average":0.25198589347754463,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":144.54724772729182,"scaled_rad":26.062996969722434},{"average":0.25355953154245625,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":145.65783378134893,"scaled_rad":27.543778375131865},{"average":0.2529706352934612,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":145.2422236254919,"scaled_rad":26.98963150065586},{"average":0.24948120850228495,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":142.77958064719616,"scaled_rad":23.706107529594846},{"average":0.24800093651263205,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":141.73488716616234,"scaled_rad":22.31318288821643},{"average":0.2505706705628025,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":143.54846225842172,"scaled_rad":24.731283011228925},{"average":0.25551980301502925,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":147.04128414909772,"scaled_rad":29.388378865463636},{"average":0.2597517030408491,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":150.0279233615289,"scaled_rad":33.37056448203856},{"average":0.260340451904774,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":150.44342950121654,"scaled_rad":33.92457266828873},{"average":0.2573876695288532,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":148.3595202462969,"scaled_rad":31.146026995062527},{"average":0.2517732939854214,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":144.39720685301688,"scaled_rad":25.862942470689177},{"average":0.2527621327177248,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":145.09507412649904,"scaled_rad":26.79343216866539},{"average":0.2543220418501016,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":146.1959710650281,"scaled_rad":28.261294753370777},{"average":0.2146194716554896,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":118.17610947707449,"scaled_rad":-9.098520697234022},{"average":0.21608735078584163,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":119.21205676861508,"scaled_rad":-7.717257641846544},{"average":0.21586596185714008,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":119.05581279980109,"scaled_rad":-7.925582933598548},{"average":0.21824341786927298,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":120.73368876765096,"scaled_rad":-5.6884149764653955},{"average":0.22109489863398626,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":122.74610499048838,"scaled_rad":-3.005193346015517},{"average":0.22443218589577568,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":125.10137636703192,"scaled_rad":0.13516848937587156},{"average":0.22778447375613006,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":127.46723433012303,"scaled_rad":3.2896457734973694},{"average":0.2315794543100156,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":130.14552012692715,"scaled_rad":6.860693502569518},{"average":0.19116186147375133,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":101.62103540366658,"scaled_rad":-31.171952795111224},{"average":0.19376738405741342,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":103.45986804852157,"scaled_rad":-28.72017593530458},{"average":0.19607685580330875,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":105.08976450973502,"scaled_rad":-26.54698065368666},{"average":0.20498107043832461,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":111.37386300511238,"scaled_rad":-18.168182659850146},{"average":0.21870988671612365,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":121.06289648543297,"scaled_rad":-5.249471352756046},{"average":0.22693132607772956,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":126.8651302410001,"scaled_rad":2.4868403213334602},{"average":0.23615819514389075,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":133.37694025372045,"scaled_rad":11.169253671627274},{"average":0.24279885060016634,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":138.0635448192703,"scaled_rad":17.418059759027045},{"average":0.24653535046955494,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":140.70055820783634,"scaled_rad":20.93407761044844},{"average":0.2524101588272616,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":144.8466705686183,"scaled_rad":26.462227424824363},{"average":0.2616426806938699,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":151.3624700128877,"scaled_rad":35.14996001718359},{"average":0.27115127217360996,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":158.07310400591993,"scaled_rad":44.09747200789323},{"average":0.27953832266957784,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":163.99221687131546,"scaled_rad":51.9896224950873},{"average":0.2854463532714172,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":168.1617756406719,"scaled_rad":57.54903418756251},{"average":0.28819057144053084,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":170.0984919008234,"scaled_rad":60.13132253443118},{"average":0.29050837953762937,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":171.73427169416667,"scaled_rad":62.31236225888887},{"average":0.2917150288365008,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":172.58585752787593,"scaled_rad":63.44781003716787},{"average":0.2939909744692217,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":174.19209312667857,"scaled_rad":65.58945750223808},{"average":0.2973143461116362,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":176.5375436345256,"scaled_rad":68.71672484603411},{"average":0.3003582636230305,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":178.68577098948887,"scaled_rad":71.58102798598517},{"average":0.3040806217604899,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":181.3128039317179,"scaled_rad":75.08373857562384},{"average":0.31007879079315265,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":185.545977382518,"scaled_rad":80.72796984335733},{"average":0.31399618025810616,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":188.31065256742585,"scaled_rad":84.41420342323445},{"average":0.2835927598368428,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":166.85361268742906,"scaled_rad":55.804816916572065},{"average":0.28768731784684204,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":169.74332355858056,"scaled_rad":59.657764744774056},{"average":0.29219221872180834,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":172.9226315571629,"scaled_rad":63.89684207621718},{"average":0.29691073741014884,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":176.25269910441241,"scaled_rad":68.33693213921654},{"average":0.30024775824298755,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":178.6077824502495,"scaled_rad":71.47704326699932},{"average":0.29940138468968125,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":178.01045916112486,"scaled_rad":70.68061221483316},{"average":0.2976711153547228,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":176.78933148506334,"scaled_rad":69.05244198008444},{"average":0.2958773672168415,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":175.5234040073026,"scaled_rad":67.36453867640347},{"average":0.29168865596057536,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":172.56724502169598,"scaled_rad":63.42299336226128},{"average":0.2873278964330262,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":169.4896639537363,"scaled_rad":59.31955193831507},{"average":0.28318566872778844,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":166.56631046811486,"scaled_rad":55.42174729081981},{"average":0.2802237066911993,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":164.4759227202389,"scaled_rad":52.634563626985226},{"average":0.27947674906830133,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":163.94876165476947,"scaled_rad":51.931682206359284},{"average":0.28148057272636007,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":165.36294872805604,"scaled_rad":53.81726497074138},{"average":0.2877316356564758,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":169.774600598977,"scaled_rad":59.69946746530266},{"average":0.296704417936639,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":176.10709031731605,"scaled_rad":68.14278708975473},{"average":0.30719383940052447,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":183.50993945567402,"scaled_rad":78.01325260756536},{"average":0.3171100818309909,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":190.50827077307494,"scaled_rad":87.34436103076658},{"average":0.322885792916755,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":194.58444580158942,"scaled_rad":92.77926106878587},{"average":0.3235985136588492,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":195.08744438446334,"scaled_rad":93.4499258459511},{"average":0.3208661025896274,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":193.15906091745603,"scaled_rad":90.87874788994137},{"average":0.3145899563547104,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":188.72970664779223,"scaled_rad":84.97294219705631},{"average":0.3065718040518765,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":183.0709415699831,"scaled_rad":77.4279220933108},{"average":0.2985116677051506,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":177.3825464935872,"scaled_rad":69.8433953247829},{"average":0.29040149048556074,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":171.65883535768896,"scaled_rad":62.21178047691859},{"average":0.28780066197500725,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":169.82331552805329,"scaled_rad":59.76442070407106},{"average":0.2935209682325075,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":173.86038891625458,"scaled_rad":65.14718522167277},{"average":0.30087868892767283,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":179.05305816841633,"scaled_rad":72.07074422455509},{"average":0.30094427456654604,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":179.09934485752427,"scaled_rad":72.13245981003234},{"average":0.2942595586984087,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":174.38164490858182,"scaled_rad":65.8421932114424},{"average":0.2870657613263194,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":169.30466360309742,"scaled_rad":59.07288480412987},{"average":0.281890783417158,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":165.65245257432383,"scaled_rad":54.20327009909843},{"average":0.27586029006035795,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":161.3964664168447,"scaled_rad":48.52862188912627},{"average":0.268193387449093,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":155.98559379769327,"scaled_rad":41.31412506359101},{"average":0.2588496103165379,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":149.3912765865015,"scaled_rad":32.52170211533533},{"average":0.24933397229594154,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":142.67566953760664,"scaled_rad":23.567559383475498},{"average":0.24498344930335164,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":139.60531284558266,"scaled_rad":19.47375046077687},{"average":0.2429356601810033,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":138.16009739760884,"scaled_rad":17.546796530145116},{"average":0.23931693113108843,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":135.6062000905604,"scaled_rad":14.1416001207472},{"average":0.2309180490140404,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":129.6787371263324,"scaled_rad":6.23831616844322},{"average":0.21968030637525462,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":121.74776460348667,"scaled_rad":-4.336313862017789},{"average":0.21170631951361799,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":116.1201690329223,"scaled_rad":-11.839774622770278},{"average":0.2086693736612512,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":113.97686188639972,"scaled_rad":-14.697517484800386},{"average":0.20867715688284874,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":113.9823548504774,"scaled_rad":-14.69019353269681},{"average":0.2004843177575824,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":108.2003055479492,"scaled_rad":-22.3995926027344},{"average":0.19433413472220662,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":103.85984908512815,"scaled_rad":-28.186867886495804},{"average":0.19003793105246528,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":100.8278279441858,"scaled_rad":-32.2295627410856},{"average":0.18795438714060686,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":99.35737875823816,"scaled_rad":-34.19016165568246},{"average":0.18782375348978733,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":99.26518480714759,"scaled_rad":-34.313086923803226},{"average":0.18889802849895224,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":100.02334824383823,"scaled_rad":-33.30220234154905},{"average":0.18947565830427684,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":100.43100717158363,"scaled_rad":-32.75865710455517},{"average":0.1886029648842125,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":99.81510878719541,"scaled_rad":-33.579854950406116},{"average":0.18678943325743635,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":98.53521922542241,"scaled_rad":-35.28637436610346},{"average":0.14786783999771672,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":71.06652763759232,"scaled_rad":-71.91129648321026},{"average":0.1542921354852979,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":75.60043739405863,"scaled_rad":-65.8660834745885},{"average":0.1586085252188654,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":78.64670473396596,"scaled_rad":-61.804393688045394},{"average":0.1577959967301189,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":78.07326740536612,"scaled_rad":-62.56897679284518},{"average":0.15007076409855602,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":72.62122870837239,"scaled_rad":-69.83836172217015},{"average":0.13830474664345055,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":64.31742925867725,"scaled_rad":-80.91009432176367},{"average":0.13656903004569357,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":63.09245720808531,"scaled_rad":-82.5433903892196},{"average":0.12711566483251435,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":56.42079883646673,"scaled_rad":-91.43893488471103},{"average":0.11904547913702873,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":50.72531148972369,"scaled_rad":-99.03291801370176},{"average":0.11304734144968612,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":46.49216016070376,"scaled_rad":-104.67711978572831},{"average":0.11056561469411637,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":44.74069571270129,"scaled_rad":-107.01240571639829},{"average":0.11165242787504338,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":45.50770789232263,"scaled_rad":-105.98972281023649},{"average":0.11561652834771419,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":48.3053491034715,"scaled_rad":-102.25953452870466},{"average":0.11578178398462953,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":48.42197732301245,"scaled_rad":-102.1040302359834},{"average":0.11425839589160626,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":47.34685489889691,"scaled_rad":-103.53752680147079},{"average":0.11402611251985777,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":47.18292223928135,"scaled_rad":-103.7561036809582},{"average":0.11454113403006512,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":47.54639572122704,"scaled_rad":-103.27147237169727},{"average":0.11679919191046133,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":49.1400071412473,"scaled_rad":-101.1466571450036},{"average":0.11924223768233787,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":50.86417270648584,"scaled_rad":-98.84776972468555},{"average":0.12207320195039284,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":52.86210952927894,"scaled_rad":-96.18385396096141},{"average":0.12619598430567439,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":55.77173957050795,"scaled_rad":-92.30434723932274},{"average":0.13032574839605318,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":58.68629693130618,"scaled_rad":-88.41827075825843},{"average":0.13949670345189186,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":65.15864595139094,"scaled_rad":-79.78847206481208},{"average":0.14917235405552795,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":71.98718096457442,"scaled_rad":-70.68375871390077},{"average":0.1581816969843579,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":78.34547315137301,"scaled_rad":-62.20603579816931},{"average":0.16407306865060514,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":82.50327497232016,"scaled_rad":-56.66230003690647},{"average":0.1676096087089967,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":84.99916786919442,"scaled_rad":-53.33444284107409},{"average":0.16992559952278216,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":86.63366512524482,"scaled_rad":-51.15511316634026},{"average":0.17230874897032883,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":88.31555920253878,"scaled_rad":-48.9125877299483},{"average":0.17392795723021806,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":89.45830616077788,"scaled_rad":-47.38892511896283},{"average":0.17427478496807977,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":89.70307785092572,"scaled_rad":-47.06256286543238},{"average":0.17491665872949033,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":90.1560765828341,"scaled_rad":-46.45856455622119},{"average":0.17569921109329129,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":90.70835843288936,"scaled_rad":-45.72218875614753},{"average":0.17342006374185115,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":89.09986323943284,"scaled_rad":-47.86684901408957},{"average":0.16716887937434535,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":84.68812566476916,"scaled_rad":-53.74916578030779},{"average":0.16408391953339418,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":82.5109329207191,"scaled_rad":-56.652089439041205},{"average":0.16284672532067146,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":81.63779018895177,"scaled_rad":-57.81627974806432},{"average":0.16017971343779044,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":79.75556182324523,"scaled_rad":-60.325917569006364},{"average":0.15807499369019987,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":78.2701679124771,"scaled_rad":-62.30644278336386},{"average":0.15462169597036837,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":75.83302281941697,"scaled_rad":-65.55596957411072},{"average":0.15138103396823555,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":73.54594416662422,"scaled_rad":-68.60540777783437},{"average":0.14701681564150587,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":70.46592207094713,"scaled_rad":-72.71210390540384},{"average":0.14366700274530303,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.10181079963493,"scaled_rad":-75.86425226715343},{"average":0.1404380949139595,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":65.82302758557532,"scaled_rad":-78.90262988589957},{"average":0.13613353262977335,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":62.785107400347876,"scaled_rad":-82.95319013286951},{"average":0.1306137581033599,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":58.88955813316702,"scaled_rad":-88.14725582244397},{"average":0.12346519147736966,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":53.844498167762204,"scaled_rad":-94.87400244298372},{"average":0.11489258098608698,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":47.79442739814293,"scaled_rad":-102.94076346914275},{"average":0.10648070004900083,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":41.85779059110099,"scaled_rad":-110.85627921186534},{"average":0.10030605308174777,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":37.50006884843186,"scaled_rad":-116.66657486875752},{"average":0.09768731420512732,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":35.651908880494666,"scaled_rad":-119.13078815934045},{"average":0.09655910370893096,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":34.85568078265257,"scaled_rad":-120.1924256231299},{"average":0.0948849278587661,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":33.674140762306976,"scaled_rad":-121.76781231692404},{"average":0.09331861930850904,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":32.5687274712504,"scaled_rad":-123.24169670499947},{"average":0.09232542393296447,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":31.8677855217458,"scaled_rad":-124.1762859710056},{"average":0.09192045087651302,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":31.581978105928666,"scaled_rad":-124.55736252542845},{"average":0.09179457477424681,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":31.493141767489075,"scaled_rad":-124.67581097668123},{"average":0.09130864518923575,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":31.150199745177645,"scaled_rad":-125.1330670064298},{"average":0.12156911900085283,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":52.50635587389279,"scaled_rad":-96.65819216814296},{"average":0.12185690473109066,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":52.70945900521969,"scaled_rad":-96.38738799304042},{"average":0.12425902099705934,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":54.40473880601577,"scaled_rad":-94.12701492531231},{"average":0.13820267105911538,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":64.24538999949172,"scaled_rad":-81.00614666734437},{"average":0.14266717457155859,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":67.3961877907785,"scaled_rad":-76.80508294562867},{"average":0.14602954642886812,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":69.7691624769823,"scaled_rad":-73.64111669735694},{"average":0.14891226039260155,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":71.80362135119478,"scaled_rad":-70.92850486507365},{"average":0.1520375160938078,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":74.00925266789592,"scaled_rad":-67.9876631094721},{"average":0.1567312255320908,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":77.32181122896885,"scaled_rad":-63.570918361374865},{"average":0.16183226410663257,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":80.92183999569262,"scaled_rad":-58.77088000574318},{"average":0.16582908501227697,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":83.74257346506367,"scaled_rad":-55.00990204658177},{"average":0.17001927427288657,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":86.69977554377303,"scaled_rad":-51.06696594163597},{"average":0.17563979695359422,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":90.66642724398851,"scaled_rad":-45.77809700801532},{"average":0.1804535540031507,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":94.06370871935539,"scaled_rad":-41.248388374192814},{"average":0.18228222581669418,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":95.35428338125055,"scaled_rad":-39.52762215833259},{"average":0.18317210339797588,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":95.98230938902574,"scaled_rad":-38.69025414796569},{"average":0.18421133223624117,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":96.7157391912695,"scaled_rad":-37.712347744974},{"average":0.18481623875983308,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":97.14264850675245,"scaled_rad":-37.143135324330075},{"average":0.18629291153931934,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":98.18480186581934,"scaled_rad":-35.75359751224089},{"average":0.18669236558497923,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":98.46671427137079,"scaled_rad":-35.37771430483896},{"average":0.18723821146301475,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":98.85194187441866,"scaled_rad":-34.864077500775124},{"average":0.18812619142507947,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":99.47862864829675,"scaled_rad":-34.028495135604345},{"average":0.18818118858064842,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":99.5174425759397,"scaled_rad":-33.976743232080395},{"average":0.187284134583737,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":98.88435185392419,"scaled_rad":-34.82086419476775},{"average":0.18583541351388425,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":97.86192525388671,"scaled_rad":-36.18409966148438},{"average":0.18525258191712984,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":97.45059519162388,"scaled_rad":-36.732539744501494},{"average":0.18477757641148954,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":97.11536277577984,"scaled_rad":-37.17951629896021},{"average":0.185506209976922,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":97.62959174261195,"scaled_rad":-36.4938776765174},{"average":0.19056817298705916,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":101.20204315349399,"scaled_rad":-31.7306091286747},{"average":0.19622209355784184,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":105.19226522340203,"scaled_rad":-26.410313035463957},{"average":0.19654050790955743,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":105.41698432896511,"scaled_rad":-26.110687561379848},{"average":0.1973888597232114,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":106.01570376400309,"scaled_rad":-25.31239498132922},{"average":0.19824545706274727,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":106.62024243172041,"scaled_rad":-24.506343424372773},{"average":0.19949603965199786,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":107.50283393356383,"scaled_rad":-23.32955475524824},{"average":0.20188118857548548,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":109.18613912955463,"scaled_rad":-21.0851478272605},{"average":0.16074691896229537,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":80.15586387448894,"scaled_rad":-59.79218150068142},{"average":0.10888712266726788,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":43.55610957537457,"scaled_rad":-108.59185389950056},{"average":0.10881782596521013,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":43.507203824672736,"scaled_rad":-108.65706156710303},{"average":0.10849129303699277,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":43.27675508022845,"scaled_rad":-108.96432655969541},{"average":0.10814700074862199,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":43.03377276904149,"scaled_rad":-109.28830297461136},{"average":0.10731965121591375,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":42.44987557352721,"scaled_rad":-110.06683256863039},{"average":0.10663794777630332,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":41.96876727428394,"scaled_rad":-110.70831030095474},{"average":0.1066234573402401,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":41.958540732000905,"scaled_rad":-110.72194569066545},{"average":0.10711365168033234,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":42.30449258079196,"scaled_rad":-110.26067655894406},{"average":0.10987160712974965,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":44.250903847861586,"scaled_rad":-107.66546153618455},{"average":0.11217001889188406,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":45.87299478886244,"scaled_rad":-105.50267361485007},{"average":0.11487663888802237,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":47.78317635371426,"scaled_rad":-102.95576486171433},{"average":0.11777182858548815,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":49.82643990557544,"scaled_rad":-100.23141345923275},{"average":0.11814830676399798,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":50.092137224439746,"scaled_rad":-99.87715036741366},{"average":0.11475930714570626,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":47.7003701483866,"scaled_rad":-103.06617313548455},{"average":0.10961738424954286,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":44.07148750577167,"scaled_rad":-107.90468332563776},{"average":0.10545250585237721,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":41.132148424014275,"scaled_rad":-111.8238021013143},{"average":0.10324746854663837,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":39.575955970976025,"scaled_rad":-113.89872537203198},{"average":0.10204911601718139,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":38.73022553477582,"scaled_rad":-115.02636595363225},{"average":0.10171894192032586,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":38.49720705641355,"scaled_rad":-115.33705725811527},{"average":0.10172388183672783,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":38.500693374129526,"scaled_rad":-115.33240883449398},{"average":0.10145672473437065,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":38.312148778815065,"scaled_rad":-115.58380162824659},{"average":0.10074651004081404,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":37.810918825347535,"scaled_rad":-116.25210823286996},{"average":0.09919959839375292,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":36.7191947876597,"scaled_rad":-117.70774028312039},{"average":0.09703687666282233,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":35.192866309254086,"scaled_rad":-119.74284492099456},{"average":0.09532578775138759,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":33.985275107272145,"scaled_rad":-121.35296652363715},{"average":0.09274034937548023,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":32.16061677704296,"scaled_rad":-123.78584429727604},{"average":0.09093358090254626,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":30.88550027236996,"scaled_rad":-125.48599963684006},{"average":0.0907331894836003,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":30.744075175839527,"scaled_rad":-125.67456643221396},{"average":0.09338795993107638,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":32.617664218600396,"scaled_rad":-123.1764477085328},{"average":0.09863706688257344,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":36.32219139455821,"scaled_rad":-118.23707814058906},{"average":0.10438902510640158,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":40.38160297676424,"scaled_rad":-112.82452936431434},{"average":0.11081626826889625,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":44.9175930379231,"scaled_rad":-106.77654261610253},{"average":0.11732462565283742,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":49.51082899642827,"scaled_rad":-100.6522280047623},{"average":0.1235246782955665,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":53.886480649098125,"scaled_rad":-94.81802580120251},{"average":0.13011517009768656,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":58.53768250295211,"scaled_rad":-88.6164233293972},{"average":0.13762242036579314,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":63.835881395048546,"scaled_rad":-81.55215813993527},{"average":0.1447945254828746,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.89755351576554,"scaled_rad":-74.8032619789793},{"average":0.14980042141509367,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":72.4304359074328,"scaled_rad":-70.09275212342295},{"average":0.15679869075689373,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":77.36942442508469,"scaled_rad":-63.50743409988709},{"average":0.16359687950407797,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":82.16720720869743,"scaled_rad":-57.11039038840342},{"average":0.16912957848731366,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":86.07187783727841,"scaled_rad":-51.904162883628786},{"average":0.16962207235877572,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":86.41945256716718,"scaled_rad":-51.440729910443764},{"average":0.16481591466374096,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":83.02753429274202,"scaled_rad":-55.96328760967731},{"average":0.16017131992453768,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":79.74963814932622,"scaled_rad":-60.33381580089838},{"average":0.15639015531741343,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":77.08110287784226,"scaled_rad":-63.89186282954367},{"average":0.1524876496478058,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":74.32693184627892,"scaled_rad":-67.5640908716281},{"average":0.14903000504661104,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":71.8867189665858,"scaled_rad":-70.81770804455226},{"average":0.14470277957562022,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.83280436703464,"scaled_rad":-74.88959417728714},{"average":0.14130656817644888,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":66.43594761791854,"scaled_rad":-78.0854031761086},{"average":0.14085199974477292,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":66.11513855000732,"scaled_rad":-78.51314859999025},{"average":0.14213759500451326,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":67.02244004357516,"scaled_rad":-77.30341327523311},{"average":0.143729286330909,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.14576708355627,"scaled_rad":-75.80564388859165},{"average":0.14440453204076253,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.62231787699892,"scaled_rad":-75.1702428306681},{"average":0.1444093263112849,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.6257014059693,"scaled_rad":-75.16573145870761},{"average":0.14261217876256718,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":67.35737481347493,"scaled_rad":-76.85683358203342},{"average":0.14221024409997488,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":67.07371172672683,"scaled_rad":-77.2350510310309},{"average":0.14344273597070856,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":67.94353580755981,"scaled_rad":-76.07528558992024},{"average":0.14642191205261865,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":70.04607226935772,"scaled_rad":-73.27190364085637},{"average":0.1520847989731783,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":74.04262228928182,"scaled_rad":-67.94317028095756},{"average":0.1597706972565019,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":79.46690099522422,"scaled_rad":-60.710798673034375},{"average":0.16710489389512362,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":84.64296827917312,"scaled_rad":-53.809375627769185},{"average":0.1717244219249377,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":87.90317373596314,"scaled_rad":-49.46243501871584},{"average":0.17544116966975093,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":90.52624717570579,"scaled_rad":-45.96500376572561},{"average":0.18342292326159215,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":96.1593240716417,"scaled_rad":-38.4542345711444},{"average":0.19035559628458543,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":101.05201836288367,"scaled_rad":-31.93064218282177},{"average":0.192722333186466,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":102.7223293800479,"scaled_rad":-29.703560826602825},{"average":0.19321093427169164,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":103.06715679833943,"scaled_rad":-29.24379093554745},{"average":0.19307272228435307,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":102.96961447964217,"scaled_rad":-29.3738473604771},{"average":0.19244531328456665,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":102.52682417042844,"scaled_rad":-29.964234439428736},{"average":0.19324670676088607,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":103.09240302776415,"scaled_rad":-29.210129296314477},{"average":0.1875188685654911,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":99.05001401751963,"scaled_rad":-34.59998130997383},{"average":0.1878005633312989,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":99.24881848557537,"scaled_rad":-34.33490868589951},{"average":0.19167424162137972,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":101.98264475909595,"scaled_rad":-30.68980698787206},{"average":0.1882228872884148,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":99.54687120018956,"scaled_rad":-33.937505066413934},{"average":0.18513607398314136,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":97.36837038430653,"scaled_rad":-36.842172820924645},{"average":0.18385768806756494,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":96.4661568441035,"scaled_rad":-38.04512420786202},{"average":0.18216970733889978,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":95.27487410979957,"scaled_rad":-39.63350118693393},{"average":0.17351572822165265,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":89.16737789830208,"scaled_rad":-47.77682946893057},{"average":0.16608850543250245,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":83.92565794126197,"scaled_rad":-54.765789411650715},{"average":0.1534741688540943,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":75.0231621275571,"scaled_rad":-66.63578382992387},{"average":0.1441328202873884,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.43055886280804,"scaled_rad":-75.42592151625594},{"average":0.13704121486677676,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":63.42569894195369,"scaled_rad":-82.09906807739509},{"average":0.13092466694778584,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":59.10898026993508,"scaled_rad":-87.8546929734199},{"average":0.12775898823883086,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":56.874820646967194,"scaled_rad":-90.83357247071041},{"average":0.12686312557065818,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":56.2425706983878,"scaled_rad":-91.6765724021496},{"average":0.1290715967303947,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":57.80118657422353,"scaled_rad":-89.5984179010353},{"average":0.13415787759565756,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":61.39080017212262,"scaled_rad":-84.81226643716985},{"average":0.14091941993577925,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":66.16271996377904,"scaled_rad":-78.44970671496127},{"average":0.14684404069167095,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":70.34398713936687,"scaled_rad":-72.8746838141775},{"average":0.14943126520094469,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":72.16990602299244,"scaled_rad":-70.44012530267676},{"average":0.14836902906622482,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":71.42023895300983,"scaled_rad":-71.43968139598691},{"average":0.1459326744432723,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":69.70079562781258,"scaled_rad":-73.7322724962499},{"average":0.1428641380127983,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":67.53519361167048,"scaled_rad":-76.61974185110603},{"average":0.14073658316175586,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":66.03368395738926,"scaled_rad":-78.621754723481},{"average":0.1408187125804229,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":66.0916463243612,"scaled_rad":-78.54447156751841},{"average":0.14190028596249787,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":66.85496054594446,"scaled_rad":-77.52671927207403},{"average":0.14245516924649,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":67.24656624650031,"scaled_rad":-77.00457833799959},{"average":0.14168279964368616,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":66.70147082171486,"scaled_rad":-77.73137223771352},{"average":0.14154907163251465,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":66.6070930435234,"scaled_rad":-77.85720927530214},{"average":0.14227637504424218,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":67.12038326199438,"scaled_rad":-77.17282231734083},{"average":0.14110197927115845,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":66.29156016943425,"scaled_rad":-78.27791977408766},{"average":0.13589521269217034,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":62.616914468944344,"scaled_rad":-83.17744737474088},{"average":0.12768382135086198,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":56.821772046169784,"scaled_rad":-90.9043039384403},{"average":0.12172189769149246,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":52.614178560039484,"scaled_rad":-96.51442858661403},{"average":0.11821923473996393,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":50.14219423736203,"scaled_rad":-99.8104076835173},{"average":0.11609410246649045,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":48.64239430332901,"scaled_rad":-101.81014092889465},{"average":0.11492263554782511,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":47.81563823300478,"scaled_rad":-102.91248235599363},{"average":0.11197528411308852,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":45.73556183372967,"scaled_rad":-105.6859175550271},{"average":0.10537385659484452,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":41.07664216083637,"scaled_rad":-111.89781045221818},{"average":0.09800770077541346,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":35.8780198680215,"scaled_rad":-118.829306842638},{"average":0.09219756670095952,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":31.777551012336538,"scaled_rad":-124.29659865021796},{"average":0.08816039162752061,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":28.92833782010229,"scaled_rad":-128.09554957319696},{"average":0.08535604077022547,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":26.94918325957128,"scaled_rad":-130.73442232057164},{"average":0.08332123124296269,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":25.513128086511223,"scaled_rad":-132.64916255131837},{"average":0.08169149976671158,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":24.362954428578007,"scaled_rad":-134.18272742856266},{"average":0.08017103930041901,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":23.2898981602648,"scaled_rad":-135.61346911964694},{"average":0.07858478382071812,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":22.170407437964318,"scaled_rad":-137.10612341604758},{"average":0.07710640633772753,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":21.12705099415995,"scaled_rad":-138.49726534112006},{"average":0.07580717952497337,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":20.210129110103438,"scaled_rad":-139.71982785319543},{"average":0.08520438187498817,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":26.842150862618105,"scaled_rad":-130.87713218317586},{"average":0.09814491028584257,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":35.97485469437983,"scaled_rad":-118.7001937408269},{"average":0.10185323264626045,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":38.591981967327094,"scaled_rad":-115.21069071023055},{"average":0.10568567295481054,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":41.296704771500636,"scaled_rad":-111.60439363799915},{"average":0.10998597435897559,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":44.33161786504991,"scaled_rad":-107.55784284660012},{"average":0.11679972867584891,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":49.14038596034621,"scaled_rad":-101.14615205287173},{"average":0.12391652339662962,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":54.1630230855673,"scaled_rad":-94.44930255257694},{"average":0.12989736150342404,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":58.38396533466836,"scaled_rad":-88.82137955377551},{"average":0.1354913639965665,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":62.33190056435762,"scaled_rad":-83.55746591418985},{"average":0.13315019301529107,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":60.679632549276484,"scaled_rad":-85.76048993429802},{"average":0.12913375158801962,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":57.845052009109295,"scaled_rad":-89.53993065452094},{"average":0.1260177532911243,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":55.645954052495014,"scaled_rad":-92.47206126333998},{"average":0.12415499830444296,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":54.33132538630945,"scaled_rad":-94.22489948492074},{"average":0.12301913805952938,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":53.5296985221107,"scaled_rad":-95.2937353038524},{"average":0.12103004232841823,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":52.12590559893899,"scaled_rad":-97.16545920141468},{"average":0.11910546974109187,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":50.767649515050195,"scaled_rad":-98.97646731326641},{"average":0.11794477581930532,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":49.9484964255897,"scaled_rad":-100.06867143254706},{"average":0.1171381919172944,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":49.379254455041284,"scaled_rad":-100.82766072661163},{"average":0.11650442397987323,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":48.931976362001514,"scaled_rad":-101.42403151733131},{"average":0.11463764788430952,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":47.614509821246074,"scaled_rad":-103.18065357167191},{"average":0.11185529163907751,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":45.65087783224301,"scaled_rad":-105.79882955700931},{"average":0.10886156541220475,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":43.538072688948155,"scaled_rad":-108.61590308140245},{"average":0.10912790916215302,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":43.72604326545708,"scaled_rad":-108.36527564605723},{"average":0.10992021606394937,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":44.285209324850555,"scaled_rad":-107.61972090019927},{"average":0.11063441760231828,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":44.789252971216705,"scaled_rad":-106.9476627050444},{"average":0.11143716729762913,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":45.35578897234024,"scaled_rad":-106.19228137021301},{"average":0.11225118998689745,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":45.93028082440295,"scaled_rad":-105.4262922341294},{"average":0.11297833328119977,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":46.443458040917875,"scaled_rad":-104.74205594544284},{"average":0.1130045363656539,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":46.46195071773913,"scaled_rad":-104.7173990430145},{"average":0.11238827207508668,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":46.02702572324507,"scaled_rad":-105.29729903567325},{"average":0.11184849216054156,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":45.64607913919836,"scaled_rad":-105.80522781440217},{"average":0.11283115225539085,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":46.339585874674626,"scaled_rad":-104.88055216710049},{"average":0.1143277310649036,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":47.39578780045581,"scaled_rad":-103.47228293272559},{"average":0.11522146317133725,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":48.02653411728694,"scaled_rad":-102.63128784361741},{"average":0.11538780738990154,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":48.143930597093686,"scaled_rad":-102.4747592038751},{"average":0.11611145147112265,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":48.65463826401216,"scaled_rad":-101.79381564798379},{"average":0.11855502947930965,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":50.37917945197937,"scaled_rad":-99.49442739736085},{"average":0.12120362992528581,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":52.248414051509535,"scaled_rad":-97.00211459798729},{"average":0.1241790656024764,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":54.34831074409326,"scaled_rad":-94.20225234120899},{"average":0.12478771800278902,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":54.77786369062392,"scaled_rad":-93.62951507916812},{"average":0.12582397579446394,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":55.509196693747995,"scaled_rad":-92.654404408336},{"average":0.12921499850609885,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":57.90239155634437,"scaled_rad":-89.46347792487418},{"average":0.1356473582450485,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":62.4419926120401,"scaled_rad":-83.41067651727987},{"average":0.14406656480512872,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.38379943556544,"scaled_rad":-75.4882674192461},{"average":0.15322414050288924,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":74.84670605029335,"scaled_rad":-66.87105859960887},{"average":0.16143001246002867,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":80.63795319929329,"scaled_rad":-59.149395734275615},{"average":0.16989074406122495,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":86.60906608282438,"scaled_rad":-51.18791188956749},{"average":0.17607648257089295,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":90.97461561804549,"scaled_rad":-45.36717917593934},{"average":0.17706037781691977,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":91.66899405439314,"scaled_rad":-44.44134126080915},{"average":0.1779648994162291,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":92.30735499404335,"scaled_rad":-43.59019334127552},{"average":0.17869217507137355,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":92.82062562346476,"scaled_rad":-42.90583250204698},{"average":0.1787158872706176,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":92.83736037231118,"scaled_rad":-42.88351950358509},{"average":0.17811448195254362,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":92.41292201257549,"scaled_rad":-43.449437316566005},{"average":0.16930265557393834,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":86.19402600016807,"scaled_rad":-51.741298666442574},{"average":0.16864179447696234,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":85.72762706490106,"scaled_rad":-52.36316391346526},{"average":0.1642135807771135,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":82.60244060106646,"scaled_rad":-56.53007919857805},{"average":0.15489823184655863,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":76.02818643066362,"scaled_rad":-65.29575142578184},{"average":0.14434619937303272,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.58114993074673,"scaled_rad":-75.22513342567102},{"average":0.13666466299969154,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":63.15994961779923,"scaled_rad":-82.45340050960102},{"average":0.12911142128798006,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":57.82929252771403,"scaled_rad":-89.5609432963813},{"average":0.12367623878537484,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":53.99344359698327,"scaled_rad":-94.67540853735565},{"average":0.12216922240221376,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":52.92987541336269,"scaled_rad":-96.09349944884976},{"average":0.12215103966664918,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":52.917043051847735,"scaled_rad":-96.11060926420302},{"average":0.12143246635225219,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":52.40991404958145,"scaled_rad":-96.78678126722474},{"average":0.1187107331956616,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":50.48906645827457,"scaled_rad":-99.34791138896725},{"average":0.11660348211655454,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":49.00188607478246,"scaled_rad":-101.33081856695672},{"average":0.11668615782766541,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":49.06023398451871,"scaled_rad":-101.25302135397506},{"average":0.11726714116866299,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":49.47025965086382,"scaled_rad":-100.7063204655149},{"average":0.11871505070450729,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":50.49211351542145,"scaled_rad":-99.34384864610473},{"average":0.11983303365506463,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":51.28112358148916,"scaled_rad":-98.29183522468111},{"average":0.11536608125075658,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":48.12859749879052,"scaled_rad":-102.49520333494598},{"average":0.11806994015530614,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":50.036830439062896,"scaled_rad":-99.95089274791614},{"average":0.12139318151430421,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":52.38218900013472,"scaled_rad":-96.82374799982037},{"average":0.1259251842604316,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":55.580623989110535,"scaled_rad":-92.55916801451929},{"average":0.13139234778783726,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":59.43904334497895,"scaled_rad":-87.4146088733614},{"average":0.13535154384466258,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":62.233223292726315,"scaled_rad":-83.68903560969825},{"average":0.13731930554679678,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":63.62195984710079,"scaled_rad":-81.83738687053228},{"average":0.13703097825328636,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":63.41847451059511,"scaled_rad":-82.10870065253985},{"average":0.13649705978079604,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":63.04166460571745,"scaled_rad":-82.6111138590434},{"average":0.13668461820198147,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":63.17403288755689,"scaled_rad":-82.43462281659082},{"average":0.13877634459535282,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":64.65025681298147,"scaled_rad":-80.46632424935805},{"average":0.14162444728098986,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":66.66028897585284,"scaled_rad":-77.78628136552955},{"average":0.14325334651511784,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":67.80987528367288,"scaled_rad":-76.25349962176949},{"average":0.14476879514730015,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.87939447875925,"scaled_rad":-74.82747402832099},{"average":0.14410109774860344,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.4081708626958,"scaled_rad":-75.45577218307227},{"average":0.1437160558740985,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.1364297644165,"scaled_rad":-75.81809364744467},{"average":0.1447566617993219,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.8708314378961,"scaled_rad":-74.83889141613855},{"average":0.14697776405352556,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":70.43836163632955,"scaled_rad":-72.7488511515606},{"average":0.1485646374036958,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":71.55828841717602,"scaled_rad":-71.25561544376532},{"average":0.14652436525776444,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":70.11837803226818,"scaled_rad":-73.17549595697577},{"average":0.14391954581423685,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":68.28004162453712,"scaled_rad":-75.62661116728384},{"average":0.142079385348091,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":66.98135891184896,"scaled_rad":-77.35818811753472},{"average":0.14079447878523674,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":66.07454346216517,"scaled_rad":-78.56727538377979},{"average":0.1398318466706738,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":65.39517135910083,"scaled_rad":-79.47310485453222},{"average":0.13814714405924286,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":64.20620213726528,"scaled_rad":-81.05839715031296},{"average":0.1357305766098083,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":62.50072349648199,"scaled_rad":-83.33236867135736},{"average":0.13310181393939657,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":60.64548929347031,"scaled_rad":-85.80601427537292},{"average":0.12931666465330452,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":57.974141857620076,"scaled_rad":-89.36781085650657},{"average":0.1263664123054635,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":55.89201815553141,"scaled_rad":-92.14397579262479},{"average":0.12442833571493185,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":54.524231698700966,"scaled_rad":-93.96769106839871},{"average":0.12465554267895411,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":54.684581712629964,"scaled_rad":-93.75389104982672},{"average":0.12708691376426456,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":56.400507934670806,"scaled_rad":-91.46598942043893},{"average":0.1291572574317911,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":57.86164112376249,"scaled_rad":-89.51781183498335},{"average":0.13084010494032872,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":59.04930111735292,"scaled_rad":-87.93426517686278},{"average":0.1303417149395645,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":58.6975652279689,"scaled_rad":-88.40324636270813},{"average":0.12688515880096116,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":56.25812052451741,"scaled_rad":-91.65583930064345},{"average":0.12287186300955215,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":53.42575999884902,"scaled_rad":-95.43232000153465},{"average":0.11928627654257867,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":50.8952528799454,"scaled_rad":-98.80632949340614},{"average":0.11720434747953447,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":49.425943364302164,"scaled_rad":-100.76540884759712},{"average":0.11690543072264907,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":49.214984574652185,"scaled_rad":-101.04668723379709},{"average":0.11828281213663851,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":50.18706362103698,"scaled_rad":-99.75058183861736},{"average":0.12081207668531885,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":51.97207759433786,"scaled_rad":-97.37056320754952},{"average":0.1238610373744492,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":54.12386414311243,"scaled_rad":-94.5015144758501},{"average":0.12706497290944857,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":56.385023302012215,"scaled_rad":-91.48663559731705},{"average":0.1295647150522216,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":58.14920200638185,"scaled_rad":-89.1343973248242},{"average":0.12857711555494766,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":57.452209315926154,"scaled_rad":-90.06372091209846},{"average":0.12774354133419674,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":56.863919082466744,"scaled_rad":-90.84810789004435},{"average":0.1262653599567244,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":55.82070103900902,"scaled_rad":-92.2390652813213},{"average":0.1260516481353306,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":55.66987514472029,"scaled_rad":-92.44016647370628},{"average":0.12950131170453588,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":58.10445545678421,"scaled_rad":-89.1940593909544},{"average":0.13522735439367378,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":62.145577298768416,"scaled_rad":-83.80589693497545},{"average":0.16357683456290925,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":82.15306060623989,"scaled_rad":-57.129252525013484},{"average":0.16944168795854336,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":86.29214730953873,"scaled_rad":-51.610470253948364},{"average":0.17873980320321942,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":92.85423890480833,"scaled_rad":-42.86101479358891},{"average":0.18780035821991764,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":99.24867372939246,"scaled_rad":-34.33510169414339},{"average":0.1900076904925906,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":100.80648584220405,"scaled_rad":-32.258018877061275},{"average":0.17812248854134338,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":92.41857261677723,"scaled_rad":-43.441903177630365},{"average":0.17018107879464975,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":86.81396815855555,"scaled_rad":-50.91470912192594},{"average":0.16708915649070072,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":84.63186169611006,"scaled_rad":-53.824184405186585},{"average":0.1664598274854033,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":84.18771635400041,"scaled_rad":-54.41637819466611},{"average":0.1690739429877563,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":86.03261340202063,"scaled_rad":-51.95651546397251},{"average":0.17201000555618623,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":88.104722748537,"scaled_rad":-49.19370300195067},{"average":0.17413847964811832,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":89.60688115181277,"scaled_rad":-47.19082513091631},{"average":0.17456986006983088,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":89.91132541446103,"scaled_rad":-46.7848994473853},{"average":0.17362880271300868,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":89.2471795731406,"scaled_rad":-47.67042723581254},{"average":0.17247722966914966,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":88.43446349105363,"scaled_rad":-48.75404867859517},{"average":0.17019582548767623,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":86.82437555272314,"scaled_rad":-50.90083259636914},{"average":0.16643316376911896,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":84.16889858890245,"scaled_rad":-54.441468548130075},{"average":0.1614799123793162,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":80.67316978161612,"scaled_rad":-59.102440291178496},{"average":0.15759114897882157,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":77.92869727779454,"scaled_rad":-62.76173696294062},{"average":0.1544471287151717,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":75.70982297858994,"scaled_rad":-65.72023602854675},{"average":0.1537888920471488,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":75.24527621902976,"scaled_rad":-66.33963170796031},{"average":0.15676725999859417,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":77.34724234737936,"scaled_rad":-63.53701020349419},{"average":0.16114617950956733,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":80.43763971966104,"scaled_rad":-59.416480373785305},{"average":0.16441836099939103,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":82.74696307041897,"scaled_rad":-56.337382572774715},{"average":0.16847069750050295,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":85.60687635342293,"scaled_rad":-52.52416486210275},{"average":0.16967123861835828,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":86.45415137335398,"scaled_rad":-51.39446483552803},{"average":0.16542119115215068,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":83.4547047087768,"scaled_rad":-55.39372705496426},{"average":0.16005232175826506,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":79.66565587483278,"scaled_rad":-60.44579216688963},{"average":0.15471292741274761,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":75.89740888750791,"scaled_rad":-65.4701214833228},{"average":0.15443562629577587,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":75.70170521196128,"scaled_rad":-65.73105971738495},{"average":0.15401617488713756,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":75.40567978198767,"scaled_rad":-66.1257602906831},{"average":0.1513826086568064,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":73.54705549406683,"scaled_rad":-68.6039260079109},{"average":0.14992041045176419,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":72.51511748303608,"scaled_rad":-69.9798433559519},{"average":0.1529720883659747,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":74.66882169785282,"scaled_rad":-67.10823773619624},{"average":0.15997549330385832,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":79.61143463303556,"scaled_rad":-60.518087155952585},{"average":0.1638993817419272,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":82.38069643100808,"scaled_rad":-56.82573809198922},{"average":0.1701658861902466,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":86.80324606498705,"scaled_rad":-50.92900524668393},{"average":0.16826526666249883,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":85.46189471574665,"scaled_rad":-52.71747371233781},{"average":0.16459103208893153,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":82.86882470319111,"scaled_rad":-56.17490039574518},{"average":0.1594831115287512,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":79.26393901450744,"scaled_rad":-60.981414647323405},{"average":0.1548682467455848,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":76.00702461733846,"scaled_rad":-65.32396717688205},{"average":0.15137083052362968,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":73.53874314401598,"scaled_rad":-68.61500914131203},{"average":0.1491580204448384,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":71.9770651009009,"scaled_rad":-70.69724653213213},{"average":0.14778989003405485,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":71.01151489705975,"scaled_rad":-71.98464680392033},{"average":0.149271828047361,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":72.05738416474763,"scaled_rad":-70.59015444700316},{"average":0.15135089728329662,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":73.52467537378362,"scaled_rad":-68.6337661682885},{"average":0.15361603493275355,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":75.12328330028153,"scaled_rad":-66.50228893295797},{"average":0.1550182403633167,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":76.11288175422717,"scaled_rad":-65.1828243276971},{"average":0.15584583767801674,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":76.69695382046342,"scaled_rad":-64.40406157271543},{"average":0.15856358178016794,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":78.61498615944001,"scaled_rad":-61.846685120746656},{"average":0.16059878836589603,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":80.0513215542385,"scaled_rad":-59.931571261015335},{"average":0.15035740178065155,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":72.8235216112963,"scaled_rad":-69.56863785160493},{"average":0.14967810895437814,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":72.34411458861307,"scaled_rad":-70.20784721518257},{"average":0.15025736400531203,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":72.75292052414149,"scaled_rad":-69.66277263447802},{"average":0.15199276185996338,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":73.97766762361167,"scaled_rad":-68.02977650185112},{"average":0.1546564172643399,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":75.85752717383201,"scaled_rad":-65.52329710155733},{"average":0.158992146670773,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":78.91744337713016,"scaled_rad":-61.44340883049313},{"average":0.16480948345606333,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":83.022995504747,"scaled_rad":-55.96933932700399},{"average":0.1703941729316052,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":86.96435812558862,"scaled_rad":-50.71418916588185},{"average":0.16840493470713308,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":85.56046463854331,"scaled_rad":-52.58604714860893},{"average":0.17340667429851436,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":89.09041371646246,"scaled_rad":-47.87944837805006},{"average":0.17665389511540164,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":91.38212121521404,"scaled_rad":-44.823838379714616},{"average":0.17902242554082368,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":93.05369800134838,"scaled_rad":-42.5950693315355},{"average":0.18441696733353022,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":96.86086498376659,"scaled_rad":-37.518846688311214},{"average":0.19217350668828898,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":102.33499822140142,"scaled_rad":-30.220002371464773},{"average":0.19835683483308852,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":106.69884665541777,"scaled_rad":-24.40153779277631},{"average":0.20302685332135884,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":109.99468546416765,"scaled_rad":-20.007086047776482},{"average":0.2062636252917233,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":112.2790187493132,"scaled_rad":-16.961308334249082},{"average":0.20841894055258542,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":113.80012015387558,"scaled_rad":-14.93317312816589},{"average":0.2098438280402338,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":114.80572633973739,"scaled_rad":-13.592364880350146},{"average":0.21040883955751122,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":115.20447998294263,"scaled_rad":-13.060693356076513},{"average":0.21447964706216766,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":118.07742907093784,"scaled_rad":-9.23009457208289},{"average":0.21756836546723632,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":120.25727440009322,"scaled_rad":-6.323634133209055},{"average":0.21935148464769588,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":121.51570055201229,"scaled_rad":-4.6457325973169645},{"average":0.21930146930205763,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":121.48040250820333,"scaled_rad":-4.692796655728898},{"average":0.2184302459238448,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":120.86554159743474,"scaled_rad":-5.5126112034203345},{"average":0.21851922654692668,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":120.9283391626942,"scaled_rad":-5.4288811164077515},{"average":0.2160661923495807,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":119.1971243233718,"scaled_rad":-7.737167568837606},{"average":0.20938614726257151,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":114.48272075146683,"scaled_rad":-14.023038998044228},{"average":0.20123813046996755,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":108.73230455357373,"scaled_rad":-21.69026059523503},{"average":0.19576058334265956,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":104.86655703152812,"scaled_rad":-26.844590624629177},{"average":0.1925976082074475,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":102.63430544024932,"scaled_rad":-29.820926079667572},{"average":0.1918900531201108,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":102.13495248864324,"scaled_rad":-30.486730015142342},{"average":0.19277515523359293,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":102.759608237362,"scaled_rad":-29.65385568351732},{"average":0.1937219264395535,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":103.42778659499577,"scaled_rad":-28.762951206672312},{"average":0.19372245613420414,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":103.42816042396257,"scaled_rad":-28.76245276804991},{"average":0.19238218775653576,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":102.48227369046148,"scaled_rad":-30.02363507938469},{"average":0.1888412638180073,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":99.98328689528157,"scaled_rad":-33.3556174729579},{"average":0.1916193890993199,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":101.94393290572391,"scaled_rad":-30.741422792368127},{"average":0.1951544215619341,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":104.43876182551045,"scaled_rad":-27.414984232652728},{"average":0.19757701909301406,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":106.14849616188827,"scaled_rad":-25.135338450815652},{"average":0.19553914231558642,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":104.71027629458666,"scaled_rad":-27.052964940551107},{"average":0.18725584083017838,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":98.86438369935308,"scaled_rad":-34.84748840086256},{"average":0.1756423970664939,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":90.66826225877988,"scaled_rad":-45.77565032162684},{"average":0.16339386745601597,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":82.02393261817342,"scaled_rad":-57.301423175768775},{"average":0.15032316004271118,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":72.79935570080443,"scaled_rad":-69.6008590655941},{"average":0.14611359803787402,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":69.82848141877992,"scaled_rad":-73.56202477496011},{"average":0.14309451340707421,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":67.69777972710938,"scaled_rad":-76.40296036385418},{"average":0.13833906641553684,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":64.34165024132079,"scaled_rad":-80.87779967823894},{"average":0.13205467009126548,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":59.90647351833311,"scaled_rad":-86.79136864222252},{"average":0.11836834904545593,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":50.24743080467214,"scaled_rad":-99.67009226043714},{"average":0.11442949638753228,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":47.46760809421845,"scaled_rad":-103.37652254104208},{"average":0.11472514958690383,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":47.676263646839345,"scaled_rad":-103.09831513754754},{"average":0.11206322043364726,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":45.797622388462834,"scaled_rad":-105.60317014871623},{"average":0.11038238487833428,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":44.61138231934075,"scaled_rad":-107.18482357421234},{"average":0.11017660080109165,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":44.46615138509444,"scaled_rad":-107.37846481987408},{"average":0.11125429074992044,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":45.22672489589978,"scaled_rad":-106.36436680546697},{"average":0.11333064034441233,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":46.692096733558834,"scaled_rad":-104.41053768858822},{"average":0.11740949107039528,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":49.57072227895178,"scaled_rad":-100.57237029473096},{"average":0.1231739776480345,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":53.6389756751258,"scaled_rad":-95.14803243316561},{"average":0.132718525826931,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":60.3749859027087,"scaled_rad":-86.16668546305506},{"average":0.13273320304892394,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":60.385344268092155,"scaled_rad":-86.15287430921046},{"average":0.1624686156603447,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":81.37094146113661,"scaled_rad":-58.17207805181785},{"average":0.16117313256264174,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":80.4566616825419,"scaled_rad":-59.3911177566108},{"average":0.1613101528507882,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":80.5533629663577,"scaled_rad":-59.26218271152307},{"average":0.16594914187631807,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":83.82730290944538,"scaled_rad":-54.89692945407283},{"average":0.17822891890756992,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":92.49368523834819,"scaled_rad":-43.341753015535744},{"average":0.26631384354453047,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":154.65911644884216,"scaled_rad":39.54548859845622},{"average":0.28917777842696435,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":170.79520757900087,"scaled_rad":61.060276772001146},{"average":0.31054101459846745,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":185.8721891865421,"scaled_rad":81.16291891538947},{"average":0.3254119340981739,"rel_min":0.054255280820284,"rel_max":0.3305593290628993,"scaled_dist":196.36725547632915,"scaled_rad":95.15634063510552},{"average":0.3364635488099776,"rel_min":0.054255280820284,"rel_max":0.3364635488099776,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.33481899653657377,"rel_min":0.054255280820284,"rel_max":0.3364635488099776,"scaled_dist":198.86364883779572,"scaled_rad":98.48486511706096},{"average":0.33516872957049193,"rel_min":0.054255280820284,"rel_max":0.3364635488099776,"scaled_dist":199.10530703618886,"scaled_rad":98.80707604825182},{"average":0.33632882679903914,"rel_min":0.054255280820284,"rel_max":0.3364635488099776,"scaled_dist":199.90690991330573,"scaled_rad":99.87587988440765},{"average":0.3369723909453748,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2864253536581876,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":165.13591884608496,"scaled_rad":53.514558461446654},{"average":0.29099285810077186,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":168.28628836531868,"scaled_rad":57.71505115375828},{"average":0.29574141955757677,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":171.56153931729415,"scaled_rad":62.08205242305891},{"average":0.29069365791630336,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":168.0799194053872,"scaled_rad":57.43989254051627},{"average":0.2898169165005578,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":167.4751998113211,"scaled_rad":56.63359974842814},{"average":0.29355085778546497,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":170.05063130973565,"scaled_rad":60.067508412980885},{"average":0.2934838394594408,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":170.0044063976002,"scaled_rad":60.005875196800304},{"average":0.2909608573946882,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":168.264216345399,"scaled_rad":57.68562179386538},{"average":0.28896397137787283,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":166.88689336304853,"scaled_rad":55.84919115073143},{"average":0.2863254382414448,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":165.06700364581206,"scaled_rad":53.42267152774943},{"average":0.2848627967233488,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":164.05816800829962,"scaled_rad":52.07755734439954},{"average":0.28323994268093,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":162.93882812069378,"scaled_rad":50.585104160925084},{"average":0.26543792182291265,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":150.6601440828673,"scaled_rad":34.2135254438231},{"average":0.26592539237979845,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":150.9963697840662,"scaled_rad":34.66182637875494},{"average":0.2683443396826952,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":152.66480337783122,"scaled_rad":36.886404503775},{"average":0.2709336253621072,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":154.45072538043635,"scaled_rad":39.26763384058182},{"average":0.27154706015755703,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":154.87383307653508,"scaled_rad":39.83177743538013},{"average":0.26873130083351876,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":152.93170418329433,"scaled_rad":37.24227224439247},{"average":0.26287297897619527,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":148.8910121937907,"scaled_rad":31.85468292505425},{"average":0.25637624151950494,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":144.40998236332135,"scaled_rad":25.879976484428482},{"average":0.2568145640570197,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":144.71230893555307,"scaled_rad":26.283078580737453},{"average":0.26975136819434176,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":153.635280755906,"scaled_rad":38.18037434120802},{"average":0.29108153600895476,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":168.3474526580918,"scaled_rad":57.79660354412246},{"average":0.29548734129737997,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":171.38629254600235,"scaled_rad":61.84839006133649},{"average":0.30226374770418196,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":176.0602199525952,"scaled_rad":68.08029327012693},{"average":0.3039833173591934,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":177.2462680222676,"scaled_rad":69.6616906963568},{"average":0.29737791118195833,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":172.69028552799648,"scaled_rad":63.58704737066199},{"average":0.28699487126524637,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":165.52873530253262,"scaled_rad":54.038313736710194},{"average":0.2773006553739165,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":158.8422913940868,"scaled_rad":45.12305519211574},{"average":0.26949667694242263,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":153.45961118252131,"scaled_rad":37.94614824336176},{"average":0.26350727146599284,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":149.32850618011432,"scaled_rad":32.43800824015244},{"average":0.262464241011026,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":148.60909114850006,"scaled_rad":31.478788198000103},{"average":0.2661576436683464,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":151.1565617202628,"scaled_rad":34.87541562701708},{"average":0.27055529278085894,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":154.18977600489,"scaled_rad":38.91970133985336},{"average":0.27073547531543785,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":154.31405427806328,"scaled_rad":39.085405704084394},{"average":0.2696124784860062,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":153.53948360689918,"scaled_rad":38.05264480919894},{"average":0.2688121164004257,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":152.98744554093582,"scaled_rad":37.31659405458112},{"average":0.26727920094573937,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":151.9301394814208,"scaled_rad":35.90685264189443},{"average":0.28076151468647786,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":161.22936858814435,"scaled_rad":48.30582478419248},{"average":0.2720089306260948,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":155.1924014904702,"scaled_rad":40.256535320626966},{"average":0.26661774550459916,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":151.47391024589535,"scaled_rad":35.29854699452716},{"average":0.2651556591166651,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":150.4654575013091,"scaled_rad":33.95394333507883},{"average":0.27013370521802765,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":153.89899213717246,"scaled_rad":38.53198951622997},{"average":0.2792077627238467,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":160.15769085141653,"scaled_rad":46.87692113522209},{"average":0.29585951346321854,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":171.64299286494096,"scaled_rad":62.190657153254676},{"average":0.3083245800152085,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":180.2405905715763,"scaled_rad":73.65412076210174},{"average":0.31511932110299723,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":184.9271640567557,"scaled_rad":79.90288540900761},{"average":0.3174562721003637,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":186.53904189564855,"scaled_rad":82.05205586086475},{"average":0.31632027500197646,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":185.75550447873204,"scaled_rad":81.00733930497609},{"average":0.31296663706572586,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":183.4423816639172,"scaled_rad":77.92317555188961},{"average":0.3096623214435395,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":181.16327819529005,"scaled_rad":74.88437092705342},{"average":0.3042342540586872,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":177.41934794792064,"scaled_rad":69.8924639305609},{"average":0.2993516465960339,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":174.05164072002728,"scaled_rad":65.40218762670307},{"average":0.2955661803021636,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":171.44067059877037,"scaled_rad":61.92089413169384},{"average":0.29132741231130055,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":168.5170422486766,"scaled_rad":58.02272299823551},{"average":0.2788019034306265,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":159.877755328084,"scaled_rad":46.503673770778676},{"average":0.28402214521121366,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":163.4783408984589,"scaled_rad":51.304454531278566},{"average":0.29183724582756115,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":168.86869247468107,"scaled_rad":58.49158996624146},{"average":0.297435732207128,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":172.73016673611681,"scaled_rad":63.640222314822466},{"average":0.2999803462996192,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":174.48527716369668,"scaled_rad":65.9803695515956},{"average":0.3002769858492175,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":174.68987996310304,"scaled_rad":66.2531732841374},{"average":0.2981113425402402,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":173.19615910176665,"scaled_rad":64.26154546902225},{"average":0.29288724670717814,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":169.59291525495325,"scaled_rad":59.45722033993772},{"average":0.28768861678002,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":166.00723614502144,"scaled_rad":54.67631486002861},{"average":0.2843806888971828,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":163.7256411723371,"scaled_rad":51.634188229782836},{"average":0.28325890644670493,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":162.95190810133053,"scaled_rad":50.602544135107394},{"average":0.2840099157306032,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":163.46990579271667,"scaled_rad":51.29320772362226},{"average":0.2841309911976385,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":163.55341582881405,"scaled_rad":51.40455443841876},{"average":0.2872365423394323,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":165.6954243983762,"scaled_rad":54.260565864501615},{"average":0.29186213806920963,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":168.885861535016,"scaled_rad":58.514482046688045},{"average":0.3006087703520968,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":174.9187234810381,"scaled_rad":66.5582979747175},{"average":0.3110641634283024,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":182.13017824215248,"scaled_rad":76.17357098953667},{"average":0.3137905535674958,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":184.01066604463279,"scaled_rad":78.68088805951041},{"average":0.3132813170957368,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":183.65942762135847,"scaled_rad":78.21257016181136},{"average":0.31280261471635173,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":183.32924964260513,"scaled_rad":77.77233285680688},{"average":0.312862297014127,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":183.37041463633696,"scaled_rad":77.82721951511596},{"average":0.31378842591254413,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":184.0091985256864,"scaled_rad":78.6789313675819},{"average":0.31586468572596044,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":185.44126842565475,"scaled_rad":80.58835790087304},{"average":0.3170690627786208,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":186.27196991791624,"scaled_rad":81.69595989055503},{"average":0.3119789558633607,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":182.76114297137403,"scaled_rad":77.0148572951654},{"average":0.307515891555005,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":179.6828095102535,"scaled_rad":72.91041268033803},{"average":0.3008963027446971,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":175.11704475183862,"scaled_rad":66.82272633578484},{"average":0.29490443477108935,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":170.98424127794723,"scaled_rad":61.312321703929655},{"average":0.29130852194919304,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":168.50401289714804,"scaled_rad":58.005350529530745},{"average":0.28967735497061925,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":167.3789392831699,"scaled_rad":56.505252377559884},{"average":0.2883928358032914,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":166.49296093711894,"scaled_rad":55.32394791615863},{"average":0.2860659471103795,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":164.88802342584822,"scaled_rad":53.18403123446433},{"average":0.28292548312281096,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":162.7219342305218,"scaled_rad":50.29591230736244},{"average":0.27791154023452264,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":159.26364030984746,"scaled_rad":45.68485374646329},{"average":0.26850207530378123,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":152.77359922007142,"scaled_rad":37.03146562676193},{"average":0.2613173254484251,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":147.81802288026466,"scaled_rad":30.42403050701958},{"average":0.25308409937344356,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":142.13927537216003,"scaled_rad":22.852367162880057},{"average":0.2440626969073935,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":135.91689470301196,"scaled_rad":14.555859604015978},{"average":0.18499636190051358,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":95.17675229972635,"scaled_rad":-39.76433026703151},{"average":0.1890117477853207,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":97.94630610278746,"scaled_rad":-36.071591862950044},{"average":0.19460759415462522,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":101.80595945567994,"scaled_rad":-30.925387392426728},{"average":0.2008053506023213,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":106.0807714993019,"scaled_rad":-25.225638000930786},{"average":0.20687326790818047,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":110.26602889005198,"scaled_rad":-19.645294813264},{"average":0.2129087923982433,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":114.42894380893154,"scaled_rad":-14.094741588091267},{"average":0.21769456810107832,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":117.72986274390476,"scaled_rad":-9.693516341460281},{"average":0.1805357914913644,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":92.10013896918107,"scaled_rad":-43.86648137442522},{"average":0.18485253677684754,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":95.07755102003561,"scaled_rad":-39.8965986399525},{"average":0.18850799106103158,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":97.59884725534481,"scaled_rad":-36.5348703262069},{"average":0.19020370960426636,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":98.76844436881444,"scaled_rad":-34.9754075082474},{"average":0.19222686160399205,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":100.16388392948325,"scaled_rad":-33.114821427355665},{"average":0.19281702912592602,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":100.5709433632975,"scaled_rad":-32.572075515603316},{"average":0.19463988547898425,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":101.82823192531302,"scaled_rad":-30.895690766249288},{"average":0.1968134923943389,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":103.32744556790655,"scaled_rad":-28.896739242791256},{"average":0.19849411407745507,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":104.48662984247221,"scaled_rad":-27.351160210037023},{"average":0.20192487020675925,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":106.8529438052823,"scaled_rad":-24.196074926290265},{"average":0.20650820802294798,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":110.01423416284625,"scaled_rad":-19.98102111620497},{"average":0.2088349467023162,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":111.61906820446494,"scaled_rad":-17.84124239404673},{"average":0.21105222129275955,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":113.14840098855129,"scaled_rad":-15.802132015264931},{"average":0.21417592080513106,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":115.30292713181491,"scaled_rad":-12.929430490913433},{"average":0.21762475110236246,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":117.68170748813135,"scaled_rad":-9.75772334915817},{"average":0.22340324709056344,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":121.66734074959412,"scaled_rad":-4.443545667207815},{"average":0.2276218939733116,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":124.57709085906541,"scaled_rad":-0.5638788545794284},{"average":0.23183620020992202,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":127.48384707122187,"scaled_rad":3.311796094962517},{"average":0.23287656357063463,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":128.20142251350478,"scaled_rad":4.268563351339736},{"average":0.23793148728883112,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":131.6879823634275,"scaled_rad":8.917309817903345},{"average":0.24594761928066156,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":137.2169923965143,"scaled_rad":16.28932319535241},{"average":0.25330528048983586,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":142.29183181869917,"scaled_rad":23.055775758265582},{"average":0.25541720598722617,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":143.74850160359082,"scaled_rad":24.998002138121137},{"average":0.25093206475568425,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":140.65494090695066,"scaled_rad":20.873254542600876},{"average":0.24604411627271747,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":137.2835497882568,"scaled_rad":16.378066384342418},{"average":0.24503030112579666,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":136.5842855889231,"scaled_rad":15.445714118564155},{"average":0.24067056524340488,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":133.5772214013674,"scaled_rad":11.436295201823242},{"average":0.23323983790154568,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":128.4519856806803,"scaled_rad":4.60264757424045},{"average":0.22619314127717563,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":123.5916295418383,"scaled_rad":-1.8778272775489029},{"average":0.22188440407958793,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":120.61974095271879,"scaled_rad":-5.840345396374943},{"average":0.22149509283573354,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":120.35121920489102,"scaled_rad":-6.198374393478616},{"average":0.21978476893943655,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":119.17154826233524,"scaled_rad":-7.771268983553},{"average":0.21587839958891136,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":116.47718702252428,"scaled_rad":-11.363750636634279},{"average":0.1946574033145932,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":101.84031459672343,"scaled_rad":-30.879580537702083},{"average":0.183910682276666,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":94.42792062640949,"scaled_rad":-40.76277249812067},{"average":0.17460930289079887,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":88.01242996352896,"scaled_rad":-49.316760048628055},{"average":0.16890536748799448,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":84.07822377751239,"scaled_rad":-54.56236829665012},{"average":0.16574579095036243,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":81.89895197975794,"scaled_rad":-57.468064026989396},{"average":0.1657951982794415,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":81.93302996381118,"scaled_rad":-57.42262671491842},{"average":0.16783941435170305,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":83.34299816104773,"scaled_rad":-55.542669118603015},{"average":0.17099655794336585,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":85.52059186983263,"scaled_rad":-52.63921084022314},{"average":0.1715310775545612,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":85.88926896948527,"scaled_rad":-52.14764137401963},{"average":0.16767055340663056,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":83.22652878897978,"scaled_rad":-55.69796161469361},{"average":0.16849714856908082,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":83.79666073680028,"scaled_rad":-54.93778568426629},{"average":0.17172834375898344,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":86.02533045456947,"scaled_rad":-51.966226060574016},{"average":0.17369030530106278,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":87.37856479024938,"scaled_rad":-50.161913613000806},{"average":0.17292109347681534,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":86.8480121623526,"scaled_rad":-50.869317116863186},{"average":0.17268024614093977,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":86.68189122798483,"scaled_rad":-51.09081169602021},{"average":0.17573309453325472,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":88.78754884537494,"scaled_rad":-48.283268206166724},{"average":0.18219715176279425,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":93.24603796618723,"scaled_rad":-42.33861604508367},{"average":0.18898040602127272,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":97.92468857851857,"scaled_rad":-36.10041522864188},{"average":0.19220301503000456,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":100.14743610315429,"scaled_rad":-33.136751862460926},{"average":0.19193456408401327,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":99.96227598162808,"scaled_rad":-33.38363202449588},{"average":0.189980828467171,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":98.61471535780989,"scaled_rad":-35.18037952292015},{"average":0.1876458555599081,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":97.00420187769258,"scaled_rad":-37.3277308297432},{"average":0.18532538689222758,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":95.40369248511465,"scaled_rad":-39.461743353180466},{"average":0.1838289480166996,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":94.37154561364004,"scaled_rad":-40.83793918181327},{"average":0.18093174447171245,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":92.37324175780859,"scaled_rad":-43.502344322921886},{"average":0.17462992862247947,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":88.02665626089008,"scaled_rad":-49.29779165214654},{"average":0.16643724909140264,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":82.37587513960202,"scaled_rad":-56.83216648053063},{"average":0.16212006828106507,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":79.39816269183632,"scaled_rad":-60.80244974421824},{"average":0.16219493509509106,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":79.44980098400976,"scaled_rad":-60.733598687986984},{"average":0.16309732153099843,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":80.07220885640234,"scaled_rad":-59.90372152479688},{"average":0.16115418123229155,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":78.73195619861241,"scaled_rad":-61.690725068516784},{"average":0.1584548833148836,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":76.87015486065428,"scaled_rad":-64.17312685246095},{"average":0.15373651045077072,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":73.61572604983729,"scaled_rad":-68.51236526688359},{"average":0.1488402563278425,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":70.23860623721416,"scaled_rad":-73.01519168371445},{"average":0.14505371084161045,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":67.62689175877827,"scaled_rad":-76.49747765496228},{"average":0.1426435555754929,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":65.96452234404786,"scaled_rad":-78.71397020793617},{"average":0.13988791968886607,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":64.06386271416386,"scaled_rad":-81.24818304778152},{"average":0.1353670941212317,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":60.94568926757392,"scaled_rad":-85.40574764323476},{"average":0.13075765423220825,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":57.76639538627372,"scaled_rad":-89.64480615163502},{"average":0.12819525594158432,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":55.99901856762067,"scaled_rad":-92.00130857650576},{"average":0.1282494494731435,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":56.03639776497228,"scaled_rad":-91.95146964670361},{"average":0.12985518586566328,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":57.14393100341976,"scaled_rad":-90.47475866210698},{"average":0.13187877127621786,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":58.539669502881466,"scaled_rad":-88.61377399615805},{"average":0.1333622911559104,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":59.562905685551996,"scaled_rad":-87.24945908593065},{"average":0.13294329112370462,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":59.27390652931425,"scaled_rad":-87.63479129424765},{"average":0.13207514369482729,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":58.675114512247525,"scaled_rad":-88.43318065033662},{"average":0.13128198325052817,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":58.128043673238544,"scaled_rad":-89.16260843568193},{"average":0.1313067848811347,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":58.1451502359299,"scaled_rad":-89.1397996854268},{"average":0.13287880803926358,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":59.22943026305489,"scaled_rad":-87.69409298259347},{"average":0.13652240479215913,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":61.7425479392375,"scaled_rad":-84.34326941434999},{"average":0.14106941981262036,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":64.87878517863777,"scaled_rad":-80.16161976181628},{"average":0.14492407716184802,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":67.53747882037321,"scaled_rad":-76.61669490616904},{"average":0.14667047723060533,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":68.74203277629401,"scaled_rad":-75.0106229649413},{"average":0.14586498628452393,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":68.18645715366412,"scaled_rad":-75.75139046178117},{"average":0.1445342223145345,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":67.26858212999426,"scaled_rad":-76.97522382667431},{"average":0.14428002500213316,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":67.09325324418212,"scaled_rad":-77.20899567442383},{"average":0.14426221114181312,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":67.08096639404818,"scaled_rad":-77.22537814126909},{"average":0.14521832242407787,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":67.74043019501562,"scaled_rad":-76.34609307331249},{"average":0.14818836341954458,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":69.78897261913617,"scaled_rad":-73.61470317448509},{"average":0.1529752972820105,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":73.09069037780965,"scaled_rad":-69.21241282958712},{"average":0.15856102915434897,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":76.94336740405707,"scaled_rad":-64.07551012792389},{"average":0.16403613915110477,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":80.71974460632471,"scaled_rad":-59.04034052490039},{"average":0.16811943406328245,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":83.53613766977368,"scaled_rad":-55.28514977363507},{"average":0.17020598955625557,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":84.97530886443442,"scaled_rad":-53.36625484742075},{"average":0.1711425753418471,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":85.6213052390774,"scaled_rad":-52.504926347896784},{"average":0.21719659030163063,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":117.38638982551885,"scaled_rad":-10.151480232641518},{"average":0.276301147814363,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":158.15289564429753,"scaled_rad":44.20386085906341},{"average":0.2871827174868704,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":165.6582994919815,"scaled_rad":54.21106598930871},{"average":0.29486188045202544,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":170.95489005752128,"scaled_rad":61.27318674336175},{"average":0.29701620060784506,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":172.44080093924669,"scaled_rad":63.25440125232893},{"average":0.2895421231211161,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":167.28566508890043,"scaled_rad":56.38088678520057},{"average":0.2759518103801769,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":157.91194524820673,"scaled_rad":43.882593664275674},{"average":0.26517816676091344,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":150.48098182039428,"scaled_rad":33.97464242719241},{"average":0.2602589227345331,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":147.0880050574395,"scaled_rad":29.450673409919347},{"average":0.25932613853489417,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":146.44463077121708,"scaled_rad":28.592841028289456},{"average":0.25864074643121826,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":145.97189157210153,"scaled_rad":27.962522096135388},{"average":0.2568789828603451,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":144.75674086485122,"scaled_rad":26.342321153134975},{"average":0.257096231878664,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":144.90658520413947,"scaled_rad":26.54211360551932},{"average":0.25743406044407735,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":145.13959752598467,"scaled_rad":26.85279670131291},{"average":0.2583089809478017,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":145.74306117256324,"scaled_rad":27.65741489675102},{"average":0.25611577117753664,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":144.2303267469303,"scaled_rad":25.640435662573765},{"average":0.2485188883440305,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":138.9904877011851,"scaled_rad":18.653983601580137},{"average":0.23791472932615135,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":131.6764238032784,"scaled_rad":8.901898404371224},{"average":0.22962092434570022,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":125.95589287937223,"scaled_rad":1.2745238391630096},{"average":0.22556881277585727,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":123.16100807112784,"scaled_rad":-2.4519892384961963},{"average":0.22613512566395566,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":123.55161411945058,"scaled_rad":-1.9311811740658982},{"average":0.23008192151583887,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":126.27385894848372,"scaled_rad":1.6984785979783226},{"average":0.23807196737333777,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":131.78487645118423,"scaled_rad":9.046501934912357},{"average":0.24782346144410766,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":138.51082714783212,"scaled_rad":18.014436197109518},{"average":0.25003047982007004,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":140.0330858576861,"scaled_rad":20.044114476914814},{"average":0.2506117239775379,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":140.43399053111065,"scaled_rad":20.57865404148089},{"average":0.25218581203420604,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":141.51969479186258,"scaled_rad":22.026259722483474},{"average":0.2565807688309198,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":144.55105209096624,"scaled_rad":26.06806945462165},{"average":0.2645204879394428,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":150.0273574531601,"scaled_rad":33.36980993754685},{"average":0.22385901266379785,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":121.98169840110444,"scaled_rad":-4.0244021318607395},{"average":0.2329296127363777,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":128.23801240123856,"scaled_rad":4.317349868318132},{"average":0.23162713449223615,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":127.33964704409686,"scaled_rad":3.1195293921291807},{"average":0.23352577695688626,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":128.64920797036325,"scaled_rad":4.865610627151028},{"average":0.24413043350879443,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":135.96361503510414,"scaled_rad":14.618153380138892},{"average":0.26452123791326687,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":150.02787473665816,"scaled_rad":33.3704996488776},{"average":0.28220554950145577,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":162.2253705237757,"scaled_rad":49.63382736503428},{"average":0.28895998836670117,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":166.88414613923132,"scaled_rad":55.84552818564177},{"average":0.28828295479460303,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":166.41717211526537,"scaled_rad":55.222896153687174},{"average":0.2858011702499152,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":164.70539745118506,"scaled_rad":52.94052993491346},{"average":0.2832258036029135,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":162.9290758980144,"scaled_rad":50.57210119735254},{"average":0.2818492898260031,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":161.97964561281248,"scaled_rad":49.306194150416644},{"average":0.2828748078738347,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":162.6869817172268,"scaled_rad":50.2493089563024},{"average":0.28586634577437253,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":164.7503513178384,"scaled_rad":53.00046842378458},{"average":0.28907878008645405,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":166.96608099397557,"scaled_rad":55.95477465863411},{"average":0.29231158064779433,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":169.19585799326092,"scaled_rad":58.92781065768125},{"average":0.2947843713168242,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":170.90142926288615,"scaled_rad":61.201905683848224},{"average":0.3007273879374784,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":175.0005382291415,"scaled_rad":66.66738430552203},{"average":0.3073139500620587,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":179.54352331315312,"scaled_rad":72.72469775087086},{"average":0.31234057546085253,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":183.0105648103271,"scaled_rad":77.34741974710283},{"average":0.3110842460700522,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":182.14402995116112,"scaled_rad":76.1920399348815},{"average":0.30597241751394155,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":178.6182208199043,"scaled_rad":71.49096109320578},{"average":0.3023776126540108,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":176.1387566396984,"scaled_rad":68.18500885293125},{"average":0.3026027402143282,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":176.29403508833022,"scaled_rad":68.39204678444034},{"average":0.30362965829745164,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":177.00233684665136,"scaled_rad":69.33644912886851},{"average":0.29907131022932015,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":173.8582828030445,"scaled_rad":65.144377070726},{"average":0.2864013982250929,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":165.1193959357758,"scaled_rad":53.49252791436777},{"average":0.27128722877257894,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":154.69461817140143,"scaled_rad":39.59282422853525},{"average":0.26076788679219404,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":147.43905558706598,"scaled_rad":29.91874078275464},{"average":0.2536801370663213,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":142.5503836706982,"scaled_rad":23.400511560930966},{"average":0.24854765673139242,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":139.01033027644732,"scaled_rad":18.680440368596436},{"average":0.24714882414949976,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":138.04550592128757,"scaled_rad":17.394007895050123},{"average":0.2476658316710393,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":138.40210431271709,"scaled_rad":17.869472416956143},{"average":0.24877573871543288,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":139.16764649571755,"scaled_rad":18.890195327623445},{"average":0.25031880376261184,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":140.23195308850484,"scaled_rad":20.309270784673117},{"average":0.25329281308626783,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":142.2832326090698,"scaled_rad":23.044310145426465},{"average":0.25457408199664566,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":143.1669691378322,"scaled_rad":24.222625517109606},{"average":0.2557830398858679,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":144.00083019524763,"scaled_rad":25.334440260330183},{"average":0.2571151575786524,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":144.9196389294556,"scaled_rad":26.559518572607487},{"average":0.26081740766266553,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":147.47321188463732,"scaled_rad":29.964282512849763},{"average":0.2687531629429655,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":152.94678325417271,"scaled_rad":37.262377672230315},{"average":0.28108903240831773,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":161.45526915613797,"scaled_rad":48.60702554151732},{"average":0.2988833773692595,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":173.7286588559986,"scaled_rad":64.97154514133149},{"average":0.31102666233353654,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":182.10431240942623,"scaled_rad":76.13908321256835},{"average":0.3194899683954316,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":187.94175423011876,"scaled_rad":83.92233897349169},{"average":0.32204206817676356,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":189.7020278023109,"scaled_rad":86.26937040308124},{"average":0.3212165597528541,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":189.13264541653623,"scaled_rad":85.51019388871501},{"average":0.31669368535531156,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":186.01305881942307,"scaled_rad":81.35074509256413},{"average":0.30935170381045773,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":180.94903421683347,"scaled_rad":74.59871228911132},{"average":0.3057771057350122,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":178.48350737127586,"scaled_rad":71.31134316170119},{"average":0.3059830542697172,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":178.62555736694011,"scaled_rad":71.50074315592016},{"average":0.30693998471191475,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":179.28558617151424,"scaled_rad":72.38078156201902},{"average":0.3092614553278117,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":180.88678664324942,"scaled_rad":74.51571552433259},{"average":0.3084717524557998,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":180.34210061425674,"scaled_rad":73.78946748567569},{"average":0.3053271084305443,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":178.1731282989501,"scaled_rad":70.89750439860015},{"average":0.3007546316274472,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":175.01932916663225,"scaled_rad":66.69243888884301},{"average":0.29707332475371256,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":172.48020148504045,"scaled_rad":63.30693531338727},{"average":0.29545760862305054,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":171.3657848678796,"scaled_rad":61.82104649050615},{"average":0.2950501334823453,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":171.0847348373301,"scaled_rad":61.446313116440166},{"average":0.29616045973446103,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":171.85056616273792,"scaled_rad":62.467421550317255},{"average":0.296455045618971,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":172.05375247662613,"scaled_rad":62.738336635501554},{"average":0.2949302197989604,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":171.0020261245475,"scaled_rad":61.336034832730036},{"average":0.2913361398326589,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":168.52306192914136,"scaled_rad":58.03074923885521},{"average":0.2855577424159002,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":164.53749665589214,"scaled_rad":52.71666220785622},{"average":0.280196561694043,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":160.83970050800568,"scaled_rad":47.7862673440076},{"average":0.2763951778852388,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":158.21775151316473,"scaled_rad":44.29033535088635},{"average":0.2686169710161854,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":152.85284686061536,"scaled_rad":37.13712914748717},{"average":0.25697085902107597,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":144.8201111056357,"scaled_rad":26.42681480751429},{"average":0.246126326566955,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":137.3402531387163,"scaled_rad":16.45367085162175},{"average":0.23747928049399417,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":131.37607932737075,"scaled_rad":8.501439103161005},{"average":0.23018003708407023,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":126.34153272951752,"scaled_rad":1.788710306023404},{"average":0.22274961467736806,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":121.21650733340398,"scaled_rad":-5.044656888794691},{"average":0.21593641904443311,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":116.51720509508357,"scaled_rad":-11.310393206555204},{"average":0.2096530919839699,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":112.18337197034555,"scaled_rad":-17.088837372872604},{"average":0.12983177102207055,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":57.1277809568288,"scaled_rad":-90.49629205756159},{"average":0.1253332302694244,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":54.02497813609443,"scaled_rad":-94.63336248520741},{"average":0.12489417186582774,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":53.722144010973864,"scaled_rad":-95.0371413187015},{"average":0.12751720691272847,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":55.53134414717831,"scaled_rad":-92.6248744704289},{"average":0.13087745843249646,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":57.84902858468843,"scaled_rad":-89.53462855374875},{"average":0.13225693524191617,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":58.80050257831345,"scaled_rad":-88.26599656224872},{"average":0.13449224166765575,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":60.342272557591876,"scaled_rad":-86.21030325654415},{"average":0.1383907344378531,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":63.03120104109301,"scaled_rad":-82.62506527854265},{"average":0.14302109256434292,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":66.22492297135047,"scaled_rad":-78.3667693715327},{"average":0.1478767683238526,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":69.57405445011184,"scaled_rad":-73.9012607331842},{"average":0.15206260858455897,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":72.46117667089497,"scaled_rad":-70.05176443880669},{"average":0.1561700169146599,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":75.29420161238258,"scaled_rad":-66.27439785015655},{"average":0.15834705828552603,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":76.7957841205338,"scaled_rad":-64.27228783928827},{"average":0.16160260868284074,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":79.04125248711225,"scaled_rad":-61.27833001718366},{"average":0.1656417474695938,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":81.82718950757892,"scaled_rad":-57.563747323228085},{"average":0.16977644885714033,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":84.67903943705377,"scaled_rad":-53.76128075059495},{"average":0.17144500087684508,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":85.82989883745748,"scaled_rad":-52.22680155005669},{"average":0.1727309410499756,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":86.71685730151896,"scaled_rad":-51.04419026464137},{"average":0.17589329247438254,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":88.89804303692247,"scaled_rad":-48.1359426174367},{"average":0.17951234361704102,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":91.39423073672654,"scaled_rad":-44.807692351031264},{"average":0.1841250517714171,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":94.57577885634815,"scaled_rad":-40.565628191535794},{"average":0.19199142966682625,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":100.00149818732912,"scaled_rad":-33.33133575022782},{"average":0.2026221196421168,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":107.33386142584853,"scaled_rad":-23.554851432201957},{"average":0.21135751432987185,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":113.35897240465893,"scaled_rad":-15.5213701271214},{"average":0.2183234966216419,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":118.16365701074498,"scaled_rad":-9.115123985673335},{"average":0.22716903129853686,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":124.2647354393952,"scaled_rad":-0.9803527474730629},{"average":0.23139362617047113,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":127.17858808758719,"scaled_rad":2.9047841167829347},{"average":0.2333750237400333,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":128.54522813952343,"scaled_rad":4.726970852697946},{"average":0.23449934964338873,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":129.3207155200265,"scaled_rad":5.760954026702052},{"average":0.23413566378860862,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":129.06986851026915,"scaled_rad":5.426491347025575},{"average":0.2331781817472187,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":128.40945924820355,"scaled_rad":4.545945664271414},{"average":0.23155811160925238,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":127.29203951805827,"scaled_rad":3.0560526907443943},{"average":0.23391576451769,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":128.91819619793492,"scaled_rad":5.224261597246567},{"average":0.22172213545318392,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":120.50781853622698,"scaled_rad":-5.989575285030668},{"average":0.2178359249944465,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":117.82736159777534,"scaled_rad":-9.563517869632847},{"average":0.21202227654236333,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":113.81748243745632,"scaled_rad":-14.910023416724897},{"average":0.2031232387241651,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":107.67950099805617,"scaled_rad":-23.09399866925841},{"average":0.1934902693309328,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":101.03530096768245,"scaled_rad":-31.952932043090044},{"average":0.18593579161746357,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":95.8247102345121,"scaled_rad":-38.90038635398385},{"average":0.17871881279887947,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":90.84690443775214,"scaled_rad":-45.53746074966379},{"average":0.1734739342585997,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":87.2293260219922,"scaled_rad":-50.36089863734372},{"average":0.1614226613663709,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":78.91713645219632,"scaled_rad":-61.443818063738235},{"average":0.16153715461145002,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":78.99610649677744,"scaled_rad":-61.338524670963395},{"average":0.16279942454959126,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":79.86673876176005,"scaled_rad":-60.1776816509866},{"average":0.1653626685679992,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":81.63469890880735,"scaled_rad":-57.82040145492351},{"average":0.16762166129779288,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":83.19280617056758,"scaled_rad":-55.742925105909876},{"average":0.16611538567533893,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":82.15387454648385,"scaled_rad":-57.12816727135487},{"average":0.15862432865476603,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":76.9870273105122,"scaled_rad":-64.01729691931705},{"average":0.1480312984489724,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":69.68063934829868,"scaled_rad":-73.75914753560176},{"average":0.13982312900970462,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":64.01917428893591,"scaled_rad":-81.30776761475211},{"average":0.13959251302288594,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":63.86011027823722,"scaled_rad":-81.51985296235037},{"average":0.14415195308673937,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":67.00491750995386,"scaled_rad":-77.32677665339483},{"average":0.1501853338817994,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":71.16635384649588,"scaled_rad":-71.77819487133881},{"average":0.1562934948313353,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":75.3793687030516,"scaled_rad":-66.16084172926452},{"average":0.16299058035603528,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":79.99858568902982,"scaled_rad":-60.00188574796023},{"average":0.16973232192836324,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":84.64860353203294,"scaled_rad":-53.80186195728939},{"average":0.17611702470122065,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":89.05235907465406,"scaled_rad":-47.930187900461235},{"average":0.18202564186959838,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":93.12774152081683,"scaled_rad":-42.496344638910884},{"average":0.18382060658675414,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":94.36579223409167,"scaled_rad":-40.84561035454442},{"average":0.18206330840603807,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":93.1537214645227,"scaled_rad":-42.46170471396971},{"average":0.17880533708304422,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":90.90658329979435,"scaled_rad":-45.45788893360752},{"average":0.17968769745704424,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":91.51517848829877,"scaled_rad":-44.646428682268294},{"average":0.18319466442136934,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":93.93405776214539,"scaled_rad":-41.42125631713948},{"average":0.1859593413873163,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":95.84095334452142,"scaled_rad":-38.878728873971426},{"average":0.18711544409754877,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":96.63835831373459,"scaled_rad":-37.81552224835387},{"average":0.1884378426204717,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":97.5504633923974,"scaled_rad":-36.59938214347011},{"average":0.19065921848033654,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":99.08262496720265,"scaled_rad":-34.556500043729784},{"average":0.19114694078336952,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":99.41902430663191,"scaled_rad":-34.10796759115743},{"average":0.18825366784254888,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":97.42343152765085,"scaled_rad":-36.76875796313219},{"average":0.1831615625955566,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":93.9112262609652,"scaled_rad":-41.45169831871307},{"average":0.17558045958435503,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":88.6822711173228,"scaled_rad":-48.42363851023626},{"average":0.16711977607680156,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":82.84663816520701,"scaled_rad":-56.20448244639064},{"average":0.1598196634008524,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":77.81149200380123,"scaled_rad":-62.918010661598345},{"average":0.15650599560891557,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":75.52593801259857,"scaled_rad":-65.9654159832019},{"average":0.15486003818525249,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":74.39066290501032,"scaled_rad":-67.4791161266529},{"average":0.1548219660512342,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":74.36440320629494,"scaled_rad":-67.5141290582734},{"average":0.15598570573274176,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":75.16707566497128,"scaled_rad":-66.44389911337161},{"average":0.15741926002593265,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":76.15584881368002,"scaled_rad":-65.12553491509328},{"average":0.15957490524941828,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":77.64267364148657,"scaled_rad":-63.143101811351244},{"average":0.16203550923201174,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":79.33983932202646,"scaled_rad":-60.880214237298034},{"average":0.16165567118270163,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":79.07785157185917,"scaled_rad":-61.22953123752109},{"average":0.16057299806931588,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":78.33109359524853,"scaled_rad":-62.225208539668614},{"average":0.159394476430241,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":77.51822549710646,"scaled_rad":-63.3090326705247},{"average":0.1589087475682797,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":77.18320110455892,"scaled_rad":-63.755731860588085},{"average":0.15881294699490905,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":77.11712405743926,"scaled_rad":-63.84383459008099},{"average":0.15946002039042664,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":77.5634334869255,"scaled_rad":-63.24875535076599},{"average":0.16226940568284998,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":79.50116598489903,"scaled_rad":-60.665112020134615},{"average":0.16647362392970624,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":82.40096415337293,"scaled_rad":-56.798714462169414},{"average":0.16980754186451766,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":84.70048538504008,"scaled_rad":-53.732686153279886},{"average":0.17066225173651842,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":85.29000904339384,"scaled_rad":-52.9466546088082},{"average":0.17032759682115733,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":85.05918570034773,"scaled_rad":-53.25441906620303},{"average":0.16878288929773863,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":83.99374623354866,"scaled_rad":-54.67500502193509},{"average":0.16610809241438731,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":82.1488441261993,"scaled_rad":-57.13487449840093},{"average":0.16684056062263564,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":82.65405338129257,"scaled_rad":-56.461262158276554},{"average":0.16680237488682806,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":82.62771532740123,"scaled_rad":-56.49637956346501},{"average":0.16835902358265478,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":83.7013910435682,"scaled_rad":-55.064811941909056},{"average":0.17323750728079168,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":87.06625396507933,"scaled_rad":-50.5783280465609},{"average":0.17540057520343938,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":88.55819849128672,"scaled_rad":-48.58906867828438},{"average":0.1787455662442482,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":90.86535723618586,"scaled_rad":-45.51285701841883},{"average":0.18453654996519886,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":94.85960372903426,"scaled_rad":-40.1871950279543},{"average":0.19029620611286108,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":98.83224248548304,"scaled_rad":-34.89034335268927},{"average":0.1891345600266034,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":98.03101405357094,"scaled_rad":-35.95864792857208},{"average":0.18788331981352197,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":97.16798938045186,"scaled_rad":-37.10934749273085},{"average":0.18562157193080006,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":95.60798179217525,"scaled_rad":-39.18935761043298},{"average":0.18457888933313493,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":94.88880669005732,"scaled_rad":-40.14825774659022},{"average":0.1839029024384788,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":94.42255459657906,"scaled_rad":-40.76992720456124},{"average":0.18363476601091208,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":94.2376114095453,"scaled_rad":-41.01651812060625},{"average":0.1860820271230626,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":95.92557403995774,"scaled_rad":-38.76590128005634},{"average":0.1850292219790645,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":95.19941705926139,"scaled_rad":-39.73411058765146},{"average":0.1860944656700771,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":95.93415334620047,"scaled_rad":-38.754462205066005},{"average":0.18919892093531948,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":98.07540605090738,"scaled_rad":-35.89945859879016},{"average":0.19482359595250676,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":101.95494354287672,"scaled_rad":-30.726741942831012},{"average":0.19822069222141672,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":104.29804110829943,"scaled_rad":-27.602611855600742},{"average":0.1966543876799582,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":103.21770541355045,"scaled_rad":-29.043059448599394},{"average":0.1913042696959297,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":99.52753962760298,"scaled_rad":-33.96328049652935},{"average":0.18623379080922345,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":96.03025082725325,"scaled_rad":-38.626332230328984},{"average":0.18482170327391964,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":95.05628406145543,"scaled_rad":-39.924954584726095},{"average":0.1885628767311573,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":97.6367038451698,"scaled_rad":-36.48439487310691},{"average":0.1913190087680438,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":99.53770568745333,"scaled_rad":-33.949725750062214},{"average":0.19293602808302224,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":100.65302115697435,"scaled_rad":-32.46263845736752},{"average":0.19494717054324656,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":102.04017731307054,"scaled_rad":-30.613096915905942},{"average":0.19358208866838317,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":101.09863201543862,"scaled_rad":-31.868490646081796},{"average":0.18889158879412418,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":97.86342819252248,"scaled_rad":-36.18209574330335},{"average":0.18437881570230846,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":94.75080882358968,"scaled_rad":-40.33225490188042},{"average":0.1808164546728273,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":92.29372230186672,"scaled_rad":-43.608370264177694},{"average":0.17727103802063043,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":89.84832291704528,"scaled_rad":-46.868902777272936},{"average":0.17393016393355643,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":87.54400378089119,"scaled_rad":-49.94132829214507},{"average":0.16941996785295516,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":84.43316186782795,"scaled_rad":-54.089117509562726},{"average":0.1654378356523616,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":81.6865443080624,"scaled_rad":-57.7512742559168},{"average":0.1649199336673763,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":81.32932897352731,"scaled_rad":-58.22756136863025},{"average":0.1674741963798303,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":83.09109439588941,"scaled_rad":-55.87854080548077},{"average":0.17050473957503984,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":85.18136732915613,"scaled_rad":-53.091510227791815},{"average":0.17197197289215496,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":86.19337009301735,"scaled_rad":-51.742173209310195},{"average":0.17185666778513045,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":86.11384007850981,"scaled_rad":-51.84821322865358},{"average":0.16675859268192242,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":82.59751719063894,"scaled_rad":-56.53664374581474},{"average":0.16300303940800312,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":80.00717913826483,"scaled_rad":-59.99042781564688},{"average":0.16239455621313872,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":79.58748673639337,"scaled_rad":-60.550017684808836},{"average":0.1645702949469729,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":81.08817076966585,"scaled_rad":-58.54910564044552},{"average":0.1689953473818904,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":84.14028609592651,"scaled_rad":-54.479618538764626},{"average":0.17456775376952938,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":87.98377206360925,"scaled_rad":-49.35497058185432},{"average":0.18079343421607488,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":92.27784427784215,"scaled_rad":-43.629540962877115},{"average":0.18677499038039821,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":96.40353533179697,"scaled_rad":-38.12861955760401},{"average":0.19175734805126846,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":99.84004380979401,"scaled_rad":-33.54660825360796},{"average":0.19583011601923433,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":102.64917606713051,"scaled_rad":-29.80109857715931},{"average":0.20069399053716952,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":106.00396251984188,"scaled_rad":-25.328049973544154},{"average":0.2044898810129391,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":108.62212256840618,"scaled_rad":-21.837169908791736},{"average":0.21046867303351183,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":112.74590709455613,"scaled_rad":-16.338790540591816},{"average":0.2073898737427281,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":110.62235022374209,"scaled_rad":-19.170199701677177},{"average":0.20398642316674465,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":108.27486986776672,"scaled_rad":-22.30017350964434},{"average":0.20085182344842922,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":106.11282546655926,"scaled_rad":-25.18289937792096},{"average":0.19628950727134464,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":102.9660344777229,"scaled_rad":-29.37862069636944},{"average":0.19141384368238085,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":99.60311668534992,"scaled_rad":-33.8625110862001},{"average":0.18346144187269744,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":94.118063615155,"scaled_rad":-41.17591517979332},{"average":0.1731775226116252,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":87.024880415094,"scaled_rad":-50.63349277987464},{"average":0.16293954841224167,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":79.96338715069109,"scaled_rad":-60.04881713241187},{"average":0.1513741987804361,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":71.98635605694429,"scaled_rad":-70.68485859074094},{"average":0.1388656374029055,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":63.358758429268924,"scaled_rad":-82.18832209430809},{"average":0.12639688818454742,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":54.758620657260614,"scaled_rad":-93.65517245698584},{"average":0.1184265019181447,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":49.26116307055548,"scaled_rad":-100.98511590592602},{"average":0.11323509230200264,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":45.680464064754986,"scaled_rad":-105.75938124699334},{"average":0.10815046944767474,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":42.173419669192086,"scaled_rad":-110.43544044107722},{"average":0.10520781053991887,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":40.14376364038469,"scaled_rad":-113.14164847948707},{"average":0.10413888324379267,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":39.406486640586614,"scaled_rad":-114.12468447921785},{"average":0.1045000433854176,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":39.65559157656202,"scaled_rad":-113.79254456458398},{"average":0.11283060050326893,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":45.401471750783706,"scaled_rad":-106.13137099895505},{"average":0.11641444989288466,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":47.87337955525247,"scaled_rad":-102.83549392633003},{"average":0.12097329017919652,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":51.01777309916453,"scaled_rad":-98.64296920111394},{"average":0.1254976578724693,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":54.13838967521058,"scaled_rad":-94.48214709971921},{"average":0.135754577789199,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":61.21295047160996,"scaled_rad":-85.04939937118672},{"average":0.13246888118932487,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":58.94668920184822,"scaled_rad":-88.07108106420236},{"average":0.1351391556485598,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":60.788472033175346,"scaled_rad":-85.61537062243286},{"average":0.1394804060027928,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":63.78278609750938,"scaled_rad":-81.62295186998747},{"average":0.14633791501009855,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":68.51265283897742,"scaled_rad":-75.31646288136344},{"average":0.15509472318165396,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":74.55253345567505,"scaled_rad":-67.2632887257666},{"average":0.1627085347384966,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":79.80404884123979,"scaled_rad":-60.26126821168026},{"average":0.16648757171197967,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":82.41058443260582,"scaled_rad":-56.785887423192236},{"average":0.15994969639337817,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":77.9011803623562,"scaled_rad":-62.79842618352505},{"average":0.15431712730695302,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":74.0161980513566,"scaled_rad":-67.9784025981912},{"average":0.15059287723716094,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":71.44745092710887,"scaled_rad":-71.40339876385482},{"average":0.14623101743054115,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":68.43892179381899,"scaled_rad":-75.41477094157467},{"average":0.138996397822267,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":63.44894851986589,"scaled_rad":-82.06806864017881},{"average":0.13163242044083023,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":58.36975261005764,"scaled_rad":-88.84032985325648},{"average":0.12605239560763065,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":54.521011930752884,"scaled_rad":-93.97198409232948},{"average":0.12322717506338209,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":52.572357298973735,"scaled_rad":-96.570190268035},{"average":0.12284597696312255,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":52.309431473516206,"scaled_rad":-96.9207580353117},{"average":0.1224218320836095,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":52.01688373394554,"scaled_rad":-97.31082168807261},{"average":0.11992832289788814,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":50.29702216985228,"scaled_rad":-99.60397044019695},{"average":0.11671355039326717,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":48.07967975954072,"scaled_rad":-102.56042698727904},{"average":0.11451639319937094,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":46.564222656077135,"scaled_rad":-104.5810364585638},{"average":0.11400704879474077,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":46.212909787680395,"scaled_rad":-105.04945361642613},{"average":0.11502411403341026,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":46.91441569035745,"scaled_rad":-104.11411241285673},{"average":0.11624271875826588,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":47.75493051183997,"scaled_rad":-102.99342598421336},{"average":0.11633684389115012,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":47.819851948339895,"scaled_rad":-102.90686406888014},{"average":0.11504200860921864,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":46.9267582128213,"scaled_rad":-104.09765571623826},{"average":0.11280558618902646,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":45.38421849265892,"scaled_rad":-106.15437534312144},{"average":0.11169911620968188,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":44.62104697510652,"scaled_rad":-107.17193736652462},{"average":0.11409732385425908,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":46.275175692274146,"scaled_rad":-104.96643241030114},{"average":0.1349206179662747,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":60.63773885672649,"scaled_rad":-85.81634819103134},{"average":0.13943214041673144,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":63.74949561403705,"scaled_rad":-81.66733918128392},{"average":0.14237750473781763,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":65.78101766219919,"scaled_rad":-78.95864311706772},{"average":0.14434998197978377,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":67.14150504838256,"scaled_rad":-77.14465993548991},{"average":0.15559708360588448,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":74.8990292255335,"scaled_rad":-66.80129436595531},{"average":0.16062567343236422,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":78.36742565802987,"scaled_rad":-62.17676578929348},{"average":0.16594753025036718,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":82.03809871722821,"scaled_rad":-57.28253504369572},{"average":0.16965480519748982,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":84.59513749839378,"scaled_rad":-53.873150002141614},{"average":0.17139981650810227,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":85.7987335786553,"scaled_rad":-52.26835522845958},{"average":0.17111151943092148,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":85.5998848778272,"scaled_rad":-52.53348682956373},{"average":0.17021458886088986,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":84.98124010928531,"scaled_rad":-53.35834652095291},{"average":0.17050067334710056,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":85.17856270778812,"scaled_rad":-53.09524972294916},{"average":0.17289575171178106,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":86.83053304982384,"scaled_rad":-50.89262260023486},{"average":0.1760182146729352,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":88.98420629993473,"scaled_rad":-48.0210582667537},{"average":0.17887772183891565,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":90.95650962858528,"scaled_rad":-45.3913204952196},{"average":0.18035572989244167,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":91.97594410961139,"scaled_rad":-44.03207452051812},{"average":0.17611038835802303,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":89.04778175380156,"scaled_rad":-47.93629099493124},{"average":0.17494313101297682,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":88.24268303804537,"scaled_rad":-49.00975594927283},{"average":0.17395681028885648,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":87.5623827155132,"scaled_rad":-49.9168230459824},{"average":0.17438035795807943,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":87.8545185380035,"scaled_rad":-49.527308615995324},{"average":0.17486985697614726,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":88.19214334069405,"scaled_rad":-49.07714221240792},{"average":0.1739396878890184,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":87.55057279015371,"scaled_rad":-49.93256961312838},{"average":0.17097469476421687,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":85.50551206114271,"scaled_rad":-52.659317251809696},{"average":0.16884910414802798,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":84.03941696002401,"scaled_rad":-54.61411071996797},{"average":0.17005277215757417,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":84.86962940014712,"scaled_rad":-53.50716079980381},{"average":0.17245209325235664,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":86.52452610334124,"scaled_rad":-51.30063186221166},{"average":0.17500831751952808,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":88.2876444794377,"scaled_rad":-48.949807360749716},{"average":0.1769945245253573,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":89.65760176983773,"scaled_rad":-47.12319764021635},{"average":0.17934383176857566,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":91.27800214894772,"scaled_rad":-44.96266380140301},{"average":0.1821970039135394,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":93.24593598932181,"scaled_rad":-42.33875201423757},{"average":0.18463743616489817,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":94.92918851268128,"scaled_rad":-40.09441531642494},{"average":0.18520919751094814,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":95.32355255534716,"scaled_rad":-39.568596592870435},{"average":0.18205451664010072,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":93.14765747229731,"scaled_rad":-42.4697900369369},{"average":0.17234563823659776,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":86.45110031010293,"scaled_rad":-51.39853291986276},{"average":0.16901595431084004,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":84.15449942437843,"scaled_rad":-54.46066743416209},{"average":0.1658510966839504,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":81.97158507239449,"scaled_rad":-57.371219903473985},{"average":0.16401637064420288,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":80.70610956724214,"scaled_rad":-59.05852057701048},{"average":0.16450970830377026,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":81.04638201687588,"scaled_rad":-58.60482397749881},{"average":0.16595668552004095,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":82.04441343084987,"scaled_rad":-57.274115425533495},{"average":0.16828713395563108,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":83.65180622267277,"scaled_rad":-55.13092503643628},{"average":0.17012806369800323,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":84.92156064115751,"scaled_rad":-53.43791914512329},{"average":0.17063195762884467,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":85.26911412481687,"scaled_rad":-52.974514500244155},{"average":0.16977981722853808,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":84.68136272205861,"scaled_rad":-53.75818303725518},{"average":0.1663034095485131,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":82.28356126849633,"scaled_rad":-56.95525164200488},{"average":0.15775932783791477,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":76.39040562316062,"scaled_rad":-64.8127925024525},{"average":0.1582623082933663,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":76.73732905050342,"scaled_rad":-64.35022793266211},{"average":0.1592730297737633,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":77.43445943850934,"scaled_rad":-63.420720748654205},{"average":0.1836177255716398,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":94.22585801528973,"scaled_rad":-41.03218931294701},{"average":0.19700979116593,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":103.46283978031673,"scaled_rad":-28.716213626244354},{"average":0.20318649073162678,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":107.72312814693856,"scaled_rad":-23.03582913741522},{"average":0.2103265595661915,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":112.6478864048455,"scaled_rad":-16.469484793539323},{"average":0.21777085747119773,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":117.78248222337916,"scaled_rad":-9.62335703549445},{"average":0.2532811550169114,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":142.2751916258994,"scaled_rad":23.033588834532566},{"average":0.25243443649619923,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":141.6911798854504,"scaled_rad":22.25490651393386},{"average":0.2507870071851228,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":140.55488956500335,"scaled_rad":20.7398527533378},{"average":0.24618407821638047,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":137.38008649592973,"scaled_rad":16.506781994573004},{"average":0.2426160892847644,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":134.91911821085748,"scaled_rad":13.225490947809988},{"average":0.2294957869602629,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":125.8695811943473,"scaled_rad":1.1594415924630823},{"average":0.2102185939700329,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":112.57341871082579,"scaled_rad":-16.56877505223227},{"average":0.19635467274059307,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":103.01098140894267,"scaled_rad":-29.31869145474309},{"average":0.1798183665954723,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":91.60530561920427,"scaled_rad":-44.5262591743943},{"average":0.17452877387690893,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":87.95688625164823,"scaled_rad":-49.39081833113568},{"average":0.17288638631327166,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":86.82407340290497,"scaled_rad":-50.901235462793366},{"average":0.1711695881398009,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":85.63993692217102,"scaled_rad":-52.48008410377197},{"average":0.1679337895561164,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":83.40809208073466,"scaled_rad":-55.455877225687104},{"average":0.13596311866264654,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":61.356788495082526,"scaled_rad":-84.85761533988995},{"average":0.12671849328855872,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":54.98044308341111,"scaled_rad":-93.35940922211852},{"average":0.12047102609717177,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":50.67134377993624,"scaled_rad":-99.10487496008501},{"average":0.11268963987197715,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":45.30424621289625,"scaled_rad":-106.26100504947165},{"average":0.10357308322181814,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":39.016234334186706,"scaled_rad":-114.64502088775106},{"average":0.09542508890987927,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":33.39627419054675,"scaled_rad":-122.138301079271},{"average":0.09597417931327448,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":33.775001281435195,"scaled_rad":-121.63333162475305},{"average":0.09571003245017214,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":33.592809838256656,"scaled_rad":-121.87625354899112},{"average":0.09557339801231005,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":33.498568229139615,"scaled_rad":-122.00190902781384},{"average":0.09552822605095371,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":33.46741152815117,"scaled_rad":-122.04345129579843},{"average":0.10012696709797271,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":36.63932603934551,"scaled_rad":-117.81423194753931},{"average":0.1067748772475615,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":41.22462502813411,"scaled_rad":-111.70049996248784},{"average":0.10646159136664289,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":41.00854066467943,"scaled_rad":-111.98861244709408},{"average":0.10588094776153359,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":40.608050213478165,"scaled_rad":-112.52259971536245},{"average":0.10507764181786448,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":40.05398166436854,"scaled_rad":-113.26135778084193},{"average":0.10783092511981328,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":41.95301863331061,"scaled_rad":-110.72930848891917},{"average":0.11063879187805496,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":43.88970374449779,"scaled_rad":-108.14706167400294},{"average":0.11352708796039224,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":45.88186380798517,"scaled_rad":-105.49084825601977},{"average":0.11352708796039224,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":45.88186380798517,"scaled_rad":-105.49084825601977},{"average":0.11352708796039224,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":45.88186380798517,"scaled_rad":-105.49084825601977},{"average":0.11352708796039224,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":45.88186380798517,"scaled_rad":-105.49084825601977},{"average":0.11352708796039224,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":45.88186380798517,"scaled_rad":-105.49084825601977},{"average":0.11352708796039224,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":45.88186380798517,"scaled_rad":-105.49084825601977},{"average":0.11352708796039224,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":45.88186380798517,"scaled_rad":-105.49084825601977},{"average":0.11353737393591784,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":45.888958409463676,"scaled_rad":-105.48138878738176},{"average":0.14056926501751965,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":64.53381070927692,"scaled_rad":-80.62158572096409},{"average":0.1414827174804071,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":65.16385121225264,"scaled_rad":-79.78153171699647},{"average":0.14184309914708138,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":65.41241920649392,"scaled_rad":-79.45010772467478},{"average":0.14184309914708138,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":65.41241920649392,"scaled_rad":-79.45010772467478},{"average":0.14184309914708138,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":65.41241920649392,"scaled_rad":-79.45010772467478},{"average":0.14184309914708138,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":65.41241920649392,"scaled_rad":-79.45010772467478},{"average":0.14184309914708138,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":65.41241920649392,"scaled_rad":-79.45010772467478},{"average":0.14184309914708138,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":65.41241920649392,"scaled_rad":-79.45010772467478},{"average":0.1418495973511412,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":65.41690124789248,"scaled_rad":-79.44413166947668},{"average":0.15898536145687103,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":77.23604441591246,"scaled_rad":-63.6852741121167},{"average":0.15898536145687103,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":77.23604441591246,"scaled_rad":-63.6852741121167},{"average":0.15898536145687103,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":77.23604441591246,"scaled_rad":-63.6852741121167},{"average":0.15898762268129168,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":77.23760406245042,"scaled_rad":-63.68319458339944},{"average":0.16495502568468468,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":81.35353318024158,"scaled_rad":-58.19528909301121},{"average":0.1530913255006954,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":73.17071914802997,"scaled_rad":-69.1057078026267},{"average":0.15496070734691755,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":74.46009798984124,"scaled_rad":-67.386536013545},{"average":0.1573764426494334,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":76.12631615322782,"scaled_rad":-65.16491179569623},{"average":0.1605522071525404,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":78.31675336387936,"scaled_rad":-62.24432884816085},{"average":0.16460580108096412,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":81.11266060731744,"scaled_rad":-58.51645252357673},{"average":0.17233885182422842,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":86.44641948122973,"scaled_rad":-51.404774025027024},{"average":0.1708907625824213,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":85.44762106387378,"scaled_rad":-52.736505248168285},{"average":0.1689829221385261,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":84.1317159656823,"scaled_rad":-54.49104537909025},{"average":0.16609810844912204,"rel_min":0.054255280820284,"rel_max":0.3369723909453748,"scaled_dist":82.14195783188951,"scaled_rad":-57.14405622414729}],"delta":[{"average":0.26210661232471466,"rel_min":0.26210661232471466,"rel_max":0.0,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.25578900519758463,"rel_min":0.25578900519758463,"rel_max":0.0,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.2494713980704546,"rel_min":0.2494713980704546,"rel_max":0.0,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.24924498656764627,"rel_min":0.24924498656764627,"rel_max":0.0,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.24933766312897204,"rel_min":0.24924498656764627,"rel_max":0.24933766312897204,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2531446137775977,"rel_min":0.24924498656764627,"rel_max":0.2531446137775977,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2565285965268101,"rel_min":0.24924498656764627,"rel_max":0.2565285965268101,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.25520659796893597,"rel_min":0.24924498656764627,"rel_max":0.2565285965268101,"scaled_dist":164.60687485590603,"scaled_rad":52.80916647454134},{"average":0.25569387442535824,"rel_min":0.24924498656764627,"rel_max":0.2565285965268101,"scaled_dist":177.6524538387283,"scaled_rad":70.20327178497104},{"average":0.26320464015007017,"rel_min":0.24924498656764627,"rel_max":0.26320464015007017,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.27286025119776075,"rel_min":0.24924498656764627,"rel_max":0.27286025119776075,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.28011974645778537,"rel_min":0.24924498656764627,"rel_max":0.28011974645778537,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.28542127546209556,"rel_min":0.24924498656764627,"rel_max":0.28542127546209556,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.29032526245074614,"rel_min":0.24924498656764627,"rel_max":0.29032526245074614,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.29067969967921575,"rel_min":0.24924498656764627,"rel_max":0.29067969967921575,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":0.28407479589805007,"rel_min":0.24924498656764627,"rel_max":0.29067969967921575,"scaled_dist":168.91600929251558,"scaled_rad":58.55467905668746},{"average":0.27748044185778675,"rel_min":0.24924498656764627,"rel_max":0.29067969967921575,"scaled_dist":137.88166776373848,"scaled_rad":17.17555701831796},{"average":0.2683016210794449,"rel_min":0.24924498656764627,"rel_max":0.29067969967921575,"scaled_dist":94.68431179418808,"scaled_rad":-40.42091760774923},{"average":0.2589959646330068,"rel_min":0.24924498656764627,"rel_max":0.29067969967921575,"scaled_dist":50.8900419468423,"scaled_rad":-98.81327740421025},{"average":0.2514981606975198,"rel_min":0.24924498656764627,"rel_max":0.29067969967921575,"scaled_dist":15.60388554259486,"scaled_rad":-145.86148594320684},{"average":0.24282636724057652,"rel_min":0.24282636724057652,"rel_max":0.29067969967921575,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.2314094967970794,"rel_min":0.2314094967970794,"rel_max":0.29067969967921575,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.23103002434515435,"rel_min":0.23103002434515435,"rel_max":0.29067969967921575,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.22862964084682366,"rel_min":0.22862964084682366,"rel_max":0.29067969967921575,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.1492298197001219,"rel_min":0.1492298197001219,"rel_max":0.29067969967921575,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.14263341353776363,"rel_min":0.14263341353776363,"rel_max":0.29067969967921575,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.133433162269217,"rel_min":0.133433162269217,"rel_max":0.29067969967921575,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.12345225616757359,"rel_min":0.12345225616757359,"rel_max":0.29067969967921575,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.11895400019169881,"rel_min":0.11895400019169881,"rel_max":0.29067969967921575,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.11956385597586631,"rel_min":0.11895400019169881,"rel_max":0.29067969967921575,"scaled_dist":5.692510662455082,"scaled_rad":-159.0766524500599},{"average":0.1246541855075667,"rel_min":0.11895400019169881,"rel_max":0.29067969967921575,"scaled_dist":11.472741936188982,"scaled_rad":-151.36967741841468},{"average":0.12635826220503077,"rel_min":0.11895400019169881,"rel_max":0.29067969967921575,"scaled_dist":13.407775288780735,"scaled_rad":-148.78963294829236},{"average":0.12603838230963005,"rel_min":0.11895400019169881,"rel_max":0.29067969967921575,"scaled_dist":13.044541481672702,"scaled_rad":-149.27394469110305},{"average":0.12660590422284954,"rel_min":0.11895400019169881,"rel_max":0.29067969967921575,"scaled_dist":13.68898068563614,"scaled_rad":-148.4146924191518},{"average":0.12615639045834542,"rel_min":0.11895400019169881,"rel_max":0.29067969967921575,"scaled_dist":13.178543492252203,"scaled_rad":-149.09527534366373},{"average":0.1243979631560958,"rel_min":0.11895400019169881,"rel_max":0.29067969967921575,"scaled_dist":11.181793297249493,"scaled_rad":-151.75760893700067},{"average":0.12056735397089978,"rel_min":0.11895400019169881,"rel_max":0.29067969967921575,"scaled_dist":6.832014590029709,"scaled_rad":-157.5573138799604},{"average":0.11571888405045397,"rel_min":0.11571888405045397,"rel_max":0.29067969967921575,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.11085371828327577,"rel_min":0.11085371828327577,"rel_max":0.29067969967921575,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.10603045125026256,"rel_min":0.10603045125026256,"rel_max":0.29067969967921575,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.10367133918150169,"rel_min":0.10367133918150169,"rel_max":0.29067969967921575,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.10217854094558529,"rel_min":0.10217854094558529,"rel_max":0.29067969967921575,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.10113729867910923,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.10162745460613885,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":5.504269257255654,"scaled_rad":-159.3276409903258},{"average":0.10314335367745824,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":7.063816447475711,"scaled_rad":-157.24824473669906},{"average":0.1046971331310013,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":8.66233473067889,"scaled_rad":-155.11688702576149},{"average":0.10518158029051537,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":9.160730844724052,"scaled_rad":-154.45235887370126},{"average":0.105036933052664,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":9.011918699092309,"scaled_rad":-154.6507750678769},{"average":0.10548972380252516,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":9.477746903003675,"scaled_rad":-154.0296707959951},{"average":0.10863469563424587,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":12.713273645039576,"scaled_rad":-149.71563513994724},{"average":0.1154852932793837,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":19.761124330444403,"scaled_rad":-140.3185008927408},{"average":0.12527723284438252,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":29.83500861754752,"scaled_rad":-126.88665517660331},{"average":0.1328457724303007,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":37.62147334241516,"scaled_rad":-116.50470221011312},{"average":0.14010979980230331,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":45.09465786506828,"scaled_rad":-106.54045617990896},{"average":0.1450438518077135,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":50.170778754000395,"scaled_rad":-99.77229499466614},{"average":0.14760556943448527,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":52.806257330744884,"scaled_rad":-96.25832355900681},{"average":0.14919514313601612,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":54.441600505480444,"scaled_rad":-94.07786599269274},{"average":0.1499969058124156,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":55.26644877728117,"scaled_rad":-92.97806829695844},{"average":0.14986033870254534,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":55.12594941521661,"scaled_rad":-93.16540077971119},{"average":0.1581855082263549,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":63.690830141518866,"scaled_rad":-81.74555981130817},{"average":0.15887123999781297,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":64.3963065664706,"scaled_rad":-80.8049245780392},{"average":0.15935063425211177,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":64.88950428421087,"scaled_rad":-80.14732762105216},{"average":0.1596418632164834,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":65.18911876494354,"scaled_rad":-79.74784164674193},{"average":0.15380152789293788,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":59.18061944193065,"scaled_rad":-87.75917407742578},{"average":0.14020909807429863,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":45.196815287032535,"scaled_rad":-106.40424628395661},{"average":0.11874144926497882,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":23.1110366130829,"scaled_rad":-135.85195118255615},{"average":0.11176739295305156,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":15.936172447333249,"scaled_rad":-145.418436736889},{"average":0.11855642942656927,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":22.920689396315073,"scaled_rad":-136.1057474715799},{"average":0.12797087081370578,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":32.60620599210088,"scaled_rad":-123.1917253438655},{"average":0.13640604810789228,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":41.284262003248706,"scaled_rad":-111.62098399566838},{"average":0.14289249062643083,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":47.957472242441085,"scaled_rad":-102.72337034341189},{"average":0.14738486249310276,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":52.57919545254505,"scaled_rad":-96.56107272993992},{"average":0.15188599339597028,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":57.20992990260973,"scaled_rad":-90.3867601298537},{"average":0.15484514653783393,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":60.254287574659514,"scaled_rad":-86.32761656712064},{"average":0.1589370462298393,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":64.46400759366783,"scaled_rad":-80.71465654177622},{"average":0.16682486890472079,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":72.57894870175805,"scaled_rad":-69.89473506432259},{"average":0.17641600864854726,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":82.4462514275746,"scaled_rad":-56.73833142990054},{"average":0.1879616214726598,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":94.32430345615832,"scaled_rad":-40.90092872512224},{"average":0.20029549604824073,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":107.01331409202618,"scaled_rad":-23.98224787729842},{"average":0.2112262732582167,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":118.25882720517976,"scaled_rad":-8.988230393093659},{"average":0.2202598391169751,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":127.55250151321441,"scaled_rad":3.4033353509525455},{"average":0.22536793117207,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":132.8076736830707,"scaled_rad":10.410231577427624},{"average":0.22363885420273585,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":131.02881044592112,"scaled_rad":8.038413927894823},{"average":0.2171583793658231,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":124.3617397191064,"scaled_rad":-0.8510137078581295},{"average":0.20296212412855205,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":109.7567238669209,"scaled_rad":-20.3243681774388},{"average":0.19095617389782918,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":97.40507968262229,"scaled_rad":-36.79322708983693},{"average":0.18500773135529852,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":91.28536034978116,"scaled_rad":-44.95285286695845},{"average":0.1807945172344758,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":86.95083282862788,"scaled_rad":-50.73222289516282},{"average":0.18429625794040352,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":90.55340108804084,"scaled_rad":-45.928798549278866},{"average":0.1873238245335718,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":93.6681420776703,"scaled_rad":-41.77581056310626},{"average":0.1842064407275437,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":90.46099771858233,"scaled_rad":-46.05200304189022},{"average":0.1706106588649361,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":76.47374500246319,"scaled_rad":-64.70167333004906},{"average":0.1529324714304699,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":58.286539756925706,"scaled_rad":-88.95128032409906},{"average":0.1352290893865234,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":40.07341445960699,"scaled_rad":-113.23544738719067},{"average":0.1220726321304315,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":26.538136065953648,"scaled_rad":-131.28248524539515},{"average":0.1242278908272662,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":28.755452316382115,"scaled_rad":-128.32606357815718},{"average":0.12942713113578477,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":34.10439722164663,"scaled_rad":-121.1941370378045},{"average":0.1344716455644871,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":39.29416113941192,"scaled_rad":-114.27445181411744},{"average":0.13725442781273012,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":42.15706957332526,"scaled_rad":-110.45724056889965},{"average":0.13921538203489037,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":44.174486633062905,"scaled_rad":-107.76735115591612},{"average":0.14004682676663788,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":45.02987161201901,"scaled_rad":-106.62683785064132},{"average":0.13868393175596117,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":43.62773401283449,"scaled_rad":-108.49635464955401},{"average":0.14727870852333827,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":52.46998493292067,"scaled_rad":-96.70668675610577},{"average":0.152981627974301,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":58.33711169226307,"scaled_rad":-88.88385107698257},{"average":0.15621807951302755,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":61.66675216701532,"scaled_rad":-84.44433044397958},{"average":0.15926232501723855,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":64.79865231278171,"scaled_rad":-80.26846358295771},{"average":0.1639628480667266,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":69.63452011763057,"scaled_rad":-73.82063984315923},{"average":0.16907799875156748,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":74.89695416025629,"scaled_rad":-66.80406111965829},{"average":0.17437853168593634,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":80.35010826587165,"scaled_rad":-59.533188978837785},{"average":0.17746800577098673,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":83.52853928397661,"scaled_rad":-55.295280954697844},{"average":0.17645648079882334,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":82.48788891481858,"scaled_rad":-56.6828147802419},{"average":0.17489385674707592,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":80.88027136601177,"scaled_rad":-58.82630484531764},{"average":0.17574939992179914,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":81.76044866771713,"scaled_rad":-57.65273510971049},{"average":0.18086233186094383,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":87.02060007907683,"scaled_rad":-50.63919989456423},{"average":0.1813660249599944,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":87.53879629162141,"scaled_rad":-49.94827161117145},{"average":0.18188741323056407,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":88.07519718252827,"scaled_rad":-49.23307042329563},{"average":0.18104050669850957,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":87.20390520311237,"scaled_rad":-50.39479306251684},{"average":0.1785168744844653,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":84.60760865341129,"scaled_rad":-53.85652179545161},{"average":0.17437773673724727,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":80.34929042778609,"scaled_rad":-59.53427942961855},{"average":0.1685826560171942,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":74.38734874904944,"scaled_rad":-67.48353500126741},{"average":0.1621479531750083,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":67.76736795527684,"scaled_rad":-76.31017605963088},{"average":0.1706341877732365,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":76.4979513916108,"scaled_rad":-64.66939814451894},{"average":0.16291394268684997,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":68.555413026042,"scaled_rad":-75.25944929861068},{"average":0.15385990747581085,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":59.24067998036513,"scaled_rad":-87.67909335951316},{"average":0.1455561828687787,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":50.69786164616897,"scaled_rad":-99.06951780510803},{"average":0.13657671397197105,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":41.4598419437779,"scaled_rad":-111.38687740829613},{"average":0.1309117136420462,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":35.6317261316609,"scaled_rad":-119.15769849111881},{"average":0.1326767181744799,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":37.447551414070276,"scaled_rad":-116.73659811457296},{"average":0.13882554513077403,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":43.77342493973423,"scaled_rad":-108.30210008035436},{"average":0.14236232025118975,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":47.41203637887432,"scaled_rad":-103.4506181615009},{"average":0.1477651900633146,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":52.97047400446793,"scaled_rad":-96.03936799404275},{"average":0.1533220324129092,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":58.68731758381217,"scaled_rad":-88.41690988825044},{"average":0.15741878364207154,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":62.902028832965364,"scaled_rad":-82.79729488937951},{"average":0.16153185311426868,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":67.13352818533451,"scaled_rad":-77.15529575288733},{"average":0.15957701142739367,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":65.12239966248535,"scaled_rad":-79.83680045001954},{"average":0.15280230721349225,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":58.1526276497839,"scaled_rad":-89.12982980028814},{"average":0.14458844610863794,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":49.70226030719816,"scaled_rad":-100.39698625706912},{"average":0.13879777441152197,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":43.7448546028303,"scaled_rad":-108.34019386289293},{"average":0.13769643393298275,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":42.6118026198335,"scaled_rad":-109.850929840222},{"average":0.1393072991232787,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":44.26905034092536,"scaled_rad":-107.64126621209951},{"average":0.14112492229340348,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":46.13900933851206,"scaled_rad":-105.14798754865058},{"average":0.14149047237571696,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":46.51508490616876,"scaled_rad":-104.64655345844164},{"average":0.13870289786295456,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":43.64724622141788,"scaled_rad":-108.47033837144282},{"average":0.13433466171328393,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":39.153233036551164,"scaled_rad":-114.46235595126512},{"average":0.17042151458304503,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":76.27915458483555,"scaled_rad":-64.96112722021927},{"average":0.1689150676335374,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":74.72933167658915,"scaled_rad":-67.0275577645478},{"average":0.17273146842866122,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":78.65562020687283,"scaled_rad":-61.79250639083622},{"average":0.17571317196848826,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":81.72317758294483,"scaled_rad":-57.702429889406886},{"average":0.1732673678897171,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":79.20695011698534,"scaled_rad":-61.05739984401954},{"average":0.17022756597648064,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":76.07962150896175,"scaled_rad":-65.22717132138432},{"average":0.1665530927874,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":72.29934718464145,"scaled_rad":-70.26753708714473},{"average":0.16197908064350486,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":67.59363298373793,"scaled_rad":-76.54182268834943},{"average":0.1584315066244088,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":63.943911707265634,"scaled_rad":-81.40811772364582},{"average":0.15687334597981595,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":62.34088608295989,"scaled_rad":-83.54548522272015},{"average":0.15343092138007763,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":58.799341851130755,"scaled_rad":-88.26754419849232},{"average":0.14991308679469886,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":55.18021631231016,"scaled_rad":-93.09304491691978},{"average":0.1464900568922519,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":51.65862521999945,"scaled_rad":-97.7884997066674},{"average":0.14292145796898234,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":47.98727365767978,"scaled_rad":-102.68363512309362},{"average":0.14069583749035433,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":45.697569659827515,"scaled_rad":-105.73657378689666},{"average":0.14010019733104856,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":45.08477890455708,"scaled_rad":-106.55362812725721},{"average":0.13813432146974416,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":43.06229849420214,"scaled_rad":-109.25026867439715},{"average":0.13443358348866488,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":39.255003121226174,"scaled_rad":-114.32666250503176},{"average":0.12673478682691153,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":31.334530756622858,"scaled_rad":-124.88729232450285},{"average":0.13301837545955872,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":37.799046225990125,"scaled_rad":-116.2679383653465},{"average":0.13170467132250918,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":36.44751588041581,"scaled_rad":-118.06997882611225},{"average":0.13133709851080125,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":36.069359341800435,"scaled_rad":-118.57418754426608},{"average":0.13621966578456723,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":41.092513070784975,"scaled_rad":-111.87664923895338},{"average":0.13761768572952687,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":42.53078697587799,"scaled_rad":-109.95895069882934},{"average":0.14012918322617132,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":45.11459940656147,"scaled_rad":-106.51386745791805},{"average":0.1437755805111545,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":48.86598942177668,"scaled_rad":-101.51201410429775},{"average":0.14839915260236863,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":53.62269057692482,"scaled_rad":-95.16974589743357},{"average":0.15449834685924269,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":59.897502301451674,"scaled_rad":-86.80333026473109},{"average":0.15512569411792335,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":60.54291311611504,"scaled_rad":-85.94278251184662},{"average":0.15358974707537684,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":58.96274070236367,"scaled_rad":-88.0496790635151},{"average":0.15099427296647003,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":56.29253367445679,"scaled_rad":-91.60995510072428},{"average":0.1487061258257282,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":53.93850264978698,"scaled_rad":-94.74866313361736},{"average":0.14685100584296185,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":52.02996717313004,"scaled_rad":-97.29337710249328},{"average":0.1450495110050346,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":50.176600899714444,"scaled_rad":-99.76453213371407},{"average":0.13681597348989388,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":41.70599059309741,"scaled_rad":-111.05867920920345},{"average":0.1350275474703974,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":39.86606943581707,"scaled_rad":-113.51190741891057},{"average":0.14024263448519272,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":45.23131733032123,"scaled_rad":-106.35824355957169},{"average":0.1451689697965816,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":50.29949933420061,"scaled_rad":-99.6006675543992},{"average":0.14668951451249135,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":51.86382593362063,"scaled_rad":-97.51489875517248},{"average":0.14408323832828066,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":49.182505800291736,"scaled_rad":-101.08999226627768},{"average":0.1394457147381193,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":44.41145143298445,"scaled_rad":-107.45139808935406},{"average":0.1369353508406509,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":41.82880524182397,"scaled_rad":-110.8949263442347},{"average":0.13390197946545593,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":38.70809232987407,"scaled_rad":-115.05587689350124},{"average":0.1325692311226529,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":37.33696942821554,"scaled_rad":-116.88404076237927},{"average":0.13568688620611158,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":40.54439287577492,"scaled_rad":-112.60747616563344},{"average":0.1455745460857686,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":50.71675360540416,"scaled_rad":-99.04432852612779},{"average":0.16207751180215968,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":67.69489832508853,"scaled_rad":-76.40680223321527},{"average":0.18151689891237766,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":87.69401444101436,"scaled_rad":-49.74131407864752},{"average":0.19231792655170274,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":98.80604203249352,"scaled_rad":-34.92527729000864},{"average":0.2017739715592302,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":108.53436016468187,"scaled_rad":-21.95418644709082},{"average":0.2085028676268382,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":115.45700505184264,"scaled_rad":-12.72399326420981},{"average":0.20972874293065802,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":116.71817766010105,"scaled_rad":-11.042429786531926},{"average":0.20751267872032175,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":114.43830508944953,"scaled_rad":-14.082259880733943},{"average":0.20459628068475108,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":111.43793359507366,"scaled_rad":-18.082755206568436},{"average":0.201167553738134,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":107.91048142045466,"scaled_rad":-22.786024772727103},{"average":0.198531030183658,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":105.1980429876286,"scaled_rad":-26.402609349828538},{"average":0.19262674149700362,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":99.1237488570137,"scaled_rad":-34.5016681906484},{"average":0.1844245759622738,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":90.68541384156025,"scaled_rad":-45.75278154458633},{"average":0.17608113931446093,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":82.10174001586783,"scaled_rad":-57.19767997884287},{"average":0.16812442403798009,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":73.91592264346423,"scaled_rad":-68.1121031420477},{"average":0.15880737611342494,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":64.3306038139996,"scaled_rad":-80.89252824800052},{"average":0.14374078747825425,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":48.83019457387063,"scaled_rad":-101.55974056817249},{"average":0.12294664173634444,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":27.437311512997432,"scaled_rad":-130.08358464933676},{"average":0.11395604670262681,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":18.18784531269351,"scaled_rad":-142.41620624974198},{"average":0.10238041890936606,"rel_min":0.10113729867910923,"rel_max":0.29067969967921575,"scaled_dist":6.278914077383377,"scaled_rad":-158.2947812301555},{"average":0.09332999124945629,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.09634920938373036,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":7.983270362383077,"scaled_rad":-156.02230618348923},{"average":0.10163649793204693,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":13.207606770707148,"scaled_rad":-149.0565243057238},{"average":0.11110840875987715,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":22.566742014042376,"scaled_rad":-136.57767731461016},{"average":0.12119576230505917,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":32.53399231788865,"scaled_rad":-123.28801024281513},{"average":0.12943923216053219,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":40.6793127980016,"scaled_rad":-112.42758293599788},{"average":0.13730562829274545,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":48.45204911459741,"scaled_rad":-102.06393451387012},{"average":0.14195907794900478,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":53.050093318415115,"scaled_rad":-95.93320890877985},{"average":0.14483628322908637,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":55.89304167683947,"scaled_rad":-92.14261109754737},{"average":0.14743848476712018,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":58.46426057528135,"scaled_rad":-88.71431923295819},{"average":0.14969090964137152,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":60.689867362206705,"scaled_rad":-85.74684351705773},{"average":0.15025164014175196,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":61.24392162681233,"scaled_rad":-85.00810449758356},{"average":0.15055381919483882,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":61.542502839932844,"scaled_rad":-84.60999621342287},{"average":0.1492234415420636,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":60.227965086848194,"scaled_rad":-86.36271321753574},{"average":0.14855465475868965,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":59.56714109174035,"scaled_rad":-87.24381187767953},{"average":0.14357508132855099,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":54.646856047475175,"scaled_rad":-93.80419193669977},{"average":0.13331628880109145,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":44.51020796843019,"scaled_rad":-107.31972270875976},{"average":0.1335518563305754,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":44.742970755945116,"scaled_rad":-107.0093723254065},{"average":0.13511095450080016,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":46.28350580721445,"scaled_rad":-104.95532559038074},{"average":0.13355125518572644,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":44.742376768518035,"scaled_rad":-107.01016430864263},{"average":0.13121061177681323,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":42.429601804877656,"scaled_rad":-110.09386426016313},{"average":0.12861798960086587,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":39.86784821358885,"scaled_rad":-113.50953571521487},{"average":0.12901679233744226,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":40.2619026778754,"scaled_rad":-112.9841297628328},{"average":0.13025106398524644,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":41.48147869466733,"scaled_rad":-111.35802840711023},{"average":0.12920791174197555,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":40.45074655395974,"scaled_rad":-112.73233792805368},{"average":0.12744098626711267,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":38.704858656076716,"scaled_rad":-115.06018845856437},{"average":0.1255348102757865,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":36.82137820269211,"scaled_rad":-117.57149572974384},{"average":0.12401072865642827,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":35.31544278409162,"scaled_rad":-119.57940962121117},{"average":0.12455145314241908,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":35.84972923228132,"scaled_rad":-118.86702769029158},{"average":0.12863470274939448,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":39.88436237005257,"scaled_rad":-113.48751683992991},{"average":0.13121122256076584,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":42.43020531664216,"scaled_rad":-110.09305957781046},{"average":0.13289320661350157,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":44.09216313200019,"scaled_rad":-107.87711582399976},{"average":0.13403449382263521,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":45.219861812438175,"scaled_rad":-106.37351758341578},{"average":0.1374050430999494,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":48.55028025747071,"scaled_rad":-101.93295965670572},{"average":0.17137970142524506,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":82.12042548923142,"scaled_rad":-57.17276601435812},{"average":0.176115761320962,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":86.80009634870727,"scaled_rad":-50.933204868390305},{"average":0.179210612016571,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":89.85809876708204,"scaled_rad":-46.855868310557284},{"average":0.18014805681762183,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":90.78438205201515,"scaled_rad":-45.620823930646466},{"average":0.18694102139993302,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":97.49646743633251,"scaled_rad":-36.67137675155665},{"average":0.2006142947104681,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":111.00694240368381,"scaled_rad":-18.65741012842159},{"average":0.21163592968881131,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":121.89735028863832,"scaled_rad":-4.136866281815571},{"average":0.22526454567107784,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":135.36369963208242,"scaled_rad":13.818266176109859},{"average":0.2307738856604648,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":140.8074436663576,"scaled_rad":21.076591555143494},{"average":0.24038480218544073,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":150.30392956077355,"scaled_rad":33.73857274769804},{"average":0.24291726564768495,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":152.80624070714845,"scaled_rad":37.07498760953126},{"average":0.23982832929229034,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":149.7540822109714,"scaled_rad":33.00544294796188},{"average":0.23094880888675107,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":140.98028420104714,"scaled_rad":21.307045601396197},{"average":0.2171201456613578,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":127.31626944061259,"scaled_rad":3.0883592541501343},{"average":0.20403811005630004,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":114.38999271447186,"scaled_rad":-14.146676380704207},{"average":0.19157510736245217,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":102.07537849670969,"scaled_rad":-30.56616200438708},{"average":0.18942662937423357,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":99.95248097111369,"scaled_rad":-33.396692038515084},{"average":0.18762220966833076,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":98.16954526043702,"scaled_rad":-35.77393965275064},{"average":0.18326533031969808,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":93.86454030378789,"scaled_rad":-41.51394626161614},{"average":0.17819120241293662,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":88.85082657858798,"scaled_rad":-48.19889789521601},{"average":0.18287214036734606,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":93.47603179613061,"scaled_rad":-42.03195760515918},{"average":0.1875640214860158,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":98.11204988513751,"scaled_rad":-35.85060015314998},{"average":0.1901418756749621,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":100.659211321778,"scaled_rad":-32.454384904296006},{"average":0.19059767115037987,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":101.1095799512209,"scaled_rad":-31.85389339837215},{"average":0.18858625136885737,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":99.12210877369702,"scaled_rad":-34.503854968403985},{"average":0.18770065998873192,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":98.24706152635879,"scaled_rad":-35.67058463152162},{"average":0.18817424721739912,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":98.71501007477518,"scaled_rad":-35.046653233633094},{"average":0.18894304418283414,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":99.47465349889094,"scaled_rad":-34.03379533481208},{"average":0.18977955751709968,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":100.30120703920102,"scaled_rad":-32.93172394773197},{"average":0.1911504267452237,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":101.65575426205302,"scaled_rad":-31.125660983929293},{"average":0.21590676347310417,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":126.11733416681831,"scaled_rad":1.4897788890910704},{"average":0.1649000171707435,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":75.71789041744782,"scaled_rad":-65.7094794434029},{"average":0.1589846108648656,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":69.87291482146539,"scaled_rad":-73.50278023804616},{"average":0.15473659826099656,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":65.67548040747286,"scaled_rad":-79.09935945670284},{"average":0.1502994319738941,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":61.29114443419252,"scaled_rad":-84.94514075440998},{"average":0.14476124312741995,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":55.818895026502965,"scaled_rad":-92.24147329799605},{"average":0.13857188655196556,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":49.70323090003088,"scaled_rad":-100.39569213329216},{"average":0.13351115343257042,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":44.70275247959638,"scaled_rad":-107.0629966938715},{"average":0.13010434827153036,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":41.336509824927056,"scaled_rad":-111.5513202334306},{"average":0.12629715200388547,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":37.57464324758175,"scaled_rad":-116.56714233655768},{"average":0.12307731201052403,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":34.39313969380806,"scaled_rad":-120.80914707492258},{"average":0.12191942272577108,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":33.249036607346255,"scaled_rad":-122.33461785687166},{"average":0.1246213378381453,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":35.91878185858131,"scaled_rad":-118.7749575218916},{"average":0.13068508855894675,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":41.91033563367662,"scaled_rad":-110.78621915509785},{"average":0.1399753729250127,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":51.09000691769902,"scaled_rad":-98.54665744306797},{"average":0.14454525854490105,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":55.60548202515478,"scaled_rad":-92.5260239664603},{"average":0.14972324898659156,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":60.72182166489143,"scaled_rad":-85.70423778014475},{"average":0.15798873831982055,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":68.88889945185107,"scaled_rad":-74.81480073086522},{"average":0.16345697782984744,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":74.29203236215261,"scaled_rad":-67.61062351712985},{"average":0.1673483695618732,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":78.13709194588695,"scaled_rad":-62.483877405484066},{"average":0.16949714383199102,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":80.26028222575559,"scaled_rad":-59.65295703232589},{"average":0.17141152045105473,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":82.15186566759427,"scaled_rad":-57.13084577654098},{"average":0.17457087178135644,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":85.27360075557948,"scaled_rad":-52.96853232589403},{"average":0.18040793597296834,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":91.0411670034386,"scaled_rad":-45.27844399541519},{"average":0.1890132098814985,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":99.54398378241866,"scaled_rad":-33.941354956775115},{"average":0.19717648001792637,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":107.6100594268628,"scaled_rad":-23.186587430849585},{"average":0.2034453986895581,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":113.80433835787667,"scaled_rad":-14.927548856164435},{"average":0.20796986596281347,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":118.2749358839876,"scaled_rad":-8.966752154683206},{"average":0.20562693569809198,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":115.95990129257193,"scaled_rad":-12.05346494323743},{"average":0.19478032515436508,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":105.2424339456184,"scaled_rad":-26.343421405842122},{"average":0.19260781541417696,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":103.0957907977393,"scaled_rad":-29.205612269680955},{"average":0.1898764207409542,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":100.39691697868824,"scaled_rad":-32.80411069508234},{"average":0.18418022267690864,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":94.76853966145381,"scaled_rad":-40.30861378472824},{"average":0.18127478391587346,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":91.89769397888463,"scaled_rad":-44.136408028153824},{"average":0.17929279793344147,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":89.93930615227279,"scaled_rad":-46.747591796969616},{"average":0.17741615712811454,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":88.08500922956415,"scaled_rad":-49.219987693914476},{"average":0.133967071729562,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":45.15324246826033,"scaled_rad":-106.46234337565289},{"average":0.1366855180028742,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":47.83932205517066,"scaled_rad":-102.88090392643912},{"average":0.13491831118097672,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":46.093156160060346,"scaled_rad":-105.20912511991953},{"average":0.13037629473728304,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":41.60521840951889,"scaled_rad":-111.19304212064148},{"average":0.12683786976797756,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":38.108923053905784,"scaled_rad":-115.85476926145896},{"average":0.12411121274862025,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":35.414730480705614,"scaled_rad":-119.44702602572585},{"average":0.12288505713679368,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":34.203173867784244,"scaled_rad":-121.06243484295435},{"average":0.12280203574792443,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":34.12114095799018,"scaled_rad":-121.1718120560131},{"average":0.12183149814394847,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":33.16215888357444,"scaled_rad":-122.45045482190075},{"average":0.11942997763698285,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":30.789231643983545,"scaled_rad":-125.61435780802194},{"average":0.11703334124467801,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":28.421130367230052,"scaled_rad":-128.77182617702658},{"average":0.11510918276367064,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":26.51988152940883,"scaled_rad":-131.3068246274549},{"average":0.11559299832522314,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":26.9979366289243,"scaled_rad":-130.66941782810093},{"average":0.11651200835157659,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":27.906004629453953,"scaled_rad":-129.4586604940614},{"average":0.118079517694926,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":29.454850707744093,"scaled_rad":-127.39353238967453},{"average":0.12018432781673395,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":31.534600290443038,"scaled_rad":-124.62053294607594},{"average":0.1225560416261797,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":33.8780757205399,"scaled_rad":-121.49589903928015},{"average":0.12468548716595595,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":35.98216740408127,"scaled_rad":-118.69044346122499},{"average":0.13041803464520632,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":41.64646134881584,"scaled_rad":-111.13805153491221},{"average":0.1455636035401861,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":56.61170228086528,"scaled_rad":-91.18439695884629},{"average":0.17019057057685022,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":80.94545281112623,"scaled_rad":-58.73939625183171},{"average":0.19454155531444578,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":105.00650697539521,"scaled_rad":-26.65799069947306},{"average":0.21292218457099543,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":123.16829061087941,"scaled_rad":-2.4422791854941295},{"average":0.22287914886309937,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":133.0067041175876,"scaled_rad":10.675605490116794},{"average":0.22666203473767121,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":136.7445497491359,"scaled_rad":15.659399665514542},{"average":0.22900279739232204,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":139.0574425387362,"scaled_rad":18.74325671831494},{"average":0.2324456049384372,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":142.45925892262713,"scaled_rad":23.27901189683618},{"average":0.23856423564741625,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":148.50503926729672,"scaled_rad":31.34005235639563},{"average":0.24442313160174167,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":154.29417734195513,"scaled_rad":39.058903122606864},{"average":0.25453352306181,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":164.2841912639419,"scaled_rad":52.37892168525585},{"average":0.2673222798415843,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":176.92068103582105,"scaled_rad":69.22757471442807},{"average":0.2747539219902583,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":184.26383968815426,"scaled_rad":79.01845291753904},{"average":0.28450104453715314,"rel_min":0.09332999124945629,"rel_max":0.29067969967921575,"scaled_dist":193.89490989224828,"scaled_rad":91.85987985633105},{"average":0.29626590355622523,"rel_min":0.09332999124945629,"rel_max":0.29626590355622523,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.3061338782873611,"rel_min":0.09332999124945629,"rel_max":0.3061338782873611,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.3106614420163459,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2979111670963251,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":188.5598536215963,"scaled_rad":84.74647149546175},{"average":0.280929307466754,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":173.3229304055531,"scaled_rad":64.43057387407083},{"average":0.27064107247660385,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":164.0918420563977,"scaled_rad":52.122456075196965},{"average":0.26924619293187274,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":162.84029051950435,"scaled_rad":50.453720692672476},{"average":0.2700266683420965,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":163.54056976789013,"scaled_rad":51.387426357186854},{"average":0.2702273162575359,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":163.72060051526984,"scaled_rad":51.627467353693135},{"average":0.26816306526730344,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":161.8684574330103,"scaled_rad":49.15794324401375},{"average":0.26537725247611577,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":159.368895163653,"scaled_rad":45.82519355153738},{"average":0.26066917044736737,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":155.14458251876727,"scaled_rad":40.192776691689716},{"average":0.25954705916974746,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":154.1377715010164,"scaled_rad":38.85036200135525},{"average":0.21745212116079887,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":116.36821314772749,"scaled_rad":-11.50904913636333},{"average":0.21866341435066125,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":117.45504237189033,"scaled_rad":-10.059943504146219},{"average":0.2243956414951459,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":122.59826618616214,"scaled_rad":-3.2023117517838102},{"average":0.23290958782154703,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":130.23737929100668,"scaled_rad":6.98317238800891},{"average":0.23980316705484356,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":136.4226228245561,"scaled_rad":15.230163766074838},{"average":0.24340812350078964,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":139.65715931008987,"scaled_rad":19.54287908011983},{"average":0.24366180656879152,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":139.8847756909027,"scaled_rad":19.846367587870304},{"average":0.24148836375288563,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":137.93466056671738,"scaled_rad":17.24621408895655},{"average":0.23744385536494,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":134.30573740411754,"scaled_rad":12.407649872156725},{"average":0.23662575069968014,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":133.57169541818894,"scaled_rad":11.428927224251908},{"average":0.2390568807690603,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":135.75301966673322,"scaled_rad":14.337359555644326},{"average":0.24083205789571238,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":137.34579208175037,"scaled_rad":16.46105610900051},{"average":0.24370326229330638,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":139.92197171684316,"scaled_rad":19.895962289124213},{"average":0.24975076496479956,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":145.3480755632029,"scaled_rad":27.13076741760392},{"average":0.25680436736627205,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":151.67689941006736,"scaled_rad":35.56919921342316},{"average":0.26173744142818645,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":156.10308548980368,"scaled_rad":41.470780653071614},{"average":0.2659147538505094,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":159.85116667859901,"scaled_rad":46.46822223813203},{"average":0.26959654418177326,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":163.15464213998783,"scaled_rad":50.872856186650466},{"average":0.26893072952840097,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":162.5572419158166,"scaled_rad":50.07632255442218},{"average":0.26287161513169605,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":157.12071948342935,"scaled_rad":42.82762597790585},{"average":0.26363014303980037,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":157.80130640059394,"scaled_rad":43.735075200791954},{"average":0.26600733771920204,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":159.93423728035205,"scaled_rad":46.57898304046941},{"average":0.26600733771920204,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":159.93423728035205,"scaled_rad":46.57898304046941},{"average":0.26600733771920204,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":159.93423728035205,"scaled_rad":46.57898304046941},{"average":0.26600733771920204,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":159.93423728035205,"scaled_rad":46.57898304046941},{"average":0.26600733771920204,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":159.93423728035205,"scaled_rad":46.57898304046941},{"average":0.2659314884779809,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":159.86618177349408,"scaled_rad":46.48824236465879},{"average":0.23703067603839595,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":133.93501347809675,"scaled_rad":11.913351304129037},{"average":0.2361679622651233,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":133.16094610223126,"scaled_rad":10.881261469641714},{"average":0.23515885759677205,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":132.25552992967943,"scaled_rad":9.674039906239273},{"average":0.2340962247527325,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":131.30208576015622,"scaled_rad":8.40278101354167},{"average":0.22583688430738388,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":123.89141702739889,"scaled_rad":-1.4781106301348075},{"average":0.22774747330887415,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":125.60568734573499,"scaled_rad":0.8075831276466658},{"average":0.22587863308949765,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":123.92887599840128,"scaled_rad":-1.4281653354649393},{"average":0.22243738611921285,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":120.841227354647,"scaled_rad":-5.545030193803996},{"average":0.21923819666876054,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":117.97076410307034,"scaled_rad":-9.372314529239532},{"average":0.21707336596042223,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":116.02837616687255,"scaled_rad":-11.962165110836594},{"average":0.21574210558494236,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":114.83390674101379,"scaled_rad":-13.554791011981592},{"average":0.2149278769543782,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":114.10334251572681,"scaled_rad":-14.52887664569758},{"average":0.2169000894962987,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":115.87290437305319,"scaled_rad":-12.169460835929073},{"average":0.2165750018838379,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":115.58122047637757,"scaled_rad":-12.558372698163225},{"average":0.21430029669396522,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":113.54024798730627,"scaled_rad":-15.279669350258274},{"average":0.21241170613460206,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":111.84571570596228,"scaled_rad":-17.539045725383602},{"average":0.21236401260888815,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":111.80292283138571,"scaled_rad":-17.596102891485685},{"average":0.21150888088159264,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":111.03565842379898,"scaled_rad":-18.619122101601363},{"average":0.20954335069381388,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":109.27209228891883,"scaled_rad":-20.97054361477487},{"average":0.20791552572589905,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":107.81153116155643,"scaled_rad":-22.917958451258073},{"average":0.20803727371798408,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":107.92076918657678,"scaled_rad":-22.772307751230954},{"average":0.2113801648167174,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":110.92016831612194,"scaled_rad":-18.773108911837397},{"average":0.21729986163569084,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":116.23159874014269,"scaled_rad":-11.691201679809751},{"average":0.22437297950127147,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":122.57793277933159,"scaled_rad":-3.229422960891185},{"average":0.23062731440039466,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":128.18961622885297,"scaled_rad":4.252821638470635},{"average":0.23450813660690306,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":131.67167245034685,"scaled_rad":8.895563267129148},{"average":0.23623671297958546,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":133.22263247699578,"scaled_rad":10.963509969327731},{"average":0.2934111808858267,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":184.52225433281043,"scaled_rad":79.36300577708062},{"average":0.2766149131413504,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":169.45185288554848,"scaled_rad":59.26913718073132},{"average":0.26479073156358546,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":158.8426410134146,"scaled_rad":45.123521351219495},{"average":0.2541724464723042,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":149.3154161893336,"scaled_rad":32.42055491911151},{"average":0.24539727540371786,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":141.44191995886982,"scaled_rad":21.922559945159776},{"average":0.23399814288749035,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":131.21408209729597,"scaled_rad":8.285442796394648},{"average":0.22981841588625684,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":127.4638344347303,"scaled_rad":3.285112579640412},{"average":0.22898340080942897,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":126.7146196321471,"scaled_rad":2.286159509529483},{"average":0.22839936701821512,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":126.1905970441377,"scaled_rad":1.587462725516957},{"average":0.2209590667889838,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":119.51480971754272,"scaled_rad":-7.313587043276357},{"average":0.21099421616998457,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":110.57387703684628,"scaled_rad":-19.23483061753828},{"average":0.19322054338533068,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":94.62650181444918,"scaled_rad":-40.49799758073439},{"average":0.17617065150078862,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":79.32853685929037,"scaled_rad":-60.89528418761283},{"average":0.16474443706232464,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":69.07639982326444,"scaled_rad":-74.56480023564741},{"average":0.15301284457574477,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":58.550263238749444,"scaled_rad":-88.59964901500074},{"average":0.14096265755593776,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":47.738268653654835,"scaled_rad":-103.01564179512688},{"average":0.131430195871863,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":39.185295663158556,"scaled_rad":-114.41960578245525},{"average":0.12552245287551814,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":33.88459077105853,"scaled_rad":-121.4872123052553},{"average":0.12114823626563231,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":29.959837883623766,"scaled_rad":-126.72021615516832},{"average":0.1159135572013113,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":25.263037609477205,"scaled_rad":-132.98261652069706},{"average":0.10918858664240255,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":19.229077709242677,"scaled_rad":-141.02789638767644},{"average":0.10103759912259687,"rel_min":0.09332999124945629,"rel_max":0.3106614420163459,"scaled_dist":11.915628317755619,"scaled_rad":-150.7791622429925},{"average":0.09290330662581793,"rel_min":0.09290330662581793,"rel_max":0.3106614420163459,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.08531426421988231,"rel_min":0.08531426421988231,"rel_max":0.3106614420163459,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.08057293349722494,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.08070534280362143,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":5.112216880858133,"scaled_rad":-159.85037749218915},{"average":0.08664287295440264,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":10.14427340056093,"scaled_rad":-153.1409687992521},{"average":0.09878261961699282,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":20.432708118318082,"scaled_rad":-139.42305584224255},{"average":0.11645155922046195,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":35.407133589854205,"scaled_rad":-119.45715521352773},{"average":0.12130399898504987,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":39.519576058992165,"scaled_rad":-113.97389858801046},{"average":0.12348170910157602,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":41.36518527892115,"scaled_rad":-111.5130862947718},{"average":0.12446496587419828,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":42.19849534683968,"scaled_rad":-110.40200620421376},{"average":0.12750722388041572,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":44.776808862062886,"scaled_rad":-106.96425485058282},{"average":0.13097222333008732,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":47.71339573045841,"scaled_rad":-103.04880569272211},{"average":0.13623975879756045,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":52.17763178800103,"scaled_rad":-97.09649094933197},{"average":0.14570963115985977,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":60.20334816355356,"scaled_rad":-86.39553578192859},{"average":0.15239943346559934,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":65.87295529871741,"scaled_rad":-78.83605960171012},{"average":0.15969664798591127,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":72.05734425677167,"scaled_rad":-70.59020765763778},{"average":0.16734527796091112,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":78.53955779591948,"scaled_rad":-61.94725627210737},{"average":0.17361320199274805,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":83.85162311406478,"scaled_rad":-54.864502514580295},{"average":0.20117685417334238,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":107.21181702296322,"scaled_rad":-23.71757730271571},{"average":0.2064925126417513,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":111.71683732150456,"scaled_rad":-17.71088357132726},{"average":0.20677893319109505,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":111.95957872341768,"scaled_rad":-17.387228368776448},{"average":0.20381016966374899,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":109.44355177553395,"scaled_rad":-20.741930965954737},{"average":0.2066773927036164,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":111.87352316512067,"scaled_rad":-17.501969113172436},{"average":0.20932713704859163,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":114.11918137115502,"scaled_rad":-14.507758171793313},{"average":0.21201314419311912,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":116.39557229808102,"scaled_rad":-11.472570269225315},{"average":0.2101990325168525,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":114.85811273893667,"scaled_rad":-13.522516348084451},{"average":0.2033873853440433,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":109.0852420847405,"scaled_rad":-21.219677220346},{"average":0.20145340315380778,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":107.44619227072258,"scaled_rad":-23.405076972369898},{"average":0.19948374463407242,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":105.7769067691545,"scaled_rad":-25.630790974460666},{"average":0.1986517712490031,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":105.07180936497433,"scaled_rad":-26.570920846700886},{"average":0.19863075805319982,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":105.0540006825329,"scaled_rad":-26.59466575662279},{"average":0.1946350172097688,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":101.66761050823048,"scaled_rad":-31.10985265569269},{"average":0.19640069251382275,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":103.16402024423391,"scaled_rad":-29.114639674354777},{"average":0.20263691726791602,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":108.44922042600278,"scaled_rad":-22.06770609866294},{"average":0.20839694787872068,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":113.33084609403812,"scaled_rad":-15.558871874615846},{"average":0.22653535343068443,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":128.70314393454066,"scaled_rad":4.937525246054207},{"average":0.24004219473602298,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":140.15019129684794,"scaled_rad":20.200255062463896},{"average":0.2462138914779178,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":145.38070399135515,"scaled_rad":27.17427198847352},{"average":0.24868739688808614,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":147.47699970854322,"scaled_rad":29.969332944724272},{"average":0.24829799388466114,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":147.14698068170614,"scaled_rad":29.529307575608186},{"average":0.24940048316809332,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":148.0813402968514,"scaled_rad":30.775120395801878},{"average":0.2514409188173286,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":149.81060941229623,"scaled_rad":33.08081254972831},{"average":0.25598033490877614,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":153.65776433337177,"scaled_rad":38.2103524444957},{"average":0.25927253366300934,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":156.4479026206219,"scaled_rad":41.93053682749587},{"average":0.2613235835471198,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":158.1861672996174,"scaled_rad":44.24822306615653},{"average":0.26362456111100735,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":160.13624567530812,"scaled_rad":46.84832756707749},{"average":0.26196455938359686,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":158.72939429047182,"scaled_rad":44.97252572062908},{"average":0.2607668656894708,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":157.71434894180254,"scaled_rad":43.61913192240337},{"average":0.26078028419287874,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":157.72572112280102,"scaled_rad":43.63429483040136},{"average":0.2531033973761383,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":151.21955991162528,"scaled_rad":34.959413215500376},{"average":0.23875961560926,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":139.06320554806598,"scaled_rad":18.75094073075465},{"average":0.21637126224551265,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":120.08907713970206,"scaled_rad":-6.547897147063935},{"average":0.20968281336836825,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":114.4206170352081,"scaled_rad":-14.105843953055881},{"average":0.2058854790077996,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":111.20237634567209,"scaled_rad":-18.396831539103886},{"average":0.2054021109409109,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":110.79272193202951,"scaled_rad":-18.943037423960646},{"average":0.2053779354739697,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":110.77223322494946,"scaled_rad":-18.970355700067387},{"average":0.20476551856234915,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":110.2532099215493,"scaled_rad":-19.66238677126759},{"average":0.20342466507701237,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":109.1168366566544,"scaled_rad":-21.17755112446079},{"average":0.2037141541703319,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":109.3621786494407,"scaled_rad":-20.8504284674124},{"average":0.20661937512358738,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":111.82435326881219,"scaled_rad":-17.56752897491708},{"average":0.2108198617797012,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":115.38426550960158,"scaled_rad":-12.820979320531222},{"average":0.21505164478964062,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":118.97070140876606,"scaled_rad":-8.039064788311919},{"average":0.21927083441648285,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":122.54646441635609,"scaled_rad":-3.271380778191883},{"average":0.2652836069577571,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":161.54228695133003,"scaled_rad":48.723049268440036},{"average":0.27096685703333107,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":166.35884111941803,"scaled_rad":55.145121492557365},{"average":0.27893117444975757,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":173.10859975012386,"scaled_rad":64.1447996668318},{"average":0.28596144958949055,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":179.06675759586435,"scaled_rad":72.08901012781914},{"average":0.2924671842780091,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":184.58036743420922,"scaled_rad":79.44048991227896},{"average":0.2018398672780022,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":107.77372059755187,"scaled_rad":-22.968372536597514},{"average":0.20433849687715935,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":109.89130906371011,"scaled_rad":-20.14492124838651},{"average":0.2035949625477447,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":109.26116375498076,"scaled_rad":-20.98511499335899},{"average":0.20685867943002975,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":112.02716365711275,"scaled_rad":-17.297115123849665},{"average":0.2147988851740217,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":118.75648764657988,"scaled_rad":-8.324683137893487},{"average":0.221103070342526,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":124.09928427632194,"scaled_rad":-1.2009542982374057},{"average":0.22597996971345408,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":128.23245626066702,"scaled_rad":4.309941680889352},{"average":0.22903660700988956,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":130.82295622366448,"scaled_rad":7.763941631552626},{"average":0.22837188442083678,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":130.25960386113428,"scaled_rad":7.012805148179041},{"average":0.22676156607249748,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":128.89485913769204,"scaled_rad":5.193145516922726},{"average":0.22529025949245574,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":127.64792688125432,"scaled_rad":3.530569175005752},{"average":0.22301853013656844,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":125.72263636044933,"scaled_rad":0.963515147265781},{"average":0.22098120115333586,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":123.99600014429367,"scaled_rad":-1.3386664742751009},{"average":0.21740975525760278,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":120.96919991793611,"scaled_rad":-5.374400109418531},{"average":0.21288488140684853,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":117.13436954515478,"scaled_rad":-10.487507273126965},{"average":0.20638866942122724,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":111.62883019706135,"scaled_rad":-17.828226403918194},{"average":0.20102192649560036,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":107.08051582346336,"scaled_rad":-23.892645568715523},{"average":0.20067289404614289,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":106.784710839189,"scaled_rad":-24.287052214414672},{"average":0.2037203708253657,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":109.36744726428546,"scaled_rad":-20.843403647619397},{"average":0.20924572835394642,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":114.05018750632453,"scaled_rad":-14.599749991567279},{"average":0.21446183765163787,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":118.47083988742904,"scaled_rad":-8.705546816761284},{"average":0.21702789052634458,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":120.64556957640099,"scaled_rad":-5.805907231465341},{"average":0.21805629406081534,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":121.51714152283364,"scaled_rad":-4.64381130288848},{"average":0.2191958232830861,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":122.48289248437865,"scaled_rad":-3.3561433541617873},{"average":0.22060875064259722,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":123.68034835420004,"scaled_rad":-1.7595355277332771},{"average":0.22245730556902432,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":125.24699856621325,"scaled_rad":0.3293314216176668},{"average":0.22472425312257086,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":127.16823650976244,"scaled_rad":2.8909820130165826},{"average":0.22786120486496975,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":129.8268029618847,"scaled_rad":6.435737282512946},{"average":0.23155130576483454,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":132.95416329858676,"scaled_rad":10.605551064782361},{"average":0.23542939100435642,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":136.24084035418568,"scaled_rad":14.987787138914229},{"average":0.2385544368821495,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":138.88931658662216,"scaled_rad":18.519088782162868},{"average":0.24047184518052583,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":140.5143200280796,"scaled_rad":20.68576003743948},{"average":0.23934303751369393,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":139.55765558425784,"scaled_rad":19.410207445677145},{"average":0.2370963564306833,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":137.6535934735216,"scaled_rad":16.87145796469548},{"average":0.23374581729386296,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":134.8140117148104,"scaled_rad":13.085348953080512},{"average":0.22934137774962132,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":131.08124941105655,"scaled_rad":8.108332548075396},{"average":0.22528313190690172,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":127.64188625283711,"scaled_rad":3.5225150037828143},{"average":0.19086476881577316,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":98.47232517407372,"scaled_rad":-35.37023310123503},{"average":0.195562650449574,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":102.45377963473851,"scaled_rad":-30.061627153681997},{"average":0.19718190730793025,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":103.82609974499395,"scaled_rad":-28.23186700667472},{"average":0.19953864694193557,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":105.82343647245092,"scaled_rad":-25.568751370065428},{"average":0.20299485942448683,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":108.7525763866309,"scaled_rad":-21.663231484492115},{"average":0.20636545443680562,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":111.60915549887085,"scaled_rad":-17.85445933483888},{"average":0.21221916511325548,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":116.5701750180741,"scaled_rad":-11.239766642567872},{"average":0.21348066000706134,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":117.63929188043014,"scaled_rad":-9.814277492759828},{"average":0.215056974249422,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":118.97521812567669,"scaled_rad":-8.033042499097746},{"average":0.22602030656713268,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":128.26664174223652,"scaled_rad":4.355522322981983},{"average":0.236939706643822,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":137.52083278662525,"scaled_rad":16.69444371550034},{"average":0.24050243836521668,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":140.5402477506465,"scaled_rad":20.720330334195324},{"average":0.24538974708220998,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":144.68224165528557,"scaled_rad":26.242988873714097},{"average":0.25063560006293384,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":149.12810180634193,"scaled_rad":32.17080240845593},{"average":0.25400331986902414,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":151.9822441814403,"scaled_rad":35.97632557525375},{"average":0.25520149831646594,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":152.99770035852157,"scaled_rad":37.330267144695426},{"average":0.25496695151596344,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":152.7989219562782,"scaled_rad":37.06522927503761},{"average":0.25401376393566494,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":151.99109552742047,"scaled_rad":35.98812736989393},{"average":0.2523868823642129,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":150.61231347317988,"scaled_rad":34.149751297573175},{"average":0.24979363265279814,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":148.4145344663945,"scaled_rad":31.219379288526},{"average":0.24704757838424704,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":146.08725360472138,"scaled_rad":28.11633813962851},{"average":0.24260438105431936,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":142.3216440794465,"scaled_rad":23.095525439261962},{"average":0.24200351180405438,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":141.81240741849462,"scaled_rad":22.416543224659478},{"average":0.2428802922900234,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":142.55547883855098,"scaled_rad":23.407305118067995},{"average":0.23677554871362375,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":137.38170894860883,"scaled_rad":16.508945264811757},{"average":0.2373013226481095,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":137.8273023330181,"scaled_rad":17.10306977735746},{"average":0.23922327960151551,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":139.45616075939637,"scaled_rad":19.274881012528482},{"average":0.24027039110660553,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":140.3435877100369,"scaled_rad":20.458116946715876},{"average":0.24027294966235624,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":140.34575608591365,"scaled_rad":20.461008114551532},{"average":0.24171973751732823,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":141.57190872402373,"scaled_rad":22.095878298698324},{"average":0.24384996640566586,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":143.37727760532673,"scaled_rad":24.50303680710229},{"average":0.24638315908033664,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":145.5241582763349,"scaled_rad":27.365544368446535},{"average":0.24935826390772167,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":148.04555947569932,"scaled_rad":30.72741263426576},{"average":0.25278219571500493,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":150.9473415191287,"scaled_rad":34.596455358838284},{"average":0.2562342174416457,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":153.87292976787435,"scaled_rad":38.49723969049913},{"average":0.25934852981431916,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":156.5123093552337,"scaled_rad":42.01641247364492},{"average":0.26134928087029363,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":158.20794577978202,"scaled_rad":44.27726103970937},{"average":0.2610041154645877,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":157.91541811490274,"scaled_rad":43.88722415320365},{"average":0.25933220237493515,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":156.49847185113418,"scaled_rad":41.99796246817891},{"average":0.25933220237493515,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":156.49847185113418,"scaled_rad":41.99796246817891},{"average":0.25933220237493515,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":156.49847185113418,"scaled_rad":41.99796246817891},{"average":0.25933220237493515,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":156.49847185113418,"scaled_rad":41.99796246817891},{"average":0.25933220237493515,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":156.49847185113418,"scaled_rad":41.99796246817891},{"average":0.25933220237493515,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":156.49847185113418,"scaled_rad":41.99796246817891},{"average":0.25933220237493515,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":156.49847185113418,"scaled_rad":41.99796246817891},{"average":0.25933220237493515,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":156.49847185113418,"scaled_rad":41.99796246817891},{"average":0.25923336589929374,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":156.41470794274034,"scaled_rad":41.886277256987114},{"average":0.2017105370759964,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":107.66411325751804,"scaled_rad":-23.114515656642624},{"average":0.20183759371184895,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":107.77179375034538,"scaled_rad":-22.97094166620616},{"average":0.2760517116470752,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":170.668255162135,"scaled_rad":60.89100688284668},{"average":0.28365575019555767,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":177.1126774694353,"scaled_rad":69.48356995924709},{"average":0.2684687604608179,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":164.24170439331516,"scaled_rad":52.322272524420214},{"average":0.2562506385685177,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":153.88684667211547,"scaled_rad":38.515795562820614},{"average":0.24660320580952755,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":145.710647868833,"scaled_rad":27.614197158444},{"average":0.2371855679672533,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":137.7292002465113,"scaled_rad":16.972266995348434},{"average":0.22867099857083648,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":130.51310308899815,"scaled_rad":7.350804118664172},{"average":0.223451811031864,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":126.08984189855474,"scaled_rad":1.4531225314063363},{"average":0.21972302231084717,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":122.92969363527084,"scaled_rad":-2.7604084863055505},{"average":0.21833029354319852,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":121.74935607108989,"scaled_rad":-4.334191905213487},{"average":0.2174920453721245,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":121.0389407860699,"scaled_rad":-5.281412285240123},{"average":0.21784883682339934,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":121.34132152401455,"scaled_rad":-4.878237967980596},{"average":0.21068266968563648,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":115.26799521642266,"scaled_rad":-12.976006378103108},{"average":0.1981305999336189,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":104.63011670003415,"scaled_rad":-27.159844399954466},{"average":0.18890183029075464,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":96.80873486770776,"scaled_rad":-37.58835350972299},{"average":0.1807070207191684,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":89.86363414649324,"scaled_rad":-46.84848780467567},{"average":0.17283956560173205,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":83.19596630956347,"scaled_rad":-55.738711587248716},{"average":0.1676673191301463,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":78.81248767149229,"scaled_rad":-61.583349771343606},{"average":0.1666143733163099,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":77.92011614446737,"scaled_rad":-62.773178474043505},{"average":0.1662344432751502,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":77.59812545269848,"scaled_rad":-63.20249939640203},{"average":0.1670369586627623,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":78.27825720543812,"scaled_rad":-62.29565705941583},{"average":0.1678254837032156,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":78.9465321396277,"scaled_rad":-61.40462381382973},{"average":0.168779575942991,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":79.755125267349,"scaled_rad":-60.32649964353466},{"average":0.16998920124482933,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":80.78028265298555,"scaled_rad":-58.95962312935261},{"average":0.17137346656718214,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":81.95344744768178,"scaled_rad":-57.39540340309097},{"average":0.1733233870789043,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":83.60600498839973,"scaled_rad":-55.19199334880035},{"average":0.176574777315669,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":86.36155805904095,"scaled_rad":-51.51792258794542},{"average":0.18193850816997773,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":90.9073197023404,"scaled_rad":-45.45690706354614},{"average":0.1890856495934026,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":96.96452171793793,"scaled_rad":-37.38063770941609},{"average":0.19534633268670337,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":102.27045034101907,"scaled_rad":-30.30606621197458},{"average":0.1995705287879357,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":105.85045633541601,"scaled_rad":-25.532724886111993},{"average":0.20223106372636565,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":108.10525956888877,"scaled_rad":-22.526320574814974},{"average":0.2042025381813736,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":109.77608407551381,"scaled_rad":-20.29855456598159},{"average":0.2258740934409406,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":128.14272612475972,"scaled_rad":4.190301499679634},{"average":0.22742800652500123,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":129.45966738941502,"scaled_rad":5.9462231858867085},{"average":0.22698443738110782,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":129.08374256111347,"scaled_rad":5.444990081484605},{"average":0.22699209163115147,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":129.09022953766052,"scaled_rad":5.453639383547369},{"average":0.22894572869038887,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":130.74593685222044,"scaled_rad":7.661249136293918},{"average":0.2301760180375706,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":131.78860701530033,"scaled_rad":9.051476020400429},{"average":0.2257964823961258,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":128.07695076797944,"scaled_rad":4.102601023972596},{"average":0.3092232296844355,"rel_min":0.08057293349722494,"rel_max":0.3106614420163459,"scaled_dist":198.78111511727576,"scaled_rad":98.37482015636772},{"average":0.3124454684044566,"rel_min":0.08057293349722494,"rel_max":0.3124454684044566,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.30844427877740493,"rel_min":0.08057293349722494,"rel_max":0.3124454684044566,"scaled_dist":196.63508238443492,"scaled_rad":95.5134431792466},{"average":0.2900769214940943,"rel_min":0.08057293349722494,"rel_max":0.3124454684044566,"scaled_dist":181.1885152794584,"scaled_rad":74.91802037261118},{"average":0.2692472380866844,"rel_min":0.08057293349722494,"rel_max":0.3124454684044566,"scaled_dist":163.67118289651793,"scaled_rad":51.561577195357245},{"average":0.251273614651097,"rel_min":0.08057293349722494,"rel_max":0.3124454684044566,"scaled_dist":148.55573780362766,"scaled_rad":31.407650404836886},{"average":0.2753900383286697,"rel_min":0.08057293349722494,"rel_max":0.3124454684044566,"scaled_dist":168.83715068854806,"scaled_rad":58.44953425139741},{"average":0.266363439069234,"rel_min":0.08057293349722494,"rel_max":0.3124454684044566,"scaled_dist":161.24596764354368,"scaled_rad":48.32795685805823},{"average":0.2804010415108939,"rel_min":0.08057293349722494,"rel_max":0.3124454684044566,"scaled_dist":173.05130059174664,"scaled_rad":64.06840078899552},{"average":0.2768215186864607,"rel_min":0.08057293349722494,"rel_max":0.3124454684044566,"scaled_dist":170.04099602487014,"scaled_rad":60.05466136649349},{"average":0.2769671879802485,"rel_min":0.08057293349722494,"rel_max":0.3124454684044566,"scaled_dist":170.1635008842748,"scaled_rad":60.21800117903308},{"average":0.2785849677723375,"rel_min":0.08057293349722494,"rel_max":0.3124454684044566,"scaled_dist":171.52402018675954,"scaled_rad":62.03202691567938},{"average":0.28007717108278063,"rel_min":0.08057293349722494,"rel_max":0.3124454684044566,"scaled_dist":172.77893226874815,"scaled_rad":63.70524302499754},{"average":0.2853040466805066,"rel_min":0.08057293349722494,"rel_max":0.3124454684044566,"scaled_dist":177.1746264028738,"scaled_rad":69.56616853716505},{"average":0.29516245518752837,"rel_min":0.08057293349722494,"rel_max":0.3124454684044566,"scaled_dist":185.4653437991293,"scaled_rad":80.62045839883908},{"average":0.305824551824335,"rel_min":0.08057293349722494,"rel_max":0.3124454684044566,"scaled_dist":194.4319462689264,"scaled_rad":92.57592835856852},{"average":0.3168895307614982,"rel_min":0.08057293349722494,"rel_max":0.3168895307614982,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.3260216139789966,"rel_min":0.08057293349722494,"rel_max":0.3260216139789966,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.3377081689465305,"rel_min":0.08057293349722494,"rel_max":0.3377081689465305,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.3543632930159107,"rel_min":0.08057293349722494,"rel_max":0.3543632930159107,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":0.37249716901834534,"rel_min":0.08057293349722494,"rel_max":0.37249716901834534,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.38102037415276907,"rel_min":0.08057293349722494,"rel_max":0.38102037415276907,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.3821984088324286,"rel_min":0.08057293349722494,"rel_max":0.3821984088324286,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.3863077804687302,"rel_min":0.08057293349722494,"rel_max":0.3863077804687302,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.392240555567237,"rel_min":0.08057293349722494,"rel_max":0.392240555567237,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.4008091494338029,"rel_min":0.08057293349722494,"rel_max":0.4008091494338029,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.4113486460524331,"rel_min":0.08057293349722494,"rel_max":0.4113486460524331,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":0.4236284563029798,"rel_min":0.08057293349722494,"rel_max":0.4236284563029798,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":0.43489534323266066,"rel_min":0.08057293349722494,"rel_max":0.43489534323266066,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.44180776131630856,"rel_min":0.08057293349722494,"rel_max":0.44180776131630856,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":0.44305571338173183,"rel_min":0.08057293349722494,"rel_max":0.44305571338173183,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.44121874868586275,"rel_min":0.08057293349722494,"rel_max":0.44305571338173183,"scaled_dist":199.0117927372754,"scaled_rad":98.68239031636722},{"average":0.4391644628361819,"rel_min":0.08057293349722494,"rel_max":0.44305571338173183,"scaled_dist":197.9066761278315,"scaled_rad":97.20890150377534},{"average":0.44542074584782304,"rel_min":0.08057293349722494,"rel_max":0.44542074584782304,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":0.45644731629414087,"rel_min":0.08057293349722494,"rel_max":0.45644731629414087,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.4674988098853971,"rel_min":0.08057293349722494,"rel_max":0.4674988098853971,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.47025385543175063,"rel_min":0.08057293349722494,"rel_max":0.47025385543175063,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.47158856855685716,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.47062996165344423,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":199.52194150462293,"scaled_rad":99.36258867283055},{"average":0.4670949860903105,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":197.7590446457647,"scaled_rad":97.01205952768629},{"average":0.45623773980225707,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":192.34452196089165,"scaled_rad":89.79269594785552},{"average":0.4392001268075503,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":183.84784245225475,"scaled_rad":78.46378993633965},{"average":0.4290258632331507,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":178.7739241249087,"scaled_rad":71.69856549987824},{"average":0.4338136129303987,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":181.16158105535595,"scaled_rad":74.88210807380793},{"average":0.4431336313180292,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":185.80948620961092,"scaled_rad":81.07931494614789},{"average":0.45269761966810673,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":190.5790594978522,"scaled_rad":87.43874599713627},{"average":0.4596323195977935,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":194.03740326991823,"scaled_rad":92.04987102655761},{"average":0.46619887501388835,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":197.3121528996695,"scaled_rad":96.416203866226},{"average":0.4656264483071974,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":197.0266829649757,"scaled_rad":96.03557728663424},{"average":0.45844064307433585,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":193.44311265532733,"scaled_rad":91.2574835404364},{"average":0.45398591480565054,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":191.22153393952698,"scaled_rad":88.29537858603595},{"average":0.4535407907572992,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":190.99955000424194,"scaled_rad":87.9994000056559},{"average":0.45851861341831696,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":193.4819965661305,"scaled_rad":91.30932875484066},{"average":0.4639464598121629,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":196.1888705422531,"scaled_rad":94.91849405633747},{"average":0.46665474267895607,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":197.5394946904259,"scaled_rad":96.71932625390122},{"average":0.4439745185166466,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":186.2288377368341,"scaled_rad":81.63845031577878},{"average":0.449082020118483,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":188.77595535325938,"scaled_rad":85.03460713767913},{"average":0.450625674125478,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":189.54577759148805,"scaled_rad":86.06103678865071},{"average":0.4482409130585821,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":188.35649418093138,"scaled_rad":84.47532557457518},{"average":0.44656402316406696,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":187.52022703427218,"scaled_rad":83.36030271236291},{"average":0.441419637004462,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":184.95471504145897,"scaled_rad":79.93962005527862},{"average":0.4377451800623315,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":183.12225863953995,"scaled_rad":77.49634485271991},{"average":0.43515221898573947,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":181.82914561642943,"scaled_rad":75.77219415523922},{"average":0.43399809483108914,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":181.25358241645026,"scaled_rad":75.00477655526697},{"average":0.4387814026811849,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":183.63902419201102,"scaled_rad":78.18536558934801},{"average":0.4472636731042272,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":187.86914335908986,"scaled_rad":83.82552447878646},{"average":0.446886488091136,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":187.68104070804992,"scaled_rad":83.57472094406654},{"average":0.4401501430706544,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":184.32161678426337,"scaled_rad":79.0954890456845},{"average":0.4256911536716247,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":177.11090017856856,"scaled_rad":69.48120023809139},{"average":0.4110520343557536,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":169.81035255172105,"scaled_rad":59.74713673562809},{"average":0.4012797273074587,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":164.93689046080777,"scaled_rad":53.24918728107701},{"average":0.4010018070029306,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":164.79829124756986,"scaled_rad":53.06438833009315},{"average":0.4047635289117224,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":166.67426680057437,"scaled_rad":55.56568906743249},{"average":0.42269850702948325,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":175.61846344997434,"scaled_rad":67.49128459996581},{"average":0.4369182005098888,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":182.70984287334755,"scaled_rad":76.9464571644634},{"average":0.4461851092414152,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":187.33126217381124,"scaled_rad":83.10834956508162},{"average":0.44866762096937907,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":188.56929396473726,"scaled_rad":84.7590586196497},{"average":0.4481703616668116,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":188.32131011113546,"scaled_rad":84.42841348151393},{"average":0.4429390998768874,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":185.71247312977113,"scaled_rad":80.94996417302815},{"average":0.43048322820071633,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":179.5007139082174,"scaled_rad":72.66761854428984},{"average":0.4167604958348335,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":172.65716963168467,"scaled_rad":63.54289284224623},{"average":0.41280244085331785,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":170.68328252285374,"scaled_rad":60.911043363804964},{"average":0.4187216348104221,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":173.63519216058293,"scaled_rad":64.84692288077724},{"average":0.4208540102658722,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":174.69861054217617,"scaled_rad":66.26481405623491},{"average":0.41833755196085276,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":173.4436495496216,"scaled_rad":64.5915327328288},{"average":0.4215895365897446,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":175.06541846568348,"scaled_rad":66.75389128757797},{"average":0.42104598798715837,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":174.7943500786402,"scaled_rad":66.39246677152028},{"average":0.4135084806159034,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":171.03538546033138,"scaled_rad":61.38051394710848},{"average":0.40681620073147345,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":167.6979368765559,"scaled_rad":56.930582502074515},{"average":0.3961110400101105,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":162.35925945935384,"scaled_rad":49.812345945805106},{"average":0.3833692424550819,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":156.00490863435002,"scaled_rad":41.339878179133336},{"average":0.3699446953988973,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":149.3100697551917,"scaled_rad":32.4134263402556},{"average":0.3691079045041441,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":148.89276105997294,"scaled_rad":31.85701474663057},{"average":0.38305162954997785,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":155.8465146701653,"scaled_rad":41.12868622688708},{"average":0.4054901539658507,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":167.03663564941442,"scaled_rad":56.04884753255254},{"average":0.41924089954419375,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":173.89415015102244,"scaled_rad":65.19220020136325},{"average":0.43158986419439316,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":180.05259470125543,"scaled_rad":73.40345960167389},{"average":0.44124041980500867,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":184.86533919364135,"scaled_rad":79.82045225818845},{"average":0.4489975539319094,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":188.73383195740246,"scaled_rad":84.97844260986992},{"average":0.4524280366147387,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":190.44461808248846,"scaled_rad":87.25949077665126},{"average":0.455427748594977,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":191.94057830427667,"scaled_rad":89.25410440570221},{"average":0.4571808263546745,"rel_min":0.08057293349722494,"rel_max":0.47158856855685716,"scaled_dist":192.8148404372701,"scaled_rad":90.41978724969346},{"average":0.48211270967846387,"rel_min":0.08057293349722494,"rel_max":0.48211270967846387,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.4780375488582789,"rel_min":0.08057293349722494,"rel_max":0.48211270967846387,"scaled_dist":198.02097723046649,"scaled_rad":97.36130297395528},{"average":0.5711440506965331,"rel_min":0.08057293349722494,"rel_max":0.5711440506965331,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.5568011248058725,"rel_min":0.08057293349722494,"rel_max":0.5711440506965331,"scaled_dist":194.29874599090493,"scaled_rad":92.39832798787322},{"average":0.5506443151888626,"rel_min":0.08057293349722494,"rel_max":0.5711440506965331,"scaled_dist":191.8514395082667,"scaled_rad":89.13525267768892},{"average":0.5470343207760039,"rel_min":0.08057293349722494,"rel_max":0.5711440506965331,"scaled_dist":190.41648158712712,"scaled_rad":87.22197544950282},{"average":0.5520526079476205,"rel_min":0.08057293349722494,"rel_max":0.5711440506965331,"scaled_dist":192.41123008363851,"scaled_rad":89.88164011151798},{"average":0.5659396431073039,"rel_min":0.08057293349722494,"rel_max":0.5711440506965331,"scaled_dist":197.93126940351982,"scaled_rad":97.24169253802637},{"average":0.5821648140478394,"rel_min":0.08057293349722494,"rel_max":0.5821648140478394,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.5935079763002764,"rel_min":0.08057293349722494,"rel_max":0.5935079763002764,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.6044030773647755,"rel_min":0.08057293349722494,"rel_max":0.6044030773647755,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.607284625747691,"rel_min":0.08057293349722494,"rel_max":0.607284625747691,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.6069919838192495,"rel_min":0.08057293349722494,"rel_max":0.607284625747691,"scaled_dist":199.89165766227387,"scaled_rad":99.8555435496985},{"average":0.6031721406258069,"rel_min":0.08057293349722494,"rel_max":0.607284625747691,"scaled_dist":198.4774695330172,"scaled_rad":97.96995937735625},{"average":0.6001355719935861,"rel_min":0.08057293349722494,"rel_max":0.607284625747691,"scaled_dist":197.35326649747594,"scaled_rad":96.47102199663459},{"average":0.599867616836508,"rel_min":0.08057293349722494,"rel_max":0.607284625747691,"scaled_dist":197.25406373361287,"scaled_rad":96.33875164481714},{"average":0.6019251739546176,"rel_min":0.08057293349722494,"rel_max":0.607284625747691,"scaled_dist":198.01581564444874,"scaled_rad":97.35442085926496},{"average":0.6083053158333638,"rel_min":0.08057293349722494,"rel_max":0.6083053158333638,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.6134657009876765,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.6114474654377225,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":199.26147255836406,"scaled_rad":99.0152967444854},{"average":0.6064770920849579,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":197.44267736556486,"scaled_rad":96.59023648741976},{"average":0.5862922769721264,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":190.05650290960796,"scaled_rad":86.74200387947724},{"average":0.5650120687882105,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":182.26949424854942,"scaled_rad":76.35932566473255},{"average":0.5408413050554881,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":173.42475246292307,"scaled_rad":64.56633661723075},{"average":0.517808129802901,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":164.99628533358646,"scaled_rad":53.32838044478194},{"average":0.4039784238326201,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":123.34289084535577,"scaled_rad":-2.2094788728589947},{"average":0.39044272880853015,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":118.3898108061435,"scaled_rad":-8.813585591808675},{"average":0.39015240910037463,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":118.28357490551957,"scaled_rad":-8.955233459307266},{"average":0.40192056646836655,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.58986470105435,"scaled_rad":-3.2135137319275486},{"average":0.4163486608937678,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":127.86949802428886,"scaled_rad":3.8259973657184787},{"average":0.42758713583990265,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":131.98196257286347,"scaled_rad":9.309283430484612},{"average":0.43364322756334883,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":134.19805173397816,"scaled_rad":12.264068978637539},{"average":0.43305552525837954,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.9829954291071,"scaled_rad":11.977327238809465},{"average":0.42949140970638017,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":132.67878832584157,"scaled_rad":10.238384434455412},{"average":0.4232081901990953,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.37958691297476,"scaled_rad":7.172782550633002},{"average":0.4109574490608855,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":125.89670655188276,"scaled_rad":1.1956087358436776},{"average":0.3918361834357663,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":118.89971386523487,"scaled_rad":-8.133714846353513},{"average":0.39026580846144093,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":118.32507082506838,"scaled_rad":-8.899905566575512},{"average":0.3934063183085375,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":119.47426904569315,"scaled_rad":-7.367641272409145},{"average":0.4047046300616344,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":123.60862951417776,"scaled_rad":-1.8551606477630003},{"average":0.42128477453419083,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":129.67575665379772,"scaled_rad":6.234342205063626},{"average":0.4396627903498118,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":136.4007739606057,"scaled_rad":15.201031947474263},{"average":0.4416353112255985,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":137.12257315594815,"scaled_rad":16.16343087459751},{"average":0.441263911615086,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":136.98666790733498,"scaled_rad":15.982223876446625},{"average":0.4395000737961478,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":136.34123153499934,"scaled_rad":15.121642046665755},{"average":0.4389737274396543,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":136.14862704535767,"scaled_rad":14.864836060476875},{"average":0.4345473521786143,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":134.5288955936294,"scaled_rad":12.705194124839181},{"average":0.4016151760326278,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.47811401010485,"scaled_rad":-3.362514653193557},{"average":0.3975729193903275,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":120.99894203905218,"scaled_rad":-5.334743947930434},{"average":0.3934701417298314,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":119.497623776535,"scaled_rad":-7.336501631286666},{"average":0.38903069721683287,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":117.87310992900895,"scaled_rad":-9.502520094654727},{"average":0.3898975164778961,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":118.1903027419333,"scaled_rad":-9.079596344088941},{"average":0.3985780343795434,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":121.36674103137125,"scaled_rad":-4.844345291505022},{"average":0.3882626510498313,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":117.59206088555766,"scaled_rad":-9.87725215258979},{"average":0.38377040922832306,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":115.94822706263041,"scaled_rad":-12.069030583159446},{"average":0.38655517433471454,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":116.96724857854181,"scaled_rad":-10.710335228610944},{"average":0.39645020923653274,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":120.58811176822495,"scaled_rad":-5.882517642366764},{"average":0.40593469732316434,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":124.05874467923795,"scaled_rad":-1.2550070943494234},{"average":0.4101970479337845,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":125.61845503707428,"scaled_rad":0.8246067160990265},{"average":0.4097637106324848,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":125.45988509785109,"scaled_rad":0.6131801304681233},{"average":0.40563479425659793,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":123.94900196635434,"scaled_rad":-1.4013307115275495},{"average":0.4018875076866346,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.57776759103335,"scaled_rad":-3.2296432119555334},{"average":0.4039271752998421,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":123.32413760924268,"scaled_rad":-2.2344831876764317},{"average":0.40261505330840947,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.84399638020273,"scaled_rad":-2.8746714930630617},{"average":0.40051793656547113,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.07660415831391,"scaled_rad":-3.8978611222481163},{"average":0.40515984724948717,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":123.77520590073547,"scaled_rad":-1.6330587990193806},{"average":0.41299190819826476,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.64117064670849,"scaled_rad":2.1882275289446227},{"average":0.4228323188452226,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.24204533148486,"scaled_rad":6.989393775313118},{"average":0.4341789073212512,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":134.39407156979408,"scaled_rad":12.525428759725429},{"average":0.4311935302510465,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.3016406639827,"scaled_rad":11.068854218643622},{"average":0.4264747904459561,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":131.57492505039707,"scaled_rad":8.766566733862732},{"average":0.42122375585595717,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":129.65342825495006,"scaled_rad":6.2045710066000765},{"average":0.4178299928177148,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":128.41155778338447,"scaled_rad":4.54874371117927},{"average":0.41879787454183925,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":128.76573210834874,"scaled_rad":5.020976144464953},{"average":0.4200293196880832,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":129.21635147901202,"scaled_rad":5.621801972016016},{"average":0.4123422141519757,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.4034298726631,"scaled_rad":1.871239830217462},{"average":0.412087676583312,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.31028763295292,"scaled_rad":1.7470501772705518},{"average":0.4157405460149235,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":127.6469722018179,"scaled_rad":3.5292962690905085},{"average":0.41993651040841273,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":129.18239003190706,"scaled_rad":5.5765200425427395},{"average":0.41964432875518465,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":129.0754727947905,"scaled_rad":5.433963726387333},{"average":0.4169951963035556,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":128.1060829670764,"scaled_rad":4.141443956101853},{"average":0.4120674639576482,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.30289128185774,"scaled_rad":1.737188375810291},{"average":0.40769112921193423,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":124.70147101970431,"scaled_rad":-0.39803864039427594},{"average":0.40402112026617354,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":123.3585146350764,"scaled_rad":-2.1886471532314715},{"average":0.4005260418279308,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.07957009494517,"scaled_rad":-3.893906540073118},{"average":0.3933455987935393,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":119.45205011883398,"scaled_rad":-7.397266508221378},{"average":0.38020352827252346,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":114.64300802267903,"scaled_rad":-13.809322636427964},{"average":0.3771009497481621,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":113.5076899077427,"scaled_rad":-15.323080123009731},{"average":0.366266041736155,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":109.54290150895994,"scaled_rad":-20.609464654720085},{"average":0.35767945732734413,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":106.40083604689092,"scaled_rad":-24.79888527081212},{"average":0.3425961537127244,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":100.88144380836978,"scaled_rad":-32.15807492217364},{"average":0.33114370711657226,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":96.69068119628444,"scaled_rad":-37.745758404954074},{"average":0.325951151404439,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.79058341744917,"scaled_rad":-40.27922211006778},{"average":0.3321689413826409,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":97.06584238082233,"scaled_rad":-37.245543492236905},{"average":0.34339459295046953,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":101.17361450547554,"scaled_rad":-31.768513992699297},{"average":0.353637933654129,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":104.92193228922062,"scaled_rad":-26.77075694770585},{"average":0.35497210335067825,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":105.41014137498527,"scaled_rad":-26.119811500019637},{"average":0.35169894573137617,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":104.21240371611314,"scaled_rad":-27.716795045182494},{"average":0.32890748882048354,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":95.87238792165277,"scaled_rad":-38.83681610446298},{"average":0.3386124896432894,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":99.42371245803062,"scaled_rad":-34.10171672262584},{"average":0.3475929692473065,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":102.70991491679212,"scaled_rad":-29.72011344427719},{"average":0.3550629459672009,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":105.44338316639734,"scaled_rad":-26.075489111470233},{"average":0.36009952370750614,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":107.28640435053664,"scaled_rad":-23.61812753261782},{"average":0.3627474775714923,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":108.25536290088242,"scaled_rad":-22.326182798823453},{"average":0.3616580968776431,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":107.85672878861818,"scaled_rad":-22.857694948509106},{"average":0.3671226148523775,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":109.85634497799029,"scaled_rad":-20.1915400293463},{"average":0.3775346891494463,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":113.6664069863188,"scaled_rad":-15.111457351574927},{"average":0.3925549692602572,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":119.1627372056262,"scaled_rad":-7.783017059165076},{"average":0.40257204331136776,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.82825784904827,"scaled_rad":-2.8956562012689915},{"average":0.4050911302314437,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":123.75006046935427,"scaled_rad":-1.6665860408610058},{"average":0.41242048889398575,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.43207273596155,"scaled_rad":1.9094303146153777},{"average":0.4180466377878999,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":128.49083408766805,"scaled_rad":4.6544454502240455},{"average":0.42424583359665813,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.7592889372256,"scaled_rad":7.679051916300779},{"average":0.4293577530367054,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":132.62987970448927,"scaled_rad":10.173172939318988},{"average":0.4628295440297583,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":144.87812108029712,"scaled_rad":26.50416144039616},{"average":0.47132217485020167,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":147.9858063614942,"scaled_rad":30.64774181532559},{"average":0.47931952538383654,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":150.912255075375,"scaled_rad":34.549673433833306},{"average":0.48907218578122774,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":154.4810195501628,"scaled_rad":39.30802606688371},{"average":0.5027607235370587,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":159.49002891419937,"scaled_rad":45.986705218932485},{"average":0.5092747431015321,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":161.87368636381015,"scaled_rad":49.16491515174684},{"average":0.5073013715050623,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":161.1515758665636,"scaled_rad":48.20210115541812},{"average":0.5045073527592652,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":160.12916819157073,"scaled_rad":46.838890922094265},{"average":0.4977621009376119,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":157.66089655144953,"scaled_rad":43.54786206859933},{"average":0.41322843179754587,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.72772108363226,"scaled_rad":2.303628111509653},{"average":0.3963689670347097,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":120.55838303043384,"scaled_rad":-5.922155959421531},{"average":0.3805911818875168,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":114.7848610549123,"scaled_rad":-13.620185260116955},{"average":0.366313785578471,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":109.5603722832312,"scaled_rad":-20.586170289025063},{"average":0.3547464203851962,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":105.32755782168196,"scaled_rad":-26.229922904424058},{"average":0.34578170855834245,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":102.04712522270171,"scaled_rad":-30.60383303639773},{"average":0.27104445524044257,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":74.69872553316827,"scaled_rad":-67.06836595577565},{"average":0.2653398120467549,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":72.61124097598852,"scaled_rad":-69.85167869868198},{"average":0.26295085940011304,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":71.73705803616562,"scaled_rad":-71.01725595177918},{"average":0.2623317577269708,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":71.51051184596068,"scaled_rad":-71.3193175387191},{"average":0.26221715214334507,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":71.46857453667373,"scaled_rad":-71.37523395110169},{"average":0.26270513482858576,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":71.64714071251068,"scaled_rad":-71.13714571665244},{"average":0.26273025511434844,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":71.65633291030835,"scaled_rad":-71.1248894529222},{"average":0.26181811355787366,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":71.32255543318061,"scaled_rad":-71.56992608909252},{"average":0.2607495202989764,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":70.93152801040986,"scaled_rad":-72.09129598612019},{"average":0.2633001153974624,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":71.86486033268365,"scaled_rad":-70.84685288975514},{"average":0.27602090823626296,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":76.51974543320354,"scaled_rad":-64.6403394223953},{"average":0.300062632007945,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":85.31726797710256,"scaled_rad":-52.91030936386325},{"average":0.33193006772886624,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":96.97843199485402,"scaled_rad":-37.36209067352799},{"average":0.3520182273896604,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":104.3292375843201,"scaled_rad":-27.56101655423987},{"average":0.37261578101070275,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":111.86644431921022,"scaled_rad":-17.511407574386396},{"average":0.392990190612682,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":119.32199657054967,"scaled_rad":-7.570671239267114},{"average":0.410971898231378,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":125.90199389751385,"scaled_rad":1.2026585300184536},{"average":0.4245679358220755,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.8771549278867,"scaled_rad":7.8362065705155715},{"average":0.43161027686936515,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.45413961973856,"scaled_rad":11.272186159651397},{"average":0.43149969611980327,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.41367510702597,"scaled_rad":11.218233476034612},{"average":0.4159725953229069,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":127.73188537350507,"scaled_rad":3.642513831340068},{"average":0.41269509206634175,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.53255752741704,"scaled_rad":2.043410036556054},{"average":0.4137169304679956,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.90647607253237,"scaled_rad":2.541968096709809},{"average":0.4181401888077909,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":128.52506695775307,"scaled_rad":4.700089277004082},{"average":0.422338514057042,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.06134868936547,"scaled_rad":6.748464919153946},{"average":0.4219277236450151,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":129.91102927196658,"scaled_rad":6.548039029288759},{"average":0.4134972869489228,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.82610251741563,"scaled_rad":2.43480335655417},{"average":0.40307723011872076,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":123.01311948246422,"scaled_rad":-2.6491740233810503},{"average":0.4027675590020115,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.89980237357817,"scaled_rad":-2.8002635018957847},{"average":0.4021448698777781,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.67194343715961,"scaled_rad":-3.1040754171205265},{"average":0.39499658773723556,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":120.05619200940023,"scaled_rad":-6.591743987466373},{"average":0.38412995175836057,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":116.07979348205751,"scaled_rad":-11.893608690589986},{"average":0.3798604022933608,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":114.51744886703162,"scaled_rad":-13.976734843957843},{"average":0.3890459056315797,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":117.87867510282356,"scaled_rad":-9.495099862901924},{"average":0.39022629753206717,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":118.31061269822202,"scaled_rad":-8.919183069037302},{"average":0.39418056924647815,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":119.75758858408626,"scaled_rad":-6.989881887884991},{"average":0.40168879186986944,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.50505205306182,"scaled_rad":-3.3265972625842437},{"average":0.4111182971772065,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":125.95556526529766,"scaled_rad":1.2740870203968768},{"average":0.41607282073471136,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":127.76856058565686,"scaled_rad":3.691414114209124},{"average":0.42129890295577105,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":129.68092662865234,"scaled_rad":6.241235504869792},{"average":0.42678132650744555,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":131.6870949570594,"scaled_rad":8.916126609412544},{"average":0.4303794110604543,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.00373224440875,"scaled_rad":10.671642992544975},{"average":0.43028605387891095,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":132.9695703050627,"scaled_rad":10.626093740083604},{"average":0.4320931818832954,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.63084773713308,"scaled_rad":11.507796982844098},{"average":0.435448860272054,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":134.85878199657049,"scaled_rad":13.145042662093942},{"average":0.44048812208973914,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":136.70278535783999,"scaled_rad":15.603713810453314},{"average":0.4454678726173186,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":138.52501191469676,"scaled_rad":18.033349219595664},{"average":0.45062354710200325,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.4116138463537,"scaled_rad":20.548818461804927},{"average":0.44701221549873194,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":139.0901291019571,"scaled_rad":18.78683880260948},{"average":0.4442837704795415,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":138.09171664226528,"scaled_rad":17.455622189687006},{"average":0.4348457820976385,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":134.63809924164244,"scaled_rad":12.850798988856582},{"average":0.4288672832033642,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":132.4504034133173,"scaled_rad":9.933871217756405},{"average":0.43452700453721255,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":134.52144983659272,"scaled_rad":12.695266448790278},{"average":0.4446992201137019,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":138.24374099613817,"scaled_rad":17.6583213281842},{"average":0.43436387658904335,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":134.46175687051476,"scaled_rad":12.615675827352987},{"average":0.42188364268166195,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":129.89489884502473,"scaled_rad":6.526531793366274},{"average":0.4195679474666894,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":129.0475227977832,"scaled_rad":5.396697063710917},{"average":0.42469777163582767,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.9246653938307,"scaled_rad":7.899553858440925},{"average":0.4327574884101667,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.87393561642622,"scaled_rad":11.831914155234955},{"average":0.437991676307141,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":135.78926774734742,"scaled_rad":14.385690329796546},{"average":0.4364549059465511,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":135.2269215520214,"scaled_rad":13.635895402695155},{"average":0.43897060704192303,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":136.14748520670884,"scaled_rad":14.863313608945106},{"average":0.45316524169244626,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":141.3416892299444,"scaled_rad":21.78891897325917},{"average":0.4724762480098592,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":148.40811321169414,"scaled_rad":31.21081761559219},{"average":0.48033729628796296,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":151.28468521219085,"scaled_rad":35.04624694958778},{"average":0.4869245927691977,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":153.6951566845097,"scaled_rad":38.26020891267959},{"average":0.4896394826213497,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":154.68860893882112,"scaled_rad":39.58481191842816},{"average":0.48072736479293604,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":151.42742191854165,"scaled_rad":35.23656255805551},{"average":0.469589600772471,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":147.35181024488614,"scaled_rad":29.802413659848156},{"average":0.45824040338541855,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":143.1988293348668,"scaled_rad":24.265105779822363},{"average":0.44637250769260506,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":138.8560425655941,"scaled_rad":18.474723420792117},{"average":0.4345153079083157,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":134.51716972101593,"scaled_rad":12.689559628021243},{"average":0.41563152262802655,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":127.60707757058651,"scaled_rad":3.4761034274486633},{"average":0.39293654403619227,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":119.30236582482804,"scaled_rad":-7.596845566895951},{"average":0.38134063688275893,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":115.05910708148244,"scaled_rad":-13.254523891356769},{"average":0.3715885054108251,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":111.49053615494763,"scaled_rad":-18.01261846006983},{"average":0.35993335528013726,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":107.22559879018061,"scaled_rad":-23.699201613092526},{"average":0.35207385397107366,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":104.3495928678543,"scaled_rad":-27.533876176194298},{"average":0.33735782774613504,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":98.96459744489718,"scaled_rad":-34.71387007347043},{"average":0.3730407193120028,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":112.02194083522362,"scaled_rad":-17.30407888636853},{"average":0.39773472801661924,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":121.0581522292664,"scaled_rad":-5.255797027644803},{"average":0.4172270964942317,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":128.19094157267315,"scaled_rad":4.254588763564186},{"average":0.4307391821219327,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.135382289724,"scaled_rad":10.847176386298656},{"average":0.43431729474204017,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":134.44471130202564,"scaled_rad":12.592948402700841},{"average":0.43500570897864105,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":134.69662084992464,"scaled_rad":12.928827799899494},{"average":0.4374329722990656,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":135.58482271033225,"scaled_rad":14.113096947109653},{"average":0.44172746348387365,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":137.15629418100215,"scaled_rad":16.208392241336213},{"average":0.45060540057355697,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.4049735365899,"scaled_rad":20.53996471545318},{"average":0.4631800355734649,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":145.0063754969308,"scaled_rad":26.67516732924102},{"average":0.4676016290567768,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":146.62435716574987,"scaled_rad":28.832476220999837},{"average":0.47512980979703046,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":149.3791238541076,"scaled_rad":32.50549847214347},{"average":0.48153437292085416,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":151.72272820630593,"scaled_rad":35.630304275074536},{"average":0.482185497055629,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":151.96099228873854,"scaled_rad":35.94798971831804},{"average":0.47747290379122687,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":150.23652586205753,"scaled_rad":33.648701149410016},{"average":0.4734625266639655,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":148.7690194751746,"scaled_rad":31.692025966899422},{"average":0.4699734330662534,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":147.4922649514494,"scaled_rad":29.989686601932533},{"average":0.4661487728857669,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":146.0927174614223,"scaled_rad":28.123623281896386},{"average":0.4614623626947903,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":144.37783213553575,"scaled_rad":25.837109514047654},{"average":0.4518454580952984,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.85874441037814,"scaled_rad":21.144992547170858},{"average":0.43627992975350205,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":135.16289298994266,"scaled_rad":13.550523986590179},{"average":0.41794720488282205,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":128.4544488753457,"scaled_rad":4.605931833794273},{"average":0.40117241239217977,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.31609471625336,"scaled_rad":-3.5785403783288814},{"average":0.3850556658007927,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":116.41853750203053,"scaled_rad":-11.441949997292625},{"average":0.3708664792589843,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":111.22632709038854,"scaled_rad":-18.364897212815293},{"average":0.3602390540967251,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":107.33746232609488,"scaled_rad":-23.550050231873485},{"average":0.34919269133568304,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":103.29529686652747,"scaled_rad":-28.93960417796339},{"average":0.3370037547478052,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":98.8350324763211,"scaled_rad":-34.886623364905205},{"average":0.32301824037913096,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":93.71735126864672,"scaled_rad":-41.71019830847105},{"average":0.31236855888768184,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":89.82034230638905,"scaled_rad":-46.90621025814794},{"average":0.3011438244062921,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":85.71290576868034,"scaled_rad":-52.38279230842622},{"average":0.2900960909177654,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":81.67023872253525,"scaled_rad":-57.77301503661968},{"average":0.27967193693861614,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":77.85575642902104,"scaled_rad":-62.858991427971944},{"average":0.24087016959554516,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":63.65713131438311,"scaled_rad":-81.79049158082252},{"average":0.23862679716314852,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":62.836220146124134,"scaled_rad":-82.88503980516782},{"average":0.237157178854706,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":62.2984467184684,"scaled_rad":-83.60207104204214},{"average":0.2363562229426708,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":62.00535510158947,"scaled_rad":-83.99285986454738},{"average":0.23599799488501705,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":61.87426968346408,"scaled_rad":-84.1676404220479},{"average":0.24298197941116423,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":64.42990013236692,"scaled_rad":-80.7601331568441},{"average":0.25491744615519657,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":68.79741299249972,"scaled_rad":-74.93678267666704},{"average":0.27387772847470815,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":75.735497496285,"scaled_rad":-65.68600333828665},{"average":0.2918462314478054,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":82.31066288322516,"scaled_rad":-56.91911615569978},{"average":0.31182314319143756,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":89.62075982515461,"scaled_rad":-47.172320233127195},{"average":0.3354961792400927,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":98.28336947404699,"scaled_rad":-35.62217403460403},{"average":0.36452448067768495,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":108.90561681095032,"scaled_rad":-21.459177585399573},{"average":0.39362256359176045,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":119.55339909361452,"scaled_rad":-7.262134541847331},{"average":0.4215568559672949,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":129.77531867207233,"scaled_rad":6.3670915627631075},{"average":0.43495229130283014,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":134.67707386520541,"scaled_rad":12.902765153607191},{"average":0.4478519973117949,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":139.39742817512425,"scaled_rad":19.196570900165653},{"average":0.45705383534963967,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.7646317230911,"scaled_rad":23.686175630788114},{"average":0.46677949902947247,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":146.32351736250143,"scaled_rad":28.431356483335236},{"average":0.46842501637088974,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":146.92565704453816,"scaled_rad":29.23420939271753},{"average":0.4712091766463721,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":147.94445723632117,"scaled_rad":30.59260964842821},{"average":0.47522850500380187,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":149.41523912249653,"scaled_rad":32.55365216332868},{"average":0.4786322803584614,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":150.6607733737575,"scaled_rad":34.214364498343315},{"average":0.47989302044349047,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":151.12211256163656,"scaled_rad":34.8294834155154},{"average":0.47900346718398074,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":150.79660075853724,"scaled_rad":34.39546767804964},{"average":0.47543792691445663,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":149.49187231226563,"scaled_rad":32.655829749687484},{"average":0.46828950727939367,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":146.8760705715106,"scaled_rad":29.16809409534747},{"average":0.45699232762782416,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.74212436985658,"scaled_rad":23.656165826475444},{"average":0.4446027147991351,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":138.20842706904332,"scaled_rad":17.611236092057766},{"average":0.43821822703930896,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":135.87216884015228,"scaled_rad":14.496225120203007},{"average":0.4717357283260278,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":148.13713685930875,"scaled_rad":30.849515812411624},{"average":0.4710620875219564,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":147.89063331336547,"scaled_rad":30.520844417820598},{"average":0.47583087819814684,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":149.63566390598615,"scaled_rad":32.84755187464819},{"average":0.4922149070686513,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":155.6310269971274,"scaled_rad":40.84136932950318},{"average":0.4985115131634676,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":157.93512692753447,"scaled_rad":43.91350257004592},{"average":0.5104587002845847,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":162.30692859335383,"scaled_rad":49.74257145780507},{"average":0.5122818417580004,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":162.97406579056192,"scaled_rad":50.63208772074921},{"average":0.513930988534173,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":163.5775335817802,"scaled_rad":51.436711442373564},{"average":0.5198377468299202,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":165.73897756814722,"scaled_rad":54.31863675752962},{"average":0.5273880952490122,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":168.5018560148871,"scaled_rad":58.00247468651611},{"average":0.5352349628709139,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":171.37323892645617,"scaled_rad":61.83098523527485},{"average":0.5427008036919108,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":174.10519373783475,"scaled_rad":65.47359165044631},{"average":0.5458724363753111,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":175.26578065323918,"scaled_rad":67.02104087098556},{"average":0.541730439502278,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":173.7501110110237,"scaled_rad":65.00014801469825},{"average":0.5253163910224268,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":167.74376292594047,"scaled_rad":56.991683901253936},{"average":0.5023011078530333,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":159.32184299790887,"scaled_rad":45.762457330545175},{"average":0.479937352254781,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":151.13833478068142,"scaled_rad":34.85111304090856},{"average":0.4762041240710343,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":149.77224475236508,"scaled_rad":33.02965966982009},{"average":0.4713246512124095,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":147.98671252997687,"scaled_rad":30.648950039969122},{"average":0.46774368325107335,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":146.67633867043097,"scaled_rad":28.901784893907944},{"average":0.4649512976927643,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":145.65452862329045,"scaled_rad":27.539371497720566},{"average":0.4584959946733637,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":143.29235715920566,"scaled_rad":24.389809545607534},{"average":0.45277824064387995,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":141.20007498956764,"scaled_rad":21.600099986090157},{"average":0.4446108298746542,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":138.21139659654074,"scaled_rad":17.615195462054288},{"average":0.4444719562944892,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":138.16057896533192,"scaled_rad":17.547438620442534},{"average":0.45065451450536675,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.42294566398058,"scaled_rad":20.563927551974075},{"average":0.45538080319965957,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.15242362204577,"scaled_rad":22.86989816272768},{"average":0.45652044013506027,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.56944786399538,"scaled_rad":23.42593048532717},{"average":0.454489214952171,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":141.82616716133413,"scaled_rad":22.434889548445483},{"average":0.45059540811944265,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.40131702505295,"scaled_rad":20.535089366737225},{"average":0.44508848032019016,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":138.3861819240244,"scaled_rad":17.848242565365894},{"average":0.44256311371212914,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":137.46208139458588,"scaled_rad":16.616108526114488},{"average":0.4455137128390155,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":138.54178610225605,"scaled_rad":18.055714803008073},{"average":0.4503432989308374,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.30906339584806,"scaled_rad":20.41208452779742},{"average":0.4157347389778426,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":127.64484724854425,"scaled_rad":3.526462998059003},{"average":0.41421999620041106,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":127.09056154676948,"scaled_rad":2.7874153956926193},{"average":0.41177073492879335,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.19431003595496,"scaled_rad":1.5924133812732464},{"average":0.4092035319134233,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":125.25490042385859,"scaled_rad":0.3398672318114393},{"average":0.40876622247045796,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":125.09487696964692,"scaled_rad":0.12650262619587238},{"average":0.4158924079087914,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":127.7025426113089,"scaled_rad":3.6033901484118473},{"average":0.42750094469227545,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":131.95042288080413,"scaled_rad":9.267230507738816},{"average":0.4262294931278077,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":131.4851640704082,"scaled_rad":8.64688542721089},{"average":0.36947964048013093,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":110.7188449506891,"scaled_rad":-19.041540065747853},{"average":0.37617420724357814,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":113.16856954541369,"scaled_rad":-15.77524060611509},{"average":0.3754832560335949,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":112.9157316497499,"scaled_rad":-16.112357800333456},{"average":0.3706342606472203,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":111.14135196582976,"scaled_rad":-18.478197378893668},{"average":0.3567550445396553,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":106.0625681915244,"scaled_rad":-25.249909077967487},{"average":0.3394538906166713,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":99.73160402612629,"scaled_rad":-33.69119463183162},{"average":0.319844912392146,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":92.55614399541581,"scaled_rad":-43.25847467277893},{"average":0.3246405538182204,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.31100000986014,"scaled_rad":-40.918666653519836},{"average":0.32455826215517086,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.28088724557882,"scaled_rad":-40.958817005894915},{"average":0.33183683151001014,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":96.9443143190549,"scaled_rad":-37.407580907926814},{"average":0.3441879689764409,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":101.46393243527778,"scaled_rad":-31.38142341962964},{"average":0.3583086013552918,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":106.63105700865692,"scaled_rad":-24.491923988457444},{"average":0.37070231013594923,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":111.16625313002575,"scaled_rad":-18.44499582663235},{"average":0.3776637906419133,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":113.7136487440736,"scaled_rad":-15.048468341235207},{"average":0.3791595302748386,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":114.26098067690127,"scaled_rad":-14.318692430798308},{"average":0.36184545952420666,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":107.92528989191848,"scaled_rad":-22.76628014410872},{"average":0.348663921037576,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":103.10180539052854,"scaled_rad":-29.197592812628614},{"average":0.3402253824198934,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":100.01391392186157,"scaled_rad":-33.31478143751792},{"average":0.34128920941671714,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":100.40319723932438,"scaled_rad":-32.79573701423416},{"average":0.3527464110464055,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":104.59569984788955,"scaled_rad":-27.205733536147278},{"average":0.365705893420667,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":109.33792796046433,"scaled_rad":-20.882762719380906},{"average":0.3672305916161272,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":109.89585662126206,"scaled_rad":-20.13885783831728},{"average":0.3263297488460433,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.92912254880297,"scaled_rad":-40.09450326826271},{"average":0.33016629869982195,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":96.33302079461701,"scaled_rad":-38.22263894051066},{"average":0.34580910818203164,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":102.057151492423,"scaled_rad":-30.59046467676933},{"average":0.38365604804015496,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":115.90637918430811,"scaled_rad":-12.124827754255875},{"average":0.4119236442709506,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.25026373534756,"scaled_rad":1.6670183137967456},{"average":0.4347168945174074,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":134.5909357602099,"scaled_rad":12.787914346946536},{"average":0.4338764535395728,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":134.283395480672,"scaled_rad":12.377860640895989},{"average":0.44470211161671674,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":138.2447990759664,"scaled_rad":17.65973210128854},{"average":0.4526422839576953,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":141.15032472943395,"scaled_rad":21.53376630591191},{"average":0.4934834920349909,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":156.0952368410725,"scaled_rad":41.460315788096665},{"average":0.5092371859546028,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":161.85994317925594,"scaled_rad":49.14659090567457},{"average":0.5262533541966684,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":168.08662331009907,"scaled_rad":57.44883108013207},{"average":0.5378490955026012,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":172.32982136532019,"scaled_rad":63.10642848709358},{"average":0.5487478642546854,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":176.31797815090556,"scaled_rad":68.42397086787409},{"average":0.5631903129868681,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":181.60286410655158,"scaled_rad":75.47048547540211},{"average":0.5570572043596979,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":179.3585923594789,"scaled_rad":72.47812314597186},{"average":0.5572077401797935,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":179.41367752240367,"scaled_rad":72.55157002987156},{"average":0.5523824257097717,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":177.64796333175067,"scaled_rad":70.19728444233422},{"average":0.5415496281313675,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":173.68394719819213,"scaled_rad":64.9119295975895},{"average":0.5249347776643222,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":167.60412018847035,"scaled_rad":56.8054935846271},{"average":0.5212650237305437,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":166.26125711968302,"scaled_rad":55.01500949291068},{"average":0.5189337090607165,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":165.40816548783897,"scaled_rad":53.877553983785276},{"average":0.5134274439466945,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":163.3932728814132,"scaled_rad":51.19103050855091},{"average":0.48335794809913857,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":152.3900241079562,"scaled_rad":36.52003214394159},{"average":0.46957263752516243,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":147.34560292996844,"scaled_rad":29.794137239957905},{"average":0.45675203631175365,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.6541952225829,"scaled_rad":23.538926963443856},{"average":0.44370763431138854,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":137.88089270235912,"scaled_rad":17.174523603145502},{"average":0.44619032421086885,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":138.78937665998262,"scaled_rad":18.385835546643477},{"average":0.45481381384877984,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":141.94494675208895,"scaled_rad":22.593262336118585},{"average":0.4657623261609392,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":145.95130606322246,"scaled_rad":27.93507475096328},{"average":0.4801936895337515,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":151.23213558348579,"scaled_rad":34.97618077798106},{"average":0.48734958834557607,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":153.85067415903663,"scaled_rad":38.46756554538214},{"average":0.48138173567420606,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":151.6668740740824,"scaled_rad":35.555832098776506},{"average":0.47248853902294213,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":148.41261082865836,"scaled_rad":31.216814438211145},{"average":0.45533209619703735,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.13460040114515,"scaled_rad":22.846133868193505},{"average":0.454819676625044,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":141.94709210185022,"scaled_rad":22.596122802466937},{"average":0.4525826196737574,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":141.1284919404046,"scaled_rad":21.50465592053945},{"average":0.4113727223273838,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.04866636801711,"scaled_rad":1.3982218240227837},{"average":0.40269712183285844,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.87402749198327,"scaled_rad":-2.834630010688983},{"average":0.41039292435149083,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":125.69013156147639,"scaled_rad":0.9201754153018555},{"average":0.4022657702391301,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.71618417732704,"scaled_rad":-3.0450877635639415},{"average":0.3613004324584524,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":107.72584962118148,"scaled_rad":-23.032200505091367},{"average":0.3375572377134223,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":99.03756699147993,"scaled_rad":-34.616577344693425},{"average":0.3242823124909563,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.17990973602235,"scaled_rad":-41.093453685303544},{"average":0.31188123724398087,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":89.64201802368355,"scaled_rad":-47.14397596842194},{"average":0.2949437400277337,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":83.4441257671943,"scaled_rad":-55.40783231040761},{"average":0.2779530561192882,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":77.22677104919048,"scaled_rad":-63.69763860107936},{"average":0.2682245974844646,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":73.66686265950756,"scaled_rad":-68.44418312065659},{"average":0.25262522745441207,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":67.95862764219754,"scaled_rad":-76.05516314373662},{"average":0.2393562251401849,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":63.10313774043103,"scaled_rad":-82.5291496794253},{"average":0.24435146384798795,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":64.93103184492185,"scaled_rad":-80.0919575401042},{"average":0.26541968606419103,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":72.64046905779078,"scaled_rad":-69.81270792294562},{"average":0.3197369246310563,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":92.51662832791733,"scaled_rad":-43.31116222944357},{"average":0.3366045968515189,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":98.68896971374622,"scaled_rad":-35.08137371500506},{"average":0.3505338603951117,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":103.78606721009996,"scaled_rad":-28.28524371986674},{"average":0.3598990222187371,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":107.2130353864689,"scaled_rad":-23.715952818041472},{"average":0.3645262116556304,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":108.9062502229986,"scaled_rad":-21.458333036001875},{"average":0.36848697532051583,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":110.3556016906304,"scaled_rad":-19.525864412492837},{"average":0.37777383007508303,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":113.75391517435214,"scaled_rad":-14.994779767530474},{"average":0.38969006162073655,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":118.11438935069583,"scaled_rad":-9.180814199072245},{"average":0.4047791537448578,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":123.6358997627439,"scaled_rad":-1.8188003163414805},{"average":0.4238826305151835,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.62638302217425,"scaled_rad":7.50184402956566},{"average":0.4417861511274589,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":137.17776959068544,"scaled_rad":16.237026120913924},{"average":0.461305988781982,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":144.32061065523453,"scaled_rad":25.760814206979376},{"average":0.4753007934053245,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":149.44169142051382,"scaled_rad":32.5889218940184},{"average":0.4696486317011352,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":147.373411271944,"scaled_rad":29.831215029258686},{"average":0.43248985181331423,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.77600008498337,"scaled_rad":11.701333446644469},{"average":0.42696806051305586,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":131.7554260234867,"scaled_rad":9.007234697982256},{"average":0.41843373236139264,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":128.6324825513666,"scaled_rad":4.843310068488762},{"average":0.4043044904749231,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":123.46220752429761,"scaled_rad":-2.050389967603195},{"average":0.3892016889323405,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":117.93568046206573,"scaled_rad":-9.41909271724569},{"average":0.37974396622217765,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":114.47484173241494,"scaled_rad":-14.033544356780084},{"average":0.381780928713672,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":115.22022187279846,"scaled_rad":-13.03970416960206},{"average":0.383189309437632,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":115.7355867978387,"scaled_rad":-12.352550936215067},{"average":0.37355408597160394,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":112.20979569970912,"scaled_rad":-17.053605733721184},{"average":0.36482496556343486,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":109.01557242734415,"scaled_rad":-21.312570096874452},{"average":0.36527626797137863,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":109.18071628914485,"scaled_rad":-21.092378281140185},{"average":0.3684103791262624,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":110.32757305374392,"scaled_rad":-19.56323592834147},{"average":0.37022418437296883,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":110.99129387092331,"scaled_rad":-18.678274838768914},{"average":0.3689217450493893,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":110.51469579417693,"scaled_rad":-19.313738941097455},{"average":0.3654893246624495,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":109.25867954421861,"scaled_rad":-20.988427274375198},{"average":0.3601964566912029,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":107.3218747734322,"scaled_rad":-23.570833635423725},{"average":0.3565747375645629,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":105.9965889508817,"scaled_rad":-25.337881398824408},{"average":0.359431214884379,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":107.04185192186792,"scaled_rad":-23.944197437509473},{"average":0.36221944876210227,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":108.06214275583157,"scaled_rad":-22.583809658891255},{"average":0.3631039382508244,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":108.38580158706895,"scaled_rad":-22.152264550574756},{"average":0.36535701235490187,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":109.21026286164044,"scaled_rad":-21.052982851146083},{"average":0.36787092269400706,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":110.13017122976125,"scaled_rad":-19.82643836031835},{"average":0.36846808055820673,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":110.34868758168568,"scaled_rad":-19.53508322441911},{"average":0.3623158887455921,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":108.09743277650324,"scaled_rad":-22.53675629799568},{"average":0.3498374912629111,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":103.53124674890547,"scaled_rad":-28.625004334792692},{"average":0.3422131342595283,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":100.7412865423499,"scaled_rad":-32.34495127686682},{"average":0.33904350207766687,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":99.58143166502872,"scaled_rad":-33.89142444662839},{"average":0.33250042833226584,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":97.18714249806969,"scaled_rad":-37.083810002573756},{"average":0.3304873327160686,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":96.45049589840366,"scaled_rad":-38.066005468795126},{"average":0.3435370982749357,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":101.22576109099174,"scaled_rad":-31.698985212011024},{"average":0.3438316603385826,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":101.33354938521394,"scaled_rad":-31.55526748638144},{"average":0.3526672130969704,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":104.56671915781082,"scaled_rad":-27.244374456252245},{"average":0.3596879002862963,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":107.13578011235471,"scaled_rad":-23.81895985019375},{"average":0.3662118640672945,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":109.52307642205258,"scaled_rad":-20.63589810392989},{"average":0.4036966434226286,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":123.23977970686705,"scaled_rad":-2.3469603908439467},{"average":0.4218868087922717,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":129.89605741126275,"scaled_rad":6.528076548350299},{"average":0.42789221472423716,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":132.09359925865562,"scaled_rad":9.458132344874116},{"average":0.4249607954829803,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":131.02091299433073,"scaled_rad":8.027883992440934},{"average":0.41291394077982646,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.6126402414882,"scaled_rad":2.1501869886509155},{"average":0.40736495347848384,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":124.58211442133583,"scaled_rad":-0.5571807715522539},{"average":0.4095981420043295,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":125.39929902038877,"scaled_rad":0.5323986938516896},{"average":0.4252186232430492,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":131.11525920482669,"scaled_rad":8.153678939768895},{"average":0.45074191386055235,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.4549274721433,"scaled_rad":20.606569962857748},{"average":0.4550954671870888,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.04801139158275,"scaled_rad":22.730681855443635},{"average":0.4475174754692731,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":139.27501750777938,"scaled_rad":19.033356677039166},{"average":0.4429509204170029,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":137.60399044658243,"scaled_rad":16.80532059544322},{"average":0.4254758734370263,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":131.20939406813466,"scaled_rad":8.279192090846209},{"average":0.4060075393762994,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":124.08539957348286,"scaled_rad":-1.2194672353562055},{"average":0.40426771463762945,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":123.44875024225185,"scaled_rad":-2.068333010330889},{"average":0.4002391440998019,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":121.97458639015856,"scaled_rad":-4.033884813121944},{"average":0.3967607042235156,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":120.70173035371783,"scaled_rad":-5.731026195042887},{"average":0.3908302127885252,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":118.53160176430355,"scaled_rad":-8.624530980928597},{"average":0.3850820469149088,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":116.42819107131591,"scaled_rad":-11.429078571578799},{"average":0.3889891795094845,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":117.85791746736031,"scaled_rad":-9.522776710186264},{"average":0.39271131666556836,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":119.21994898611115,"scaled_rad":-7.706734685185154},{"average":0.3977009174040033,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":121.04578000381632,"scaled_rad":-5.272293328244899},{"average":0.4067887476758679,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":124.37126500028018,"scaled_rad":-0.8383133329597854},{"average":0.41594700830898207,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":127.72252238714132,"scaled_rad":3.630029849521776},{"average":0.4270665956815017,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":131.79148272948672,"scaled_rad":9.05531030598226},{"average":0.4332120006977759,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":134.04025406075635,"scaled_rad":12.053672081008472},{"average":0.43190133363409877,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.56064522947003,"scaled_rad":11.414193639293359},{"average":0.42347878556701696,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.47860513946188,"scaled_rad":7.3048068526158545},{"average":0.41208406588485263,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.30896637989315,"scaled_rad":1.74528850652419},{"average":0.4035839800833154,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":123.19855311775508,"scaled_rad":-2.4019291763265755},{"average":0.3868698150657067,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":117.0823842048563,"scaled_rad":-10.556821060191623},{"average":0.3443679299864415,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":101.5297850778561,"scaled_rad":-31.29361989619187},{"average":0.29899313663081006,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":84.92591044466046,"scaled_rad":-53.4321194071194},{"average":0.2745694166072742,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":75.98860505202379,"scaled_rad":-65.34852659730163},{"average":0.26649077336014215,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":73.03240911675248,"scaled_rad":-69.29012117766337},{"average":0.27290843974926515,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":75.38080831115778,"scaled_rad":-66.15892225178963},{"average":0.2800885679881292,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":78.00821309499841,"scaled_rad":-62.65571587333545},{"average":0.2857925991859408,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":80.09547370619295,"scaled_rad":-59.872701725076084},{"average":0.2895357690875729,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":81.4652016802761,"scaled_rad":-58.04639775963189},{"average":0.2951428262977477,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":83.51697686411488,"scaled_rad":-55.31069751451349},{"average":0.30115203321376777,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":85.71590959525749,"scaled_rad":-52.378787206323366},{"average":0.3069228606913254,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":87.82761278729583,"scaled_rad":-49.563182950272235},{"average":0.3094886641553371,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":88.76651026537287,"scaled_rad":-48.31131964616951},{"average":0.31455106745740685,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":90.6189817270376,"scaled_rad":-45.8413576972832},{"average":0.3195544737229003,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":92.44986456368392,"scaled_rad":-43.40018058175478},{"average":0.3211560716610263,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":93.03593293801246,"scaled_rad":-42.61875608265005},{"average":0.32068948452330087,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":92.86519597664419,"scaled_rad":-42.846405364474435},{"average":0.3185331129012175,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":92.07612077810757,"scaled_rad":-43.89850562918993},{"average":0.3207795115572608,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":92.8981393241489,"scaled_rad":-42.802480901134814},{"average":0.324971573170456,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.43212902046751,"scaled_rad":-40.75716130604333},{"average":0.3266486270682081,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":95.04580878872879,"scaled_rad":-39.93892161502828},{"average":0.3300342874406466,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":96.28471427385033,"scaled_rad":-38.28704763486624},{"average":0.33726714502811384,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":98.93141416470854,"scaled_rad":-34.75811444705529},{"average":0.3482427355607228,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":102.94768213535069,"scaled_rad":-29.40309048619909},{"average":0.38398424858582747,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":116.02647671670196,"scaled_rad":-11.964697711064048},{"average":0.3813465980747095,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":115.06128844422796,"scaled_rad":-13.251615407696079},{"average":0.38072386827650184,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":114.83341462409271,"scaled_rad":-13.555447167876395},{"average":0.3866974135510886,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":117.01929778784815,"scaled_rad":-10.640936282869148},{"average":0.394447913988814,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":119.8554173180002,"scaled_rad":-6.859443575999734},{"average":0.40050946575430063,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.07350445743783,"scaled_rad":-3.9019940567495723},{"average":0.4068971823157099,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":124.41094419290418,"scaled_rad":-0.7854077427944333},{"average":0.4147390766329728,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":127.28050723664293,"scaled_rad":3.040676315523882},{"average":0.42782051233099955,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":132.0673613970551,"scaled_rad":9.423148529406745},{"average":0.4413481644860336,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":137.0174983310845,"scaled_rad":16.023331108112643},{"average":0.45173322114042125,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.81767384696232,"scaled_rad":21.090231795949762},{"average":0.45596684712215274,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.36687307953108,"scaled_rad":23.1558307727081},{"average":0.4532238542669565,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":141.36313716980538,"scaled_rad":21.81751622640718},{"average":0.4413753304633549,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":137.02743910322636,"scaled_rad":16.036585470968447},{"average":0.4293767448272405,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":132.63682931870858,"scaled_rad":10.182439091611457},{"average":0.4240992860301155,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.70566318506837,"scaled_rad":7.60755091342449},{"average":0.4241888116162222,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.738423039125,"scaled_rad":7.65123071883329},{"average":0.4259052109109224,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":131.36650036140264,"scaled_rad":8.488667148536877},{"average":0.43272168733288247,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.86083502565765,"scaled_rad":11.814446700876857},{"average":0.43108104408571596,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.26047890766398,"scaled_rad":11.013971876885307},{"average":0.4274300053040572,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":131.92446422355363,"scaled_rad":9.232618964738151},{"average":0.4225284537976561,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.13085282167745,"scaled_rad":6.841137095569906},{"average":0.4181622671074744,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":128.53314600986437,"scaled_rad":4.710861346485785},{"average":0.41006703846775977,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":125.5708810270268,"scaled_rad":0.761174702702391},{"average":0.40115924337578396,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.31127581392658,"scaled_rad":-3.5849655814312484},{"average":0.3900764725357894,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":118.25578764512223,"scaled_rad":-8.992283139837042},{"average":0.38114077199232466,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":114.98597106611066,"scaled_rad":-13.352038578519114},{"average":0.3801003874714875,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":114.60526599008075,"scaled_rad":-13.859645346559006},{"average":0.3860098451789217,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":116.7676977648192,"scaled_rad":-10.976402980241062},{"average":0.3882135965977328,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":117.57411052341584,"scaled_rad":-9.90118596877889},{"average":0.3830471716067764,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":115.6835746882592,"scaled_rad":-12.42190041565442},{"average":0.36191702679504656,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":107.95147830854778,"scaled_rad":-22.73136225526963},{"average":0.34996131888160914,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":103.57655865238624,"scaled_rad":-28.564588463485023},{"average":0.3393468247909991,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":99.69242571994586,"scaled_rad":-33.74343237340554},{"average":0.33270346079170704,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":97.26143761334679,"scaled_rad":-36.98474984887096},{"average":0.3292541959338623,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":95.99925751199689,"scaled_rad":-38.66765665067082},{"average":0.3203673042898504,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":92.74730144071586,"scaled_rad":-43.00359807904553},{"average":0.31645643760740805,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":91.3162086400617,"scaled_rad":-44.91172181325108},{"average":0.31298469307058546,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":90.0458026109678,"scaled_rad":-46.6055965187096},{"average":0.3159432943598683,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":91.12843552814375,"scaled_rad":-45.16208596247502},{"average":0.3161057626359924,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":91.1878871022257,"scaled_rad":-45.0828171970324},{"average":0.31309530290707577,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":90.08627776738095,"scaled_rad":-46.55162964349208},{"average":0.3104299987519725,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":89.11097027223006,"scaled_rad":-47.85203963702659},{"average":0.3042929614461349,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":86.86526091446555,"scaled_rad":-50.84631878071262},{"average":0.29927851179880754,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":85.03033700316223,"scaled_rad":-53.29288399578371},{"average":0.2941986630352407,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":83.17148177125428,"scaled_rad":-55.77135763832763},{"average":0.28901481750626384,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":81.27457128603437,"scaled_rad":-58.30057161862085},{"average":0.2851425693890261,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":79.85761007183496,"scaled_rad":-60.18985323755341},{"average":0.2813889594112016,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":78.48406178908614,"scaled_rad":-62.021250947885164},{"average":0.2810660181633333,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":78.3658887772232,"scaled_rad":-62.17881496370239},{"average":0.2913694223786276,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":82.13618543830219,"scaled_rad":-57.15175274893042},{"average":0.31152535583926827,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":89.51179130988189,"scaled_rad":-47.31761158682417},{"average":0.3375888046447176,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":99.04911819273113,"scaled_rad":-34.60117574302518},{"average":0.345927728089035,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":102.10055775213748,"scaled_rad":-30.532589663816708},{"average":0.34609343323885927,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":102.16119378660254,"scaled_rad":-30.45174161786329},{"average":0.34998172723829607,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":103.58402662680197,"scaled_rad":-28.554631164264038},{"average":0.3615975047947851,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":107.83455649265522,"scaled_rad":-22.887258009793044},{"average":0.3774995024594751,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":113.65353121662747,"scaled_rad":-15.128625044496715},{"average":0.38604246451865937,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":116.77963407102732,"scaled_rad":-10.96048790529693},{"average":0.3967529909225071,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":120.69890784647357,"scaled_rad":-5.734789538035244},{"average":0.4058974340651476,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":124.04510903665364,"scaled_rad":-1.2731879511284774},{"average":0.41027892783529235,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":125.64841712657538,"scaled_rad":0.8645561687671659},{"average":0.4203900411048779,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":129.34834928526152,"scaled_rad":5.7977990470153316},{"average":0.43266825658138885,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.84128325618943,"scaled_rad":11.788377674919218},{"average":0.4484542755992152,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":139.61781822958122,"scaled_rad":19.49042430610828},{"average":0.45452358660336867,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":141.8387446861054,"scaled_rad":22.451659581473848},{"average":0.4537491015741215,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":141.55533948731764,"scaled_rad":22.073785983090175},{"average":0.584137248939494,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":189.26791936710222,"scaled_rad":85.69055915613626},{"average":0.5843603238057218,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":189.34954854574403,"scaled_rad":85.79939806099202},{"average":0.559380675771125,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":180.20881392912412,"scaled_rad":73.61175190549878},{"average":0.5571540598185446,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":179.3940344139171,"scaled_rad":72.52537921855611},{"average":0.469392230174133,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":147.2795869590323,"scaled_rad":29.706115945376354},{"average":0.4725799587069322,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":148.44606378479813,"scaled_rad":31.261418379730827},{"average":0.4913688705088188,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":155.32143914149884,"scaled_rad":40.42858552199843},{"average":0.4986479792830556,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":157.98506360324689,"scaled_rad":43.98008480432915},{"average":0.5125036284523726,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":163.05522359198275,"scaled_rad":50.74029812264365},{"average":0.5233402590702746,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":167.0206423392521,"scaled_rad":56.02752311900278},{"average":0.5219892117339607,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":166.52625726470532,"scaled_rad":55.368343019607096},{"average":0.5094982140698978,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":161.9554604870292,"scaled_rad":49.27394731603894},{"average":0.48893756213450523,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":154.43175708553127,"scaled_rad":39.242342780708356},{"average":0.46428649388483645,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":145.41125877529376,"scaled_rad":27.21501170039167},{"average":0.45667568296079186,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.62625544868118,"scaled_rad":23.501673931574885},{"average":0.45469710989661505,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":141.90224159251378,"scaled_rad":22.53632212335168},{"average":0.44835402334741303,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":139.58113319594213,"scaled_rad":19.44151092792282},{"average":0.45562154799126664,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.2405187083883,"scaled_rad":22.987358277851058},{"average":0.4698862813235612,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":147.46037375145244,"scaled_rad":29.947165001936554},{"average":0.49365958102768465,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":156.15967260689644,"scaled_rad":41.54623014252857},{"average":0.510829782866782,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":162.44271783265847,"scaled_rad":49.923623776877946},{"average":0.5107522172556241,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":162.41433445968266,"scaled_rad":49.885779279576866},{"average":0.5126837926463605,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":163.12115058512452,"scaled_rad":50.828200780166014},{"average":0.5100796990165027,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":162.1682416908762,"scaled_rad":49.55765558783489},{"average":0.5117882126692879,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":162.79343344167071,"scaled_rad":50.39124458889427},{"average":0.5043945832759005,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":160.08790276145487,"scaled_rad":46.783870348606484},{"average":0.5048365792796027,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":160.24964115608128,"scaled_rad":46.99952154144168},{"average":0.5100142388483723,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":162.14428802971926,"scaled_rad":49.52571737295898},{"average":0.511450837186554,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":162.66997854953001,"scaled_rad":50.22663806603998},{"average":0.5103626186823155,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":162.27176971414676,"scaled_rad":49.695692952195685},{"average":0.5059307530261321,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":160.65002917706724,"scaled_rad":47.53337223608966},{"average":0.49487509868778234,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":156.6044636759051,"scaled_rad":42.139284901206764},{"average":0.4795810872327692,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":151.0079676908456,"scaled_rad":34.67729025446076},{"average":0.46958098390725606,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":147.34865709885108,"scaled_rad":29.79820946513476},{"average":0.45186940329990877,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.86750661392804,"scaled_rad":21.156675485237372},{"average":0.4320654908763259,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.6207148423211,"scaled_rad":11.494286456428114},{"average":0.41334976763990544,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.7721211781795,"scaled_rad":2.362828237572643},{"average":0.3889615527382403,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":117.84780807815245,"scaled_rad":-9.536255895796756},{"average":0.35993023812883645,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":107.22445813948926,"scaled_rad":-23.70072248068101},{"average":0.35302795901466244,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":104.698725929607,"scaled_rad":-27.068365427190685},{"average":0.3644183294837752,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":108.86677319348132,"scaled_rad":-21.510969075358247},{"average":0.38678698985924626,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":117.0520762024868,"scaled_rad":-10.597231730017626},{"average":0.4100164946323296,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":125.55238565889617,"scaled_rad":0.7365142118615609},{"average":0.42468774352969985,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.92099583624946,"scaled_rad":7.8946611149992805},{"average":0.436654870654509,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":135.30009409334787,"scaled_rad":13.733458791130488},{"average":0.44557271150210087,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":138.56337532245854,"scaled_rad":18.084500429944683},{"average":0.4521964384008835,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.98717767831573,"scaled_rad":21.316236904420947},{"average":0.46470165077344816,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":145.5631760055848,"scaled_rad":27.41756800744642},{"average":0.47521866411866326,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":149.41163807418232,"scaled_rad":32.54885076557639},{"average":0.4800201216237144,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":151.1686223505766,"scaled_rad":34.89149646743547},{"average":0.48188396472838796,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":151.85065338493075,"scaled_rad":35.80087117990763},{"average":0.4928773200918531,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":155.8734219917764,"scaled_rad":41.16456265570187},{"average":0.5170841483755058,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":164.73136078036552,"scaled_rad":52.975147707154036},{"average":0.5205678022884859,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":166.00612477506226,"scaled_rad":54.67483303341632},{"average":0.5195133534100578,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":165.62027316693894,"scaled_rad":54.16036422258523},{"average":0.5101362098849229,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":162.188920559148,"scaled_rad":49.5852274121973},{"average":0.4966713918666505,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":157.26177634976412,"scaled_rad":43.01570179968547},{"average":0.47324235345890275,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":148.68845209350525,"scaled_rad":31.584602791340302},{"average":0.4599170496799802,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":143.812359950002,"scaled_rad":25.083146600002635},{"average":0.44430141387182537,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":138.09817284078258,"scaled_rad":17.464230454376747},{"average":0.4231642178098213,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.36349621625016,"scaled_rad":7.151328288333502},{"average":0.3977746003878392,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":121.07274261754377,"scaled_rad":-5.2363431766083295},{"average":0.3751679705448975,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":112.80036008900322,"scaled_rad":-16.266186547995716},{"average":0.3563499977759585,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":105.9143505317261,"scaled_rad":-25.44753262436521},{"average":0.3378873448431735,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":99.15836219499646,"scaled_rad":-34.45551707333806},{"average":0.32486462077673095,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.39299222213076,"scaled_rad":-40.80934370382566},{"average":0.31378528567443875,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":90.33876128347256,"scaled_rad":-46.21498495536993},{"average":0.2863848008284414,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":80.31217644140071,"scaled_rad":-59.583764744799055},{"average":0.27844748351251436,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":77.40769551947957,"scaled_rad":-63.45640597402725},{"average":0.27819821683651375,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":77.31648204317547,"scaled_rad":-63.57802394243272},{"average":0.27633960623946663,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":76.63636572609543,"scaled_rad":-64.48484569853942},{"average":0.2729986207628488,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":75.41380800400711,"scaled_rad":-66.11492266132387},{"average":0.25899684713720394,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":70.2901770906833,"scaled_rad":-72.9464305457556},{"average":0.2541756668927527,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":68.52597572594095,"scaled_rad":-75.29869903207874},{"average":0.2536278675689843,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":68.32552101037427,"scaled_rad":-75.56597198616765},{"average":0.2565851993419899,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":69.4076893769142,"scaled_rad":-74.12308083078106},{"average":0.2713417873537611,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":74.80752746412739,"scaled_rad":-66.92329671449683},{"average":0.2788456247845555,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":77.55338627151143,"scaled_rad":-63.26215163798477},{"average":0.29165240437131784,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":82.23973626867742,"scaled_rad":-57.01368497509678},{"average":0.30685937820924186,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":87.80438281541127,"scaled_rad":-49.59415624611832},{"average":0.3232602282363706,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":93.80590122661283,"scaled_rad":-41.59213169784957},{"average":0.34182512779007296,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":100.59930439104372,"scaled_rad":-32.53426081194172},{"average":0.34990363065085134,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":103.55544895511872,"scaled_rad":-28.592734726508382},{"average":0.3566010661183217,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":106.00622328689856,"scaled_rad":-25.325035617468586},{"average":0.35942253509390587,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":107.03867574976441,"scaled_rad":-23.948432333647474},{"average":0.35988145292742035,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":107.20660630351682,"scaled_rad":-23.724524928644257},{"average":0.3673944448667168,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":109.9558149952806,"scaled_rad":-20.05891333962589},{"average":0.3840616071963832,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":116.05478434251083,"scaled_rad":-11.926954209985581},{"average":0.3992023944126525,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":121.59521139892685,"scaled_rad":-4.5397181347642},{"average":0.40035680831890585,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.01764293760117,"scaled_rad":-3.976476083198463},{"average":0.3822184255277468,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":115.38031389121026,"scaled_rad":-12.826248145053},{"average":0.3274508699682559,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":95.33937134962831,"scaled_rad":-39.547504867162274},{"average":0.3220691832466559,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":93.37006537526865,"scaled_rad":-42.17324616630849},{"average":0.316642718143263,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":91.38437376953564,"scaled_rad":-44.82083497395247},{"average":0.31505401708191083,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":90.8030247142227,"scaled_rad":-45.59596704770307},{"average":0.310893987982665,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":89.28075658854867,"scaled_rad":-47.62565788193511},{"average":0.301757073077151,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":85.93731018569024,"scaled_rad":-52.083586419079694},{"average":0.3045792961331165,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":86.9700385871376,"scaled_rad":-50.706615217149874},{"average":0.3205888373757039,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":92.82836643986168,"scaled_rad":-42.89551141351775},{"average":0.3501340662534908,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":103.6397716280015,"scaled_rad":-28.480304495998013},{"average":0.3880902844671745,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":117.52898725110703,"scaled_rad":-9.961350331857318},{"average":0.42440790526913424,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.8185953832141,"scaled_rad":7.758127177618803},{"average":0.4795533312410654,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":150.99781101634665,"scaled_rad":34.6637480217955},{"average":0.4934865181451236,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":156.09634417731704,"scaled_rad":41.461792236422696},{"average":0.50263423136373,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":159.4437419774949,"scaled_rad":45.92498930332653},{"average":0.5058334294481133,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":160.61441582505452,"scaled_rad":47.48588776673935},{"average":0.509502647327939,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":161.95708273707797,"scaled_rad":49.27611031610394},{"average":0.515491197751366,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":164.14845669410803,"scaled_rad":52.197942258810684},{"average":0.520522111471097,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":165.9894052586147,"scaled_rad":54.652540344819585},{"average":0.5171567820248076,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":164.757939413963,"scaled_rad":53.01058588528397},{"average":0.5152807190950107,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":164.07143681226094,"scaled_rad":52.09524908301458},{"average":0.5105951041560433,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":162.35684249077764,"scaled_rad":49.80912332103682},{"average":0.5078506696822396,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":161.35257905347868,"scaled_rad":48.47010540463822},{"average":0.5043951436599722,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":160.08810782127298,"scaled_rad":46.78414376169732},{"average":0.4934441149661433,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":156.08082769744416,"scaled_rad":41.4411035965922},{"average":0.4668241293783778,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":146.33984882460314,"scaled_rad":28.45313176613749},{"average":0.4178238236069083,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":128.40930030086517,"scaled_rad":4.545733734486873},{"average":0.39221230924927764,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":119.03734856044778,"scaled_rad":-7.950201919402986},{"average":0.3602420282945686,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":107.3385506662167,"scaled_rad":-23.54859911171107},{"average":0.3278942224031551,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":95.50160609943075,"scaled_rad":-39.33119186742569},{"average":0.3243063917756612,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.18872100313631,"scaled_rad":-41.0817053291516},{"average":0.32761361521331755,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":95.39892427419974,"scaled_rad":-39.46810096773369},{"average":0.335393937425257,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":98.24595640502217,"scaled_rad":-35.672058126637125},{"average":0.3421083186272198,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":100.70293164330253,"scaled_rad":-32.39609114226329},{"average":0.34733324260440973,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":102.61487385327125,"scaled_rad":-29.846834862305002},{"average":0.3307612946862884,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":96.55074605650665,"scaled_rad":-37.932338591324466},{"average":0.33590378857768327,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":98.43252484953553,"scaled_rad":-35.423300200619295},{"average":0.3296055611051249,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":96.12783161278432,"scaled_rad":-38.49622451628758},{"average":0.3154296463211532,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":90.94047769936493,"scaled_rad":-45.412696400846755},{"average":0.3056746463096112,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":87.3708570959388,"scaled_rad":-50.17219053874828},{"average":0.30493536431497914,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":87.1003336477934,"scaled_rad":-50.53288846960879},{"average":0.31448798683041224,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":90.59589880489199,"scaled_rad":-45.8721349268107},{"average":0.32921077678829114,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":95.98336926223466,"scaled_rad":-38.68884098368713},{"average":0.34275589267970563,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":100.93989665378562,"scaled_rad":-32.080137794952506},{"average":0.3534513170303134,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":104.85364417599399,"scaled_rad":-26.861807765341354},{"average":0.36575930677511964,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":109.3574733638807,"scaled_rad":-20.85670218149241},{"average":0.3642789690142958,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":108.81577739619087,"scaled_rad":-21.57896347174551},{"average":0.3587756281849784,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":106.80195486530782,"scaled_rad":-24.264060179589592},{"average":0.3514833318608315,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":104.13350471931457,"scaled_rad":-27.82199370758056},{"average":0.3450731940347434,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":101.78786043148968,"scaled_rad":-30.94951942468046},{"average":0.343338561137629,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":101.15311093670812,"scaled_rad":-31.795852084389196},{"average":0.3442684078139117,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":101.49336720013804,"scaled_rad":-31.342177066482634},{"average":0.34660065212793517,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":102.34679901415252,"scaled_rad":-30.204267981129988},{"average":0.35353259531700093,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":104.88338611822134,"scaled_rad":-26.822151842371568},{"average":0.3582426196338835,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":106.60691249692857,"scaled_rad":-24.524116670761913},{"average":0.3568726058433704,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":106.10558707941887,"scaled_rad":-25.192550560774862},{"average":0.35037108369437525,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":103.72650277503907,"scaled_rad":-28.36466296661459},{"average":0.3374858754914957,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":99.0114536078414,"scaled_rad":-34.6513951895448},{"average":0.3239238857546109,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.04875161594408,"scaled_rad":-41.268331178741235},{"average":0.30501683268373486,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":87.13014514623461,"scaled_rad":-50.49313980502053},{"average":0.2656866291229823,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":72.73815080473855,"scaled_rad":-69.68246559368194},{"average":0.2629323178847714,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":71.73027318992227,"scaled_rad":-71.02630241343698},{"average":0.27249183408941957,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":75.22836093595232,"scaled_rad":-66.36218541873023},{"average":0.2884194045548112,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":81.0566934452822,"scaled_rad":-58.5910754062904},{"average":0.3022108086324559,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":86.10334440248235,"scaled_rad":-51.86220746335688},{"average":0.32126199541631595,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":93.07469332948627,"scaled_rad":-42.567075560685},{"average":0.3294737849480332,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":96.07961112228321,"scaled_rad":-38.560518503622404},{"average":0.33524998004755213,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":98.19327847361646,"scaled_rad":-35.74229536851139},{"average":0.3472519933422517,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":102.58514253191099,"scaled_rad":-29.88647662411867},{"average":0.35980077894422613,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":107.17708549242201,"scaled_rad":-23.763886010103988},{"average":0.37591874583967017,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":113.07508924918702,"scaled_rad":-15.899881001083969},{"average":0.39416624145928014,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":119.75234565591373,"scaled_rad":-6.996872458781695},{"average":0.401171194924409,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.31564921158567,"scaled_rad":-3.579134384552475},{"average":0.40379468827697745,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":123.27565699356407,"scaled_rad":-2.299124008581231},{"average":0.4120078049728849,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.28106043194092,"scaled_rad":1.7080805759212012},{"average":0.41559112856154284,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":127.5922962797812,"scaled_rad":3.456395039708241},{"average":0.41718923839373456,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":128.17708826099903,"scaled_rad":4.2361176813320185},{"average":0.42003004515479353,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":129.2166169470708,"scaled_rad":5.6221559294276915},{"average":0.42935753937202187,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":132.62980151875314,"scaled_rad":10.173068691670863},{"average":0.4392765108547263,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":136.25942375633028,"scaled_rad":15.012565008440362},{"average":0.45032923867065827,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.3039183631094,"scaled_rad":20.40522448414586},{"average":0.4523516958054191,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":141.0439905977836,"scaled_rad":21.391987463711445},{"average":0.46308803975684537,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":144.972711718146,"scaled_rad":26.630282290861345},{"average":0.4769259321626153,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":150.03637402272682,"scaled_rad":33.381832030302405},{"average":0.4896346790205966,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":154.6868511702718,"scaled_rad":39.58246822702904},{"average":0.4942169007787734,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":156.3636111065201,"scaled_rad":41.818148142026786},{"average":0.497898745186489,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":157.71089840952786,"scaled_rad":43.61453121270381},{"average":0.5075155210515407,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":161.22993902724215,"scaled_rad":48.306585369656204},{"average":0.5222534550931419,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":166.62295111792272,"scaled_rad":55.49726815723028},{"average":0.5321857261021714,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":170.25744001496983,"scaled_rad":60.34325335329308},{"average":0.5304549630535277,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":169.62410660330633,"scaled_rad":59.49880880440844},{"average":0.5458687061057146,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":175.26441564583862,"scaled_rad":67.01922086111816},{"average":0.5474455090157001,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":175.84141084300592,"scaled_rad":67.78854779067453},{"average":0.5496538186605923,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":176.64949158086597,"scaled_rad":68.86598877448793},{"average":0.5501518846472349,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":176.83174751174056,"scaled_rad":69.10899668232071},{"average":0.5486093644174552,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":176.26729728243168,"scaled_rad":68.35639637657556},{"average":0.5448064691430862,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":174.8757141652612,"scaled_rad":66.50095222034824},{"average":0.5065492600861455,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":160.87635778210839,"scaled_rad":47.83514370947782},{"average":0.4855616073333674,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":153.19640313369956,"scaled_rad":37.595204178266044},{"average":0.46331786689267535,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":145.0568117364253,"scaled_rad":26.742415648567032},{"average":0.4521082188789932,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.95489574878303,"scaled_rad":21.273194331710698},{"average":0.4483560397639729,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":139.58187105776568,"scaled_rad":19.442494743687547},{"average":0.4471650609828658,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":139.14605943395705,"scaled_rad":18.86141257860939},{"average":0.4469600723284047,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":139.07104849356062,"scaled_rad":18.76139799141413},{"average":0.44384950690712976,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":137.93280775517513,"scaled_rad":17.243743673566854},{"average":0.4363688335064622,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":135.19542529828843,"scaled_rad":13.593900397717903},{"average":0.4260572979227968,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":131.42215314771306,"scaled_rad":8.562870863617405},{"average":0.41088906331491226,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":125.87168234198856,"scaled_rad":1.1622431226514038},{"average":0.38711831443248207,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":117.17331690178403,"scaled_rad":-10.435577464287974},{"average":0.3510723696662146,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":103.98312244198007,"scaled_rad":-28.022503410693247},{"average":0.32571892425498283,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.70560516871593,"scaled_rad":-40.39252644171209},{"average":0.3254800817735915,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.61820618957302,"scaled_rad":-40.50905841390265},{"average":0.26635153711293685,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":72.98145877578071,"scaled_rad":-69.35805496562574},{"average":0.26690215991200783,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":73.18294667798003,"scaled_rad":-69.08940442935997},{"average":0.2691951205386519,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":74.02200351919265,"scaled_rad":-67.97066197440981},{"average":0.2731605545111922,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":75.47306397979312,"scaled_rad":-66.03591469360917},{"average":0.2681589770719379,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":73.64285036055489,"scaled_rad":-68.47619951926016},{"average":0.26070539298023554,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":70.91538062076712,"scaled_rad":-72.11282583897719},{"average":0.25312037195817966,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":68.13981452279526,"scaled_rad":-75.81358063627299},{"average":0.24927371615998387,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":66.73221823624664,"scaled_rad":-77.6903756850045},{"average":0.2619020923203617,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":71.35328555316758,"scaled_rad":-71.52895259577656},{"average":0.2777529784703909,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":77.15355717969341,"scaled_rad":-63.79525709374214},{"average":0.2964825086694298,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":84.0072031880867,"scaled_rad":-54.6570624158844},{"average":0.2970139037812736,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":84.2016551550322,"scaled_rad":-54.39779312662375},{"average":0.2976126019048468,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":84.42073512987696,"scaled_rad":-54.1056864934974},{"average":0.3459284915520408,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":102.10083712407723,"scaled_rad":-30.532217167897045},{"average":0.33825235194051323,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":99.2919282486632,"scaled_rad":-34.27742900178241},{"average":0.3313576958651344,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":96.76898551661915,"scaled_rad":-37.641352644507805},{"average":0.3244081481591334,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.22595643958353,"scaled_rad":-41.0320580805553},{"average":0.31863864953970705,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":92.11473951298433,"scaled_rad":-43.84701398268757},{"average":0.31298857584288337,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":90.04722342326679,"scaled_rad":-46.60370210231096},{"average":0.3076537506768797,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":88.09506537040046,"scaled_rad":-49.20657950613273},{"average":0.30335933974761503,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":86.5236232674231,"scaled_rad":-51.301835643435865},{"average":0.32155937791998646,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":93.18351369964974,"scaled_rad":-42.421981733800365},{"average":0.25970040766773195,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":70.54762908069445,"scaled_rad":-72.60316122574075},{"average":0.25497120522970546,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":68.8170849043153,"scaled_rad":-74.91055346091294},{"average":0.243901792656929,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":64.76648488987603,"scaled_rad":-80.31135348016531},{"average":0.22281296471910958,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":57.04950748137991,"scaled_rad":-90.60065669149346},{"average":0.20667303486189095,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":51.1434668777907,"scaled_rad":-98.47537749627907},{"average":0.190422573764365,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":45.19697987827566,"scaled_rad":-106.40402682896578},{"average":0.17571074371358475,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":39.81351994990733,"scaled_rad":-113.58197340012356},{"average":0.16686230287099776,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":36.57563407573776,"scaled_rad":-117.89915456568299},{"average":0.1601632107909855,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":34.124253544239366,"scaled_rad":-121.16766194101419},{"average":0.15453660561878843,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":32.06532522786269,"scaled_rad":-123.9128996961831},{"average":0.148062585273803,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":29.696304583770758,"scaled_rad":-127.07159388830567},{"average":0.143373129621261,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":27.980304840422626,"scaled_rad":-129.35959354610316},{"average":0.14274474617137947,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":27.750362194918257,"scaled_rad":-129.666183740109},{"average":0.14062737137918654,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":26.97555700020332,"scaled_rad":-130.69925733306223},{"average":0.13563163443159296,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":25.147480576182037,"scaled_rad":-133.1366925650906},{"average":0.12787371931130093,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":22.308647811419373,"scaled_rad":-136.92180291810752},{"average":0.12290279176673233,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":20.48964982472171,"scaled_rad":-139.34713356703773},{"average":0.1222230258979529,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":20.2409049505208,"scaled_rad":-139.6787933993056},{"average":0.12034803331570058,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":19.554794018182516,"scaled_rad":-140.59360797575664},{"average":0.11891011623873193,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":19.028620935876774,"scaled_rad":-141.29517208549763},{"average":0.11912975530368816,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":19.108992861110742,"scaled_rad":-141.188009518519},{"average":0.12033547955828461,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":19.55020025589964,"scaled_rad":-140.59973299213382},{"average":0.16077268693566887,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":34.34727749101378,"scaled_rad":-120.8702966786483},{"average":0.16066568934364744,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":34.30812415338745,"scaled_rad":-120.92250112881672},{"average":0.15999483070649562,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":34.06263867821266,"scaled_rad":-121.24981509571646},{"average":0.1590330010169373,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":33.71067895778498,"scaled_rad":-121.71909472295337},{"average":0.15825252372112955,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":33.42508102520422,"scaled_rad":-122.09989196639438},{"average":0.15833247200108705,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":33.4543362816888,"scaled_rad":-122.06088495774827},{"average":0.15737061388305226,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":33.1023661585061,"scaled_rad":-122.5301784553252},{"average":0.1552042049291534,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":32.309618026457485,"scaled_rad":-123.58717596472337},{"average":0.15213654320214426,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":31.187076920141,"scaled_rad":-125.083897439812},{"average":0.15226732441605648,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":31.234933333792437,"scaled_rad":-125.02008888827675},{"average":0.1545289393188825,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":32.06251991960396,"scaled_rad":-123.91664010719472},{"average":0.15739357583164298,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":33.11076856185693,"scaled_rad":-122.51897525085744},{"average":0.15906239290450355,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":33.72143425120434,"scaled_rad":-121.70475433172754},{"average":0.1593145451287409,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":33.813703628320944,"scaled_rad":-121.58172849557207},{"average":0.15914143489616997,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":33.75035787208128,"scaled_rad":-121.66618950389164},{"average":0.1571555821468735,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":33.02368018055162,"scaled_rad":-122.63509309259784},{"average":0.15407478512358222,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":31.89633251101778,"scaled_rad":-124.13822331864296},{"average":0.15121258196588436,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":30.848974299759856,"scaled_rad":-125.53470093365354},{"average":0.14839208532129575,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":29.816877639328762,"scaled_rad":-126.91082981422832},{"average":0.14671170388261767,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":29.201980233073204,"scaled_rad":-127.73069302256906},{"average":0.1502107063241019,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":30.48236067303039,"scaled_rad":-126.02351910262615},{"average":0.16596885099286032,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":36.24869566173513,"scaled_rad":-118.33507245101984},{"average":0.18955345697302267,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":44.87894633634963,"scaled_rad":-106.82807155153384},{"average":0.20896015836036352,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":51.980387754578814,"scaled_rad":-97.35948299389491},{"average":0.2181389423366696,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":55.339155192554514,"scaled_rad":-92.88112640992732},{"average":0.22442151224564286,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":57.638118899679206,"scaled_rad":-89.8158414670944},{"average":0.23504457089367212,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":61.52538583730531,"scaled_rad":-84.63281888359293},{"average":0.25048025066851803,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":67.17372212505364,"scaled_rad":-77.10170383326182},{"average":0.2663879262674636,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":72.99477456005403,"scaled_rad":-69.34030058659464},{"average":0.278036045652978,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":77.25713918337576,"scaled_rad":-63.65714775549901},{"average":0.2828277722359506,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":79.01056264993913,"scaled_rad":-61.31924980008117},{"average":0.28663752048801727,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":80.40465345858631,"scaled_rad":-59.46046205521827},{"average":0.29470098772653586,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":83.35529607833118,"scaled_rad":-55.52627189555844},{"average":0.30271911152570524,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":86.28934629672911,"scaled_rad":-51.61420493769454},{"average":0.3134916300098254,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":90.2313046653817,"scaled_rad":-46.35826044615774},{"average":0.32476564957176707,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.35677595847449,"scaled_rad":-40.85763205536736},{"average":0.33229625647822125,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":97.11243044722654,"scaled_rad":-37.18342607036463},{"average":0.33319401281194744,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":97.44094397894705,"scaled_rad":-36.745408028070614},{"average":0.33274615829633386,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":97.2770617950024,"scaled_rad":-36.963917606663486},{"average":0.33655306213886993,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":98.67011175661186,"scaled_rad":-35.10651765785087},{"average":0.34409875514601884,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":101.43128666113034,"scaled_rad":-31.424951118492885},{"average":0.35246792776379615,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":104.49379521824979,"scaled_rad":-27.34160637566694},{"average":0.35725765506707885,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":106.2464870938378,"scaled_rad":-25.004683874882943},{"average":0.3530808523126686,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":104.71808103018337,"scaled_rad":-27.042558626422164},{"average":0.34675527846432386,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":102.403381008571,"scaled_rad":-30.12882532190534},{"average":0.3518996276316414,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":104.28583869766864,"scaled_rad":-27.618881736441836},{"average":0.35334244730926695,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":104.81380577528904,"scaled_rad":-26.914925632947956},{"average":0.35528398665887906,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":105.52426798508277,"scaled_rad":-25.96764268655633},{"average":0.3566630892242974,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":106.02891923325606,"scaled_rad":-25.294774355658603},{"average":0.3573974763268678,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":106.29765150687206,"scaled_rad":-24.936464657503933},{"average":0.35824840766170724,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":106.60903049419649,"scaled_rad":-24.52129267440469},{"average":0.36115983782595473,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":107.67440220997688,"scaled_rad":-23.100797053364175},{"average":0.36674477044754505,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":109.71808140333283,"scaled_rad":-20.37589146222291},{"average":0.4662037167848852,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":146.11282293288238,"scaled_rad":28.150430577176508},{"average":0.45663000947301025,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.60954227360966,"scaled_rad":23.479389698146207},{"average":0.43977435519025104,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":136.4415985790146,"scaled_rad":15.255464772019451},{"average":0.43136561692513126,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.36461187225143,"scaled_rad":11.152815829668555},{"average":0.436277718042478,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":135.16208366454737,"scaled_rad":13.549444886063156},{"average":0.4489720078876504,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":139.80727059674376,"scaled_rad":19.743027462325017},{"average":0.4650733335605196,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":145.69918487622544,"scaled_rad":27.598913168300584},{"average":0.4794415116047544,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":150.95689316117787,"scaled_rad":34.6091908815705},{"average":0.4978424245597057,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":157.69028915586043,"scaled_rad":43.58705220781388},{"average":0.5137974013703788,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":163.52865039452558,"scaled_rad":51.37153385936742},{"average":0.5239519525515899,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":167.24447766998517,"scaled_rad":56.32597022664689},{"average":0.5299604816288598,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":169.44316236143882,"scaled_rad":59.257549815251764},{"average":0.53431060787295,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":171.03499221792643,"scaled_rad":61.37998962390188},{"average":0.5338369386369906,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":170.86166372362715,"scaled_rad":61.14888496483616},{"average":0.5386862583962598,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":172.63616210443777,"scaled_rad":63.51488280591701},{"average":0.5442824029458748,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":174.6839440480996,"scaled_rad":66.24525873079943},{"average":0.5481411751303752,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":176.0959740509107,"scaled_rad":68.12796540121428},{"average":0.5480384725501867,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":176.05839237527442,"scaled_rad":68.07785650036587},{"average":0.5426957596442662,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":174.10334798320886,"scaled_rad":65.47113064427847},{"average":0.5354124037531448,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":171.4381693855389,"scaled_rad":61.91755918071851},{"average":0.5314272633229339,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":169.97989779451933,"scaled_rad":59.97319705935908},{"average":0.5281249386905063,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":168.77148712991985,"scaled_rad":58.3619828398931},{"average":0.5142341465793754,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":163.68846738013679,"scaled_rad":51.584623173515695},{"average":0.5015840242654549,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":159.05944255243784,"scaled_rad":45.412590069917115},{"average":0.48247416716899405,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":152.0666245576306,"scaled_rad":36.08883274350745},{"average":0.46920906186715816,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":147.21256067900168,"scaled_rad":29.616747572002225},{"average":0.46292486160052987,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":144.91300037953775,"scaled_rad":26.55066717271697},{"average":0.46430629073087104,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":145.41850298128088,"scaled_rad":27.22467064170783},{"average":0.468525840458894,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":146.9625513286423,"scaled_rad":29.283401771523046},{"average":0.46875844557996793,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":147.04766788750086,"scaled_rad":29.39689051666781},{"average":0.45596010025322586,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.36440421614805,"scaled_rad":23.152538954864042},{"average":0.4369896117826463,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":135.42258500328117,"scaled_rad":13.896780004374875},{"average":0.4232711575895345,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.40262839877585,"scaled_rad":7.203504531701128},{"average":0.4121584792555117,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.33619626208285,"scaled_rad":1.7815950161104581},{"average":0.41632288075190516,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":127.86006436714449,"scaled_rad":3.8134191561926514},{"average":0.42397076424139846,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.658633556729,"scaled_rad":7.544844742305315},{"average":0.43220654156229404,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.67232913593088,"scaled_rad":11.563105514574517},{"average":0.438280646351567,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":135.8950097691963,"scaled_rad":14.526679692261695},{"average":0.44102967533018483,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":136.90095446113673,"scaled_rad":15.867939281515646},{"average":0.45002064385545026,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.19099510230228,"scaled_rad":20.254660136403004},{"average":0.4668825356687078,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":146.36122127945552,"scaled_rad":28.481628372607332},{"average":0.4794854116055125,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":150.9729573689699,"scaled_rad":34.63060982529319},{"average":0.4859424488196893,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":153.3357634222291,"scaled_rad":37.78101789630543},{"average":0.4909265522865149,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":155.1595828382965,"scaled_rad":40.21277711772865},{"average":0.49589032496968316,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":156.9759626660358,"scaled_rad":42.6346168880477},{"average":0.50130731542838,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":158.9581872408229,"scaled_rad":45.27758298776385},{"average":0.5144020144344841,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":163.7498948074602,"scaled_rad":51.666526409946925},{"average":0.5339614461359617,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":170.90722441384577,"scaled_rad":61.20963255179433},{"average":0.5513253552782024,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":177.26115242582162,"scaled_rad":69.68153656776215},{"average":0.5592001807755448,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":180.142765886656,"scaled_rad":73.52368784887466},{"average":0.5642278067968494,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":181.98251139262587,"scaled_rad":75.97668185683446},{"average":0.5686811361295346,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":183.61210607442868,"scaled_rad":78.1494747659049},{"average":0.5720396917427331,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":184.8410931887742,"scaled_rad":79.78812425169892},{"average":0.5752993591972811,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":186.03389442837494,"scaled_rad":81.3785259044999},{"average":0.5785502168716531,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":187.22347192909396,"scaled_rad":82.96462923879193},{"average":0.5808603042507944,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":188.06879591623294,"scaled_rad":84.09172788831054},{"average":0.5807282887080796,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":188.0204878280023,"scaled_rad":84.02731710400306},{"average":0.5776252034390169,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":186.88498428135668,"scaled_rad":82.51331237514222},{"average":0.4793685107696347,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":150.9301801642735,"scaled_rad":34.57357355236465},{"average":0.4674611229592529,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":146.57294215190726,"scaled_rad":28.763922869209637},{"average":0.45769657216394427,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.99982665617236,"scaled_rad":23.99976887489646},{"average":0.4179195624164561,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":128.44433374286467,"scaled_rad":4.5924449904862},{"average":0.4099031322660636,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":125.51090327675396,"scaled_rad":0.6812043690052576},{"average":0.4014460289007262,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.4162184605065,"scaled_rad":-3.4450420526580103},{"average":0.39179875823654425,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":118.88601896394607,"scaled_rad":-8.1519747147386},{"average":0.38119472477542105,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":115.00571386118244,"scaled_rad":-13.325714851756743},{"average":0.37391239249156516,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":112.34090982933313,"scaled_rad":-16.878786894222515},{"average":0.3698897485984427,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":110.86891469820586,"scaled_rad":-18.84144706905886},{"average":0.3677522698247975,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":110.08675290827635,"scaled_rad":-19.88432945563153},{"average":0.3626893514971492,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":108.23409298470345,"scaled_rad":-22.354542687062064},{"average":0.34826968926665786,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":102.9575452316019,"scaled_rad":-29.389939691197497},{"average":0.3344234164558572,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":97.8908163082177,"scaled_rad":-36.145578255709765},{"average":0.3231492921701005,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":93.7653066938243,"scaled_rad":-41.646257741567595},{"average":0.3207187933368985,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":92.87592087103232,"scaled_rad":-42.832105505290244},{"average":0.3278973637112745,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":95.50275558976098,"scaled_rad":-39.329659213652036},{"average":0.3330669019238627,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":97.39443063763589,"scaled_rad":-36.80742581648548},{"average":0.33442199403876205,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":97.89029580700154,"scaled_rad":-36.14627225733129},{"average":0.3340330921504209,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":97.7479859974996,"scaled_rad":-36.336018670000556},{"average":0.32923544742930005,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":95.99239692275141,"scaled_rad":-38.67680410299812},{"average":0.327552194162656,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":95.3764486363047,"scaled_rad":-39.498068484927074},{"average":0.3293821531584403,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":96.0460805509175,"scaled_rad":-38.60522593211002},{"average":0.33262143930575966,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":97.2314237142371,"scaled_rad":-37.02476838101721},{"average":0.332847016991134,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":97.31396874267715,"scaled_rad":-36.914708343097146},{"average":0.32973877272090396,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":96.17657737677591,"scaled_rad":-38.431230164298796},{"average":0.3245205766088715,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.26709707619263,"scaled_rad":-40.97720389840984},{"average":0.31819605094564485,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":91.9527806141076,"scaled_rad":-44.06295918118988},{"average":0.311797892053922,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":89.61151974513116,"scaled_rad":-47.18464033982514},{"average":0.31241210068839975,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":89.83627543901531,"scaled_rad":-46.88496608131294},{"average":0.31834067999424337,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":92.00570432821527,"scaled_rad":-43.99239422904631},{"average":0.3224189705446692,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":93.49806208919256,"scaled_rad":-42.00258388107659},{"average":0.32593903112621825,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.78614827702839,"scaled_rad":-40.28513563062883},{"average":0.33043991848692805,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":96.43314573858454,"scaled_rad":-38.08913901522061},{"average":0.3366070866936388,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":98.6898808148964,"scaled_rad":-35.08015891347148},{"average":0.3775034595647855,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":113.6549792294034,"scaled_rad":-15.126694360795483},{"average":0.38873960644557964,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":117.76659187536433,"scaled_rad":-9.644544166180907},{"average":0.38321009843866244,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":115.74319406040304,"scaled_rad":-12.34240791946263},{"average":0.3865593580731121,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":116.96877952254648,"scaled_rad":-10.70829396993804},{"average":0.39613724786160315,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":120.47359066410363,"scaled_rad":-6.035212447861852},{"average":0.41256905901911,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.48643859747561,"scaled_rad":1.981918129967454},{"average":0.43236686689984155,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.7309965503321,"scaled_rad":11.641328733776106},{"average":0.4507433394242552,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.45544912478906,"scaled_rad":20.60726549971872},{"average":0.46308044802820264,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":144.96993369754665,"scaled_rad":26.626578263395544},{"average":0.4655073228117406,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":145.8579933817089,"scaled_rad":27.810657842278516},{"average":0.4663586345421101,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":146.16951156613428,"scaled_rad":28.226015421512358},{"average":0.459094508885807,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":143.51136983595123,"scaled_rad":24.681826447934952},{"average":0.45223182191598604,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":141.00012547169166,"scaled_rad":21.333500628922195},{"average":0.4614892015454328,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":144.3876532031024,"scaled_rad":25.850204270803175},{"average":0.48878124973402,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":154.37455811426702,"scaled_rad":39.16607748568933},{"average":0.5148354386613214,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":163.9084965551088,"scaled_rad":51.87799540681172},{"average":0.5321567261901077,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":170.24682815607923,"scaled_rad":60.32910420810563},{"average":0.5444706246855693,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":174.75281951701103,"scaled_rad":66.33709268934803},{"average":0.549275104253516,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":176.5109096486554,"scaled_rad":68.68121286487383},{"average":0.5520914403332448,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":177.5414838449114,"scaled_rad":70.05531179321517},{"average":0.5492218709800799,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":176.49143014179526,"scaled_rad":68.65524018906035},{"average":0.5435848072882882,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":174.42867476780893,"scaled_rad":65.90489969041187},{"average":0.5366849709537076,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":171.90383643761461,"scaled_rad":62.538448583486144},{"average":0.5330511494523223,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":170.57412202601336,"scaled_rad":60.765496034684475},{"average":0.5324962841957509,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":170.37108169288786,"scaled_rad":60.49477559051715},{"average":0.5309473313697998,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":169.80427760116996,"scaled_rad":59.739036801559934},{"average":0.5337529799198487,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":170.83094093877915,"scaled_rad":61.107921251705505},{"average":0.5366950624662897,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":171.9075291973471,"scaled_rad":62.54337226312944},{"average":0.5367799497226442,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":171.9385917600219,"scaled_rad":62.584789013362496},{"average":0.5321350728026089,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":170.23890459092718,"scaled_rad":60.31853945456956},{"average":0.5196583017663172,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":165.6733137244299,"scaled_rad":54.23108496590649},{"average":0.5026434846746475,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":159.44712801637363,"scaled_rad":45.92950402183149},{"average":0.4854667957023214,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":153.16170897160566,"scaled_rad":37.5489452954742},{"average":0.4712163898352298,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":147.9470967388873,"scaled_rad":30.596128985183043},{"average":0.46092886933070515,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":144.18261236085854,"scaled_rad":25.576816481144704},{"average":0.4581994964583227,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":143.18386037437355,"scaled_rad":24.245147165831384},{"average":0.4562273073913165,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.46218259691506,"scaled_rad":23.282910129220085},{"average":0.4393764621900203,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":136.2959986764106,"scaled_rad":15.061331568547416},{"average":0.40074924977851833,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.16124797278455,"scaled_rad":-3.7850027029539604},{"average":0.3556342022808632,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":105.65242143443152,"scaled_rad":-25.796771420757977},{"average":0.30662804276359323,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":87.7197308654253,"scaled_rad":-49.707025512766265},{"average":0.2654566550952988,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":72.65399703472312,"scaled_rad":-69.79467062036919},{"average":0.23835121167538365,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":62.7353758986647,"scaled_rad":-83.0194988017804},{"average":0.22892245136383527,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":59.2851353007101,"scaled_rad":-87.6198195990532},{"average":0.23832920174601468,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":62.72732186511652,"scaled_rad":-83.03023751317797},{"average":0.2551415043796391,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":68.8794020087366,"scaled_rad":-74.82746398835118},{"average":0.271140457342559,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":74.73385532110076,"scaled_rad":-67.02152623853232},{"average":0.2853613058721666,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":79.93765171776171,"scaled_rad":-60.08313104298439},{"average":0.2974996969527584,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":84.37942012805978,"scaled_rad":-54.16077316258698},{"average":0.3089490187680673,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":88.56903929759605,"scaled_rad":-48.574614269871944},{"average":0.3197426510699417,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":92.51872378811265,"scaled_rad":-43.30836828251647},{"average":0.329313657834677,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":96.0210162435208,"scaled_rad":-38.63864500863893},{"average":0.3394122622134924,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":99.71637105785368,"scaled_rad":-33.711505256195096},{"average":0.34589267175437677,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":102.08772968301103,"scaled_rad":-30.549693755985317},{"average":0.351264721206015,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":104.05350911740393,"scaled_rad":-27.928654510128098},{"average":0.35051736838771086,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":103.78003233471911,"scaled_rad":-28.29329022037453},{"average":0.3537421213890141,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":104.96005742347283,"scaled_rad":-26.719923435369566},{"average":0.36533070971014936,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":109.20063800643572,"scaled_rad":-21.065815991419043},{"average":0.381867065630204,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":115.25174172022076,"scaled_rad":-12.997677706372343},{"average":0.3900216855173189,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":118.2357395805706,"scaled_rad":-9.01901389257256},{"average":0.40072715081682464,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.1531613598801,"scaled_rad":-3.795784853493217},{"average":0.41456989129181215,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":127.21859770523439,"scaled_rad":2.9581302736458497},{"average":0.4200874008560016,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":129.23760496270523,"scaled_rad":5.650139950273626},{"average":0.4071169314097926,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":124.49135638079692,"scaled_rad":-0.6781914922707983},{"average":0.4001956273827867,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":121.95866243634337,"scaled_rad":-4.055116751542187},{"average":0.3918170116606286,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":118.89269838973976,"scaled_rad":-8.143068813680344},{"average":0.382697520703762,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":115.55562788498601,"scaled_rad":-12.592496153352016},{"average":0.3725880531040282,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":111.85629792178958,"scaled_rad":-17.524936104280556},{"average":0.360160565278394,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":107.30874112643096,"scaled_rad":-23.58834516475872},{"average":0.3481513433171214,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":102.91423922039763,"scaled_rad":-29.447681039469842},{"average":0.34648826971522034,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":102.30567522374606,"scaled_rad":-30.259099701671914},{"average":0.37223231242830945,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":111.7261227045656,"scaled_rad":-17.698503060579213},{"average":0.37026182732277757,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":111.00506845309164,"scaled_rad":-18.659908729211168},{"average":0.32887178867441563,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":95.85932426436948,"scaled_rad":-38.854234314174036},{"average":0.33012386539651706,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":96.31749329143204,"scaled_rad":-38.24334227809062},{"average":0.32818418817009243,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":95.60771248330805,"scaled_rad":-39.189716688922616},{"average":0.3257344875427262,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.71130020024029,"scaled_rad":-40.38493306634629},{"average":0.3236501394647714,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":93.94858038117562,"scaled_rad":-41.40189282509918},{"average":0.3074418833352842,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":88.0175373307431,"scaled_rad":-49.30995022567589},{"average":0.31242349526569874,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":89.84044502567299,"scaled_rad":-46.87940663243603},{"average":0.3023462803784938,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":86.15291720978801,"scaled_rad":-51.79611038694932},{"average":0.3077135434276626,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":88.11694516895274,"scaled_rad":-49.17740644139634},{"average":0.3280594007037347,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":95.56204934538566,"scaled_rad":-39.250600872819135},{"average":0.3584616357064356,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":106.68705645224773,"scaled_rad":-24.417258063669692},{"average":0.38942147804939864,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":118.01610729545696,"scaled_rad":-9.311856939390736},{"average":0.40579244204881515,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":124.00668959388048,"scaled_rad":-1.3244138748260355},{"average":0.40239915671012133,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.7649939256105,"scaled_rad":-2.9800080991860227},{"average":0.3901511231790403,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":118.28310435182567,"scaled_rad":-8.955860864232449},{"average":0.3763220519064099,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":113.22266994048559,"scaled_rad":-15.703106746019245},{"average":0.36853573361069575,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":110.37344367904743,"scaled_rad":-19.50207509460344},{"average":0.370520968503047,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":111.09989527986677,"scaled_rad":-18.533472960177647},{"average":0.37711839672359443,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":113.51407423197612,"scaled_rad":-15.31456769069851},{"average":0.38665025066067826,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":117.0020395997265,"scaled_rad":-10.663947200364674},{"average":0.3969995165117321,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":120.78911828435446,"scaled_rad":-5.614508954194065},{"average":0.40584062734579823,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":124.02432190845654,"scaled_rad":-1.3009041220579434},{"average":0.4158432894423183,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":127.68456882456123,"scaled_rad":3.579425099414948},{"average":0.42562821436355774,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":131.26513976874443,"scaled_rad":8.353519691659244},{"average":0.4347326800975587,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":134.59671213459006,"scaled_rad":12.795616179453418},{"average":0.4576295101799773,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.97528684690613,"scaled_rad":23.967049129208164},{"average":0.4730295112341844,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":148.61056731752012,"scaled_rad":31.480756423360162},{"average":0.4807593627169099,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":151.43913083177063,"scaled_rad":35.252174442360825},{"average":0.48971547383336805,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":154.71641619620493,"scaled_rad":39.62188826160656},{"average":0.49499855576461466,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":156.64963998800943,"scaled_rad":42.19951998401257},{"average":0.500147464679904,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":158.53376621327183,"scaled_rad":44.71168828436245},{"average":0.5025180658977845,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":159.40123386471632,"scaled_rad":45.86831181962174},{"average":0.5067209246557918,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":160.93917453084876,"scaled_rad":47.918899374464985},{"average":0.5110068997804332,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":162.50752974280059,"scaled_rad":50.01003965706744},{"average":0.5138561748528454,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":163.5501572149971,"scaled_rad":51.40020961999613},{"average":0.5200901915952856,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":165.83135399404256,"scaled_rad":54.44180532539005},{"average":0.5317696190100881,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":170.10517507930865,"scaled_rad":60.14023343907817},{"average":0.5508846711085624,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":177.09989406706313,"scaled_rad":69.4665254227508},{"average":0.5705230441257307,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":184.2861104542398,"scaled_rad":79.04814727231974},{"average":0.5831048881242111,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":188.89015038380714,"scaled_rad":85.1868671784095},{"average":0.5902299935235673,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":191.4974208097458,"scaled_rad":88.66322774632769},{"average":0.5945422057002,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":193.07537687472174,"scaled_rad":90.76716916629562},{"average":0.5981816629499364,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":194.40715356037794,"scaled_rad":92.54287141383722},{"average":0.6017518264331477,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":195.71357376665082,"scaled_rad":94.2847650222011},{"average":0.6044989787624218,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":196.7188317414047,"scaled_rad":95.62510898853958},{"average":0.6050520761014361,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":196.92122514527037,"scaled_rad":95.89496686036048},{"average":0.6036074741794379,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":196.39260589581755,"scaled_rad":95.1901411944234},{"average":0.5275978848670186,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":168.5786237588066,"scaled_rad":58.10483167840877},{"average":0.48921591799316266,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":154.53361508727113,"scaled_rad":39.37815344969485},{"average":0.46657374584565375,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":146.24822665995805,"scaled_rad":28.330968879944038},{"average":0.44157600467889935,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":137.1008712727329,"scaled_rad":16.13449503031049},{"average":0.4119866184554808,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.2733077072919,"scaled_rad":1.6977436097225223},{"average":0.3851273138489988,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":116.44475547730158,"scaled_rad":-11.40699269693124},{"average":0.3634732228531598,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":108.5209328964964,"scaled_rad":-21.972089471338137},{"average":0.34901012395085823,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":103.22849048030366,"scaled_rad":-29.028679359595117},{"average":0.33435507260853886,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":97.86580743018423,"scaled_rad":-36.178923426421036},{"average":0.3455214538113803,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":101.95189091149756,"scaled_rad":-30.730812118003257},{"average":0.3700065059819545,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":110.91163940976841,"scaled_rad":-18.78448078697545},{"average":0.39895980717286317,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":121.5064421105357,"scaled_rad":-4.658077185952408},{"average":0.4244314413218783,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.82720786693517,"scaled_rad":7.769610489246901},{"average":0.44045106674734075,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":136.689225797252,"scaled_rad":15.58563439633599},{"average":0.44763733258789057,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":139.31887649697242,"scaled_rad":19.091835329296543},{"average":0.45487141545800214,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":141.96602475217375,"scaled_rad":22.62136633623163},{"average":0.4616392659818448,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":144.4425658738788,"scaled_rad":25.92342116517173},{"average":0.4670565723797212,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":146.42490605943,"scaled_rad":28.566541412573287},{"average":0.4738079491104793,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":148.89541897086937,"scaled_rad":31.86055862782581},{"average":0.48284007021962216,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":152.20051846504558,"scaled_rad":36.26735795339411},{"average":0.49717105637322445,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":157.4446172226864,"scaled_rad":43.25948963024851},{"average":0.4903474573768052,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":154.9476762141455,"scaled_rad":39.930234952193985},{"average":0.502829981165137,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":159.51537216953923,"scaled_rad":46.02049622605227},{"average":0.5129624123800837,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":163.22310514594898,"scaled_rad":50.9641401945986},{"average":0.5186166365914059,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":165.29214002214025,"scaled_rad":53.72285336285364},{"average":0.5217144651399864,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":166.4257199913674,"scaled_rad":55.2342933218232},{"average":0.5226397038054361,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":166.7642900579351,"scaled_rad":55.6857200772468},{"average":0.5249701807506456,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":167.61707514348987,"scaled_rad":56.822766857986466},{"average":0.5312944146233866,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":169.93128483147663,"scaled_rad":59.908379775302166},{"average":0.536306838182275,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":171.76546734175204,"scaled_rad":62.35395645566936},{"average":0.5365668379443965,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":171.86060834704745,"scaled_rad":62.480811129396585},{"average":0.5318737718616362,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":170.14328744879626,"scaled_rad":60.191049931728344},{"average":0.5257948612785105,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":167.91884824446657,"scaled_rad":57.22513099262207},{"average":0.5181140911151987,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":165.1082449238414,"scaled_rad":53.47765989845519},{"average":0.5121517288287264,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":162.92645392048925,"scaled_rad":50.56860522731898},{"average":0.5079274585501092,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":161.38067819489711,"scaled_rad":48.50757092652947},{"average":0.5180329463517386,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":165.07855184140524,"scaled_rad":53.43806912187364},{"average":0.5204467350926136,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":165.96182298559293,"scaled_rad":54.615763980790575},{"average":0.5190967472561773,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":165.46782561095262,"scaled_rad":53.95710081460348},{"average":0.511912468451125,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":162.8389020217236,"scaled_rad":50.45186936229811},{"average":0.5026388943885588,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":159.44544830547886,"scaled_rad":45.92726440730513},{"average":0.490377223869879,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":154.95856858593865,"scaled_rad":39.94475811458486},{"average":0.4714116669651861,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":148.01855396755414,"scaled_rad":30.69140529007217},{"average":0.44499087961587214,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":138.3504671639393,"scaled_rad":17.80062288525241},{"average":0.41128954821675934,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.0182306920965,"scaled_rad":1.3576409227953263},{"average":0.38156166703075817,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":115.13998804194813,"scaled_rad":-13.146682610735837},{"average":0.36760073183493924,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":110.03130102409801,"scaled_rad":-19.95826530120266},{"average":0.3684455033464521,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":110.34042596403813,"scaled_rad":-19.54609871461585},{"average":0.3831689544830611,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":115.72813836471394,"scaled_rad":-12.36248218038142},{"average":0.38466467048342534,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":116.27546164974285,"scaled_rad":-11.632717800342874},{"average":0.3840219726043988,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":116.04028096414194,"scaled_rad":-11.946292047810772},{"average":0.373405029902382,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":112.15525201799402,"scaled_rad":-17.126330642674645},{"average":0.3624491953751366,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":108.1462133086234,"scaled_rad":-22.47171558850212},{"average":0.34371702561711337,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":101.29160141359525,"scaled_rad":-31.61119811520635},{"average":0.35681983607726975,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":106.08627718253646,"scaled_rad":-25.218297089951392},{"average":0.3797544177722287,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":114.47866623967847,"scaled_rad":-14.028445013762052},{"average":0.40532827633319835,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":123.83683869691386,"scaled_rad":-1.5508817374482078},{"average":0.4369072361243788,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":135.39244150285836,"scaled_rad":13.856588670477805},{"average":0.4551293548544355,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.06041181346072,"scaled_rad":22.747215751280947},{"average":0.4736119412215268,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":148.82369433755198,"scaled_rad":31.764925783402617},{"average":0.48668589668293205,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":153.60781127533667,"scaled_rad":38.143748367115535},{"average":0.4937769974429353,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":156.20263847614947,"scaled_rad":41.60351796819927},{"average":0.4950011574097006,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":156.65059200091466,"scaled_rad":42.200789334552866},{"average":0.4908465623927771,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":155.13031235419456,"scaled_rad":40.173749805592735},{"average":0.4870762865090639,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":153.75066556186454,"scaled_rad":38.334220749152706},{"average":0.48955262559716417,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":154.65682558436512,"scaled_rad":39.54243411248683},{"average":0.498491711822458,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":157.92788107671336,"scaled_rad":43.90384143561781},{"average":0.5048889260334948,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":160.26879626125756,"scaled_rad":47.02506168167673},{"average":0.5212887867453337,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":166.26995265500784,"scaled_rad":55.02660354001043},{"average":0.5273830555179536,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":168.50001183981777,"scaled_rad":58.00001578642369},{"average":0.5972087224910471,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":194.05112810636984,"scaled_rad":92.06817080849311},{"average":0.5975649606432498,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":194.1814853638096,"scaled_rad":92.24198048507944},{"average":0.591768778848597,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":192.06050433552505,"scaled_rad":89.41400578070005},{"average":0.579275899835936,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":187.489019121077,"scaled_rad":83.31869216143599},{"average":0.5640382402366722,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":181.91314381721546,"scaled_rad":75.88419175628724},{"average":0.5487279197629441,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":176.31067991732687,"scaled_rad":68.41423988976914},{"average":0.5442506741077298,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":174.67233360071555,"scaled_rad":66.22977813428739},{"average":0.5389541303977753,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":172.73418377686824,"scaled_rad":63.64557836915765},{"average":0.5364410601361385,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":171.81458281600896,"scaled_rad":62.41944375467858},{"average":0.532385830881756,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":170.33066381232544,"scaled_rad":60.44088508310057},{"average":0.5311493291695912,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":169.87819410625752,"scaled_rad":59.83759214167668},{"average":0.5246837284686025,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":167.51225443957702,"scaled_rad":56.683005919436},{"average":0.5178037771739792,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":164.99469258793192,"scaled_rad":53.3262567839092},{"average":0.506275336451519,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":160.77612165204468,"scaled_rad":47.701495536059554},{"average":0.4978697991762915,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":157.70030627480045,"scaled_rad":43.600408366400586},{"average":0.48600019980221987,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":153.35689608208202,"scaled_rad":37.80919477610934},{"average":0.47055925885566935,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":147.70663458809148,"scaled_rad":30.275512784121958},{"average":0.4553496915209686,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.14103901014101,"scaled_rad":22.854718680188},{"average":0.4432060512270436,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":137.69734976949502,"scaled_rad":16.929799692660026},{"average":0.42884660754234166,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":132.4428376249536,"scaled_rad":9.92378349993811},{"average":0.420995572889199,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":129.56992988298418,"scaled_rad":6.093239843978893},{"average":0.42268800249171157,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.18923604103946,"scaled_rad":6.9189813880526},{"average":0.43007049243650425,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":132.89069049314998,"scaled_rad":10.520920657533281},{"average":0.4382423858584489,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":135.88100921108557,"scaled_rad":14.508012281447407},{"average":0.44303082424679907,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":137.63322943754045,"scaled_rad":16.84430591672057},{"average":0.449587055413969,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.03233326403597,"scaled_rad":20.043111018714626},{"average":0.46068450167877595,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":144.0931915710989,"scaled_rad":25.45758876146519},{"average":0.4708697565301591,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":147.82025415701645,"scaled_rad":30.42700554268859},{"average":0.4751877080918744,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":149.40031041955442,"scaled_rad":32.533747226072535},{"average":0.4637245412054447,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":145.20562496082593,"scaled_rad":26.94083328110122},{"average":0.44380804854678607,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":137.9176370102144,"scaled_rad":17.22351601361919},{"average":0.4315127186587214,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.418440409248,"scaled_rad":11.224587212330647},{"average":0.42485983872812677,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.9839701638075,"scaled_rad":7.978626885076665},{"average":0.4273546258629436,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":131.89688082983187,"scaled_rad":9.195841106442487},{"average":0.43629164427613004,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":135.16717965332376,"scaled_rad":13.55623953776501},{"average":0.4465947125852108,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":138.93735339715627,"scaled_rad":18.58313786287502},{"average":0.45585895922311287,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.3273939542807,"scaled_rad":23.103191939040926},{"average":0.45907154593510957,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":143.50296706590223,"scaled_rad":24.670622754536282},{"average":0.46296842500794516,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":144.92894141864394,"scaled_rad":26.57192189152525},{"average":0.46968813874062243,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":147.3878679753748,"scaled_rad":29.850490633833033},{"average":0.470959108363925,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":147.8529504303519,"scaled_rad":30.47060057380253},{"average":0.46529924192496136,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":145.7818509091566,"scaled_rad":27.709134545542128},{"average":0.4522181238352033,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.99511297027377,"scaled_rad":21.326817293698326},{"average":0.4325133771332961,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.78460864129397,"scaled_rad":11.712811521725286},{"average":0.4129867126444143,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.63926945182905,"scaled_rad":2.1856926024387064},{"average":0.4095570037229211,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":125.38424540104165,"scaled_rad":0.5123272013888425},{"average":0.4088178163229608,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":125.11375656766705,"scaled_rad":0.1516754235560711},{"average":0.40890125517838605,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":125.14428912093203,"scaled_rad":0.19238549457602971},{"average":0.4059201907940984,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":124.05343634454019,"scaled_rad":-1.262084873946435},{"average":0.3972165538105129,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":120.86853815237325,"scaled_rad":-5.50861579683567},{"average":0.3772733992583291,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":113.57079388763142,"scaled_rad":-15.23894148315813},{"average":0.3743844207994531,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":112.51363786328942,"scaled_rad":-16.648482848947452},{"average":0.34513607773061183,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":101.81087129116429,"scaled_rad":-30.918838278447623},{"average":0.3231498896055957,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":93.76552531176898,"scaled_rad":-41.645966250974695},{"average":0.31334331913435287,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":90.17703367038709,"scaled_rad":-46.43062177281723},{"average":0.3177790029158738,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":91.80017136367934,"scaled_rad":-44.26643818176089},{"average":0.318384392856039,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":92.02170005675609,"scaled_rad":-43.97106659099188},{"average":0.32701570168428284,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":95.18013140389895,"scaled_rad":-39.7598247948014},{"average":0.32790238392605675,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":95.50459262329242,"scaled_rad":-39.32720983561012},{"average":0.31967019859561985,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":92.49221145138252,"scaled_rad":-43.34371806482332},{"average":0.3100544817571516,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":88.97355836038349,"scaled_rad":-48.035255519488686},{"average":0.29892675348036263,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":84.90161903909643,"scaled_rad":-53.46450794787144},{"average":0.2888514809213776,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":81.2148019740904,"scaled_rad":-58.380264034546144},{"average":0.2840490783700001,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":79.45747187946608,"scaled_rad":-60.72337082737856},{"average":0.2794799400795736,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":77.78549954096155,"scaled_rad":-62.95266727871794},{"average":0.27435676294711897,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":75.91078927695604,"scaled_rad":-65.45228096405863},{"average":0.2680122796475023,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":73.58916977130677,"scaled_rad":-68.54777363825765},{"average":0.2728334497988193,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":75.353367442696,"scaled_rad":-66.19551007640536},{"average":0.2874895091415747,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":80.71641934767143,"scaled_rad":-59.044774203104765},{"average":0.29978458618797216,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":85.21552342697471,"scaled_rad":-53.04596876403372},{"average":0.31116344783965316,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":89.3793593006105,"scaled_rad":-47.494187599186006},{"average":0.31235733217259576,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":89.81623414509407,"scaled_rad":-46.91168780654125},{"average":0.3081366106075421,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":88.27175699059748,"scaled_rad":-48.97099067920337},{"average":0.302248029415068,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":86.11696450215744,"scaled_rad":-51.844047330456746},{"average":0.301441729305069,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":85.82191729746326,"scaled_rad":-52.23744360338232},{"average":0.3106693887679847,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":89.19856960922654,"scaled_rad":-47.73524052103129},{"average":0.3257203577743677,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.70612973256274,"scaled_rad":-40.39182702324969},{"average":0.34842393327462196,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":103.01398732162058,"scaled_rad":-29.314683571172566},{"average":0.3722650620221662,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":111.73810667430897,"scaled_rad":-17.68252443425473},{"average":0.39696385303259263,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":120.77606804450049,"scaled_rad":-5.631909273999355},{"average":0.40182159156526576,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.5536470841489,"scaled_rad":-3.2618038878014772},{"average":0.4048758641972694,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":123.67128875537196,"scaled_rad":-1.7716149928373852},{"average":0.3990104632307672,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":121.52497854393076,"scaled_rad":-4.633361941425676},{"average":0.38869447172169996,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":117.75007584870106,"scaled_rad":-9.666565535065274},{"average":0.3794260384900072,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":114.35850330270574,"scaled_rad":-14.18866226305903},{"average":0.37076991744339466,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":111.1909924880282,"scaled_rad":-18.41201001596241},{"average":0.3639970027399118,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":108.7125982448509,"scaled_rad":-21.71653567353215},{"average":0.35419507112857873,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":105.12580408884989,"scaled_rad":-26.49892788153349},{"average":0.35789342003140584,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":106.47913083683247,"scaled_rad":-24.69449221755673},{"average":0.3638496139432812,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":108.65866466365722,"scaled_rad":-21.788447115123716},{"average":0.3735019051243582,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":112.19070130430039,"scaled_rad":-17.07906492759949},{"average":0.3827661778625474,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":115.58075141223183,"scaled_rad":-12.558998117024231},{"average":0.389639748721995,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":118.09597848859913,"scaled_rad":-9.20536201520116},{"average":0.39383547335284724,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":119.63130858299911,"scaled_rad":-7.1582552226678615},{"average":0.3964664333819917,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":120.59404862561448,"scaled_rad":-5.87460183251406},{"average":0.3964940386957356,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":120.60415016293764,"scaled_rad":-5.861133116083153},{"average":0.3957933244969333,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":120.34773972334784,"scaled_rad":-6.203013702202895},{"average":0.39443067841945745,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":119.8491103530167,"scaled_rad":-6.867852862644412},{"average":0.39204189887292157,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":118.97499075524445,"scaled_rad":-8.033345659674097},{"average":0.3918272951151227,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":118.89646138625366,"scaled_rad":-8.138051484995117},{"average":0.3881446412994358,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":117.54887789879001,"scaled_rad":-9.934829468280014},{"average":0.3848061849185979,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":116.32724564183681,"scaled_rad":-11.563672477550938},{"average":0.3549847135677305,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":105.41475579738918,"scaled_rad":-26.11365893681443},{"average":0.36098784036608794,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":107.61146364762413,"scaled_rad":-23.184715136501183},{"average":0.3638791706414923,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":108.66948026578727,"scaled_rad":-21.774026312283638},{"average":0.36444346778056946,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":108.87597198200675,"scaled_rad":-21.498704023991024},{"average":0.36256534959279846,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":108.18871730534816,"scaled_rad":-22.415043592869125},{"average":0.35525639426212524,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":105.5141711744386,"scaled_rad":-25.98110510074855},{"average":0.34254703745699083,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":100.86347083059201,"scaled_rad":-32.182038892544},{"average":0.3265122554841496,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.99590670614539,"scaled_rad":-40.00545772513949},{"average":0.400264134682432,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":121.98373112604196,"scaled_rad":-4.021691831944082},{"average":0.38693786314255013,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":117.10728485240487,"scaled_rad":-10.523620196793502},{"average":0.3768512201851133,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":113.41630704844091,"scaled_rad":-15.444923935412106},{"average":0.3669711091076339,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":109.80090489317898,"scaled_rad":-20.265460142428026},{"average":0.36221177053758746,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":108.05933308403317,"scaled_rad":-22.587555887955773},{"average":0.35884076626501,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":106.82579066564337,"scaled_rad":-24.23227911247551},{"average":0.3548483844754342,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":105.36486926370067,"scaled_rad":-26.180174315065784},{"average":0.35107658857782303,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":103.98466625682207,"scaled_rad":-28.02044499090391},{"average":0.3473781729140519,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":102.63131507918895,"scaled_rad":-29.824913227748084},{"average":0.34299233582644395,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":101.02641765092939,"scaled_rad":-31.96477646542749},{"average":0.33927553273193184,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":99.66633801081146,"scaled_rad":-33.77821598558474},{"average":0.3361997785288672,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":98.54083564675778,"scaled_rad":-35.27888580432297},{"average":0.3290309298222966,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":95.91755835146908,"scaled_rad":-38.776588864707904},{"average":0.32441885050168817,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.22987271866538,"scaled_rad":-41.02683637511285},{"average":0.32336939143484233,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":93.84584701871326,"scaled_rad":-41.53887064171566},{"average":0.3256234300495991,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.67066123405245,"scaled_rad":-40.439118354596744},{"average":0.33021828510140366,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":96.35204403705315,"scaled_rad":-38.19727461726248},{"average":0.3330529449249517,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":97.38932339101204,"scaled_rad":-36.814235478650616},{"average":0.3394405828070174,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":99.72673433556034,"scaled_rad":-33.69768755258623},{"average":0.34042676739252675,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":100.08760617677513,"scaled_rad":-33.216525097633166},{"average":0.3443384526330128,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":101.51899851014632,"scaled_rad":-31.308001986471595},{"average":0.3491063537505383,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":103.26370358898588,"scaled_rad":-28.98172854801885},{"average":0.3537260016158753,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":104.95415875876235,"scaled_rad":-26.727788321650223},{"average":0.35864002436951353,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":106.7523337301962,"scaled_rad":-24.330221693071735},{"average":0.3635100625034211,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":108.53441352944773,"scaled_rad":-21.95411529406971},{"average":0.365678469799459,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":109.32789290939628,"scaled_rad":-20.896142787471632},{"average":0.3648061390327609,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":109.00868328621598,"scaled_rad":-21.32175561837869},{"average":0.36583988783466115,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":109.38696017167618,"scaled_rad":-20.817386437765094},{"average":0.37276578857505316,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":111.92133617894793,"scaled_rad":-17.438218428069433},{"average":0.37276824716917295,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":111.92223584560247,"scaled_rad":-17.437018872530047},{"average":0.371159753340884,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":111.33364407695558,"scaled_rad":-18.22180789739258},{"average":0.3715182022597355,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":111.46481031421791,"scaled_rad":-18.0469195810428},{"average":0.37716956023084147,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":113.5327963549281,"scaled_rad":-15.289604860095892},{"average":0.3859411232967479,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":116.74255055352003,"scaled_rad":-11.009932595306651},{"average":0.3992695907652823,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":121.61980037735214,"scaled_rad":-4.506932830197172},{"average":0.4181320326022841,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":128.52208237967122,"scaled_rad":4.696109839561615},{"average":0.43201491122575375,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.60220636845304,"scaled_rad":11.46960849127072},{"average":0.43414153681908757,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":134.38039668365099,"scaled_rad":12.507195578201305},{"average":0.43892165794191346,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":136.1295733957702,"scaled_rad":14.83943119436023},{"average":0.4489202712326798,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":139.7883387434053,"scaled_rad":19.717784991207054},{"average":0.457799374365777,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":143.03744478608579,"scaled_rad":24.049926381447705},{"average":0.4324398952137147,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.75771960246192,"scaled_rad":11.676959469949225},{"average":0.4347675318617778,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":134.6094653458125,"scaled_rad":12.812620461083355},{"average":0.42902265980514825,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":132.50725995030987,"scaled_rad":10.009679933746497},{"average":0.4348805264088705,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":134.6508131328858,"scaled_rad":12.867750843847688},{"average":0.4391842696446889,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":136.2256701814,"scaled_rad":14.967560241866636},{"average":0.44030907822018034,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":136.6372683219673,"scaled_rad":15.516357762623045},{"average":0.4381561857288009,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":135.8494662322598,"scaled_rad":14.465954976346381},{"average":0.43376580872529225,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":134.24290752493127,"scaled_rad":12.32387669990834},{"average":0.4237305009148632,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.57071465158975,"scaled_rad":7.427619535453005},{"average":0.40964915396806634,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":125.41796568943653,"scaled_rad":0.5572875859153612},{"average":0.39877231046557426,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":121.43783195075906,"scaled_rad":-4.749557398987918},{"average":0.398740082216501,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":121.42603875529333,"scaled_rad":-4.765281659608917},{"average":0.3334491404115096,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":97.53430212705798,"scaled_rad":-36.62093049725604},{"average":0.3405274928567179,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":100.12446437173577,"scaled_rad":-33.167380837685656},{"average":0.3455270866840491,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":101.95395213326191,"scaled_rad":-30.728063822317466},{"average":0.344663779713041,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":101.63804456307784,"scaled_rad":-31.14927391589623},{"average":0.3401856334150336,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":99.99936867670058,"scaled_rad":-33.33417509773257},{"average":0.26279550870130114,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":71.68021097777716,"scaled_rad":-71.09305202963046},{"average":0.2441210416543976,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":64.84671407877592,"scaled_rad":-80.20438122829879},{"average":0.22586329762871935,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":58.165707500710376,"scaled_rad":-89.11238999905284},{"average":0.21243297859471957,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":53.25118741074334,"scaled_rad":-95.66508345234222},{"average":0.20089733937255047,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":49.02998234745022,"scaled_rad":-101.29335687006636},{"average":0.19106413437815803,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":45.43174440750505,"scaled_rad":-106.09100745665994},{"average":0.18166842946920647,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":41.99359968305374,"scaled_rad":-110.67520042259503},{"average":0.1746884919246476,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":39.439450135108586,"scaled_rad":-114.08073315318856},{"average":0.16976788791881245,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":37.63886690397091,"scaled_rad":-116.48151079470546},{"average":0.20016429081821885,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":48.76173988514804,"scaled_rad":-101.65101348646928},{"average":0.1859410012754458,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":43.557050255183334,"scaled_rad":-108.59059965975555},{"average":0.1649835844425787,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":35.88815975465255,"scaled_rad":-118.81578699379659},{"average":0.15770204217790246,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":33.22364481237139,"scaled_rad":-122.36847358350482},{"average":0.15047274694440274,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":30.578248484004625,"scaled_rad":-125.89566868799383},{"average":0.14242476710169766,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":27.63327312485676,"scaled_rad":-129.82230250019097},{"average":0.13690769707409345,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":25.614426705812242,"scaled_rad":-132.51409772558367},{"average":0.13467766660260624,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":24.798397724995205,"scaled_rad":-133.60213636667305},{"average":0.13418920611917246,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":24.619656709765916,"scaled_rad":-133.84045772031212},{"average":0.13620752925693494,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":25.35821620217024,"scaled_rad":-132.85571173043968},{"average":0.13905158462856132,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":26.398933643464996,"scaled_rad":-131.46808847538},{"average":0.14197879541561886,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":27.47007991959915,"scaled_rad":-130.03989344053446},{"average":0.18253236757809008,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":42.309738203802794,"scaled_rad":-110.2536823949296},{"average":0.1729022258203794,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":38.78580664136659,"scaled_rad":-114.95225781151122},{"average":0.16514971906524006,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":35.94895294494396,"scaled_rad":-118.7347294067414},{"average":0.16122127970246852,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":34.51142982120561,"scaled_rad":-120.6514269050592},{"average":0.1604339125474772,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":34.223310701206366,"scaled_rad":-121.03558573172485},{"average":0.1598967238640998,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":34.02673870839833,"scaled_rad":-121.29768172213556},{"average":0.15871498568064885,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":33.594308471339296,"scaled_rad":-121.8742553715476},{"average":0.156766193615673,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":32.881192295152694,"scaled_rad":-122.82507693979642},{"average":0.15878187904403582,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":33.61878657773562,"scaled_rad":-121.84161789635252},{"average":0.16656936895169075,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":36.46844156394243,"scaled_rad":-118.04207791474343},{"average":0.16938352275390697,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":37.498217205327904,"scaled_rad":-116.66904372622946},{"average":0.1668803992024995,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":36.582256017070264,"scaled_rad":-117.89032531057299},{"average":0.16095696534016615,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":34.414709986009335,"scaled_rad":-120.78038668532089},{"average":0.15404533374969892,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":31.88555544993232,"scaled_rad":-124.15259273342357},{"average":0.14846889239445876,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":29.844983442560657,"scaled_rad":-126.87335540991913},{"average":0.1491573402651803,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":30.096905298101895,"scaled_rad":-126.53745960253082},{"average":0.1583205125209142,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":33.44995998166002,"scaled_rad":-122.0667200244533},{"average":0.17059873339132317,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":37.94289592636235,"scaled_rad":-116.07613876485021},{"average":0.17895868411431498,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":41.002029940622755,"scaled_rad":-111.997293412503},{"average":0.18405223075162083,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":42.86589759818566,"scaled_rad":-109.51213653575246},{"average":0.18775468795284586,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":44.22072768461917,"scaled_rad":-107.70569642050778},{"average":0.19059875800487508,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":45.26145049787378,"scaled_rad":-106.31806600283497},{"average":0.1906876498205239,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":45.29397843803171,"scaled_rad":-106.27469541595772},{"average":0.1904806698339314,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":45.21823881488836,"scaled_rad":-106.37568158014886},{"average":0.19032992024236395,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":45.16307542715074,"scaled_rad":-106.44923276379902},{"average":0.19101274144863095,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":45.41293833268257,"scaled_rad":-106.1160822230899},{"average":0.22829183193210226,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":59.05437444845264,"scaled_rad":-87.92750073539649},{"average":0.2339242169797306,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":61.115417778914434,"scaled_rad":-85.17944296144742},{"average":0.23769706939092114,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":62.49600739293155,"scaled_rad":-83.33865680942459},{"average":0.23855021878168436,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":62.80819802742316,"scaled_rad":-82.92240263010247},{"average":0.23595827847054218,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":61.859736364013955,"scaled_rad":-84.18701818131473},{"average":0.2530702604351641,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":68.12147734956986,"scaled_rad":-75.83803020057351},{"average":0.2391035964074951,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":63.01069399587337,"scaled_rad":-82.65240800550218},{"average":0.22655144978312852,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":58.4175211455863,"scaled_rad":-88.77663847255161},{"average":0.21890527947085028,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":55.61957885427724,"scaled_rad":-92.50722819429701},{"average":0.21611503065488394,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":54.59855069944648,"scaled_rad":-93.8685990674047},{"average":0.21766346042895574,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":55.165163392213806,"scaled_rad":-93.11311547704825},{"average":0.22197674534188708,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":56.743512000663785,"scaled_rad":-91.00865066578162},{"average":0.22197952866643297,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":56.744530495039314,"scaled_rad":-91.00729267328092},{"average":0.22198227659843212,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":56.745536038316544,"scaled_rad":-91.00595194891127},{"average":0.2195767814421594,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":55.86529974296921,"scaled_rad":-92.17960034270772},{"average":0.21461048022108176,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":54.04799465423484,"scaled_rad":-94.60267379435355},{"average":0.2080811654814725,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":51.65874028281646,"scaled_rad":-97.78834628957806},{"average":0.24679679097763174,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":65.82584374587167,"scaled_rad":-78.89887500550445},{"average":0.2410581099425218,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":63.725903814023205,"scaled_rad":-81.69879491463574},{"average":0.23155234851166712,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":60.24748640605964,"scaled_rad":-86.33668479192048},{"average":0.2235104131547823,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":57.30472288915633,"scaled_rad":-90.2603694811249},{"average":0.2200282908016829,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":56.030519333998214,"scaled_rad":-91.95930755466905},{"average":0.22010737009077103,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":56.05945660301915,"scaled_rad":-91.9207245293078},{"average":0.22066884595923802,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":56.26491593936308,"scaled_rad":-91.64677874751591},{"average":0.22030635047420688,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":56.132268953152405,"scaled_rad":-91.8236413957968},{"average":0.21894714135738563,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":55.63489726047899,"scaled_rad":-92.48680365269468},{"average":0.21656854434605735,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":54.76450373010081,"scaled_rad":-93.6473283598656},{"average":0.21327319479223444,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":53.558645437030656,"scaled_rad":-95.25513941729247},{"average":0.21015237909750537,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":52.41665384397892,"scaled_rad":-96.77779487469479},{"average":0.20878226984947595,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":51.91529349596008,"scaled_rad":-97.4462753387199},{"average":0.20436244155523053,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":50.297957757971666,"scaled_rad":-99.60272298937112},{"average":0.19378340322646073,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":46.42679905595931,"scaled_rad":-104.7642679253876},{"average":0.1822114501688206,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":42.19230576968992,"scaled_rad":-110.41025897374678},{"average":0.17555478448643258,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":39.75645021439958,"scaled_rad":-113.65806638080056},{"average":0.1725953221409216,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":38.673502213261656,"scaled_rad":-115.10199704898446},{"average":0.17634603291503362,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":40.045989598286916,"scaled_rad":-113.27201386895078},{"average":0.18446740874094583,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":43.0178225498033,"scaled_rad":-109.30956993359561},{"average":0.19266455962613444,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":46.01738366251894,"scaled_rad":-105.31015511664143},{"average":0.19931047908413005,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":48.44930688116605,"scaled_rad":-102.06759082511194},{"average":0.20235249320675372,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":49.562462829416454,"scaled_rad":-100.5833828941114},{"average":0.20885216500434392,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":51.94087003974287,"scaled_rad":-97.41217328034284},{"average":0.22527879477074156,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":57.951821960768775,"scaled_rad":-89.39757071897498},{"average":0.2383431966252393,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":62.73244297318045,"scaled_rad":-83.02340936909275},{"average":0.25878418742683884,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":70.21235910167871,"scaled_rad":-73.05018786442838},{"average":0.28155544289368467,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":78.54498263670258,"scaled_rad":-61.94002315106323},{"average":0.3022504020648844,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":86.11783271944697,"scaled_rad":-51.842889707404055},{"average":0.3190679319346585,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":92.271825651364,"scaled_rad":-43.63756579818134},{"average":0.3347010063099424,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":97.99239400798929,"scaled_rad":-36.01014132268095},{"average":0.35164527824372616,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":104.19276531842755,"scaled_rad":-27.742979575429956},{"average":0.3716054607712926,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":111.49674058385503,"scaled_rad":-18.004345888193313},{"average":0.3789418891666921,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":114.18133985856471,"scaled_rad":-14.424880188580403},{"average":0.3812335231308644,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":115.01991123778991,"scaled_rad":-13.306785016280145},{"average":0.3833501813671155,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":115.79445422513935,"scaled_rad":-12.274061033147547},{"average":0.38554655905835683,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":116.5981687356759,"scaled_rad":-11.202441685765478},{"average":0.38436840204722766,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":116.16704894725748,"scaled_rad":-11.777268070323373},{"average":0.4736529282981255,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":148.83869262693463,"scaled_rad":31.784923502579517},{"average":0.4579406532542675,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":143.08914258522347,"scaled_rad":24.11885678029796},{"average":0.45390502672344374,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":141.61239675281783,"scaled_rad":22.14986233709041},{"average":0.44574123128753773,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":138.62504130887254,"scaled_rad":18.166721745163358},{"average":0.43229981093149755,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.70645894234642,"scaled_rad":11.608611923128535},{"average":0.41358916590112116,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.85972353232086,"scaled_rad":2.4796313764277897},{"average":0.395197126306228,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":120.1295745421332,"scaled_rad":-6.493900610489078},{"average":0.4554136187467728,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.16443172588478,"scaled_rad":22.885908967846348},{"average":0.44814124788412746,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":139.5032728497864,"scaled_rad":19.337697133048522},{"average":0.44444780366203346,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":138.15174085827513,"scaled_rad":17.53565447770015},{"average":0.4428958454358203,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":137.5838370086193,"scaled_rad":16.77844934482573},{"average":0.4387019575779211,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":136.04917903954677,"scaled_rad":14.732238719395667},{"average":0.4332509760557911,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":134.05451620743318,"scaled_rad":12.072688276577566},{"average":0.42137197848128455,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":129.70766695680925,"scaled_rad":6.276889275745674},{"average":0.40040045372427563,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.03361398199569,"scaled_rad":-3.9551813573391144},{"average":0.37940517110186955,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":114.3508673561606,"scaled_rad":-14.198843525119202},{"average":0.31650010877220036,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":91.3321891105316,"scaled_rad":-44.89041451929121},{"average":0.2958709579108276,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":83.78342008348758,"scaled_rad":-54.955439888683216},{"average":0.27608174605306307,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":76.54200764991909,"scaled_rad":-64.61065646677456},{"average":0.256904798030625,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":69.52463925517458,"scaled_rad":-73.96714765976724},{"average":0.239934834240657,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":63.31486659372999,"scaled_rad":-82.24684454169336},{"average":0.22405637431101863,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":57.504504969081054,"scaled_rad":-89.9939933745586},{"average":0.1990997517048815,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":48.3721959848276,"scaled_rad":-102.17040535356321},{"average":0.17822801157576657,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":40.73465692730917,"scaled_rad":-112.35379076358778},{"average":0.14703819776517255,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":29.32145325087756,"scaled_rad":-127.5713956654966},{"average":0.1455511744392829,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":28.777310852559726,"scaled_rad":-128.2969188632537},{"average":0.1344645591465647,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":24.72041589363389,"scaled_rad":-133.70611214182148},{"average":0.1289629203514657,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":22.707216183499852,"scaled_rad":-136.3903784220002},{"average":0.12948688284299795,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":22.89894835192456,"scaled_rad":-136.13473553076724},{"average":0.1426258143622862,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":27.70684180172094,"scaled_rad":-129.72421093103875},{"average":0.1756937929547411,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":39.80731720485962,"scaled_rad":-113.59024372685384},{"average":0.21633204082689236,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":54.67796064103928,"scaled_rad":-93.76271914528097},{"average":0.24395669701053185,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":64.78657589055328,"scaled_rad":-80.2845654792623},{"average":0.26348353451207224,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":71.93197839006947,"scaled_rad":-70.75736214657404},{"average":0.27717109019543895,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":76.94062838700218,"scaled_rad":-64.07916215066376},{"average":0.29118380935922744,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":82.06826457130772,"scaled_rad":-57.24231390492305},{"average":0.3091949885097628,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":88.65904633570335,"scaled_rad":-48.45460488572887},{"average":0.33407609108629643,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":97.76372048107163,"scaled_rad":-36.31503935857117},{"average":0.35396520357477845,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":105.04168928053275,"scaled_rad":-26.611080959289694},{"average":0.3690973231260491,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":110.57894460188714,"scaled_rad":-19.228073864150474},{"average":0.43653352680562557,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":135.25569106899516,"scaled_rad":13.674254758660197},{"average":0.4594282919030828,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":143.63351014698472,"scaled_rad":24.844680195979606},{"average":0.4790257181934619,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":150.80474300987473,"scaled_rad":34.406324013166284},{"average":0.4905009236198716,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":155.00383369877204,"scaled_rad":40.00511159836273},{"average":0.4993948262285727,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":158.25835527327962,"scaled_rad":44.34447369770612},{"average":0.5005287977601957,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":158.67330638944472,"scaled_rad":44.89774185259296},{"average":0.49801089443652413,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":157.75193687934953,"scaled_rad":43.66924917246604},{"average":0.49352263061860685,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":156.10955871644916,"scaled_rad":41.47941162193217},{"average":0.4898833594618999,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":154.7778501273087,"scaled_rad":39.70380016974494},{"average":0.5020331692346286,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":159.22379694854146,"scaled_rad":45.63172926472191},{"average":0.49702905874605585,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":157.39265641746047,"scaled_rad":43.190208556613925},{"average":0.4961835562446634,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":157.0832639883833,"scaled_rad":42.77768531784437},{"average":0.49706479097590034,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":157.4057318150728,"scaled_rad":43.207642420097045},{"average":0.49853883906551916,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":157.94512622049757,"scaled_rad":43.9268349606634},{"average":0.5017876179030275,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":159.13394301810118,"scaled_rad":45.511924024134885},{"average":0.5046652385225034,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":160.18694289918488,"scaled_rad":46.91592386557983},{"average":0.5049239135479503,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":160.28159914719456,"scaled_rad":47.04213219625939},{"average":0.4922541692584454,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":155.6453941033764,"scaled_rad":40.8605254711685},{"average":0.47525781442823606,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":149.42596424040642,"scaled_rad":32.56795232054188},{"average":0.4619989030236343,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":144.57416687773406,"scaled_rad":26.098889170312077},{"average":0.4469731793469476,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":139.0758447091818,"scaled_rad":18.767792945575735},{"average":0.43913563406213657,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":136.20787309505116,"scaled_rad":14.943830793401531},{"average":0.4366282260314166,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":135.29034409894004,"scaled_rad":13.72045879858669},{"average":0.4399287367665003,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":136.49809100902144,"scaled_rad":15.330788012028563},{"average":0.44877397225980814,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":139.73480395845348,"scaled_rad":19.64640527793796},{"average":0.4608965534784577,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":144.17078710900174,"scaled_rad":25.561049478668963},{"average":0.47191381611874406,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":148.20230404058466,"scaled_rad":30.9364053874462},{"average":0.4789995932926193,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":150.7951831960152,"scaled_rad":34.39357759468689},{"average":0.4818208827347551,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":151.8275699626949,"scaled_rad":35.770093283593184},{"average":0.4788750523512003,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":150.74961026829263,"scaled_rad":34.33281369105683},{"average":0.470204231453861,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":147.57672037724817,"scaled_rad":30.10229383633086},{"average":0.4596377073475586,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":143.71014097060257,"scaled_rad":24.94685462747006},{"average":0.4554807792793694,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.1890075967828,"scaled_rad":22.91867679571041},{"average":0.462214937892513,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":144.65321992930714,"scaled_rad":26.20429323907618},{"average":0.4759333119733995,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":149.6731472185639,"scaled_rad":32.897529624751854},{"average":0.4928322145234945,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":155.85691663391364,"scaled_rad":41.14255551188484},{"average":0.508142499683643,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":161.45936761160016,"scaled_rad":48.61249014880019},{"average":0.5127485388920223,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":163.1448430025756,"scaled_rad":50.85979067010081},{"average":0.5100601044644665,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":162.16107150978127,"scaled_rad":49.54809534637502},{"average":0.5054810935767685,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":160.48548651862805,"scaled_rad":47.3139820248374},{"average":0.4979732867590999,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":157.73817520430887,"scaled_rad":43.6509002724118},{"average":0.48800833181340236,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":154.09172636327474,"scaled_rad":38.78896848436631},{"average":0.4788068338697646,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":150.72464726505538,"scaled_rad":34.2995296867405},{"average":0.47496605070259146,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":149.319199934393,"scaled_rad":32.42559991252398},{"average":0.4742441970910399,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":149.0550540070323,"scaled_rad":32.07340534270975},{"average":0.4777786441449378,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":150.3484045975382,"scaled_rad":33.7978727967176},{"average":0.48618417052079943,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":153.42421598640715,"scaled_rad":37.898954648542855},{"average":0.49756353681456067,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":157.58823652234585,"scaled_rad":43.45098202979443},{"average":0.5057111531378743,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":160.5696715876559,"scaled_rad":47.42622878354118},{"average":0.5028915820164244,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":159.53791360138788,"scaled_rad":46.05055146851717},{"average":0.49141071639201617,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":155.3367516916427,"scaled_rad":40.44900225552357},{"average":0.4823096378539879,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":152.0064187932002,"scaled_rad":36.00855839093359},{"average":0.4780196605202565,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":150.43659906376917,"scaled_rad":33.91546541835885},{"average":0.47552162912612383,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":149.52250123476344,"scaled_rad":32.69666831301788},{"average":0.4794251661465247,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":150.95091191213635,"scaled_rad":34.601215882848464},{"average":0.48252250381281825,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":152.0843122541443,"scaled_rad":36.11241633885905},{"average":0.4840616120542314,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":152.64751394383688,"scaled_rad":36.86335192511581},{"average":0.48427355849588005,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":152.7250709283614,"scaled_rad":36.96676123781518},{"average":0.48332943925629857,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":152.37959194469008,"scaled_rad":36.50612259292009},{"average":0.4814611043624293,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":151.69591724214115,"scaled_rad":35.59455632285486},{"average":0.4791652415089426,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":150.85579839695916,"scaled_rad":34.47439786261222},{"average":0.47752622886325946,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":150.2560389605282,"scaled_rad":33.6747186140376},{"average":0.47666863455475844,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":149.94222180938684,"scaled_rad":33.25629574584909},{"average":0.4766960964655509,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":149.9522708716583,"scaled_rad":33.2696944955444},{"average":0.47700743494507936,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":150.06619811408262,"scaled_rad":33.42159748544347},{"average":0.3712430990833257,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":111.36414255763991,"scaled_rad":-18.18114325648014},{"average":0.2564424982029298,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":69.35547113749661,"scaled_rad":-74.19270515000453},{"average":0.23545407667260926,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":61.675235172414126,"scaled_rad":-84.43301977011451},{"average":0.21417176293734855,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":53.88745603268279,"scaled_rad":-94.81672528975628},{"average":0.20079373390747504,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":48.99207028160469,"scaled_rad":-101.34390629119375},{"average":0.19887533153185336,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":48.29007452172991,"scaled_rad":-102.27990063769346},{"average":0.206155370914262,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":50.95403951839339,"scaled_rad":-98.72794730880884},{"average":0.2166298102499593,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":54.78692259556439,"scaled_rad":-93.61743653924749},{"average":0.22478861593412652,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":57.77245215323682,"scaled_rad":-89.63673046235091},{"average":0.22891380951113308,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":59.28197301107187,"scaled_rad":-87.62403598523751},{"average":0.2324911928690142,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":60.591035166431894,"scaled_rad":-85.87861977809081},{"average":0.23884818599005372,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":62.91723235698565,"scaled_rad":-82.77702352401913},{"average":0.24605552110569567,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":65.55459287919496,"scaled_rad":-79.26054282774005},{"average":0.24884069142007478,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":66.57376267176238,"scaled_rad":-77.90164977098348},{"average":0.2512373669930761,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":67.45077164100803,"scaled_rad":-76.73230447865598},{"average":0.2551686050638788,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":68.8893188883588,"scaled_rad":-74.81424148218828},{"average":0.25928509682053635,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":70.39565551275783,"scaled_rad":-72.80579264965623},{"average":0.26663324846747866,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":73.08454464499667,"scaled_rad":-69.22060714000446},{"average":0.2766013291488716,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":76.73213727798628,"scaled_rad":-64.35715029601829},{"average":0.28491744961080007,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":79.77523260411137,"scaled_rad":-60.29968986118486},{"average":0.2878472493351561,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":80.84732624302468,"scaled_rad":-58.870231675967105},{"average":0.28388731708533466,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":79.39827901284433,"scaled_rad":-60.8022946495409},{"average":0.28027954659236154,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":78.07809737584667,"scaled_rad":-62.562536832204444},{"average":0.2815406734615209,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":78.53957809858979,"scaled_rad":-61.94722920188029},{"average":0.2782865427286354,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":77.34880289647741,"scaled_rad":-63.53492947136347},{"average":0.2737723905634275,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":75.69695148111491,"scaled_rad":-65.73739802518013},{"average":0.26495949362321625,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":72.4720720903996,"scaled_rad":-70.03723721280052},{"average":0.2569557884416367,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":69.54329803749228,"scaled_rad":-73.94226928334363},{"average":0.2560624315943799,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":69.21639439788116,"scaled_rad":-74.37814080282513},{"average":0.3025302121045504,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":86.22022284568534,"scaled_rad":-51.70636953908621},{"average":0.2768629527950274,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":76.82787250674653,"scaled_rad":-64.22950332433797},{"average":0.26995659608169176,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":74.30064819210132,"scaled_rad":-67.59913574386492},{"average":0.259515268214106,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":70.4798815043348,"scaled_rad":-72.69349132755362},{"average":0.2461998654833474,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":65.60741242443788,"scaled_rad":-79.19011676741616},{"average":0.2315532184110114,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":60.247804725959035,"scaled_rad":-86.33626036538796},{"average":0.21902912306015962,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":55.66489660184032,"scaled_rad":-92.44680453087958},{"average":0.21256148406371528,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":53.298211067251515,"scaled_rad":-95.60238524366466},{"average":0.21253155071376695,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":53.2872576379764,"scaled_rad":-95.61698981603146},{"average":0.21379286544299353,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":53.748807103842616,"scaled_rad":-95.00159052820985},{"average":0.21440014371075497,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":53.97102678749708,"scaled_rad":-94.70529761667056},{"average":0.21473437831696254,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":54.093332347239254,"scaled_rad":-94.54222353701434},{"average":0.21554831786759782,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":54.39117503165272,"scaled_rad":-94.14509995779638},{"average":0.21281307920491965,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":53.3902765924901,"scaled_rad":-95.4796312100132},{"average":0.21223765268164718,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":53.17971233100359,"scaled_rad":-95.76038355866189},{"average":0.21364958749369647,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":53.69637779382495,"scaled_rad":-95.07149627490007},{"average":0.21385166271379794,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":53.77032262911584,"scaled_rad":-94.97290316117889},{"average":0.22001116452143835,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":56.024252360881995,"scaled_rad":-91.96766351882401},{"average":0.2262550516418093,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":58.30906098045883,"scaled_rad":-88.92125202605489},{"average":0.2309472533773266,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":60.02606559047593,"scaled_rad":-86.6319125460321},{"average":0.2314505456320619,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":60.21023395540902,"scaled_rad":-86.38635472612133},{"average":0.22757610842081266,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":58.792471691996155,"scaled_rad":-88.2767044106718},{"average":0.22133917385644786,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":56.51020720231545,"scaled_rad":-91.31972373024607},{"average":0.21438765153695177,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":53.96645556033801,"scaled_rad":-94.711392586216},{"average":0.21581540845344277,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":54.48891076277371,"scaled_rad":-94.01478564963506},{"average":0.23125219104101893,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":60.13765059978283,"scaled_rad":-86.48313253362289},{"average":0.25773133311363866,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":69.82709098846922,"scaled_rad":-73.56387868204105},{"average":0.28693946576368984,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":80.51514347148971,"scaled_rad":-59.31314203801374},{"average":0.3045680970942839,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":86.96594055333871,"scaled_rad":-50.71207926221507},{"average":0.3163913453485755,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":91.29238960695281,"scaled_rad":-44.943480524062934},{"average":0.32191961697128973,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":93.31533499520785,"scaled_rad":-42.24622000638955},{"average":0.32172280155932126,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":93.24331486719112,"scaled_rad":-42.34224684374519},{"average":0.3184238465204155,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":92.03613722877787,"scaled_rad":-43.951817028296176},{"average":0.3157796194124724,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":91.06854240012757,"scaled_rad":-45.24194346649658},{"average":0.3147439554226926,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":90.68956469517931,"scaled_rad":-45.74724707309426},{"average":0.31566324518482564,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":91.02595789574785,"scaled_rad":-45.29872280566954},{"average":0.3156811735004898,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":91.03251835550222,"scaled_rad":-45.28997552599705},{"average":0.3142189385138407,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":90.49744668669469,"scaled_rad":-46.00340441774041},{"average":0.31180485666176044,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":89.61406828512146,"scaled_rad":-47.18124228650473},{"average":0.308183194958868,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":88.2888034754866,"scaled_rad":-48.94826203268454},{"average":0.2988742623186153,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":84.88241109114672,"scaled_rad":-53.490118545137705},{"average":0.2764607611043758,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":76.68069959605683,"scaled_rad":-64.42573387192424},{"average":0.24213546975134953,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":64.12013915654954,"scaled_rad":-81.17314779126728},{"average":0.22226982032775452,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":56.85075613256163,"scaled_rad":-90.86565848991783},{"average":0.20753578447212956,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":51.459170494465404,"scaled_rad":-98.0544393407128},{"average":0.19728975062674697,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":47.70986721669967,"scaled_rad":-103.05351037773377},{"average":0.19111404024692127,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":45.45000632622964,"scaled_rad":-106.06665823169382},{"average":0.1881960518071058,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":44.38223475852073,"scaled_rad":-107.4903536553057},{"average":0.1873446053732468,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":44.07066728241405,"scaled_rad":-107.90577695678127},{"average":0.19306908522807287,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":46.165410615013485,"scaled_rad":-105.11278584664869},{"average":0.20150909183925214,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":49.25383926254518,"scaled_rad":-100.9948809832731},{"average":0.20915775442945547,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":52.05269354633197,"scaled_rad":-97.26307527155737},{"average":0.2150784118348979,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":54.219223596079665,"scaled_rad":-94.37436853856045},{"average":0.21825630260706846,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":55.382100516874736,"scaled_rad":-92.82386597750036},{"average":0.2210865735685356,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":56.41777386647781,"scaled_rad":-91.44296817802959},{"average":0.22550632283428168,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":58.03508068578256,"scaled_rad":-89.28655908562325},{"average":0.23063181375944486,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":59.91063762965632,"scaled_rad":-86.78581649379159},{"average":0.23420904745425475,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":61.21964501921603,"scaled_rad":-85.04047330771196},{"average":0.23615375631674965,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":61.9312670402323,"scaled_rad":-84.09164394635694},{"average":0.23768221960191796,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":62.49057345005923,"scaled_rad":-83.3459020665877},{"average":0.24033666580208463,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":63.46190772331295,"scaled_rad":-82.05078970224942},{"average":0.24450964587920468,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":64.98891496507099,"scaled_rad":-80.01478004657201},{"average":0.24849073324513915,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":66.44570342931138,"scaled_rad":-78.07239542758484},{"average":0.24977312686631062,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":66.91496623673524,"scaled_rad":-77.44671168435303},{"average":0.24880226472280106,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":66.55970129501738,"scaled_rad":-77.92039827331017},{"average":0.24859371158153126,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":66.48338601166472,"scaled_rad":-78.02215198444704},{"average":0.2508037832854774,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":67.2921115349985,"scaled_rad":-76.94385128666866},{"average":0.26022851405257025,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":70.74087761271794,"scaled_rad":-72.34549651637609},{"average":0.28082128750318947,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":78.27633515285561,"scaled_rad":-62.29821979619254},{"average":0.29190616156042287,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":82.33259294621972,"scaled_rad":-56.88987607170705},{"average":0.3005424945791622,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":85.49286278171593,"scaled_rad":-52.6761829577121},{"average":0.30888671623781705,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":88.5462411022743,"scaled_rad":-48.60501186363429},{"average":0.3181576506305917,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":91.93872889133675,"scaled_rad":-44.081694811551},{"average":0.327494375536538,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":95.35529122381793,"scaled_rad":-39.52627836824277},{"average":0.5324857749467826,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":170.3672360720166,"scaled_rad":60.48964809602211},{"average":0.5470924442188986,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":175.71221480287102,"scaled_rad":67.61628640382798},{"average":0.5547889875641255,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":178.52858996102353,"scaled_rad":71.3714532813647},{"average":0.5557701337545831,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":178.88761811605033,"scaled_rad":71.85015748806708},{"average":0.5455362409683405,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":175.14275758301062,"scaled_rad":66.85701011068082},{"average":0.529674278242193,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":169.33843273513364,"scaled_rad":59.11791031351149},{"average":0.5178518317395598,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":165.01227706432172,"scaled_rad":53.34970275242895},{"average":0.5057269917143152,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":160.5754673548241,"scaled_rad":47.43395647309876},{"average":0.48994808749112356,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":154.80153587886818,"scaled_rad":39.7353811718242},{"average":0.473696696179203,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":148.85470848853154,"scaled_rad":31.806277984708714},{"average":0.4604468823707818,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":144.00624018446803,"scaled_rad":25.341653579290693},{"average":0.45017396505469476,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.24709951143785,"scaled_rad":20.32946601525046},{"average":0.44422349761024654,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":138.06966115525262,"scaled_rad":17.426214873670176},{"average":0.4353197508970677,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":134.81153735438684,"scaled_rad":13.082049805849124},{"average":0.42551481364374705,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":131.22364335199399,"scaled_rad":8.29819113599197},{"average":0.4160635570211113,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":127.76517074015283,"scaled_rad":3.6868943202037485},{"average":0.39779593758111337,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":121.08055047860381,"scaled_rad":-5.225932695194928},{"average":0.37443385789549705,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":112.53172824528872,"scaled_rad":-16.62436233961506},{"average":0.3444569632915913,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":101.56236479288202,"scaled_rad":-31.250180276157323},{"average":0.3129529109860279,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":90.03417267926895,"scaled_rad":-46.62110309430807},{"average":0.2837742143028806,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":79.35689161949988,"scaled_rad":-60.857477840666846},{"average":0.26593966284678544,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":72.83074274659202,"scaled_rad":-69.55900967121063},{"average":0.2561589383707238,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":69.25170885988011,"scaled_rad":-74.3310548534932},{"average":0.240552609427403,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":63.54092738637834,"scaled_rad":-81.94543015149554},{"average":0.2186664107094712,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":55.53217025856994,"scaled_rad":-92.62377298857342},{"average":0.1861278362622535,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":43.62541827338533,"scaled_rad":-108.4994423021529},{"average":0.1788763347667209,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":40.97189606799306,"scaled_rad":-112.0374719093426},{"average":0.1689397807912862,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":37.335839916706504,"scaled_rad":-116.88554677772467},{"average":0.16070002037913977,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":34.32068681576422,"scaled_rad":-120.90575091231437},{"average":0.15537216926690875,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":32.37108075941319,"scaled_rad":-123.50522565411575},{"average":0.15112324497080457,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":30.81628345630443,"scaled_rad":-125.57828872492743},{"average":0.1479035529865873,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":29.6381103317581,"scaled_rad":-127.14918622432253},{"average":0.1470350836836978,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":29.3203137235193,"scaled_rad":-127.5729150353076},{"average":0.24291114707991657,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":64.40398065018228,"scaled_rad":-80.79469246642364},{"average":0.25896153064287153,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":70.27725382203538,"scaled_rad":-72.96366157061951},{"average":0.2814212289174331,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":78.49587008167147,"scaled_rad":-62.00550655777137},{"average":0.3000418070066421,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":85.30964754105653,"scaled_rad":-52.92046994525796},{"average":0.3193339020217291,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":92.36915136141823,"scaled_rad":-43.507798184775694},{"average":0.32911874052389034,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":95.94969068250336,"scaled_rad":-38.73374575666219},{"average":0.33905429451387786,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":99.58538091183695,"scaled_rad":-33.886158784217415},{"average":0.34799105073573505,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":102.85558379236933,"scaled_rad":-29.525888276840902},{"average":0.4827653880046693,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":152.17319020539517,"scaled_rad":36.23092027386019},{"average":0.47805855979896944,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":150.45083337095394,"scaled_rad":33.93444449460526},{"average":0.47222510870930184,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":148.31621449098284,"scaled_rad":31.088285987977088},{"average":0.4651533855421053,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":145.72847807996456,"scaled_rad":27.63797077328607},{"average":0.45827371244735304,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":143.2110180292411,"scaled_rad":24.28135737232145},{"average":0.45506304490947985,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.03614719578306,"scaled_rad":22.714862927710726},{"average":0.45428828810610533,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":141.75264254742856,"scaled_rad":22.336856729904724},{"average":0.45302133738296596,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":141.28903071764967,"scaled_rad":21.71870762353288},{"average":0.450218569112001,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.26342135272625,"scaled_rad":20.351228470301663},{"average":0.4486396524882371,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":139.6856526900291,"scaled_rad":19.580870253372098},{"average":0.44516548406061973,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":138.41435969317388,"scaled_rad":17.88581292423183},{"average":0.43291227560109286,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.93057647190778,"scaled_rad":11.907435295877036},{"average":0.4069403535756399,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":124.42674173454841,"scaled_rad":-0.7643443539354564},{"average":0.3791707851222693,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":114.26509913258856,"scaled_rad":-14.313201156548587},{"average":0.36131836013018687,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":107.7324098453044,"scaled_rad":-23.02345353959413},{"average":0.3463461115232678,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":102.25365566348576,"scaled_rad":-30.32845911535233},{"average":0.33614129048306496,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":98.51943327534796,"scaled_rad":-35.30742229953604},{"average":0.320657270419404,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":92.85340795728436,"scaled_rad":-42.86212272362087},{"average":0.31697906591665065,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":91.50745259479248,"scaled_rad":-44.65672987361002},{"average":0.31687229007437573,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":91.46838040144736,"scaled_rad":-44.70882613140353},{"average":0.3160224100567103,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":91.15738611975496,"scaled_rad":-45.12348517366006},{"average":0.31261945102913713,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":89.91215058484286,"scaled_rad":-46.78379922020953},{"average":0.30962470489850613,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":88.81629128425007,"scaled_rad":-48.24494495433325},{"average":0.3087478135923318,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":88.49541283527194,"scaled_rad":-48.67278288630409},{"average":0.3147233655851062,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":90.68203031195198,"scaled_rad":-45.757292917397365},{"average":0.3267417626278363,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":95.07988963057063,"scaled_rad":-39.89348049257251},{"average":0.3412339991669623,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":100.3829943029008,"scaled_rad":-32.82267426279894},{"average":0.35201803142724813,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":104.32916587632795,"scaled_rad":-27.561112164896088},{"average":0.3627963552010519,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":108.27324855883386,"scaled_rad":-22.30233525488819},{"average":0.36813354288477573,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":110.22627112137931,"scaled_rad":-19.69830517149424},{"average":0.3721907248646453,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":111.71090468058546,"scaled_rad":-17.71879375921941},{"average":0.3738689232563627,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":112.32500325040843,"scaled_rad":-16.899995666122095},{"average":0.3791697296816609,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":114.26471291807938,"scaled_rad":-14.3137161092275},{"average":0.3910846926247255,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":118.62472287813054,"scaled_rad":-8.500369495825964},{"average":0.4150065309094609,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":127.37837605209107,"scaled_rad":3.171168069454751},{"average":0.43880222405146446,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":136.08586927730892,"scaled_rad":14.781159036411879},{"average":0.44785758324490843,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":139.39947222042488,"scaled_rad":19.199296293899835},{"average":0.45173917129291136,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.81985117006815,"scaled_rad":21.09313489342418},{"average":0.45515972334802346,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.07152447366352,"scaled_rad":22.762032631551335},{"average":0.45475369910938257,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":141.9229491291194,"scaled_rad":22.563932172159156},{"average":0.45674271367662417,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.650783816084,"scaled_rad":23.534378421445297},{"average":0.45365267246500734,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":141.52005344587667,"scaled_rad":22.02673792783554},{"average":0.4546372105904163,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":141.88032280242817,"scaled_rad":22.507097069904233},{"average":0.4552826770816534,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.1165165987598,"scaled_rad":22.822022131679716},{"average":0.44455195023007754,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":138.18985092845722,"scaled_rad":17.586467904609606},{"average":0.43621512753494046,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":135.1391800904807,"scaled_rad":13.518906787307571},{"average":0.4239104943664231,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.63657916541956,"scaled_rad":7.515438887226082},{"average":0.4007688591211532,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":122.16842356616293,"scaled_rad":-3.775435245116114},{"average":0.37208344889222644,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":111.671649475978,"scaled_rad":-17.77113403202935},{"average":0.3446238185602527,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":101.6234216872028,"scaled_rad":-31.16877108372961},{"average":0.33546512211529855,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":98.2720048249012,"scaled_rad":-35.637326900131725},{"average":0.3401403626331436,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":99.98280286269991,"scaled_rad":-33.356262849733454},{"average":0.3356632422946381,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":98.34450240289078,"scaled_rad":-35.540663462812304},{"average":0.33323126767177685,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":97.45457654840553,"scaled_rad":-36.727231268792636},{"average":0.31975123816008594,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":92.52186603863711,"scaled_rad":-43.30417861515052},{"average":0.30370900417514246,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":86.65157501968454,"scaled_rad":-51.131233307087285},{"average":0.2932231568349678,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":82.81451744248503,"scaled_rad":-56.247310076686645},{"average":0.28061503130562576,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":78.2008603838616,"scaled_rad":-62.39885282151789},{"average":0.2704028504092878,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":74.46394482360004,"scaled_rad":-67.38140690186661},{"average":0.2620222673728922,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":71.39726088305206,"scaled_rad":-71.47031882259726},{"average":0.23844888920205265,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":62.771118770143616,"scaled_rad":-82.97184163980852},{"average":0.235904210520973,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":61.83995142638824,"scaled_rad":-84.21339809814901},{"average":0.23783239962887978,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":62.54552841857094,"scaled_rad":-83.27262877523876},{"average":0.24804070396908312,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":66.2810254411972,"scaled_rad":-78.29196607840375},{"average":0.27298725705009463,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":75.4096497115283,"scaled_rad":-66.1204670512956},{"average":0.3014139249424951,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":85.81174292274346,"scaled_rad":-52.25100943634206},{"average":0.3141803589067897,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":90.48332935609106,"scaled_rad":-46.02222752521192},{"average":0.32572081446744916,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.70629684901903,"scaled_rad":-40.39160420130797},{"average":0.3266726574233048,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":95.05460215116442,"scaled_rad":-39.92719713178079},{"average":0.3250814101340221,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.47232136159508,"scaled_rad":-40.70357151787324},{"average":0.3243474096747475,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.20373057130797,"scaled_rad":-41.06169257158939},{"average":0.32609783586592633,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":94.84425926320091,"scaled_rad":-40.20765431573213},{"average":0.33133252439504723,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":96.75977458908093,"scaled_rad":-37.65363388122543},{"average":0.33885602768712236,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":99.51282967155761,"scaled_rad":-33.98289377125653},{"average":0.34704468974448055,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":102.50928449060984,"scaled_rad":-29.987620679186875},{"average":0.3851103138583082,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":116.43853471697811,"scaled_rad":-11.415287044029185},{"average":0.4358073649125371,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":134.9899686238978,"scaled_rad":13.319958165197079},{"average":0.4776470639880282,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":150.30025582885028,"scaled_rad":33.733674438467006},{"average":0.492983961966612,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":155.91244516275304,"scaled_rad":41.216593550337365},{"average":0.49603501161000035,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":157.02890745452433,"scaled_rad":42.705209939365744},{"average":0.4997471596852138,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":158.38728369610016,"scaled_rad":44.516378261466855},{"average":0.504435028767489,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":160.10270287010883,"scaled_rad":46.80360382681175},{"average":0.5094755550503537,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":161.9471689336799,"scaled_rad":49.262891911573206},{"average":0.5131031701807122,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":163.2746122648236,"scaled_rad":51.0328163530981},{"average":0.5154144791629606,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":164.12038326986263,"scaled_rad":52.160511026483505},{"average":0.5184546585608562,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":165.232867842287,"scaled_rad":53.64382378971595},{"average":0.5198207416122983,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":165.732754895147,"scaled_rad":54.31033986019597},{"average":0.5175004231090345,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":164.8836870606046,"scaled_rad":53.17824941413943},{"average":0.5156049566904028,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":164.19008419304492,"scaled_rad":52.25344559072656},{"average":0.514386812564674,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":163.7443320286165,"scaled_rad":51.659109371488626},{"average":0.5144472606992085,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":163.76645164996123,"scaled_rad":51.68860219994829},{"average":0.5137818978019435,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":163.5229772159251,"scaled_rad":51.36396962123345},{"average":0.3944410605804456,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":119.85290946892931,"scaled_rad":-6.862787374760927},{"average":0.4215228530575683,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":129.76287607986393,"scaled_rad":6.350501439818572},{"average":0.45110644582325266,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.58831966108465,"scaled_rad":20.78442621477953},{"average":0.45177393695456025,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.83257287401142,"scaled_rad":21.11009716534855},{"average":0.4482886069814765,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":139.5571955632028,"scaled_rad":19.409594084270395},{"average":0.44068150057734046,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":136.77354782147754,"scaled_rad":15.698063761970019},{"average":0.4324159442531928,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.748955292667,"scaled_rad":11.66527372355597},{"average":0.42730583888157886,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":131.87902834252768,"scaled_rad":9.172037790036882},{"average":0.4256388357931961,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":131.269026439583,"scaled_rad":8.358701919443973},{"average":0.42557428132300407,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":131.24540419800758,"scaled_rad":8.327205597343436},{"average":0.42657551054909454,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":131.61178128360228,"scaled_rad":8.81570837813635},{"average":0.42496130778894253,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":131.02110046105707,"scaled_rad":8.028133948076118},{"average":0.4235181630936442,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.4930144506043,"scaled_rad":7.3240192674724085},{"average":0.41734961683417765,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":128.23577510719826,"scaled_rad":4.314366809597658},{"average":0.41644806009100144,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":127.9058709019915,"scaled_rad":3.874494535988674},{"average":0.41697747391038803,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":128.09959785998075,"scaled_rad":4.132797146640968},{"average":0.4212700076846714,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":129.67035306074493,"scaled_rad":6.227137414326563},{"average":0.43069019788301616,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.11745762050074,"scaled_rad":10.823276827334325},{"average":0.4429021202216004,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":137.58613312390136,"scaled_rad":16.781510831868445},{"average":0.46122029613039056,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":144.28925337647277,"scaled_rad":25.719004501963667},{"average":0.4801484392149947,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":151.21557725750375,"scaled_rad":34.954103010005014},{"average":0.4981238280755308,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":157.79326237849264,"scaled_rad":43.72434983799019},{"average":0.5151181013239108,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":164.01193053388937,"scaled_rad":52.01590737851913},{"average":0.5322249845212915,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":170.27180574142633,"scaled_rad":60.3624076552351},{"average":0.5466748298853635,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":175.55939832644773,"scaled_rad":67.41253110193031},{"average":0.5552344157404062,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":178.69158428122003,"scaled_rad":71.58877904162668},{"average":0.5599441277942688,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":180.4149963943703,"scaled_rad":73.88666185916037},{"average":0.562863221876487,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":181.4831725467943,"scaled_rad":75.31089672905904},{"average":0.563587026581311,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":181.74803243240575,"scaled_rad":75.66404324320763},{"average":0.5641883737431791,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":181.9680817626237,"scaled_rad":75.95744235016494},{"average":0.5645447823219745,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":182.09850138380264,"scaled_rad":76.13133517840353},{"average":0.5372524377943797,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":172.11148803411155,"scaled_rad":62.815317378815365},{"average":0.5204337819448214,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":165.9570830754767,"scaled_rad":54.609444100635585},{"average":0.5042293682670679,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":160.02744608294884,"scaled_rad":46.70326144393178},{"average":0.48892028031655516,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":154.4254331969258,"scaled_rad":39.23391092923441},{"average":0.37273359113554233,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":111.90955425754153,"scaled_rad":-17.453927656611313},{"average":0.3939696976434511,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":119.68042491233308,"scaled_rad":-7.092766783555902},{"average":0.3850935870641453,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":116.43241392671646,"scaled_rad":-11.4234480977114},{"average":0.3774035199617192,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":113.61840860246527,"scaled_rad":-15.175455196712988},{"average":0.3676057465122661,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":110.03313603132347,"scaled_rad":-19.955818624902065},{"average":0.3543604955918175,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":105.18633741243667,"scaled_rad":-26.418216783417762},{"average":0.34325826501959983,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":101.1237283967847,"scaled_rad":-31.835028804287077},{"average":0.3384256602499436,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":99.35534648662892,"scaled_rad":-34.19287135116146},{"average":0.37397659463499594,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":112.36440314493574,"scaled_rad":-16.84746247341903},{"average":0.3985195697713939,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":121.3453472364379,"scaled_rad":-4.87287035141614},{"average":0.4157576742761195,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":127.65323989981827,"scaled_rad":3.537653199757699},{"average":0.42829653541841833,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":132.24155122981225,"scaled_rad":9.655401639749641},{"average":0.446879437549857,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":139.0415420285154,"scaled_rad":18.722056038020526},{"average":0.4685493524462315,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":146.97115500617465,"scaled_rad":29.294873341566188},{"average":0.4898075604320753,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":154.75011319463198,"scaled_rad":39.66681759284262},{"average":0.5062272854633069,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":160.7585384847116,"scaled_rad":47.67805131294881},{"average":0.5169903230958415,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":164.69702755114815,"scaled_rad":52.92937006819753},{"average":0.5173952663788879,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":164.8452073445537,"scaled_rad":53.12694312607158},{"average":0.5151387482628185,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":164.01948581204778,"scaled_rad":52.02598108273037},{"average":0.5159567583867684,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":164.31881803027514,"scaled_rad":52.42509070703349},{"average":0.5175563925542365,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":164.90416780735177,"scaled_rad":53.205557076469006},{"average":0.5193685479520999,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":165.56728489983453,"scaled_rad":54.08971319977934},{"average":0.5200954280967209,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":165.83327017276028,"scaled_rad":54.44436023034703},{"average":0.522260210396694,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":166.6254230677652,"scaled_rad":55.500564090353606},{"average":0.5246372028362352,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":167.4952294415566,"scaled_rad":56.66030592207545},{"average":0.5288000459950241,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":169.01852730838002,"scaled_rad":58.69136974450666},{"average":0.533745374534959,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":170.82815792098648,"scaled_rad":61.10421056131531},{"average":0.5382880233492412,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":172.49043703758363,"scaled_rad":63.320582716778176},{"average":0.5343918924774885,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":171.06473647202776,"scaled_rad":61.41964862937033},{"average":0.504406932647538,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":160.09242173340613,"scaled_rad":46.7898956445415},{"average":0.48651567694358305,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":153.54552322941447,"scaled_rad":38.060697639219285},{"average":0.47388458910253833,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":148.92346363456764,"scaled_rad":31.897951512756833},{"average":0.46219951700751727,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":144.64757700683265,"scaled_rad":26.19676934244353},{"average":0.457444164450954,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.90746378875178,"scaled_rad":23.87661838500236},{"average":0.4507799115741885,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.46883187207342,"scaled_rad":20.625109162764545},{"average":0.4423894249488075,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":137.39852393816324,"scaled_rad":16.531365250884278},{"average":0.4313214168268463,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.3484378505882,"scaled_rad":11.13125046745094},{"average":0.4211621573063277,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":129.63088766534082,"scaled_rad":6.174516887121058},{"average":0.41290155660526195,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.60810853419659,"scaled_rad":2.14414471226209},{"average":0.4043317374747758,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":123.47217794479383,"scaled_rad":-2.0370960736082395},{"average":0.39287184453078317,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":119.27869051091041,"scaled_rad":-7.628412652119465},{"average":0.3646065794226354,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":108.93565898123673,"scaled_rad":-21.41912135835105},{"average":0.33583597679244176,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":98.40771066752971,"scaled_rad":-35.45638577662706},{"average":0.3147909235422184,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":90.7067516113213,"scaled_rad":-45.724331184904955},{"average":0.3093825759413541,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":88.72768969397704,"scaled_rad":-48.36308040803061},{"average":0.31504110634291954,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":90.7983003226436,"scaled_rad":-45.60226623647522},{"average":0.31218461336995595,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":89.75303162374372,"scaled_rad":-46.99595783500838},{"average":0.30850607365445526,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":88.40695359776359,"scaled_rad":-48.79072853631523},{"average":0.2994335611198343,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":85.08707377919806,"scaled_rad":-53.217234961069266},{"average":0.2994836668134667,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":85.10540881929315,"scaled_rad":-53.19278824094249},{"average":0.31746626177956144,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":91.6857308508758,"scaled_rad":-44.41902553216562},{"average":0.3341398439693623,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":97.78704940005169,"scaled_rad":-36.283934133264424},{"average":0.3489515628975279,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":103.20706139344779,"scaled_rad":-29.05725147540295},{"average":0.3521590676556767,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":104.38077487952964,"scaled_rad":-27.49230016062714},{"average":0.35608500646278407,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":105.81738298173971,"scaled_rad":-25.576822691013717},{"average":0.3627475741234429,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":108.2553982318749,"scaled_rad":-22.326135690833468},{"average":0.3736868232610535,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":112.25836789475797,"scaled_rad":-16.988842806989396},{"average":0.38238218591934375,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":115.44023828559035,"scaled_rad":-12.746348952546185},{"average":0.37844096988572967,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":113.99803982946567,"scaled_rad":-14.669280227379119},{"average":0.3641204685422117,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":108.75777774984185,"scaled_rad":-21.65629633354422},{"average":0.3578372638424817,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":106.4585817554633,"scaled_rad":-24.72189099271563},{"average":0.3690213372244342,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":110.55113928772481,"scaled_rad":-19.26514761636693},{"average":0.3955767363602324,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":120.26848421598645,"scaled_rad":-6.30868771201807},{"average":0.412583981356247,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":126.49189908768909,"scaled_rad":1.9891987835854366},{"average":0.42271110266157724,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.1976890233252,"scaled_rad":6.930252031100281},{"average":0.4317622791761706,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":133.50976141015363,"scaled_rad":11.346348546871496},{"average":0.4397484361778455,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":136.43211410535042,"scaled_rad":15.242818807133887},{"average":0.44560416257247343,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":138.5748841270376,"scaled_rad":18.09984550271679},{"average":0.45087251396789807,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.5027176139618,"scaled_rad":20.670290151949047},{"average":0.4559920173918092,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.37608356779896,"scaled_rad":23.168111423731943},{"average":0.46059710098266693,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":144.06120927225572,"scaled_rad":25.414945696340936},{"average":0.46554842624181375,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":145.87303424800174,"scaled_rad":27.830712330669},{"average":0.47361116197235675,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":148.82340918902412,"scaled_rad":31.764545585365482},{"average":0.48532865124959323,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":153.1111581480153,"scaled_rad":37.48154419735371},{"average":0.48453801045738293,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":152.8218411148586,"scaled_rad":37.09578815314478},{"average":0.4851570843336477,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":153.0483771334278,"scaled_rad":37.39783617790374},{"average":0.4484606515839379,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":139.6201513763169,"scaled_rad":19.49353516842251},{"average":0.45217015492331114,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.97755983690504,"scaled_rad":21.303413115873383},{"average":0.44102088052041283,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":136.89773620033426,"scaled_rad":15.863648267112325},{"average":0.42577421966379214,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":131.31856709086742,"scaled_rad":8.42475612115652},{"average":0.4107958842061722,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":125.83758556433875,"scaled_rad":1.1167807524516604},{"average":0.36562149478467526,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":109.30704419730895,"scaled_rad":-20.923941070254727},{"average":0.3528556503453197,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":104.63567348721774,"scaled_rad":-27.15243535037635},{"average":0.34644845652386097,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":102.291106490994,"scaled_rad":-30.27852467867467},{"average":0.3476710881025805,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":102.73850073688153,"scaled_rad":-29.681999017491307},{"average":0.3517652600888846,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":104.23666994846424,"scaled_rad":-27.684440068714366},{"average":0.36695082088904424,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":109.79348088057017,"scaled_rad":-20.275358825906437},{"average":0.38824374845295895,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":117.58514390973255,"scaled_rad":-9.886474787023275},{"average":0.40904633208920105,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":125.1973767200416,"scaled_rad":0.2631689600554523},{"average":0.42353645083709407,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.49970643479003,"scaled_rad":7.332941913053332},{"average":0.4360122877656153,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":135.06495548577328,"scaled_rad":13.4199406476977},{"average":0.44212857151345325,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":137.30307055054524,"scaled_rad":16.404094067393657},{"average":0.44676847472254516,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":139.0009377031317,"scaled_rad":18.66791693750892},{"average":0.45068730280009284,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.43494379542773,"scaled_rad":20.579925060570275},{"average":0.4771247311597136,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":150.10911999865124,"scaled_rad":33.47882666486831},{"average":0.4955667829854344,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":156.85756982834423,"scaled_rad":42.476759771125586},{"average":0.5040623346535831,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":159.96632392739224,"scaled_rad":46.621765236522975},{"average":0.505722952163864,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":160.57398917312216,"scaled_rad":47.43198556416286},{"average":0.5158401105442967,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":164.27613340276724,"scaled_rad":52.368177870356305},{"average":0.527530618200357,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":168.554009050559,"scaled_rad":58.072012067411976},{"average":0.5270261241273604,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":168.36940090754064,"scaled_rad":57.82586787672082},{"average":0.528114742846164,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":168.76775619235036,"scaled_rad":58.35700825646714},{"average":0.5283462216758974,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":168.8524606104842,"scaled_rad":58.4699474806456},{"average":0.5278860504504552,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":168.68407140643512,"scaled_rad":58.2454285419135},{"average":0.5219531807599742,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":166.51307254846222,"scaled_rad":55.350763397949606},{"average":0.5179616712910957,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":165.05247035245802,"scaled_rad":53.403293803277336},{"average":0.5184245725163394,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":165.22185853790407,"scaled_rad":53.629144717205406},{"average":0.5208284256508826,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":166.10149397270908,"scaled_rad":54.801991963612096},{"average":0.5244380730414445,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":167.42236241773296,"scaled_rad":56.56314989031057},{"average":0.5325470521335156,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":170.38965906617582,"scaled_rad":60.51954542156773},{"average":0.536884065178777,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":171.97669044550696,"scaled_rad":62.63558726067592},{"average":0.5303139984607697,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":169.5725238135506,"scaled_rad":59.430031751400776},{"average":0.5303139984607697,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":169.5725238135506,"scaled_rad":59.430031751400776},{"average":0.5303139984607697,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":169.5725238135506,"scaled_rad":59.430031751400776},{"average":0.5303139984607697,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":169.5725238135506,"scaled_rad":59.430031751400776},{"average":0.5303139984607697,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":169.5725238135506,"scaled_rad":59.430031751400776},{"average":0.5303139984607697,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":169.5725238135506,"scaled_rad":59.430031751400776},{"average":0.5303139984607697,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":169.5725238135506,"scaled_rad":59.430031751400776},{"average":0.5302958946126684,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":169.56589912168928,"scaled_rad":59.42119882891902},{"average":0.482715729125439,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":152.1550186668781,"scaled_rad":36.206691555837466},{"average":0.474162164269881,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":149.02503596005954,"scaled_rad":32.03338128007937},{"average":0.4681737646460533,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":146.8337171847164,"scaled_rad":29.11162291295517},{"average":0.4681737646460533,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":146.8337171847164,"scaled_rad":29.11162291295517},{"average":0.4681737646460533,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":146.8337171847164,"scaled_rad":29.11162291295517},{"average":0.4681737646460533,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":146.8337171847164,"scaled_rad":29.11162291295517},{"average":0.4681737646460533,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":146.8337171847164,"scaled_rad":29.11162291295517},{"average":0.4681737646460533,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":146.8337171847164,"scaled_rad":29.11162291295517},{"average":0.46815641386642026,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":146.82736806114997,"scaled_rad":29.103157414866615},{"average":0.42240240797400475,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.08472921649556,"scaled_rad":6.779638955327414},{"average":0.42240240797400475,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.08472921649556,"scaled_rad":6.779638955327414},{"average":0.42240240797400475,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.08472921649556,"scaled_rad":6.779638955327414},{"average":0.422399940605104,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":130.08382633890932,"scaled_rad":6.77843511854573},{"average":0.4159029512889923,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":127.70640072172924,"scaled_rad":3.608534295638975},{"average":0.4669747852048246,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":146.39497790112537,"scaled_rad":28.526637201500478},{"average":0.4585676411980154,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":143.3185745769666,"scaled_rad":24.4247661026221},{"average":0.4513834005057001,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.68966493422766,"scaled_rad":20.91955324563685},{"average":0.4445818793570428,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":138.20080281242764,"scaled_rad":17.601070416570167},{"average":0.438910606594368,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":136.125529406242,"scaled_rad":14.834039208322679},{"average":0.4424994566578737,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":137.4387875419816,"scaled_rad":16.585050055975444},{"average":0.4457704363172909,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":138.63572822592096,"scaled_rad":18.18097096789458},{"average":0.4499796697246673,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":140.17600155014674,"scaled_rad":20.234668733528963},{"average":0.4551285903754772,"rel_min":0.08057293349722494,"rel_max":0.6134657009876765,"scaled_dist":142.06013206975624,"scaled_rad":22.746842759674962}],"theta":[{"average":0.1104828529059887,"rel_min":0.1104828529059887,"rel_max":0.0,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.11043511983007193,"rel_min":0.11043511983007193,"rel_max":0.0,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.11038738675415516,"rel_min":0.11038738675415516,"rel_max":0.0,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.1104196417145431,"rel_min":0.11038738675415516,"rel_max":0.1104196417145431,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.11013234443962575,"rel_min":0.11013234443962575,"rel_max":0.1104196417145431,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.10831281853218873,"rel_min":0.10831281853218873,"rel_max":0.1104196417145431,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.1068762152322701,"rel_min":0.1068762152322701,"rel_max":0.1104196417145431,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.10678762942552567,"rel_min":0.10678762942552567,"rel_max":0.1104196417145431,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.10712238132125801,"rel_min":0.10678762942552567,"rel_max":0.1104196417145431,"scaled_dist":22.972576762802245,"scaled_rad":-136.03656431626368},{"average":0.10806158110499382,"rel_min":0.10678762942552567,"rel_max":0.1104196417145431,"scaled_dist":73.39750466909777,"scaled_rad":-68.80332710786963},{"average":0.11102604408833114,"rel_min":0.10678762942552567,"rel_max":0.11102604408833114,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.13090000511147082,"rel_min":0.10678762942552567,"rel_max":0.13090000511147082,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.11553587391972542,"rel_min":0.10678762942552567,"rel_max":0.13090000511147082,"scaled_dist":75.7482206891504,"scaled_rad":-65.66903908113281},{"average":0.11235890271408218,"rel_min":0.10678762942552567,"rel_max":0.13090000511147082,"scaled_dist":50.05563057819185,"scaled_rad":-99.9258258957442},{"average":0.10341015476733446,"rel_min":0.10341015476733446,"rel_max":0.13090000511147082,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.10467896319460124,"rel_min":0.10341015476733446,"rel_max":0.13090000511147082,"scaled_dist":14.000327037785988,"scaled_rad":-147.99956394961868},{"average":0.10561912884826169,"rel_min":0.10341015476733446,"rel_max":0.13090000511147082,"scaled_dist":20.669417635541585,"scaled_rad":-139.1074431526112},{"average":0.10492787163497673,"rel_min":0.10341015476733446,"rel_max":0.13090000511147082,"scaled_dist":15.765965819576376,"scaled_rad":-145.6453789072315},{"average":0.10382297713505595,"rel_min":0.10341015476733446,"rel_max":0.13090000511147082,"scaled_dist":7.928366677080167,"scaled_rad":-156.09551109722645},{"average":0.10297991139814258,"rel_min":0.10297991139814258,"rel_max":0.13090000511147082,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.10290407571232035,"rel_min":0.10290407571232035,"rel_max":0.13090000511147082,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.10089080920442939,"rel_min":0.10089080920442939,"rel_max":0.13090000511147082,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.09835149116976105,"rel_min":0.09835149116976105,"rel_max":0.13090000511147082,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.09378515552574147,"rel_min":0.09378515552574147,"rel_max":0.13090000511147082,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.08088539030402898,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.08089069585100962,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":5.020685586907101,"scaled_rad":-159.9724192174572},{"average":0.08144392400842022,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":7.177644929899292,"scaled_rad":-157.09647342680094},{"average":0.08210050011985004,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":9.73754351597745,"scaled_rad":-153.68327531203008},{"average":0.08544509212390103,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":22.777640761570964,"scaled_rad":-136.29647898457205},{"average":0.09137204078336557,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":45.88598605314795,"scaled_rad":-105.48535192913607},{"average":0.09476644215324233,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":59.120283061619176,"scaled_rad":-87.83962258450777},{"average":0.09047294341144152,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":42.3805309336755,"scaled_rad":-110.15929208843266},{"average":0.09139677766484744,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":45.982431700236035,"scaled_rad":-105.35675773301863},{"average":0.09194059056394241,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":48.10268226563158,"scaled_rad":-102.5297569791579},{"average":0.0911974960938096,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":45.20546067882578,"scaled_rad":-106.39271909489895},{"average":0.08950865260946254,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":38.62089573284773,"scaled_rad":-115.17213902286969},{"average":0.0879076148660199,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":32.37867311105397,"scaled_rad":-123.4951025185947},{"average":0.08725073901740343,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":29.81760589153491,"scaled_rad":-126.9098588112868},{"average":0.08817631087433069,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":33.42628133161765,"scaled_rad":-122.09829155784313},{"average":0.08989696749486029,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":40.13488125376177,"scaled_rad":-113.15349166165097},{"average":0.09286026175065738,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":51.688351816419285,"scaled_rad":-97.7488642447743},{"average":0.0959080219978378,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":63.57114348618039,"scaled_rad":-81.90514201842615},{"average":0.09788897505766431,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":71.29460288206667,"scaled_rad":-71.60719615724443},{"average":0.09938906649635597,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":77.14324995594855,"scaled_rad":-63.809000058735265},{"average":0.10013868819094367,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":80.06592027956067,"scaled_rad":-59.91210629391911},{"average":0.09967332768618413,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":78.2515446460087,"scaled_rad":-62.33127380532174},{"average":0.09854182963596379,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":73.8399917300771,"scaled_rad":-68.21334435989719},{"average":0.09815600904403254,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":72.335731111131,"scaled_rad":-70.21902518515867},{"average":0.09841071842808505,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":73.32880743655033,"scaled_rad":-68.89492341793289},{"average":0.10147519944235682,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":85.27679104261583,"scaled_rad":-52.96427860984555},{"average":0.10832797151570227,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":111.99479255971502,"scaled_rad":-17.340276587046645},{"average":0.11779183897977838,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":148.89309043924303,"scaled_rad":31.85745391899073},{"average":0.12310731822167928,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":169.617401846245,"scaled_rad":59.48986912832666},{"average":0.1277361074462533,"rel_min":0.08088539030402898,"rel_max":0.13090000511147082,"scaled_dist":187.66440475263607,"scaled_rad":83.55253967018146},{"average":0.1313666263425892,"rel_min":0.08088539030402898,"rel_max":0.1313666263425892,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.1343964201597763,"rel_min":0.08088539030402898,"rel_max":0.1343964201597763,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.13673559579540762,"rel_min":0.08088539030402898,"rel_max":0.13673559579540762,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.13637187123170186,"rel_min":0.08088539030402898,"rel_max":0.13673559579540762,"scaled_dist":198.73006214930453,"scaled_rad":98.306749532406},{"average":0.13404386077013056,"rel_min":0.08088539030402898,"rel_max":0.13673559579540762,"scaled_dist":190.60185499209933,"scaled_rad":87.46913998946579},{"average":0.13393481845657032,"rel_min":0.08088539030402898,"rel_max":0.13673559579540762,"scaled_dist":190.22113569201497,"scaled_rad":86.96151425601997},{"average":0.13810110458585081,"rel_min":0.08088539030402898,"rel_max":0.13810110458585081,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.14379184978503373,"rel_min":0.08088539030402898,"rel_max":0.14379184978503373,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.14659865469568306,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.14515612568357028,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":195.71938542444838,"scaled_rad":94.29251389926449},{"average":0.1403425169822115,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":181.43530282020365,"scaled_rad":75.2470704269382},{"average":0.1270749211932222,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":142.06454255126923,"scaled_rad":22.75272340169232},{"average":0.11255925250197969,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":98.99020404447938,"scaled_rad":-34.67972794069415},{"average":0.1086457035066012,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":87.3769922954717,"scaled_rad":-50.1640102727044},{"average":0.10623283071470434,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":80.21694327377607,"scaled_rad":-59.710742301631896},{"average":0.10594890813476272,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":79.37442078457758,"scaled_rad":-60.83410562056322},{"average":0.10552446519247663,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":78.11491291334329,"scaled_rad":-62.513449448875605},{"average":0.10382817946891817,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":73.08129117569136,"scaled_rad":-69.22494509907818},{"average":0.10247094452074945,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":69.0537813975207,"scaled_rad":-74.59495813663906},{"average":0.1028769848415175,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":70.25868064096515,"scaled_rad":-72.98842581204646},{"average":0.10528003678967555,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":77.38958692341632,"scaled_rad":-63.480550768778244},{"average":0.11026052685797606,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":92.16887954126938,"scaled_rad":-43.7748272783075},{"average":0.11765435858109555,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":114.10961250219978,"scaled_rad":-14.520516663733616},{"average":0.12565323925362185,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":137.84579035886898,"scaled_rad":17.127720478491995},{"average":0.13173008839823777,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":155.8784599297723,"scaled_rad":41.17127990636308},{"average":0.13383174896007405,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":162.11500613322227,"scaled_rad":49.486674844296374},{"average":0.13393009318337765,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":162.40683646187412,"scaled_rad":49.875781949165486},{"average":0.13451890436160127,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":164.15409678772377,"scaled_rad":52.205462383631726},{"average":0.13627323583441686,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":169.35996565401751,"scaled_rad":59.14662087202336},{"average":0.1388789709613082,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":177.0923215862293,"scaled_rad":69.45642878163909},{"average":0.1354379659409032,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":166.88135451297902,"scaled_rad":55.84180601730537},{"average":0.12971266665560907,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":149.89188715098095,"scaled_rad":33.18918286797461},{"average":0.1241191965795454,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":133.2936147180116,"scaled_rad":11.058152957348852},{"average":0.12114780224775049,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":124.47618797678892,"scaled_rad":-0.6984160309480956},{"average":0.1181475039194809,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":115.57299043472807,"scaled_rad":-12.569346087029231},{"average":0.11561392532247636,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":108.05475448967842,"scaled_rad":-22.59366068042877},{"average":0.11307864201736155,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":100.53145992998559,"scaled_rad":-32.62472009335255},{"average":0.10811835391264733,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":85.81211537491401,"scaled_rad":-52.250512833447985},{"average":0.10339678035327984,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":71.80114129532477,"scaled_rad":-70.93181160623365},{"average":0.10049129297778486,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":63.17928932271939,"scaled_rad":-82.42761423637414},{"average":0.1004247626975963,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":62.98186487946776,"scaled_rad":-82.69084682737632},{"average":0.0977250253490638,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":54.970563236831666,"scaled_rad":-93.37258235089111},{"average":0.09479825464125301,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":46.28555430740784,"scaled_rad":-104.95259425678954},{"average":0.09196097099659395,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":37.866092638132066,"scaled_rad":-116.17854314915724},{"average":0.08937567726454952,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":30.19439526598492,"scaled_rad":-126.40747297868677},{"average":0.08787812284659595,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":25.750496241878075,"scaled_rad":-132.3326716774959},{"average":0.08877465465004639,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":28.410898267120313,"scaled_rad":-128.7854689771729},{"average":0.09105779501317325,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":35.185974424595194,"scaled_rad":-119.75203410053973},{"average":0.095606318561957,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":48.68343342657837,"scaled_rad":-101.7554220978955},{"average":0.09716843126807362,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":53.31890513100076,"scaled_rad":-95.57479315866566},{"average":0.09654435559752442,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":51.46699963089065,"scaled_rad":-98.04400049214581},{"average":0.09543642674063174,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":48.17929007796953,"scaled_rad":-102.42761322937395},{"average":0.09422361259087572,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":44.5803399817929,"scaled_rad":-107.22621335760945},{"average":0.09256169500036372,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":39.648703528331325,"scaled_rad":-113.80172862889157},{"average":0.09142153726147334,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":36.26535678484096,"scaled_rad":-118.31285762021206},{"average":0.09182772765740413,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":37.47070136693972,"scaled_rad":-116.70573151074703},{"average":0.09441347206682638,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":45.1437360960039,"scaled_rad":-106.47501853866146},{"average":0.0997897951248368,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":61.09763834112173,"scaled_rad":-85.20314887850436},{"average":0.106979987204932,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":82.4340834043598,"scaled_rad":-56.75455546085361},{"average":0.11486373483938606,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":105.82861117513036,"scaled_rad":-25.561851766492822},{"average":0.11855340208858252,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":116.7774678519977,"scaled_rad":-10.963376197336402},{"average":0.12097375132625215,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":123.95970275867693,"scaled_rad":-1.3870629884307561},{"average":0.12259487305473313,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":128.77028004440888,"scaled_rad":5.027040059211856},{"average":0.12433845746346701,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":133.94425767054992,"scaled_rad":11.925676894066555},{"average":0.12656097797316915,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":140.53944820634317,"scaled_rad":20.719264275124203},{"average":0.12825923413038254,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":145.57891708256398,"scaled_rad":27.43855611008533},{"average":0.1287263039006921,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":146.96491739853565,"scaled_rad":29.28655653138088},{"average":0.09386094006114319,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":43.50413194445752,"scaled_rad":-108.66115740738998},{"average":0.09873790583929153,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":57.976222709434154,"scaled_rad":-89.36503638742113},{"average":0.10203212365177611,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":67.75160792855709,"scaled_rad":-76.33118942859053},{"average":0.10352662786841392,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":72.18645567112924,"scaled_rad":-70.418059105161},{"average":0.1019593121055218,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":67.53554422131273,"scaled_rad":-76.61927437158303},{"average":0.0997871708447539,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":61.08985095419305,"scaled_rad":-85.21353206107594},{"average":0.09883603153866716,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":58.26740458200414,"scaled_rad":-88.97679389066114},{"average":0.09782462229937777,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":55.26611095449598,"scaled_rad":-92.9785187273387},{"average":0.09658836955204606,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":51.59760828671036,"scaled_rad":-97.86985561771951},{"average":0.09707590142791053,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":53.044328620476755,"scaled_rad":-95.94089517269767},{"average":0.098123853588759,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":56.15406108099661,"scaled_rad":-91.79458522533784},{"average":0.09851475702108521,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":57.31404255519793,"scaled_rad":-90.24794325973609},{"average":0.09956108850996885,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":60.418965773077566,"scaled_rad":-86.10804563589657},{"average":0.1005490549598579,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":63.350694389999425,"scaled_rad":-82.19907414666743},{"average":0.10061558076481827,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":63.54810555329145,"scaled_rad":-81.93585926227806},{"average":0.09990332116556429,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":61.43451976295949,"scaled_rad":-84.75397364938735},{"average":0.09835255151425583,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":56.832707863875754,"scaled_rad":-90.88972284816566},{"average":0.09737083071963393,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":53.919512838130174,"scaled_rad":-94.7739828824931},{"average":0.09807284894798483,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":56.00270800117267,"scaled_rad":-91.99638933176976},{"average":0.0985471063841742,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":57.410037265866336,"scaled_rad":-90.11995031217822},{"average":0.0978035197370279,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":55.20349042123957,"scaled_rad":-93.06201277168057},{"average":0.09579381280923849,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":49.239810872720476,"scaled_rad":-101.01358550303937},{"average":0.11522510542353201,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":106.90095577040832,"scaled_rad":-24.13205897278891},{"average":0.11533626966049959,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":107.23082868738109,"scaled_rad":-23.692228416825202},{"average":0.11598663409049176,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":109.1607444360892,"scaled_rad":-21.11900741854774},{"average":0.11340529553997679,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":101.50078381763073,"scaled_rad":-31.332288243159013},{"average":0.10867243055002512,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":87.45630312435705,"scaled_rad":-50.05826250085727},{"average":0.1031657325591417,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":71.11552142429824,"scaled_rad":-71.845971434269},{"average":0.09944587820520004,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":60.077086403091926,"scaled_rad":-86.56388479587743},{"average":0.09685839993250094,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":52.398906543252146,"scaled_rad":-96.80145794233047},{"average":0.09516660199733451,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":47.37860203682509,"scaled_rad":-103.4951972842332},{"average":0.09381939665858749,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":43.38085449699912,"scaled_rad":-108.8255273373345},{"average":0.09223904838035633,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":38.691269873438486,"scaled_rad":-115.07830683541535},{"average":0.09119932364612338,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":35.60595178655957,"scaled_rad":-119.19206428458725},{"average":0.08890035279238453,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":28.7838996388046,"scaled_rad":-128.2881338149272},{"average":0.08716144766006026,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":23.623807472598052,"scaled_rad":-135.1682567032026},{"average":0.0858625095703085,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":19.769289973787522,"scaled_rad":-140.30761336828328},{"average":0.08520194055781986,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":17.809092765084507,"scaled_rad":-142.921209646554},{"average":0.08473714407591615,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":16.42983829020355,"scaled_rad":-144.76021561306194},{"average":0.08375638931040993,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":13.5195098954084,"scaled_rad":-148.6406534727888},{"average":0.08498616425757423,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":17.168790096552904,"scaled_rad":-143.77494653792945},{"average":0.08763325760609533,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":25.023873963413322,"scaled_rad":-133.30150138211556},{"average":0.1000548390836296,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":61.884139703412295,"scaled_rad":-84.15448039545026},{"average":0.1055714129667842,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":78.25422749579064,"scaled_rad":-62.32769667227913},{"average":0.10759085424648351,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":84.24679312446425,"scaled_rad":-54.337609167381004},{"average":0.11089797080410811,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":94.06045456263654,"scaled_rad":-41.25272724981794},{"average":0.11321436393717747,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":100.93420623408589,"scaled_rad":-32.0877250212188},{"average":0.11640219758237166,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":110.39390309388483,"scaled_rad":-19.474795874820217},{"average":0.11962916496867204,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":119.96972688157803,"scaled_rad":-6.707030824562622},{"average":0.12267084586385049,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":128.99572460137978,"scaled_rad":5.327632801839684},{"average":0.13793439052587506,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":174.2893382522762,"scaled_rad":65.7191176697016},{"average":0.13528819130787442,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":166.43690766178403,"scaled_rad":55.249210215712054},{"average":0.13314825312994505,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":160.08677502784315,"scaled_rad":46.78236670379087},{"average":0.1329024410992861,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":159.35734320883,"scaled_rad":45.80979094510667},{"average":0.13480133232025598,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":164.992184081781,"scaled_rad":53.32291210904137},{"average":0.13760194584390537,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":173.3028294616351,"scaled_rad":64.40377261551347},{"average":0.13935493344566627,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":178.5047104746683,"scaled_rad":71.33961396622439},{"average":0.1389544141119835,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":177.31619441491736,"scaled_rad":69.75492588655652},{"average":0.13830359825450514,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":175.38493908339257,"scaled_rad":67.17991877785676},{"average":0.1379088119536803,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":174.21343543989647,"scaled_rad":65.61791391986196},{"average":0.1360025790438138,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":168.55680856455933,"scaled_rad":58.07574475274578},{"average":0.1331518249881398,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":160.097374293523,"scaled_rad":46.79649905803063},{"average":0.13016850288714404,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":151.2445526435905,"scaled_rad":34.99273685812068},{"average":0.12737415760151438,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":142.95250786781784,"scaled_rad":23.936677157090458},{"average":0.12159266243238122,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":125.79628273704877,"scaled_rad":1.0617103160650458},{"average":0.11584510164146117,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":108.74075575014484,"scaled_rad":-21.6789923331402},{"average":0.11132811424025196,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":95.33687829267885,"scaled_rad":-39.55082894309487},{"average":0.10587532835071364,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":79.15607737975058,"scaled_rad":-61.12523016033255},{"average":0.10035323165357113,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":62.769600982459465,"scaled_rad":-82.97386535672071},{"average":0.09620111984205652,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":50.44846900490732,"scaled_rad":-99.40204132679024},{"average":0.09348643112267989,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":42.3928001048903,"scaled_rad":-110.14293319347959},{"average":0.09154120252655887,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":36.62045597079224,"scaled_rad":-117.83939203894369},{"average":0.09011476111511901,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":32.38758034353762,"scaled_rad":-123.48322620861651},{"average":0.088590256167719,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":27.863707309758475,"scaled_rad":-129.51505692032202},{"average":0.08749424956491864,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":24.611376299807702,"scaled_rad":-133.85149826692307},{"average":0.08758875373561824,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":24.89181151265284,"scaled_rad":-133.4775846497962},{"average":0.08795166824182327,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":25.968737600028412,"scaled_rad":-132.0416831999621},{"average":0.08751862422661416,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":24.683706583117004,"scaled_rad":-133.75505788917732},{"average":0.08759564702399075,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":24.91226691454292,"scaled_rad":-133.45031078060944},{"average":0.08828118481019985,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":26.946557396812008,"scaled_rad":-130.73792347091734},{"average":0.08977666382428885,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":31.384297789821495,"scaled_rad":-124.82093628023802},{"average":0.09132872309003558,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":35.9899365390517,"scaled_rad":-118.68008461459773},{"average":0.09182339286267319,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":37.457838134830354,"scaled_rad":-116.72288248689286},{"average":0.08988701861306297,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":31.711768719932326,"scaled_rad":-124.38430837342356},{"average":0.08649101710733641,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":21.63434676034412,"scaled_rad":-137.82087098620784},{"average":0.0824000301235468,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":9.4945988841103,"scaled_rad":-154.00720148785294},{"average":0.08187063989148904,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":7.923666497674592,"scaled_rad":-156.10177800310055},{"average":0.0829886634896496,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":11.241331563618232,"scaled_rad":-151.67822458184236},{"average":0.08429528891907206,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":15.118660761857544,"scaled_rad":-146.50845231752328},{"average":0.08790998452153251,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":25.84504376847178,"scaled_rad":-132.2066083087043},{"average":0.09303405422295602,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":41.05039996295856,"scaled_rad":-111.93280004938859},{"average":0.0979034403216601,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":55.49999850349142,"scaled_rad":-92.66666866201145},{"average":0.1020128055841218,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":67.694282771643,"scaled_rad":-76.40762297114266},{"average":0.10439614842017722,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":74.7667034972497,"scaled_rad":-66.97772867033375},{"average":0.10497277321431923,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":76.47780149091402,"scaled_rad":-64.6962646787813},{"average":0.10490607657396848,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":76.27988338429127,"scaled_rad":-64.96015548761164},{"average":0.10547226066316623,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":77.95999923937245,"scaled_rad":-62.72000101417005},{"average":0.10703246974169392,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":82.58982204804637,"scaled_rad":-56.54690393593816},{"average":0.10926926462826404,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":89.22737090396002,"scaled_rad":-47.69683879471998},{"average":0.11136258740770331,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":95.43917525989308,"scaled_rad":-39.41443298680922},{"average":0.11342221362356869,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":101.5509871720214,"scaled_rad":-31.265350437304818},{"average":0.11336010927752062,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":101.3666964113738,"scaled_rad":-31.511071451501607},{"average":0.11390368501763858,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":102.97972340530387,"scaled_rad":-29.36036879292817},{"average":0.11566504644436969,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":108.20645321993455,"scaled_rad":-22.39139570675394},{"average":0.11680344676813192,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":111.58458494400439,"scaled_rad":-17.887220074660803},{"average":0.1225997958668725,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":128.78488818138192,"scaled_rad":5.046517575175898},{"average":0.12811062806040832,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":145.1379378691093,"scaled_rad":26.85058382547905},{"average":0.12910554100917937,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":148.0902797867784,"scaled_rad":30.787039715704566},{"average":0.12811896071323883,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":145.1626644949586,"scaled_rad":26.883552659944797},{"average":0.12703286610882392,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":141.93974671996207,"scaled_rad":22.58632895994944},{"average":0.12648880623425518,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":140.3252830873446,"scaled_rad":20.433710783126116},{"average":0.1263193545119573,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":139.8224457050598,"scaled_rad":19.76326094007976},{"average":0.12460679372645214,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":134.74052873951155,"scaled_rad":12.987371652682043},{"average":0.12297597523144585,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":129.90117690590188,"scaled_rad":6.534902541202513},{"average":0.12055719849827179,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":122.72360830791202,"scaled_rad":-3.0351889227839592},{"average":0.11696114618221164,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":112.0525480870658,"scaled_rad":-17.26326921724558},{"average":0.11250450762239199,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":98.82775204002596,"scaled_rad":-34.896330613298716},{"average":0.10884649487734464,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":87.97282812340454,"scaled_rad":-49.36956250212728},{"average":0.10661272933939472,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":81.34426866995642,"scaled_rad":-58.20764177339143},{"average":0.10071729113931355,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":63.84992472496385,"scaled_rad":-81.53343370004819},{"average":0.09226545669938907,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":38.769634907637545,"scaled_rad":-114.97382012314995},{"average":0.0839578269524768,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":14.117263493052356,"scaled_rad":-147.84364867593018},{"average":0.0910064812757258,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":35.03370411973536,"scaled_rad":-119.95506117368619},{"average":0.09130135667035166,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":35.908728401124506,"scaled_rad":-118.78836213183399},{"average":0.09278830725366508,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":40.32116120948369,"scaled_rad":-112.90511838735509},{"average":0.09504065522735539,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":47.00486287817438,"scaled_rad":-103.99351616243416},{"average":0.09852622592476226,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":57.34807580917989,"scaled_rad":-90.20256558776015},{"average":0.10116466183035848,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":65.17746925591004,"scaled_rad":-79.76337432545327},{"average":0.10524208619073033,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":77.27697089584825,"scaled_rad":-63.63070547220232},{"average":0.11060392639536663,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":93.18789617985941,"scaled_rad":-42.41613842685412},{"average":0.112287837838281,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":98.18479801403468,"scaled_rad":-35.75360264795374},{"average":0.1154840714463839,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":107.66942123812797,"scaled_rad":-23.107438349162692},{"average":0.11573108855092268,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":108.40242903847064,"scaled_rad":-22.130094615372485},{"average":0.1154272081038239,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":107.50068282736949,"scaled_rad":-23.332422896840683},{"average":0.1137535701636807,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":102.53426696979156,"scaled_rad":-29.954310706944597},{"average":0.11114617857850131,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":94.79699560126468,"scaled_rad":-40.27067253164708},{"average":0.10748481179421493,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":83.93211878308423,"scaled_rad":-54.75717495588768},{"average":0.1039060222085666,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":73.31228463450012,"scaled_rad":-68.91695382066652},{"average":0.10384710318265626,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":73.13744611203623,"scaled_rad":-69.15007185061836},{"average":0.10446681684932146,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":74.97640763857792,"scaled_rad":-66.69812314856276},{"average":0.10409583897820411,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":73.87555402039926,"scaled_rad":-68.16592797280099},{"average":0.10268365728806973,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":69.68499322380036,"scaled_rad":-73.75334236826617},{"average":0.10570382659506956,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":78.64715665179413,"scaled_rad":-61.80379113094115},{"average":0.1071760161656816,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":83.01578707864914,"scaled_rad":-55.97895056180113},{"average":0.1071665376088673,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":82.98766005443414,"scaled_rad":-56.01645326075446},{"average":0.10653784277775649,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":81.1220474844067,"scaled_rad":-58.503936687457724},{"average":0.10634708526168964,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":80.55598649234676,"scaled_rad":-59.25868467687097},{"average":0.10703621141017038,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":82.6009252151111,"scaled_rad":-56.53209971318519},{"average":0.10817488796526083,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":85.97987663836193,"scaled_rad":-52.026831148850746},{"average":0.10940171475779967,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":89.62040837513953,"scaled_rad":-47.17278883314728},{"average":0.1101127162520938,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":91.73026081773048,"scaled_rad":-44.359652243026005},{"average":0.1104291228939107,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":92.66917772781677,"scaled_rad":-43.10776302957764},{"average":0.10796697472432887,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":85.3629071063038,"scaled_rad":-52.84945719159494},{"average":0.09447474573823539,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":45.32556188164049,"scaled_rad":-106.23258415781268},{"average":0.09957968036009782,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":60.47413592492911,"scaled_rad":-86.03448543342785},{"average":0.1035998154613139,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":72.4036352732631,"scaled_rad":-70.12848630231586},{"average":0.10466218992009116,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":75.55616500039497,"scaled_rad":-65.92511333280672},{"average":0.10410285336182429,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":73.8963687648591,"scaled_rad":-68.13817498018786},{"average":0.10281729610703354,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":70.08155805647442,"scaled_rad":-73.22458925803411},{"average":0.10187743448741814,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":67.29257751317516,"scaled_rad":-76.94322998243312},{"average":0.1009165801880683,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":64.44130250640478,"scaled_rad":-80.7449299914603},{"average":0.09981446918889933,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":61.17085708221969,"scaled_rad":-85.10552389037375},{"average":0.09913536522235773,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":59.15565855721033,"scaled_rad":-87.7924552570529},{"average":0.0992961907563241,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":59.63289826541486,"scaled_rad":-87.15613564611351},{"average":0.10195699064516937,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":67.52865543298493,"scaled_rad":-76.62845942268676},{"average":0.10687348641818617,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":82.11804898409936,"scaled_rad":-57.175934687867525},{"average":0.11332797241953409,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":101.27133229629919,"scaled_rad":-31.63822360493441},{"average":0.1167743610295509,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":111.49827483483836,"scaled_rad":-18.002300220215517},{"average":0.11630101619481013,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":110.09365365783636,"scaled_rad":-19.875128456218192},{"average":0.11247946940925728,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":98.75345270934336,"scaled_rad":-34.995396387542186},{"average":0.10944978755975321,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":89.76306140672642,"scaled_rad":-46.98258479103143},{"average":0.10730529188435944,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":83.39940468425056,"scaled_rad":-55.46746042099926},{"average":0.10577329997366079,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":78.85331455538794,"scaled_rad":-61.5289139261494},{"average":0.10591377552156732,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":79.27016695338344,"scaled_rad":-60.97311072882208},{"average":0.10669982278518178,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":81.60271302035812,"scaled_rad":-57.86304930618917},{"average":0.10785373441109854,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":85.02687356293413,"scaled_rad":-53.29750191608781},{"average":0.10815250558541126,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":85.9134583267612,"scaled_rad":-52.11538889765173},{"average":0.10817549991293696,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":85.98169255479753,"scaled_rad":-52.02440992693663},{"average":0.1081402425840497,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":85.87706863759202,"scaled_rad":-52.16390848321063},{"average":0.10958335414046168,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":90.15941187689816,"scaled_rad":-46.45411749746911},{"average":0.11000517076683163,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":91.41112631999599,"scaled_rad":-44.78516490667201},{"average":0.1099499082254252,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":91.2471381864888,"scaled_rad":-45.00381575134827},{"average":0.11395309497847368,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":103.12634437219756,"scaled_rad":-29.164874170403237},{"average":0.11729399542339512,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":113.0402573818581,"scaled_rad":-15.94632349085586},{"average":0.12074201068311345,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":123.27202690159706,"scaled_rad":-2.3039641312039123},{"average":0.12307229935091463,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":130.18701270283418,"scaled_rad":6.916016937112261},{"average":0.12384763231815456,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":132.48776476577672,"scaled_rad":9.983686354368956},{"average":0.12401681486215792,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":132.98980337831665,"scaled_rad":10.653071171088868},{"average":0.1377583970165541,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":173.7670885263602,"scaled_rad":65.0227847018136},{"average":0.13629762881354598,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":169.43235029316477,"scaled_rad":59.24313372421972},{"average":0.1351822114830168,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":166.12241916332704,"scaled_rad":54.82989221776941},{"average":0.13499980890891328,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":165.58115093872334,"scaled_rad":54.10820125163113},{"average":0.13471285881961037,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":164.72964450494504,"scaled_rad":52.97285933992674},{"average":0.13209533376530522,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":156.96230270090084,"scaled_rad":42.616403601201114},{"average":0.1266660277195322,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":140.8511767550682,"scaled_rad":21.134902340090918},{"average":0.12117589622653716,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":124.5595551008257,"scaled_rad":-0.5872598655657271},{"average":0.1170080296501939,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":112.19167184451685,"scaled_rad":-17.077770873977528},{"average":0.11458849550449643,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":105.01185567225973,"scaled_rad":-26.650859103653687},{"average":0.11368449899309781,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":102.32930259329383,"scaled_rad":-30.22759654227488},{"average":0.11344121036488226,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":101.60735881312674,"scaled_rad":-31.19018824916435},{"average":0.1129422806266996,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":100.12681603616531,"scaled_rad":-33.16424528511291},{"average":0.11176484144485957,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":96.63283894365054,"scaled_rad":-37.822881408465946},{"average":0.11042137472763841,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":92.64618552925407,"scaled_rad":-43.1384192943279},{"average":0.10957923374496974,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":90.14718486111425,"scaled_rad":-46.470420185180984},{"average":0.10783489011628039,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":84.97095429726446,"scaled_rad":-53.372060936980716},{"average":0.10536314283329595,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":77.63619890740468,"scaled_rad":-63.151734790127094},{"average":0.10202060851961284,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":67.71743749443507,"scaled_rad":-76.37675000741989},{"average":0.10009780969742493,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":62.01165231091495,"scaled_rad":-83.98446358544673},{"average":0.10211029031003514,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":67.98356259557328,"scaled_rad":-76.02191653923563},{"average":0.10718794793925977,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":83.05119387009806,"scaled_rad":-55.931741506535914},{"average":0.11462564814375736,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":105.12210380439791,"scaled_rad":-26.50386159413611},{"average":0.12173289475352825,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":126.21241337485566,"scaled_rad":1.6165511664742098},{"average":0.12448702885875267,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":134.3851339890361,"scaled_rad":12.513511985381484},{"average":0.12426670766644068,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":133.7313446376994,"scaled_rad":11.641792850265887},{"average":0.12418222101405263,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":133.4806357835862,"scaled_rad":11.307514378114917},{"average":0.1252352071854145,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":136.60530635529565,"scaled_rad":15.47374180706089},{"average":0.1275024526482503,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":143.33321539079827,"scaled_rad":24.44428718773102},{"average":0.13093513925903227,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":153.5194981040262,"scaled_rad":38.02599747203496},{"average":0.13084443321122843,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":153.2503335832024,"scaled_rad":37.667111444269864},{"average":0.13326703184325236,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":160.43924342686958,"scaled_rad":47.25232456915944},{"average":0.13713702051056145,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":171.92319262816838,"scaled_rad":62.56425683755785},{"average":0.14221002074072556,"rel_min":0.08088539030402898,"rel_max":0.14659865469568306,"scaled_dist":186.9770033624231,"scaled_rad":82.6360044832308},{"average":0.14812628401519168,"rel_min":0.08088539030402898,"rel_max":0.14812628401519168,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":0.15311703649551972,"rel_min":0.08088539030402898,"rel_max":0.15311703649551972,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":0.15563470802695162,"rel_min":0.08088539030402898,"rel_max":0.15563470802695162,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.15668394044846812,"rel_min":0.08088539030402898,"rel_max":0.15668394044846812,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":0.15784557746594835,"rel_min":0.08088539030402898,"rel_max":0.15784557746594835,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.16566860431639804,"rel_min":0.08088539030402898,"rel_max":0.16566860431639804,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.16814661905701672,"rel_min":0.08088539030402898,"rel_max":0.16814661905701672,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":0.17034815820438146,"rel_min":0.08088539030402898,"rel_max":0.17034815820438146,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.17090073469708758,"rel_min":0.08088539030402898,"rel_max":0.17090073469708758,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.17068155987647285,"rel_min":0.08088539030402898,"rel_max":0.17090073469708758,"scaled_dist":199.5252021718292,"scaled_rad":99.36693622910553},{"average":0.16974685195370415,"rel_min":0.08088539030402898,"rel_max":0.17090073469708758,"scaled_dist":197.5003468966662,"scaled_rad":96.66712919555493},{"average":0.1677186388784731,"rel_min":0.08088539030402898,"rel_max":0.17090073469708758,"scaled_dist":193.1066343320276,"scaled_rad":90.80884577603678},{"average":0.17322459479982263,"rel_min":0.08088539030402898,"rel_max":0.17322459479982263,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.17677854788320072,"rel_min":0.08088539030402898,"rel_max":0.17677854788320072,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.18090480883402865,"rel_min":0.08088539030402898,"rel_max":0.18090480883402865,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.18361465683243236,"rel_min":0.08088539030402898,"rel_max":0.18361465683243236,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.18396338486733535,"rel_min":0.08088539030402898,"rel_max":0.18396338486733535,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.18316932270752262,"rel_min":0.08088539030402898,"rel_max":0.18396338486733535,"scaled_dist":198.49781593229986,"scaled_rad":97.99708790973312},{"average":0.18203401836201302,"rel_min":0.08088539030402898,"rel_max":0.18396338486733535,"scaled_dist":196.3500796641247,"scaled_rad":95.13343955216632},{"average":0.18047307376793428,"rel_min":0.08088539030402898,"rel_max":0.18396338486733535,"scaled_dist":193.39712935562397,"scaled_rad":91.19617247416531},{"average":0.1780701984989119,"rel_min":0.08088539030402898,"rel_max":0.18396338486733535,"scaled_dist":188.8514386925058,"scaled_rad":85.13525159000778},{"average":0.17651817131889602,"rel_min":0.08088539030402898,"rel_max":0.18396338486733535,"scaled_dist":185.91535809271085,"scaled_rad":81.2204774569478},{"average":0.17595485388174084,"rel_min":0.08088539030402898,"rel_max":0.18396338486733535,"scaled_dist":184.84969028736955,"scaled_rad":79.79958704982607},{"average":0.17609067571575293,"rel_min":0.08088539030402898,"rel_max":0.18396338486733535,"scaled_dist":185.10663414570288,"scaled_rad":80.14217886093718},{"average":0.17769241408677772,"rel_min":0.08088539030402898,"rel_max":0.18396338486733535,"scaled_dist":188.1367569539033,"scaled_rad":84.18234260520441},{"average":0.1807933212144346,"rel_min":0.08088539030402898,"rel_max":0.18396338486733535,"scaled_dist":194.00296430936092,"scaled_rad":92.00395241248125},{"average":0.18389026739609401,"rel_min":0.08088539030402898,"rel_max":0.18396338486733535,"scaled_dist":199.86167846054374,"scaled_rad":99.81557128072501},{"average":0.18511875792132876,"rel_min":0.08088539030402898,"rel_max":0.18511875792132876,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.1853224093054411,"rel_min":0.08088539030402898,"rel_max":0.1853224093054411,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.1845748767346623,"rel_min":0.08088539030402898,"rel_max":0.1853224093054411,"scaled_dist":198.6042415544253,"scaled_rad":98.13898873923375},{"average":0.18182625182291723,"rel_min":0.08088539030402898,"rel_max":0.1853224093054411,"scaled_dist":193.4721354974433,"scaled_rad":91.29618066325776},{"average":0.1773708968311548,"rel_min":0.08088539030402898,"rel_max":0.1853224093054411,"scaled_dist":185.15330150830079,"scaled_rad":80.20440201106771},{"average":0.17596965514004548,"rel_min":0.08088539030402898,"rel_max":0.1853224093054411,"scaled_dist":182.53696744994716,"scaled_rad":76.71595659992954},{"average":0.17450578324496746,"rel_min":0.08088539030402898,"rel_max":0.1853224093054411,"scaled_dist":179.80369315439918,"scaled_rad":73.07159087253225},{"average":0.17450578324496746,"rel_min":0.08088539030402898,"rel_max":0.1853224093054411,"scaled_dist":179.80369315439918,"scaled_rad":73.07159087253225},{"average":0.17450578324496746,"rel_min":0.08088539030402898,"rel_max":0.1853224093054411,"scaled_dist":179.80369315439918,"scaled_rad":73.07159087253225},{"average":0.17450578324496746,"rel_min":0.08088539030402898,"rel_max":0.1853224093054411,"scaled_dist":179.80369315439918,"scaled_rad":73.07159087253225},{"average":0.17450578324496746,"rel_min":0.08088539030402898,"rel_max":0.1853224093054411,"scaled_dist":179.80369315439918,"scaled_rad":73.07159087253225},{"average":0.1745295788780713,"rel_min":0.08088539030402898,"rel_max":0.1853224093054411,"scaled_dist":179.84812326643817,"scaled_rad":73.13083102191757},{"average":0.18359330903942997,"rel_min":0.08088539030402898,"rel_max":0.1853224093054411,"scaled_dist":196.77150348510412,"scaled_rad":95.69533798013887},{"average":0.18267362243689908,"rel_min":0.08088539030402898,"rel_max":0.1853224093054411,"scaled_dist":195.05430694686228,"scaled_rad":93.40574259581638},{"average":0.1824520417186734,"rel_min":0.08088539030402898,"rel_max":0.1853224093054411,"scaled_dist":194.64058161778695,"scaled_rad":92.85410882371593},{"average":0.1819469087366304,"rel_min":0.08088539030402898,"rel_max":0.1853224093054411,"scaled_dist":193.6974205390793,"scaled_rad":91.5965607187724},{"average":0.18545355490416057,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.18491842545876183,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":199.00208402574734,"scaled_rad":98.66944536766306},{"average":0.18311842641575324,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":195.64542366234804,"scaled_rad":94.19389821646402},{"average":0.1803714804064769,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":190.52288494459177,"scaled_rad":87.363846592789},{"average":0.17741017908219944,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":185.00061379789727,"scaled_rad":80.00081839719635},{"average":0.17481482349697272,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":180.16076276814542,"scaled_rad":73.54768369086051},{"average":0.17299760019752664,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":176.77198239940648,"scaled_rad":69.02930986587529},{"average":0.17187886396281157,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":174.6857493034766,"scaled_rad":66.24766573796879},{"average":0.16970301616135278,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":170.6282015507074,"scaled_rad":60.83760206760982},{"average":0.16917224877485723,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":169.63841999757014,"scaled_rad":59.51789333009347},{"average":0.16908665278208646,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":169.47879953703963,"scaled_rad":59.30506604938614},{"average":0.16825997561506514,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":167.93720178417104,"scaled_rad":57.24960237889471},{"average":0.16671928844150893,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":165.0641093856163,"scaled_rad":53.41881251415501},{"average":0.16434056235244499,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":160.62823170581538,"scaled_rad":47.504308941087146},{"average":0.1620742889176915,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":156.4020571194406,"scaled_rad":41.86940949258744},{"average":0.1606014562974596,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":153.65550072683791,"scaled_rad":38.20733430245053},{"average":0.1604234819801954,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":153.32361203012772,"scaled_rad":37.764816040170274},{"average":0.16160375675841207,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":155.52460295917726,"scaled_rad":40.699470612236325},{"average":0.16392821859062454,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":159.85928798510972,"scaled_rad":46.47905064681294},{"average":0.16676747417673835,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":165.15396673757104,"scaled_rad":53.53862231676135},{"average":0.16931213607842271,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":169.89928356249527,"scaled_rad":59.86571141666033},{"average":0.17092702550101369,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":172.91074922806786,"scaled_rad":63.880998970757105},{"average":0.1713362098705652,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":173.6738012751958,"scaled_rad":64.89840170026108},{"average":0.14647560178688387,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":127.31343342465637,"scaled_rad":3.084577899541813},{"average":0.13858562952174902,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":112.60011606286957,"scaled_rad":-16.533178582840605},{"average":0.13212783969667496,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":100.55755013752429,"scaled_rad":-32.589933149967635},{"average":0.1266587498140032,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":90.35872403017909,"scaled_rad":-46.18836795976122},{"average":0.12450511463814312,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":86.34259865494047,"scaled_rad":-51.54320179341272},{"average":0.12424226659967239,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":85.85243639859989,"scaled_rad":-52.19675146853349},{"average":0.13281379959349018,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":101.83673659346405,"scaled_rad":-30.884351208714605},{"average":0.13841730067216093,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":112.28621435296391,"scaled_rad":-16.95171419604813},{"average":0.14012909552715183,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":115.47839046124386,"scaled_rad":-12.695479385008213},{"average":0.13809973661629996,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":111.69401699414355,"scaled_rad":-17.741310674475272},{"average":0.13839504879544534,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":112.24471877946759,"scaled_rad":-17.007041627376566},{"average":0.13046984074332016,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":97.46569328854427,"scaled_rad":-36.71240894860766},{"average":0.12464646221540197,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":86.60618535621687,"scaled_rad":-51.19175285837753},{"average":0.12244573105831166,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":82.50223481569002,"scaled_rad":-56.663686912413326},{"average":0.12550466654620152,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":88.20657535202349,"scaled_rad":-49.05789953063537},{"average":0.1289335553939728,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":94.60080946593621,"scaled_rad":-40.53225404541841},{"average":0.13182542222101643,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":99.99359830783577,"scaled_rad":-33.341868922885666},{"average":0.1325690153314442,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":101.38025988966515,"scaled_rad":-31.492986813779822},{"average":0.13126757109067708,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":98.95331065592802,"scaled_rad":-34.728919125429314},{"average":0.12656421177870744,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":90.18242833872108,"scaled_rad":-46.423428881705235},{"average":0.11796837372835292,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":74.1528037753669,"scaled_rad":-67.79626163284414},{"average":0.10797139721449352,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":55.510318965031715,"scaled_rad":-92.65290804662439},{"average":0.10002792225741022,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":40.6972291249783,"scaled_rad":-112.40369450002893},{"average":0.09442274378049112,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":30.244623332585437,"scaled_rad":-126.34050222321942},{"average":0.09107836794262658,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":24.007990119432872,"scaled_rad":-134.6560131740895},{"average":0.08957425324224878,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":21.203098518865357,"scaled_rad":-138.39586864151286},{"average":0.08891117854530864,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":19.96658866524242,"scaled_rad":-140.04454844634344},{"average":0.08863634168163999,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":19.454069500156876,"scaled_rad":-140.72790733312416},{"average":0.08731903692231127,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":16.997543376251123,"scaled_rad":-144.00327549833185},{"average":0.0847706693247945,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":12.245316124142079,"scaled_rad":-150.3395785011439},{"average":0.08236139674078334,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":7.75247496470582,"scaled_rad":-156.33003338039225},{"average":0.08158003651196995,"rel_min":0.08088539030402898,"rel_max":0.18545355490416057,"scaled_dist":6.295384795807322,"scaled_rad":-158.2728202722569},{"average":0.08059520477943156,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.08086708015247204,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":5.505593476149787,"scaled_rad":-159.3258753651336},{"average":0.08228342183488044,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":8.139495571129473,"scaled_rad":-155.8140059051607},{"average":0.08457698818672908,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":12.404729938049105,"scaled_rad":-150.12702674926786},{"average":0.08708964582248653,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":17.077397764596874,"scaled_rad":-143.8968029805375},{"average":0.08909647846365268,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":20.809407323796584,"scaled_rad":-138.9207902349379},{"average":0.09041869058689501,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":23.268261232193627,"scaled_rad":-135.64231835707517},{"average":0.09191954296853866,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":26.059323785365446,"scaled_rad":-131.92090161951273},{"average":0.1056211741723948,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":51.53958436140751,"scaled_rad":-97.94722085145665},{"average":0.10667252767740226,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":53.494735603369556,"scaled_rad":-95.3403525288406},{"average":0.10855845018883392,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":57.00189444471818,"scaled_rad":-90.66414074037576},{"average":0.10998151251515806,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":59.64829459599964,"scaled_rad":-87.13560720533381},{"average":0.10840524566700345,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":56.71698740849831,"scaled_rad":-91.04401678866891},{"average":0.107004790859563,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":54.112629366186496,"scaled_rad":-94.51649417841801},{"average":0.1059374648897925,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":52.12777490435603,"scaled_rad":-97.16296679419196},{"average":0.11697321948829704,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":72.65043374982342,"scaled_rad":-69.7994216669021},{"average":0.11506977761530329,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":69.11069499947808,"scaled_rad":-74.51907333402922},{"average":0.11155330817456599,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":62.57128693013387,"scaled_rad":-83.23828409315483},{"average":0.10823060979904688,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":56.39222553487523,"scaled_rad":-91.47703262016636},{"average":0.10462444769764025,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":49.686020364396825,"scaled_rad":-100.41863951413757},{"average":0.10062945184390588,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":42.25671987901296,"scaled_rad":-110.3243734946494},{"average":0.09895000912522652,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":39.13354151741442,"scaled_rad":-114.4886113101141},{"average":0.09957632935678201,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":40.29827894660385,"scaled_rad":-112.93562807119487},{"average":0.10106204427698608,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":43.06119109518503,"scaled_rad":-109.25174520641997},{"average":0.11029381954906581,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":60.229076875518345,"scaled_rad":-86.3612308326422},{"average":0.12286535258817724,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":83.60774857606228,"scaled_rad":-55.1896685652503},{"average":0.1305849480832744,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":97.9635067942048,"scaled_rad":-36.04865760772692},{"average":0.1329098869401064,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":102.28708309063674,"scaled_rad":-30.283889212484354},{"average":0.13561116779777915,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":107.31052439616577,"scaled_rad":-23.585967471778957},{"average":0.13913114550039013,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":113.856456610364,"scaled_rad":-14.858057852847992},{"average":0.14367049535089252,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":122.298065884161,"scaled_rad":-3.6025788211186693},{"average":0.14769355204531304,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":129.77954975720348,"scaled_rad":6.372733009604644},{"average":0.15301822516124083,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":139.6815867086799,"scaled_rad":19.575448944906555},{"average":0.15906291361702116,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":150.92260134866885,"scaled_rad":34.56346846489177},{"average":0.16526870543778943,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":162.46321212130033,"scaled_rad":49.95094949506711},{"average":0.1713157855520958,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":173.70867441292623,"scaled_rad":64.94489921723496},{"average":0.17052409510326935,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":172.23640599236148,"scaled_rad":62.98187465648198},{"average":0.16926960766097698,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":169.90349639616784,"scaled_rad":59.871328528223785},{"average":0.1682320518962418,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":167.974004144166,"scaled_rad":57.298672192221346},{"average":0.15968244305953166,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":152.0747102760537,"scaled_rad":36.099613701404934},{"average":0.1460708387242437,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":126.76186831140419,"scaled_rad":2.3491577485389143},{"average":0.12235518922454698,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":82.6590224537309,"scaled_rad":-56.45463672835881},{"average":0.12462054802227981,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":86.87180059712574,"scaled_rad":-50.83759920383234},{"average":0.12601632876417687,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":89.46746650590812,"scaled_rad":-47.37671132545583},{"average":0.12565868418403123,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":88.80237218537529,"scaled_rad":-48.263503752832946},{"average":0.12387617016536255,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":85.48751711444453,"scaled_rad":-52.683310514073966},{"average":0.12100048169119619,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":80.13973840349382,"scaled_rad":-59.8136821286749},{"average":0.11740131722858407,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":73.44654640329043,"scaled_rad":-68.7379381289461},{"average":0.11354603333664792,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":66.27706149309199,"scaled_rad":-78.29725134254402},{"average":0.10992971376768197,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":59.551966971677665,"scaled_rad":-87.26404403776311},{"average":0.10710983331565087,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":54.30797173913789,"scaled_rad":-94.25603768114948},{"average":0.10585295334533915,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":51.97061287435269,"scaled_rad":-97.37251616752974},{"average":0.10530199408945948,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":50.9460206051749,"scaled_rad":-98.73863919310014},{"average":0.09952277968440092,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":40.19869521195713,"scaled_rad":-113.06840638405716},{"average":0.10310820670002291,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":46.86634034669976,"scaled_rad":-104.17821287106699},{"average":0.10292013996173918,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":46.51660173340188,"scaled_rad":-104.64453102213082},{"average":0.102719846218974,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":46.144125151491586,"scaled_rad":-105.14116646467788},{"average":0.10332176908253429,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":47.263491975923216,"scaled_rad":-103.6486773654357},{"average":0.10640693330951036,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":53.00082260857881,"scaled_rad":-95.9989031885616},{"average":0.10666986331046223,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":53.489780809090526,"scaled_rad":-95.34695892121263},{"average":0.10461466340533647,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":49.667824989427004,"scaled_rad":-100.44290001409733},{"average":0.10973361377635782,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":59.187289306401375,"scaled_rad":-87.75028092479816},{"average":0.11521843627708712,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":69.38714831972742,"scaled_rad":-74.15046890703012},{"average":0.11499389343074348,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":68.96957685322116,"scaled_rad":-74.7072308623718},{"average":0.1168320162181297,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":72.3878448606231,"scaled_rad":-70.14954018583586},{"average":0.12137662953305879,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":80.83924234453389,"scaled_rad":-58.88101020728814},{"average":0.1265395411810889,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":90.4404593212298,"scaled_rad":-46.0793875716936},{"average":0.13089220962635367,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":98.53490621856338,"scaled_rad":-35.28679170858217},{"average":0.1314834534829738,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":99.63441381050798,"scaled_rad":-33.820781585989366},{"average":0.13046714842662127,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":97.74444047263829,"scaled_rad":-36.34074603648229},{"average":0.13045090666673786,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":97.71423645766478,"scaled_rad":-36.38101805644696},{"average":0.13163905537761675,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":99.92377912494676,"scaled_rad":-33.43496116673765},{"average":0.13338176176089664,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":103.16460586249656,"scaled_rad":-29.11385885000459},{"average":0.13516944016067728,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":106.489064883095,"scaled_rad":-24.681246822540004},{"average":0.1375267827294969,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":110.87290079480859,"scaled_rad":-18.83613227358856},{"average":0.1420344438807358,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":119.25558012789006,"scaled_rad":-7.6592264961466014},{"average":0.1474074628905296,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":129.24752359890127,"scaled_rad":5.663364798535014},{"average":0.1555894103604647,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":144.46309541306312,"scaled_rad":25.950793884084163},{"average":0.16677594027983456,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":165.26614382725597,"scaled_rad":53.68819176967463},{"average":0.1777612662725794,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":185.695023034655,"scaled_rad":80.92669737954003},{"average":0.18200154807347219,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":193.58046992744465,"scaled_rad":91.4406265699262},{"average":0.18337332710167875,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":196.1315010106354,"scaled_rad":94.84200134751384},{"average":0.18513423463912637,"rel_min":0.08059520477943156,"rel_max":0.18545355490416057,"scaled_dist":199.40617555390102,"scaled_rad":99.20823407186805},{"average":0.1875377575698353,"rel_min":0.08059520477943156,"rel_max":0.1875377575698353,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.1905435593692522,"rel_min":0.08059520477943156,"rel_max":0.1905435593692522,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.1939794165656621,"rel_min":0.08059520477943156,"rel_max":0.1939794165656621,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.19761317270582146,"rel_min":0.08059520477943156,"rel_max":0.19761317270582146,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2010133940487086,"rel_min":0.08059520477943156,"rel_max":0.2010133940487086,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2039513296254401,"rel_min":0.08059520477943156,"rel_max":0.2039513296254401,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.20766066960120494,"rel_min":0.08059520477943156,"rel_max":0.20766066960120494,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.21350409298490985,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.21303245579338095,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":199.30802782575418,"scaled_rad":99.07737043433889},{"average":0.21252170862623032,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":198.5586746490096,"scaled_rad":98.07823286534608},{"average":0.2118587448113711,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":197.58599369709543,"scaled_rad":96.7813249294606},{"average":0.2105700921183869,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":195.69532048084355,"scaled_rad":94.26042730779139},{"average":0.17593156310141753,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":144.8746925340768,"scaled_rad":26.499590045435724},{"average":0.18444558848595752,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":157.36621941690316,"scaled_rad":43.15495922253754},{"average":0.18344207131174256,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":155.89388862237132,"scaled_rad":41.191851496495076},{"average":0.1836693842412421,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":156.22739544686513,"scaled_rad":41.63652726248682},{"average":0.1845958075708195,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":157.58661642679164,"scaled_rad":43.44882190238883},{"average":0.1856495609362627,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":159.13265227913996,"scaled_rad":45.510203038853234},{"average":0.18678438667942038,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":160.79763513245845,"scaled_rad":47.73018017661127},{"average":0.18682468315819278,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":160.85675693737846,"scaled_rad":47.80900924983794},{"average":0.1873187376579287,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":161.58161912492125,"scaled_rad":48.77549216656166},{"average":0.19032221384373776,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":165.98823078303178,"scaled_rad":54.65097437737566},{"average":0.19396671404214183,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":171.33533396239235,"scaled_rad":61.78044528318978},{"average":0.19542956580645846,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":173.48158691727926,"scaled_rad":64.64211588970565},{"average":0.20140092440614502,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":182.2425881013286,"scaled_rad":76.32345080177146},{"average":0.2033890779858286,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":185.15954838346508,"scaled_rad":80.21273117795343},{"average":0.20440713696168253,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":186.65321448038256,"scaled_rad":82.20428597384341},{"average":0.20540766955852724,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":188.121166391041,"scaled_rad":84.16155518805465},{"average":0.2057499008734877,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":188.6232780806228,"scaled_rad":84.83103744083041},{"average":0.20493520384768718,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":187.42797863770295,"scaled_rad":83.23730485027059},{"average":0.20305829794557245,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":184.67423766632007,"scaled_rad":79.56565022176008},{"average":0.200798377344425,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":181.35854882734301,"scaled_rad":75.14473176979067},{"average":0.1987039340957598,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":178.28564347839225,"scaled_rad":71.0475246378563},{"average":0.19755504337076005,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":176.6000248986281,"scaled_rad":68.80003319817078},{"average":0.1983197822213866,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":177.7220271806849,"scaled_rad":70.29603624091317},{"average":0.19993952620508415,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":180.09846777157085,"scaled_rad":73.46462369542778},{"average":0.19998219786560473,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":180.16107437308457,"scaled_rad":73.54809916411276},{"average":0.2036011313350069,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":185.47066680186495,"scaled_rad":80.6275557358199},{"average":0.204485869878774,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":186.76872909374012,"scaled_rad":82.35830545832016},{"average":0.204263374209404,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":186.44229001120053,"scaled_rad":81.92305334826736},{"average":0.20426557625816988,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":186.44552079219002,"scaled_rad":81.92736105625335},{"average":0.20550966757767614,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":188.27081487582316,"scaled_rad":84.36108650109756},{"average":0.20671896826364167,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":190.04506516823938,"scaled_rad":86.72675355765247},{"average":0.20817386110405056,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":192.1796410247549,"scaled_rad":89.57285469967317},{"average":0.20996921522598486,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":194.81373163001174,"scaled_rad":93.0849755066823},{"average":0.21194461453379246,"rel_min":0.08059520477943156,"rel_max":0.21350409298490985,"scaled_dist":197.71197922069925,"scaled_rad":96.94930562759896},{"average":0.2137939730388375,"rel_min":0.08059520477943156,"rel_max":0.2137939730388375,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2152662036184977,"rel_min":0.08059520477943156,"rel_max":0.2152662036184977,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.2161012310047112,"rel_min":0.08059520477943156,"rel_max":0.2161012310047112,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.21613508230561995,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.21540158614516258,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":198.9447256859034,"scaled_rad":98.5929675812045},{"average":0.21540158614516258,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":198.9447256859034,"scaled_rad":98.5929675812045},{"average":0.21540158614516258,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":198.9447256859034,"scaled_rad":98.5929675812045},{"average":0.21540158614516258,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":198.9447256859034,"scaled_rad":98.5929675812045},{"average":0.21540158614516258,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":198.9447256859034,"scaled_rad":98.5929675812045},{"average":0.21540158614516258,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":198.9447256859034,"scaled_rad":98.5929675812045},{"average":0.21540158614516258,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":198.9447256859034,"scaled_rad":98.5929675812045},{"average":0.21540158614516258,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":198.9447256859034,"scaled_rad":98.5929675812045},{"average":0.21533907798404836,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":198.85479575797555,"scaled_rad":98.47306101063407},{"average":0.17895932821556926,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":146.51557770399182,"scaled_rad":28.687436938655765},{"average":0.17890240450302122,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":146.43368207187632,"scaled_rad":28.57824276250176},{"average":0.145588822848777,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":98.50573244448738,"scaled_rad":-35.32569007401683},{"average":0.10456091319202894,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":39.479248659152226,"scaled_rad":-114.02766845446371},{"average":0.10468329345731407,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":39.65531604364569,"scaled_rad":-113.79291194180574},{"average":0.10663560999269599,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":42.46409624433546,"scaled_rad":-110.0478716742194},{"average":0.10735034712085154,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":43.49238210775896,"scaled_rad":-108.67682385632139},{"average":0.10744542685020621,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":43.62917245730445,"scaled_rad":-108.49443672359406},{"average":0.10673333627621744,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":42.604694167503865,"scaled_rad":-109.86040777666152},{"average":0.10574435978471404,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":41.18186260410732,"scaled_rad":-111.7575165278569},{"average":0.10494023843147864,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":40.02498046179753,"scaled_rad":-113.30002605093662},{"average":0.10519252097265434,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":40.38793707963686,"scaled_rad":-112.8160838938175},{"average":0.10561469037495179,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":40.99530839316115,"scaled_rad":-112.00625547578514},{"average":0.10653544168051962,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":42.319984996554396,"scaled_rad":-110.24002000459414},{"average":0.10746727398998512,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":43.66060374036774,"scaled_rad":-108.45252834617635},{"average":0.10955786913048743,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":46.66832412375957,"scaled_rad":-104.4422345016539},{"average":0.11131561512127519,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":49.19717743585871,"scaled_rad":-101.07043008552172},{"average":0.114288302485563,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":53.47395595016806,"scaled_rad":-95.36805873310925},{"average":0.11733552106065162,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":57.85796184560994,"scaled_rad":-89.52271753918674},{"average":0.11962967394707512,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":61.1585389231283,"scaled_rad":-85.12194810249561},{"average":0.11838416324077261,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":59.36663389737628,"scaled_rad":-87.51115480349829},{"average":0.11675088651601441,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":57.016853396310744,"scaled_rad":-90.64419547158568},{"average":0.11685551027075784,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":57.167374649150354,"scaled_rad":-90.44350046779954},{"average":0.11690714310308462,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":57.241658339585115,"scaled_rad":-90.34445554721985},{"average":0.11721364166556955,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":57.68261505856263,"scaled_rad":-89.75651325524983},{"average":0.1178987318136055,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":58.66824807893479,"scaled_rad":-88.44233589475363},{"average":0.11875168810766495,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":59.89538861039541,"scaled_rad":-86.80614851947279},{"average":0.11944001562490986,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":60.88567920466588,"scaled_rad":-85.4857610604455},{"average":0.11958264980276474,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":61.090885710598634,"scaled_rad":-85.21215238586849},{"average":0.11917687945985532,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":60.50710757598988,"scaled_rad":-85.9905232320135},{"average":0.1186187575216305,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":59.704142574543624,"scaled_rad":-87.06114323394183},{"average":0.11786920686471995,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":58.62577080111986,"scaled_rad":-88.49897226517352},{"average":0.11752339176434491,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":58.12824973349086,"scaled_rad":-89.16233368867886},{"average":0.1179039209969402,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":58.675713710221586,"scaled_rad":-88.43238171970455},{"average":0.11872619912058452,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":59.85871783444813,"scaled_rad":-86.8550428874025},{"average":0.11699811497670094,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":57.37253875410929,"scaled_rad":-90.16994832785429},{"average":0.11773707653966642,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":58.43567609352755,"scaled_rad":-88.75243187529661},{"average":0.11792517989429971,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":58.70629869421865,"scaled_rad":-88.3916017410418},{"average":0.11827495072480183,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":59.20951083512335,"scaled_rad":-87.72065221983553},{"average":0.1189894899845506,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":60.23751202705366,"scaled_rad":-86.34998396392845},{"average":0.1190434681962077,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":60.315169993589016,"scaled_rad":-86.24644000854798},{"average":0.11880798799693584,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":59.97638675358542,"scaled_rad":-86.69815099521944},{"average":0.1591547406382692,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":118.02289608099618,"scaled_rad":-9.302805225338432},{"average":0.1513454721114662,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":106.78777184656299,"scaled_rad":-24.282970871249347},{"average":0.14268626868843462,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":94.32985393849268,"scaled_rad":-40.893528082009766},{"average":0.1353988428281795,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":83.8455000443763,"scaled_rad":-54.872666607498275},{"average":0.13020044138122883,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":76.36660674259123,"scaled_rad":-64.8445243432117},{"average":0.12855561283194178,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":74.00020673570764,"scaled_rad":-67.99972435238983},{"average":0.15579274351726274,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":113.18602112905009,"scaled_rad":-15.751971827933204},{"average":0.16525997323576966,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":126.80643918463046,"scaled_rad":2.4085855795072746},{"average":0.19288084826106058,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":166.54434310070164,"scaled_rad":55.392457467602185},{"average":0.20169405201963317,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":179.2238199033098,"scaled_rad":72.29842653774637},{"average":0.20834754885953366,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":188.79614583026745,"scaled_rad":85.06152777368993},{"average":0.21173948082587501,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":193.6760877743552,"scaled_rad":91.5681170324736},{"average":0.21075324841912216,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":192.25720410095323,"scaled_rad":89.67627213460429},{"average":0.20833379602575666,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":188.77635975228458,"scaled_rad":85.03514633637946},{"average":0.20163449496176328,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":179.1381357010175,"scaled_rad":72.18418093468998},{"average":0.1910100517163922,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":163.8528449758059,"scaled_rad":51.80379330107456},{"average":0.18103960128007834,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":149.5084478096985,"scaled_rad":32.67793041293132},{"average":0.17532451250655562,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":141.28620110874803,"scaled_rad":21.71493481166405},{"average":0.17876135433520773,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":146.23075446691138,"scaled_rad":28.307672622548495},{"average":0.18655884622256885,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":157.44893575633768,"scaled_rad":43.26524767511688},{"average":0.1943938964833693,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":168.72115193906873,"scaled_rad":58.294869252091644},{"average":0.19343676663635778,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":167.3441378560275,"scaled_rad":56.458850474703326},{"average":0.1847530553738276,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":154.85096074019154,"scaled_rad":39.80128098692205},{"average":0.1737680999398553,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":139.04700437900388,"scaled_rad":18.729339172005183},{"average":0.16166433015408424,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":121.63341989521003,"scaled_rad":-4.4887734730533},{"average":0.15435318569273626,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":111.11494226350791,"scaled_rad":-18.513410315322773},{"average":0.14699842567424193,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":100.533715322903,"scaled_rad":-32.62171290279599},{"average":0.14205008697272442,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":93.41458503883236,"scaled_rad":-42.11388661489019},{"average":0.14072183344160016,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":91.50363865687783,"scaled_rad":-44.6618151241629},{"average":0.1419505733683819,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":93.27141571331013,"scaled_rad":-42.30477904891984},{"average":0.14446805715390548,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":96.89329694219235,"scaled_rad":-37.475604077076866},{"average":0.14512435874307764,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":97.83751212243584,"scaled_rad":-36.21665050341889},{"average":0.14218107865002336,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":93.60304158416425,"scaled_rad":-41.862611221114335},{"average":0.13364417601535053,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":81.32107671784986,"scaled_rad":-58.23856437620019},{"average":0.12329466016257577,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":66.43132155408901,"scaled_rad":-78.09157126121467},{"average":0.11523915779369681,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":54.841942910686505,"scaled_rad":-93.54407611908466},{"average":0.11218984923227,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":50.45493017073963,"scaled_rad":-99.39342643901382},{"average":0.11205016725821643,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":50.253970973803774,"scaled_rad":-99.6613720349283},{"average":0.11358210482180163,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":52.457955737191185,"scaled_rad":-96.7227256837451},{"average":0.11635688312099617,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":56.45000426356224,"scaled_rad":-91.39999431525034},{"average":0.11857653225215527,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":59.64339345998081,"scaled_rad":-87.14214205335892},{"average":0.12122828178694178,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":63.45844161201607,"scaled_rad":-82.05541118397858},{"average":0.1247796802851232,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":68.5678066179832,"scaled_rad":-75.24292450935575},{"average":0.12156711563729697,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":63.94591881817257,"scaled_rad":-81.40544157576991},{"average":0.11819372369921696,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":59.09265024561906,"scaled_rad":-87.87646633917458},{"average":0.11533461563044885,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":54.979277239936216,"scaled_rad":-93.36096368008505},{"average":0.1143628695918735,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":53.58123497384681,"scaled_rad":-95.22502003487092},{"average":0.11357949425038753,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":52.45419993163019,"scaled_rad":-96.72773342449308},{"average":0.11536179623602494,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":55.01838173216444,"scaled_rad":-93.30882435711408},{"average":0.11641084831070017,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":56.527643495531066,"scaled_rad":-91.29647533929192},{"average":0.11649435873766094,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":56.647789194011594,"scaled_rad":-91.13628107465121},{"average":0.11413365724927126,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":53.251469242733464,"scaled_rad":-95.66470767635539},{"average":0.1105261643068277,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":48.06140166545847,"scaled_rad":-102.58479777938871},{"average":0.10567370763759024,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":41.08021599691986,"scaled_rad":-111.89304533744018},{"average":0.10082062381210134,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":34.09812804433568,"scaled_rad":-121.20249594088575},{"average":0.11480044391930716,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":54.21076921429998,"scaled_rad":-94.38564104760003},{"average":0.10730303042428978,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":43.42430800294238,"scaled_rad":-108.76758932941016},{"average":0.10095723364420377,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":34.294667378339625,"scaled_rad":-120.94044349554716},{"average":0.09874438221582718,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":31.11105797563775,"scaled_rad":-125.18525603248301},{"average":0.0973918058304456,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":29.165118522516675,"scaled_rad":-127.77984196997777},{"average":0.0967611643450427,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":28.257820302258178,"scaled_rad":-128.98957293032242},{"average":0.0971054667322266,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":28.75316504305513,"scaled_rad":-128.3291132759265},{"average":0.09824498718317468,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":30.39258284385653,"scaled_rad":-126.14322287485797},{"average":0.0994027384660911,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":32.058229178272626,"scaled_rad":-123.92236109563649},{"average":0.10106121834934406,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":34.44426923627579,"scaled_rad":-120.74097435163227},{"average":0.10267373853445312,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":36.76418749085376,"scaled_rad":-117.64775001219499},{"average":0.1093540556481205,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":46.375099503913845,"scaled_rad":-104.8332006614482},{"average":0.12549333241035757,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":69.59453149748452,"scaled_rad":-73.87395800335398},{"average":0.149382349696837,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":103.96344532480758,"scaled_rad":-28.048739566923246},{"average":0.16984729511435512,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":133.40617781986222,"scaled_rad":11.20823709314962},{"average":0.19135772485029082,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":164.3530391795164,"scaled_rad":52.47071890602186},{"average":0.20665773525673742,"rel_min":0.08059520477943156,"rel_max":0.21613508230561995,"scaled_dist":186.36502623240887,"scaled_rad":81.82003497654514},{"average":0.22072955329547553,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.21053468371782777,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":185.81361679921244,"scaled_rad":81.08482239894994},{"average":0.20484054585652692,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":177.8900998691249,"scaled_rad":70.5201331588332},{"average":0.20180595871034515,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":173.66740572046157,"scaled_rad":64.8898742939488},{"average":0.19961524894593702,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":170.6189853397105,"scaled_rad":60.825313786280645},{"average":0.1975215376244797,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":167.7055404062762,"scaled_rad":56.94072054170164},{"average":0.19270152076867156,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":160.99838190562514,"scaled_rad":47.99784254083352},{"average":0.1869349758464394,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":152.974108972237,"scaled_rad":37.29881196298268},{"average":0.18137408578346242,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":145.23600925747394,"scaled_rad":26.98134567663189},{"average":0.17701480810331574,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":139.1699793609473,"scaled_rad":18.893305814596403},{"average":0.17095952548644383,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":130.7439216328177,"scaled_rad":7.658562177090232},{"average":0.16384006860404576,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":120.83704222195948,"scaled_rad":-5.550610370720676},{"average":0.15578774948617521,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":109.63206467996174,"scaled_rad":-20.490580426717685},{"average":0.15011543546359246,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":101.73891609707167,"scaled_rad":-31.014778537237788},{"average":0.14885309037982664,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":99.98233540189575,"scaled_rad":-33.35688613080566},{"average":0.15142449576715936,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":103.56050203869624,"scaled_rad":-28.585997281738344},{"average":0.1563941411392278,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":110.47587188067612,"scaled_rad":-19.365504159098492},{"average":0.16125044487677254,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":117.23352436808753,"scaled_rad":-10.355300842549951},{"average":0.16455959416301558,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":121.83827771835921,"scaled_rad":-4.2156297088543795},{"average":0.16532709630078934,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":122.90627366974974,"scaled_rad":-2.7916351070003316},{"average":0.1604516741749636,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":116.12201752838568,"scaled_rad":-11.837309962152432},{"average":0.1540793538046936,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":107.25479485699057,"scaled_rad":-23.66027352401258},{"average":0.14920960990453347,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":100.47844009038954,"scaled_rad":-32.695413212813946},{"average":0.1458842560969262,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":95.85113779548377,"scaled_rad":-38.865149606021646},{"average":0.14457150566755406,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":94.02441696337984,"scaled_rad":-41.300777382160206},{"average":0.14410515213552683,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":93.37547586001503,"scaled_rad":-42.16603218664662},{"average":0.13890524028970228,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":86.139685201455,"scaled_rad":-51.81375306472667},{"average":0.13204827347449188,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":76.59806643970694,"scaled_rad":-64.53591141372408},{"average":0.12741845203999727,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":70.15556901286739,"scaled_rad":-73.12590798284349},{"average":0.12528894228560972,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":67.19230977983196,"scaled_rad":-77.0769202935574},{"average":0.12678248855377455,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":69.2706119618184,"scaled_rad":-74.30585071757547},{"average":0.12851162166915966,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":71.6767383760108,"scaled_rad":-71.09768216531894},{"average":0.13016365682833816,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":73.97558130389528,"scaled_rad":-68.03255826147296},{"average":0.1378603276074259,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":84.68566643159882,"scaled_rad":-53.75244475786823},{"average":0.14088748636670778,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":88.89802381799925,"scaled_rad":-48.13596824266767},{"average":0.14335246384652053,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":92.32809370203238,"scaled_rad":-43.562541730623494},{"average":0.14241594250747877,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":91.02490384853094,"scaled_rad":-45.300128201958756},{"average":0.13753469046585415,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":84.23253525227757,"scaled_rad":-54.3566196636299},{"average":0.13140255225943806,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":75.69953129633286,"scaled_rad":-65.73395827155618},{"average":0.12542755997852198,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":67.38519932050582,"scaled_rad":-76.81973423932557},{"average":0.12298407840989227,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":63.9850414653584,"scaled_rad":-81.3532780461888},{"average":0.12207654612806798,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":62.72219051675263,"scaled_rad":-83.03707931099649},{"average":0.12265303127366949,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":63.52438216057666,"scaled_rad":-81.96749045256446},{"average":0.12440339667916137,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":65.96005376918187,"scaled_rad":-78.7199283077575},{"average":0.1262916973026374,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":68.58766523972486,"scaled_rad":-75.21644634703352},{"average":0.12826709028879935,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":71.33646763100639,"scaled_rad":-71.55137649199149},{"average":0.1287804208770995,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":72.05077833197683,"scaled_rad":-70.5989622240309},{"average":0.12433126869817708,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":65.85968611170976,"scaled_rad":-78.85375185105366},{"average":0.11831654100641409,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":57.49006144570932,"scaled_rad":-90.01325140572091},{"average":0.11433279724265517,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":51.946595178093645,"scaled_rad":-97.4045397625418},{"average":0.10595630578955705,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":40.29052476672605,"scaled_rad":-112.9459669776986},{"average":0.10346219435493363,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":36.81991434963845,"scaled_rad":-117.5734475338154},{"average":0.10445960862934589,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":38.20783804978769,"scaled_rad":-115.72288260028307},{"average":0.10785041133638784,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":42.9262139146277,"scaled_rad":-109.4317147804964},{"average":0.11114756357013941,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":47.51427310489786,"scaled_rad":-103.31430252680286},{"average":0.1358047275523226,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":81.82525415588006,"scaled_rad":-57.566327792159925},{"average":0.1378647106865159,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":84.6917655816759,"scaled_rad":-53.74431255776548},{"average":0.13441157397252834,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":79.8866505876851,"scaled_rad":-60.1511325497532},{"average":0.12597758401057155,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":68.15056974813788,"scaled_rad":-75.79924033581615},{"average":0.11583177646181621,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":54.03245742979517,"scaled_rad":-94.62339009360643},{"average":0.10841176831372337,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":43.707354382611506,"scaled_rad":-108.39019415651799},{"average":0.10439906923814489,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":38.12359616755677,"scaled_rad":-115.8352051099243},{"average":0.10251020635478199,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":35.4952023001275,"scaled_rad":-119.33973026649667},{"average":0.10214281089985731,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":34.98396351770929,"scaled_rad":-120.0213819763876},{"average":0.10338681837509624,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":36.71502703097647,"scaled_rad":-117.71329729203137},{"average":0.1084955316915776,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":43.823912948406004,"scaled_rad":-108.23478273545867},{"average":0.11350695518728014,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":50.79741795992081,"scaled_rad":-98.93677605343893},{"average":0.12193657004463128,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":62.527410746059715,"scaled_rad":-83.29678567192038},{"average":0.1282344154609907,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":71.29099989600668,"scaled_rad":-71.61200013865776},{"average":0.1336759457830947,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":78.86300793005974,"scaled_rad":-61.51598942658701},{"average":0.1350295135877483,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":80.74652702942771,"scaled_rad":-59.00463062742972},{"average":0.13148199360071644,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":75.81007565403908,"scaled_rad":-65.58656579461457},{"average":0.13177378144502253,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":76.21610479851519,"scaled_rad":-65.04519360197975},{"average":0.13360168262905456,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":78.75966913274719,"scaled_rad":-61.653774489670425},{"average":0.13626474778800043,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":82.465382339349,"scaled_rad":-56.71282354753467},{"average":0.13857118469237664,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":85.67483955748327,"scaled_rad":-52.43354725668897},{"average":0.13982363155915448,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":87.41764666800205,"scaled_rad":-50.10980444266393},{"average":0.14448738991012497,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":93.9073680537273,"scaled_rad":-41.45684259503027},{"average":0.1539950193525244,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":107.13744162884103,"scaled_rad":-23.816744494878634},{"average":0.16294123265925828,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":119.58629241586542,"scaled_rad":-7.2182767788461035},{"average":0.16953855867385098,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":128.76661534503143,"scaled_rad":5.0221537933752245},{"average":0.1719708122093044,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":132.15114914731413,"scaled_rad":9.534865529752182},{"average":0.1944378642532497,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":163.41454170568994,"scaled_rad":51.21938894091991},{"average":0.18872846993552128,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":155.46979508398945,"scaled_rad":40.62639344531928},{"average":0.18384657851884814,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":148.67653678342174,"scaled_rad":31.568715711229004},{"average":0.17821018576698133,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":140.83337343158877,"scaled_rad":21.11116457545168},{"average":0.17272417333775333,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":133.19946757604484,"scaled_rad":10.932623434726452},{"average":0.167812392476258,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":126.36461746160677,"scaled_rad":1.8194899488090357},{"average":0.1652156518838598,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":122.7511963348109,"scaled_rad":-2.9984048869187916},{"average":0.16475604939614122,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":122.11164945673151,"scaled_rad":-3.8511340576913256},{"average":0.16471935308013622,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":122.06058573326362,"scaled_rad":-3.9192190223151613},{"average":0.1640709533635881,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":121.15832339668589,"scaled_rad":-5.1222354710854745},{"average":0.1633392315428657,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":120.1401165362563,"scaled_rad":-6.4798446183249325},{"average":0.16346343078058304,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":120.31294248229557,"scaled_rad":-6.249410023605918},{"average":0.16382367664600037,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":120.8142324550986,"scaled_rad":-5.5810233932018605},{"average":0.1669205394309263,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":125.12358451228833,"scaled_rad":0.16477934971777586},{"average":0.171859812467671,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":131.99669058774097,"scaled_rad":9.328920783654638},{"average":0.17645681574706387,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":138.3935208365288,"scaled_rad":17.85802778203842},{"average":0.17056290458550855,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":130.19201500534638,"scaled_rad":6.922686673795141},{"average":0.1719462841076115,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":132.11701775925144,"scaled_rad":9.489357012335233},{"average":0.17321174121683552,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":133.87792890567482,"scaled_rad":11.83723854089979},{"average":0.17574250376381176,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":137.39954014436316,"scaled_rad":16.53272019248419},{"average":0.17963438551872968,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":142.81517842466747,"scaled_rad":23.753571232889954},{"average":0.1820936043620035,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":146.23723504045495,"scaled_rad":28.316313387273254},{"average":0.18212197434407962,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":146.27671248879952,"scaled_rad":28.368949985066024},{"average":0.16730737025996817,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":125.6618680413585,"scaled_rad":0.8824907218113367},{"average":0.1601669798646845,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":115.72585919110219,"scaled_rad":-12.365521078530406},{"average":0.15495274477863905,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":108.47013743161898,"scaled_rad":-22.03981675784135},{"average":0.14930079167907498,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":100.60532151684838,"scaled_rad":-32.5262379775355},{"average":0.14266443570621098,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":91.37068755014235,"scaled_rad":-44.83908326647686},{"average":0.13526762377396964,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":81.07786254284642,"scaled_rad":-58.56284994287145},{"average":0.12717639031383693,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":69.81873484550505,"scaled_rad":-73.57502020599328},{"average":0.1206452282950466,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":60.730480558453486,"scaled_rad":-85.69269258872868},{"average":0.11790890063121272,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":56.922820979642104,"scaled_rad":-90.76957202714387},{"average":0.11591380849948583,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":54.14660679799055,"scaled_rad":-94.4711909360126},{"average":0.11423792099399174,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":51.81457281037806,"scaled_rad":-97.58056958616258},{"average":0.11362693593802997,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":50.96437378940852,"scaled_rad":-98.71416828078864},{"average":0.11265360587647905,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":49.6099637963389,"scaled_rad":-100.52004827154813},{"average":0.11577642818241764,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":53.955439092770646,"scaled_rad":-94.72608120963913},{"average":0.12012980399468647,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":60.013256411521944,"scaled_rad":-86.64899145130407},{"average":0.12341009040333531,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":64.57784643859364,"scaled_rad":-80.56287141520846},{"average":0.12685478680968393,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":69.37121656055969,"scaled_rad":-74.17171125258709},{"average":0.13098200886601175,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":75.11433599920169,"scaled_rad":-66.51421866773109},{"average":0.1362258372193114,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":82.41123743501461,"scaled_rad":-56.785016753313855},{"average":0.14045385122548454,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":88.29461106849158,"scaled_rad":-48.94051857534457},{"average":0.14133131579877323,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":89.51562214538471,"scaled_rad":-47.312503806153714},{"average":0.13893121862964866,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":86.17583462765343,"scaled_rad":-51.76555382979544},{"average":0.13647581173953685,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":82.7590824277673,"scaled_rad":-56.32122342964361},{"average":0.1657745499179651,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":123.52891512970048,"scaled_rad":-1.9614464937326943},{"average":0.15672172718605942,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":110.93171500414024,"scaled_rad":-18.757713327813008},{"average":0.15234495644066212,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":104.84134312607954,"scaled_rad":-26.878209165227275},{"average":0.15316971030818755,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":105.98900610714405,"scaled_rad":-25.347991857141267},{"average":0.1527968835332487,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":105.47020952455779,"scaled_rad":-26.03972063392294},{"average":0.1504858261900007,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":102.25432286503717,"scaled_rad":-30.327569513283777},{"average":0.14550522479336137,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":95.32370747609507,"scaled_rad":-39.568390031873236},{"average":0.14246664700933506,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":91.09546026790049,"scaled_rad":-45.20605297613268},{"average":0.14140917389146646,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":89.62396337817991,"scaled_rad":-47.16804882909345},{"average":0.14131493978871557,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":89.49283457049633,"scaled_rad":-47.342887239338225},{"average":0.14146662442655297,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":89.70390704981006,"scaled_rad":-47.06145726691993},{"average":0.14540827432547204,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":95.18879878712183,"scaled_rad":-39.74826828383756},{"average":0.14364440178360816,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":92.73433170388508,"scaled_rad":-43.020891061486566},{"average":0.14026570875592823,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":88.03280672179152,"scaled_rad":-49.289591037611316},{"average":0.1387500858776981,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":85.92378445576915,"scaled_rad":-52.101620725641126},{"average":0.13876699150831182,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":85.94730900920365,"scaled_rad":-52.07025465439513},{"average":0.1278347606503022,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":70.73487151699375,"scaled_rad":-72.35350464400834},{"average":0.12727338074974953,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":69.95369915085372,"scaled_rad":-73.3950677988617},{"average":0.1260783258456984,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":68.29075420724989,"scaled_rad":-75.61232772366681},{"average":0.12478133902372517,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":66.48596877838821,"scaled_rad":-78.01870829548237},{"average":0.12374989637316823,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":65.0506938512309,"scaled_rad":-79.93240819835879},{"average":0.12124484669584275,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":61.56486263103908,"scaled_rad":-84.58018315861456},{"average":0.12149652674187959,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":61.91508090012794,"scaled_rad":-84.11322546649608},{"average":0.11988664863277906,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":59.67490042618324,"scaled_rad":-87.10013276508901},{"average":0.11848270961247823,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":57.72128868246917,"scaled_rad":-89.70494842337443},{"average":0.10544161363827671,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":39.57431942119526,"scaled_rad":-113.9009074384063},{"average":0.10612556674438987,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":40.52605507419112,"scaled_rad":-112.63192656774518},{"average":0.10641863684040022,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":40.93386849985866,"scaled_rad":-112.08817533352178},{"average":0.10721034810941588,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":42.035551984977786,"scaled_rad":-110.61926402002962},{"average":0.10892791066166253,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":44.425577708398144,"scaled_rad":-107.43256305546915},{"average":0.1111960521154976,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":47.5817459725065,"scaled_rad":-103.22433870332466},{"average":0.13178035946586794,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":76.22525825788071,"scaled_rad":-65.03298898949238},{"average":0.12819875082074902,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":71.24137177184744,"scaled_rad":-71.67817097087008},{"average":0.1294269286100433,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":72.95040793213587,"scaled_rad":-69.3994560904855},{"average":0.13234021208400643,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":77.00430537725634,"scaled_rad":-63.994259496991546},{"average":0.1333146614155599,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":78.36027285892749,"scaled_rad":-62.186302854763355},{"average":0.13285877501371635,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":77.72589699533032,"scaled_rad":-63.03213733955958},{"average":0.13085278265204103,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":74.93451490614966,"scaled_rad":-66.7539801251338},{"average":0.1287302890473425,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":71.98101879831404,"scaled_rad":-70.69197493558129},{"average":0.12499483486777441,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":66.78305289823794,"scaled_rad":-77.62259613568276},{"average":0.12012671050776923,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":60.00895175705821,"scaled_rad":-86.65473099058904},{"average":0.11742640135867785,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":56.25141272648619,"scaled_rad":-91.66478303135175},{"average":0.11519120222876011,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":53.1410844240425,"scaled_rad":-95.81188743461},{"average":0.11255129253313854,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":49.467592549298686,"scaled_rad":-100.70987660093509},{"average":0.11185016481141592,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":48.491958044384575,"scaled_rad":-102.01072260748722},{"average":0.11364422039258221,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":50.98842548460943,"scaled_rad":-98.68209935385408},{"average":0.11840999516051844,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":57.6201049378533,"scaled_rad":-89.83986008286226},{"average":0.11937069338143623,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":58.956937449387915,"scaled_rad":-88.05741673414944},{"average":0.11946228240537766,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":59.08438557226219,"scaled_rad":-87.88748590365041},{"average":0.11572283772911345,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":53.88086680906591,"scaled_rad":-94.82551092124547},{"average":0.1097884583584624,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":45.623048582976494,"scaled_rad":-105.835935222698},{"average":0.09022476442345125,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":18.399742107973285,"scaled_rad":-142.13367718936894},{"average":0.09108867504101475,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":19.601892560084583,"scaled_rad":-140.53080991988722},{"average":0.09524564624290417,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":25.38640858311822,"scaled_rad":-132.8181218891757},{"average":0.10058581814677878,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":32.8173741692345,"scaled_rad":-122.910167774354},{"average":0.1040265309316752,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":37.60520099513213,"scaled_rad":-116.52639867315716},{"average":0.10341453725417185,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":36.75359845530593,"scaled_rad":-117.66186872625876},{"average":0.10067105089290024,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":32.93597739299575,"scaled_rad":-122.75203014267234},{"average":0.09954740465892588,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":31.37239917005982,"scaled_rad":-124.8368011065869},{"average":0.10119858708674624,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":33.67005550367533,"scaled_rad":-121.7732593284329},{"average":0.105573433325216,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":39.75774938840432,"scaled_rad":-113.65633414879423},{"average":0.1102278939518645,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":46.234532788104104,"scaled_rad":-105.02062294919453},{"average":0.1162588987058985,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":54.62680734099137,"scaled_rad":-93.83092354534483},{"average":0.1272893219398433,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":69.97588166428602,"scaled_rad":-73.3654911142853},{"average":0.1366400418782167,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":82.98761224491562,"scaled_rad":-56.01651700677917},{"average":0.14979639051086974,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":101.29495809220172,"scaled_rad":-31.606722543731024},{"average":0.15757660475672294,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":112.12129577462709,"scaled_rad":-17.171605633830552},{"average":0.1611811604584418,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":117.13711359001947,"scaled_rad":-10.4838485466407},{"average":0.16475140631732257,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":122.1051885113657,"scaled_rad":-3.8597486515124046},{"average":0.16062590394418833,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":116.36446204936574,"scaled_rad":-11.514050600845678},{"average":0.15614362968335627,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":110.12727973027012,"scaled_rad":-19.830293692973157},{"average":0.15275834760355578,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":105.41658593855126,"scaled_rad":-26.111218748598304},{"average":0.14670365575269562,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":96.99135027420193,"scaled_rad":-37.34486630106409},{"average":0.14477881403003837,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":94.31289106778411,"scaled_rad":-40.91614524295453},{"average":0.13950340000395145,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":86.97203747992036,"scaled_rad":-50.703950026772844},{"average":0.13221160484918215,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":76.8253456071764,"scaled_rad":-64.2328725237648},{"average":0.12293239476307896,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":63.913122544442004,"scaled_rad":-81.44916994074399},{"average":0.11440881262177546,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":52.05237223479263,"scaled_rad":-97.26350368694315},{"average":0.10567597037725217,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":39.900431930969994,"scaled_rad":-113.46609075870668},{"average":0.0967742399842535,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":27.513480087853488,"scaled_rad":-129.98202654952868},{"average":0.09443749644676384,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":24.261850529249497,"scaled_rad":-134.31753262766733},{"average":0.09943103038242791,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":31.210461828091837,"scaled_rad":-125.05271756254422},{"average":0.11236524519752629,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":49.20870362714241,"scaled_rad":-101.05506183047677},{"average":0.12845164425957978,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":71.59327850345329,"scaled_rad":-71.20896199539561},{"average":0.1410052669203871,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":89.06191802531299,"scaled_rad":-47.91744263291602},{"average":0.13815250901789553,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":85.09224323196875,"scaled_rad":-53.210342357375},{"average":0.13332026588256685,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":78.36807159690949,"scaled_rad":-62.17590453745402},{"average":0.13273636847816056,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":77.5555656334184,"scaled_rad":-63.25924582210881},{"average":0.1360920134797301,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":82.22501878487857,"scaled_rad":-57.03330828682857},{"average":0.14103054441308063,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":89.09709220728506,"scaled_rad":-47.87054372361992},{"average":0.14509366202172233,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":94.75100890990147,"scaled_rad":-40.33198812013137},{"average":0.15229469565156697,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":104.77140414268723,"scaled_rad":-26.971461143083673},{"average":0.15621439689741934,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":110.22575385091528,"scaled_rad":-19.69899486544628},{"average":0.15809647396806795,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":112.84470511206493,"scaled_rad":-16.207059850580094},{"average":0.15677760251311829,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":111.00946673947037,"scaled_rad":-18.65404434737283},{"average":0.15602497843849542,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":109.96217393720171,"scaled_rad":-20.0504347503977},{"average":0.14953154164473495,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":100.92641512294982,"scaled_rad":-32.098113169400236},{"average":0.14202766021550153,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":90.48460057715353,"scaled_rad":-46.0205325637953},{"average":0.13362244674452134,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":78.78856285194523,"scaled_rad":-61.6152495307397},{"average":0.1292838887246074,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":72.75136481418961,"scaled_rad":-69.66484691441384},{"average":0.12863782892249057,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":71.85235851953834,"scaled_rad":-70.86352197394889},{"average":0.1292348958073664,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":72.68319010211397,"scaled_rad":-69.75574653051471},{"average":0.130840303326138,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":74.91714965218543,"scaled_rad":-66.7771337970861},{"average":0.12987679570504296,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":73.57640779907707,"scaled_rad":-68.56478960123057},{"average":0.12669202823352108,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":69.1447344547245,"scaled_rad":-74.47368739370067},{"average":0.12633154848760553,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":68.64311903211107,"scaled_rad":-75.14250795718525},{"average":0.12623149062838612,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":68.5038863403806,"scaled_rad":-75.32815154615919},{"average":0.127185706296758,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":69.83169823876904,"scaled_rad":-73.55773568164129},{"average":0.13327532456449892,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":78.3055347733823,"scaled_rad":-62.2592869688236},{"average":0.14256109177149873,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":91.22688221274798,"scaled_rad":-45.03082371633603},{"average":0.12991085759180987,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":73.62380565684632,"scaled_rad":-68.50159245753825},{"average":0.12370161987491263,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":64.9835160517868,"scaled_rad":-80.0219785976176},{"average":0.11897103759899005,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":58.40080771815302,"scaled_rad":-88.79892304246263},{"average":0.1126808976006711,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":49.647940825338615,"scaled_rad":-100.46941223288184},{"average":0.10530055801562489,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":39.3780374481574,"scaled_rad":-114.16261673579014},{"average":0.10128402414035911,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":33.78894302576347,"scaled_rad":-121.61474263231537},{"average":0.10283561764114918,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":35.94801919700941,"scaled_rad":-118.73597440398746},{"average":0.10739735359659819,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":42.29577419592542,"scaled_rad":-110.27230107209944},{"average":0.11365701577042119,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":51.006230531730445,"scaled_rad":-98.65835929102607},{"average":0.11759135330086032,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":56.48094694893914,"scaled_rad":-91.35873740141449},{"average":0.11957190538427731,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":59.23692833648665,"scaled_rad":-87.68409555135113},{"average":0.1200501522818362,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":59.902419317188695,"scaled_rad":-86.79677424374842},{"average":0.11972917496317109,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":59.45577238299661,"scaled_rad":-87.39230348933786},{"average":0.11989578885959562,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":59.68761925099745,"scaled_rad":-87.08317433200341},{"average":0.12174115023526706,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":62.255479822417115,"scaled_rad":-83.65936023677719},{"average":0.12602667769634573,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":68.21888468182362,"scaled_rad":-75.70815375756851},{"average":0.13118114064353667,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":75.39143220743728,"scaled_rad":-66.14475705675031},{"average":0.13713605950341207,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":83.67783158041296,"scaled_rad":-55.0962245594494},{"average":0.14073774398966404,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":88.68965403690888,"scaled_rad":-48.413794617454826},{"average":0.14377846072247516,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":92.92087763895304,"scaled_rad":-42.77216314806262},{"average":0.14210570514568413,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":90.59320179838704,"scaled_rad":-45.87573093548394},{"average":0.13923452783457724,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":86.59789599652831,"scaled_rad":-51.202805337962246},{"average":0.1364994156709046,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":82.7919278126815,"scaled_rad":-56.27742958309135},{"average":0.1349228076691175,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":80.59804341814073,"scaled_rad":-59.202608775812365},{"average":0.13621501463931054,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":82.39617757907983,"scaled_rad":-56.805096561226875},{"average":0.14025856333549264,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":88.02286371353055,"scaled_rad":-49.302848381959265},{"average":0.14461309414767426,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":94.08228823983217,"scaled_rad":-41.22361568022377},{"average":0.148769316906622,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":99.86576278820118,"scaled_rad":-33.51231628239843},{"average":0.15249975675260996,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":105.05675113381986,"scaled_rad":-26.59099848824019},{"average":0.1508255920416333,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":102.72711445232434,"scaled_rad":-29.69718073023421},{"average":0.14938723200866585,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":100.72560511932497,"scaled_rad":-32.36585984090004},{"average":0.1490348732713398,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":100.2352902571503,"scaled_rad":-33.01961299046627},{"average":0.149853839002134,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":101.37489891980867,"scaled_rad":-31.500134773588456},{"average":0.13910513474837607,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":86.41784269713085,"scaled_rad":-51.44287640382552},{"average":0.1411824829838018,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":89.30851803974063,"scaled_rad":-47.58864261367914},{"average":0.14219616922855868,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":90.71908454125018,"scaled_rad":-45.70788727833309},{"average":0.14260189435272305,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":91.2836598937591,"scaled_rad":-44.95512014165455},{"average":0.14349178413555164,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":92.52196092051776,"scaled_rad":-43.304052105976325},{"average":0.15220628107765985,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":104.64837333621858,"scaled_rad":-27.135502218375223},{"average":0.16335457323071284,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":120.16146482924708,"scaled_rad":-6.451380227670569},{"average":0.1780928433300225,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":140.67008887323973,"scaled_rad":20.893451830986322},{"average":0.18704199652924386,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":153.12303058473148,"scaled_rad":37.49737411297528},{"average":0.1914999452943329,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":159.32636344635915,"scaled_rad":45.76848459514554},{"average":0.19316351736407722,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":161.64126023672745,"scaled_rad":48.85501364896993},{"average":0.19293188518863552,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":161.31893901648814,"scaled_rad":48.42525202198419},{"average":0.19134893678850234,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":159.11623181946837,"scaled_rad":45.48830909262449},{"average":0.18916252507712472,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":156.07379227317952,"scaled_rad":41.431723030906},{"average":0.18920008577823275,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":156.12605880735637,"scaled_rad":41.50141174314183},{"average":0.1913578669820738,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":159.1286583784446,"scaled_rad":45.50487783792616},{"average":0.19331071555690113,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":161.84608973002887,"scaled_rad":49.12811964003848},{"average":0.20051407208005023,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":171.8697173194721,"scaled_rad":62.4929564259628},{"average":0.20772469777089242,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":181.90346011418205,"scaled_rad":75.87128015224275},{"average":0.2066021648797429,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":180.34143113205067,"scaled_rad":73.78857484273422},{"average":0.20451491167514582,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":177.43697280897345,"scaled_rad":69.91596374529794},{"average":0.20083181840377023,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":172.31186825378288,"scaled_rad":63.082491005043835},{"average":0.19625845354888682,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":165.94793138786764,"scaled_rad":54.59724185049021},{"average":0.1923890176657287,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":160.5635270272947,"scaled_rad":47.41803603639295},{"average":0.18998226035697702,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":157.2144717801235,"scaled_rad":42.95262904016465},{"average":0.1877339319316614,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":154.0858737769983,"scaled_rad":38.78116503599776},{"average":0.1837314068278925,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":148.51627286544465,"scaled_rad":31.355030487259512},{"average":0.1777741563558788,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":140.22662900336414,"scaled_rad":20.302172004485527},{"average":0.17127344377690118,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":131.18074577541663,"scaled_rad":8.240994367222186},{"average":0.16751211418402578,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":125.94677367380352,"scaled_rad":1.2623648984047122},{"average":0.16118470752039352,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":117.14204940402873,"scaled_rad":-10.477267461295042},{"average":0.15981860089674593,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":115.24108226476393,"scaled_rad":-13.011890313648081},{"average":0.1564352197607944,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":110.5330336778394,"scaled_rad":-19.28928842954747},{"average":0.15220123663462862,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":104.64135388380376,"scaled_rad":-27.144861488261654},{"average":0.15182190504136792,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":104.11350570475886,"scaled_rad":-27.848659060321523},{"average":0.15337875269472123,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":106.27989314380375,"scaled_rad":-24.960142474928347},{"average":0.15625825059873547,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":110.2867772320292,"scaled_rad":-19.617630357294416},{"average":0.15898613275860105,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":114.08268470801026,"scaled_rad":-14.55642038931964},{"average":0.15932165949153154,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":114.54957746923758,"scaled_rad":-13.933896707683232},{"average":0.15771697035118465,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":112.31661755840017,"scaled_rad":-16.911176588799776},{"average":0.15581833290229705,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":109.67462217001975,"scaled_rad":-20.43383710664034},{"average":0.1540272442181364,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":107.18228323163778,"scaled_rad":-23.756955691149614},{"average":0.15508451987459562,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":108.65350534950379,"scaled_rad":-21.795326200661606},{"average":0.15790071553760485,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":112.57230298978344,"scaled_rad":-16.57026268028875},{"average":0.16235874342269688,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":118.7757459486196,"scaled_rad":-8.299005401840532},{"average":0.16652727770183742,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":124.57635224564993,"scaled_rad":-0.564863672466771},{"average":0.16418712698840743,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":121.31998152747012,"scaled_rad":-4.906691296706498},{"average":0.16286915556461676,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":119.48599556784826,"scaled_rad":-7.352005909535649},{"average":0.16207068822838389,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":118.37491086795698,"scaled_rad":-8.833452176057364},{"average":0.16125252757455663,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":117.2364224874437,"scaled_rad":-10.351436683408394},{"average":0.15638248934808083,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":110.45965815935996,"scaled_rad":-19.387122454186738},{"average":0.14978404719492092,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":101.27778209905294,"scaled_rad":-31.62962386792941},{"average":0.14291959991140418,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":91.72575410262985,"scaled_rad":-44.365661196493534},{"average":0.13977004469366863,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":87.34307937682473,"scaled_rad":-50.20922749756703},{"average":0.14035920036787336,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":88.16290233733729,"scaled_rad":-49.11613021688362},{"average":0.14119477002259373,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":89.32561572199913,"scaled_rad":-47.56584570400115},{"average":0.14124726403686333,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":89.39866228689182,"scaled_rad":-47.46845028414424},{"average":0.1404612828899342,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":88.30495239153642,"scaled_rad":-48.926730144618105},{"average":0.14038062442326238,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":88.19271437731962,"scaled_rad":-49.076380830240495},{"average":0.14078706376080616,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":88.7582835733113,"scaled_rad":-48.32228856891825},{"average":0.1414036354153219,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":89.61625646792109,"scaled_rad":-47.17832470943854},{"average":0.14041322573965181,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":88.23807981957744,"scaled_rad":-49.01589357389676},{"average":0.13755471475881267,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":84.26039949233193,"scaled_rad":-54.31946734355742},{"average":0.12578656831882576,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":67.88476725014316,"scaled_rad":-76.15364366647579},{"average":0.1245619194151154,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":66.18064161105204,"scaled_rad":-78.42581118526395},{"average":0.12484146968769612,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":66.56964190777086,"scaled_rad":-77.90714412297217},{"average":0.1271300877943851,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":69.75430388058658,"scaled_rad":-73.66092815921789},{"average":0.12863334193897638,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":71.84611478419056,"scaled_rad":-70.87184695441258},{"average":0.13130635259854415,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":75.56566737165657,"scaled_rad":-65.9124435044579},{"average":0.1351682082902432,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":80.93952373061413,"scaled_rad":-58.74730169251451},{"average":0.13715811007269824,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":83.7085154281372,"scaled_rad":-55.05531276248374},{"average":0.12301583180490594,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":64.02922700654253,"scaled_rad":-81.29436399127664},{"average":0.12650436515079796,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":68.88359718525044,"scaled_rad":-74.8218704196661},{"average":0.1300900873858589,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":73.87320782133818,"scaled_rad":-68.16905623821576},{"average":0.13440872950806199,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":79.88269245338888,"scaled_rad":-60.156410062148154},{"average":0.14123944317657944,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":89.38777938936164,"scaled_rad":-47.48296081418448},{"average":0.1436824476765246,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":92.78727339303745,"scaled_rad":-42.950302142616735},{"average":0.14741003160929417,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":97.97428767317196,"scaled_rad":-36.0342831024374},{"average":0.1497811742443609,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":101.2737843257366,"scaled_rad":-31.63495423235119},{"average":0.15196506159543594,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":104.31271116964935,"scaled_rad":-27.58305177380089},{"average":0.15459051736061408,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":107.96609008517713,"scaled_rad":-22.711879886430495},{"average":0.1546835481446414,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":108.09554444863213,"scaled_rad":-22.5392740684905},{"average":0.15389616241223125,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":106.99988004196885,"scaled_rad":-24.000159944041542},{"average":0.1527825521531837,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":105.45026709686418,"scaled_rad":-26.066310537514426},{"average":0.15183195084375872,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":104.12748465772044,"scaled_rad":-27.83002045637275},{"average":0.15245822882474147,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":104.99896411714543,"scaled_rad":-26.66804784380608},{"average":0.1559520888490982,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":109.86074648502478,"scaled_rad":-20.185671353300307},{"average":0.16213862296320836,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":118.46944353201154,"scaled_rad":-8.707408623984605},{"average":0.1684266221282216,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":127.21933140862446,"scaled_rad":2.959108544832617},{"average":0.1673269272361141,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":125.68908199988357,"scaled_rad":0.9187759998447689},{"average":0.1645965527169709,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":121.8897063516501,"scaled_rad":-4.147058197799879},{"average":0.16284885356413586,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":119.45774489172427,"scaled_rad":-7.389673477700967},{"average":0.16031285289685532,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":115.9288446944747,"scaled_rad":-12.094873740700393},{"average":0.17247282978491033,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":132.84971754456862,"scaled_rad":10.466290059424836},{"average":0.16884511341590536,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":127.80167115589198,"scaled_rad":3.7355615411892984},{"average":0.16661030415592618,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":124.6918853659645,"scaled_rad":-0.4108195120473397},{"average":0.16285306990601367,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":119.46361202333675,"scaled_rad":-7.381850635551018},{"average":0.15960229132114778,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":114.94008277614242,"scaled_rad":-13.413222965143433},{"average":0.156577239640497,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":110.73065743557812,"scaled_rad":-19.025790085895835},{"average":0.15733638394114732,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":111.78702327446355,"scaled_rad":-17.617302300715266},{"average":0.15497196545533426,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":108.4968834221292,"scaled_rad":-22.004155437161074},{"average":0.15365641705831076,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":106.66626915706048,"scaled_rad":-24.444974457252698},{"average":0.14570077132680614,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":95.59581473905756,"scaled_rad":-39.20558034792326},{"average":0.1409504691941608,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":88.98566579502625,"scaled_rad":-48.01911227329833},{"average":0.13787894086861932,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":84.71156719020051,"scaled_rad":-53.717910413065994},{"average":0.13651332641245878,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":82.81128491272007,"scaled_rad":-56.251620116373246},{"average":0.1372819378868092,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":83.88082453013352,"scaled_rad":-54.825567293155316},{"average":0.1490983575198204,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":100.32362997246499,"scaled_rad":-32.90182670338001},{"average":0.11382618854332546,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":51.24163813212013,"scaled_rad":-98.3444824905065},{"average":0.12110520955624408,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":61.37055450808361,"scaled_rad":-84.83926065588852},{"average":0.12373813042336033,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":65.03432127565014,"scaled_rad":-79.95423829913314},{"average":0.12411681621128487,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":65.5612708024953,"scaled_rad":-79.25163893000625},{"average":0.12339716620750167,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":64.55986213842564,"scaled_rad":-80.58685048209914},{"average":0.12907694169972608,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":72.46339351893481,"scaled_rad":-70.04880864142025},{"average":0.1340220145784862,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":79.34457020095165,"scaled_rad":-60.87390639873114},{"average":0.13952790389380443,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":87.00613517668016,"scaled_rad":-50.658486431093124},{"average":0.14114586133767382,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":89.25755822103397,"scaled_rad":-47.65658903862136},{"average":0.14782096816888884,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":98.54611485165837,"scaled_rad":-35.27184686445551},{"average":0.15367198699490675,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":106.68793506315966,"scaled_rad":-24.4160865824538},{"average":0.16060660424067036,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":116.33760609130937,"scaled_rad":-11.549858544920852},{"average":0.1592045021102284,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":114.38655041986648,"scaled_rad":-14.151266106844673},{"average":0.153484026245226,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":106.42638358362679,"scaled_rad":-24.764821888497607},{"average":0.1424388873325123,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":91.05683207261676,"scaled_rad":-45.25755723651099},{"average":0.12399080666993155,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":65.38592577949345,"scaled_rad":-79.48543229400875},{"average":0.11334959068655122,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":50.57844182760856,"scaled_rad":-99.22874422985527},{"average":0.11134893755246315,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":47.79448938997684,"scaled_rad":-102.94068081336421},{"average":0.10639271939164835,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":40.89780380508445,"scaled_rad":-112.13626159322072},{"average":0.10282660660548068,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":35.93548014449327,"scaled_rad":-118.75269314067563},{"average":0.0998595765806266,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":31.80679320247415,"scaled_rad":-124.2576090633678},{"average":0.09699992655109757,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":27.827527864152646,"scaled_rad":-129.5632961811298},{"average":0.09982905097753217,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":31.764316160503736,"scaled_rad":-124.31424511932835},{"average":0.10328716112893413,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":36.57635180104606,"scaled_rad":-117.89819759860526},{"average":0.10713612206608436,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":41.932264828025055,"scaled_rad":-110.75698022929993},{"average":0.10680881775188819,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":41.47681374166313,"scaled_rad":-111.36424834444915},{"average":0.10047185945080582,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":32.658798160211404,"scaled_rad":-123.12160245305147},{"average":0.09610797254456396,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":26.586354425121456,"scaled_rad":-131.21819409983806},{"average":0.0965503424616758,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":27.201921805640826,"scaled_rad":-130.3974375924789},{"average":0.10097320576385337,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":33.35643248098664,"scaled_rad":-122.19142335868447},{"average":0.10759244563248153,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":42.56724901562601,"scaled_rad":-109.910334645832},{"average":0.11540244296966423,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":53.43503051871883,"scaled_rad":-95.41995930837489},{"average":0.11356292509896272,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":50.87530131181617,"scaled_rad":-98.8329315842451},{"average":0.11600831274262018,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":54.278111511905045,"scaled_rad":-94.29585131745993},{"average":0.11766164272212155,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":56.57875621048768,"scaled_rad":-91.22832505268309},{"average":0.11816933913250192,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":57.2852268300934,"scaled_rad":-90.28636422654213},{"average":0.11845043479981233,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":57.67637757725839,"scaled_rad":-89.76482989698881},{"average":0.12296637356000378,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":63.96040478088514,"scaled_rad":-81.38612695881982},{"average":0.11910701945023151,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":58.59002942769734,"scaled_rad":-88.54662742973689},{"average":0.11741833196699246,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":56.24018399209441,"scaled_rad":-91.67975467720746},{"average":0.1174455208465417,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":56.278017910532284,"scaled_rad":-91.62930945262362},{"average":0.1177316305272561,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":56.67614576662263,"scaled_rad":-91.09847231116983},{"average":0.11947904563641261,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":59.10771197357943,"scaled_rad":-87.85638403522744},{"average":0.12417900565612529,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":65.64780877032618,"scaled_rad":-79.13625497289843},{"average":0.128280972491993,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":71.35578501929432,"scaled_rad":-71.52561997427424},{"average":0.13999514780447234,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":87.65631526132807,"scaled_rad":-49.79157965156257},{"average":0.1528292702940539,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":105.5152764080442,"scaled_rad":-25.979631455941046},{"average":0.16187609639847353,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":118.10413209576912,"scaled_rad":-9.194490538974492},{"average":0.16923281425568792,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":128.34116532386855,"scaled_rad":4.454887098491383},{"average":0.17042154189013936,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":129.99530573393005,"scaled_rad":6.6604076452400705},{"average":0.15734591993347088,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":111.80029281560594,"scaled_rad":-17.599609579192077},{"average":0.13245331441342884,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":77.16168973356099,"scaled_rad":-63.78441368858533},{"average":0.12962427678244953,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":73.22502221497754,"scaled_rad":-69.03330371336328},{"average":0.13346360336197952,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":78.56752882336008,"scaled_rad":-61.90996156885322},{"average":0.1373366308583821,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":83.95693099203707,"scaled_rad":-54.72409201061724},{"average":0.140372898159779,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":88.18196311329895,"scaled_rad":-49.09071584893472},{"average":0.1434508251521115,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":92.46496560241476,"scaled_rad":-43.38004586344698},{"average":0.14630494265762903,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":96.43653231300034,"scaled_rad":-38.0846235826662},{"average":0.14699315633050408,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":97.39419663749871,"scaled_rad":-36.80773781666838},{"average":0.1448717291178313,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":94.44218443740753,"scaled_rad":-40.74375408345662},{"average":0.14188380779251258,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":90.28442679549404,"scaled_rad":-46.28743093934129},{"average":0.14269707045192145,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":91.41609951002893,"scaled_rad":-44.778533986628105},{"average":0.1476543014893624,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":98.31419453482087,"scaled_rad":-35.58107395357216},{"average":0.1533499434034814,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":106.23980438718371,"scaled_rad":-25.01359415042171},{"average":0.1570107898398202,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":111.3339519865807,"scaled_rad":-18.221397351225733},{"average":0.1608354925208981,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":116.65610912155894,"scaled_rad":-11.12518783792143},{"average":0.16390963223023783,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":120.93384152385156,"scaled_rad":-5.421544634864603},{"average":0.16612895601917502,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":124.02207894333907,"scaled_rad":-1.3038947422145668},{"average":0.1700105545139469,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":129.4234078430403,"scaled_rad":5.897877124053764},{"average":0.17262203689098982,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":133.05734248444674,"scaled_rad":10.743123312595628},{"average":0.17286181112762733,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":133.3909935602853,"scaled_rad":11.187991413713718},{"average":0.1729815226658296,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":133.55757477464599,"scaled_rad":11.410099699527962},{"average":0.1727142432612165,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":133.18564965813118,"scaled_rad":10.914199544174892},{"average":0.17041229030684285,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":129.9824319541471,"scaled_rad":6.64324260552948},{"average":0.16593258209740153,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":123.74882035148536,"scaled_rad":-1.6682395313528389},{"average":0.15889104094175208,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":113.95036237246649,"scaled_rad":-14.732850170044685},{"average":0.15399599746548137,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":107.1388026943373,"scaled_rad":-23.8149297408836},{"average":0.1507909926416375,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":102.67896863318276,"scaled_rad":-29.761375155756326},{"average":0.14771058379765198,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":98.39251259340315,"scaled_rad":-35.47664987546247},{"average":0.14505246387646376,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":94.69368079291593,"scaled_rad":-40.408425609445445},{"average":0.13893960325358082,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":86.18750201458664,"scaled_rad":-51.74999731388448},{"average":0.13901428970796198,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":86.291429843549,"scaled_rad":-51.61142687526801},{"average":0.13695706808465477,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":83.42876112033458,"scaled_rad":-55.42831850622055},{"average":0.13673707452313652,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":83.12263528501772,"scaled_rad":-55.83648628664304},{"average":0.13662683383002555,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":82.96923295800596,"scaled_rad":-56.041022722658724},{"average":0.1266805181574724,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":69.1287179330561,"scaled_rad":-74.49504275592521},{"average":0.11856340234002109,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":57.8335743714347,"scaled_rad":-89.5552341714204},{"average":0.11141892595383054,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":47.891879775782776,"scaled_rad":-102.81082696562297},{"average":0.10674307434759682,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":41.38533036180248,"scaled_rad":-111.48622618426336},{"average":0.10704072754140016,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":41.799521267931446,"scaled_rad":-110.93397164275808},{"average":0.11617179002513871,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":54.5055937132974,"scaled_rad":-93.99254171560347},{"average":0.12599866416413746,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":68.17990324123849,"scaled_rad":-75.76012901168201},{"average":0.13058017384359683,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":74.55517380805668,"scaled_rad":-67.25976825592444},{"average":0.12792140989222078,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":70.85544582552733,"scaled_rad":-72.1927388992969},{"average":0.12507276677619586,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":66.89149684722767,"scaled_rad":-77.47800420369644},{"average":0.12697931511149624,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":69.54450040645861,"scaled_rad":-73.94066612472186},{"average":0.12565502420842697,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":67.70172075369602,"scaled_rad":-76.39770566173864},{"average":0.12600024208090121,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":68.18209894680383,"scaled_rad":-75.75720140426156},{"average":0.10984727127913464,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":45.70488804384053,"scaled_rad":-105.72681594154595},{"average":0.10487186528431873,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":38.781502169762526,"scaled_rad":-114.9579971069833},{"average":0.10238352792373935,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":35.318926502545395,"scaled_rad":-119.5747646632728},{"average":0.10262262700710617,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":35.65163808789374,"scaled_rad":-119.13114921614168},{"average":0.10557586566858669,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":39.7611340472143,"scaled_rad":-113.65182127038094},{"average":0.11002732299394527,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":45.95543392898484,"scaled_rad":-105.39275476135356},{"average":0.11379264382319013,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":51.19495992298968,"scaled_rad":-98.40672010268042},{"average":0.11467468897873526,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":52.42234497992031,"scaled_rad":-96.77020669343959},{"average":0.11426314974986237,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":51.8496791739989,"scaled_rad":-97.5337611013348},{"average":0.11703196771575038,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":55.702549716201084,"scaled_rad":-92.39660037839856},{"average":0.1227626752752795,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":63.676954178360745,"scaled_rad":-81.764061095519},{"average":0.1292307893078127,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":72.67747581848934,"scaled_rad":-69.76336557534755},{"average":0.1330365514274445,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":77.97327674943122,"scaled_rad":-62.70229766742503},{"average":0.13436614186111023,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":79.82343081451495,"scaled_rad":-60.235425580646734},{"average":0.13483161663462676,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":80.47114910626074,"scaled_rad":-59.37180119165234},{"average":0.1385340213039968,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":85.62312589262659,"scaled_rad":-52.50249880983121},{"average":0.14424841312064432,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":93.57482664298679,"scaled_rad":-41.90023114268428},{"average":0.14916570730907405,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":100.41734867200965,"scaled_rad":-32.77686843732046},{"average":0.14477653457796433,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":94.30971916054548,"scaled_rad":-40.920374452606026},{"average":0.13460479709483572,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":80.15552477341427,"scaled_rad":-59.79263363544764},{"average":0.12544626530306607,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":67.41122818726635,"scaled_rad":-76.78502908364486},{"average":0.11834364777655157,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":57.52778110711128,"scaled_rad":-89.96295852385163},{"average":0.11439260225447398,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":52.02981515540943,"scaled_rad":-97.29357979278743},{"average":0.11126184763032353,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":47.67330186531166,"scaled_rad":-103.10226417958445},{"average":0.10843458635463776,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":43.73910618383244,"scaled_rad":-108.34785842155674},{"average":0.10396117651214203,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":37.51425889603991,"scaled_rad":-116.64765480528011},{"average":0.09999792767901107,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":31.999311771052533,"scaled_rad":-124.00091763859663},{"average":0.09395481106947592,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":23.590183307273804,"scaled_rad":-135.21308892363493},{"average":0.08784333086190924,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":15.08592540694138,"scaled_rad":-146.5520994574115},{"average":0.08499556679535422,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":11.123199645136808,"scaled_rad":-151.83573380648426},{"average":0.08472345359236991,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":10.744548192842325,"scaled_rad":-152.34060240954358},{"average":0.08499543809457057,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":11.123020555191491,"scaled_rad":-151.835972593078},{"average":0.08494463900926692,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":11.05233252089363,"scaled_rad":-151.93022330547515},{"average":0.08359374791624284,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":9.172538124093501,"scaled_rad":-154.436615834542},{"average":0.08173385050033764,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":6.584450335895089,"scaled_rad":-157.88739955213987},{"average":0.08184581404274777,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":6.7402500452538145,"scaled_rad":-157.67966660632825},{"average":0.08430055371838646,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":10.156073801659563,"scaled_rad":-153.1252349311206},{"average":0.09038047494502006,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":18.616416692237994,"scaled_rad":-141.84477774368267},{"average":0.10123519631531105,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":33.72099804307223,"scaled_rad":-121.70533594257036},{"average":0.112716496191747,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":49.69747704064423,"scaled_rad":-100.4033639458077},{"average":0.11989210502018409,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":59.68249310817197,"scaled_rad":-87.09000918910404},{"average":0.1330528683427378,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":77.9959820926671,"scaled_rad":-62.67202387644386},{"average":0.12854644605674112,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":71.72519727028116,"scaled_rad":-71.0330703062918},{"average":0.12573920150420495,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":67.8188552953022,"scaled_rad":-76.24152627293041},{"average":0.12534405269917526,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":67.26899712136586,"scaled_rad":-76.97467050484553},{"average":0.1250609705232267,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":66.87508210413759,"scaled_rad":-77.49989052781653},{"average":0.1259947876315518,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":68.17450896166173,"scaled_rad":-75.76732138445102},{"average":0.13007323777550028,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":73.84976122130955,"scaled_rad":-68.20031837158727},{"average":0.13621532390973945,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":82.39660793562179,"scaled_rad":-56.80452275250427},{"average":0.14141434852758217,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":89.63116399710917,"scaled_rad":-47.158448003854446},{"average":0.1440658592022195,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":93.3207988869812,"scaled_rad":-42.23893481735841},{"average":0.14320639771261962,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":92.12483949339403,"scaled_rad":-43.83354734214129},{"average":0.1398654920872553,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":87.47589650514833,"scaled_rad":-50.032137993135564},{"average":0.13556541141322798,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":81.49224053275606,"scaled_rad":-58.01034595632527},{"average":0.13186948145667743,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":76.3492734503862,"scaled_rad":-64.86763539948505},{"average":0.1312930601459693,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":75.54717063420753,"scaled_rad":-65.93710582105662},{"average":0.13472367079125053,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":80.32094011266804,"scaled_rad":-59.572079849775946},{"average":0.13943788035040988,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":86.88086545410442,"scaled_rad":-50.82551272786078},{"average":0.1441096228706769,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":93.38169698541004,"scaled_rad":-42.1577373527866},{"average":0.15110987710435927,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":103.1227033127187,"scaled_rad":-29.16972891637505},{"average":0.1563612543408446,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":110.43010918400229,"scaled_rad":-19.426521087996946},{"average":0.15923201123065645,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":114.42482996046644,"scaled_rad":-14.100226719378071},{"average":0.15851523810598575,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":113.42742453637955,"scaled_rad":-15.430100618160623},{"average":0.15658103081552682,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":110.7359329382557,"scaled_rad":-19.018756082325723},{"average":0.15489247671905018,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":108.38627311323965,"scaled_rad":-22.151635849013786},{"average":0.15584686886999877,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":109.71433059097978,"scaled_rad":-20.38089254536027},{"average":0.15768610593456833,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":112.27366905003005,"scaled_rad":-16.9684412666266},{"average":0.15865075286933716,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":113.6159962829453,"scaled_rad":-15.178671622739586},{"average":0.15908309513266922,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":114.21760996469085,"scaled_rad":-14.376520047078884},{"average":0.15808725743659344,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":112.83188010765623,"scaled_rad":-16.224159856458357},{"average":0.15569365344582553,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":109.50112798911833,"scaled_rad":-20.66516268117556},{"average":0.1530705535572088,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":105.85102732716892,"scaled_rad":-25.53196356377478},{"average":0.15086596700532395,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":102.78329709421801,"scaled_rad":-29.62227054104264},{"average":0.15273460213435242,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":105.38354360065418,"scaled_rad":-26.15527519912777},{"average":0.1552060866762725,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":108.82266820342235,"scaled_rad":-21.569775728770196},{"average":0.1578354603305459,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":112.48149894701133,"scaled_rad":-16.691334737318215},{"average":0.16020233726961244,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":115.77505979062657,"scaled_rad":-12.299920279164553},{"average":0.15975085001129408,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":115.14680543111812,"scaled_rad":-13.137592758509157},{"average":0.1544234481582928,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":107.73360964909817,"scaled_rad":-23.02185380120244},{"average":0.14621835494298113,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":96.31604362100485,"scaled_rad":-38.24527517199354},{"average":0.14072777826739735,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":88.67578651718524,"scaled_rad":-48.43228464375301},{"average":0.13748351081754942,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":84.16131765626984,"scaled_rad":-54.451576458306874},{"average":0.13566621241671706,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":81.6325073259336,"scaled_rad":-57.82332356542186},{"average":0.13492499453434648,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":80.60108648876665,"scaled_rad":-59.19855134831113},{"average":0.13192968368027255,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":76.43304615654544,"scaled_rad":-64.75593845793941},{"average":0.12845237451117664,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":71.59429466446518,"scaled_rad":-71.20760711404644},{"average":0.12374919179374977,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":65.04971341361475,"scaled_rad":-79.93371544851365},{"average":0.11779239773676507,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":56.76070466299408,"scaled_rad":-90.9857271160079},{"average":0.1101620044848297,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":46.14284615875273,"scaled_rad":-105.14287178832969},{"average":0.1023292196465102,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":35.243355351205075,"scaled_rad":-119.67552619839324},{"average":0.0949582442633896,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":24.98648246508353,"scaled_rad":-133.35135671322195},{"average":0.09287973768909066,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":22.09419526868722,"scaled_rad":-137.20773964175038},{"average":0.09728212012000081,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":28.220206365311356,"scaled_rad":-129.03972484625152},{"average":0.10446791035308259,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":38.219390079292225,"scaled_rad":-115.70747989427704},{"average":0.10511654055214262,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":39.12197313730833,"scaled_rad":-114.50403581692223},{"average":0.10074950685123289,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":33.04515056885788,"scaled_rad":-122.60646590818949},{"average":0.10076944826113647,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":33.072899475334964,"scaled_rad":-122.56946736622005},{"average":0.10169986190066421,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":34.367590331853535,"scaled_rad":-120.84321289086195},{"average":0.10238111430218697,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":35.31556789555361,"scaled_rad":-119.57924280592852},{"average":0.10133566104425366,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":33.86079690288972,"scaled_rad":-121.51893746281371},{"average":0.10296650589754185,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":36.13015305831357,"scaled_rad":-118.49312925558192},{"average":0.10455153433337434,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":38.33575467034054,"scaled_rad":-115.5523271062126},{"average":0.10610622948308358,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":40.49914685365378,"scaled_rad":-112.6678041951283},{"average":0.10778881370560711,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":42.840499468958676,"scaled_rad":-109.54600070805509},{"average":0.10854112321148285,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":43.88735454196009,"scaled_rad":-108.15019394405321},{"average":0.10873706720012706,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":44.16001487249459,"scaled_rad":-107.78664683667387},{"average":0.10570622517550647,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":39.94253214210355,"scaled_rad":-113.40995714386193},{"average":0.10217749852071081,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":35.03223209809705,"scaled_rad":-119.95702386920394},{"average":0.10196051355494899,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":34.73029278934355,"scaled_rad":-120.3596096142086},{"average":0.0950565078046254,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":25.12321832423507,"scaled_rad":-133.16904223435324},{"average":0.09005410196658238,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":18.16226157988121,"scaled_rad":-142.45031789349173},{"average":0.08917085013988182,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":16.933197413740036,"scaled_rad":-144.08907011501327},{"average":0.10404185587923798,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":37.626525993652386,"scaled_rad":-116.49796534179683},{"average":0.10232904277487385,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":35.24310923046841,"scaled_rad":-119.67585435937545},{"average":0.10200649638905185,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":34.79427890513179,"scaled_rad":-120.27429479315761},{"average":0.10797038894406585,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":43.093165370462486,"scaled_rad":-109.20911283938335},{"average":0.1084506879441619,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":43.761511896567804,"scaled_rad":-108.3179841379096},{"average":0.11112627131293525,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":47.48464446496211,"scaled_rad":-103.35380738005051},{"average":0.11043777718869227,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":46.52658988627322,"scaled_rad":-104.63121348496904},{"average":0.11061999963818138,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":46.780156396030875,"scaled_rad":-104.29312480529217},{"average":0.11236919940064542,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":49.214205986959236,"scaled_rad":-101.04772535072102},{"average":0.11610917202743161,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":54.418459404812815,"scaled_rad":-94.10872079358292},{"average":0.11649576458094804,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":54.956411368296436,"scaled_rad":-93.39145150893809},{"average":0.1170990965982041,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":55.795961019119275,"scaled_rad":-92.27205197450763},{"average":0.11884206928186594,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":58.22134549418355,"scaled_rad":-89.03820600775526},{"average":0.11786856184498622,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":56.86668867947825,"scaled_rad":-90.84441509402899},{"average":0.12171748513463229,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":62.22254931913474,"scaled_rad":-83.70326757448701},{"average":0.1262775958013562,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":68.5680426933688,"scaled_rad":-75.24260974217495},{"average":0.1293423379330409,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":72.83269816154684,"scaled_rad":-69.55640245127087},{"average":0.12830313030584642,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":71.38661810017116,"scaled_rad":-71.4845091997718},{"average":0.11427407956243246,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":51.86488824639076,"scaled_rad":-97.51348233814565},{"average":0.10184717469436515,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":34.57257929477288,"scaled_rad":-120.56989427363615},{"average":0.09358912659203313,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":23.08132538731008,"scaled_rad":-135.89156615025323},{"average":0.08760129636871296,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":14.749129134842034,"scaled_rad":-147.00116115354396},{"average":0.08370165903664802,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":9.322698799915244,"scaled_rad":-154.236401600113},{"average":0.08143478027822179,"rel_min":0.08059520477943156,"rel_max":0.22072955329547553,"scaled_dist":6.168287603987043,"scaled_rad":-158.44228319468394},{"average":0.07994277313959726,"rel_min":0.07994277313959726,"rel_max":0.22072955329547553,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.07775012695190792,"rel_min":0.07775012695190792,"rel_max":0.22072955329547553,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.07415072151913002,"rel_min":0.07415072151913002,"rel_max":0.22072955329547553,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.07233553336397426,"rel_min":0.07233553336397426,"rel_max":0.22072955329547553,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.07149311556222321,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.07399447070078012,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":8.268399188745285,"scaled_rad":-155.6421344150063},{"average":0.07671324291245993,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":11.820886700040482,"scaled_rad":-150.90548439994603},{"average":0.07999278044494855,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":16.106099001732858,"scaled_rad":-145.1918679976895},{"average":0.08394938480416829,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":21.27600161912787,"scaled_rad":-138.2986645078295},{"average":0.0901164097415114,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":29.334153375144727,"scaled_rad":-127.5544621664737},{"average":0.09425989576642889,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":34.748245182288414,"scaled_rad":-120.33567309028211},{"average":0.09566608288729742,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":36.58564154965201,"scaled_rad":-117.88581126713065},{"average":0.09475557592810777,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":35.39592635851796,"scaled_rad":-119.47209818864272},{"average":0.09407883620359499,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":34.51166345138621,"scaled_rad":-120.65111539815172},{"average":0.09638412911796344,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":37.523877660796316,"scaled_rad":-116.63482978560491},{"average":0.09929301733007798,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":41.32478050984593,"scaled_rad":-111.56695932020543},{"average":0.10167175275852627,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":44.43295848295272,"scaled_rad":-107.4227220227297},{"average":0.10186711423230885,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":44.688227825790385,"scaled_rad":-107.08236289894614},{"average":0.10012851943639636,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":42.4164905051173,"scaled_rad":-110.11134599317693},{"average":0.09877333056349727,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":40.645731069759634,"scaled_rad":-112.47235857365382},{"average":0.09742564500318623,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":38.88477584828495,"scaled_rad":-114.82029886895339},{"average":0.09584480981054427,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":36.81917533377672,"scaled_rad":-117.57443288829771},{"average":0.09581827984204752,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":36.78450991335096,"scaled_rad":-117.6206534488654},{"average":0.09861200628313481,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":40.43493647328911,"scaled_rad":-112.75341803561452},{"average":0.10107177101522126,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":43.64899149927545,"scaled_rad":-108.46801133429939},{"average":0.10084907912640849,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":43.35801083143006,"scaled_rad":-108.85598555809327},{"average":0.10249209825490047,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":45.50486407265124,"scaled_rad":-105.99351456979835},{"average":0.10467261333653344,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":48.35403715247534,"scaled_rad":-102.19461713003287},{"average":0.10625406879238934,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":50.42044813477922,"scaled_rad":-99.43940248696103},{"average":0.10341604689428055,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":46.71214285399789,"scaled_rad":-104.38380952800281},{"average":0.10318284624205495,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":46.40743089574764,"scaled_rad":-104.79009213900315},{"average":0.10012892113745923,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":42.41701538837269,"scaled_rad":-110.11064614883641},{"average":0.0973861667390688,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":38.833191519284426,"scaled_rad":-114.88907797428743},{"average":0.09814960759415824,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":39.83074257989426,"scaled_rad":-113.55900989347433},{"average":0.10407393283685011,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":47.57177044059552,"scaled_rad":-103.2376394125393},{"average":0.11058768175091224,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":56.08296956552008,"scaled_rad":-91.88937391263988},{"average":0.1130379382928843,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":59.2846007016008,"scaled_rad":-87.62053239786559},{"average":0.10962188169249618,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":54.82100556898085,"scaled_rad":-93.57199257469219},{"average":0.10433600350849888,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":47.914205450085994,"scaled_rad":-102.78105939988535},{"average":0.09797382258913583,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":39.601052857330394,"scaled_rad":-113.8652628568928},{"average":0.09547419544256987,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":36.334911551735864,"scaled_rad":-118.22011793101885},{"average":0.09452512533508638,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":35.09480776897153,"scaled_rad":-119.8735896413713},{"average":0.09347812419155639,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":33.72674226104728,"scaled_rad":-121.69767698527029},{"average":0.09241736053311689,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":32.340693943776216,"scaled_rad":-123.54574140829838},{"average":0.08897286165244465,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":27.8399346658601,"scaled_rad":-129.5467537788532},{"average":0.08244231720880817,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":19.306789638736685,"scaled_rad":-140.92428048168443},{"average":0.07633233389507653,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":11.32317139995722,"scaled_rad":-151.56910480005703},{"average":0.07327661840642895,"rel_min":0.07149311556222321,"rel_max":0.22072955329547553,"scaled_dist":7.330416484757913,"scaled_rad":-156.8927780203228},{"average":0.07142601580913449,"rel_min":0.07142601580913449,"rel_max":0.22072955329547553,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.07105688979260295,"rel_min":0.07105688979260295,"rel_max":0.22072955329547553,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.07044489106983165,"rel_min":0.07044489106983165,"rel_max":0.22072955329547553,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.07045917594176272,"rel_min":0.07044489106983165,"rel_max":0.22072955329547553,"scaled_dist":5.018535158447352,"scaled_rad":-159.97528645540353},{"average":0.07123297091876857,"rel_min":0.07044489106983165,"rel_max":0.22072955329547553,"scaled_dist":6.022563236106981,"scaled_rad":-158.63658235185736},{"average":0.07016404837853332,"rel_min":0.07016404837853332,"rel_max":0.22072955329547553,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.06875283627569566,"rel_min":0.06875283627569566,"rel_max":0.22072955329547553,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.06700784546332665,"rel_min":0.06700784546332665,"rel_max":0.22072955329547553,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.0661650062467148,"rel_min":0.0661650062467148,"rel_max":0.22072955329547553,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.0658051371955645,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.06690860908938377,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":6.388916122530299,"scaled_rad":-158.14811183662627},{"average":0.06988412097749049,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":10.134128354323519,"scaled_rad":-153.15449552756866},{"average":0.07426926464434742,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":15.653613510786174,"scaled_rad":-145.79518198561843},{"average":0.08100633392430864,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":24.133416389276366,"scaled_rad":-134.4887781476315},{"average":0.08890868034769997,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":34.07992831653477,"scaled_rad":-121.22676224462032},{"average":0.09982138138747024,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":47.81550826142135,"scaled_rad":-102.9126556514382},{"average":0.10296298673071645,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":51.76977872023616,"scaled_rad":-97.64029503968511},{"average":0.10426018514053159,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":53.40253420372833,"scaled_rad":-95.46328772836223},{"average":0.10522516458258087,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":54.617132883114394,"scaled_rad":-93.84382282251414},{"average":0.10909408488120284,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.486858890309705,"scaled_rad":-87.35085481292039},{"average":0.1177597251545808,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":70.3941122196942,"scaled_rad":-72.80785037374108},{"average":0.12750118428004392,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.65547538817154,"scaled_rad":-56.45936614910461},{"average":0.1354565413643125,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":92.66871068371039,"scaled_rad":-43.10838575505282},{"average":0.13930783754783413,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":97.51625359975012,"scaled_rad":-36.644995200333184},{"average":0.14071877742359928,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":99.29217299774075,"scaled_rad":-34.277102669678996},{"average":0.13971550900736726,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":98.02938081759093,"scaled_rad":-35.96082557654542},{"average":0.1428642577885075,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":101.99264256663876,"scaled_rad":-30.67647657781498},{"average":0.1378008413852917,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":95.61943023843914,"scaled_rad":-39.174093015414485},{"average":0.1323222521002248,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":88.72364881494111,"scaled_rad":-48.36846824674518},{"average":0.12850228513615147,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":83.91553930743834,"scaled_rad":-54.779280923415556},{"average":0.1255019409494854,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":80.13907120041915,"scaled_rad":-59.81457173277445},{"average":0.12417908947405626,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":78.4740267600236,"scaled_rad":-62.03463098663521},{"average":0.12357677689517127,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":77.71590898982765,"scaled_rad":-63.045454680229795},{"average":0.12062358235051834,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":73.99878711385468,"scaled_rad":-68.00161718152711},{"average":0.11864114506069867,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":71.50353632481486,"scaled_rad":-71.3286182335802},{"average":0.1157259704328678,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":67.83426929294545,"scaled_rad":-76.22097427607274},{"average":0.11181063962880002,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":62.90612738985871,"scaled_rad":-82.79183014685505},{"average":0.10717142197466255,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":57.06684482013518,"scaled_rad":-90.57754023981975},{"average":0.10075744334141655,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":48.99370912616959,"scaled_rad":-101.34172116510722},{"average":0.09531451983294731,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":42.142819441569955,"scaled_rad":-110.4762407445734},{"average":0.08904452226174632,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":34.250909585374636,"scaled_rad":-120.99878721950049},{"average":0.08989368171497647,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":35.31972815864002,"scaled_rad":-119.57369578847998},{"average":0.09071510480643702,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":36.35363557534771,"scaled_rad":-118.19515256620305},{"average":0.09012256303507192,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":35.60781610850732,"scaled_rad":-119.18957852199023},{"average":0.0854556999698345,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":29.73373685985996,"scaled_rad":-127.02168418685339},{"average":0.08371530228660592,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":27.54313607030651,"scaled_rad":-129.94248523959132},{"average":0.08543003809396377,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":29.70143681367766,"scaled_rad":-127.06475091509645},{"average":0.08900254908591446,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":34.1980788599586,"scaled_rad":-121.06922818672186},{"average":0.09496155371538655,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":41.69854865032191,"scaled_rad":-111.06860179957079},{"average":0.12007608820700129,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":73.30966811845387,"scaled_rad":-68.92044250872817},{"average":0.12691581099194318,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":81.91867873562822,"scaled_rad":-57.44176168582905},{"average":0.13377096349016784,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":90.54711039801856,"scaled_rad":-45.93718613597525},{"average":0.1362771541249828,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":93.70159815464015,"scaled_rad":-41.73120246047979},{"average":0.13910943480794222,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":97.26652837726503,"scaled_rad":-36.97796216364664},{"average":0.14058361161877225,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":99.12204273290068,"scaled_rad":-34.50394302279909},{"average":0.1397490783645923,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":98.07163383892659,"scaled_rad":-35.904488214764555},{"average":0.1357003135837009,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":92.97554148531935,"scaled_rad":-42.699278019574194},{"average":0.13016878570414195,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":86.01312740193578,"scaled_rad":-51.98249679741896},{"average":0.12518820265569608,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":79.74417561953496,"scaled_rad":-60.341099173953396},{"average":0.12370234920297801,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":77.8739641281896,"scaled_rad":-62.83471449574719},{"average":0.12412701707813754,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":78.40848436548198,"scaled_rad":-62.122020846024014},{"average":0.12736427391367688,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.48314928158577,"scaled_rad":-56.68913429121898},{"average":0.13036238664681227,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":86.25680870647828,"scaled_rad":-51.65758839136228},{"average":0.1319674762901123,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":88.27710020295652,"scaled_rad":-48.96386639605798},{"average":0.1336200634005806,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":90.35717573045439,"scaled_rad":-46.19043235939415},{"average":0.13368347614448978,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":90.43699197487588,"scaled_rad":-46.08401070016549},{"average":0.13233281737748992,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":88.73694710012147,"scaled_rad":-48.350737199838036},{"average":0.13106795436432284,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":87.14489147856911,"scaled_rad":-50.47347802857452},{"average":0.13021078963320867,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":86.06599683578105,"scaled_rad":-51.9120042189586},{"average":0.12971274094937854,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":85.43911376730304,"scaled_rad":-52.74784831026261},{"average":0.13012349678423749,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":85.95612322142188,"scaled_rad":-52.0585023714375},{"average":0.1301411179148338,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":85.97830255604698,"scaled_rad":-52.028929925270674},{"average":0.1310302497549627,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":87.09743350512426,"scaled_rad":-50.53675532650098},{"average":0.1324779858146716,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":88.91966746120498,"scaled_rad":-48.10711005172669},{"average":0.13188429177067368,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":88.17239765381107,"scaled_rad":-49.10346979491857},{"average":0.1326426174011045,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":89.1268856658146,"scaled_rad":-47.83081911224721},{"average":0.1337979799973736,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":90.58111548926078,"scaled_rad":-45.89184601431896},{"average":0.13333654632755557,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":90.00031894421205,"scaled_rad":-46.666241407717266},{"average":0.12834922656826495,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":83.72288781008736,"scaled_rad":-55.036149586550195},{"average":0.12022316273462458,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":73.49478763420565,"scaled_rad":-68.67361648772581},{"average":0.114926496480512,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":66.82798878123552,"scaled_rad":-77.56268162501931},{"average":0.11152574177702061,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":62.54753264736728,"scaled_rad":-83.26995647017696},{"average":0.11293352798201366,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.31948258840566,"scaled_rad":-80.90735654879245},{"average":0.11496155912084983,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":66.8721213656144,"scaled_rad":-77.50383817918079},{"average":0.11086778780180839,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":61.719380259278616,"scaled_rad":-84.37415965429518},{"average":0.10583617507642615,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":55.38619853008763,"scaled_rad":-92.81840195988315},{"average":0.10324566326133108,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":52.12557753398999,"scaled_rad":-97.16589662134668},{"average":0.10075578176549135,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":48.99161773661609,"scaled_rad":-101.34450968451188},{"average":0.09640427435727039,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":43.514469808842975,"scaled_rad":-108.64737358820938},{"average":0.09176221098274878,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":37.67160539263664,"scaled_rad":-116.43785947648448},{"average":0.0851305127201706,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":29.32443072670941,"scaled_rad":-127.56742569772078},{"average":0.07766134013421834,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":19.92314530684765,"scaled_rad":-140.10247292420314},{"average":0.07247394468053805,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":13.393883238722053,"scaled_rad":-148.80815568170394},{"average":0.07250490496284649,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":13.43285227408864,"scaled_rad":-148.7561969678818},{"average":0.08206084549602657,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":25.46070721703321,"scaled_rad":-132.71905704395573},{"average":0.09384815304180123,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":40.297135388198534,"scaled_rad":-112.93715281573529},{"average":0.10258100775944204,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":51.28899007972598,"scaled_rad":-98.28134656036536},{"average":0.10632488200220964,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":56.0013233304698,"scaled_rad":-91.9982355593736},{"average":0.10805149089580807,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":58.17456846979349,"scaled_rad":-89.10057537360868},{"average":0.10892710662338326,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.27668698135883,"scaled_rad":-87.6310840248549},{"average":0.11251011542271187,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":63.78654238993752,"scaled_rad":-81.61794348008331},{"average":0.1191675507042506,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":72.16611168302326,"scaled_rad":-70.44518442263566},{"average":0.12373793414493667,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":77.91875412228235,"scaled_rad":-62.77499450362353},{"average":0.12828737049632377,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":83.64503091488531,"scaled_rad":-55.13995878015291},{"average":0.137685814145405,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":95.47464794819356,"scaled_rad":-39.36713606907526},{"average":0.14378255874407095,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":103.1484880482147,"scaled_rad":-29.135349269047083},{"average":0.1466399031872432,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":106.74496548182505,"scaled_rad":-24.34004602423326},{"average":0.14705769734210647,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":107.27083391657065,"scaled_rad":-23.63888811123914},{"average":0.14566385084236244,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":105.51642957997595,"scaled_rad":-25.97809389336541},{"average":0.14212192937335869,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":101.05828990230039,"scaled_rad":-31.92228013026616},{"average":0.13591267499841947,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":93.24283618884377,"scaled_rad":-42.34288508154164},{"average":0.14309904651627653,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":102.28816604232793,"scaled_rad":-30.282445276896084},{"average":0.144674204926834,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":104.27078374579322,"scaled_rad":-27.638955005609034},{"average":0.14893482694068275,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":109.63353620028501,"scaled_rad":-20.48861839961998},{"average":0.15181563531338804,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":113.25954717272757,"scaled_rad":-15.653937103029904},{"average":0.1519777271391134,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":113.46356863565862,"scaled_rad":-15.3819084857885},{"average":0.15008590524226934,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":111.08237347500244,"scaled_rad":-18.556835366663393},{"average":0.14808779285190915,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":108.56739277713129,"scaled_rad":-21.91014296382494},{"average":0.14568228641185674,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":105.53963403116504,"scaled_rad":-25.947154625113285},{"average":0.13772275378103388,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":95.52114306580616,"scaled_rad":-39.305142578925114},{"average":0.12911703025303817,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":84.68930564337596,"scaled_rad":-53.74759247549872},{"average":0.12302516946581671,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":77.02161269081968,"scaled_rad":-63.97118307890709},{"average":0.12057042091199469,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":73.93187396502326,"scaled_rad":-68.09083471330233},{"average":0.12263640282642946,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":76.53228055977829,"scaled_rad":-64.62362592029562},{"average":0.1250905448373656,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":79.6212558432089,"scaled_rad":-60.50499220905479},{"average":0.1259741169285039,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":80.73338885690288,"scaled_rad":-59.02214819079617},{"average":0.15951463696280313,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":122.95011344646292,"scaled_rad":-2.733182071382771},{"average":0.1520819735737119,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":113.5947813602791,"scaled_rad":-15.206958186294514},{"average":0.14568054651629828,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":105.53744406238903,"scaled_rad":-25.950074583481296},{"average":0.14504695825669314,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":104.73996027169122,"scaled_rad":-27.01338630441171},{"average":0.14597306855378173,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":105.9056352019476,"scaled_rad":-25.45915306406988},{"average":0.14846075398084901,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":109.03683085522204,"scaled_rad":-21.28422552637062},{"average":0.14893772915920142,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":109.63718915974349,"scaled_rad":-20.483747787008667},{"average":0.14724212154451427,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":107.50296465732058,"scaled_rad":-23.32938045690591},{"average":0.13714663338163158,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":94.79599282343895,"scaled_rad":-40.27200956874806},{"average":0.1363051941984868,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":93.73689158656603,"scaled_rad":-41.684144551245296},{"average":0.14908917884787787,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":109.82781559575253,"scaled_rad":-20.2295792056633},{"average":0.1495026260524749,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":110.34821261854609,"scaled_rad":-19.53571650860522},{"average":0.1501653217495921,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":111.18233330908019,"scaled_rad":-18.423555587893077},{"average":0.17426735651896935,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":141.51904135255342,"scaled_rad":22.02538847007122},{"average":0.17127028677992776,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":137.74669472168915,"scaled_rad":16.995592962252232},{"average":0.17348800858358543,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":140.53809302158243,"scaled_rad":20.717457362109883},{"average":0.17244679498164198,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":139.22754005975597,"scaled_rad":18.970053413007946},{"average":0.17117724355096903,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":137.62958322884836,"scaled_rad":16.83944430513114},{"average":0.16914786550966765,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":135.0752491347404,"scaled_rad":13.433665512987204},{"average":0.16613186376684524,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":131.27907320162547,"scaled_rad":8.372097602167258},{"average":0.1625585850427218,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":126.78146482752184,"scaled_rad":2.375286436695802},{"average":0.16851992558831397,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":134.2848747848058,"scaled_rad":12.379833046407725},{"average":0.1818736119204471,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":151.0928699370138,"scaled_rad":34.79049324935173},{"average":0.18377643131184088,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":153.48790740536543,"scaled_rad":37.983876540487245},{"average":0.18136882557391112,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":150.45750631872502,"scaled_rad":33.94334175830002},{"average":0.17291650310812506,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":139.81875148381667,"scaled_rad":19.75833531175556},{"average":0.16465039313342458,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":129.4143782698032,"scaled_rad":5.885837693070897},{"average":0.15983655221671575,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":123.35530118957811,"scaled_rad":-2.1929317472291814},{"average":0.1587597493633815,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":121.9999528094702,"scaled_rad":-4.000062920706398},{"average":0.1580919666914577,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":121.15942925415685,"scaled_rad":-5.120760994457527},{"average":0.1557823571729975,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":118.25237388201143,"scaled_rad":-8.996834823984784},{"average":0.15204043076054186,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":113.54249232300474,"scaled_rad":-15.276676902660341},{"average":0.14745790583751334,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":107.77456766344507,"scaled_rad":-22.967243115406575},{"average":0.1447455082186872,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":104.36053165165208,"scaled_rad":-27.519291131130558},{"average":0.14282563160871933,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":101.94402463249831,"scaled_rad":-30.74130049000226},{"average":0.1387227983612224,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":96.77987747349951,"scaled_rad":-37.62683003533398},{"average":0.13164103419056442,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":87.8662146174928,"scaled_rad":-49.51171384334293},{"average":0.12204836438802828,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":75.79212934039735,"scaled_rad":-65.61049421280354},{"average":0.11448108744015642,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":66.26736208948589,"scaled_rad":-78.31018388068549},{"average":0.11346134033452553,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.98382854065014,"scaled_rad":-80.02156194579982},{"average":0.11334665032134193,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.83947071033643,"scaled_rad":-80.21403905288476},{"average":0.11468183373248748,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":66.52003709056068,"scaled_rad":-77.97328387925242},{"average":0.11608844130594569,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":68.29050351366767,"scaled_rad":-75.61266198177643},{"average":0.1161959177963143,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":68.42578183937951,"scaled_rad":-75.43229088082731},{"average":0.1116639271279842,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":62.72146354939193,"scaled_rad":-83.03804860081075},{"average":0.11497044954448939,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":66.883311548888,"scaled_rad":-77.488917934816},{"average":0.11875625646896393,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":71.64842455597172,"scaled_rad":-71.13543392537105},{"average":0.12177920383133733,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":75.45334278966484,"scaled_rad":-66.0622096137802},{"average":0.12406631708157292,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":78.33208259726446,"scaled_rad":-62.22388987031405},{"average":0.1253390703993853,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":79.93406957401935,"scaled_rad":-60.087907234640866},{"average":0.12630623970241422,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":81.15142458389083,"scaled_rad":-58.464767221478894},{"average":0.12708241554052316,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.12838026487034,"scaled_rad":-57.16215964683954},{"average":0.12728743215449634,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.3864302271112,"scaled_rad":-56.818093030518384},{"average":0.1289348380479075,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":84.45998426915457,"scaled_rad":-54.05335430779391},{"average":0.13123612716561636,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":87.35656693346377,"scaled_rad":-50.19124408871498},{"average":0.13231075613082133,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":88.70917908776633,"scaled_rad":-48.38776121631156},{"average":0.13161595741022164,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":87.83465101835237,"scaled_rad":-49.553798642196824},{"average":0.12857738010985137,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":84.01005972094137,"scaled_rad":-54.653253705411515},{"average":0.1246412375598436,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":79.05572252494689,"scaled_rad":-61.25903663340415},{"average":0.11959369726770996,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":72.70249311318456,"scaled_rad":-69.73000918242057},{"average":0.11511605969994874,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":67.06658789118038,"scaled_rad":-77.24454947842617},{"average":0.11281042837840234,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.16453978914589,"scaled_rad":-81.11394694780549},{"average":0.1109957339021762,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":61.88042323881537,"scaled_rad":-84.15943568157951},{"average":0.10808621754735054,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":58.21827815236809,"scaled_rad":-89.04229579684255},{"average":0.10469801661367856,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":53.95362317609921,"scaled_rad":-94.72850243186772},{"average":0.10009697647344681,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":48.16239381450793,"scaled_rad":-102.4501415806561},{"average":0.0939398418753489,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":40.41254213293181,"scaled_rad":-112.78327715609092},{"average":0.0869546795564526,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":31.62046993105013,"scaled_rad":-124.50604009193316},{"average":0.08014610688113928,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":23.050667280770146,"scaled_rad":-135.93244362563982},{"average":0.0751250869453078,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":16.730818465876325,"scaled_rad":-144.3589087121649},{"average":0.07343875025024703,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":14.608263068767176,"scaled_rad":-147.1889825749771},{"average":0.07385404636050337,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":15.13098726898466,"scaled_rad":-146.49201697468712},{"average":0.07454043428288556,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":15.994928849233771,"scaled_rad":-145.3400948676883},{"average":0.07681513675345067,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":18.858047477830944,"scaled_rad":-141.52260336289208},{"average":0.0809355186378539,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":24.044282725220675,"scaled_rad":-134.6076230330391},{"average":0.08536214962995682,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":29.61598707751201,"scaled_rad":-127.17868389665065},{"average":0.08838407796659029,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":33.41962268562365,"scaled_rad":-122.1071697525018},{"average":0.09081191737347886,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":36.47549145222244,"scaled_rad":-118.03267806370341},{"average":0.09304530380302069,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":39.286606476724415,"scaled_rad":-114.28452469770079},{"average":0.09632888742153296,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":43.41958190906016,"scaled_rad":-108.77389078791978},{"average":0.10079719008871922,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":49.043737494319274,"scaled_rad":-101.27501667424097},{"average":0.10610111641648819,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":55.71967444442498,"scaled_rad":-92.37376740743336},{"average":0.11201950420828176,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":63.16902070276734,"scaled_rad":-82.44130572964355},{"average":0.11731405226200135,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":69.83315342287713,"scaled_rad":-73.55579543616383},{"average":0.12070202700071954,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":74.09752369246709,"scaled_rad":-67.86996841004387},{"average":0.1231203376997713,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":77.1413988813268,"scaled_rad":-63.81146815823094},{"average":0.12630623151482404,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":81.15141427834877,"scaled_rad":-58.464780962201644},{"average":0.13155131900455547,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":87.75329206007963,"scaled_rad":-49.662277253227174},{"average":0.13101843336344865,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":87.08256046959349,"scaled_rad":-50.556586040542015},{"average":0.12772273703264084,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.93433902919077,"scaled_rad":-56.08754796107898},{"average":0.12607378107451256,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":80.85883395433125,"scaled_rad":-58.85488806089168},{"average":0.12557206623762052,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":80.22733637856594,"scaled_rad":-59.696884828578746},{"average":0.12578848119029043,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":80.49973318233003,"scaled_rad":-59.33368909022663},{"average":0.1260046643595694,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":80.77183824537065,"scaled_rad":-58.970882339505806},{"average":0.12613441997064376,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":80.93515881675937,"scaled_rad":-58.75312157765417},{"average":0.1266115559323962,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":81.53571949585674,"scaled_rad":-57.95237400552435},{"average":0.12776489278971961,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.98739956565947,"scaled_rad":-56.01680057912071},{"average":0.13073754111509747,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":86.72900749319786,"scaled_rad":-51.027990009069526},{"average":0.13338095241768105,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":90.05621192604447,"scaled_rad":-46.59171743194071},{"average":0.13668886471523273,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":94.2198093386472,"scaled_rad":-41.04025421513708},{"average":0.13674401341752393,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":94.2892238132504,"scaled_rad":-40.9477015823328},{"average":0.13320720671120595,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":89.83752197635445,"scaled_rad":-46.8833040315274},{"average":0.12648433142898588,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":81.37558477474852,"scaled_rad":-58.16588696700197},{"average":0.12075548365791927,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":74.16480842663853,"scaled_rad":-67.78025543114862},{"average":0.1178545607822432,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":70.51347976588033,"scaled_rad":-72.64869364549288},{"average":0.11784478499782536,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":70.50117519821136,"scaled_rad":-72.6650997357182},{"average":0.11861784511382178,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":71.4742091873928,"scaled_rad":-71.36772108347625},{"average":0.11859581645007185,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":71.44648218645018,"scaled_rad":-71.40469041806642},{"average":0.11801629328056094,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":70.71704895120243,"scaled_rad":-72.37726806506342},{"average":0.12418566272013273,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":78.48230036219155,"scaled_rad":-62.02359951707794},{"average":0.12652447918038756,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":81.42611787805407,"scaled_rad":-58.098509495927914},{"average":0.12757892331883386,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.7533238290155,"scaled_rad":-56.32890156131266},{"average":0.1257605784914982,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":80.4646126609722,"scaled_rad":-59.380516452037085},{"average":0.12119464096595745,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":74.7175661986105,"scaled_rad":-67.04324506851934},{"average":0.11462820659370032,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":66.45253777491536,"scaled_rad":-78.06328296677954},{"average":0.11037992249708622,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":61.10531478905944,"scaled_rad":-85.19291361458741},{"average":0.10996841446500619,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":60.58735856062442,"scaled_rad":-85.88352191916744},{"average":0.11081241884765293,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":61.6496885584343,"scaled_rad":-84.4670819220876},{"average":0.11193705355738076,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":63.065241858022006,"scaled_rad":-82.57967752263733},{"average":0.11079701220969718,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":61.630296557631574,"scaled_rad":-84.49293792315791},{"average":0.11038024039747558,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":61.105714923379686,"scaled_rad":-85.19238010216041},{"average":0.10762266947622243,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":57.63482025628225,"scaled_rad":-89.82023965829033},{"average":0.10614169623491812,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":55.77075138112122,"scaled_rad":-92.3056648251717},{"average":0.10567119733699185,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":55.178544630208215,"scaled_rad":-93.09527382638905},{"average":0.10306116639224916,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":51.89335532927454,"scaled_rad":-97.47552622763394},{"average":0.09798999952256494,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":45.510387657150524,"scaled_rad":-105.98614979046597},{"average":0.0906195704132078,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":36.23338850810891,"scaled_rad":-118.35548198918812},{"average":0.08250018159879681,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":26.01369003405378,"scaled_rad":-131.98174662126164},{"average":0.08295875535533064,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":26.590886868324418,"scaled_rad":-131.2121508422341},{"average":0.08821633913643114,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":33.20849346077674,"scaled_rad":-122.38867538563102},{"average":0.09486955127710528,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":41.58274717811706,"scaled_rad":-111.22300376251059},{"average":0.09491571830355074,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":41.640856612275314,"scaled_rad":-111.14552451696625},{"average":0.09414577512007181,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":40.67174583840243,"scaled_rad":-112.43767221546344},{"average":0.0931779440545347,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":39.45355788242506,"scaled_rad":-114.06192282343326},{"average":0.09471352015799711,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":41.38635419506091,"scaled_rad":-111.48486107325212},{"average":0.09488145351570881,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":41.59772826751611,"scaled_rad":-111.20302897664519},{"average":0.09867090563405302,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":46.367429401006746,"scaled_rad":-104.84342746532434},{"average":0.10173630991286878,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":50.22578723392302,"scaled_rad":-99.6989503547693},{"average":0.11291271475679111,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.29328543355709,"scaled_rad":-80.94228608859056},{"average":0.1134479249933083,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.96694294183226,"scaled_rad":-80.044076077557},{"average":0.11346293120773938,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.98583093823544,"scaled_rad":-80.01889208235275},{"average":0.11350581552352193,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":65.03980849573162,"scaled_rad":-79.94692200569116},{"average":0.11754554357281219,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":70.12452651140956,"scaled_rad":-73.16729798478727},{"average":0.12225518352752529,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":76.05244810239228,"scaled_rad":-65.26340253014364},{"average":0.12641820187026953,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":81.29234893449613,"scaled_rad":-58.2768680873385},{"average":0.13046184616746165,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":86.38199624640822,"scaled_rad":-51.4906716714557},{"average":0.13616571396676072,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":93.56133084623026,"scaled_rad":-41.918225538359636},{"average":0.13861751257939556,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":96.64735654508115,"scaled_rad":-37.80352460655847},{"average":0.14111959970734708,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":99.79667930667797,"scaled_rad":-33.60442759109603},{"average":0.14214154972490767,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":101.08298561294669,"scaled_rad":-31.889352516071085},{"average":0.14209085169735305,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":101.0191731060351,"scaled_rad":-31.97443585861987},{"average":0.14158587506801473,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":100.38356998291299,"scaled_rad":-32.821906689449335},{"average":0.1413175032457602,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":100.0457761950966,"scaled_rad":-33.272298406537885},{"average":0.1413318592377271,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":100.0638457705968,"scaled_rad":-33.24820563920426},{"average":0.14066447617282693,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":99.22382519197087,"scaled_rad":-34.36823307737217},{"average":0.17543836453838682,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":142.99296373054156,"scaled_rad":23.990618307388758},{"average":0.18484944627619712,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":154.83848805183067,"scaled_rad":39.78465073577422},{"average":0.18947673108469554,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":160.66275100774385,"scaled_rad":47.55033467699181},{"average":0.18438128986335242,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":154.24922973604754,"scaled_rad":38.99897298139675},{"average":0.17710276395241092,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":145.0879071481459,"scaled_rad":26.78387619752783},{"average":0.16683060034747182,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":132.15855776998626,"scaled_rad":9.544743693315041},{"average":0.1569668701018138,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":119.74329459634362,"scaled_rad":-7.008940538208492},{"average":0.14842214171379425,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":108.98823043273715,"scaled_rad":-21.349026089683775},{"average":0.14131650308348256,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":100.04451731254568,"scaled_rad":-33.273976916605776},{"average":0.13521334765565945,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":92.36260804100775,"scaled_rad":-43.51652261198967},{"average":0.1284838541777748,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":83.89234066016292,"scaled_rad":-54.81021245311611},{"average":0.12319113609399636,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":77.23051128349962,"scaled_rad":-63.69265162200051},{"average":0.12248646930823008,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":76.34356249464113,"scaled_rad":-64.87525000714515},{"average":0.12316218827142905,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":77.19407528752991,"scaled_rad":-63.74123294996012},{"average":0.1244055993827972,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":78.7591298658891,"scaled_rad":-61.654493512147866},{"average":0.12565544721898356,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":80.33228621007157,"scaled_rad":-59.556951719904575},{"average":0.12735839779286282,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.4757531358549,"scaled_rad":-56.698995818860126},{"average":0.1284495002793021,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":83.84910015378685,"scaled_rad":-54.867866461617524},{"average":0.13239512386404886,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":88.81537092242692,"scaled_rad":-48.24617210343078},{"average":0.13648725712740364,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":93.96605024362296,"scaled_rad":-41.3785996751694},{"average":0.14142950756071382,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":100.18675359533975,"scaled_rad":-33.084328539547},{"average":0.14717949383871373,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":107.4241365233276,"scaled_rad":-23.434484635563194},{"average":0.15257811787281583,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":114.21926742103582,"scaled_rad":-14.37431010528556},{"average":0.1572939402485962,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":120.15497069123003,"scaled_rad":-6.460039078359955},{"average":0.1622421990121858,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":126.38323659786222,"scaled_rad":1.844315463816315},{"average":0.16877380715341897,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":134.60443000045075,"scaled_rad":12.805906667267664},{"average":0.17531552491765492,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":142.83834816608933,"scaled_rad":23.784464221452453},{"average":0.1796696965013372,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":148.31884943369124,"scaled_rad":31.091799244921646},{"average":0.18086032649363687,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":149.81746956306262,"scaled_rad":33.08995941741682},{"average":0.18014755366072102,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":148.92031786859403,"scaled_rad":31.893757158125368},{"average":0.1750508756683526,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":142.50523990005158,"scaled_rad":23.340319866735427},{"average":0.17053260722652944,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":136.81819347873528,"scaled_rad":15.757591304980366},{"average":0.1670645572285226,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":132.45303421826594,"scaled_rad":9.937378957687912},{"average":0.16563734315331297,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":130.6566308386566,"scaled_rad":7.5421744515421665},{"average":0.16694062192153225,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":132.29703953730143,"scaled_rad":9.72938604973524},{"average":0.1512983999979585,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":112.60851430749013,"scaled_rad":-16.52198092334649},{"average":0.16392422628506734,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":128.5003678188079,"scaled_rad":4.667157091743832},{"average":0.15480877921656086,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":117.02695243919179,"scaled_rad":-10.630730081077616},{"average":0.14671690628172318,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":106.84188760553931,"scaled_rad":-24.210816525947592},{"average":0.14387519502409907,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":103.26508732326914,"scaled_rad":-28.979883568974486},{"average":0.14377003322089357,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":103.13272244405059,"scaled_rad":-29.156370074599238},{"average":0.14475196144326963,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":104.36865418537047,"scaled_rad":-27.5084610861727},{"average":0.14540516746348914,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":105.19083042556143,"scaled_rad":-26.412226099251427},{"average":0.1463992547020272,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":106.44206645662001,"scaled_rad":-24.743911391173327},{"average":0.14967555062062243,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":110.56586901924551,"scaled_rad":-19.24550797433932},{"average":0.15157437343537278,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":112.95587608331944,"scaled_rad":-16.058831888907406},{"average":0.1534311173136831,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":115.29291930339535,"scaled_rad":-12.942774262139523},{"average":0.15258632261785235,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":114.22959455553404,"scaled_rad":-14.360540592621277},{"average":0.14703593240009172,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":107.24343885645217,"scaled_rad":-23.67541485806376},{"average":0.1386252533249632,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":96.65709965351873,"scaled_rad":-37.79053379530836},{"average":0.12939711107304816,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":85.04183729253013,"scaled_rad":-53.277550276626485},{"average":0.12300553783831654,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":76.99690278737836,"scaled_rad":-64.00412961682886},{"average":0.11939978329839084,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":72.45841780879327,"scaled_rad":-70.05544292160899},{"average":0.11546472650916881,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":67.50544723633399,"scaled_rad":-76.65940368488802},{"average":0.11075969897276572,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":61.583331196168196,"scaled_rad":-84.55555840510907},{"average":0.10580522749891674,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":55.34724548597584,"scaled_rad":-92.87033935203222},{"average":0.10193797501072041,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":50.47961871556442,"scaled_rad":-99.36050837924745},{"average":0.09866970821251378,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":46.365922232504644,"scaled_rad":-104.84543702332714},{"average":0.09440608865782198,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":40.99939683841359,"scaled_rad":-112.00080421544854},{"average":0.08963753413540552,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":34.997320759769316,"scaled_rad":-120.00357232030757},{"average":0.08416867735412191,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":28.113789427544933,"scaled_rad":-129.18161409660675},{"average":0.07967982379920005,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":22.463766885938174,"scaled_rad":-136.71497748541577},{"average":0.07690291243116125,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":18.96852881824487,"scaled_rad":-141.37529490900684},{"average":0.07616274482316293,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":18.036895914967758,"scaled_rad":-142.61747211337632},{"average":0.07700109859204855,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":19.092113607879817,"scaled_rad":-141.21051518949358},{"average":0.07793369722768359,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":20.265955269038976,"scaled_rad":-139.6453929746147},{"average":0.07780154541752804,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":20.099618653874884,"scaled_rad":-139.86717512816682},{"average":0.07648752708649278,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":18.44569230060963,"scaled_rad":-142.07241026585382},{"average":0.07430948123261681,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":15.704233257563034,"scaled_rad":-145.72768898991595},{"average":0.0724364618703749,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":13.346704439112438,"scaled_rad":-148.8710607478501},{"average":0.0721899006820736,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":13.036363222865742,"scaled_rad":-149.28484903617903},{"average":0.07302074961544981,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":14.082134742210236,"scaled_rad":-147.89048701038635},{"average":0.0740520119009905,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":15.380162198068117,"scaled_rad":-146.15978373590917},{"average":0.07587325041521051,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":17.67251558698694,"scaled_rad":-143.10331255068408},{"average":0.08022063992952314,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":23.14448041107414,"scaled_rad":-135.80735945190114},{"average":0.08384577302810663,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":27.707356760841364,"scaled_rad":-129.7235243188782},{"average":0.08675574180007953,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":31.37007129493243,"scaled_rad":-124.8399049400901},{"average":0.08865952809180155,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":33.76632577974122,"scaled_rad":-121.64489896034505},{"average":0.09001997997387984,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":35.47869703589093,"scaled_rad":-119.36173728547875},{"average":0.09237737422391833,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":38.44589801253395,"scaled_rad":-115.4054693166214},{"average":0.09436880262070443,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":40.95246571276564,"scaled_rad":-112.06337904964582},{"average":0.09529823684423105,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":42.12232439708567,"scaled_rad":-110.50356747055244},{"average":0.09612285724271015,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":43.160256194741905,"scaled_rad":-109.11965840701079},{"average":0.09648539824168037,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":43.616578681402764,"scaled_rad":-108.51122842479631},{"average":0.09683753522231812,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":44.05980585600176,"scaled_rad":-107.92025885866433},{"average":0.09704511076427888,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":44.32107668536053,"scaled_rad":-107.57189775285264},{"average":0.09609212230368672,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":43.12157079407721,"scaled_rad":-109.1712389412304},{"average":0.09392263680603732,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":40.390886485615425,"scaled_rad":-112.81215135251277},{"average":0.09089848471329012,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":36.584451883948766,"scaled_rad":-117.8873974880683},{"average":0.08901215845179254,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":34.210173960223614,"scaled_rad":-121.05310138636852},{"average":0.08741146069601437,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":32.195410437245755,"scaled_rad":-123.73945275033898},{"average":0.08737465215320707,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":32.149080323322366,"scaled_rad":-123.80122623557017},{"average":0.08708112138403068,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":31.779619515075833,"scaled_rad":-124.29384064656556},{"average":0.08552654848078807,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":29.822912342871213,"scaled_rad":-126.90278354283839},{"average":0.08436895920352575,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":28.365879844387695,"scaled_rad":-128.8454935408164},{"average":0.0849126146553401,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":29.050167161858887,"scaled_rad":-127.93311045085481},{"average":0.0868629211643582,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":31.50497563448381,"scaled_rad":-124.66003248735493},{"average":0.08670566778331909,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":31.307044216863677,"scaled_rad":-124.92394104418176},{"average":0.08466263088505925,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":28.735518015959713,"scaled_rad":-128.35264264538705},{"average":0.08599571054860256,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":30.41343645473764,"scaled_rad":-126.11541806034981},{"average":0.08696173529793648,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":31.629350839715098,"scaled_rad":-124.49419888037987},{"average":0.08615119568254673,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":30.609142218118155,"scaled_rad":-125.85447704250913},{"average":0.08405589294886104,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":27.97183014456344,"scaled_rad":-129.37089314058207},{"average":0.08126553714839604,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":24.45966986157893,"scaled_rad":-134.05377351789477},{"average":0.07919793354706206,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":21.85722208472164,"scaled_rad":-137.5237038870378},{"average":0.08337307792893453,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":27.11238569908752,"scaled_rad":-130.51681906788332},{"average":0.09015111859412042,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":35.64375837089976,"scaled_rad":-119.14165550546699},{"average":0.09106232156112372,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":36.790669768332776,"scaled_rad":-117.61244030888963},{"average":0.09722262079661256,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":44.54450471030623,"scaled_rad":-107.2739937195917},{"average":0.097687473897106,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":45.12960521852929,"scaled_rad":-106.49385970862761},{"average":0.09916785275191069,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":46.99292595230406,"scaled_rad":-104.00943206359457},{"average":0.10186424402031795,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":50.38681511823339,"scaled_rad":-99.48424650902214},{"average":0.10547349997158226,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":54.92970724727428,"scaled_rad":-93.42705700363429},{"average":0.1064603183815905,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":56.1717941616281,"scaled_rad":-91.7709411178292},{"average":0.1118592465181698,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":62.967307826524,"scaled_rad":-82.71025623130133},{"average":0.11008449496855253,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":60.73346657097794,"scaled_rad":-85.68871123869609},{"average":0.11452054151212945,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":66.3170220735505,"scaled_rad":-78.24397056859934},{"average":0.12364744830412253,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":77.80486155839249,"scaled_rad":-62.92685125547668},{"average":0.13192644846902163,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":88.22545937503486,"scaled_rad":-49.03272083328686},{"average":0.1367753318830215,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":94.32864368602297,"scaled_rad":-40.89514175196936},{"average":0.1363345476841046,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":93.7738381818127,"scaled_rad":-41.634882424249724},{"average":0.1318582636015971,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":88.13963656232077,"scaled_rad":-49.14715125023898},{"average":0.1308455300981456,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":86.86493088232203,"scaled_rad":-50.84675882357064},{"average":0.12992670036370588,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":85.70841983825137,"scaled_rad":-52.388773548998174},{"average":0.1287941456573874,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":84.28289781085397,"scaled_rad":-54.28946958552804},{"average":0.12763631033154452,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.82555561636245,"scaled_rad":-56.23259251151673},{"average":0.12749286392115117,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.64500273302181,"scaled_rad":-56.47332968930425},{"average":0.12755278152391003,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.72041971913744,"scaled_rad":-56.37277370781675},{"average":0.12812529199512263,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":83.44102622324367,"scaled_rad":-55.41196503567511},{"average":0.12754725422783886,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.71346263153943,"scaled_rad":-56.3820498246141},{"average":0.12760443104125854,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.78542984560107,"scaled_rad":-56.28609353919856},{"average":0.12563325829261243,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":80.30435749004606,"scaled_rad":-59.59419001327193},{"average":0.12273634920153204,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":76.65808089284157,"scaled_rad":-64.45589214287791},{"average":0.11900697589273582,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":71.96399965295312,"scaled_rad":-70.71466712939583},{"average":0.11740251388106802,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":69.944498142788,"scaled_rad":-73.40733580961599},{"average":0.11861362017796073,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":71.46889135232429,"scaled_rad":-71.37481153023428},{"average":0.11878239044181264,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":71.6813188203736,"scaled_rad":-71.09157490616853},{"average":0.11663893761074502,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":68.9834012643143,"scaled_rad":-74.68879831424759},{"average":0.1131143048971355,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.54702256781101,"scaled_rad":-80.60396990958532},{"average":0.1114760773311913,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":62.48502108734004,"scaled_rad":-83.35330521687996},{"average":0.11162317159972834,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":62.67016545055148,"scaled_rad":-83.10644606593137},{"average":0.11228627934717249,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":63.504804779888815,"scaled_rad":-81.99359362681491},{"average":0.11333147129597922,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.82036520056437,"scaled_rad":-80.23951306591418},{"average":0.11359699891145753,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":65.1545790470434,"scaled_rad":-79.79389460394214},{"average":0.11175481382247912,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":62.835860659109485,"scaled_rad":-82.88551912118736},{"average":0.10933219086201418,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.78655772040417,"scaled_rad":-86.95125637279445},{"average":0.10766039032088583,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":57.682298664750924,"scaled_rad":-89.75693511366543},{"average":0.10691892907803094,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":56.74903749135744,"scaled_rad":-91.00128334485674},{"average":0.10724198005643466,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":57.155654746239335,"scaled_rad":-90.45912700501421},{"average":0.10810332304275923,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":58.23980846817411,"scaled_rad":-89.01358870910119},{"average":0.10891823060394333,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.26551492833866,"scaled_rad":-87.64598009554845},{"average":0.10924411807282053,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.67570241221513,"scaled_rad":-87.09906345037982},{"average":0.10924175859171166,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.67273258455457,"scaled_rad":-87.1030232205939},{"average":0.10919349040156692,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.611978461252576,"scaled_rad":-87.1840287183299},{"average":0.1089993420242848,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.36760811264594,"scaled_rad":-87.5098558498054},{"average":0.1093522645315171,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.81182401252009,"scaled_rad":-86.91756798330654},{"average":0.1184239392739229,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":71.23014411532633,"scaled_rad":-71.6931411795649},{"average":0.11718347843199488,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":69.66880297707753,"scaled_rad":-73.77492936389663},{"average":0.11542197251723493,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":67.45163371463752,"scaled_rad":-76.73115504714997},{"average":0.11243465864795854,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":63.69156658530121,"scaled_rad":-81.74457788626505},{"average":0.11160048227343294,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":62.64160688800218,"scaled_rad":-83.14452414933042},{"average":0.11275791279921957,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.09843956944884,"scaled_rad":-81.20208057406822},{"average":0.11705077776207809,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":69.50177552404466,"scaled_rad":-73.99763263460713},{"average":0.12259134918934791,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":76.4755725246469,"scaled_rad":-64.69923663380412},{"average":0.1275189621126209,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.6778519601786,"scaled_rad":-56.42953071976187},{"average":0.13141775964720592,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":87.58518379581245,"scaled_rad":-49.886421605583394},{"average":0.13408472079676417,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":90.94202990991026,"scaled_rad":-45.41062678678631},{"average":0.13538077061631992,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":92.57333968777243,"scaled_rad":-43.2355470829701},{"average":0.1363021778900885,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":93.73309502465231,"scaled_rad":-41.689206633796914},{"average":0.13702818962414334,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":94.64691023664184,"scaled_rad":-40.4707863511442},{"average":0.13794856502041633,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":95.80536677171435,"scaled_rad":-38.926177637714204},{"average":0.13895201882782526,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":97.06839229971473,"scaled_rad":-37.24214360038036},{"average":0.13828731095212743,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":96.23173892367434,"scaled_rad":-38.357681435100886},{"average":0.13685914632128177,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":94.43413910031722,"scaled_rad":-40.75448119957704},{"average":0.1360760528138349,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":93.44847629908605,"scaled_rad":-42.06869826788525},{"average":0.13778116315213282,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":95.59466167346673,"scaled_rad":-39.207117768711015},{"average":0.13378207308716153,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":90.56109380662713,"scaled_rad":-45.91854159116383},{"average":0.13815388260496372,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":96.06379555908458,"scaled_rad":-38.58160592122056},{"average":0.14170943056740384,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":100.53908660829333,"scaled_rad":-32.61455118894223},{"average":0.14287440594615453,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":102.00541583240917,"scaled_rad":-30.659445556787773},{"average":0.14280472010537817,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":101.9177037771149,"scaled_rad":-30.776394963846798},{"average":0.14156774515444634,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":100.36075025420375,"scaled_rad":-32.852332994394985},{"average":0.13904258648790296,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":97.18238784773578,"scaled_rad":-37.090149536352286},{"average":0.13699032212605008,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":94.59924723868403,"scaled_rad":-40.53433701508796},{"average":0.1353378111574178,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":92.51926754926257,"scaled_rad":-43.30764326764991},{"average":0.1346932529688698,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":91.70797614710035,"scaled_rad":-44.38936513719953},{"average":0.13515429998475645,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":92.28828601923772,"scaled_rad":-43.61561864101638},{"average":0.1360318762401642,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":93.39287220463376,"scaled_rad":-42.14283706048832},{"average":0.13521220369663914,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":92.36116816461784,"scaled_rad":-43.51844244717621},{"average":0.1323892589813295,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":88.80798892184195,"scaled_rad":-48.2560147708774},{"average":0.12837408073551831,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":83.75417121096383,"scaled_rad":-54.99443838538156},{"average":0.12564168538204443,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":80.314964484609,"scaled_rad":-59.58004735385467},{"average":0.12034876334306065,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":73.65287839395548,"scaled_rad":-68.46282880805937},{"average":0.11402952435603736,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":65.69898943642112,"scaled_rad":-79.06801408477185},{"average":0.10646650068778768,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":56.179575696255114,"scaled_rad":-91.76056573832652},{"average":0.09962288148863602,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":47.56566074708436,"scaled_rad":-103.2457856705542},{"average":0.09484665113458642,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":41.553923265762926,"scaled_rad":-111.26143564564943},{"average":0.09235417048629854,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":38.41669197161565,"scaled_rad":-115.44441070451246},{"average":0.09030286242863136,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":35.83475504188641,"scaled_rad":-118.88699327748479},{"average":0.08674528766696936,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":31.35691290448758,"scaled_rad":-124.85744946068323},{"average":0.0815587550320703,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":24.828736847634932,"scaled_rad":-133.56168420315342},{"average":0.07738608894652158,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":19.57669261106176,"scaled_rad":-140.56440985191765},{"average":0.07519072458050927,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":16.81343513267746,"scaled_rad":-144.24875315643004},{"average":0.07704116887050644,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":19.14254919767251,"scaled_rad":-141.14326773643666},{"average":0.08175332924359177,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":25.073643184556143,"scaled_rad":-133.2351424205918},{"average":0.08692229130080723,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":31.579703536637677,"scaled_rad":-124.56039528448309},{"average":0.0888379322827056,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":33.99087926267224,"scaled_rad":-121.34549431643701},{"average":0.0883598719377113,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":33.38915508245155,"scaled_rad":-122.14779322339794},{"average":0.08306870252817257,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":26.729274988440686,"scaled_rad":-131.02763334874575},{"average":0.0839679568740018,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":27.861146915739823,"scaled_rad":-129.51847077901357},{"average":0.08589539706606317,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":30.287174051511503,"scaled_rad":-126.283767931318},{"average":0.08821190700945276,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":33.20291483874582,"scaled_rad":-122.39611354833892},{"average":0.09112123856884197,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":36.86482732718811,"scaled_rad":-117.51356356374919},{"average":0.09318860292864921,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":39.46697397592829,"scaled_rad":-114.04403469876229},{"average":0.09429320070778041,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":40.85730722586402,"scaled_rad":-112.19025703218131},{"average":0.09407798531402475,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":40.586420280869575,"scaled_rad":-112.55143962550724},{"average":0.09398872741389666,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":40.474073299269506,"scaled_rad":-112.701235600974},{"average":0.09320949346095918,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":39.49326843552991,"scaled_rad":-114.00897541929345},{"average":0.09109790614065268,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":36.83545930624312,"scaled_rad":-117.55272092500917},{"average":0.08747471434742037,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":32.27502643538652,"scaled_rad":-123.63329808615131},{"average":0.08464891133349269,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":28.71824951417782,"scaled_rad":-128.37566731442956},{"average":0.08344461447531773,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":27.202427197360638,"scaled_rad":-130.39676373685248},{"average":0.08329769080528783,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":27.017497562787387,"scaled_rad":-130.64333658295016},{"average":0.08534153819212142,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":29.590043908067948,"scaled_rad":-127.21327478924273},{"average":0.08462886389368914,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":28.69301623681519,"scaled_rad":-128.4093116842464},{"average":0.08510539154984037,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":29.292811254855245,"scaled_rad":-127.60958499352634},{"average":0.08499871311202198,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":29.158537420567104,"scaled_rad":-127.7886167725772},{"average":0.08562672261625576,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":29.948999352962648,"scaled_rad":-126.73466752938313},{"average":0.08663616308641303,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":31.219560163427314,"scaled_rad":-125.04058644876358},{"average":0.0883615743204425,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":33.391297834646075,"scaled_rad":-122.14493622047189},{"average":0.09010040518693267,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":35.579926505977745,"scaled_rad":-119.22676465869634},{"average":0.09176680948963575,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":37.677393433447335,"scaled_rad":-116.43014208873689},{"average":0.09483438437460309,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":41.53848336121486,"scaled_rad":-111.28202218504686},{"average":0.09802056491390881,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":45.54885965183089,"scaled_rad":-105.93485379755882},{"average":0.10014182668608657,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":48.21884580370963,"scaled_rad":-102.3748722617205},{"average":0.1019493346085151,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":50.49391679475509,"scaled_rad":-99.34144427365987},{"average":0.10375574745956673,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":52.76760944322633,"scaled_rad":-96.30985407569823},{"average":0.10545395755496315,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":54.90510963163267,"scaled_rad":-93.45985382448978},{"average":0.10864327249292749,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":58.91943112180999,"scaled_rad":-88.10742517092001},{"average":0.11091957200058855,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":61.78455990633708,"scaled_rad":-84.28725345821722},{"average":0.11285737059772649,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.22362494175545,"scaled_rad":-81.03516674432608},{"average":0.11408776934478969,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":65.77230113958984,"scaled_rad":-78.97026514721355},{"average":0.11456662048085907,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":66.37502067137306,"scaled_rad":-78.16663910483591},{"average":0.11436266390892637,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":66.11830496104096,"scaled_rad":-78.50892671861206},{"average":0.1128115064416065,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.16589672390222,"scaled_rad":-81.11213770146371},{"average":0.11172681258650452,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":62.8006161111389,"scaled_rad":-82.9325118518148},{"average":0.11100241553022556,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":61.88883325902024,"scaled_rad":-84.14822232130635},{"average":0.1097133648673109,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":60.26633316770955,"scaled_rad":-86.31155577638727},{"average":0.10840693426661793,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":58.62195732593883,"scaled_rad":-88.50405689874822},{"average":0.1074463723048907,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":57.41291883315526,"scaled_rad":-90.11610822245966},{"average":0.10773523389682095,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":57.77650264934388,"scaled_rad":-89.63132980087482},{"average":0.10939795532746961,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.869334025693185,"scaled_rad":-86.84088796574241},{"average":0.11128602535355576,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":62.24580678805857,"scaled_rad":-83.67225761592191},{"average":0.11311729701813478,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.55078868557055,"scaled_rad":-80.59894841923928},{"average":0.11304388454512407,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.45838599916729,"scaled_rad":-80.72215200111029},{"average":0.1114118005176097,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":62.404117257175976,"scaled_rad":-83.46117699043204},{"average":0.1096428304887082,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":60.17755307627027,"scaled_rad":-86.42992923163963},{"average":0.107091214286893,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":56.96588914440118,"scaled_rad":-90.71214780746509},{"average":0.10511619790513127,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":54.47997889126737,"scaled_rad":-94.0266948116435},{"average":0.10426762393367266,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":53.41189725120028,"scaled_rad":-95.45080366506629},{"average":0.10298880731294814,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":51.80227852667037,"scaled_rad":-97.59696196443952},{"average":0.10244332206215531,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":51.1156880809397,"scaled_rad":-98.51241589208041},{"average":0.10161389558273441,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":50.07170697351522,"scaled_rad":-99.90439070197971},{"average":0.10087630760044063,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":49.14332098912311,"scaled_rad":-101.14223868116918},{"average":0.10020695352230315,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":48.30081953891508,"scaled_rad":-102.26557394811323},{"average":0.09887882365290261,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":46.629131298592235,"scaled_rad":-104.49449160187703},{"average":0.09742126045484734,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":44.7945281367673,"scaled_rad":-106.94062915097695},{"average":0.09592592746593687,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":42.912384958964424,"scaled_rad":-109.45015338804744},{"average":0.09344585926469173,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":39.79077694250485,"scaled_rad":-113.61229740999354},{"average":0.08847401331868189,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":33.532822361306486,"scaled_rad":-121.95623685159134},{"average":0.08581584539820308,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":30.187044093799013,"scaled_rad":-126.41727454160132},{"average":0.08465518507120078,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":28.72614613166314,"scaled_rad":-128.36513849111583},{"average":0.08399457519895409,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":27.89465082362191,"scaled_rad":-129.47379890183745},{"average":0.08330281510446717,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":27.023947406944473,"scaled_rad":-130.6347367907407},{"average":0.08309043406157549,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":26.75662799786456,"scaled_rad":-130.99116266951393},{"average":0.08342032962461676,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":27.171860382871987,"scaled_rad":-130.437519489504},{"average":0.0866252078994572,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":31.205771107382013,"scaled_rad":-125.05897185682397},{"average":0.0867165429503052,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":31.320732553509878,"scaled_rad":-124.90568992865349},{"average":0.08834940319195218,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":33.37597829938262,"scaled_rad":-122.16536226748983},{"average":0.09201061725131139,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":37.98426897136183,"scaled_rad":-116.02097470485089},{"average":0.09670968553303586,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":43.898884227005816,"scaled_rad":-108.13482103065891},{"average":0.10581546202825576,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":55.36012746592031,"scaled_rad":-92.85316337877292},{"average":0.11553032528298919,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":67.58801498915821,"scaled_rad":-76.54931334778905},{"average":0.1215066800820939,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":75.1103230614627,"scaled_rad":-66.51956925138307},{"average":0.12247969178006579,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":76.33503176704308,"scaled_rad":-64.88662431060924},{"average":0.12000537358321153,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":73.22066115630977,"scaled_rad":-69.03911845825364},{"average":0.11574711895771209,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":67.86088848215044,"scaled_rad":-76.18548202379941},{"average":0.11174922084535381,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":62.828820900194195,"scaled_rad":-82.89490546640775},{"average":0.10963630051201372,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":60.169333936334304,"scaled_rad":-86.4408880848876},{"average":0.10904789767471881,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.4287240559749,"scaled_rad":-87.4283679253668},{"average":0.11198601712776744,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":63.12687124134171,"scaled_rad":-82.49750501154439},{"average":0.11803202026637954,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":70.73684416690716,"scaled_rad":-72.35087444412378},{"average":0.12185244286513847,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":75.54552717189941,"scaled_rad":-65.93929710413411},{"average":0.12440077984581263,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":78.7530636192919,"scaled_rad":-61.662581840944156},{"average":0.12702144153662712,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.05163360957192,"scaled_rad":-57.264488520570765},{"average":0.12778158885563992,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":83.0084145414549,"scaled_rad":-55.98878061139348},{"average":0.12751518560896727,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.6730985569966,"scaled_rad":-56.43586859067119},{"average":0.12682976372824634,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":81.81037291241914,"scaled_rad":-57.5861694501078},{"average":0.1256872195898487,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":80.37227740367855,"scaled_rad":-59.5036301284286},{"average":0.12736968502744286,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.48996013303791,"scaled_rad":-56.68005315594945},{"average":0.13516802955418825,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":92.30556713028915,"scaled_rad":-43.592577159614464},{"average":0.14469300647876054,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":104.29444885112633,"scaled_rad":-27.607401531831556},{"average":0.15155186711395222,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":112.92754786503409,"scaled_rad":-16.09660284662121},{"average":0.1568581982641814,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":119.6065117129752,"scaled_rad":-7.191317716033069},{"average":0.16101441605097075,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":124.83785283290077,"scaled_rad":-0.21619622279899886},{"average":0.16129658438820765,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":125.19301199468009,"scaled_rad":0.2573493262401314},{"average":0.1583055968253748,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":121.42832086699964,"scaled_rad":-4.762238844000478},{"average":0.1485912011736362,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":109.20102190550229,"scaled_rad":-21.06530412599693},{"average":0.1375207888178558,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":95.26693415018676,"scaled_rad":-39.64408779975099},{"average":0.13157449436281785,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":87.78246238051672,"scaled_rad":-49.62338349264438},{"average":0.1318703587553822,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":88.15486046987174,"scaled_rad":-49.126852706837695},{"average":0.1372212463706304,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":94.88990657325995,"scaled_rad":-40.146791235653396},{"average":0.14559813959096543,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":105.43372025406728,"scaled_rad":-26.088372994576957},{"average":0.15005165016916674,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":111.03925735797479,"scaled_rad":-18.61432352270029},{"average":0.1537221447805833,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":115.65922925939955,"scaled_rad":-12.454360987467254},{"average":0.15546906260139953,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":117.85803680461878,"scaled_rad":-9.52261759384163},{"average":0.15658504194779996,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":119.26269578624593,"scaled_rad":-7.649738951672106},{"average":0.15796727864533344,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":121.00248711678226,"scaled_rad":-5.330017177623631},{"average":0.1601472652428788,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":123.74638893176281,"scaled_rad":-1.671481424316255},{"average":0.16297751182291872,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":127.30875887319195,"scaled_rad":3.0783451642559214},{"average":0.16359550362186773,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":128.08661173737403,"scaled_rad":4.115482316498742},{"average":0.16389195736894677,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":128.4597516344651,"scaled_rad":4.613002179286809},{"average":0.1640033424584144,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":128.59994962902897,"scaled_rad":4.799932838705303},{"average":0.1631992264378909,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":127.58782624686977,"scaled_rad":3.450434995826356},{"average":0.16188885412101164,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":125.93848905248805,"scaled_rad":1.2513187366507452},{"average":0.16118209003530082,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":125.04890043771005,"scaled_rad":0.06520058361340375},{"average":0.1608140949218601,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":124.58571297554359,"scaled_rad":-0.5523826992752277},{"average":0.1588788796007921,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":122.14989945364594,"scaled_rad":-3.8001340618054087},{"average":0.15501804809687977,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":117.29035463678905,"scaled_rad":-10.279527150947956},{"average":0.15288493119146146,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":114.60544668600923,"scaled_rad":-13.859404418654378},{"average":0.15238793368834228,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":113.97988671587682,"scaled_rad":-14.693484378830902},{"average":0.152237000819891,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":113.78991079026792,"scaled_rad":-14.9467856129761},{"average":0.15158124560108654,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":112.96452592914697,"scaled_rad":-16.04729876113737},{"average":0.15028648905539144,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":111.33484396702345,"scaled_rad":-18.22020804396874},{"average":0.14853881542564285,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":109.13508510150547,"scaled_rad":-21.153219864659377},{"average":0.13230986156606975,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":88.70805311852953,"scaled_rad":-48.3892625086273},{"average":0.12978279603332252,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":85.5272905809582,"scaled_rad":-52.630279225389074},{"average":0.12735385217100428,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.47003166028166,"scaled_rad":-56.70662445295777},{"average":0.1249087313369022,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":79.39241113633263,"scaled_rad":-60.81011848488983},{"average":0.12424832072058159,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":78.56116662740082,"scaled_rad":-61.91844449679891},{"average":0.12534452123341686,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":79.94093042050767,"scaled_rad":-60.07875943932311},{"average":0.12733037436474068,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.4404806551099,"scaled_rad":-56.74602579318682},{"average":0.12953001752074744,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":85.20912375359154,"scaled_rad":-53.054501661877936},{"average":0.131107963246833,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":87.19524979061497,"scaled_rad":-50.40633361251339},{"average":0.13111738092829323,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":87.20710362186362,"scaled_rad":-50.390528504181844},{"average":0.12930185639390943,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":84.921942295346,"scaled_rad":-53.437410272872},{"average":0.12631677792708634,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":81.16468881855954,"scaled_rad":-58.44708157525393},{"average":0.12390695707042897,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":78.13149961005455,"scaled_rad":-62.4913338532606},{"average":0.12364199223189841,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":77.79799411870489,"scaled_rad":-62.936007841726806},{"average":0.12604835272292325,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":80.82682784009346,"scaled_rad":-58.89756287987538},{"average":0.13007940746581734,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":85.90062895325963,"scaled_rad":-52.13249472898717},{"average":0.13396413824958367,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":90.79025527494869,"scaled_rad":-45.61299296673508},{"average":0.13726775860974946,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":94.94845051911783,"scaled_rad":-40.068732641176226},{"average":0.13865237245387577,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":96.69123391247595,"scaled_rad":-37.74502145003207},{"average":0.13574391834946012,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":93.03042585756423,"scaled_rad":-42.62609885658104},{"average":0.13191227689525462,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":88.20762192272014,"scaled_rad":-49.05650410303981},{"average":0.12892293442182526,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":84.44500143336617,"scaled_rad":-54.07333142217844},{"average":0.12699014927984836,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.01224672514486,"scaled_rad":-57.31700436647351},{"average":0.12692322558047506,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":81.92801131728392,"scaled_rad":-57.42931824362144},{"average":0.12870994512608583,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":84.17691642962858,"scaled_rad":-54.430778093828565},{"average":0.13219038752187043,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":88.55767373221096,"scaled_rad":-48.58976835705205},{"average":0.13655241226767195,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":94.048059604524,"scaled_rad":-41.26925386063468},{"average":0.14103222056501336,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":99.68669707673632,"scaled_rad":-33.751070564351565},{"average":0.14423335494061618,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":103.71589543653513,"scaled_rad":-28.37880608461981},{"average":0.1441760366762098,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":103.64375018118663,"scaled_rad":-28.474999758417823},{"average":0.14284024570889753,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":101.96241908320201,"scaled_rad":-30.716774555730666},{"average":0.14032914778375524,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":98.80175462675531,"scaled_rad":-34.930993830992904},{"average":0.1350400692894201,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":92.14450632232912,"scaled_rad":-43.80732490356117},{"average":0.12914646638880123,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":84.7263562685666,"scaled_rad":-53.698191641911194},{"average":0.12557744410773483,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":80.23410538695526,"scaled_rad":-59.68785948405964},{"average":0.12631460683262763,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":81.16195610908672,"scaled_rad":-58.45072518788437},{"average":0.1349406823690023,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":92.01941016273493,"scaled_rad":-43.974119783020086},{"average":0.14247990123396204,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":101.50886131366937,"scaled_rad":-31.32151824844084},{"average":0.1463631268066039,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":106.39659305878583,"scaled_rad":-24.804542588285585},{"average":0.14769307677814406,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":108.07057222216753,"scaled_rad":-22.572570370443287},{"average":0.14773059426887752,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":108.11779467345829,"scaled_rad":-22.50960710205561},{"average":0.15286924816401942,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":114.58570679975898,"scaled_rad":-13.885724266988007},{"average":0.1599233979650163,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":123.46461204802723,"scaled_rad":-2.0471839359636874},{"average":0.16604763671582265,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":131.1730584406028,"scaled_rad":8.230744587470411},{"average":0.16907717126646274,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":134.9862678251961,"scaled_rad":13.315023766928135},{"average":0.170754839396012,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":137.0979122870421,"scaled_rad":16.13054971605615},{"average":0.1722162665180836,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":138.93737888616218,"scaled_rad":18.58317184821624},{"average":0.17413243513672247,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":141.34921873710994,"scaled_rad":21.79895831614658},{"average":0.17571469259992042,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":143.34077186405295,"scaled_rad":24.454362485403948},{"average":0.17617187063161857,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":143.91621192976635,"scaled_rad":25.22161590635511},{"average":0.1770808041813197,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":145.06026686089749,"scaled_rad":26.747022481196666},{"average":0.17220936343073845,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":138.92869011994836,"scaled_rad":18.57158682659781},{"average":0.17221450782323566,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":138.9351652551285,"scaled_rad":18.580220340171365},{"average":0.1826355540996355,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":152.0519100204434,"scaled_rad":36.069213360591164},{"average":0.17960716436808483,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":148.2401415947903,"scaled_rad":30.986855459720374},{"average":0.1750710624880318,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":142.53064861183856,"scaled_rad":23.374198149118058},{"average":0.16759546229304909,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":133.12127289999768,"scaled_rad":10.82836386666358},{"average":0.15977119176243396,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":123.27303340438452,"scaled_rad":-2.3026221274872967},{"average":0.12167204309078973,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":75.31846189139955,"scaled_rad":-66.24205081146727},{"average":0.1178751325801623,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":70.53937304142212,"scaled_rad":-72.61416927810384},{"average":0.11469246724377906,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":66.53342126042917,"scaled_rad":-77.95543831942778},{"average":0.11544155321026327,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":67.47627950796465,"scaled_rad":-76.69829398938046},{"average":0.11722635993437734,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":69.7227769934081,"scaled_rad":-73.7029640087892},{"average":0.12039587820283301,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":73.71218084535013,"scaled_rad":-68.38375887286648},{"average":0.12231872855585622,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":76.13243085034429,"scaled_rad":-65.15675886620761},{"average":0.12312178804639581,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":77.14322440114412,"scaled_rad":-63.809034131807834},{"average":0.12270331218982884,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":76.61649792326001,"scaled_rad":-64.51133610231999},{"average":0.1260292108665995,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":80.80273440100167,"scaled_rad":-58.9296874653311},{"average":0.1253491403617975,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":79.94674441714488,"scaled_rad":-60.071007443806835},{"average":0.11941308460158247,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":72.47515987042347,"scaled_rad":-70.0331201727687},{"average":0.11569567500934697,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":67.79613710090445,"scaled_rad":-76.27181719879407},{"average":0.11168082981376762,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":62.742738593124486,"scaled_rad":-83.00968187583402},{"average":0.11492212451120877,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":66.82248587836462,"scaled_rad":-77.57001882884718},{"average":0.11864386049819586,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":71.50695418705557,"scaled_rad":-71.32406108392591},{"average":0.12090080940396888,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":74.34772678897981,"scaled_rad":-67.53636428136025},{"average":0.12360182770187171,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":77.74743989650821,"scaled_rad":-63.00341347132239},{"average":0.12555263744397446,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":80.2028817776944,"scaled_rad":-59.72949096307414},{"average":0.12696400008683564,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":81.97933330345289,"scaled_rad":-57.36088892872948},{"average":0.12814789613381325,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":83.46947756200379,"scaled_rad":-55.374029917328286},{"average":0.13504128224427694,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":92.14603304228093,"scaled_rad":-43.805289276958746},{"average":0.13244181652927267,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":88.8741419667068,"scaled_rad":-48.1678107110576},{"average":0.1274842644315974,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.63417874216745,"scaled_rad":-56.48776167711006},{"average":0.12258214294986494,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":76.46398483082581,"scaled_rad":-64.71468689223227},{"average":0.11868125886047229,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":71.55402669394306,"scaled_rad":-71.26129774140927},{"average":0.11478106254072169,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":66.64493423778111,"scaled_rad":-77.80675434962518},{"average":0.1098779749197578,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":60.47352426795837,"scaled_rad":-86.03530097605551},{"average":0.10359361532746603,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":52.56353724753545,"scaled_rad":-96.5819503366194},{"average":0.10193799526379177,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":50.47964420766576,"scaled_rad":-99.36047438977899},{"average":0.10810426999762893,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":58.241000379715494,"scaled_rad":-89.01199949371268},{"average":0.11816675017557157,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":70.90642577937231,"scaled_rad":-72.12476562750358},{"average":0.11725228922373951,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":69.75541362714802,"scaled_rad":-73.65944849713598},{"average":0.11794808748857066,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":70.63119980119158,"scaled_rad":-72.49173359841123},{"average":0.11823194761308614,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":70.98848837889919,"scaled_rad":-72.01534882813442},{"average":0.11824031822956248,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":70.99902429217856,"scaled_rad":-72.00130094376193},{"average":0.11929733052520274,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":72.32946272685966,"scaled_rad":-70.22738303085379},{"average":0.12375369511256759,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":77.93859211015669,"scaled_rad":-62.7485438531244},{"average":0.12991548718129994,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":85.69430604893267,"scaled_rad":-52.40759193475644},{"average":0.1316972655009543,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":87.93699174741245,"scaled_rad":-49.41734433678339},{"average":0.1279596252253686,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":83.23250505585582,"scaled_rad":-55.68999325885889},{"average":0.12031436187108277,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":73.609578007841,"scaled_rad":-68.52056265621201},{"average":0.11119675321122968,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":62.13344188011301,"scaled_rad":-83.82207749318265},{"average":0.11130621200265912,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":62.271215285145416,"scaled_rad":-83.63837961980612},{"average":0.11151739280916603,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":62.53702398273824,"scaled_rad":-83.28396802301567},{"average":0.11224253798446854,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":63.449748476034365,"scaled_rad":-82.06700203195419},{"average":0.11341800729279596,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.92928618154377,"scaled_rad":-80.09428509127498},{"average":0.0982004375989513,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":45.77526149646115,"scaled_rad":-105.63298467138513},{"average":0.10129783039036305,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":49.67388257588981,"scaled_rad":-100.43482323214693},{"average":0.10422331328780232,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":53.356124402980264,"scaled_rad":-95.52516746269298},{"average":0.10433540805061878,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":53.497215647985264,"scaled_rad":-95.33704580268632},{"average":0.10162211246493554,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":50.08204938479909,"scaled_rad":-99.89060082026788},{"average":0.12316700923580418,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":77.20014333075264,"scaled_rad":-63.73314222566316},{"average":0.12128740704099604,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":74.8343288438275,"scaled_rad":-66.88756154156333},{"average":0.11892670643559171,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":71.86296622944803,"scaled_rad":-70.84937836073595},{"average":0.11735589334329098,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":69.88581788375988,"scaled_rad":-73.48557615498682},{"average":0.11635654041826254,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":68.62795404740454,"scaled_rad":-75.16272793679394},{"average":0.11581551686339259,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":67.94697944149345,"scaled_rad":-76.07069407800873},{"average":0.11516044657037823,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":67.12245668159859,"scaled_rad":-77.17005775786855},{"average":0.11504155158841659,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":66.97280614835037,"scaled_rad":-77.36959180219951},{"average":0.11489676852829352,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":66.79057085300616,"scaled_rad":-77.6125721959918},{"average":0.11577216118535004,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":67.89240859055124,"scaled_rad":-76.14345521259833},{"average":0.11778493466562545,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":70.42584288408823,"scaled_rad":-72.7655428212157},{"average":0.11805805485013104,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":70.76961333240958,"scaled_rad":-72.3071822234539},{"average":0.13628025020529996,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":93.70549512373672,"scaled_rad":-41.72600650168438},{"average":0.13298532885860642,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":89.55824913901805,"scaled_rad":-47.25566781464261},{"average":0.12742562815830957,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.5603745376465,"scaled_rad":-56.58616728313801},{"average":0.12190518644017478,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":75.6119143650288,"scaled_rad":-65.85078084662827},{"average":0.11892493426053298,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":71.86073563116565,"scaled_rad":-70.85235249177913},{"average":0.1197927424991654,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":72.95302702585575,"scaled_rad":-69.39596396552567},{"average":0.12342391675227435,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":77.52350724570441,"scaled_rad":-63.301990339060794},{"average":0.12722219960027492,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.30432342694762,"scaled_rad":-56.92756876406985},{"average":0.1302561832047698,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":86.1231327390638,"scaled_rad":-51.83582301458159},{"average":0.13201984024986071,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":88.34300958256236,"scaled_rad":-48.87598722325019},{"average":0.13330678366068052,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":89.96285732139793,"scaled_rad":-46.71619023813609},{"average":0.1348931608232095,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":91.95959582447324,"scaled_rad":-44.05387223403568},{"average":0.13395391350224325,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":90.77738560739355,"scaled_rad":-45.63015252347526},{"average":0.12901008258622262,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":84.55469293639257,"scaled_rad":-53.92707608480991},{"average":0.12225462429310151,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":76.05174420616092,"scaled_rad":-65.2643410584521},{"average":0.1191299671296623,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":72.11880605341874,"scaled_rad":-70.50825859544169},{"average":0.12176940159081454,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":75.44100492227076,"scaled_rad":-66.07866010363897},{"average":0.12312574211204937,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":77.14820129776155,"scaled_rad":-63.80239826965128},{"average":0.12392639764199302,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":78.15596903553585,"scaled_rad":-62.458707952618866},{"average":0.12369342652873078,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":77.8627333517761,"scaled_rad":-62.84968886429854},{"average":0.12129134725670193,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":74.8392883078164,"scaled_rad":-66.88094892291146},{"average":0.11752270081153489,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":70.09577482357875,"scaled_rad":-73.20563356856167},{"average":0.11418922390628812,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":65.89999979413525,"scaled_rad":-78.80000027448632},{"average":0.11055765603493267,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":61.329024135542994,"scaled_rad":-84.89463448594267},{"average":0.10797045227291237,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":58.07256691405117,"scaled_rad":-89.23657744793177},{"average":0.10697187666239658,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":56.81568146660174,"scaled_rad":-90.91242471119769},{"average":0.1064600769673429,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":56.171490298754414,"scaled_rad":-91.77134626832745},{"average":0.10621139477664805,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":55.8584794228301,"scaled_rad":-92.1886941028932},{"average":0.10595751238964936,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":55.5389231726854,"scaled_rad":-92.61476910308613},{"average":0.10527570383414724,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":54.68074554213572,"scaled_rad":-93.75900594381903},{"average":0.10404293523899086,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":53.12908646794263,"scaled_rad":-95.82788470940983},{"average":0.10335462177137292,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":52.26272124569813,"scaled_rad":-96.98303833906917},{"average":0.10465108970037547,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":53.89455728884616,"scaled_rad":-94.80725694820512},{"average":0.10624082011734726,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":55.89551646050817,"scaled_rad":-92.1393113859891},{"average":0.1071039089602639,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":56.98186765424258,"scaled_rad":-90.69084312767657},{"average":0.1084348498839242,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":58.65709410754988,"scaled_rad":-88.45720785660016},{"average":0.10999256902515357,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":60.617761381221165,"scaled_rad":-85.84298482503844},{"average":0.1116238610736935,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":62.67103327646679,"scaled_rad":-83.10528896471095},{"average":0.11957827159999684,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":72.68307716003926,"scaled_rad":-69.75589711994765},{"average":0.11966261363671987,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":72.78923665106736,"scaled_rad":-69.6143511319102},{"average":0.11532854115800513,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":67.33403369064865,"scaled_rad":-76.88795507913514},{"average":0.1121935385572955,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":63.38807396055592,"scaled_rad":-82.14923471925877},{"average":0.11189340496224157,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":63.01030231868784,"scaled_rad":-82.65293024174954},{"average":0.1138750882114275,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":65.504604013148,"scaled_rad":-79.32719464913602},{"average":0.11599612516768204,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":68.17430719410368,"scaled_rad":-75.76759040786176},{"average":0.10661889290320578,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":56.37138847021687,"scaled_rad":-91.50481537304417},{"average":0.10650389593892491,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":56.22664428721922,"scaled_rad":-91.69780761704104},{"average":0.1056001513497904,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":55.08912058812986,"scaled_rad":-93.21450588249353},{"average":0.10338581005037525,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":52.30197725555479,"scaled_rad":-96.93069699259361},{"average":0.1007649180629505,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":49.00311739592986,"scaled_rad":-101.32917680542685},{"average":0.09718920507749805,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":44.50244506992567,"scaled_rad":-107.33007324009911},{"average":0.09357503661235493,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":39.9533696662888,"scaled_rad":-113.39550711161493},{"average":0.09071382252294041,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":36.35202159294175,"scaled_rad":-118.19730454274432},{"average":0.08889726146882357,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":34.06555562153321,"scaled_rad":-121.24592583795572},{"average":0.08322332348710905,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":26.92389303349544,"scaled_rad":-130.76814262200608},{"average":0.08474979207454575,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":28.8452259133831,"scaled_rad":-128.20636544882254},{"average":0.08552709651814192,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":29.823602145593664,"scaled_rad":-126.90186380587511},{"average":0.08419408033210213,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":28.145763604571673,"scaled_rad":-129.1389818605711},{"average":0.08105912556495785,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":24.199864081549464,"scaled_rad":-134.40018122460071},{"average":0.07739977640011703,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":19.593920711824083,"scaled_rad":-140.54143905090123},{"average":0.0753429756863807,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":17.005070295115523,"scaled_rad":-143.99323960651265},{"average":0.07143564271482539,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":12.0869950902239,"scaled_rad":-150.5506732130348},{"average":0.06672151784372446,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":6.153428432326335,"scaled_rad":-158.46209542356488},{"average":0.06684949646436575,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":6.314512344425492,"scaled_rad":-158.24731687409934},{"average":0.06861972813276865,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":8.54266452358845,"scaled_rad":-155.27644730188206},{"average":0.06917273050784085,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":9.23871661049473,"scaled_rad":-154.3483778526737},{"average":0.06852606002678832,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":8.424766511603144,"scaled_rad":-155.4336446511958},{"average":0.06791973900043038,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":7.661603395574039,"scaled_rad":-156.45119547256795},{"average":0.06874943541590872,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":8.705924265655206,"scaled_rad":-155.05876764579307},{"average":0.0706356998785835,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":11.080124404543396,"scaled_rad":-151.8931674606088},{"average":0.07391503800040203,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":15.20775612233679,"scaled_rad":-146.38965850355095},{"average":0.0746831720071154,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":16.174589724682008,"scaled_rad":-145.10054703375732},{"average":0.07494696865434496,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":16.50662483899601,"scaled_rad":-144.65783354800533},{"average":0.07659988399286012,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":18.58711350001245,"scaled_rad":-141.88384866665007},{"average":0.08015194986116798,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":23.058021712913767,"scaled_rad":-135.922637716115},{"average":0.08566838504813447,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":30.001438951709364,"scaled_rad":-126.66474806438751},{"average":0.08898961597481837,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":34.18180023372767,"scaled_rad":-121.09093302169644},{"average":0.0916566701846672,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":37.5387634807934,"scaled_rad":-116.6149820256088},{"average":0.09562127751266135,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":42.52892867502778,"scaled_rad":-109.96142843329629},{"average":0.10354547147546649,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":52.50293962595812,"scaled_rad":-96.66274716538916},{"average":0.10725213625272809,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":57.168438130079494,"scaled_rad":-90.44208249322735},{"average":0.10935301884933553,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.81277345598612,"scaled_rad":-86.91630205868518},{"average":0.1105326605903454,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":61.29756291195269,"scaled_rad":-84.93658278406309},{"average":0.11011163796033334,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":60.767630865609476,"scaled_rad":-85.64315884585403},{"average":0.10942352967014804,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.90152389574619,"scaled_rad":-86.79796813900508},{"average":0.10913585207752002,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.53943035378128,"scaled_rad":-87.28075952829164},{"average":0.10900558380685675,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.37546450889498,"scaled_rad":-87.4993806548067},{"average":0.11340775978393279,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.91638786455397,"scaled_rad":-80.11148284726139},{"average":0.11290390564030722,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.28219758983559,"scaled_rad":-80.95706988021921},{"average":0.10990694744728867,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":60.5099913595295,"scaled_rad":-85.986678187294},{"average":0.10544493054408131,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":54.89374752896176,"scaled_rad":-93.47500329471765},{"average":0.1013310768810089,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":49.71572921206986,"scaled_rad":-100.37902771724018},{"average":0.09803979456222196,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":45.57306359279424,"scaled_rad":-105.90258187627435},{"average":0.0925798587756206,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":38.70076092295137,"scaled_rad":-115.0656521027315},{"average":0.08698811678667283,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":31.662556646992567,"scaled_rad":-124.44992447067658},{"average":0.08577304083240443,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":30.133166915876625,"scaled_rad":-126.48911077883116},{"average":0.08609518844220657,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":30.53864712030679,"scaled_rad":-125.94847050625762},{"average":0.0886080147214183,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":33.70148701850776,"scaled_rad":-121.73135064198965},{"average":0.09407937481303558,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":40.588169213116224,"scaled_rad":-112.54910771584504},{"average":0.09879514928745999,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":46.52381219091337,"scaled_rad":-104.63491707878218},{"average":0.1005159267887785,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":48.68971748334135,"scaled_rad":-101.74704335554487},{"average":0.1003595809028522,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":48.49292831012304,"scaled_rad":-102.00942891983595},{"average":0.10028345390803614,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":48.397108914040516,"scaled_rad":-102.13718811461266},{"average":0.10181379588871178,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":50.32331714992827,"scaled_rad":-99.5689104667623},{"average":0.10572843505124621,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":55.250588498828655,"scaled_rad":-92.99921533489513},{"average":0.112757937487834,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.09847064447197,"scaled_rad":-81.20203914070403},{"average":0.12245776553232861,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":76.30743367491282,"scaled_rad":-64.92342176678291},{"average":0.13384589167081914,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":90.64142087273147,"scaled_rad":-45.811438836358036},{"average":0.1454414233827199,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":105.2364649641834,"scaled_rad":-26.35138004775547},{"average":0.15359650381375525,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":115.5010877014177,"scaled_rad":-12.66521639810972},{"average":0.16153448499236164,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":125.49245232163354,"scaled_rad":0.6566030955113717},{"average":0.16740798649877525,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":132.88530118679904,"scaled_rad":10.513734915732016},{"average":0.16874864417764465,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":134.57275790899146,"scaled_rad":12.763677211988607},{"average":0.16637170209772717,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":131.5809525031541,"scaled_rad":8.77460333753882},{"average":0.16230597984835957,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":126.46351615202792,"scaled_rad":1.9513548693705616},{"average":0.1572012382291702,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":120.03828867142232,"scaled_rad":-6.615615104770228},{"average":0.1525674692670307,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":114.2058642520559,"scaled_rad":-14.392180997258805},{"average":0.14984508284704984,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":110.77925555305063,"scaled_rad":-18.96099259593248},{"average":0.1488153138351427,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":109.48310764830468,"scaled_rad":-20.689189802260415},{"average":0.14783456819451377,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":108.24866439696262,"scaled_rad":-22.335114137383158},{"average":0.1471183280055997,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":107.34714841675606,"scaled_rad":-23.53713544432526},{"average":0.1466257119915768,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":106.72710333185147,"scaled_rad":-24.363862224198044},{"average":0.14411118684010013,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":103.56212510000364,"scaled_rad":-28.583833199995155},{"average":0.13824920285837136,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":96.18377309317773,"scaled_rad":-38.421635875763016},{"average":0.12713044501282525,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.18883391920504,"scaled_rad":-57.08155477439328},{"average":0.111299066585979,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":62.26222150425728,"scaled_rad":-83.65037132765696},{"average":0.09275353825690909,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":38.91936751643638,"scaled_rad":-114.77417664475149},{"average":0.07622168606721709,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":18.111083979573074,"scaled_rad":-142.51855469390256},{"average":0.06668622994941942,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":6.10901232566794,"scaled_rad":-158.52131689910942},{"average":0.06672368180726362,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":6.156152166265502,"scaled_rad":-158.45846377831268},{"average":0.07087442528566854,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":11.380602893044278,"scaled_rad":-151.49252947594096},{"average":0.0766892124458987,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":18.699549285029633,"scaled_rad":-141.73393428662715},{"average":0.07743603314957032,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":19.63955629542913,"scaled_rad":-140.4805916060945},{"average":0.07847487124626946,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":20.947119260363557,"scaled_rad":-138.73717431951525},{"average":0.07926466261090545,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":21.941212509065533,"scaled_rad":-137.4117166545793},{"average":0.07956035063755582,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":22.313388610472536,"scaled_rad":-136.9154818527033},{"average":0.0793877475274801,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":22.096136822071024,"scaled_rad":-137.2051509039053},{"average":0.07900467833367342,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":21.613975942122128,"scaled_rad":-137.8480320771705},{"average":0.0784687695799758,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":20.93943922543286,"scaled_rad":-138.74741436608952},{"average":0.0779521195380407,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":20.28914303123986,"scaled_rad":-139.61447595834684},{"average":0.07750237939373877,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":19.723064872957067,"scaled_rad":-140.36924683605724},{"average":0.07711947021441629,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":19.241105399766397,"scaled_rad":-141.01185946697814},{"average":0.07671433560219112,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":18.731171256571315,"scaled_rad":-141.69177165790492},{"average":0.10901155409062215,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.38297917548892,"scaled_rad":-87.4893610993481},{"average":0.1315938778469295,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":87.80685995126073,"scaled_rad":-49.59085339831903},{"average":0.13030098356019099,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":86.1795219740666,"scaled_rad":-51.76063736791119},{"average":0.1294877789462026,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":85.1559589765758,"scaled_rad":-53.12538803123226},{"average":0.13233553016775765,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":88.74036163035191,"scaled_rad":-48.34618449286411},{"average":0.13654178766853162,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":94.03468665218683,"scaled_rad":-41.28708446375089},{"average":0.14135572458729348,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":100.09388456811239,"scaled_rad":-33.20815390918348},{"average":0.14745427919597323,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":107.7700028884527,"scaled_rad":-22.973329482063065},{"average":0.15343917418997138,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":115.30306031870956,"scaled_rad":-12.92925290838727},{"average":0.15573789706895116,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":118.19641291402918,"scaled_rad":-9.071449447961072},{"average":0.15427906149708562,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":116.3602082429054,"scaled_rad":-11.51972234279279},{"average":0.15207762850977247,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":113.58931232260565,"scaled_rad":-15.2142502365258},{"average":0.15241391515875397,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":114.0125890287712,"scaled_rad":-14.64988129497172},{"average":0.15362490311304675,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":115.53683328304552,"scaled_rad":-12.617555622605977},{"average":0.1554369287352146,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":117.81759060469882,"scaled_rad":-9.57654586040158},{"average":0.15677867053435937,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":119.50641188555164,"scaled_rad":-7.3247841525978},{"average":0.1571318350042091,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":119.95093233852069,"scaled_rad":-6.732090215305732},{"average":0.15985008264286465,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":123.37233164330165,"scaled_rad":-2.1702244755977915},{"average":0.16552023332404342,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":130.50922723835623,"scaled_rad":7.345636317808328},{"average":0.1721671692921478,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":138.87558127350368,"scaled_rad":18.500775031338236},{"average":0.1767483624126927,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":144.64182962218325,"scaled_rad":26.189106162911003},{"average":0.17720466625309528,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":145.2161693622867,"scaled_rad":26.95489248304895},{"average":0.17645895771952355,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":144.27756221625293,"scaled_rad":25.70341628833725},{"average":0.17714730358320002,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":145.14396821471317,"scaled_rad":26.858624286284225},{"average":0.17605422025500359,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":143.7681279542545,"scaled_rad":25.02417060567268},{"average":0.17730176873982084,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":145.3383901547748,"scaled_rad":27.117853539699723},{"average":0.17899075317848392,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":147.46427820928844,"scaled_rad":29.952370945717917},{"average":0.18121541428688237,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":150.2644108614453,"scaled_rad":33.68588114859372},{"average":0.18514782034773938,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":155.21404501964406,"scaled_rad":40.285393359525415},{"average":0.19420591644604546,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":166.61527397783857,"scaled_rad":55.487031970451426},{"average":0.1939491147052349,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":166.2920432004138,"scaled_rad":55.056057600551696},{"average":0.19138509324308484,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":163.0647650366102,"scaled_rad":50.753020048813596},{"average":0.18399563860508916,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":153.7638188676094,"scaled_rad":38.35175849014584},{"average":0.17236651987037338,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":139.1264995195271,"scaled_rad":18.835332692702792},{"average":0.1583392690791828,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":121.47070340203098,"scaled_rad":-4.705728797292039},{"average":0.14540930148336914,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":105.19603382665788,"scaled_rad":-26.405288231122825},{"average":0.13782307800635538,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":95.64741899073897,"scaled_rad":-39.13677467901471},{"average":0.13454890363720043,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":91.52628677634696,"scaled_rad":-44.63161763153738},{"average":0.13216333766815377,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":88.52362666843926,"scaled_rad":-48.63516444208099},{"average":0.1290724531728194,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":84.63319744002438,"scaled_rad":-53.82240341330083},{"average":0.12524979416150273,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":79.82169951108573,"scaled_rad":-60.23773398521904},{"average":0.11983657095880165,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":73.00819295672851,"scaled_rad":-69.32240939102866},{"average":0.11568541231334184,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":67.78321966818868,"scaled_rad":-76.28904044241509},{"average":0.10973698463971371,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":60.296062862579454,"scaled_rad":-86.27191618322739},{"average":0.10125810570848515,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":49.623881981011365,"scaled_rad":-100.50149069198486},{"average":0.09356196810057309,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":39.93692061415349,"scaled_rad":-113.41743918112867},{"average":0.08982259010910754,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":35.230246697335026,"scaled_rad":-119.69300440355329},{"average":0.0887454813830864,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":33.87451332191492,"scaled_rad":-121.50064890411345},{"average":0.08931379352608318,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":34.58983548141819,"scaled_rad":-120.54688602477574},{"average":0.08875809315886624,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":33.890387490357696,"scaled_rad":-121.47948334618974},{"average":0.08646991141872505,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":31.010302797704863,"scaled_rad":-125.31959626972684},{"average":0.08319963259067158,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":26.894073816346815,"scaled_rad":-130.80790157820425},{"average":0.08097597463162093,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":24.09520380650125,"scaled_rad":-134.53972825799832},{"average":0.08151899498870707,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":24.778691744022407,"scaled_rad":-133.62841100797013},{"average":0.0854367837050009,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":29.7099273678805,"scaled_rad":-127.05343017615934},{"average":0.09038858420879038,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":35.942651186030844,"scaled_rad":-118.74313175195888},{"average":0.09433112592713823,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":40.90504287632473,"scaled_rad":-112.1266094982337},{"average":0.09477186745335135,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":41.45979466932896,"scaled_rad":-111.38694044089473},{"average":0.09473788597093355,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":41.41702291495811,"scaled_rad":-111.44396944672252},{"average":0.09613891782845918,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":43.18047130543847,"scaled_rad":-109.09270492608204},{"average":0.09827096898351674,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":45.8640378193707,"scaled_rad":-105.51461624083906},{"average":0.09933191905002951,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":47.19943264078201,"scaled_rad":-103.73408981229066},{"average":0.09948622839133717,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":47.39365845949083,"scaled_rad":-103.47512205401222},{"average":0.09996150722068015,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":47.9918816063324,"scaled_rad":-102.67749119155681},{"average":0.1021776309325004,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":50.781268422715556,"scaled_rad":-98.9583087697126},{"average":0.10510579362438907,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":54.46688324891607,"scaled_rad":-94.0441556681119},{"average":0.10711144464549262,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":56.99135265768228,"scaled_rad":-90.67819645642363},{"average":0.10781367912914364,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":57.87523996066,"scaled_rad":-89.49968005245334},{"average":0.10869578445536864,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":58.98552678919285,"scaled_rad":-88.01929761440952},{"average":0.10995544634610996,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":60.571035870835274,"scaled_rad":-85.90528550555297},{"average":0.11203732995953394,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":63.19145758897083,"scaled_rad":-82.41138988137223},{"average":0.11713974715191557,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":69.61375936400387,"scaled_rad":-73.84832084799484},{"average":0.11576207314584094,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":67.87971099417622,"scaled_rad":-76.16038534109838},{"average":0.1150413928819209,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":66.97260638792889,"scaled_rad":-77.36985814942815},{"average":0.11298143852127003,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.37978654429708,"scaled_rad":-80.82695127427056},{"average":0.10941862468336172,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.89535009533815,"scaled_rad":-86.80619987288246},{"average":0.10539455797735582,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":54.830344672531844,"scaled_rad":-93.5595404366242},{"average":0.10093501213991056,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":49.2172111188058,"scaled_rad":-101.04371850825893},{"average":0.09920718887100853,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":47.042437471644774,"scaled_rad":-103.94341670447363},{"average":0.09874517160920412,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":46.46090637202935,"scaled_rad":-104.71879150396086},{"average":0.09854590269166912,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":46.21009091054478,"scaled_rad":-105.05321211927362},{"average":0.09864605701669331,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":46.33615298566096,"scaled_rad":-104.88512935245205},{"average":0.0989948882547694,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":46.775219293846824,"scaled_rad":-104.29970760820423},{"average":0.10027197253855456,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":48.382657563470545,"scaled_rad":-102.15645658203928},{"average":0.10240024379847279,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":51.06146640543133,"scaled_rad":-98.58471145942488},{"average":0.10475163290096867,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":54.021108833200735,"scaled_rad":-94.63852155573235},{"average":0.1063095865156966,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":55.982071233575525,"scaled_rad":-92.0239050218993},{"average":0.10848748002947338,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":58.723338529445726,"scaled_rad":-88.36888196073903},{"average":0.11085782995002658,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":61.70684652737027,"scaled_rad":-84.39087129683965},{"average":0.11351501927685077,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":65.05139306028448,"scaled_rad":-79.93147591962068},{"average":0.116366929335064,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":68.6410303514971,"scaled_rad":-75.14529286467054},{"average":0.11906847605663134,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":72.04140857442289,"scaled_rad":-70.6114552341028},{"average":0.12179965458252814,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":75.47908370631698,"scaled_rad":-66.02788839157736},{"average":0.12664040945872723,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":81.57203680320049,"scaled_rad":-57.90395092906601},{"average":0.13449122080054285,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":91.45368264181872,"scaled_rad":-44.7284231442417},{"average":0.13737324196964948,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":95.08122013476859,"scaled_rad":-39.891706486975224},{"average":0.13579663536383782,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":93.09677961936909,"scaled_rad":-42.537627174174546},{"average":0.13219792968173108,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":88.56716688512934,"scaled_rad":-48.57711081982754},{"average":0.13320831201773,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":89.83891320168624,"scaled_rad":-46.88144906441835},{"average":0.1346147356354984,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":91.60914808375911,"scaled_rad":-44.52113588832118},{"average":0.13597789739346147,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":93.32493020186874,"scaled_rad":-42.23342639750835},{"average":0.13731496610679925,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":95.00786957104293,"scaled_rad":-39.98950723860942},{"average":0.13845762229635103,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":96.44610611613923,"scaled_rad":-38.071858511814355},{"average":0.13923957995113226,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":97.43033924427317,"scaled_rad":-36.759547674302425},{"average":0.13284257798195012,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":89.37857170889608,"scaled_rad":-47.495237721471895},{"average":0.12569958570002238,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":80.3878423581549,"scaled_rad":-59.48287685579348},{"average":0.11826706016539434,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":71.03268378639186,"scaled_rad":-71.95642161814419},{"average":0.11251068762200002,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":63.787262604762255,"scaled_rad":-81.61698319365033},{"average":0.10912203268834994,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.52203618857475,"scaled_rad":-87.303951748567},{"average":0.1096266946042089,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":60.15724318867106,"scaled_rad":-86.45700908177191},{"average":0.11200457089283365,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":63.15022446273179,"scaled_rad":-82.46636738302428},{"average":0.11396151874016341,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":65.61339224374319,"scaled_rad":-79.18214367500909},{"average":0.11543050995745956,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":67.46237960534805,"scaled_rad":-76.71682719286927},{"average":0.11646506015909538,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":68.76454548983256,"scaled_rad":-74.9806060135566},{"average":0.11744118137435454,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":69.99316807733214,"scaled_rad":-73.34244256355716},{"average":0.11483278504460101,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":66.71003623080694,"scaled_rad":-77.71995169225741},{"average":0.1117977545144438,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":62.88990917608252,"scaled_rad":-82.81345443188998},{"average":0.10946095274033489,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.94862750194426,"scaled_rad":-86.73516333074099},{"average":0.10793123454206241,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":58.02320440742852,"scaled_rad":-89.30239412342863},{"average":0.1068042737327993,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":56.604723296842415,"scaled_rad":-91.19370227087678},{"average":0.10661970577676291,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":56.37241161652028,"scaled_rad":-91.50345117797295},{"average":0.10799842094391117,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":58.10777047319352,"scaled_rad":-89.18963936907531},{"average":0.10899506154439391,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.36222036551263,"scaled_rad":-87.51703951264983},{"average":0.10875413526547974,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.05897168740907,"scaled_rad":-87.92137108345457},{"average":0.11000827098519,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":60.63752509751705,"scaled_rad":-85.8166332033106},{"average":0.11286822858465398,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.23729165423474,"scaled_rad":-81.01694446102036},{"average":0.11294831648439056,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.33809655537158,"scaled_rad":-80.88253792617124},{"average":0.11161750927213367,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":62.663038401705606,"scaled_rad":-83.11594879772585},{"average":0.1138891290190529,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":65.52227687295846,"scaled_rad":-79.30363083605538},{"average":0.1134399180786048,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.95686481208043,"scaled_rad":-80.05751358389278},{"average":0.11395089542807595,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":65.60002091139154,"scaled_rad":-79.19997211814461},{"average":0.11470614136827113,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":66.55063258413837,"scaled_rad":-77.9324898878155},{"average":0.11475492705289482,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":66.6120380665091,"scaled_rad":-77.8506159113212},{"average":0.1128999420029205,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.27720864548539,"scaled_rad":-80.96372180601949},{"average":0.10900396005099085,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.37342072262925,"scaled_rad":-87.502105703161},{"average":0.10761868215156228,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":57.6298014972751,"scaled_rad":-89.82693133696652},{"average":0.10393213060635897,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":52.98961908179942,"scaled_rad":-96.01384122426745},{"average":0.10672329878845935,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":56.50280189191611,"scaled_rad":-91.32959747744519},{"average":0.10884006222345004,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.1671260844113,"scaled_rad":-87.77716522078494},{"average":0.10928887725557573,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.73203982407691,"scaled_rad":-87.0239469012308},{"average":0.10825359285691706,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":58.42894982173507,"scaled_rad":-88.76140023768659},{"average":0.1089346438931072,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.28617397916826,"scaled_rad":-87.61843469444231},{"average":0.10966252160237477,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":60.20233785365815,"scaled_rad":-86.39688286178914},{"average":0.11045952853748667,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":61.20551318430836,"scaled_rad":-85.05931575425552},{"average":0.08642769934634534,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":30.957171378389166,"scaled_rad":-125.39043816214777},{"average":0.08349220972562861,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":27.26233430589953,"scaled_rad":-130.31688759213395},{"average":0.08230126148038243,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":25.763313598451862,"scaled_rad":-132.31558186873085},{"average":0.08252536719817095,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":26.04539060134713,"scaled_rad":-131.93947919820383},{"average":0.08398077836871722,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":27.877285052854983,"scaled_rad":-129.49695326286002},{"average":0.08747787291613669,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":32.27900205727485,"scaled_rad":-123.62799725696686},{"average":0.09251239376579057,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":38.61584417936738,"scaled_rad":-115.17887442751015},{"average":0.09729733919496568,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":44.63855113659362,"scaled_rad":-107.14859848454185},{"average":0.09825775564031482,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":45.84740647107042,"scaled_rad":-105.5367913719061},{"average":0.09838220981411663,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":46.00405423842882,"scaled_rad":-105.32792768209491},{"average":0.09905363040226967,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":46.849156759941025,"scaled_rad":-104.20112432007863},{"average":0.09893629922218512,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":46.7014745501741,"scaled_rad":-104.3980339331012},{"average":0.09664846237014998,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":43.82182396069476,"scaled_rad":-108.237568052407},{"average":0.09390963726584917,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":40.3745242465281,"scaled_rad":-112.83396767129587},{"average":0.0930553511215422,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":39.2992528184762,"scaled_rad":-114.26766290869841},{"average":0.09279705496313126,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":38.974141050053255,"scaled_rad":-114.70114526659566},{"average":0.09198744413636935,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":37.955101474543355,"scaled_rad":-116.05986470060887},{"average":0.08355309987678869,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":27.33897541757916,"scaled_rad":-130.21469944322777},{"average":0.07772448888090404,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":20.00262926369387,"scaled_rad":-139.99649431507484},{"average":0.07483155391389473,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":16.361354810201586,"scaled_rad":-144.8515269197312},{"average":0.0737644179318156,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":15.018173911128628,"scaled_rad":-146.64243478516184},{"average":0.07256345130898167,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":13.50654328925437,"scaled_rad":-148.65794228099418},{"average":0.07100817961626046,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":11.548956565899857,"scaled_rad":-151.26805791213351},{"average":0.06980601712514999,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":10.035820730581529,"scaled_rad":-153.28557235922463},{"average":0.06969652674702365,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":9.898007568059313,"scaled_rad":-153.4693232425876},{"average":0.06960387603639195,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":9.781390129517357,"scaled_rad":-153.62481316064353},{"average":0.06913700319509722,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":9.193747417385001,"scaled_rad":-154.40833677682},{"average":0.06916966188771628,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":9.23485420494656,"scaled_rad":-154.35352772673792},{"average":0.07263247026431731,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":13.593415950318779,"scaled_rad":-148.54211206624163},{"average":0.07742377377195855,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":19.624125682911917,"scaled_rad":-140.50116575611744},{"average":0.08126840442835717,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":24.463278844633344,"scaled_rad":-134.04896154048888},{"average":0.0836016996067565,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":27.400146842860572,"scaled_rad":-130.13313754285258},{"average":0.08615343389486807,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":30.61195940738792,"scaled_rad":-125.85072079014944},{"average":0.08930652672606014,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":34.580688917950894,"scaled_rad":-120.55908144273215},{"average":0.09286068821352089,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":39.05423484119574,"scaled_rad":-114.59435354507234},{"average":0.09651799568365112,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":43.65760837410269,"scaled_rad":-108.45652216786307},{"average":0.09653308212849473,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":43.67659735478479,"scaled_rad":-108.43120352695362},{"average":0.09634303921454335,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":43.43739446376584,"scaled_rad":-108.75014071497887},{"average":0.09614155305092685,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":43.18378820276255,"scaled_rad":-109.0882823963166},{"average":0.09584573770016493,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":42.811451841259824,"scaled_rad":-109.58473087832024},{"average":0.09730950272303972,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":44.653861105378056,"scaled_rad":-107.12818519282925},{"average":0.10664759019600976,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":56.40750912981108,"scaled_rad":-91.45665449358522},{"average":0.1131356550789049,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.5738955782108,"scaled_rad":-80.56813922905228},{"average":0.1128550811859134,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.22074330879667,"scaled_rad":-81.03900892160443},{"average":0.10805155460368321,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":58.17464865751319,"scaled_rad":-89.10046845664908},{"average":0.10393956852497854,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":52.99898102853014,"scaled_rad":-96.00135862862648},{"average":0.10102164864026532,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":49.32625860140714,"scaled_rad":-100.89832186479047},{"average":0.09940420834984322,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":47.29042161346002,"scaled_rad":-103.61277118205331},{"average":0.09794536018269259,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":45.45420108892428,"scaled_rad":-106.06106521476764},{"average":0.10011189847501692,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":48.18117581401079,"scaled_rad":-102.42509891465227},{"average":0.10693085167309056,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":56.76404420298595,"scaled_rad":-90.98127439601873},{"average":0.11869160203947791,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":71.5670454288647,"scaled_rad":-71.24393942818038},{"average":0.12192781491523183,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":75.64039633544512,"scaled_rad":-65.81280488607317},{"average":0.12394341509781585,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":78.177388537826,"scaled_rad":-62.430148616232},{"average":0.12626034369687622,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":81.09365627786643,"scaled_rad":-58.54179162951142},{"average":0.1298947394590683,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":85.66819134127701,"scaled_rad":-52.442411544963974},{"average":0.1275378191148954,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.70158685966116,"scaled_rad":-56.39788418711845},{"average":0.12472663996821298,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":79.16321668275148,"scaled_rad":-61.115711089664686},{"average":0.12409244649826162,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":78.36497112692663,"scaled_rad":-62.180038497431156},{"average":0.12973341600290098,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":85.46513700843164,"scaled_rad":-52.713150655424485},{"average":0.12690263191381326,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":81.90209051603036,"scaled_rad":-57.463879311959516},{"average":0.1301145037647588,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":85.94480390299236,"scaled_rad":-52.0735947960102},{"average":0.13129936163530717,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":87.43615878799595,"scaled_rad":-50.085121616005395},{"average":0.1310292084316575,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":87.09612281408133,"scaled_rad":-50.53850291455822},{"average":0.12716831585158003,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.23650112198101,"scaled_rad":-57.01799850402533},{"average":0.11540820207880341,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":67.43430116266317,"scaled_rad":-76.7542651164491},{"average":0.09450351626517213,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":41.12202685317529,"scaled_rad":-111.8372975290996},{"average":0.09104866781760264,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":36.7734840977094,"scaled_rad":-117.63535453638747},{"average":0.08727006969417386,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":32.01744465203913,"scaled_rad":-123.97674046394782},{"average":0.08351598684651314,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":27.29226205188821,"scaled_rad":-130.27698393081573},{"average":0.0811957412034261,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":24.371819220525925,"scaled_rad":-134.17090770596542},{"average":0.08065999924468897,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":23.697492445033244,"scaled_rad":-135.070010073289},{"average":0.08195605298052223,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":25.32880715222891,"scaled_rad":-132.89492379702813},{"average":0.0840460492353348,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":27.95944007600009,"scaled_rad":-129.3874132319999},{"average":0.08564827372331363,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":29.97612526366206,"scaled_rad":-126.69849964845059},{"average":0.08718169049934407,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":31.906203677726246,"scaled_rad":-124.12506176303168},{"average":0.08984516347205736,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":35.25865929933816,"scaled_rad":-119.65512093421577},{"average":0.09054011823545138,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":36.133383776430534,"scaled_rad":-118.48882163142596},{"average":0.08915165111280306,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":34.38575034502992,"scaled_rad":-120.8189995399601},{"average":0.09063006062521907,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":36.2465923102835,"scaled_rad":-118.33787691962199},{"average":0.09376959663864176,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":40.198258148563056,"scaled_rad":-113.06898913524927},{"average":0.09731653238557898,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":44.662709189041465,"scaled_rad":-107.11638774794471},{"average":0.1004361834396689,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":48.58934626060041,"scaled_rad":-101.88087165253279},{"average":0.1030792083166899,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":51.91606430797856,"scaled_rad":-97.44524758936193},{"average":0.10583474457481305,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":55.384397988755445,"scaled_rad":-92.82080268165942},{"average":0.10955755627737107,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":60.07022027728773,"scaled_rad":-86.57303963028302},{"average":0.11319555799261882,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":64.64929407554436,"scaled_rad":-80.46760789927417},{"average":0.1158010674394043,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":67.9287922651358,"scaled_rad":-76.0949436464856},{"average":0.11694037609712543,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":69.36281534457311,"scaled_rad":-74.18291287390252},{"average":0.11636590934217314,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":68.63974650858373,"scaled_rad":-75.14700465522169},{"average":0.11433472463043472,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":66.08313839760942,"scaled_rad":-78.55581546985412},{"average":0.11424670184576752,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":65.97234602903251,"scaled_rad":-78.70353862795666},{"average":0.13710160281882292,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":94.73931383139404,"scaled_rad":-40.34758155814127},{"average":0.14417144443522453,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":103.63797002713044,"scaled_rad":-28.48270663049277},{"average":0.14452022765225658,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":104.07697589227043,"scaled_rad":-27.897365476972766},{"average":0.1418724338298257,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":100.74425527681207,"scaled_rad":-32.340992964250574},{"average":0.13831188853589757,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":96.26267419492355,"scaled_rad":-38.31643440676859},{"average":0.13433329356854562,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":91.25490306262316,"scaled_rad":-44.99346258316913},{"average":0.1300576105661312,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":85.87319366871378,"scaled_rad":-52.16907510838162},{"average":0.12511744280130066,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":79.6551117266092,"scaled_rad":-60.459851031187725},{"average":0.11921158525211685,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":72.22153701267808,"scaled_rad":-70.37128398309589},{"average":0.11238039761830414,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":63.62326940497952,"scaled_rad":-81.83564079336065},{"average":0.10634140990343326,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":56.02212664101142,"scaled_rad":-91.97049781198479},{"average":0.10028859583872914,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":48.40358095060115,"scaled_rad":-102.12855873253179},{"average":0.09860688178624862,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":46.28684397337597,"scaled_rad":-104.95087470216536},{"average":0.10044724974585206,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":48.603275180005376,"scaled_rad":-101.86229975999284},{"average":0.10307400942738934,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":51.90952057885483,"scaled_rad":-97.4539725615269},{"average":0.10577547424654198,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":55.30979571298887,"scaled_rad":-92.9202723826815},{"average":0.10871176750221279,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.00564430335279,"scaled_rad":-87.99247426219628},{"average":0.1118393265685187,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":62.94223501824916,"scaled_rad":-82.74368664233445},{"average":0.11531835368146587,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":67.32121093504196,"scaled_rad":-76.90505208661071},{"average":0.11834540449321748,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":71.13129409140446,"scaled_rad":-71.82494121146073},{"average":0.12029355920057218,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":73.58339413797925,"scaled_rad":-68.55547448269432},{"average":0.12178043677841943,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":75.45489467339668,"scaled_rad":-66.0601404354711},{"average":0.12304177740775198,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":77.04251674686782,"scaled_rad":-63.94331100417624},{"average":0.12476009112887498,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":79.20532093263863,"scaled_rad":-61.05957208981516},{"average":0.12705428463220597,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.09297250113661,"scaled_rad":-57.20936999848452},{"average":0.12895258089400133,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":84.48231680443463,"scaled_rad":-54.02357759408716},{"average":0.13075843715383637,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":86.75530888362205,"scaled_rad":-50.99292148850394},{"average":0.13186920075102468,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":88.15340291492075,"scaled_rad":-49.12879611343901},{"average":0.13225158181981728,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":88.63469766684977,"scaled_rad":-48.487069777533634},{"average":0.13199648159275393,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":88.3136085478482,"scaled_rad":-48.915188602869065},{"average":0.13126645613973106,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":87.39474135490907,"scaled_rad":-50.14034486012123},{"average":0.10819319614009003,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":58.35292978514073,"scaled_rad":-88.86276028647903},{"average":0.10728681759694902,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":57.21209078531185,"scaled_rad":-90.38387895291754},{"average":0.10657011664403107,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":56.30999485145419,"scaled_rad":-91.58667353139441},{"average":0.10552514047543722,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":54.99470602864921,"scaled_rad":-93.34039196180105},{"average":0.11249093242488098,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":63.76239716692366,"scaled_rad":-81.65013711076845},{"average":0.11390584698436296,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":65.54331941304045,"scaled_rad":-79.27557411594607},{"average":0.1157530727294091,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":67.8683823653623,"scaled_rad":-76.17549017951693},{"average":0.11573233437341361,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":67.84227944678481,"scaled_rad":-76.21029407095358},{"average":0.11390540641815833,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":65.54276488192092,"scaled_rad":-79.27631349077211},{"average":0.11151372567663156,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":62.5324082426101,"scaled_rad":-83.29012234318652},{"average":0.10945483812315625,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.94093116601574,"scaled_rad":-86.74542511197902},{"average":0.10816692305037884,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":58.319860417363486,"scaled_rad":-88.90685277684868},{"average":0.13665912969466026,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":94.18238251363408,"scaled_rad":-41.090156648487905},{"average":0.1449544156583706,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":104.62347891176628,"scaled_rad":-27.16869478431161},{"average":0.14580975388771883,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":105.70007457642471,"scaled_rad":-25.733233898100366},{"average":0.14538623151885646,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":105.16699616304602,"scaled_rad":-26.444005115938637},{"average":0.14802434939774453,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":108.48753787837781,"scaled_rad":-22.016616162162933},{"average":0.14926187183321254,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":110.04518050819179,"scaled_rad":-19.939759322410936},{"average":0.14900392787217503,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":109.72051204295856,"scaled_rad":-20.372650609388586},{"average":0.14727328679438087,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":107.54219168090391,"scaled_rad":-23.277077758794775},{"average":0.1500420468351883,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":111.02716984993093,"scaled_rad":-18.630440200092096},{"average":0.14891550040441343,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":109.60921030855413,"scaled_rad":-20.521052921927833},{"average":0.14943170539899253,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":110.25894633129963,"scaled_rad":-19.654738224933823},{"average":0.1512966223443921,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":112.60627681352904,"scaled_rad":-16.524964248627953},{"average":0.15240178215867536,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":113.99731748491203,"scaled_rad":-14.670243353450616},{"average":0.1522732712343147,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":113.83556357367463,"scaled_rad":-14.885915235100498},{"average":0.15169680446968736,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":113.10997736891633,"scaled_rad":-15.853363508111556},{"average":0.14835552429087936,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":108.90438052840688,"scaled_rad":-21.460825962124176},{"average":0.1456165743745584,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":105.45692371605944,"scaled_rad":-26.057435045254067},{"average":0.14384167474673984,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":103.22289607769534,"scaled_rad":-29.036138563072882},{"average":0.14229301454856916,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":101.27363109903291,"scaled_rad":-31.635158534622803},{"average":0.1412706033622448,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":99.98674432965065,"scaled_rad":-33.3510075604658},{"average":0.1420321899564154,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":100.94533684593607,"scaled_rad":-32.072884205418575},{"average":0.1360166160925108,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":93.37366458799514,"scaled_rad":-42.168447216006484},{"average":0.13784063812997668,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":95.66952153720877,"scaled_rad":-39.107304617054965},{"average":0.13736151289458612,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":95.06645700255913,"scaled_rad":-39.911390663254494},{"average":0.13286133920916693,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":89.40218605839227,"scaled_rad":-47.46375192214363},{"average":0.13871868448141586,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":96.77469942227641,"scaled_rad":-37.63373410363144},{"average":0.13536768350347672,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":92.55686722288492,"scaled_rad":-43.25751036948678},{"average":0.13412956013699054,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":90.99846821424121,"scaled_rad":-45.33537571434505},{"average":0.13432061880926408,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":91.2389496182138,"scaled_rad":-45.0147338423816},{"average":0.13464805170501842,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":91.65108229735795,"scaled_rad":-44.465223603522745},{"average":0.13373771704449847,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":90.50526381844941,"scaled_rad":-45.992981575400776},{"average":0.13127862502327736,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":87.41005806451021,"scaled_rad":-50.11992258065305},{"average":0.1281754493579029,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":83.50415820713862,"scaled_rad":-55.32778905714851},{"average":0.1192864459146655,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":72.31576250382064,"scaled_rad":-70.24564999490583},{"average":0.10883425236845595,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":59.15981334602979,"scaled_rad":-87.78691553862694},{"average":0.10004434830340657,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":48.0961518791423,"scaled_rad":-102.5384641611436},{"average":0.0942058438919995,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":40.74735309786981,"scaled_rad":-112.33686253617358},{"average":0.09062745602632376,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":36.24331395818529,"scaled_rad":-118.34224805575295},{"average":0.08416908823964789,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":28.11430660023845,"scaled_rad":-129.1809245330154},{"average":0.08371239391965989,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":27.539475371955955,"scaled_rad":-129.9473661707254},{"average":0.08260343040238838,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":26.143647062178847,"scaled_rad":-131.80847058376153},{"average":0.0812787032336928,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":24.476241727379673,"scaled_rad":-134.0316776968271},{"average":0.08070413451183592,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":23.753044547860625,"scaled_rad":-134.9959406028525},{"average":0.07979894815642419,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":22.613706128850836,"scaled_rad":-136.51505849486554},{"average":0.07822508484610602,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":20.63271853994735,"scaled_rad":-139.1563752800702},{"average":0.07813315469170114,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":20.517008049888823,"scaled_rad":-139.31065593348157},{"average":0.0792749117529764,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":21.95411288173854,"scaled_rad":-137.39451615768195},{"average":0.08107202669456079,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":24.21610245336911,"scaled_rad":-134.37853006217452},{"average":0.08257680466484944,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":26.110133824234843,"scaled_rad":-131.85315490102022},{"average":0.08319517240549128,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":26.888459878066115,"scaled_rad":-130.81538682924517},{"average":0.08255031912483539,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":26.0767970498725,"scaled_rad":-131.89760393350332},{"average":0.08316367844025449,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":26.848819107580894,"scaled_rad":-130.86824118989213},{"average":0.08458526565456775,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":28.638140079507703,"scaled_rad":-128.48247989398973},{"average":0.08697838461733369,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":31.650306976676507,"scaled_rad":-124.46625736443133},{"average":0.08952500279363008,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":34.85568000230434,"scaled_rad":-120.19242666359422},{"average":0.09082781666457052,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":36.49550354483457,"scaled_rad":-118.0059952735539},{"average":0.09142571972411813,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":37.24807114874663,"scaled_rad":-117.00257180167117},{"average":0.0912794682756934,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":37.06398762491763,"scaled_rad":-117.24801650010983},{"average":0.09087325286425196,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":36.55269310320715,"scaled_rad":-117.92974252905714},{"average":0.0899667769512978,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":35.4117315461078,"scaled_rad":-119.4510246051896},{"average":0.08919161528322922,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":34.4360523789461,"scaled_rad":-120.7519301614052},{"average":0.08817221561100247,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":33.15295613699531,"scaled_rad":-122.46272515067292},{"average":0.08655182301062847,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":31.113403140589913,"scaled_rad":-125.18212914588011},{"average":0.084995337140095,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":29.15428815797613,"scaled_rad":-127.79428245603182},{"average":0.0844577122047007,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":28.477591320633998,"scaled_rad":-128.69654490582133},{"average":0.08449559818503473,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":28.525277581787115,"scaled_rad":-128.63296322428386},{"average":0.0832626863370147,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":26.97343819832376,"scaled_rad":-130.702082402235},{"average":0.08183273220289289,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":25.173585966033095,"scaled_rad":-133.10188537862254},{"average":0.10116685660657479,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":49.50902871694585,"scaled_rad":-100.65462837740554},{"average":0.13699151055205044,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":94.60074308469659,"scaled_rad":-40.53234255373788},{"average":0.13533985893058242,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":92.52184503689914,"scaled_rad":-43.30420661746781},{"average":0.1357428692396313,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":93.02910536579301,"scaled_rad":-42.62785951227599},{"average":0.13710125596544678,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":94.73887725457776,"scaled_rad":-40.34816366056299},{"average":0.13306859352433317,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":89.66305256655684,"scaled_rad":-47.11592991125755},{"average":0.13005204600125056,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":85.8661896716742,"scaled_rad":-52.17841377110106},{"average":0.12741374410401654,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.54541633644439,"scaled_rad":-56.60611155140748},{"average":0.12734700787188,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":82.4614168895255,"scaled_rad":-56.71811081396602},{"average":0.12965554858734388,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":85.3671269825372,"scaled_rad":-52.84383068995041},{"average":0.13635111387286866,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":93.79468968405047,"scaled_rad":-41.60708042126603},{"average":0.14397231568930077,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":103.3873309966106,"scaled_rad":-28.816892004519218},{"average":0.1472511393272129,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":107.51431514467757,"scaled_rad":-23.314246473763234},{"average":0.16479293999047234,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":129.59379890487202,"scaled_rad":6.125065206496004},{"average":0.17121264349808146,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":137.67414037394337,"scaled_rad":16.898853831924498},{"average":0.17276382469482646,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":139.62657847879447,"scaled_rad":19.502104638392638},{"average":0.1757991875175142,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":143.44712378291487,"scaled_rad":24.596165043886487},{"average":0.18087985356711708,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":149.8420478666283,"scaled_rad":33.12273048883773},{"average":0.1829367343715308,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":152.43099909173415,"scaled_rad":36.574665455645544},{"average":0.18655343548446918,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":156.98326228418125,"scaled_rad":42.64434971224168},{"average":0.18959725481691286,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":160.8144516135878,"scaled_rad":47.75260215145042},{"average":0.19292533248691518,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":165.0034307428164,"scaled_rad":53.33790765708852},{"average":0.19953735671643327,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":173.3258421303444,"scaled_rad":64.43445617379254},{"average":0.20514623913414406,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":180.38562069196414,"scaled_rad":73.84749425595217},{"average":0.204390712223636,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":179.43465536798277,"scaled_rad":72.5795404906437},{"average":0.20480927537875693,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":179.961491726662,"scaled_rad":73.28198896888267},{"average":0.20508391474125215,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":180.307174331346,"scaled_rad":73.74289910846136},{"average":0.20523748478860052,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":180.50046961679425,"scaled_rad":74.00062615572566},{"average":0.19533163921882613,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":168.03219679877512,"scaled_rad":57.376262398366805},{"average":0.18381847205517718,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":153.5408231765328,"scaled_rad":38.05443090204372},{"average":0.18512299698789952,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":155.1828003953903,"scaled_rad":40.24373386052039},{"average":0.18626949188389835,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":156.6258686369746,"scaled_rad":42.16782484929945},{"average":0.18710379876230523,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":157.67599259667648,"scaled_rad":43.56799012890198},{"average":0.18928045326104487,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":160.41570037121153,"scaled_rad":47.22093382828203},{"average":0.19291305590743602,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":164.98797847868204,"scaled_rad":53.31730463824272},{"average":0.19398796185851097,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":166.34093926908733,"scaled_rad":55.121252358783124},{"average":0.19398796185851097,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":166.34093926908733,"scaled_rad":55.121252358783124},{"average":0.19398796185851097,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":166.34093926908733,"scaled_rad":55.121252358783124},{"average":0.19398796185851097,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":166.34093926908733,"scaled_rad":55.121252358783124},{"average":0.19398796185851097,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":166.34093926908733,"scaled_rad":55.121252358783124},{"average":0.19398796185851097,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":166.34093926908733,"scaled_rad":55.121252358783124},{"average":0.19398796185851097,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":166.34093926908733,"scaled_rad":55.121252358783124},{"average":0.19397570687842464,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":166.32551419163994,"scaled_rad":55.10068558885325},{"average":0.16176909994433133,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":125.78775706949577,"scaled_rad":1.050342759327691},{"average":0.16040346416648646,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":124.06886095625812,"scaled_rad":-1.2415187249891915},{"average":0.1591351516544819,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":122.47246352538838,"scaled_rad":-3.3700486328154966},{"average":0.1591351516544819,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":122.47246352538838,"scaled_rad":-3.3700486328154966},{"average":0.1591351516544819,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":122.47246352538838,"scaled_rad":-3.3700486328154966},{"average":0.1591351516544819,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":122.47246352538838,"scaled_rad":-3.3700486328154966},{"average":0.1591351516544819,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":122.47246352538838,"scaled_rad":-3.3700486328154966},{"average":0.1591351516544819,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":122.47246352538838,"scaled_rad":-3.3700486328154966},{"average":0.15913749087624496,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":122.4754078530501,"scaled_rad":-3.366122862599866},{"average":0.16530601866543293,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":130.23959989696863,"scaled_rad":6.986133195958189},{"average":0.16530601866543293,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":130.23959989696863,"scaled_rad":6.986133195958189},{"average":0.16530601866543293,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":130.23959989696863,"scaled_rad":6.986133195958189},{"average":0.16530396907472591,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":130.2370201216309,"scaled_rad":6.982693495507874},{"average":0.15988117241417982,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":123.41146366367052,"scaled_rad":-2.1180484484393105},{"average":0.13391668067430673,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":90.73052145498687,"scaled_rad":-45.6926380600175},{"average":0.13401219755523822,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":90.8507464798766,"scaled_rad":-45.5323380268312},{"average":0.1329268105116899,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":89.48459336586113,"scaled_rad":-47.35387551218517},{"average":0.13147792190631402,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":87.66090872556474,"scaled_rad":-49.78545503258036},{"average":0.1304692577801397,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":86.39132508242132,"scaled_rad":-51.47823322343824},{"average":0.1500536867460639,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":111.0418207531125,"scaled_rad":-18.610905662516643},{"average":0.14677239080434137,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":106.91172476989932,"scaled_rad":-24.117700306800913},{"average":0.14780271675554324,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":108.20857368204751,"scaled_rad":-22.388568423936647},{"average":0.15444630917953958,"rel_min":0.0658051371955645,"rel_max":0.22072955329547553,"scaled_dist":116.57071927079588,"scaled_rad":-11.239040972272164}],"gamma":[{"average":0.2070596707718713,"rel_min":0.2070596707718713,"rel_max":0.0,"scaled_dist":5.0,"scaled_rad":-160.0},{"average":0.2243089314017977,"rel_min":0.2070596707718713,"rel_max":0.2243089314017977,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":0.25743120790474,"rel_min":0.2070596707718713,"rel_max":0.25743120790474,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.30257584190084824,"rel_min":0.2070596707718713,"rel_max":0.30257584190084824,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.35276743443239306,"rel_min":0.2070596707718713,"rel_max":0.35276743443239306,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.40083742874955375,"rel_min":0.2070596707718713,"rel_max":0.40083742874955375,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.4481806859475415,"rel_min":0.2070596707718713,"rel_max":0.4481806859475415,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.4954845678238642,"rel_min":0.2070596707718713,"rel_max":0.4954845678238642,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.5412870822129426,"rel_min":0.2070596707718713,"rel_max":0.5412870822129426,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.5844848410004662,"rel_min":0.2070596707718713,"rel_max":0.5844848410004662,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":0.6317902444438501,"rel_min":0.2070596707718713,"rel_max":0.6317902444438501,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.7162958879969895,"rel_min":0.2070596707718713,"rel_max":0.7162958879969895,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":0.7727497067889233,"rel_min":0.2070596707718713,"rel_max":0.7727497067889233,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.819149249683128,"rel_min":0.2070596707718713,"rel_max":0.819149249683128,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":0.8672376885418854,"rel_min":0.2070596707718713,"rel_max":0.8672376885418854,"scaled_dist":200.0,"scaled_rad":100.0},{"average":0.9168939776386001,"rel_min":0.2070596707718713,"rel_max":0.9168939776386001,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":0.9685540095556017,"rel_min":0.2070596707718713,"rel_max":0.9685540095556017,"scaled_dist":200.0,"scaled_rad":100.0},{"average":1.024164186701888,"rel_min":0.2070596707718713,"rel_max":1.024164186701888,"scaled_dist":200.0,"scaled_rad":100.0},{"average":1.079666467780308,"rel_min":0.2070596707718713,"rel_max":1.079666467780308,"scaled_dist":200.0,"scaled_rad":100.0},{"average":1.1330086558347656,"rel_min":0.2070596707718713,"rel_max":1.1330086558347656,"scaled_dist":200.0,"scaled_rad":100.0},{"average":1.1833611152170735,"rel_min":0.2070596707718713,"rel_max":1.1833611152170735,"scaled_dist":200.0,"scaled_rad":100.0},{"average":1.2371915100360071,"rel_min":0.2070596707718713,"rel_max":1.2371915100360071,"scaled_dist":200.0,"scaled_rad":100.0},{"average":1.286700977749089,"rel_min":0.2070596707718713,"rel_max":1.286700977749089,"scaled_dist":200.0,"scaled_rad":100.0},{"average":1.3363029976035394,"rel_min":0.2070596707718713,"rel_max":1.3363029976035394,"scaled_dist":200.0,"scaled_rad":100.0},{"average":1.4018707238208679,"rel_min":0.2070596707718713,"rel_max":1.4018707238208679,"scaled_dist":200.0,"scaled_rad":100.0},{"average":1.4536654067945567,"rel_min":0.2070596707718713,"rel_max":1.4536654067945567,"scaled_dist":200.0,"scaled_rad":100.0},{"average":1.5067794701278314,"rel_min":0.2070596707718713,"rel_max":1.5067794701278314,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":1.5600174631619332,"rel_min":0.2070596707718713,"rel_max":1.5600174631619332,"scaled_dist":200.0,"scaled_rad":100.0},{"average":1.6036530699342342,"rel_min":0.2070596707718713,"rel_max":1.6036530699342342,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":1.6347847352188731,"rel_min":0.2070596707718713,"rel_max":1.6347847352188731,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":1.6622266575762754,"rel_min":0.2070596707718713,"rel_max":1.6622266575762754,"scaled_dist":200.0,"scaled_rad":100.0},{"average":1.7034888885294397,"rel_min":0.2070596707718713,"rel_max":1.7034888885294397,"scaled_dist":200.0,"scaled_rad":100.0},{"average":1.750105671896391,"rel_min":0.2070596707718713,"rel_max":1.750105671896391,"scaled_dist":200.0,"scaled_rad":100.0},{"average":1.7958481955845482,"rel_min":0.2070596707718713,"rel_max":1.7958481955845482,"scaled_dist":200.0,"scaled_rad":100.0},{"average":1.843288608757006,"rel_min":0.2070596707718713,"rel_max":1.843288608757006,"scaled_dist":200.0,"scaled_rad":100.0},{"average":1.8897931299433506,"rel_min":0.2070596707718713,"rel_max":1.8897931299433506,"scaled_dist":200.0,"scaled_rad":100.0},{"average":1.9332036378300788,"rel_min":0.2070596707718713,"rel_max":1.9332036378300788,"scaled_dist":200.0,"scaled_rad":100.0},{"average":1.9790280148723072,"rel_min":0.2070596707718713,"rel_max":1.9790280148723072,"scaled_dist":200.0,"scaled_rad":100.0},{"average":2.0267391792874925,"rel_min":0.2070596707718713,"rel_max":2.0267391792874925,"scaled_dist":200.0,"scaled_rad":100.0},{"average":2.0774639527002967,"rel_min":0.2070596707718713,"rel_max":2.0774639527002967,"scaled_dist":200.0,"scaled_rad":100.0},{"average":2.123248838589167,"rel_min":0.2070596707718713,"rel_max":2.123248838589167,"scaled_dist":200.0,"scaled_rad":100.0},{"average":2.1666186311347686,"rel_min":0.2070596707718713,"rel_max":2.1666186311347686,"scaled_dist":200.0,"scaled_rad":100.0},{"average":2.2140851697058377,"rel_min":0.2070596707718713,"rel_max":2.2140851697058377,"scaled_dist":200.0,"scaled_rad":100.0},{"average":2.2620468198672516,"rel_min":0.2070596707718713,"rel_max":2.2620468198672516,"scaled_dist":200.0,"scaled_rad":100.0},{"average":2.3114955479505834,"rel_min":0.2070596707718713,"rel_max":2.3114955479505834,"scaled_dist":200.0,"scaled_rad":100.0},{"average":2.3598981195786974,"rel_min":0.2070596707718713,"rel_max":2.3598981195786974,"scaled_dist":200.0,"scaled_rad":100.0},{"average":2.407688441609902,"rel_min":0.2070596707718713,"rel_max":2.407688441609902,"scaled_dist":200.0,"scaled_rad":100.0},{"average":2.4551337775256896,"rel_min":0.2070596707718713,"rel_max":2.4551337775256896,"scaled_dist":200.0,"scaled_rad":100.0},{"average":2.505885014699661,"rel_min":0.2070596707718713,"rel_max":2.505885014699661,"scaled_dist":200.0,"scaled_rad":100.0},{"average":2.561671499212583,"rel_min":0.2070596707718713,"rel_max":2.561671499212583,"scaled_dist":200.0,"scaled_rad":100.0},{"average":2.6214659371240248,"rel_min":0.2070596707718713,"rel_max":2.6214659371240248,"scaled_dist":200.0,"scaled_rad":100.0},{"average":2.6747312355827497,"rel_min":0.2070596707718713,"rel_max":2.6747312355827497,"scaled_dist":200.0,"scaled_rad":100.0},{"average":2.7222332530935285,"rel_min":0.2070596707718713,"rel_max":2.7222332530935285,"scaled_dist":200.0,"scaled_rad":100.0},{"average":2.767238906201967,"rel_min":0.2070596707718713,"rel_max":2.767238906201967,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":2.810831199979885,"rel_min":0.2070596707718713,"rel_max":2.810831199979885,"scaled_dist":200.0,"scaled_rad":100.0},{"average":2.8535773104728284,"rel_min":0.2070596707718713,"rel_max":2.8535773104728284,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":2.8961918274860334,"rel_min":0.2070596707718713,"rel_max":2.8961918274860334,"scaled_dist":200.0,"scaled_rad":100.0},{"average":2.937614151409694,"rel_min":0.2070596707718713,"rel_max":2.937614151409694,"scaled_dist":200.0,"scaled_rad":100.0},{"average":2.9800001319326443,"rel_min":0.2070596707718713,"rel_max":2.9800001319326443,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":3.0219268811127495,"rel_min":0.2070596707718713,"rel_max":3.0219268811127495,"scaled_dist":200.0,"scaled_rad":100.0},{"average":3.0658293238010006,"rel_min":0.2070596707718713,"rel_max":3.0658293238010006,"scaled_dist":200.0,"scaled_rad":100.0},{"average":3.108665175896178,"rel_min":0.2070596707718713,"rel_max":3.108665175896178,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":3.1474425619016158,"rel_min":0.2070596707718713,"rel_max":3.1474425619016158,"scaled_dist":200.0,"scaled_rad":100.0},{"average":3.1960222900712063,"rel_min":0.2070596707718713,"rel_max":3.1960222900712063,"scaled_dist":200.0,"scaled_rad":100.0},{"average":3.2519183899456765,"rel_min":0.2070596707718713,"rel_max":3.2519183899456765,"scaled_dist":200.0,"scaled_rad":100.0},{"average":3.3127431770273272,"rel_min":0.2070596707718713,"rel_max":3.3127431770273272,"scaled_dist":200.0,"scaled_rad":100.0},{"average":3.3452855206671215,"rel_min":0.2070596707718713,"rel_max":3.3452855206671215,"scaled_dist":200.0,"scaled_rad":100.0},{"average":3.400766868947768,"rel_min":0.2070596707718713,"rel_max":3.400766868947768,"scaled_dist":200.0,"scaled_rad":100.0},{"average":3.44929425826642,"rel_min":0.2070596707718713,"rel_max":3.44929425826642,"scaled_dist":200.0,"scaled_rad":100.0},{"average":3.4938037558376385,"rel_min":0.2070596707718713,"rel_max":3.4938037558376385,"scaled_dist":200.0,"scaled_rad":100.0},{"average":3.542314761131502,"rel_min":0.2070596707718713,"rel_max":3.542314761131502,"scaled_dist":200.0,"scaled_rad":100.0},{"average":3.592678378311493,"rel_min":0.2070596707718713,"rel_max":3.592678378311493,"scaled_dist":200.0,"scaled_rad":100.0},{"average":3.6410222045168408,"rel_min":0.2070596707718713,"rel_max":3.6410222045168408,"scaled_dist":200.0,"scaled_rad":100.0},{"average":3.6889637501447665,"rel_min":0.2070596707718713,"rel_max":3.6889637501447665,"scaled_dist":200.0,"scaled_rad":100.0},{"average":3.7358202520060155,"rel_min":0.2070596707718713,"rel_max":3.7358202520060155,"scaled_dist":200.0,"scaled_rad":100.0},{"average":3.7834941061087566,"rel_min":0.2070596707718713,"rel_max":3.7834941061087566,"scaled_dist":200.0,"scaled_rad":100.0},{"average":3.8311386199537885,"rel_min":0.2070596707718713,"rel_max":3.8311386199537885,"scaled_dist":200.0,"scaled_rad":100.0},{"average":3.8755065274034806,"rel_min":0.2070596707718713,"rel_max":3.8755065274034806,"scaled_dist":200.0,"scaled_rad":100.0},{"average":3.916495934020977,"rel_min":0.2070596707718713,"rel_max":3.916495934020977,"scaled_dist":200.0,"scaled_rad":100.0},{"average":3.957912336014921,"rel_min":0.2070596707718713,"rel_max":3.957912336014921,"scaled_dist":200.0,"scaled_rad":100.0},{"average":3.9994961744122888,"rel_min":0.2070596707718713,"rel_max":3.9994961744122888,"scaled_dist":200.0,"scaled_rad":100.0},{"average":4.039970539761199,"rel_min":0.2070596707718713,"rel_max":4.039970539761199,"scaled_dist":200.0,"scaled_rad":100.0},{"average":4.0818159369921725,"rel_min":0.2070596707718713,"rel_max":4.0818159369921725,"scaled_dist":200.0,"scaled_rad":100.0},{"average":4.123384538201653,"rel_min":0.2070596707718713,"rel_max":4.123384538201653,"scaled_dist":200.0,"scaled_rad":100.0},{"average":4.172750075733295,"rel_min":0.2070596707718713,"rel_max":4.172750075733295,"scaled_dist":200.0,"scaled_rad":100.0},{"average":4.222437390193327,"rel_min":0.2070596707718713,"rel_max":4.222437390193327,"scaled_dist":200.0,"scaled_rad":100.0},{"average":4.275484308005032,"rel_min":0.2070596707718713,"rel_max":4.275484308005032,"scaled_dist":200.0,"scaled_rad":100.0},{"average":4.323765506040612,"rel_min":0.2070596707718713,"rel_max":4.323765506040612,"scaled_dist":200.0,"scaled_rad":100.0},{"average":4.368404562816766,"rel_min":0.2070596707718713,"rel_max":4.368404562816766,"scaled_dist":200.0,"scaled_rad":100.0},{"average":4.416143067307258,"rel_min":0.2070596707718713,"rel_max":4.416143067307258,"scaled_dist":200.0,"scaled_rad":100.0},{"average":4.469430509075515,"rel_min":0.2070596707718713,"rel_max":4.469430509075515,"scaled_dist":200.0,"scaled_rad":100.0},{"average":4.5323231167335445,"rel_min":0.2070596707718713,"rel_max":4.5323231167335445,"scaled_dist":200.0,"scaled_rad":100.0},{"average":4.589573872086334,"rel_min":0.2070596707718713,"rel_max":4.589573872086334,"scaled_dist":200.0,"scaled_rad":100.0},{"average":4.637363197555597,"rel_min":0.2070596707718713,"rel_max":4.637363197555597,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":4.671609343002015,"rel_min":0.2070596707718713,"rel_max":4.671609343002015,"scaled_dist":200.0,"scaled_rad":100.0},{"average":4.7212270137055645,"rel_min":0.2070596707718713,"rel_max":4.7212270137055645,"scaled_dist":200.0,"scaled_rad":100.0},{"average":4.770627567931373,"rel_min":0.2070596707718713,"rel_max":4.770627567931373,"scaled_dist":200.0,"scaled_rad":100.0},{"average":4.822363047343765,"rel_min":0.2070596707718713,"rel_max":4.822363047343765,"scaled_dist":200.0,"scaled_rad":100.0},{"average":4.875361254842824,"rel_min":0.2070596707718713,"rel_max":4.875361254842824,"scaled_dist":200.0,"scaled_rad":100.0},{"average":4.926553689532337,"rel_min":0.2070596707718713,"rel_max":4.926553689532337,"scaled_dist":200.0,"scaled_rad":100.0},{"average":4.974440684890702,"rel_min":0.2070596707718713,"rel_max":4.974440684890702,"scaled_dist":200.0,"scaled_rad":100.0},{"average":5.017613477504053,"rel_min":0.2070596707718713,"rel_max":5.017613477504053,"scaled_dist":200.0,"scaled_rad":100.0},{"average":5.063102842076504,"rel_min":0.2070596707718713,"rel_max":5.063102842076504,"scaled_dist":200.0,"scaled_rad":100.0},{"average":5.1107850366138985,"rel_min":0.2070596707718713,"rel_max":5.1107850366138985,"scaled_dist":200.0,"scaled_rad":100.0},{"average":5.168973419097275,"rel_min":0.2070596707718713,"rel_max":5.168973419097275,"scaled_dist":200.0,"scaled_rad":100.0},{"average":5.22597530708788,"rel_min":0.2070596707718713,"rel_max":5.22597530708788,"scaled_dist":200.0,"scaled_rad":100.0},{"average":5.274826005518993,"rel_min":0.2070596707718713,"rel_max":5.274826005518993,"scaled_dist":200.0,"scaled_rad":100.0},{"average":5.3194857400166935,"rel_min":0.2070596707718713,"rel_max":5.3194857400166935,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":5.362168079793011,"rel_min":0.2070596707718713,"rel_max":5.362168079793011,"scaled_dist":200.0,"scaled_rad":100.0},{"average":5.406566868416029,"rel_min":0.2070596707718713,"rel_max":5.406566868416029,"scaled_dist":200.0,"scaled_rad":100.0},{"average":5.4565509298599775,"rel_min":0.2070596707718713,"rel_max":5.4565509298599775,"scaled_dist":200.0,"scaled_rad":100.0},{"average":5.508558290855338,"rel_min":0.2070596707718713,"rel_max":5.508558290855338,"scaled_dist":200.0,"scaled_rad":100.0},{"average":5.558717459656873,"rel_min":0.2070596707718713,"rel_max":5.558717459656873,"scaled_dist":200.0,"scaled_rad":100.0},{"average":5.605816233072215,"rel_min":0.2070596707718713,"rel_max":5.605816233072215,"scaled_dist":200.0,"scaled_rad":100.0},{"average":5.655968314171701,"rel_min":0.2070596707718713,"rel_max":5.655968314171701,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":5.704681274008576,"rel_min":0.2070596707718713,"rel_max":5.704681274008576,"scaled_dist":200.0,"scaled_rad":100.0},{"average":5.752528065093101,"rel_min":0.2070596707718713,"rel_max":5.752528065093101,"scaled_dist":200.0,"scaled_rad":100.0},{"average":5.799969590827523,"rel_min":0.2070596707718713,"rel_max":5.799969590827523,"scaled_dist":200.0,"scaled_rad":100.0},{"average":5.847498297831472,"rel_min":0.2070596707718713,"rel_max":5.847498297831472,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":5.897825789427946,"rel_min":0.2070596707718713,"rel_max":5.897825789427946,"scaled_dist":200.0,"scaled_rad":100.0},{"average":5.949406771796372,"rel_min":0.2070596707718713,"rel_max":5.949406771796372,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":5.994115026230043,"rel_min":0.2070596707718713,"rel_max":5.994115026230043,"scaled_dist":200.0,"scaled_rad":100.0},{"average":6.041473214225025,"rel_min":0.2070596707718713,"rel_max":6.041473214225025,"scaled_dist":200.0,"scaled_rad":100.0},{"average":6.090247412677138,"rel_min":0.2070596707718713,"rel_max":6.090247412677138,"scaled_dist":200.0,"scaled_rad":100.0},{"average":6.139473953809057,"rel_min":0.2070596707718713,"rel_max":6.139473953809057,"scaled_dist":200.0,"scaled_rad":100.0},{"average":6.195171243411885,"rel_min":0.2070596707718713,"rel_max":6.195171243411885,"scaled_dist":200.0,"scaled_rad":100.0},{"average":6.25114537335801,"rel_min":0.2070596707718713,"rel_max":6.25114537335801,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":6.299125953555285,"rel_min":0.2070596707718713,"rel_max":6.299125953555285,"scaled_dist":200.0,"scaled_rad":100.0},{"average":6.343112155140524,"rel_min":0.2070596707718713,"rel_max":6.343112155140524,"scaled_dist":200.0,"scaled_rad":100.0},{"average":6.38693446233159,"rel_min":0.2070596707718713,"rel_max":6.38693446233159,"scaled_dist":200.0,"scaled_rad":100.0},{"average":6.427809173640057,"rel_min":0.2070596707718713,"rel_max":6.427809173640057,"scaled_dist":200.0,"scaled_rad":100.0},{"average":6.469252313477825,"rel_min":0.2070596707718713,"rel_max":6.469252313477825,"scaled_dist":200.0,"scaled_rad":100.0},{"average":6.512002474345958,"rel_min":0.2070596707718713,"rel_max":6.512002474345958,"scaled_dist":200.0,"scaled_rad":100.0},{"average":6.555870659649373,"rel_min":0.2070596707718713,"rel_max":6.555870659649373,"scaled_dist":200.0,"scaled_rad":100.0},{"average":6.599097041472977,"rel_min":0.2070596707718713,"rel_max":6.599097041472977,"scaled_dist":200.0,"scaled_rad":100.0},{"average":6.642810028990736,"rel_min":0.2070596707718713,"rel_max":6.642810028990736,"scaled_dist":200.0,"scaled_rad":100.0},{"average":6.686659043733138,"rel_min":0.2070596707718713,"rel_max":6.686659043733138,"scaled_dist":200.0,"scaled_rad":100.0},{"average":6.731188941867784,"rel_min":0.2070596707718713,"rel_max":6.731188941867784,"scaled_dist":200.0,"scaled_rad":100.0},{"average":6.773237959229403,"rel_min":0.2070596707718713,"rel_max":6.773237959229403,"scaled_dist":200.0,"scaled_rad":100.0},{"average":6.813589806621577,"rel_min":0.2070596707718713,"rel_max":6.813589806621577,"scaled_dist":200.0,"scaled_rad":100.0},{"average":6.855234961922769,"rel_min":0.2070596707718713,"rel_max":6.855234961922769,"scaled_dist":200.0,"scaled_rad":100.0},{"average":6.900755328831458,"rel_min":0.2070596707718713,"rel_max":6.900755328831458,"scaled_dist":200.0,"scaled_rad":100.0},{"average":6.948179306353862,"rel_min":0.2070596707718713,"rel_max":6.948179306353862,"scaled_dist":200.0,"scaled_rad":100.0},{"average":7.00497431147144,"rel_min":0.2070596707718713,"rel_max":7.00497431147144,"scaled_dist":200.0,"scaled_rad":100.0},{"average":7.050007238267189,"rel_min":0.2070596707718713,"rel_max":7.050007238267189,"scaled_dist":200.0,"scaled_rad":100.0},{"average":7.098006088111674,"rel_min":0.2070596707718713,"rel_max":7.098006088111674,"scaled_dist":200.0,"scaled_rad":100.0},{"average":7.143988774841393,"rel_min":0.2070596707718713,"rel_max":7.143988774841393,"scaled_dist":200.0,"scaled_rad":100.0},{"average":7.191437585631737,"rel_min":0.2070596707718713,"rel_max":7.191437585631737,"scaled_dist":200.0,"scaled_rad":100.0},{"average":7.241590935168993,"rel_min":0.2070596707718713,"rel_max":7.241590935168993,"scaled_dist":200.0,"scaled_rad":100.0},{"average":7.2916118224059785,"rel_min":0.2070596707718713,"rel_max":7.2916118224059785,"scaled_dist":200.0,"scaled_rad":100.0},{"average":7.343445138355529,"rel_min":0.2070596707718713,"rel_max":7.343445138355529,"scaled_dist":200.0,"scaled_rad":100.0},{"average":7.396372847466782,"rel_min":0.2070596707718713,"rel_max":7.396372847466782,"scaled_dist":200.0,"scaled_rad":100.0},{"average":7.447601479777027,"rel_min":0.2070596707718713,"rel_max":7.447601479777027,"scaled_dist":200.0,"scaled_rad":100.0},{"average":7.496996597091431,"rel_min":0.2070596707718713,"rel_max":7.496996597091431,"scaled_dist":200.0,"scaled_rad":100.0},{"average":7.549269118916512,"rel_min":0.2070596707718713,"rel_max":7.549269118916512,"scaled_dist":200.0,"scaled_rad":100.0},{"average":7.605282461973445,"rel_min":0.2070596707718713,"rel_max":7.605282461973445,"scaled_dist":200.0,"scaled_rad":100.0},{"average":7.657136821951563,"rel_min":0.2070596707718713,"rel_max":7.657136821951563,"scaled_dist":200.0,"scaled_rad":100.0},{"average":7.708464149857247,"rel_min":0.2070596707718713,"rel_max":7.708464149857247,"scaled_dist":200.0,"scaled_rad":100.0},{"average":7.7580447537201405,"rel_min":0.2070596707718713,"rel_max":7.7580447537201405,"scaled_dist":200.0,"scaled_rad":100.0},{"average":7.8052605848448975,"rel_min":0.2070596707718713,"rel_max":7.8052605848448975,"scaled_dist":200.0,"scaled_rad":100.0},{"average":7.853851774944881,"rel_min":0.2070596707718713,"rel_max":7.853851774944881,"scaled_dist":200.0,"scaled_rad":100.0},{"average":7.901693884594293,"rel_min":0.2070596707718713,"rel_max":7.901693884594293,"scaled_dist":200.0,"scaled_rad":100.0},{"average":7.954175409335527,"rel_min":0.2070596707718713,"rel_max":7.954175409335527,"scaled_dist":200.0,"scaled_rad":100.0},{"average":7.997370701824054,"rel_min":0.2070596707718713,"rel_max":7.997370701824054,"scaled_dist":200.0,"scaled_rad":100.0},{"average":8.041526592366967,"rel_min":0.2070596707718713,"rel_max":8.041526592366967,"scaled_dist":200.0,"scaled_rad":100.0},{"average":8.087055335576872,"rel_min":0.2070596707718713,"rel_max":8.087055335576872,"scaled_dist":200.0,"scaled_rad":100.0},{"average":8.129986308051935,"rel_min":0.2070596707718713,"rel_max":8.129986308051935,"scaled_dist":200.0,"scaled_rad":100.0},{"average":8.176838810042458,"rel_min":0.2070596707718713,"rel_max":8.176838810042458,"scaled_dist":200.0,"scaled_rad":100.0},{"average":8.225613040602369,"rel_min":0.2070596707718713,"rel_max":8.225613040602369,"scaled_dist":200.0,"scaled_rad":100.0},{"average":8.276493286715,"rel_min":0.2070596707718713,"rel_max":8.276493286715,"scaled_dist":200.0,"scaled_rad":100.0},{"average":8.324120718401742,"rel_min":0.2070596707718713,"rel_max":8.324120718401742,"scaled_dist":200.0,"scaled_rad":100.0},{"average":8.355760931279738,"rel_min":0.2070596707718713,"rel_max":8.355760931279738,"scaled_dist":200.0,"scaled_rad":100.0},{"average":8.403592119183616,"rel_min":0.2070596707718713,"rel_max":8.403592119183616,"scaled_dist":200.0,"scaled_rad":100.0},{"average":8.456954349645939,"rel_min":0.2070596707718713,"rel_max":8.456954349645939,"scaled_dist":200.0,"scaled_rad":100.0},{"average":8.511620789101334,"rel_min":0.2070596707718713,"rel_max":8.511620789101334,"scaled_dist":200.0,"scaled_rad":100.0},{"average":8.562413681909296,"rel_min":0.2070596707718713,"rel_max":8.562413681909296,"scaled_dist":200.0,"scaled_rad":100.0},{"average":8.61000742920631,"rel_min":0.2070596707718713,"rel_max":8.61000742920631,"scaled_dist":200.0,"scaled_rad":100.0},{"average":8.658164014793641,"rel_min":0.2070596707718713,"rel_max":8.658164014793641,"scaled_dist":200.0,"scaled_rad":100.0},{"average":8.70126427770311,"rel_min":0.2070596707718713,"rel_max":8.70126427770311,"scaled_dist":200.0,"scaled_rad":100.0},{"average":8.73861899956982,"rel_min":0.2070596707718713,"rel_max":8.73861899956982,"scaled_dist":200.0,"scaled_rad":100.0},{"average":8.779601710532189,"rel_min":0.2070596707718713,"rel_max":8.779601710532189,"scaled_dist":200.0,"scaled_rad":100.0},{"average":8.82298579975799,"rel_min":0.2070596707718713,"rel_max":8.82298579975799,"scaled_dist":200.0,"scaled_rad":100.0},{"average":8.869260970523447,"rel_min":0.2070596707718713,"rel_max":8.869260970523447,"scaled_dist":200.0,"scaled_rad":100.0},{"average":8.916653072557896,"rel_min":0.2070596707718713,"rel_max":8.916653072557896,"scaled_dist":200.0,"scaled_rad":100.0},{"average":8.964599530120768,"rel_min":0.2070596707718713,"rel_max":8.964599530120768,"scaled_dist":200.0,"scaled_rad":100.0},{"average":9.009843048583802,"rel_min":0.2070596707718713,"rel_max":9.009843048583802,"scaled_dist":200.0,"scaled_rad":100.0},{"average":9.059214763060641,"rel_min":0.2070596707718713,"rel_max":9.059214763060641,"scaled_dist":200.0,"scaled_rad":100.0},{"average":9.108098683359806,"rel_min":0.2070596707718713,"rel_max":9.108098683359806,"scaled_dist":200.0,"scaled_rad":100.0},{"average":9.158788973557076,"rel_min":0.2070596707718713,"rel_max":9.158788973557076,"scaled_dist":200.0,"scaled_rad":100.0},{"average":9.209676056689487,"rel_min":0.2070596707718713,"rel_max":9.209676056689487,"scaled_dist":200.0,"scaled_rad":100.0},{"average":9.256241369172391,"rel_min":0.2070596707718713,"rel_max":9.256241369172391,"scaled_dist":200.0,"scaled_rad":100.0},{"average":9.295954813981163,"rel_min":0.2070596707718713,"rel_max":9.295954813981163,"scaled_dist":200.0,"scaled_rad":100.0},{"average":9.33430452237828,"rel_min":0.2070596707718713,"rel_max":9.33430452237828,"scaled_dist":200.0,"scaled_rad":100.0},{"average":9.374140179495221,"rel_min":0.2070596707718713,"rel_max":9.374140179495221,"scaled_dist":200.0,"scaled_rad":100.0},{"average":9.417628219883811,"rel_min":0.2070596707718713,"rel_max":9.417628219883811,"scaled_dist":200.0,"scaled_rad":100.0},{"average":9.464656557543865,"rel_min":0.2070596707718713,"rel_max":9.464656557543865,"scaled_dist":200.0,"scaled_rad":100.0},{"average":9.512989609378215,"rel_min":0.2070596707718713,"rel_max":9.512989609378215,"scaled_dist":200.0,"scaled_rad":100.0},{"average":9.56235754309637,"rel_min":0.2070596707718713,"rel_max":9.56235754309637,"scaled_dist":200.0,"scaled_rad":100.0},{"average":9.612830911945089,"rel_min":0.2070596707718713,"rel_max":9.612830911945089,"scaled_dist":200.0,"scaled_rad":100.0},{"average":9.660033571148912,"rel_min":0.2070596707718713,"rel_max":9.660033571148912,"scaled_dist":200.0,"scaled_rad":100.0},{"average":9.708172332905843,"rel_min":0.2070596707718713,"rel_max":9.708172332905843,"scaled_dist":200.0,"scaled_rad":100.0},{"average":9.756640258503797,"rel_min":0.2070596707718713,"rel_max":9.756640258503797,"scaled_dist":200.0,"scaled_rad":100.0},{"average":9.80570535264593,"rel_min":0.2070596707718713,"rel_max":9.80570535264593,"scaled_dist":200.0,"scaled_rad":100.0},{"average":9.855027859520957,"rel_min":0.2070596707718713,"rel_max":9.855027859520957,"scaled_dist":200.0,"scaled_rad":100.0},{"average":9.905320441016753,"rel_min":0.2070596707718713,"rel_max":9.905320441016753,"scaled_dist":200.0,"scaled_rad":100.0},{"average":9.95611004539995,"rel_min":0.2070596707718713,"rel_max":9.95611004539995,"scaled_dist":200.0,"scaled_rad":100.0},{"average":10.007969466576448,"rel_min":0.2070596707718713,"rel_max":10.007969466576448,"scaled_dist":200.0,"scaled_rad":100.0},{"average":10.05677319922563,"rel_min":0.2070596707718713,"rel_max":10.05677319922563,"scaled_dist":200.0,"scaled_rad":100.0},{"average":10.111269933215496,"rel_min":0.2070596707718713,"rel_max":10.111269933215496,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":10.16849803999911,"rel_min":0.2070596707718713,"rel_max":10.16849803999911,"scaled_dist":200.0,"scaled_rad":100.0},{"average":10.222860064238978,"rel_min":0.2070596707718713,"rel_max":10.222860064238978,"scaled_dist":200.0,"scaled_rad":100.0},{"average":10.270493999371256,"rel_min":0.2070596707718713,"rel_max":10.270493999371256,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":10.314436677416085,"rel_min":0.2070596707718713,"rel_max":10.314436677416085,"scaled_dist":200.0,"scaled_rad":100.0},{"average":10.356359497584737,"rel_min":0.2070596707718713,"rel_max":10.356359497584737,"scaled_dist":200.0,"scaled_rad":100.0},{"average":10.399937259563444,"rel_min":0.2070596707718713,"rel_max":10.399937259563444,"scaled_dist":200.0,"scaled_rad":100.0},{"average":10.444989839397909,"rel_min":0.2070596707718713,"rel_max":10.444989839397909,"scaled_dist":200.0,"scaled_rad":100.0},{"average":10.491699203178499,"rel_min":0.2070596707718713,"rel_max":10.491699203178499,"scaled_dist":200.0,"scaled_rad":100.0},{"average":10.538451402494093,"rel_min":0.2070596707718713,"rel_max":10.538451402494093,"scaled_dist":200.0,"scaled_rad":100.0},{"average":10.583024754436618,"rel_min":0.2070596707718713,"rel_max":10.583024754436618,"scaled_dist":200.0,"scaled_rad":100.0},{"average":10.625075536327701,"rel_min":0.2070596707718713,"rel_max":10.625075536327701,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":10.669596108366541,"rel_min":0.2070596707718713,"rel_max":10.669596108366541,"scaled_dist":200.0,"scaled_rad":100.0},{"average":10.715298711186003,"rel_min":0.2070596707718713,"rel_max":10.715298711186003,"scaled_dist":200.0,"scaled_rad":100.0},{"average":10.767970615454193,"rel_min":0.2070596707718713,"rel_max":10.767970615454193,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":10.817956794471462,"rel_min":0.2070596707718713,"rel_max":10.817956794471462,"scaled_dist":200.0,"scaled_rad":100.0},{"average":10.879967056538062,"rel_min":0.2070596707718713,"rel_max":10.879967056538062,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":10.94747863891089,"rel_min":0.2070596707718713,"rel_max":10.94747863891089,"scaled_dist":200.0,"scaled_rad":100.0},{"average":10.997203431987575,"rel_min":0.2070596707718713,"rel_max":10.997203431987575,"scaled_dist":200.0,"scaled_rad":100.0},{"average":11.03953403760753,"rel_min":0.2070596707718713,"rel_max":11.03953403760753,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":11.087139982320359,"rel_min":0.2070596707718713,"rel_max":11.087139982320359,"scaled_dist":200.0,"scaled_rad":100.0},{"average":11.136205440216676,"rel_min":0.2070596707718713,"rel_max":11.136205440216676,"scaled_dist":200.0,"scaled_rad":100.0},{"average":11.18708998036124,"rel_min":0.2070596707718713,"rel_max":11.18708998036124,"scaled_dist":200.0,"scaled_rad":100.0},{"average":11.235256141437025,"rel_min":0.2070596707718713,"rel_max":11.235256141437025,"scaled_dist":200.0,"scaled_rad":100.0},{"average":11.28274283332009,"rel_min":0.2070596707718713,"rel_max":11.28274283332009,"scaled_dist":200.0,"scaled_rad":100.0},{"average":11.331801488595277,"rel_min":0.2070596707718713,"rel_max":11.331801488595277,"scaled_dist":200.0,"scaled_rad":100.0},{"average":11.37990890091555,"rel_min":0.2070596707718713,"rel_max":11.37990890091555,"scaled_dist":200.0,"scaled_rad":100.0},{"average":11.427317709867227,"rel_min":0.2070596707718713,"rel_max":11.427317709867227,"scaled_dist":200.0,"scaled_rad":100.0},{"average":11.474253410061417,"rel_min":0.2070596707718713,"rel_max":11.474253410061417,"scaled_dist":200.0,"scaled_rad":100.0},{"average":11.521204265515033,"rel_min":0.2070596707718713,"rel_max":11.521204265515033,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":11.568382886965974,"rel_min":0.2070596707718713,"rel_max":11.568382886965974,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":11.614183739812246,"rel_min":0.2070596707718713,"rel_max":11.614183739812246,"scaled_dist":200.0,"scaled_rad":100.0},{"average":11.6628797184606,"rel_min":0.2070596707718713,"rel_max":11.6628797184606,"scaled_dist":200.0,"scaled_rad":100.0},{"average":11.70899201133785,"rel_min":0.2070596707718713,"rel_max":11.70899201133785,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":11.737385564537908,"rel_min":0.2070596707718713,"rel_max":11.737385564537908,"scaled_dist":200.0,"scaled_rad":100.0},{"average":11.78339869833779,"rel_min":0.2070596707718713,"rel_max":11.78339869833779,"scaled_dist":200.0,"scaled_rad":100.0},{"average":11.821646553405404,"rel_min":0.2070596707718713,"rel_max":11.821646553405404,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":11.864386666916598,"rel_min":0.2070596707718713,"rel_max":11.864386666916598,"scaled_dist":200.0,"scaled_rad":100.0},{"average":11.916384733611503,"rel_min":0.2070596707718713,"rel_max":11.916384733611503,"scaled_dist":200.0,"scaled_rad":100.0},{"average":11.958779579520616,"rel_min":0.2070596707718713,"rel_max":11.958779579520616,"scaled_dist":200.0,"scaled_rad":100.0},{"average":11.994692049779498,"rel_min":0.2070596707718713,"rel_max":11.994692049779498,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":12.035102677563826,"rel_min":0.2070596707718713,"rel_max":12.035102677563826,"scaled_dist":200.0,"scaled_rad":100.0},{"average":12.074870037243231,"rel_min":0.2070596707718713,"rel_max":12.074870037243231,"scaled_dist":200.0,"scaled_rad":100.0},{"average":12.12114809291861,"rel_min":0.2070596707718713,"rel_max":12.12114809291861,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":12.167330785295665,"rel_min":0.2070596707718713,"rel_max":12.167330785295665,"scaled_dist":200.0,"scaled_rad":100.0},{"average":12.214668944204261,"rel_min":0.2070596707718713,"rel_max":12.214668944204261,"scaled_dist":200.0,"scaled_rad":100.0},{"average":12.261774970559069,"rel_min":0.2070596707718713,"rel_max":12.261774970559069,"scaled_dist":200.0,"scaled_rad":100.0},{"average":12.310893651275407,"rel_min":0.2070596707718713,"rel_max":12.310893651275407,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":12.358283276889354,"rel_min":0.2070596707718713,"rel_max":12.358283276889354,"scaled_dist":200.0,"scaled_rad":100.0},{"average":12.40939581836445,"rel_min":0.2070596707718713,"rel_max":12.40939581836445,"scaled_dist":200.0,"scaled_rad":100.0},{"average":12.461319945556731,"rel_min":0.2070596707718713,"rel_max":12.461319945556731,"scaled_dist":200.0,"scaled_rad":100.0},{"average":12.51224953820963,"rel_min":0.2070596707718713,"rel_max":12.51224953820963,"scaled_dist":200.0,"scaled_rad":100.0},{"average":12.565710692507599,"rel_min":0.2070596707718713,"rel_max":12.565710692507599,"scaled_dist":200.0,"scaled_rad":100.0},{"average":12.621339453881934,"rel_min":0.2070596707718713,"rel_max":12.621339453881934,"scaled_dist":200.0,"scaled_rad":100.0},{"average":12.66721436479278,"rel_min":0.2070596707718713,"rel_max":12.66721436479278,"scaled_dist":200.0,"scaled_rad":100.0},{"average":12.71602818612305,"rel_min":0.2070596707718713,"rel_max":12.71602818612305,"scaled_dist":200.0,"scaled_rad":100.0},{"average":12.761818920984958,"rel_min":0.2070596707718713,"rel_max":12.761818920984958,"scaled_dist":200.0,"scaled_rad":100.0},{"average":12.808082238805367,"rel_min":0.2070596707718713,"rel_max":12.808082238805367,"scaled_dist":200.0,"scaled_rad":100.0},{"average":12.856250006477632,"rel_min":0.2070596707718713,"rel_max":12.856250006477632,"scaled_dist":200.0,"scaled_rad":100.0},{"average":12.906645100471096,"rel_min":0.2070596707718713,"rel_max":12.906645100471096,"scaled_dist":200.0,"scaled_rad":100.0},{"average":12.957207156459006,"rel_min":0.2070596707718713,"rel_max":12.957207156459006,"scaled_dist":200.0,"scaled_rad":100.0},{"average":13.005785497681385,"rel_min":0.2070596707718713,"rel_max":13.005785497681385,"scaled_dist":200.0,"scaled_rad":100.0},{"average":13.052982475178519,"rel_min":0.2070596707718713,"rel_max":13.052982475178519,"scaled_dist":200.0,"scaled_rad":100.0},{"average":13.101210088823878,"rel_min":0.2070596707718713,"rel_max":13.101210088823878,"scaled_dist":200.0,"scaled_rad":100.0},{"average":13.148838538909777,"rel_min":0.2070596707718713,"rel_max":13.148838538909777,"scaled_dist":200.0,"scaled_rad":100.0},{"average":13.200957891367814,"rel_min":0.2070596707718713,"rel_max":13.200957891367814,"scaled_dist":200.0,"scaled_rad":100.0},{"average":13.232438954501957,"rel_min":0.2070596707718713,"rel_max":13.232438954501957,"scaled_dist":200.0,"scaled_rad":100.0},{"average":13.280394246975273,"rel_min":0.2070596707718713,"rel_max":13.280394246975273,"scaled_dist":200.0,"scaled_rad":100.0},{"average":13.32635712378958,"rel_min":0.2070596707718713,"rel_max":13.32635712378958,"scaled_dist":200.0,"scaled_rad":100.0},{"average":13.37467334029731,"rel_min":0.2070596707718713,"rel_max":13.37467334029731,"scaled_dist":200.0,"scaled_rad":100.0},{"average":13.424790716314707,"rel_min":0.2070596707718713,"rel_max":13.424790716314707,"scaled_dist":200.0,"scaled_rad":100.0},{"average":13.478033408905272,"rel_min":0.2070596707718713,"rel_max":13.478033408905272,"scaled_dist":200.0,"scaled_rad":100.0},{"average":13.530804034080713,"rel_min":0.2070596707718713,"rel_max":13.530804034080713,"scaled_dist":200.0,"scaled_rad":100.0},{"average":13.581519133019128,"rel_min":0.2070596707718713,"rel_max":13.581519133019128,"scaled_dist":200.0,"scaled_rad":100.0},{"average":13.631606221359506,"rel_min":0.2070596707718713,"rel_max":13.631606221359506,"scaled_dist":200.0,"scaled_rad":100.0},{"average":13.680564142118996,"rel_min":0.2070596707718713,"rel_max":13.680564142118996,"scaled_dist":200.0,"scaled_rad":100.0},{"average":13.726903860155202,"rel_min":0.2070596707718713,"rel_max":13.726903860155202,"scaled_dist":200.0,"scaled_rad":100.0},{"average":13.77310998720941,"rel_min":0.2070596707718713,"rel_max":13.77310998720941,"scaled_dist":200.0,"scaled_rad":100.0},{"average":13.81905944318059,"rel_min":0.2070596707718713,"rel_max":13.81905944318059,"scaled_dist":200.0,"scaled_rad":100.0},{"average":13.863059221311083,"rel_min":0.2070596707718713,"rel_max":13.863059221311083,"scaled_dist":200.0,"scaled_rad":100.0},{"average":13.908232668758146,"rel_min":0.2070596707718713,"rel_max":13.908232668758146,"scaled_dist":200.0,"scaled_rad":100.0},{"average":13.955728445748978,"rel_min":0.2070596707718713,"rel_max":13.955728445748978,"scaled_dist":200.0,"scaled_rad":100.0},{"average":14.00574590000695,"rel_min":0.2070596707718713,"rel_max":14.00574590000695,"scaled_dist":200.0,"scaled_rad":100.0},{"average":14.054276576560945,"rel_min":0.2070596707718713,"rel_max":14.054276576560945,"scaled_dist":200.0,"scaled_rad":100.0},{"average":14.103415604458581,"rel_min":0.2070596707718713,"rel_max":14.103415604458581,"scaled_dist":200.0,"scaled_rad":100.0},{"average":14.15316989625933,"rel_min":0.2070596707718713,"rel_max":14.15316989625933,"scaled_dist":200.0,"scaled_rad":100.0},{"average":14.20109515725556,"rel_min":0.2070596707718713,"rel_max":14.20109515725556,"scaled_dist":200.0,"scaled_rad":100.0},{"average":14.247869266245031,"rel_min":0.2070596707718713,"rel_max":14.247869266245031,"scaled_dist":200.0,"scaled_rad":100.0},{"average":14.29074571244042,"rel_min":0.2070596707718713,"rel_max":14.29074571244042,"scaled_dist":200.0,"scaled_rad":100.0},{"average":14.331199890927085,"rel_min":0.2070596707718713,"rel_max":14.331199890927085,"scaled_dist":200.0,"scaled_rad":100.0},{"average":14.372237971202926,"rel_min":0.2070596707718713,"rel_max":14.372237971202926,"scaled_dist":200.0,"scaled_rad":100.0},{"average":14.416491163498351,"rel_min":0.2070596707718713,"rel_max":14.416491163498351,"scaled_dist":200.0,"scaled_rad":100.0},{"average":14.458167193710018,"rel_min":0.2070596707718713,"rel_max":14.458167193710018,"scaled_dist":200.0,"scaled_rad":100.0},{"average":14.50302644709765,"rel_min":0.2070596707718713,"rel_max":14.50302644709765,"scaled_dist":200.0,"scaled_rad":100.0},{"average":14.554050027701198,"rel_min":0.2070596707718713,"rel_max":14.554050027701198,"scaled_dist":200.0,"scaled_rad":100.0},{"average":14.598585114163116,"rel_min":0.2070596707718713,"rel_max":14.598585114163116,"scaled_dist":200.0,"scaled_rad":100.0},{"average":14.643621074094797,"rel_min":0.2070596707718713,"rel_max":14.643621074094797,"scaled_dist":200.0,"scaled_rad":100.0},{"average":14.68872701086584,"rel_min":0.2070596707718713,"rel_max":14.68872701086584,"scaled_dist":200.0,"scaled_rad":100.0},{"average":14.735253450735346,"rel_min":0.2070596707718713,"rel_max":14.735253450735346,"scaled_dist":200.0,"scaled_rad":100.0},{"average":14.782560175364226,"rel_min":0.2070596707718713,"rel_max":14.782560175364226,"scaled_dist":200.0,"scaled_rad":100.0},{"average":14.827382743817886,"rel_min":0.2070596707718713,"rel_max":14.827382743817886,"scaled_dist":200.0,"scaled_rad":100.0},{"average":14.873856921027057,"rel_min":0.2070596707718713,"rel_max":14.873856921027057,"scaled_dist":200.0,"scaled_rad":100.0},{"average":14.920932795495924,"rel_min":0.2070596707718713,"rel_max":14.920932795495924,"scaled_dist":200.0,"scaled_rad":100.0},{"average":14.968997315720848,"rel_min":0.2070596707718713,"rel_max":14.968997315720848,"scaled_dist":200.0,"scaled_rad":100.0},{"average":15.017591518437083,"rel_min":0.2070596707718713,"rel_max":15.017591518437083,"scaled_dist":200.0,"scaled_rad":100.0},{"average":15.065081309178018,"rel_min":0.2070596707718713,"rel_max":15.065081309178018,"scaled_dist":200.0,"scaled_rad":100.0},{"average":15.115799981457037,"rel_min":0.2070596707718713,"rel_max":15.115799981457037,"scaled_dist":200.0,"scaled_rad":100.0},{"average":15.169194351762732,"rel_min":0.2070596707718713,"rel_max":15.169194351762732,"scaled_dist":200.0,"scaled_rad":100.0},{"average":15.223825943710407,"rel_min":0.2070596707718713,"rel_max":15.223825943710407,"scaled_dist":200.0,"scaled_rad":100.0},{"average":15.281717316436355,"rel_min":0.2070596707718713,"rel_max":15.281717316436355,"scaled_dist":200.0,"scaled_rad":100.0},{"average":15.340159177564384,"rel_min":0.2070596707718713,"rel_max":15.340159177564384,"scaled_dist":200.0,"scaled_rad":100.0},{"average":15.39333547095635,"rel_min":0.2070596707718713,"rel_max":15.39333547095635,"scaled_dist":200.0,"scaled_rad":100.0},{"average":15.442545611609727,"rel_min":0.2070596707718713,"rel_max":15.442545611609727,"scaled_dist":200.0,"scaled_rad":100.0},{"average":15.489749637883873,"rel_min":0.2070596707718713,"rel_max":15.489749637883873,"scaled_dist":200.0,"scaled_rad":100.0},{"average":15.537853340261737,"rel_min":0.2070596707718713,"rel_max":15.537853340261737,"scaled_dist":200.0,"scaled_rad":100.0},{"average":15.58632301923538,"rel_min":0.2070596707718713,"rel_max":15.58632301923538,"scaled_dist":200.0,"scaled_rad":100.0},{"average":15.631373695687499,"rel_min":0.2070596707718713,"rel_max":15.631373695687499,"scaled_dist":200.0,"scaled_rad":100.0},{"average":15.675136884828424,"rel_min":0.2070596707718713,"rel_max":15.675136884828424,"scaled_dist":200.0,"scaled_rad":100.0},{"average":15.722772718714943,"rel_min":0.2070596707718713,"rel_max":15.722772718714943,"scaled_dist":200.0,"scaled_rad":100.0},{"average":15.773098860608801,"rel_min":0.2070596707718713,"rel_max":15.773098860608801,"scaled_dist":200.0,"scaled_rad":100.0},{"average":15.819929830120671,"rel_min":0.2070596707718713,"rel_max":15.819929830120671,"scaled_dist":200.0,"scaled_rad":100.0},{"average":15.864082062342248,"rel_min":0.2070596707718713,"rel_max":15.864082062342248,"scaled_dist":200.0,"scaled_rad":100.0},{"average":15.910929528447284,"rel_min":0.2070596707718713,"rel_max":15.910929528447284,"scaled_dist":200.0,"scaled_rad":100.0},{"average":15.956232437649149,"rel_min":0.2070596707718713,"rel_max":15.956232437649149,"scaled_dist":200.0,"scaled_rad":100.0},{"average":15.996734554925848,"rel_min":0.2070596707718713,"rel_max":15.996734554925848,"scaled_dist":200.0,"scaled_rad":100.0},{"average":16.04018370896293,"rel_min":0.2070596707718713,"rel_max":16.04018370896293,"scaled_dist":200.0,"scaled_rad":100.0},{"average":16.084424005645804,"rel_min":0.2070596707718713,"rel_max":16.084424005645804,"scaled_dist":200.0,"scaled_rad":100.0},{"average":16.13263313437848,"rel_min":0.2070596707718713,"rel_max":16.13263313437848,"scaled_dist":200.0,"scaled_rad":100.0},{"average":16.176927849730394,"rel_min":0.2070596707718713,"rel_max":16.176927849730394,"scaled_dist":200.0,"scaled_rad":100.0},{"average":16.22347238475431,"rel_min":0.2070596707718713,"rel_max":16.22347238475431,"scaled_dist":200.0,"scaled_rad":100.0},{"average":16.26887840150736,"rel_min":0.2070596707718713,"rel_max":16.26887840150736,"scaled_dist":200.0,"scaled_rad":100.0},{"average":16.318070333386334,"rel_min":0.2070596707718713,"rel_max":16.318070333386334,"scaled_dist":200.0,"scaled_rad":100.0},{"average":16.359484386130294,"rel_min":0.2070596707718713,"rel_max":16.359484386130294,"scaled_dist":200.0,"scaled_rad":100.0},{"average":16.40047946331524,"rel_min":0.2070596707718713,"rel_max":16.40047946331524,"scaled_dist":200.0,"scaled_rad":100.0},{"average":16.44174410101359,"rel_min":0.2070596707718713,"rel_max":16.44174410101359,"scaled_dist":200.0,"scaled_rad":100.0},{"average":16.484574342728205,"rel_min":0.2070596707718713,"rel_max":16.484574342728205,"scaled_dist":200.0,"scaled_rad":100.0},{"average":16.527859359887078,"rel_min":0.2070596707718713,"rel_max":16.527859359887078,"scaled_dist":200.0,"scaled_rad":100.0},{"average":16.580881378808495,"rel_min":0.2070596707718713,"rel_max":16.580881378808495,"scaled_dist":200.0,"scaled_rad":100.0},{"average":16.633796944362572,"rel_min":0.2070596707718713,"rel_max":16.633796944362572,"scaled_dist":200.0,"scaled_rad":100.0},{"average":16.681422876757907,"rel_min":0.2070596707718713,"rel_max":16.681422876757907,"scaled_dist":200.0,"scaled_rad":100.0},{"average":16.728890157089314,"rel_min":0.2070596707718713,"rel_max":16.728890157089314,"scaled_dist":200.0,"scaled_rad":100.0},{"average":16.778649398074265,"rel_min":0.2070596707718713,"rel_max":16.778649398074265,"scaled_dist":200.0,"scaled_rad":100.0},{"average":16.830009249032045,"rel_min":0.2070596707718713,"rel_max":16.830009249032045,"scaled_dist":200.0,"scaled_rad":100.0},{"average":16.881413632892958,"rel_min":0.2070596707718713,"rel_max":16.881413632892958,"scaled_dist":200.0,"scaled_rad":100.0},{"average":16.93262617155642,"rel_min":0.2070596707718713,"rel_max":16.93262617155642,"scaled_dist":200.0,"scaled_rad":100.0},{"average":16.983538841831212,"rel_min":0.2070596707718713,"rel_max":16.983538841831212,"scaled_dist":200.0,"scaled_rad":100.0},{"average":17.038695648097693,"rel_min":0.2070596707718713,"rel_max":17.038695648097693,"scaled_dist":200.0,"scaled_rad":100.0},{"average":17.147354120975624,"rel_min":0.2070596707718713,"rel_max":17.147354120975624,"scaled_dist":200.0,"scaled_rad":100.0},{"average":17.198391703699205,"rel_min":0.2070596707718713,"rel_max":17.198391703699205,"scaled_dist":200.0,"scaled_rad":100.0},{"average":17.244027104909573,"rel_min":0.2070596707718713,"rel_max":17.244027104909573,"scaled_dist":200.0,"scaled_rad":100.0},{"average":17.286341247143994,"rel_min":0.2070596707718713,"rel_max":17.286341247143994,"scaled_dist":200.0,"scaled_rad":100.0},{"average":17.330748134291674,"rel_min":0.2070596707718713,"rel_max":17.330748134291674,"scaled_dist":200.0,"scaled_rad":100.0},{"average":17.376523976833273,"rel_min":0.2070596707718713,"rel_max":17.376523976833273,"scaled_dist":200.0,"scaled_rad":100.0},{"average":17.423182034884135,"rel_min":0.2070596707718713,"rel_max":17.423182034884135,"scaled_dist":200.0,"scaled_rad":100.0},{"average":17.47248528833255,"rel_min":0.2070596707718713,"rel_max":17.47248528833255,"scaled_dist":200.0,"scaled_rad":100.0},{"average":17.523979821623012,"rel_min":0.2070596707718713,"rel_max":17.523979821623012,"scaled_dist":200.0,"scaled_rad":100.0},{"average":17.573714863404444,"rel_min":0.2070596707718713,"rel_max":17.573714863404444,"scaled_dist":200.0,"scaled_rad":100.0},{"average":17.62133602958319,"rel_min":0.2070596707718713,"rel_max":17.62133602958319,"scaled_dist":200.0,"scaled_rad":100.0},{"average":17.668370282776053,"rel_min":0.2070596707718713,"rel_max":17.668370282776053,"scaled_dist":200.0,"scaled_rad":100.0},{"average":17.713191103507373,"rel_min":0.2070596707718713,"rel_max":17.713191103507373,"scaled_dist":200.0,"scaled_rad":100.0},{"average":17.75202178126178,"rel_min":0.2070596707718713,"rel_max":17.75202178126178,"scaled_dist":200.0,"scaled_rad":100.0},{"average":17.788185172351593,"rel_min":0.2070596707718713,"rel_max":17.788185172351593,"scaled_dist":200.0,"scaled_rad":100.0},{"average":17.827297383338163,"rel_min":0.2070596707718713,"rel_max":17.827297383338163,"scaled_dist":200.0,"scaled_rad":100.0},{"average":17.865438043148934,"rel_min":0.2070596707718713,"rel_max":17.865438043148934,"scaled_dist":200.0,"scaled_rad":100.0},{"average":17.901386947514574,"rel_min":0.2070596707718713,"rel_max":17.901386947514574,"scaled_dist":200.0,"scaled_rad":100.0},{"average":17.94223654172083,"rel_min":0.2070596707718713,"rel_max":17.94223654172083,"scaled_dist":200.0,"scaled_rad":100.0},{"average":17.98925313782692,"rel_min":0.2070596707718713,"rel_max":17.98925313782692,"scaled_dist":200.0,"scaled_rad":100.0},{"average":18.036952070476676,"rel_min":0.2070596707718713,"rel_max":18.036952070476676,"scaled_dist":200.0,"scaled_rad":100.0},{"average":18.080511783983606,"rel_min":0.2070596707718713,"rel_max":18.080511783983606,"scaled_dist":200.0,"scaled_rad":100.0},{"average":18.12813049744797,"rel_min":0.2070596707718713,"rel_max":18.12813049744797,"scaled_dist":200.0,"scaled_rad":100.0},{"average":18.17574921267568,"rel_min":0.2070596707718713,"rel_max":18.17574921267568,"scaled_dist":200.0,"scaled_rad":100.0},{"average":18.223367929652817,"rel_min":0.2070596707718713,"rel_max":18.223367929652817,"scaled_dist":200.0,"scaled_rad":100.0},{"average":18.27098664836561,"rel_min":0.2070596707718713,"rel_max":18.27098664836561,"scaled_dist":200.0,"scaled_rad":100.0},{"average":18.318659947736954,"rel_min":0.2070596707718713,"rel_max":18.318659947736954,"scaled_dist":200.0,"scaled_rad":100.0},{"average":18.38707694212392,"rel_min":0.2070596707718713,"rel_max":18.38707694212392,"scaled_dist":200.0,"scaled_rad":100.0},{"average":18.436110932272786,"rel_min":0.2070596707718713,"rel_max":18.436110932272786,"scaled_dist":200.0,"scaled_rad":100.0},{"average":18.484824154808447,"rel_min":0.2070596707718713,"rel_max":18.484824154808447,"scaled_dist":200.0,"scaled_rad":100.0},{"average":18.533581248761443,"rel_min":0.2070596707718713,"rel_max":18.533581248761443,"scaled_dist":200.0,"scaled_rad":100.0},{"average":18.562361876869332,"rel_min":0.2070596707718713,"rel_max":18.562361876869332,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":18.61046296812568,"rel_min":0.2070596707718713,"rel_max":18.61046296812568,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":18.660056044885128,"rel_min":0.2070596707718713,"rel_max":18.660056044885128,"scaled_dist":200.0,"scaled_rad":100.0},{"average":18.71160655474343,"rel_min":0.2070596707718713,"rel_max":18.71160655474343,"scaled_dist":200.0,"scaled_rad":100.0},{"average":18.76378040479828,"rel_min":0.2070596707718713,"rel_max":18.76378040479828,"scaled_dist":200.0,"scaled_rad":100.0},{"average":18.814350283396067,"rel_min":0.2070596707718713,"rel_max":18.814350283396067,"scaled_dist":200.0,"scaled_rad":100.0},{"average":18.86261818814004,"rel_min":0.2070596707718713,"rel_max":18.86261818814004,"scaled_dist":200.0,"scaled_rad":100.0},{"average":18.91049301626099,"rel_min":0.2070596707718713,"rel_max":18.91049301626099,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":18.946461357011035,"rel_min":0.2070596707718713,"rel_max":18.946461357011035,"scaled_dist":200.0,"scaled_rad":100.0},{"average":18.989633537158763,"rel_min":0.2070596707718713,"rel_max":18.989633537158763,"scaled_dist":200.0,"scaled_rad":100.0},{"average":19.036181057463402,"rel_min":0.2070596707718713,"rel_max":19.036181057463402,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":19.082888902586863,"rel_min":0.2070596707718713,"rel_max":19.082888902586863,"scaled_dist":200.0,"scaled_rad":100.0},{"average":19.1282558146011,"rel_min":0.2070596707718713,"rel_max":19.1282558146011,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":19.177247406027856,"rel_min":0.2070596707718713,"rel_max":19.177247406027856,"scaled_dist":200.0,"scaled_rad":100.0},{"average":19.228011686327005,"rel_min":0.2070596707718713,"rel_max":19.228011686327005,"scaled_dist":200.0,"scaled_rad":100.0},{"average":19.278056417409843,"rel_min":0.2070596707718713,"rel_max":19.278056417409843,"scaled_dist":200.0,"scaled_rad":100.0},{"average":19.324911116732327,"rel_min":0.2070596707718713,"rel_max":19.324911116732327,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":19.37143802369529,"rel_min":0.2070596707718713,"rel_max":19.37143802369529,"scaled_dist":200.0,"scaled_rad":100.0},{"average":19.41919632617916,"rel_min":0.2070596707718713,"rel_max":19.41919632617916,"scaled_dist":200.0,"scaled_rad":100.0},{"average":19.4667430166142,"rel_min":0.2070596707718713,"rel_max":19.4667430166142,"scaled_dist":200.0,"scaled_rad":100.0},{"average":19.513651452407657,"rel_min":0.2070596707718713,"rel_max":19.513651452407657,"scaled_dist":200.0,"scaled_rad":100.0},{"average":19.560269566141518,"rel_min":0.2070596707718713,"rel_max":19.560269566141518,"scaled_dist":200.0,"scaled_rad":100.0},{"average":19.608133268505178,"rel_min":0.2070596707718713,"rel_max":19.608133268505178,"scaled_dist":200.0,"scaled_rad":100.0},{"average":19.65882879969092,"rel_min":0.2070596707718713,"rel_max":19.65882879969092,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":19.72748148822476,"rel_min":0.2070596707718713,"rel_max":19.72748148822476,"scaled_dist":200.0,"scaled_rad":100.0},{"average":19.786405435170405,"rel_min":0.2070596707718713,"rel_max":19.786405435170405,"scaled_dist":200.0,"scaled_rad":100.0},{"average":19.843894643077014,"rel_min":0.2070596707718713,"rel_max":19.843894643077014,"scaled_dist":200.0,"scaled_rad":100.0},{"average":19.89916025371016,"rel_min":0.2070596707718713,"rel_max":19.89916025371016,"scaled_dist":200.0,"scaled_rad":100.0},{"average":19.956723756923612,"rel_min":0.2070596707718713,"rel_max":19.956723756923612,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":19.986209635476534,"rel_min":0.2070596707718713,"rel_max":19.986209635476534,"scaled_dist":200.0,"scaled_rad":100.0},{"average":20.037116498082614,"rel_min":0.2070596707718713,"rel_max":20.037116498082614,"scaled_dist":200.0,"scaled_rad":100.0},{"average":20.088384720921432,"rel_min":0.2070596707718713,"rel_max":20.088384720921432,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":20.140456656669976,"rel_min":0.2070596707718713,"rel_max":20.140456656669976,"scaled_dist":200.0,"scaled_rad":100.0},{"average":20.180347628576385,"rel_min":0.2070596707718713,"rel_max":20.180347628576385,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":20.238854492827112,"rel_min":0.2070596707718713,"rel_max":20.238854492827112,"scaled_dist":200.0,"scaled_rad":100.0},{"average":20.29246301666958,"rel_min":0.2070596707718713,"rel_max":20.29246301666958,"scaled_dist":200.0,"scaled_rad":100.0},{"average":20.338245223149563,"rel_min":0.2070596707718713,"rel_max":20.338245223149563,"scaled_dist":200.0,"scaled_rad":100.0},{"average":20.375863722934714,"rel_min":0.2070596707718713,"rel_max":20.375863722934714,"scaled_dist":200.0,"scaled_rad":100.0},{"average":20.41482312665767,"rel_min":0.2070596707718713,"rel_max":20.41482312665767,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":20.459564059338142,"rel_min":0.2070596707718713,"rel_max":20.459564059338142,"scaled_dist":200.0,"scaled_rad":100.0},{"average":20.507919693197234,"rel_min":0.2070596707718713,"rel_max":20.507919693197234,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":20.557319861818907,"rel_min":0.2070596707718713,"rel_max":20.557319861818907,"scaled_dist":200.0,"scaled_rad":100.0},{"average":20.608424344678035,"rel_min":0.2070596707718713,"rel_max":20.608424344678035,"scaled_dist":200.0,"scaled_rad":100.0},{"average":20.663795545319314,"rel_min":0.2070596707718713,"rel_max":20.663795545319314,"scaled_dist":200.0,"scaled_rad":100.0},{"average":20.71673407474021,"rel_min":0.2070596707718713,"rel_max":20.71673407474021,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":20.763466858222912,"rel_min":0.2070596707718713,"rel_max":20.763466858222912,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":20.809340147410737,"rel_min":0.2070596707718713,"rel_max":20.809340147410737,"scaled_dist":200.0,"scaled_rad":100.0},{"average":20.855956519921406,"rel_min":0.2070596707718713,"rel_max":20.855956519921406,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":20.902126415007807,"rel_min":0.2070596707718713,"rel_max":20.902126415007807,"scaled_dist":200.0,"scaled_rad":100.0},{"average":20.945134106880257,"rel_min":0.2070596707718713,"rel_max":20.945134106880257,"scaled_dist":200.0,"scaled_rad":100.0},{"average":20.982982199129633,"rel_min":0.2070596707718713,"rel_max":20.982982199129633,"scaled_dist":200.0,"scaled_rad":100.0},{"average":21.019685115701648,"rel_min":0.2070596707718713,"rel_max":21.019685115701648,"scaled_dist":200.0,"scaled_rad":100.0},{"average":21.070371715588532,"rel_min":0.2070596707718713,"rel_max":21.070371715588532,"scaled_dist":200.0,"scaled_rad":100.0},{"average":21.119096814834585,"rel_min":0.2070596707718713,"rel_max":21.119096814834585,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":21.16553842368934,"rel_min":0.2070596707718713,"rel_max":21.16553842368934,"scaled_dist":200.0,"scaled_rad":100.0},{"average":21.209607772365374,"rel_min":0.2070596707718713,"rel_max":21.209607772365374,"scaled_dist":200.0,"scaled_rad":100.0},{"average":21.25403100161812,"rel_min":0.2070596707718713,"rel_max":21.25403100161812,"scaled_dist":200.0,"scaled_rad":100.0},{"average":21.297462363937147,"rel_min":0.2070596707718713,"rel_max":21.297462363937147,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":21.342459767364833,"rel_min":0.2070596707718713,"rel_max":21.342459767364833,"scaled_dist":200.0,"scaled_rad":100.0},{"average":21.387131894644114,"rel_min":0.2070596707718713,"rel_max":21.387131894644114,"scaled_dist":200.0,"scaled_rad":100.0},{"average":21.43158615950808,"rel_min":0.2070596707718713,"rel_max":21.43158615950808,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":21.47798559759097,"rel_min":0.2070596707718713,"rel_max":21.47798559759097,"scaled_dist":200.0,"scaled_rad":100.0},{"average":21.523398919452386,"rel_min":0.2070596707718713,"rel_max":21.523398919452386,"scaled_dist":200.0,"scaled_rad":100.0},{"average":21.58827076019591,"rel_min":0.2070596707718713,"rel_max":21.58827076019591,"scaled_dist":200.0,"scaled_rad":100.0},{"average":21.632788712499625,"rel_min":0.2070596707718713,"rel_max":21.632788712499625,"scaled_dist":200.0,"scaled_rad":100.0},{"average":21.6778036465439,"rel_min":0.2070596707718713,"rel_max":21.6778036465439,"scaled_dist":200.0,"scaled_rad":100.0},{"average":21.72756997468713,"rel_min":0.2070596707718713,"rel_max":21.72756997468713,"scaled_dist":200.0,"scaled_rad":100.0},{"average":21.7796939954854,"rel_min":0.2070596707718713,"rel_max":21.7796939954854,"scaled_dist":200.0,"scaled_rad":100.0},{"average":21.832522746599327,"rel_min":0.2070596707718713,"rel_max":21.832522746599327,"scaled_dist":200.0,"scaled_rad":100.0},{"average":21.883871650450867,"rel_min":0.2070596707718713,"rel_max":21.883871650450867,"scaled_dist":200.0,"scaled_rad":100.0},{"average":21.927248763848812,"rel_min":0.2070596707718713,"rel_max":21.927248763848812,"scaled_dist":200.0,"scaled_rad":100.0},{"average":21.9840862803079,"rel_min":0.2070596707718713,"rel_max":21.9840862803079,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":22.037235438623505,"rel_min":0.2070596707718713,"rel_max":22.037235438623505,"scaled_dist":200.0,"scaled_rad":100.0},{"average":22.088631667637152,"rel_min":0.2070596707718713,"rel_max":22.088631667637152,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":22.139049388907715,"rel_min":0.2070596707718713,"rel_max":22.139049388907715,"scaled_dist":200.0,"scaled_rad":100.0},{"average":22.190698263461357,"rel_min":0.2070596707718713,"rel_max":22.190698263461357,"scaled_dist":200.0,"scaled_rad":100.0},{"average":22.2462790665908,"rel_min":0.2070596707718713,"rel_max":22.2462790665908,"scaled_dist":200.0,"scaled_rad":100.0},{"average":22.28917084376776,"rel_min":0.2070596707718713,"rel_max":22.28917084376776,"scaled_dist":200.0,"scaled_rad":100.0},{"average":22.32955366242896,"rel_min":0.2070596707718713,"rel_max":22.32955366242896,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":22.39706591585331,"rel_min":0.2070596707718713,"rel_max":22.39706591585331,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":22.428027169991857,"rel_min":0.2070596707718713,"rel_max":22.428027169991857,"scaled_dist":200.0,"scaled_rad":100.0},{"average":22.463253739878603,"rel_min":0.2070596707718713,"rel_max":22.463253739878603,"scaled_dist":200.0,"scaled_rad":100.0},{"average":22.50557734468756,"rel_min":0.2070596707718713,"rel_max":22.50557734468756,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":22.551741265352312,"rel_min":0.2070596707718713,"rel_max":22.551741265352312,"scaled_dist":200.0,"scaled_rad":100.0},{"average":22.60005654877547,"rel_min":0.2070596707718713,"rel_max":22.60005654877547,"scaled_dist":200.0,"scaled_rad":100.0},{"average":22.64504154336498,"rel_min":0.2070596707718713,"rel_max":22.64504154336498,"scaled_dist":200.0,"scaled_rad":100.0},{"average":22.687521077198955,"rel_min":0.2070596707718713,"rel_max":22.687521077198955,"scaled_dist":200.0,"scaled_rad":100.0},{"average":22.730641570652566,"rel_min":0.2070596707718713,"rel_max":22.730641570652566,"scaled_dist":200.0,"scaled_rad":100.0},{"average":22.77331615324382,"rel_min":0.2070596707718713,"rel_max":22.77331615324382,"scaled_dist":200.0,"scaled_rad":100.0},{"average":22.815575913569724,"rel_min":0.2070596707718713,"rel_max":22.815575913569724,"scaled_dist":200.0,"scaled_rad":100.0},{"average":22.856024642680516,"rel_min":0.2070596707718713,"rel_max":22.856024642680516,"scaled_dist":200.0,"scaled_rad":100.0},{"average":22.902519291089778,"rel_min":0.2070596707718713,"rel_max":22.902519291089778,"scaled_dist":200.0,"scaled_rad":100.0},{"average":22.948962388736643,"rel_min":0.2070596707718713,"rel_max":22.948962388736643,"scaled_dist":200.0,"scaled_rad":100.0},{"average":22.995516492772683,"rel_min":0.2070596707718713,"rel_max":22.995516492772683,"scaled_dist":200.0,"scaled_rad":100.0},{"average":23.05368250815491,"rel_min":0.2070596707718713,"rel_max":23.05368250815491,"scaled_dist":200.0,"scaled_rad":100.0},{"average":23.116084878535148,"rel_min":0.2070596707718713,"rel_max":23.116084878535148,"scaled_dist":200.0,"scaled_rad":100.0},{"average":23.150625347878105,"rel_min":0.2070596707718713,"rel_max":23.150625347878105,"scaled_dist":200.0,"scaled_rad":100.0},{"average":23.19762635013746,"rel_min":0.2070596707718713,"rel_max":23.19762635013746,"scaled_dist":200.0,"scaled_rad":100.0},{"average":23.24732633666572,"rel_min":0.2070596707718713,"rel_max":23.24732633666572,"scaled_dist":200.0,"scaled_rad":100.0},{"average":23.296112831853524,"rel_min":0.2070596707718713,"rel_max":23.296112831853524,"scaled_dist":200.0,"scaled_rad":100.0},{"average":23.343126779046063,"rel_min":0.2070596707718713,"rel_max":23.343126779046063,"scaled_dist":200.0,"scaled_rad":100.0},{"average":23.389477046730057,"rel_min":0.2070596707718713,"rel_max":23.389477046730057,"scaled_dist":200.0,"scaled_rad":100.0},{"average":23.437703786114017,"rel_min":0.2070596707718713,"rel_max":23.437703786114017,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":23.48581484977456,"rel_min":0.2070596707718713,"rel_max":23.48581484977456,"scaled_dist":200.0,"scaled_rad":100.0},{"average":23.53299836486639,"rel_min":0.2070596707718713,"rel_max":23.53299836486639,"scaled_dist":200.0,"scaled_rad":100.0},{"average":23.57872274995969,"rel_min":0.2070596707718713,"rel_max":23.57872274995969,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":23.622390375819386,"rel_min":0.2070596707718713,"rel_max":23.622390375819386,"scaled_dist":200.0,"scaled_rad":100.0},{"average":23.66712227611599,"rel_min":0.2070596707718713,"rel_max":23.66712227611599,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":23.690683822502965,"rel_min":0.2070596707718713,"rel_max":23.690683822502965,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":23.73498739988204,"rel_min":0.2070596707718713,"rel_max":23.73498739988204,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":23.785590531883244,"rel_min":0.2070596707718713,"rel_max":23.785590531883244,"scaled_dist":200.0,"scaled_rad":100.0},{"average":23.834484989494282,"rel_min":0.2070596707718713,"rel_max":23.834484989494282,"scaled_dist":200.0,"scaled_rad":100.0},{"average":23.881774994141104,"rel_min":0.2070596707718713,"rel_max":23.881774994141104,"scaled_dist":200.0,"scaled_rad":100.0},{"average":23.954894967131672,"rel_min":0.2070596707718713,"rel_max":23.954894967131672,"scaled_dist":200.0,"scaled_rad":100.0},{"average":24.00282638998862,"rel_min":0.2070596707718713,"rel_max":24.00282638998862,"scaled_dist":200.0,"scaled_rad":100.0},{"average":24.053853348067147,"rel_min":0.2070596707718713,"rel_max":24.053853348067147,"scaled_dist":200.0,"scaled_rad":100.0},{"average":24.094614006463246,"rel_min":0.2070596707718713,"rel_max":24.094614006463246,"scaled_dist":200.0,"scaled_rad":100.0},{"average":24.129834693748833,"rel_min":0.2070596707718713,"rel_max":24.129834693748833,"scaled_dist":200.0,"scaled_rad":100.0},{"average":24.179331440082677,"rel_min":0.2070596707718713,"rel_max":24.179331440082677,"scaled_dist":200.0,"scaled_rad":100.0},{"average":24.22829771544395,"rel_min":0.2070596707718713,"rel_max":24.22829771544395,"scaled_dist":200.0,"scaled_rad":100.0},{"average":24.276334039598204,"rel_min":0.2070596707718713,"rel_max":24.276334039598204,"scaled_dist":200.0,"scaled_rad":100.0},{"average":24.325885413159394,"rel_min":0.2070596707718713,"rel_max":24.325885413159394,"scaled_dist":200.0,"scaled_rad":100.0},{"average":24.376211781299393,"rel_min":0.2070596707718713,"rel_max":24.376211781299393,"scaled_dist":200.0,"scaled_rad":100.0},{"average":24.427343887311906,"rel_min":0.2070596707718713,"rel_max":24.427343887311906,"scaled_dist":200.0,"scaled_rad":100.0},{"average":24.477127826935703,"rel_min":0.2070596707718713,"rel_max":24.477127826935703,"scaled_dist":200.0,"scaled_rad":100.0},{"average":24.523301397221598,"rel_min":0.2070596707718713,"rel_max":24.523301397221598,"scaled_dist":200.0,"scaled_rad":100.0},{"average":24.56991148265652,"rel_min":0.2070596707718713,"rel_max":24.56991148265652,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":24.617982627533006,"rel_min":0.2070596707718713,"rel_max":24.617982627533006,"scaled_dist":200.0,"scaled_rad":100.0},{"average":24.669585443491318,"rel_min":0.2070596707718713,"rel_max":24.669585443491318,"scaled_dist":200.0,"scaled_rad":100.0},{"average":24.721142261652105,"rel_min":0.2070596707718713,"rel_max":24.721142261652105,"scaled_dist":200.0,"scaled_rad":100.0},{"average":24.771690548482262,"rel_min":0.2070596707718713,"rel_max":24.771690548482262,"scaled_dist":200.0,"scaled_rad":100.0},{"average":24.82227583645392,"rel_min":0.2070596707718713,"rel_max":24.82227583645392,"scaled_dist":200.0,"scaled_rad":100.0},{"average":24.865574299494806,"rel_min":0.2070596707718713,"rel_max":24.865574299494806,"scaled_dist":200.0,"scaled_rad":100.0},{"average":24.90562536929335,"rel_min":0.2070596707718713,"rel_max":24.90562536929335,"scaled_dist":200.0,"scaled_rad":100.0},{"average":24.949155065646508,"rel_min":0.2070596707718713,"rel_max":24.949155065646508,"scaled_dist":200.0,"scaled_rad":100.0},{"average":24.992790976220828,"rel_min":0.2070596707718713,"rel_max":24.992790976220828,"scaled_dist":200.0,"scaled_rad":100.0},{"average":25.039406344630343,"rel_min":0.2070596707718713,"rel_max":25.039406344630343,"scaled_dist":200.0,"scaled_rad":100.0},{"average":25.085946649782866,"rel_min":0.2070596707718713,"rel_max":25.085946649782866,"scaled_dist":200.0,"scaled_rad":100.0},{"average":25.132469807644956,"rel_min":0.2070596707718713,"rel_max":25.132469807644956,"scaled_dist":200.0,"scaled_rad":100.0},{"average":25.179046035854363,"rel_min":0.2070596707718713,"rel_max":25.179046035854363,"scaled_dist":200.0,"scaled_rad":100.0},{"average":25.225554978676097,"rel_min":0.2070596707718713,"rel_max":25.225554978676097,"scaled_dist":200.0,"scaled_rad":100.0},{"average":25.272581471850582,"rel_min":0.2070596707718713,"rel_max":25.272581471850582,"scaled_dist":200.0,"scaled_rad":100.0},{"average":25.320892070453535,"rel_min":0.2070596707718713,"rel_max":25.320892070453535,"scaled_dist":200.0,"scaled_rad":100.0},{"average":25.370683631776213,"rel_min":0.2070596707718713,"rel_max":25.370683631776213,"scaled_dist":200.0,"scaled_rad":100.0},{"average":25.417672492305815,"rel_min":0.2070596707718713,"rel_max":25.417672492305815,"scaled_dist":200.0,"scaled_rad":100.0},{"average":25.46102083385567,"rel_min":0.2070596707718713,"rel_max":25.46102083385567,"scaled_dist":200.0,"scaled_rad":100.0},{"average":25.50961735705026,"rel_min":0.2070596707718713,"rel_max":25.50961735705026,"scaled_dist":200.0,"scaled_rad":100.0},{"average":25.555107618710487,"rel_min":0.2070596707718713,"rel_max":25.555107618710487,"scaled_dist":200.0,"scaled_rad":100.0},{"average":25.598392621923484,"rel_min":0.2070596707718713,"rel_max":25.598392621923484,"scaled_dist":200.0,"scaled_rad":100.0},{"average":25.642202308573562,"rel_min":0.2070596707718713,"rel_max":25.642202308573562,"scaled_dist":200.0,"scaled_rad":100.0},{"average":25.70461055258823,"rel_min":0.2070596707718713,"rel_max":25.70461055258823,"scaled_dist":200.0,"scaled_rad":100.0},{"average":25.74883451732197,"rel_min":0.2070596707718713,"rel_max":25.74883451732197,"scaled_dist":200.0,"scaled_rad":100.0},{"average":25.795559142279572,"rel_min":0.2070596707718713,"rel_max":25.795559142279572,"scaled_dist":200.0,"scaled_rad":100.0},{"average":25.841924519390133,"rel_min":0.2070596707718713,"rel_max":25.841924519390133,"scaled_dist":200.0,"scaled_rad":100.0},{"average":25.888979119067276,"rel_min":0.2070596707718713,"rel_max":25.888979119067276,"scaled_dist":200.0,"scaled_rad":100.0},{"average":25.938108967138316,"rel_min":0.2070596707718713,"rel_max":25.938108967138316,"scaled_dist":200.0,"scaled_rad":100.0},{"average":25.98675159747824,"rel_min":0.2070596707718713,"rel_max":25.98675159747824,"scaled_dist":200.0,"scaled_rad":100.0},{"average":26.033423897734625,"rel_min":0.2070596707718713,"rel_max":26.033423897734625,"scaled_dist":200.0,"scaled_rad":100.0},{"average":26.079891135380514,"rel_min":0.2070596707718713,"rel_max":26.079891135380514,"scaled_dist":200.0,"scaled_rad":100.0},{"average":26.137454467324112,"rel_min":0.2070596707718713,"rel_max":26.137454467324112,"scaled_dist":200.0,"scaled_rad":100.0},{"average":26.182121469724127,"rel_min":0.2070596707718713,"rel_max":26.182121469724127,"scaled_dist":200.0,"scaled_rad":100.0},{"average":26.228075225263584,"rel_min":0.2070596707718713,"rel_max":26.228075225263584,"scaled_dist":200.0,"scaled_rad":100.0},{"average":26.27105278866484,"rel_min":0.2070596707718713,"rel_max":26.27105278866484,"scaled_dist":200.0,"scaled_rad":100.0},{"average":26.317461949899727,"rel_min":0.2070596707718713,"rel_max":26.317461949899727,"scaled_dist":200.0,"scaled_rad":100.0},{"average":26.366036143669348,"rel_min":0.2070596707718713,"rel_max":26.366036143669348,"scaled_dist":200.0,"scaled_rad":100.0},{"average":26.415081218338788,"rel_min":0.2070596707718713,"rel_max":26.415081218338788,"scaled_dist":200.0,"scaled_rad":100.0},{"average":26.46411320209711,"rel_min":0.2070596707718713,"rel_max":26.46411320209711,"scaled_dist":200.0,"scaled_rad":100.0},{"average":26.513059931889995,"rel_min":0.2070596707718713,"rel_max":26.513059931889995,"scaled_dist":200.0,"scaled_rad":100.0},{"average":26.562365469858786,"rel_min":0.2070596707718713,"rel_max":26.562365469858786,"scaled_dist":200.0,"scaled_rad":100.0},{"average":26.612793301882075,"rel_min":0.2070596707718713,"rel_max":26.612793301882075,"scaled_dist":200.0,"scaled_rad":100.0},{"average":26.664200779166197,"rel_min":0.2070596707718713,"rel_max":26.664200779166197,"scaled_dist":200.0,"scaled_rad":100.0},{"average":26.717212190001153,"rel_min":0.2070596707718713,"rel_max":26.717212190001153,"scaled_dist":200.0,"scaled_rad":100.0},{"average":26.76892805297319,"rel_min":0.2070596707718713,"rel_max":26.76892805297319,"scaled_dist":200.0,"scaled_rad":100.0},{"average":26.818205835916054,"rel_min":0.2070596707718713,"rel_max":26.818205835916054,"scaled_dist":200.0,"scaled_rad":100.0},{"average":26.869243892963176,"rel_min":0.2070596707718713,"rel_max":26.869243892963176,"scaled_dist":200.0,"scaled_rad":100.0},{"average":26.90580861210328,"rel_min":0.2070596707718713,"rel_max":26.90580861210328,"scaled_dist":200.0,"scaled_rad":100.0},{"average":26.951035379118867,"rel_min":0.2070596707718713,"rel_max":26.951035379118867,"scaled_dist":200.0,"scaled_rad":100.0},{"average":26.99661292550643,"rel_min":0.2070596707718713,"rel_max":26.99661292550643,"scaled_dist":200.0,"scaled_rad":100.0},{"average":27.044228421767023,"rel_min":0.2070596707718713,"rel_max":27.044228421767023,"scaled_dist":200.0,"scaled_rad":100.0},{"average":27.08992546736497,"rel_min":0.2070596707718713,"rel_max":27.08992546736497,"scaled_dist":200.0,"scaled_rad":100.0},{"average":27.135750932740212,"rel_min":0.2070596707718713,"rel_max":27.135750932740212,"scaled_dist":200.0,"scaled_rad":100.0},{"average":27.181520054301735,"rel_min":0.2070596707718713,"rel_max":27.181520054301735,"scaled_dist":200.0,"scaled_rad":100.0},{"average":27.22707775969135,"rel_min":0.2070596707718713,"rel_max":27.22707775969135,"scaled_dist":200.0,"scaled_rad":100.0},{"average":27.272268303277695,"rel_min":0.2070596707718713,"rel_max":27.272268303277695,"scaled_dist":200.0,"scaled_rad":100.0},{"average":27.31709157815805,"rel_min":0.2070596707718713,"rel_max":27.31709157815805,"scaled_dist":200.0,"scaled_rad":100.0},{"average":27.361701573439678,"rel_min":0.2070596707718713,"rel_max":27.361701573439678,"scaled_dist":200.0,"scaled_rad":100.0},{"average":27.40663051107962,"rel_min":0.2070596707718713,"rel_max":27.40663051107962,"scaled_dist":200.0,"scaled_rad":100.0},{"average":27.452593670074116,"rel_min":0.2070596707718713,"rel_max":27.452593670074116,"scaled_dist":200.0,"scaled_rad":100.0},{"average":27.49824598471879,"rel_min":0.2070596707718713,"rel_max":27.49824598471879,"scaled_dist":200.0,"scaled_rad":100.0},{"average":27.54586488856052,"rel_min":0.2070596707718713,"rel_max":27.54586488856052,"scaled_dist":200.0,"scaled_rad":100.0},{"average":27.59348379290061,"rel_min":0.2070596707718713,"rel_max":27.59348379290061,"scaled_dist":200.0,"scaled_rad":100.0},{"average":27.64110269773648,"rel_min":0.2070596707718713,"rel_max":27.64110269773648,"scaled_dist":200.0,"scaled_rad":100.0},{"average":27.688721603065552,"rel_min":0.2070596707718713,"rel_max":27.688721603065552,"scaled_dist":200.0,"scaled_rad":100.0},{"average":27.736340508885277,"rel_min":0.2070596707718713,"rel_max":27.736340508885277,"scaled_dist":200.0,"scaled_rad":100.0},{"average":27.783959415193127,"rel_min":0.2070596707718713,"rel_max":27.783959415193127,"scaled_dist":200.0,"scaled_rad":100.0},{"average":27.83157832198658,"rel_min":0.2070596707718713,"rel_max":27.83157832198658,"scaled_dist":200.0,"scaled_rad":100.0},{"average":27.879211183993082,"rel_min":0.2070596707718713,"rel_max":27.879211183993082,"scaled_dist":200.0,"scaled_rad":100.0},{"average":27.934951744575127,"rel_min":0.2070596707718713,"rel_max":27.934951744575127,"scaled_dist":200.0,"scaled_rad":100.0},{"average":27.982551154426968,"rel_min":0.2070596707718713,"rel_max":27.982551154426968,"scaled_dist":200.0,"scaled_rad":100.0},{"average":28.01876629108172,"rel_min":0.2070596707718713,"rel_max":28.01876629108172,"scaled_dist":200.0,"scaled_rad":100.0},{"average":28.056611573357298,"rel_min":0.2070596707718713,"rel_max":28.056611573357298,"scaled_dist":200.0,"scaled_rad":100.0},{"average":28.10733009407983,"rel_min":0.2070596707718713,"rel_max":28.10733009407983,"scaled_dist":200.0,"scaled_rad":100.0},{"average":28.156799516491294,"rel_min":0.2070596707718713,"rel_max":28.156799516491294,"scaled_dist":200.0,"scaled_rad":100.0},{"average":28.20725799452114,"rel_min":0.2070596707718713,"rel_max":28.20725799452114,"scaled_dist":200.0,"scaled_rad":100.0},{"average":28.259480333157875,"rel_min":0.2070596707718713,"rel_max":28.259480333157875,"scaled_dist":200.0,"scaled_rad":100.0},{"average":28.312762897627056,"rel_min":0.2070596707718713,"rel_max":28.312762897627056,"scaled_dist":200.0,"scaled_rad":100.0},{"average":28.365099793911043,"rel_min":0.2070596707718713,"rel_max":28.365099793911043,"scaled_dist":200.0,"scaled_rad":100.0},{"average":28.417560472466857,"rel_min":0.2070596707718713,"rel_max":28.417560472466857,"scaled_dist":200.0,"scaled_rad":100.0},{"average":28.46698684554104,"rel_min":0.2070596707718713,"rel_max":28.46698684554104,"scaled_dist":200.0,"scaled_rad":100.0},{"average":28.517046233387312,"rel_min":0.2070596707718713,"rel_max":28.517046233387312,"scaled_dist":200.0,"scaled_rad":100.0},{"average":28.566617664143173,"rel_min":0.2070596707718713,"rel_max":28.566617664143173,"scaled_dist":200.0,"scaled_rad":100.0},{"average":28.61683971546727,"rel_min":0.2070596707718713,"rel_max":28.61683971546727,"scaled_dist":200.0,"scaled_rad":100.0},{"average":28.65991046024564,"rel_min":0.2070596707718713,"rel_max":28.65991046024564,"scaled_dist":200.0,"scaled_rad":100.0},{"average":28.71365313024866,"rel_min":0.2070596707718713,"rel_max":28.71365313024866,"scaled_dist":200.0,"scaled_rad":100.0},{"average":28.767398200685353,"rel_min":0.2070596707718713,"rel_max":28.767398200685353,"scaled_dist":200.0,"scaled_rad":100.0},{"average":28.819922399432944,"rel_min":0.2070596707718713,"rel_max":28.819922399432944,"scaled_dist":200.0,"scaled_rad":100.0},{"average":28.869446054491664,"rel_min":0.2070596707718713,"rel_max":28.869446054491664,"scaled_dist":200.0,"scaled_rad":100.0},{"average":28.91996433307572,"rel_min":0.2070596707718713,"rel_max":28.91996433307572,"scaled_dist":200.0,"scaled_rad":100.0},{"average":28.97158502687131,"rel_min":0.2070596707718713,"rel_max":28.97158502687131,"scaled_dist":200.0,"scaled_rad":100.0},{"average":29.021137221250754,"rel_min":0.2070596707718713,"rel_max":29.021137221250754,"scaled_dist":200.0,"scaled_rad":100.0},{"average":29.07147694107125,"rel_min":0.2070596707718713,"rel_max":29.07147694107125,"scaled_dist":200.0,"scaled_rad":100.0},{"average":29.120787965879543,"rel_min":0.2070596707718713,"rel_max":29.120787965879543,"scaled_dist":200.0,"scaled_rad":100.0},{"average":29.169106949302236,"rel_min":0.2070596707718713,"rel_max":29.169106949302236,"scaled_dist":200.0,"scaled_rad":100.0},{"average":29.217276624947857,"rel_min":0.2070596707718713,"rel_max":29.217276624947857,"scaled_dist":200.0,"scaled_rad":100.0},{"average":29.265230194754988,"rel_min":0.2070596707718713,"rel_max":29.265230194754988,"scaled_dist":200.0,"scaled_rad":100.0},{"average":29.31284454563001,"rel_min":0.2070596707718713,"rel_max":29.31284454563001,"scaled_dist":200.0,"scaled_rad":100.0},{"average":29.359262820471283,"rel_min":0.2070596707718713,"rel_max":29.359262820471283,"scaled_dist":200.0,"scaled_rad":100.0},{"average":29.403778266036294,"rel_min":0.2070596707718713,"rel_max":29.403778266036294,"scaled_dist":200.0,"scaled_rad":100.0},{"average":29.451035901182987,"rel_min":0.2070596707718713,"rel_max":29.451035901182987,"scaled_dist":200.0,"scaled_rad":100.0},{"average":29.499898463980642,"rel_min":0.2070596707718713,"rel_max":29.499898463980642,"scaled_dist":200.0,"scaled_rad":100.0},{"average":29.547944125076995,"rel_min":0.2070596707718713,"rel_max":29.547944125076995,"scaled_dist":200.0,"scaled_rad":100.0},{"average":29.59564330077035,"rel_min":0.2070596707718713,"rel_max":29.59564330077035,"scaled_dist":200.0,"scaled_rad":100.0},{"average":29.668301015645227,"rel_min":0.2070596707718713,"rel_max":29.668301015645227,"scaled_dist":200.0,"scaled_rad":100.0},{"average":29.716688133786487,"rel_min":0.2070596707718713,"rel_max":29.716688133786487,"scaled_dist":200.0,"scaled_rad":100.0},{"average":29.768760273635696,"rel_min":0.2070596707718713,"rel_max":29.768760273635696,"scaled_dist":200.0,"scaled_rad":100.0},{"average":29.819725066633318,"rel_min":0.2070596707718713,"rel_max":29.819725066633318,"scaled_dist":200.0,"scaled_rad":100.0},{"average":29.866910631985306,"rel_min":0.2070596707718713,"rel_max":29.866910631985306,"scaled_dist":200.0,"scaled_rad":100.0},{"average":29.914896658769276,"rel_min":0.2070596707718713,"rel_max":29.914896658769276,"scaled_dist":200.0,"scaled_rad":100.0},{"average":29.967420828123036,"rel_min":0.2070596707718713,"rel_max":29.967420828123036,"scaled_dist":200.0,"scaled_rad":100.0},{"average":30.005669356895492,"rel_min":0.2070596707718713,"rel_max":30.005669356895492,"scaled_dist":200.0,"scaled_rad":100.0},{"average":30.05929971556637,"rel_min":0.2070596707718713,"rel_max":30.05929971556637,"scaled_dist":200.0,"scaled_rad":100.0},{"average":30.116445410681152,"rel_min":0.2070596707718713,"rel_max":30.116445410681152,"scaled_dist":200.0,"scaled_rad":100.0},{"average":30.181535392552636,"rel_min":0.2070596707718713,"rel_max":30.181535392552636,"scaled_dist":200.0,"scaled_rad":100.0},{"average":30.246154993508107,"rel_min":0.2070596707718713,"rel_max":30.246154993508107,"scaled_dist":200.0,"scaled_rad":100.0},{"average":30.306127441363707,"rel_min":0.2070596707718713,"rel_max":30.306127441363707,"scaled_dist":200.0,"scaled_rad":100.0},{"average":30.372985170789246,"rel_min":0.2070596707718713,"rel_max":30.372985170789246,"scaled_dist":200.0,"scaled_rad":100.0},{"average":30.420753825976174,"rel_min":0.2070596707718713,"rel_max":30.420753825976174,"scaled_dist":200.0,"scaled_rad":100.0},{"average":30.429377832328676,"rel_min":0.2070596707718713,"rel_max":30.429377832328676,"scaled_dist":200.0,"scaled_rad":100.0},{"average":30.475873699356995,"rel_min":0.2070596707718713,"rel_max":30.475873699356995,"scaled_dist":200.0,"scaled_rad":100.0},{"average":30.520736184276586,"rel_min":0.2070596707718713,"rel_max":30.520736184276586,"scaled_dist":200.0,"scaled_rad":100.0},{"average":30.56568471500532,"rel_min":0.2070596707718713,"rel_max":30.56568471500532,"scaled_dist":200.0,"scaled_rad":100.0},{"average":30.610493374242576,"rel_min":0.2070596707718713,"rel_max":30.610493374242576,"scaled_dist":200.0,"scaled_rad":100.0},{"average":30.6513938341878,"rel_min":0.2070596707718713,"rel_max":30.6513938341878,"scaled_dist":200.0,"scaled_rad":100.0},{"average":30.69220923072883,"rel_min":0.2070596707718713,"rel_max":30.69220923072883,"scaled_dist":200.0,"scaled_rad":100.0},{"average":30.737176203407003,"rel_min":0.2070596707718713,"rel_max":30.737176203407003,"scaled_dist":200.0,"scaled_rad":100.0},{"average":30.781365297129888,"rel_min":0.2070596707718713,"rel_max":30.781365297129888,"scaled_dist":200.0,"scaled_rad":100.0},{"average":30.824000807928307,"rel_min":0.2070596707718713,"rel_max":30.824000807928307,"scaled_dist":200.0,"scaled_rad":100.0},{"average":30.85749277144674,"rel_min":0.2070596707718713,"rel_max":30.85749277144674,"scaled_dist":200.0,"scaled_rad":100.0},{"average":30.88169399631007,"rel_min":0.2070596707718713,"rel_max":30.88169399631007,"scaled_dist":200.0,"scaled_rad":100.0},{"average":30.90601531257621,"rel_min":0.2070596707718713,"rel_max":30.90601531257621,"scaled_dist":200.0,"scaled_rad":100.0},{"average":30.94614620634065,"rel_min":0.2070596707718713,"rel_max":30.94614620634065,"scaled_dist":200.0,"scaled_rad":100.0},{"average":30.99859511417401,"rel_min":0.2070596707718713,"rel_max":30.99859511417401,"scaled_dist":200.0,"scaled_rad":100.0},{"average":31.049074746564884,"rel_min":0.2070596707718713,"rel_max":31.049074746564884,"scaled_dist":200.0,"scaled_rad":100.0},{"average":31.0983121121262,"rel_min":0.2070596707718713,"rel_max":31.0983121121262,"scaled_dist":200.0,"scaled_rad":100.0},{"average":31.144682162490568,"rel_min":0.2070596707718713,"rel_max":31.144682162490568,"scaled_dist":200.0,"scaled_rad":100.0},{"average":31.192878907406964,"rel_min":0.2070596707718713,"rel_max":31.192878907406964,"scaled_dist":200.0,"scaled_rad":100.0},{"average":31.235759278899124,"rel_min":0.2070596707718713,"rel_max":31.235759278899124,"scaled_dist":200.0,"scaled_rad":100.0},{"average":31.275075521698493,"rel_min":0.2070596707718713,"rel_max":31.275075521698493,"scaled_dist":200.0,"scaled_rad":100.0},{"average":31.314760079838248,"rel_min":0.2070596707718713,"rel_max":31.314760079838248,"scaled_dist":200.0,"scaled_rad":100.0},{"average":31.356741389925734,"rel_min":0.2070596707718713,"rel_max":31.356741389925734,"scaled_dist":200.0,"scaled_rad":100.0},{"average":31.40207282104561,"rel_min":0.2070596707718713,"rel_max":31.40207282104561,"scaled_dist":200.0,"scaled_rad":100.0},{"average":31.450996748837653,"rel_min":0.2070596707718713,"rel_max":31.450996748837653,"scaled_dist":200.0,"scaled_rad":100.0},{"average":31.499171484213303,"rel_min":0.2070596707718713,"rel_max":31.499171484213303,"scaled_dist":200.0,"scaled_rad":100.0},{"average":31.545361402806588,"rel_min":0.2070596707718713,"rel_max":31.545361402806588,"scaled_dist":200.0,"scaled_rad":100.0},{"average":31.589696183890066,"rel_min":0.2070596707718713,"rel_max":31.589696183890066,"scaled_dist":200.0,"scaled_rad":100.0},{"average":31.6375156039188,"rel_min":0.2070596707718713,"rel_max":31.6375156039188,"scaled_dist":200.0,"scaled_rad":100.0},{"average":31.683888623269254,"rel_min":0.2070596707718713,"rel_max":31.683888623269254,"scaled_dist":200.0,"scaled_rad":100.0},{"average":31.731074799693495,"rel_min":0.2070596707718713,"rel_max":31.731074799693495,"scaled_dist":200.0,"scaled_rad":100.0},{"average":31.77906571756575,"rel_min":0.2070596707718713,"rel_max":31.77906571756575,"scaled_dist":200.0,"scaled_rad":100.0},{"average":31.832966519303938,"rel_min":0.2070596707718713,"rel_max":31.832966519303938,"scaled_dist":200.0,"scaled_rad":100.0},{"average":31.889921972349246,"rel_min":0.2070596707718713,"rel_max":31.889921972349246,"scaled_dist":200.0,"scaled_rad":100.0},{"average":31.93806629787678,"rel_min":0.2070596707718713,"rel_max":31.93806629787678,"scaled_dist":200.0,"scaled_rad":100.0},{"average":31.98366642605305,"rel_min":0.2070596707718713,"rel_max":31.98366642605305,"scaled_dist":200.0,"scaled_rad":100.0},{"average":32.029347097467,"rel_min":0.2070596707718713,"rel_max":32.029347097467,"scaled_dist":200.0,"scaled_rad":100.0},{"average":32.075684739901874,"rel_min":0.2070596707718713,"rel_max":32.075684739901874,"scaled_dist":200.0,"scaled_rad":100.0},{"average":32.12283257230939,"rel_min":0.2070596707718713,"rel_max":32.12283257230939,"scaled_dist":200.0,"scaled_rad":100.0},{"average":32.16854240819032,"rel_min":0.2070596707718713,"rel_max":32.16854240819032,"scaled_dist":200.0,"scaled_rad":100.0},{"average":32.21595225531976,"rel_min":0.2070596707718713,"rel_max":32.21595225531976,"scaled_dist":200.0,"scaled_rad":100.0},{"average":32.27568317281716,"rel_min":0.2070596707718713,"rel_max":32.27568317281716,"scaled_dist":200.0,"scaled_rad":100.0},{"average":32.332489117749866,"rel_min":0.2070596707718713,"rel_max":32.332489117749866,"scaled_dist":200.0,"scaled_rad":100.0},{"average":32.385294427685274,"rel_min":0.2070596707718713,"rel_max":32.385294427685274,"scaled_dist":200.0,"scaled_rad":100.0},{"average":32.43147167937093,"rel_min":0.2070596707718713,"rel_max":32.43147167937093,"scaled_dist":200.0,"scaled_rad":100.0},{"average":32.47851742541433,"rel_min":0.2070596707718713,"rel_max":32.47851742541433,"scaled_dist":200.0,"scaled_rad":100.0},{"average":32.52823054705034,"rel_min":0.2070596707718713,"rel_max":32.52823054705034,"scaled_dist":200.0,"scaled_rad":100.0},{"average":32.58156807963036,"rel_min":0.2070596707718713,"rel_max":32.58156807963036,"scaled_dist":200.0,"scaled_rad":100.0},{"average":32.63175473601885,"rel_min":0.2070596707718713,"rel_max":32.63175473601885,"scaled_dist":200.0,"scaled_rad":100.0},{"average":32.68289120907041,"rel_min":0.2070596707718713,"rel_max":32.68289120907041,"scaled_dist":200.0,"scaled_rad":100.0},{"average":32.73137724624747,"rel_min":0.2070596707718713,"rel_max":32.73137724624747,"scaled_dist":200.0,"scaled_rad":100.0},{"average":32.77684176768091,"rel_min":0.2070596707718713,"rel_max":32.77684176768091,"scaled_dist":200.0,"scaled_rad":100.0},{"average":32.82472936810511,"rel_min":0.2070596707718713,"rel_max":32.82472936810511,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":32.872023961104546,"rel_min":0.2070596707718713,"rel_max":32.872023961104546,"scaled_dist":200.0,"scaled_rad":100.0},{"average":32.920520657584134,"rel_min":0.2070596707718713,"rel_max":32.920520657584134,"scaled_dist":200.0,"scaled_rad":100.0},{"average":32.969269611437035,"rel_min":0.2070596707718713,"rel_max":32.969269611437035,"scaled_dist":200.0,"scaled_rad":100.0},{"average":33.01256131602026,"rel_min":0.2070596707718713,"rel_max":33.01256131602026,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":33.05204220594938,"rel_min":0.2070596707718713,"rel_max":33.05204220594938,"scaled_dist":200.0,"scaled_rad":100.0},{"average":33.09111210001756,"rel_min":0.2070596707718713,"rel_max":33.09111210001756,"scaled_dist":200.0,"scaled_rad":100.0},{"average":33.12730334376388,"rel_min":0.2070596707718713,"rel_max":33.12730334376388,"scaled_dist":200.0,"scaled_rad":100.0},{"average":33.16542052507748,"rel_min":0.2070596707718713,"rel_max":33.16542052507748,"scaled_dist":200.0,"scaled_rad":100.0},{"average":33.21648052866765,"rel_min":0.2070596707718713,"rel_max":33.21648052866765,"scaled_dist":200.0,"scaled_rad":100.0},{"average":33.26092153246648,"rel_min":0.2070596707718713,"rel_max":33.26092153246648,"scaled_dist":200.0,"scaled_rad":100.0},{"average":33.30280718593632,"rel_min":0.2070596707718713,"rel_max":33.30280718593632,"scaled_dist":200.0,"scaled_rad":100.0},{"average":33.34268833445897,"rel_min":0.2070596707718713,"rel_max":33.34268833445897,"scaled_dist":200.0,"scaled_rad":100.0},{"average":33.38818659881065,"rel_min":0.2070596707718713,"rel_max":33.38818659881065,"scaled_dist":200.0,"scaled_rad":100.0},{"average":33.43456518747533,"rel_min":0.2070596707718713,"rel_max":33.43456518747533,"scaled_dist":200.0,"scaled_rad":100.0},{"average":33.48145533220563,"rel_min":0.2070596707718713,"rel_max":33.48145533220563,"scaled_dist":200.0,"scaled_rad":100.0},{"average":33.53144075264774,"rel_min":0.2070596707718713,"rel_max":33.53144075264774,"scaled_dist":200.0,"scaled_rad":100.0},{"average":33.58224669840316,"rel_min":0.2070596707718713,"rel_max":33.58224669840316,"scaled_dist":200.0,"scaled_rad":100.0},{"average":33.63808385993128,"rel_min":0.2070596707718713,"rel_max":33.63808385993128,"scaled_dist":200.0,"scaled_rad":100.0},{"average":33.70088359917218,"rel_min":0.2070596707718713,"rel_max":33.70088359917218,"scaled_dist":200.0,"scaled_rad":100.0},{"average":33.7627294016615,"rel_min":0.2070596707718713,"rel_max":33.7627294016615,"scaled_dist":200.0,"scaled_rad":100.0},{"average":33.81526116300842,"rel_min":0.2070596707718713,"rel_max":33.81526116300842,"scaled_dist":200.0,"scaled_rad":100.0},{"average":33.86281925381718,"rel_min":0.2070596707718713,"rel_max":33.86281925381718,"scaled_dist":200.0,"scaled_rad":100.0},{"average":33.915130722770506,"rel_min":0.2070596707718713,"rel_max":33.915130722770506,"scaled_dist":200.0,"scaled_rad":100.0},{"average":33.9709537680976,"rel_min":0.2070596707718713,"rel_max":33.9709537680976,"scaled_dist":200.0,"scaled_rad":100.0},{"average":34.019213103195305,"rel_min":0.2070596707718713,"rel_max":34.019213103195305,"scaled_dist":200.0,"scaled_rad":100.0},{"average":34.06556493043015,"rel_min":0.2070596707718713,"rel_max":34.06556493043015,"scaled_dist":200.0,"scaled_rad":100.0},{"average":34.11375003779187,"rel_min":0.2070596707718713,"rel_max":34.11375003779187,"scaled_dist":200.0,"scaled_rad":100.0},{"average":34.15902144611227,"rel_min":0.2070596707718713,"rel_max":34.15902144611227,"scaled_dist":200.0,"scaled_rad":100.0},{"average":34.205735510122246,"rel_min":0.2070596707718713,"rel_max":34.205735510122246,"scaled_dist":200.0,"scaled_rad":100.0},{"average":34.25384131801121,"rel_min":0.2070596707718713,"rel_max":34.25384131801121,"scaled_dist":200.0,"scaled_rad":100.0},{"average":34.305495805081634,"rel_min":0.2070596707718713,"rel_max":34.305495805081634,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":34.35624068158259,"rel_min":0.2070596707718713,"rel_max":34.35624068158259,"scaled_dist":200.0,"scaled_rad":100.0},{"average":34.40021141862315,"rel_min":0.2070596707718713,"rel_max":34.40021141862315,"scaled_dist":200.0,"scaled_rad":100.0},{"average":34.43904143600717,"rel_min":0.2070596707718713,"rel_max":34.43904143600717,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":34.48076783764051,"rel_min":0.2070596707718713,"rel_max":34.48076783764051,"scaled_dist":200.0,"scaled_rad":100.0},{"average":34.51824736989722,"rel_min":0.2070596707718713,"rel_max":34.51824736989722,"scaled_dist":200.0,"scaled_rad":100.0},{"average":34.5547511517925,"rel_min":0.2070596707718713,"rel_max":34.5547511517925,"scaled_dist":200.0,"scaled_rad":100.0},{"average":34.59710197546709,"rel_min":0.2070596707718713,"rel_max":34.59710197546709,"scaled_dist":200.0,"scaled_rad":100.0},{"average":34.6459973310366,"rel_min":0.2070596707718713,"rel_max":34.6459973310366,"scaled_dist":200.0,"scaled_rad":100.0},{"average":34.69443558928194,"rel_min":0.2070596707718713,"rel_max":34.69443558928194,"scaled_dist":200.0,"scaled_rad":100.0},{"average":34.74297712643324,"rel_min":0.2070596707718713,"rel_max":34.74297712643324,"scaled_dist":200.0,"scaled_rad":100.0},{"average":34.770354875294935,"rel_min":0.2070596707718713,"rel_max":34.770354875294935,"scaled_dist":200.0,"scaled_rad":100.0},{"average":34.81884174490379,"rel_min":0.2070596707718713,"rel_max":34.81884174490379,"scaled_dist":200.0,"scaled_rad":100.0},{"average":34.8366461577719,"rel_min":0.2070596707718713,"rel_max":34.8366461577719,"scaled_dist":200.0,"scaled_rad":100.0},{"average":34.88519935460721,"rel_min":0.2070596707718713,"rel_max":34.88519935460721,"scaled_dist":200.0,"scaled_rad":100.0},{"average":34.93056928820124,"rel_min":0.2070596707718713,"rel_max":34.93056928820124,"scaled_dist":200.0,"scaled_rad":100.0},{"average":34.97785782361875,"rel_min":0.2070596707718713,"rel_max":34.97785782361875,"scaled_dist":200.0,"scaled_rad":100.0},{"average":35.02394880493843,"rel_min":0.2070596707718713,"rel_max":35.02394880493843,"scaled_dist":200.0,"scaled_rad":100.0},{"average":35.068260607283634,"rel_min":0.2070596707718713,"rel_max":35.068260607283634,"scaled_dist":200.0,"scaled_rad":100.0},{"average":35.11161387220277,"rel_min":0.2070596707718713,"rel_max":35.11161387220277,"scaled_dist":200.0,"scaled_rad":100.0},{"average":35.16018884904154,"rel_min":0.2070596707718713,"rel_max":35.16018884904154,"scaled_dist":200.0,"scaled_rad":100.0},{"average":35.20522285993998,"rel_min":0.2070596707718713,"rel_max":35.20522285993998,"scaled_dist":200.0,"scaled_rad":100.0},{"average":35.25406143791928,"rel_min":0.2070596707718713,"rel_max":35.25406143791928,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":35.303176703819574,"rel_min":0.2070596707718713,"rel_max":35.303176703819574,"scaled_dist":200.0,"scaled_rad":100.0},{"average":35.35313258272489,"rel_min":0.2070596707718713,"rel_max":35.35313258272489,"scaled_dist":200.0,"scaled_rad":100.0},{"average":35.40213581190188,"rel_min":0.2070596707718713,"rel_max":35.40213581190188,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":35.44841839353283,"rel_min":0.2070596707718713,"rel_max":35.44841839353283,"scaled_dist":200.0,"scaled_rad":100.0},{"average":35.49437743285612,"rel_min":0.2070596707718713,"rel_max":35.49437743285612,"scaled_dist":200.0,"scaled_rad":100.0},{"average":35.541437081329356,"rel_min":0.2070596707718713,"rel_max":35.541437081329356,"scaled_dist":200.0,"scaled_rad":100.0},{"average":35.59124247341721,"rel_min":0.2070596707718713,"rel_max":35.59124247341721,"scaled_dist":200.0,"scaled_rad":100.0},{"average":35.64516453930253,"rel_min":0.2070596707718713,"rel_max":35.64516453930253,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":35.70431395791609,"rel_min":0.2070596707718713,"rel_max":35.70431395791609,"scaled_dist":200.0,"scaled_rad":100.0},{"average":35.7687867628976,"rel_min":0.2070596707718713,"rel_max":35.7687867628976,"scaled_dist":200.0,"scaled_rad":100.0},{"average":35.82942922052303,"rel_min":0.2070596707718713,"rel_max":35.82942922052303,"scaled_dist":200.0,"scaled_rad":100.0},{"average":35.88879596307332,"rel_min":0.2070596707718713,"rel_max":35.88879596307332,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":35.9474770809286,"rel_min":0.2070596707718713,"rel_max":35.9474770809286,"scaled_dist":200.0,"scaled_rad":100.0},{"average":36.0138665090411,"rel_min":0.2070596707718713,"rel_max":36.0138665090411,"scaled_dist":200.0,"scaled_rad":100.0},{"average":36.07085954871318,"rel_min":0.2070596707718713,"rel_max":36.07085954871318,"scaled_dist":200.0,"scaled_rad":100.0},{"average":36.12574033361082,"rel_min":0.2070596707718713,"rel_max":36.12574033361082,"scaled_dist":200.0,"scaled_rad":100.0},{"average":36.17767394713811,"rel_min":0.2070596707718713,"rel_max":36.17767394713811,"scaled_dist":200.0,"scaled_rad":100.0},{"average":36.228398504939115,"rel_min":0.2070596707718713,"rel_max":36.228398504939115,"scaled_dist":200.0,"scaled_rad":100.0},{"average":36.276481939249194,"rel_min":0.2070596707718713,"rel_max":36.276481939249194,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":36.32292042448541,"rel_min":0.2070596707718713,"rel_max":36.32292042448541,"scaled_dist":200.0,"scaled_rad":100.0},{"average":36.37192880405676,"rel_min":0.2070596707718713,"rel_max":36.37192880405676,"scaled_dist":200.0,"scaled_rad":100.0},{"average":36.42194422592191,"rel_min":0.2070596707718713,"rel_max":36.42194422592191,"scaled_dist":200.0,"scaled_rad":100.0},{"average":36.47394842366247,"rel_min":0.2070596707718713,"rel_max":36.47394842366247,"scaled_dist":200.0,"scaled_rad":100.0},{"average":36.53000021067126,"rel_min":0.2070596707718713,"rel_max":36.53000021067126,"scaled_dist":200.0,"scaled_rad":100.0},{"average":36.596731367579146,"rel_min":0.2070596707718713,"rel_max":36.596731367579146,"scaled_dist":200.0,"scaled_rad":100.0},{"average":36.64513132905294,"rel_min":0.2070596707718713,"rel_max":36.64513132905294,"scaled_dist":200.0,"scaled_rad":100.0},{"average":36.688267615678775,"rel_min":0.2070596707718713,"rel_max":36.688267615678775,"scaled_dist":200.0,"scaled_rad":100.0},{"average":36.7219071073473,"rel_min":0.2070596707718713,"rel_max":36.7219071073473,"scaled_dist":200.0,"scaled_rad":100.0},{"average":36.75398855142611,"rel_min":0.2070596707718713,"rel_max":36.75398855142611,"scaled_dist":200.0,"scaled_rad":100.0},{"average":36.78912593328056,"rel_min":0.2070596707718713,"rel_max":36.78912593328056,"scaled_dist":200.0,"scaled_rad":100.0},{"average":36.83246884049839,"rel_min":0.2070596707718713,"rel_max":36.83246884049839,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":36.87718473573337,"rel_min":0.2070596707718713,"rel_max":36.87718473573337,"scaled_dist":200.0,"scaled_rad":100.0},{"average":36.92213063345176,"rel_min":0.2070596707718713,"rel_max":36.92213063345176,"scaled_dist":200.0,"scaled_rad":100.0},{"average":36.96280912148291,"rel_min":0.2070596707718713,"rel_max":36.96280912148291,"scaled_dist":200.0,"scaled_rad":100.0},{"average":37.00479530564655,"rel_min":0.2070596707718713,"rel_max":37.00479530564655,"scaled_dist":200.0,"scaled_rad":100.0},{"average":37.06696235047027,"rel_min":0.2070596707718713,"rel_max":37.06696235047027,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":37.10733246501678,"rel_min":0.2070596707718713,"rel_max":37.10733246501678,"scaled_dist":200.0,"scaled_rad":100.0},{"average":37.15023600287587,"rel_min":0.2070596707718713,"rel_max":37.15023600287587,"scaled_dist":200.0,"scaled_rad":100.0},{"average":37.195309940235674,"rel_min":0.2070596707718713,"rel_max":37.195309940235674,"scaled_dist":200.0,"scaled_rad":100.0},{"average":37.239325481526436,"rel_min":0.2070596707718713,"rel_max":37.239325481526436,"scaled_dist":200.0,"scaled_rad":100.0},{"average":37.269806964410485,"rel_min":0.2070596707718713,"rel_max":37.269806964410485,"scaled_dist":200.0,"scaled_rad":100.0},{"average":37.32752538024532,"rel_min":0.2070596707718713,"rel_max":37.32752538024532,"scaled_dist":200.0,"scaled_rad":100.0},{"average":37.382266127924645,"rel_min":0.2070596707718713,"rel_max":37.382266127924645,"scaled_dist":200.0,"scaled_rad":100.0},{"average":37.43442179534473,"rel_min":0.2070596707718713,"rel_max":37.43442179534473,"scaled_dist":200.0,"scaled_rad":100.0},{"average":37.482143315087924,"rel_min":0.2070596707718713,"rel_max":37.482143315087924,"scaled_dist":200.0,"scaled_rad":100.0},{"average":37.52931324952119,"rel_min":0.2070596707718713,"rel_max":37.52931324952119,"scaled_dist":200.0,"scaled_rad":100.0},{"average":37.57708159089585,"rel_min":0.2070596707718713,"rel_max":37.57708159089585,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":37.6253540692208,"rel_min":0.2070596707718713,"rel_max":37.6253540692208,"scaled_dist":200.0,"scaled_rad":100.0},{"average":37.67486829876935,"rel_min":0.2070596707718713,"rel_max":37.67486829876935,"scaled_dist":200.0,"scaled_rad":100.0},{"average":37.72410427652062,"rel_min":0.2070596707718713,"rel_max":37.72410427652062,"scaled_dist":200.0,"scaled_rad":100.0},{"average":37.768152696980614,"rel_min":0.2070596707718713,"rel_max":37.768152696980614,"scaled_dist":200.0,"scaled_rad":100.0},{"average":37.81536209875984,"rel_min":0.2070596707718713,"rel_max":37.81536209875984,"scaled_dist":200.0,"scaled_rad":100.0},{"average":37.86609462740877,"rel_min":0.2070596707718713,"rel_max":37.86609462740877,"scaled_dist":200.0,"scaled_rad":100.0},{"average":37.91424526940486,"rel_min":0.2070596707718713,"rel_max":37.91424526940486,"scaled_dist":200.0,"scaled_rad":100.0},{"average":37.959519516726715,"rel_min":0.2070596707718713,"rel_max":37.959519516726715,"scaled_dist":200.0,"scaled_rad":100.0},{"average":38.00198065375027,"rel_min":0.2070596707718713,"rel_max":38.00198065375027,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":38.03575007727677,"rel_min":0.2070596707718713,"rel_max":38.03575007727677,"scaled_dist":200.0,"scaled_rad":100.0},{"average":38.084857798246304,"rel_min":0.2070596707718713,"rel_max":38.084857798246304,"scaled_dist":200.0,"scaled_rad":100.0},{"average":38.13428481215066,"rel_min":0.2070596707718713,"rel_max":38.13428481215066,"scaled_dist":200.0,"scaled_rad":100.0},{"average":38.182462342795475,"rel_min":0.2070596707718713,"rel_max":38.182462342795475,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":38.22765030059797,"rel_min":0.2070596707718713,"rel_max":38.22765030059797,"scaled_dist":200.0,"scaled_rad":100.0},{"average":38.27265203025004,"rel_min":0.2070596707718713,"rel_max":38.27265203025004,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":38.32140748344252,"rel_min":0.2070596707718713,"rel_max":38.32140748344252,"scaled_dist":200.0,"scaled_rad":100.0},{"average":38.39183765204873,"rel_min":0.2070596707718713,"rel_max":38.39183765204873,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":38.44782444955112,"rel_min":0.2070596707718713,"rel_max":38.44782444955112,"scaled_dist":200.0,"scaled_rad":100.0},{"average":38.49704946431997,"rel_min":0.2070596707718713,"rel_max":38.49704946431997,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":38.54452673606779,"rel_min":0.2070596707718713,"rel_max":38.54452673606779,"scaled_dist":200.0,"scaled_rad":100.0},{"average":38.59488943570216,"rel_min":0.2070596707718713,"rel_max":38.59488943570216,"scaled_dist":200.0,"scaled_rad":100.0},{"average":38.64506258873126,"rel_min":0.2070596707718713,"rel_max":38.64506258873126,"scaled_dist":200.0,"scaled_rad":100.0},{"average":38.69688125313174,"rel_min":0.2070596707718713,"rel_max":38.69688125313174,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":38.74901347138351,"rel_min":0.2070596707718713,"rel_max":38.74901347138351,"scaled_dist":200.0,"scaled_rad":100.0},{"average":38.79989709546848,"rel_min":0.2070596707718713,"rel_max":38.79989709546848,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":38.85106233556867,"rel_min":0.2070596707718713,"rel_max":38.85106233556867,"scaled_dist":200.0,"scaled_rad":100.0},{"average":38.904762577164036,"rel_min":0.2070596707718713,"rel_max":38.904762577164036,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":38.96094085760367,"rel_min":0.2070596707718713,"rel_max":38.96094085760367,"scaled_dist":200.0,"scaled_rad":100.0},{"average":39.00981848210492,"rel_min":0.2070596707718713,"rel_max":39.00981848210492,"scaled_dist":200.0,"scaled_rad":100.0},{"average":39.06062450585909,"rel_min":0.2070596707718713,"rel_max":39.06062450585909,"scaled_dist":200.0,"scaled_rad":100.0},{"average":39.1076090975809,"rel_min":0.2070596707718713,"rel_max":39.1076090975809,"scaled_dist":200.0,"scaled_rad":100.0},{"average":39.157801675774735,"rel_min":0.2070596707718713,"rel_max":39.157801675774735,"scaled_dist":200.0,"scaled_rad":100.0},{"average":39.20976186553559,"rel_min":0.2070596707718713,"rel_max":39.20976186553559,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":39.254467126748736,"rel_min":0.2070596707718713,"rel_max":39.254467126748736,"scaled_dist":200.0,"scaled_rad":100.0},{"average":39.287563522751185,"rel_min":0.2070596707718713,"rel_max":39.287563522751185,"scaled_dist":200.0,"scaled_rad":100.0},{"average":39.31987759426828,"rel_min":0.2070596707718713,"rel_max":39.31987759426828,"scaled_dist":200.0,"scaled_rad":100.0},{"average":39.35692211680374,"rel_min":0.2070596707718713,"rel_max":39.35692211680374,"scaled_dist":200.0,"scaled_rad":100.0},{"average":39.40467117952852,"rel_min":0.2070596707718713,"rel_max":39.40467117952852,"scaled_dist":200.0,"scaled_rad":100.0},{"average":39.455574360272884,"rel_min":0.2070596707718713,"rel_max":39.455574360272884,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":39.50699433407691,"rel_min":0.2070596707718713,"rel_max":39.50699433407691,"scaled_dist":200.0,"scaled_rad":100.0},{"average":39.55264095202124,"rel_min":0.2070596707718713,"rel_max":39.55264095202124,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":39.59590504793714,"rel_min":0.2070596707718713,"rel_max":39.59590504793714,"scaled_dist":200.0,"scaled_rad":100.0},{"average":39.63658613044707,"rel_min":0.2070596707718713,"rel_max":39.63658613044707,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":39.67840516134216,"rel_min":0.2070596707718713,"rel_max":39.67840516134216,"scaled_dist":200.0,"scaled_rad":100.0},{"average":39.72116148042264,"rel_min":0.2070596707718713,"rel_max":39.72116148042264,"scaled_dist":200.0,"scaled_rad":100.0},{"average":39.770716241494135,"rel_min":0.2070596707718713,"rel_max":39.770716241494135,"scaled_dist":200.0,"scaled_rad":100.0},{"average":39.81803717176309,"rel_min":0.2070596707718713,"rel_max":39.81803717176309,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":39.865107720085845,"rel_min":0.2070596707718713,"rel_max":39.865107720085845,"scaled_dist":200.0,"scaled_rad":100.0},{"average":39.9092599742225,"rel_min":0.2070596707718713,"rel_max":39.9092599742225,"scaled_dist":200.0,"scaled_rad":100.0},{"average":39.95389437400769,"rel_min":0.2070596707718713,"rel_max":39.95389437400769,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":39.997982574858774,"rel_min":0.2070596707718713,"rel_max":39.997982574858774,"scaled_dist":200.0,"scaled_rad":100.0},{"average":40.04175964123055,"rel_min":0.2070596707718713,"rel_max":40.04175964123055,"scaled_dist":200.0,"scaled_rad":100.0},{"average":40.08783522715436,"rel_min":0.2070596707718713,"rel_max":40.08783522715436,"scaled_dist":200.0,"scaled_rad":100.0},{"average":40.131588872663194,"rel_min":0.2070596707718713,"rel_max":40.131588872663194,"scaled_dist":200.0,"scaled_rad":100.0},{"average":40.17418235919141,"rel_min":0.2070596707718713,"rel_max":40.17418235919141,"scaled_dist":200.0,"scaled_rad":100.0},{"average":40.20748193217238,"rel_min":0.2070596707718713,"rel_max":40.20748193217238,"scaled_dist":200.0,"scaled_rad":100.0},{"average":40.25030581644469,"rel_min":0.2070596707718713,"rel_max":40.25030581644469,"scaled_dist":200.0,"scaled_rad":100.0},{"average":40.29456631043742,"rel_min":0.2070596707718713,"rel_max":40.29456631043742,"scaled_dist":200.0,"scaled_rad":100.0},{"average":40.33750227828426,"rel_min":0.2070596707718713,"rel_max":40.33750227828426,"scaled_dist":200.0,"scaled_rad":100.0},{"average":40.37817823493174,"rel_min":0.2070596707718713,"rel_max":40.37817823493174,"scaled_dist":200.0,"scaled_rad":100.0},{"average":40.42417340735692,"rel_min":0.2070596707718713,"rel_max":40.42417340735692,"scaled_dist":200.0,"scaled_rad":100.0},{"average":40.472945451794814,"rel_min":0.2070596707718713,"rel_max":40.472945451794814,"scaled_dist":200.0,"scaled_rad":100.0},{"average":40.522869916087835,"rel_min":0.2070596707718713,"rel_max":40.522869916087835,"scaled_dist":200.0,"scaled_rad":100.0},{"average":40.57368157862563,"rel_min":0.2070596707718713,"rel_max":40.57368157862563,"scaled_dist":200.0,"scaled_rad":100.0},{"average":40.64016927124258,"rel_min":0.2070596707718713,"rel_max":40.64016927124258,"scaled_dist":200.0,"scaled_rad":100.0},{"average":40.70791790038892,"rel_min":0.2070596707718713,"rel_max":40.70791790038892,"scaled_dist":200.0,"scaled_rad":100.0},{"average":40.77425453229663,"rel_min":0.2070596707718713,"rel_max":40.77425453229663,"scaled_dist":200.0,"scaled_rad":100.0},{"average":40.838225655563676,"rel_min":0.2070596707718713,"rel_max":40.838225655563676,"scaled_dist":200.0,"scaled_rad":100.0},{"average":40.89814259025072,"rel_min":0.2070596707718713,"rel_max":40.89814259025072,"scaled_dist":200.0,"scaled_rad":100.0},{"average":40.954317103037894,"rel_min":0.2070596707718713,"rel_max":40.954317103037894,"scaled_dist":200.0,"scaled_rad":100.0},{"average":41.03789265699208,"rel_min":0.2070596707718713,"rel_max":41.03789265699208,"scaled_dist":200.0,"scaled_rad":100.0},{"average":41.10171607348318,"rel_min":0.2070596707718713,"rel_max":41.10171607348318,"scaled_dist":200.0,"scaled_rad":100.0},{"average":41.15369890233802,"rel_min":0.2070596707718713,"rel_max":41.15369890233802,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":41.19991676367877,"rel_min":0.2070596707718713,"rel_max":41.19991676367877,"scaled_dist":200.0,"scaled_rad":100.0},{"average":41.247203059866806,"rel_min":0.2070596707718713,"rel_max":41.247203059866806,"scaled_dist":200.0,"scaled_rad":100.0},{"average":41.29429639222738,"rel_min":0.2070596707718713,"rel_max":41.29429639222738,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":41.34232137739392,"rel_min":0.2070596707718713,"rel_max":41.34232137739392,"scaled_dist":200.0,"scaled_rad":100.0},{"average":41.39126730731579,"rel_min":0.2070596707718713,"rel_max":41.39126730731579,"scaled_dist":200.0,"scaled_rad":100.0},{"average":41.443654226550066,"rel_min":0.2070596707718713,"rel_max":41.443654226550066,"scaled_dist":200.0,"scaled_rad":100.0},{"average":41.4967313036976,"rel_min":0.2070596707718713,"rel_max":41.4967313036976,"scaled_dist":200.0,"scaled_rad":100.0},{"average":41.54080678364834,"rel_min":0.2070596707718713,"rel_max":41.54080678364834,"scaled_dist":200.0,"scaled_rad":100.0},{"average":41.57704854818396,"rel_min":0.2070596707718713,"rel_max":41.57704854818396,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":41.608819821129174,"rel_min":0.2070596707718713,"rel_max":41.608819821129174,"scaled_dist":200.0,"scaled_rad":100.0},{"average":41.64677967479179,"rel_min":0.2070596707718713,"rel_max":41.64677967479179,"scaled_dist":200.0,"scaled_rad":100.0},{"average":41.68030009661274,"rel_min":0.2070596707718713,"rel_max":41.68030009661274,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":41.708652880290266,"rel_min":0.2070596707718713,"rel_max":41.708652880290266,"scaled_dist":200.0,"scaled_rad":100.0},{"average":41.74398493767323,"rel_min":0.2070596707718713,"rel_max":41.74398493767323,"scaled_dist":200.0,"scaled_rad":100.0},{"average":41.781089190087705,"rel_min":0.2070596707718713,"rel_max":41.781089190087705,"scaled_dist":200.0,"scaled_rad":100.0},{"average":41.826821562183866,"rel_min":0.2070596707718713,"rel_max":41.826821562183866,"scaled_dist":200.0,"scaled_rad":100.0},{"average":41.8814097084096,"rel_min":0.2070596707718713,"rel_max":41.8814097084096,"scaled_dist":200.0,"scaled_rad":100.0},{"average":41.94485431364977,"rel_min":0.2070596707718713,"rel_max":41.94485431364977,"scaled_dist":200.0,"scaled_rad":100.0},{"average":41.99402844789233,"rel_min":0.2070596707718713,"rel_max":41.99402844789233,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":42.03986861630733,"rel_min":0.2070596707718713,"rel_max":42.03986861630733,"scaled_dist":200.0,"scaled_rad":100.0},{"average":42.082690824489454,"rel_min":0.2070596707718713,"rel_max":42.082690824489454,"scaled_dist":200.0,"scaled_rad":100.0},{"average":42.12740187848976,"rel_min":0.2070596707718713,"rel_max":42.12740187848976,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":42.17771648820488,"rel_min":0.2070596707718713,"rel_max":42.17771648820488,"scaled_dist":200.0,"scaled_rad":100.0},{"average":42.23352498875291,"rel_min":0.2070596707718713,"rel_max":42.23352498875291,"scaled_dist":200.0,"scaled_rad":100.0},{"average":42.28737766257042,"rel_min":0.2070596707718713,"rel_max":42.28737766257042,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":42.33052447254751,"rel_min":0.2070596707718713,"rel_max":42.33052447254751,"scaled_dist":200.0,"scaled_rad":100.0},{"average":42.369893260862575,"rel_min":0.2070596707718713,"rel_max":42.369893260862575,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":42.41347202038512,"rel_min":0.2070596707718713,"rel_max":42.41347202038512,"scaled_dist":200.0,"scaled_rad":100.0},{"average":42.462273964754466,"rel_min":0.2070596707718713,"rel_max":42.462273964754466,"scaled_dist":200.0,"scaled_rad":100.0},{"average":42.506741419648854,"rel_min":0.2070596707718713,"rel_max":42.506741419648854,"scaled_dist":200.0,"scaled_rad":100.0},{"average":42.54544113809557,"rel_min":0.2070596707718713,"rel_max":42.54544113809557,"scaled_dist":200.0,"scaled_rad":100.0},{"average":42.58538020699344,"rel_min":0.2070596707718713,"rel_max":42.58538020699344,"scaled_dist":200.0,"scaled_rad":100.0},{"average":42.62729460283113,"rel_min":0.2070596707718713,"rel_max":42.62729460283113,"scaled_dist":200.0,"scaled_rad":100.0},{"average":42.669059605012635,"rel_min":0.2070596707718713,"rel_max":42.669059605012635,"scaled_dist":200.0,"scaled_rad":100.0},{"average":42.706658019685946,"rel_min":0.2070596707718713,"rel_max":42.706658019685946,"scaled_dist":200.0,"scaled_rad":100.0},{"average":42.75321578268862,"rel_min":0.2070596707718713,"rel_max":42.75321578268862,"scaled_dist":200.0,"scaled_rad":100.0},{"average":42.800485178611254,"rel_min":0.2070596707718713,"rel_max":42.800485178611254,"scaled_dist":200.0,"scaled_rad":100.0},{"average":42.84790632435577,"rel_min":0.2070596707718713,"rel_max":42.84790632435577,"scaled_dist":200.0,"scaled_rad":100.0},{"average":42.899122741940694,"rel_min":0.2070596707718713,"rel_max":42.899122741940694,"scaled_dist":200.0,"scaled_rad":100.0},{"average":42.9507281262706,"rel_min":0.2070596707718713,"rel_max":42.9507281262706,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":43.00389482666605,"rel_min":0.2070596707718713,"rel_max":43.00389482666605,"scaled_dist":200.0,"scaled_rad":100.0},{"average":43.057044745283946,"rel_min":0.2070596707718713,"rel_max":43.057044745283946,"scaled_dist":200.0,"scaled_rad":100.0},{"average":43.109989530331276,"rel_min":0.2070596707718713,"rel_max":43.109989530331276,"scaled_dist":200.0,"scaled_rad":100.0},{"average":43.16058784783582,"rel_min":0.2070596707718713,"rel_max":43.16058784783582,"scaled_dist":200.0,"scaled_rad":100.0},{"average":43.208608430723544,"rel_min":0.2070596707718713,"rel_max":43.208608430723544,"scaled_dist":200.0,"scaled_rad":100.0},{"average":43.26036385190555,"rel_min":0.2070596707718713,"rel_max":43.26036385190555,"scaled_dist":200.0,"scaled_rad":100.0},{"average":43.30929769039574,"rel_min":0.2070596707718713,"rel_max":43.30929769039574,"scaled_dist":200.0,"scaled_rad":100.0},{"average":43.3600784747339,"rel_min":0.2070596707718713,"rel_max":43.3600784747339,"scaled_dist":200.0,"scaled_rad":100.0},{"average":43.403762875643416,"rel_min":0.2070596707718713,"rel_max":43.403762875643416,"scaled_dist":200.0,"scaled_rad":100.0},{"average":43.43676864844956,"rel_min":0.2070596707718713,"rel_max":43.43676864844956,"scaled_dist":200.0,"scaled_rad":100.0},{"average":43.470080478989615,"rel_min":0.2070596707718713,"rel_max":43.470080478989615,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":43.5341465273755,"rel_min":0.2070596707718713,"rel_max":43.5341465273755,"scaled_dist":200.0,"scaled_rad":100.0},{"average":43.600362058455936,"rel_min":0.2070596707718713,"rel_max":43.600362058455936,"scaled_dist":200.0,"scaled_rad":100.0},{"average":43.654000082724295,"rel_min":0.2070596707718713,"rel_max":43.654000082724295,"scaled_dist":200.0,"scaled_rad":100.0},{"average":43.69742830198756,"rel_min":0.2070596707718713,"rel_max":43.69742830198756,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":43.73672607794981,"rel_min":0.2070596707718713,"rel_max":43.73672607794981,"scaled_dist":200.0,"scaled_rad":100.0},{"average":43.7776217516348,"rel_min":0.2070596707718713,"rel_max":43.7776217516348,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":43.822027923985,"rel_min":0.2070596707718713,"rel_max":43.822027923985,"scaled_dist":200.0,"scaled_rad":100.0},{"average":43.869166606961734,"rel_min":0.2070596707718713,"rel_max":43.869166606961734,"scaled_dist":200.0,"scaled_rad":100.0},{"average":43.90945298144049,"rel_min":0.2070596707718713,"rel_max":43.90945298144049,"scaled_dist":200.0,"scaled_rad":100.0},{"average":43.94742375491679,"rel_min":0.2070596707718713,"rel_max":43.94742375491679,"scaled_dist":200.0,"scaled_rad":100.0},{"average":43.99131476621175,"rel_min":0.2070596707718713,"rel_max":43.99131476621175,"scaled_dist":200.0,"scaled_rad":100.0},{"average":44.03916802108986,"rel_min":0.2070596707718713,"rel_max":44.03916802108986,"scaled_dist":200.0,"scaled_rad":100.0},{"average":44.08947620015333,"rel_min":0.2070596707718713,"rel_max":44.08947620015333,"scaled_dist":200.0,"scaled_rad":100.0},{"average":44.14776176383118,"rel_min":0.2070596707718713,"rel_max":44.14776176383118,"scaled_dist":200.0,"scaled_rad":100.0},{"average":44.20266981177233,"rel_min":0.2070596707718713,"rel_max":44.20266981177233,"scaled_dist":200.0,"scaled_rad":100.0},{"average":44.25056502792115,"rel_min":0.2070596707718713,"rel_max":44.25056502792115,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":44.29674478624711,"rel_min":0.2070596707718713,"rel_max":44.29674478624711,"scaled_dist":200.0,"scaled_rad":100.0},{"average":44.34103193837523,"rel_min":0.2070596707718713,"rel_max":44.34103193837523,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":44.39508056503645,"rel_min":0.2070596707718713,"rel_max":44.39508056503645,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":44.455937645875714,"rel_min":0.2070596707718713,"rel_max":44.455937645875714,"scaled_dist":200.0,"scaled_rad":100.0},{"average":44.51091788660633,"rel_min":0.2070596707718713,"rel_max":44.51091788660633,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":44.56515784755759,"rel_min":0.2070596707718713,"rel_max":44.56515784755759,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":44.61716934561577,"rel_min":0.2070596707718713,"rel_max":44.61716934561577,"scaled_dist":200.0,"scaled_rad":100.0},{"average":44.661904726513626,"rel_min":0.2070596707718713,"rel_max":44.661904726513626,"scaled_dist":200.0,"scaled_rad":100.0},{"average":44.70946940820155,"rel_min":0.2070596707718713,"rel_max":44.70946940820155,"scaled_dist":200.0,"scaled_rad":100.0},{"average":44.748135260791294,"rel_min":0.2070596707718713,"rel_max":44.748135260791294,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":44.795277342369914,"rel_min":0.2070596707718713,"rel_max":44.795277342369914,"scaled_dist":200.0,"scaled_rad":100.0},{"average":44.845725623730765,"rel_min":0.2070596707718713,"rel_max":44.845725623730765,"scaled_dist":200.0,"scaled_rad":100.0},{"average":44.89438047691641,"rel_min":0.2070596707718713,"rel_max":44.89438047691641,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":44.94602947596294,"rel_min":0.2070596707718713,"rel_max":44.94602947596294,"scaled_dist":200.0,"scaled_rad":100.0},{"average":44.9967327761863,"rel_min":0.2070596707718713,"rel_max":44.9967327761863,"scaled_dist":200.0,"scaled_rad":100.0},{"average":45.043432188579345,"rel_min":0.2070596707718713,"rel_max":45.043432188579345,"scaled_dist":200.0,"scaled_rad":100.0},{"average":45.088996001808354,"rel_min":0.2070596707718713,"rel_max":45.088996001808354,"scaled_dist":200.0,"scaled_rad":100.0},{"average":45.127531511397336,"rel_min":0.2070596707718713,"rel_max":45.127531511397336,"scaled_dist":200.0,"scaled_rad":100.0},{"average":45.163736689211156,"rel_min":0.2070596707718713,"rel_max":45.163736689211156,"scaled_dist":200.0,"scaled_rad":100.0},{"average":45.20643412475039,"rel_min":0.2070596707718713,"rel_max":45.20643412475039,"scaled_dist":200.0,"scaled_rad":100.0},{"average":45.247141519239776,"rel_min":0.2070596707718713,"rel_max":45.247141519239776,"scaled_dist":200.0,"scaled_rad":100.0},{"average":45.28904545017789,"rel_min":0.2070596707718713,"rel_max":45.28904545017789,"scaled_dist":200.0,"scaled_rad":100.0},{"average":45.33514633540294,"rel_min":0.2070596707718713,"rel_max":45.33514633540294,"scaled_dist":200.0,"scaled_rad":100.0},{"average":45.38400974003164,"rel_min":0.2070596707718713,"rel_max":45.38400974003164,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":45.429838995768925,"rel_min":0.2070596707718713,"rel_max":45.429838995768925,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":45.47430019183135,"rel_min":0.2070596707718713,"rel_max":45.47430019183135,"scaled_dist":200.0,"scaled_rad":100.0},{"average":45.518568670086665,"rel_min":0.2070596707718713,"rel_max":45.518568670086665,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":45.56518615048508,"rel_min":0.2070596707718713,"rel_max":45.56518615048508,"scaled_dist":200.0,"scaled_rad":100.0},{"average":45.61868478898428,"rel_min":0.2070596707718713,"rel_max":45.61868478898428,"scaled_dist":200.0,"scaled_rad":100.0},{"average":45.68087804120437,"rel_min":0.2070596707718713,"rel_max":45.68087804120437,"scaled_dist":200.0,"scaled_rad":100.0},{"average":45.74490271970477,"rel_min":0.2070596707718713,"rel_max":45.74490271970477,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":45.806023573432064,"rel_min":0.2070596707718713,"rel_max":45.806023573432064,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":45.86505591961816,"rel_min":0.2070596707718713,"rel_max":45.86505591961816,"scaled_dist":200.0,"scaled_rad":100.0},{"average":45.92056695758707,"rel_min":0.2070596707718713,"rel_max":45.92056695758707,"scaled_dist":200.0,"scaled_rad":100.0},{"average":45.971800892376855,"rel_min":0.2070596707718713,"rel_max":45.971800892376855,"scaled_dist":200.0,"scaled_rad":100.0},{"average":46.024180168628405,"rel_min":0.2070596707718713,"rel_max":46.024180168628405,"scaled_dist":200.0,"scaled_rad":100.0},{"average":46.078087197457265,"rel_min":0.2070596707718713,"rel_max":46.078087197457265,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":46.13368010027542,"rel_min":0.2070596707718713,"rel_max":46.13368010027542,"scaled_dist":200.0,"scaled_rad":100.0},{"average":46.189230200329,"rel_min":0.2070596707718713,"rel_max":46.189230200329,"scaled_dist":200.0,"scaled_rad":100.0},{"average":46.244495465978176,"rel_min":0.2070596707718713,"rel_max":46.244495465978176,"scaled_dist":200.0,"scaled_rad":100.0},{"average":46.29852981904976,"rel_min":0.2070596707718713,"rel_max":46.29852981904976,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":46.35155393346826,"rel_min":0.2070596707718713,"rel_max":46.35155393346826,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":46.421009863212596,"rel_min":0.2070596707718713,"rel_max":46.421009863212596,"scaled_dist":200.0,"scaled_rad":100.0},{"average":46.473273822986165,"rel_min":0.2070596707718713,"rel_max":46.473273822986165,"scaled_dist":200.0,"scaled_rad":100.0},{"average":46.52593052280271,"rel_min":0.2070596707718713,"rel_max":46.52593052280271,"scaled_dist":200.0,"scaled_rad":100.0},{"average":46.578077894914735,"rel_min":0.2070596707718713,"rel_max":46.578077894914735,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":46.62823499100986,"rel_min":0.2070596707718713,"rel_max":46.62823499100986,"scaled_dist":200.0,"scaled_rad":100.0},{"average":46.67219697027488,"rel_min":0.2070596707718713,"rel_max":46.67219697027488,"scaled_dist":200.0,"scaled_rad":100.0},{"average":46.699203977540265,"rel_min":0.2070596707718713,"rel_max":46.699203977540265,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":46.71840155295352,"rel_min":0.2070596707718713,"rel_max":46.71840155295352,"scaled_dist":200.0,"scaled_rad":100.0},{"average":46.74569433790159,"rel_min":0.2070596707718713,"rel_max":46.74569433790159,"scaled_dist":200.0,"scaled_rad":100.0},{"average":46.77775363164248,"rel_min":0.2070596707718713,"rel_max":46.77775363164248,"scaled_dist":200.0,"scaled_rad":100.0},{"average":46.81138480591815,"rel_min":0.2070596707718713,"rel_max":46.81138480591815,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":46.84375800457327,"rel_min":0.2070596707718713,"rel_max":46.84375800457327,"scaled_dist":200.0,"scaled_rad":100.0},{"average":46.876713111693036,"rel_min":0.2070596707718713,"rel_max":46.876713111693036,"scaled_dist":200.0,"scaled_rad":100.0},{"average":46.91158977152922,"rel_min":0.2070596707718713,"rel_max":46.91158977152922,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":46.952358754414355,"rel_min":0.2070596707718713,"rel_max":46.952358754414355,"scaled_dist":200.0,"scaled_rad":100.0},{"average":46.99011581377882,"rel_min":0.2070596707718713,"rel_max":46.99011581377882,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":47.030312131123395,"rel_min":0.2070596707718713,"rel_max":47.030312131123395,"scaled_dist":200.0,"scaled_rad":100.0},{"average":47.065082510862396,"rel_min":0.2070596707718713,"rel_max":47.065082510862396,"scaled_dist":200.0,"scaled_rad":100.0},{"average":47.10754558511944,"rel_min":0.2070596707718713,"rel_max":47.10754558511944,"scaled_dist":200.0,"scaled_rad":100.0},{"average":47.15421747125729,"rel_min":0.2070596707718713,"rel_max":47.15421747125729,"scaled_dist":200.0,"scaled_rad":100.0},{"average":47.20035748051722,"rel_min":0.2070596707718713,"rel_max":47.20035748051722,"scaled_dist":200.0,"scaled_rad":100.0},{"average":47.24799461401398,"rel_min":0.2070596707718713,"rel_max":47.24799461401398,"scaled_dist":200.0,"scaled_rad":100.0},{"average":47.29769611187594,"rel_min":0.2070596707718713,"rel_max":47.29769611187594,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":47.34811041241799,"rel_min":0.2070596707718713,"rel_max":47.34811041241799,"scaled_dist":200.0,"scaled_rad":100.0},{"average":47.39897931734221,"rel_min":0.2070596707718713,"rel_max":47.39897931734221,"scaled_dist":200.0,"scaled_rad":100.0},{"average":47.45185901872086,"rel_min":0.2070596707718713,"rel_max":47.45185901872086,"scaled_dist":200.0,"scaled_rad":100.0},{"average":47.50849743370082,"rel_min":0.2070596707718713,"rel_max":47.50849743370082,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":47.56705978559374,"rel_min":0.2070596707718713,"rel_max":47.56705978559374,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":47.6221709457107,"rel_min":0.2070596707718713,"rel_max":47.6221709457107,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":47.668477764892636,"rel_min":0.2070596707718713,"rel_max":47.668477764892636,"scaled_dist":200.0,"scaled_rad":100.0},{"average":47.721124699238665,"rel_min":0.2070596707718713,"rel_max":47.721124699238665,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":47.76402694167099,"rel_min":0.2070596707718713,"rel_max":47.76402694167099,"scaled_dist":200.0,"scaled_rad":100.0},{"average":47.80049042735768,"rel_min":0.2070596707718713,"rel_max":47.80049042735768,"scaled_dist":200.0,"scaled_rad":100.0},{"average":47.852906582240756,"rel_min":0.2070596707718713,"rel_max":47.852906582240756,"scaled_dist":200.0,"scaled_rad":100.0},{"average":47.894723356513644,"rel_min":0.2070596707718713,"rel_max":47.894723356513644,"scaled_dist":200.0,"scaled_rad":100.0},{"average":47.9424185360904,"rel_min":0.2070596707718713,"rel_max":47.9424185360904,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":47.98931014046463,"rel_min":0.2070596707718713,"rel_max":47.98931014046463,"scaled_dist":200.0,"scaled_rad":100.0},{"average":48.032776504541346,"rel_min":0.2070596707718713,"rel_max":48.032776504541346,"scaled_dist":200.0,"scaled_rad":100.0},{"average":48.076437595942835,"rel_min":0.2070596707718713,"rel_max":48.076437595942835,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":48.12097772758521,"rel_min":0.2070596707718713,"rel_max":48.12097772758521,"scaled_dist":200.0,"scaled_rad":100.0},{"average":48.165780555556516,"rel_min":0.2070596707718713,"rel_max":48.165780555556516,"scaled_dist":200.0,"scaled_rad":100.0},{"average":48.21269321397129,"rel_min":0.2070596707718713,"rel_max":48.21269321397129,"scaled_dist":200.0,"scaled_rad":100.0},{"average":48.26119845588832,"rel_min":0.2070596707718713,"rel_max":48.26119845588832,"scaled_dist":200.0,"scaled_rad":100.0},{"average":48.31628435153067,"rel_min":0.2070596707718713,"rel_max":48.31628435153067,"scaled_dist":200.0,"scaled_rad":100.0},{"average":48.374535407277705,"rel_min":0.2070596707718713,"rel_max":48.374535407277705,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":48.433237250006464,"rel_min":0.2070596707718713,"rel_max":48.433237250006464,"scaled_dist":200.0,"scaled_rad":100.0},{"average":48.48412135492678,"rel_min":0.2070596707718713,"rel_max":48.48412135492678,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":48.53518776088067,"rel_min":0.2070596707718713,"rel_max":48.53518776088067,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":48.58510601515885,"rel_min":0.2070596707718713,"rel_max":48.58510601515885,"scaled_dist":200.0,"scaled_rad":100.0},{"average":48.634635575972986,"rel_min":0.2070596707718713,"rel_max":48.634635575972986,"scaled_dist":200.0,"scaled_rad":100.0},{"average":48.68836943018818,"rel_min":0.2070596707718713,"rel_max":48.68836943018818,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":48.74032332858347,"rel_min":0.2070596707718713,"rel_max":48.74032332858347,"scaled_dist":200.0,"scaled_rad":100.0},{"average":48.79262584824334,"rel_min":0.2070596707718713,"rel_max":48.79262584824334,"scaled_dist":200.0,"scaled_rad":100.0},{"average":48.836445860514154,"rel_min":0.2070596707718713,"rel_max":48.836445860514154,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":48.87509894769859,"rel_min":0.2070596707718713,"rel_max":48.87509894769859,"scaled_dist":200.0,"scaled_rad":100.0},{"average":48.91840274729795,"rel_min":0.2070596707718713,"rel_max":48.91840274729795,"scaled_dist":200.0,"scaled_rad":100.0},{"average":48.966903715410446,"rel_min":0.2070596707718713,"rel_max":48.966903715410446,"scaled_dist":200.0,"scaled_rad":100.0},{"average":49.01814587827779,"rel_min":0.2070596707718713,"rel_max":49.01814587827779,"scaled_dist":200.0,"scaled_rad":100.0},{"average":49.069958143264856,"rel_min":0.2070596707718713,"rel_max":49.069958143264856,"scaled_dist":200.0,"scaled_rad":100.0},{"average":49.12250977187698,"rel_min":0.2070596707718713,"rel_max":49.12250977187698,"scaled_dist":200.0,"scaled_rad":100.0},{"average":49.172546024299244,"rel_min":0.2070596707718713,"rel_max":49.172546024299244,"scaled_dist":200.0,"scaled_rad":100.0},{"average":49.21980694211913,"rel_min":0.2070596707718713,"rel_max":49.21980694211913,"scaled_dist":200.0,"scaled_rad":100.0},{"average":49.26747147410736,"rel_min":0.2070596707718713,"rel_max":49.26747147410736,"scaled_dist":200.0,"scaled_rad":100.0},{"average":49.335836710890234,"rel_min":0.2070596707718713,"rel_max":49.335836710890234,"scaled_dist":200.0,"scaled_rad":100.0},{"average":49.385038307185454,"rel_min":0.2070596707718713,"rel_max":49.385038307185454,"scaled_dist":200.0,"scaled_rad":100.0},{"average":49.43458673847583,"rel_min":0.2070596707718713,"rel_max":49.43458673847583,"scaled_dist":200.0,"scaled_rad":100.0},{"average":49.48227591828481,"rel_min":0.2070596707718713,"rel_max":49.48227591828481,"scaled_dist":200.0,"scaled_rad":100.0},{"average":49.527728323927874,"rel_min":0.2070596707718713,"rel_max":49.527728323927874,"scaled_dist":200.0,"scaled_rad":100.0},{"average":49.56540590041311,"rel_min":0.2070596707718713,"rel_max":49.56540590041311,"scaled_dist":200.0,"scaled_rad":100.0},{"average":49.597729708514294,"rel_min":0.2070596707718713,"rel_max":49.597729708514294,"scaled_dist":200.0,"scaled_rad":100.0},{"average":49.642043206852186,"rel_min":0.2070596707718713,"rel_max":49.642043206852186,"scaled_dist":200.0,"scaled_rad":100.0},{"average":49.75100675822268,"rel_min":0.2070596707718713,"rel_max":49.75100675822268,"scaled_dist":200.0,"scaled_rad":100.0},{"average":49.78950069947053,"rel_min":0.2070596707718713,"rel_max":49.78950069947053,"scaled_dist":200.0,"scaled_rad":100.0},{"average":49.834415340941156,"rel_min":0.2070596707718713,"rel_max":49.834415340941156,"scaled_dist":200.0,"scaled_rad":100.0},{"average":49.88131784672186,"rel_min":0.2070596707718713,"rel_max":49.88131784672186,"scaled_dist":200.0,"scaled_rad":100.0},{"average":49.9303583859983,"rel_min":0.2070596707718713,"rel_max":49.9303583859983,"scaled_dist":200.0,"scaled_rad":100.0},{"average":49.98408257495183,"rel_min":0.2070596707718713,"rel_max":49.98408257495183,"scaled_dist":200.0,"scaled_rad":100.0},{"average":50.03926009800727,"rel_min":0.2070596707718713,"rel_max":50.03926009800727,"scaled_dist":200.0,"scaled_rad":100.0},{"average":50.08088045947825,"rel_min":0.2070596707718713,"rel_max":50.08088045947825,"scaled_dist":200.0,"scaled_rad":100.0},{"average":50.12662418945078,"rel_min":0.2070596707718713,"rel_max":50.12662418945078,"scaled_dist":200.0,"scaled_rad":100.0},{"average":50.16755155050965,"rel_min":0.2070596707718713,"rel_max":50.16755155050965,"scaled_dist":200.0,"scaled_rad":100.0},{"average":50.20816077521143,"rel_min":0.2070596707718713,"rel_max":50.20816077521143,"scaled_dist":200.0,"scaled_rad":100.0},{"average":50.24808538611509,"rel_min":0.2070596707718713,"rel_max":50.24808538611509,"scaled_dist":200.0,"scaled_rad":100.0},{"average":50.288090421309455,"rel_min":0.2070596707718713,"rel_max":50.288090421309455,"scaled_dist":200.0,"scaled_rad":100.0},{"average":50.33084475820177,"rel_min":0.2070596707718713,"rel_max":50.33084475820177,"scaled_dist":200.0,"scaled_rad":100.0},{"average":50.376954714270795,"rel_min":0.2070596707718713,"rel_max":50.376954714270795,"scaled_dist":200.0,"scaled_rad":100.0},{"average":50.433128448881604,"rel_min":0.2070596707718713,"rel_max":50.433128448881604,"scaled_dist":200.0,"scaled_rad":100.0},{"average":50.482745753547434,"rel_min":0.2070596707718713,"rel_max":50.482745753547434,"scaled_dist":200.0,"scaled_rad":100.0},{"average":50.529467612807565,"rel_min":0.2070596707718713,"rel_max":50.529467612807565,"scaled_dist":200.0,"scaled_rad":100.0},{"average":50.57913010148285,"rel_min":0.2070596707718713,"rel_max":50.57913010148285,"scaled_dist":200.0,"scaled_rad":100.0},{"average":50.622898105561404,"rel_min":0.2070596707718713,"rel_max":50.622898105561404,"scaled_dist":200.0,"scaled_rad":100.0},{"average":50.664635974105856,"rel_min":0.2070596707718713,"rel_max":50.664635974105856,"scaled_dist":200.0,"scaled_rad":100.0},{"average":50.711959124453955,"rel_min":0.2070596707718713,"rel_max":50.711959124453955,"scaled_dist":200.0,"scaled_rad":100.0},{"average":50.74179623847383,"rel_min":0.2070596707718713,"rel_max":50.74179623847383,"scaled_dist":200.0,"scaled_rad":100.0},{"average":50.79208055360924,"rel_min":0.2070596707718713,"rel_max":50.79208055360924,"scaled_dist":200.0,"scaled_rad":100.0},{"average":50.83444616141453,"rel_min":0.2070596707718713,"rel_max":50.83444616141453,"scaled_dist":200.0,"scaled_rad":100.0},{"average":50.86613272742377,"rel_min":0.2070596707718713,"rel_max":50.86613272742377,"scaled_dist":200.0,"scaled_rad":100.0},{"average":50.90343604804322,"rel_min":0.2070596707718713,"rel_max":50.90343604804322,"scaled_dist":200.0,"scaled_rad":100.0},{"average":50.94369273617286,"rel_min":0.2070596707718713,"rel_max":50.94369273617286,"scaled_dist":200.0,"scaled_rad":100.0},{"average":50.9911500798548,"rel_min":0.2070596707718713,"rel_max":50.9911500798548,"scaled_dist":200.0,"scaled_rad":100.0},{"average":51.03828351660704,"rel_min":0.2070596707718713,"rel_max":51.03828351660704,"scaled_dist":200.0,"scaled_rad":100.0},{"average":51.08367420668168,"rel_min":0.2070596707718713,"rel_max":51.08367420668168,"scaled_dist":200.0,"scaled_rad":100.0},{"average":51.113545352476045,"rel_min":0.2070596707718713,"rel_max":51.113545352476045,"scaled_dist":200.0,"scaled_rad":100.0},{"average":51.15574711715216,"rel_min":0.2070596707718713,"rel_max":51.15574711715216,"scaled_dist":200.0,"scaled_rad":100.0},{"average":51.195675925654186,"rel_min":0.2070596707718713,"rel_max":51.195675925654186,"scaled_dist":200.0,"scaled_rad":100.0},{"average":51.23710299401364,"rel_min":0.2070596707718713,"rel_max":51.23710299401364,"scaled_dist":200.0,"scaled_rad":100.0},{"average":51.277647650389625,"rel_min":0.2070596707718713,"rel_max":51.277647650389625,"scaled_dist":200.0,"scaled_rad":100.0},{"average":51.31223537071451,"rel_min":0.2070596707718713,"rel_max":51.31223537071451,"scaled_dist":200.0,"scaled_rad":100.0},{"average":51.36520995774846,"rel_min":0.2070596707718713,"rel_max":51.36520995774846,"scaled_dist":200.0,"scaled_rad":100.0},{"average":51.41001368159712,"rel_min":0.2070596707718713,"rel_max":51.41001368159712,"scaled_dist":200.0,"scaled_rad":100.0},{"average":51.46155907101727,"rel_min":0.2070596707718713,"rel_max":51.46155907101727,"scaled_dist":200.0,"scaled_rad":100.0},{"average":51.51945507547595,"rel_min":0.2070596707718713,"rel_max":51.51945507547595,"scaled_dist":200.0,"scaled_rad":100.0},{"average":51.58236907324598,"rel_min":0.2070596707718713,"rel_max":51.58236907324598,"scaled_dist":200.0,"scaled_rad":100.0},{"average":51.629479786834935,"rel_min":0.2070596707718713,"rel_max":51.629479786834935,"scaled_dist":200.0,"scaled_rad":100.0},{"average":51.676347023178444,"rel_min":0.2070596707718713,"rel_max":51.676347023178444,"scaled_dist":200.0,"scaled_rad":100.0},{"average":51.72503802466936,"rel_min":0.2070596707718713,"rel_max":51.72503802466936,"scaled_dist":200.0,"scaled_rad":100.0},{"average":51.795559435158594,"rel_min":0.2070596707718713,"rel_max":51.795559435158594,"scaled_dist":200.0,"scaled_rad":100.0},{"average":51.848341869096494,"rel_min":0.2070596707718713,"rel_max":51.848341869096494,"scaled_dist":200.0,"scaled_rad":100.0},{"average":51.90005714101798,"rel_min":0.2070596707718713,"rel_max":51.90005714101798,"scaled_dist":200.0,"scaled_rad":100.0},{"average":51.95047835790588,"rel_min":0.2070596707718713,"rel_max":51.95047835790588,"scaled_dist":200.0,"scaled_rad":100.0},{"average":51.99709204395448,"rel_min":0.2070596707718713,"rel_max":51.99709204395448,"scaled_dist":200.0,"scaled_rad":100.0},{"average":52.043312418334395,"rel_min":0.2070596707718713,"rel_max":52.043312418334395,"scaled_dist":200.0,"scaled_rad":100.0},{"average":52.092145909707085,"rel_min":0.2070596707718713,"rel_max":52.092145909707085,"scaled_dist":200.0,"scaled_rad":100.0},{"average":52.144542872123296,"rel_min":0.2070596707718713,"rel_max":52.144542872123296,"scaled_dist":200.0,"scaled_rad":100.0},{"average":52.195191515401554,"rel_min":0.2070596707718713,"rel_max":52.195191515401554,"scaled_dist":200.0,"scaled_rad":100.0},{"average":52.24850514991925,"rel_min":0.2070596707718713,"rel_max":52.24850514991925,"scaled_dist":200.0,"scaled_rad":100.0},{"average":52.30496583142238,"rel_min":0.2070596707718713,"rel_max":52.30496583142238,"scaled_dist":200.0,"scaled_rad":100.0},{"average":52.365960719776204,"rel_min":0.2070596707718713,"rel_max":52.365960719776204,"scaled_dist":200.0,"scaled_rad":100.0},{"average":52.415404794903296,"rel_min":0.2070596707718713,"rel_max":52.415404794903296,"scaled_dist":200.0,"scaled_rad":100.0},{"average":52.465886724007795,"rel_min":0.2070596707718713,"rel_max":52.465886724007795,"scaled_dist":200.0,"scaled_rad":100.0},{"average":52.51707737505664,"rel_min":0.2070596707718713,"rel_max":52.51707737505664,"scaled_dist":200.0,"scaled_rad":100.0},{"average":52.56308508811769,"rel_min":0.2070596707718713,"rel_max":52.56308508811769,"scaled_dist":200.0,"scaled_rad":100.0},{"average":52.59266078512643,"rel_min":0.2070596707718713,"rel_max":52.59266078512643,"scaled_dist":200.0,"scaled_rad":100.0},{"average":52.64238705322058,"rel_min":0.2070596707718713,"rel_max":52.64238705322058,"scaled_dist":200.0,"scaled_rad":100.0},{"average":52.732425144236956,"rel_min":0.2070596707718713,"rel_max":52.732425144236956,"scaled_dist":200.0,"scaled_rad":100.0},{"average":52.807009758168554,"rel_min":0.2070596707718713,"rel_max":52.807009758168554,"scaled_dist":200.0,"scaled_rad":100.0},{"average":52.86596598560278,"rel_min":0.2070596707718713,"rel_max":52.86596598560278,"scaled_dist":200.0,"scaled_rad":100.0},{"average":52.91911676078108,"rel_min":0.2070596707718713,"rel_max":52.91911676078108,"scaled_dist":200.0,"scaled_rad":100.0},{"average":52.97346651310402,"rel_min":0.2070596707718713,"rel_max":52.97346651310402,"scaled_dist":200.0,"scaled_rad":100.0},{"average":53.02704004561812,"rel_min":0.2070596707718713,"rel_max":53.02704004561812,"scaled_dist":200.0,"scaled_rad":100.0},{"average":53.08299167283902,"rel_min":0.2070596707718713,"rel_max":53.08299167283902,"scaled_dist":200.0,"scaled_rad":100.0},{"average":53.14013300125293,"rel_min":0.2070596707718713,"rel_max":53.14013300125293,"scaled_dist":200.0,"scaled_rad":100.0},{"average":53.19557098748851,"rel_min":0.2070596707718713,"rel_max":53.19557098748851,"scaled_dist":200.0,"scaled_rad":100.0},{"average":53.239980918578944,"rel_min":0.2070596707718713,"rel_max":53.239980918578944,"scaled_dist":200.0,"scaled_rad":100.0},{"average":53.27366411540999,"rel_min":0.2070596707718713,"rel_max":53.27366411540999,"scaled_dist":200.0,"scaled_rad":100.0},{"average":53.29691701433085,"rel_min":0.2070596707718713,"rel_max":53.29691701433085,"scaled_dist":200.0,"scaled_rad":100.0},{"average":53.33973119227967,"rel_min":0.2070596707718713,"rel_max":53.33973119227967,"scaled_dist":200.0,"scaled_rad":100.0},{"average":53.38359389880589,"rel_min":0.2070596707718713,"rel_max":53.38359389880589,"scaled_dist":200.0,"scaled_rad":100.0},{"average":53.427357581146595,"rel_min":0.2070596707718713,"rel_max":53.427357581146595,"scaled_dist":200.0,"scaled_rad":100.0},{"average":53.47298867254354,"rel_min":0.2070596707718713,"rel_max":53.47298867254354,"scaled_dist":200.0,"scaled_rad":100.0},{"average":53.51667609160143,"rel_min":0.2070596707718713,"rel_max":53.51667609160143,"scaled_dist":200.0,"scaled_rad":100.0},{"average":53.55228640528992,"rel_min":0.2070596707718713,"rel_max":53.55228640528992,"scaled_dist":200.0,"scaled_rad":100.0},{"average":53.58757961129229,"rel_min":0.2070596707718713,"rel_max":53.58757961129229,"scaled_dist":200.0,"scaled_rad":100.0},{"average":53.62279462687871,"rel_min":0.2070596707718713,"rel_max":53.62279462687871,"scaled_dist":200.0,"scaled_rad":100.0},{"average":53.648923944351814,"rel_min":0.2070596707718713,"rel_max":53.648923944351814,"scaled_dist":200.0,"scaled_rad":100.0},{"average":53.675267332671766,"rel_min":0.2070596707718713,"rel_max":53.675267332671766,"scaled_dist":200.0,"scaled_rad":100.0},{"average":53.69935315522914,"rel_min":0.2070596707718713,"rel_max":53.69935315522914,"scaled_dist":200.0,"scaled_rad":100.0},{"average":53.731838902744016,"rel_min":0.2070596707718713,"rel_max":53.731838902744016,"scaled_dist":200.0,"scaled_rad":100.0},{"average":53.79136873453414,"rel_min":0.2070596707718713,"rel_max":53.79136873453414,"scaled_dist":200.0,"scaled_rad":100.0},{"average":53.878312441803395,"rel_min":0.2070596707718713,"rel_max":53.878312441803395,"scaled_dist":200.0,"scaled_rad":100.0},{"average":53.93456882488045,"rel_min":0.2070596707718713,"rel_max":53.93456882488045,"scaled_dist":200.0,"scaled_rad":100.0},{"average":53.98391713698344,"rel_min":0.2070596707718713,"rel_max":53.98391713698344,"scaled_dist":200.0,"scaled_rad":100.0},{"average":54.03616603047928,"rel_min":0.2070596707718713,"rel_max":54.03616603047928,"scaled_dist":200.0,"scaled_rad":100.0},{"average":54.090062877605206,"rel_min":0.2070596707718713,"rel_max":54.090062877605206,"scaled_dist":200.0,"scaled_rad":100.0},{"average":54.14191623104116,"rel_min":0.2070596707718713,"rel_max":54.14191623104116,"scaled_dist":200.0,"scaled_rad":100.0},{"average":54.190148656308516,"rel_min":0.2070596707718713,"rel_max":54.190148656308516,"scaled_dist":200.0,"scaled_rad":100.0},{"average":54.245776291024185,"rel_min":0.2070596707718713,"rel_max":54.245776291024185,"scaled_dist":200.0,"scaled_rad":100.0},{"average":54.31238103283105,"rel_min":0.2070596707718713,"rel_max":54.31238103283105,"scaled_dist":200.0,"scaled_rad":100.0},{"average":54.372723960463354,"rel_min":0.2070596707718713,"rel_max":54.372723960463354,"scaled_dist":200.0,"scaled_rad":100.0},{"average":54.418541535469195,"rel_min":0.2070596707718713,"rel_max":54.418541535469195,"scaled_dist":200.0,"scaled_rad":100.0},{"average":54.458296186808646,"rel_min":0.2070596707718713,"rel_max":54.458296186808646,"scaled_dist":200.0,"scaled_rad":100.0},{"average":54.50023126894438,"rel_min":0.2070596707718713,"rel_max":54.50023126894438,"scaled_dist":200.0,"scaled_rad":100.0},{"average":54.548337536285814,"rel_min":0.2070596707718713,"rel_max":54.548337536285814,"scaled_dist":200.0,"scaled_rad":100.0},{"average":54.5975141228488,"rel_min":0.2070596707718713,"rel_max":54.5975141228488,"scaled_dist":200.0,"scaled_rad":100.0},{"average":54.647171119956134,"rel_min":0.2070596707718713,"rel_max":54.647171119956134,"scaled_dist":200.0,"scaled_rad":100.0},{"average":54.69416886308412,"rel_min":0.2070596707718713,"rel_max":54.69416886308412,"scaled_dist":200.0,"scaled_rad":100.0},{"average":54.73260239365785,"rel_min":0.2070596707718713,"rel_max":54.73260239365785,"scaled_dist":200.0,"scaled_rad":100.0},{"average":54.773327223799704,"rel_min":0.2070596707718713,"rel_max":54.773327223799704,"scaled_dist":200.0,"scaled_rad":100.0},{"average":54.82050102132732,"rel_min":0.2070596707718713,"rel_max":54.82050102132732,"scaled_dist":200.0,"scaled_rad":100.0},{"average":54.8676180313074,"rel_min":0.2070596707718713,"rel_max":54.8676180313074,"scaled_dist":200.0,"scaled_rad":100.0},{"average":54.91380194395455,"rel_min":0.2070596707718713,"rel_max":54.91380194395455,"scaled_dist":200.0,"scaled_rad":100.0},{"average":54.96142758014518,"rel_min":0.2070596707718713,"rel_max":54.96142758014518,"scaled_dist":200.0,"scaled_rad":100.0},{"average":55.01394882059348,"rel_min":0.2070596707718713,"rel_max":55.01394882059348,"scaled_dist":200.0,"scaled_rad":100.0},{"average":55.07081930456875,"rel_min":0.2070596707718713,"rel_max":55.07081930456875,"scaled_dist":200.0,"scaled_rad":100.0},{"average":55.1152452281638,"rel_min":0.2070596707718713,"rel_max":55.1152452281638,"scaled_dist":200.0,"scaled_rad":100.0},{"average":55.148928124045014,"rel_min":0.2070596707718713,"rel_max":55.148928124045014,"scaled_dist":200.0,"scaled_rad":100.0},{"average":55.19031796857386,"rel_min":0.2070596707718713,"rel_max":55.19031796857386,"scaled_dist":200.0,"scaled_rad":100.0},{"average":55.23304032953356,"rel_min":0.2070596707718713,"rel_max":55.23304032953356,"scaled_dist":200.0,"scaled_rad":100.0},{"average":55.27258414986565,"rel_min":0.2070596707718713,"rel_max":55.27258414986565,"scaled_dist":200.0,"scaled_rad":100.0},{"average":55.31518684495791,"rel_min":0.2070596707718713,"rel_max":55.31518684495791,"scaled_dist":200.0,"scaled_rad":100.0},{"average":55.357178913306704,"rel_min":0.2070596707718713,"rel_max":55.357178913306704,"scaled_dist":200.0,"scaled_rad":100.0},{"average":55.400142416415804,"rel_min":0.2070596707718713,"rel_max":55.400142416415804,"scaled_dist":200.0,"scaled_rad":100.0},{"average":55.44387159203485,"rel_min":0.2070596707718713,"rel_max":55.44387159203485,"scaled_dist":200.0,"scaled_rad":100.0},{"average":55.478168329256356,"rel_min":0.2070596707718713,"rel_max":55.478168329256356,"scaled_dist":200.0,"scaled_rad":100.0},{"average":55.52006564476732,"rel_min":0.2070596707718713,"rel_max":55.52006564476732,"scaled_dist":200.0,"scaled_rad":100.0},{"average":55.56784274793352,"rel_min":0.2070596707718713,"rel_max":55.56784274793352,"scaled_dist":200.0,"scaled_rad":100.0},{"average":55.61938202114661,"rel_min":0.2070596707718713,"rel_max":55.61938202114661,"scaled_dist":200.0,"scaled_rad":100.0},{"average":55.676585361581196,"rel_min":0.2070596707718713,"rel_max":55.676585361581196,"scaled_dist":200.0,"scaled_rad":100.0},{"average":55.72606490594547,"rel_min":0.2070596707718713,"rel_max":55.72606490594547,"scaled_dist":200.0,"scaled_rad":100.0},{"average":55.77283277475811,"rel_min":0.2070596707718713,"rel_max":55.77283277475811,"scaled_dist":200.0,"scaled_rad":100.0},{"average":55.81187137914361,"rel_min":0.2070596707718713,"rel_max":55.81187137914361,"scaled_dist":200.0,"scaled_rad":100.0},{"average":55.84696390966448,"rel_min":0.2070596707718713,"rel_max":55.84696390966448,"scaled_dist":200.0,"scaled_rad":100.0},{"average":55.89557615015304,"rel_min":0.2070596707718713,"rel_max":55.89557615015304,"scaled_dist":200.0,"scaled_rad":100.0},{"average":55.94735340652562,"rel_min":0.2070596707718713,"rel_max":55.94735340652562,"scaled_dist":200.0,"scaled_rad":100.0},{"average":56.001073193255195,"rel_min":0.2070596707718713,"rel_max":56.001073193255195,"scaled_dist":200.0,"scaled_rad":100.0},{"average":56.05692049016682,"rel_min":0.2070596707718713,"rel_max":56.05692049016682,"scaled_dist":200.0,"scaled_rad":100.0},{"average":56.130143236884926,"rel_min":0.2070596707718713,"rel_max":56.130143236884926,"scaled_dist":200.0,"scaled_rad":100.0},{"average":56.17202164678879,"rel_min":0.2070596707718713,"rel_max":56.17202164678879,"scaled_dist":200.0,"scaled_rad":100.0},{"average":56.20981752165458,"rel_min":0.2070596707718713,"rel_max":56.20981752165458,"scaled_dist":200.0,"scaled_rad":100.0},{"average":56.246917431678234,"rel_min":0.2070596707718713,"rel_max":56.246917431678234,"scaled_dist":200.0,"scaled_rad":100.0},{"average":56.29076530759163,"rel_min":0.2070596707718713,"rel_max":56.29076530759163,"scaled_dist":200.0,"scaled_rad":100.0},{"average":56.33792417806023,"rel_min":0.2070596707718713,"rel_max":56.33792417806023,"scaled_dist":200.0,"scaled_rad":100.0},{"average":56.381075900349295,"rel_min":0.2070596707718713,"rel_max":56.381075900349295,"scaled_dist":200.0,"scaled_rad":100.0},{"average":56.43415622213811,"rel_min":0.2070596707718713,"rel_max":56.43415622213811,"scaled_dist":200.0,"scaled_rad":100.0},{"average":56.50634801082032,"rel_min":0.2070596707718713,"rel_max":56.50634801082032,"scaled_dist":200.0,"scaled_rad":100.0},{"average":56.57115922594773,"rel_min":0.2070596707718713,"rel_max":56.57115922594773,"scaled_dist":200.0,"scaled_rad":100.0},{"average":56.621709390115676,"rel_min":0.2070596707718713,"rel_max":56.621709390115676,"scaled_dist":200.0,"scaled_rad":100.0},{"average":56.66208249214332,"rel_min":0.2070596707718713,"rel_max":56.66208249214332,"scaled_dist":200.0,"scaled_rad":100.0},{"average":56.70496000782106,"rel_min":0.2070596707718713,"rel_max":56.70496000782106,"scaled_dist":200.0,"scaled_rad":100.0},{"average":56.75287097095917,"rel_min":0.2070596707718713,"rel_max":56.75287097095917,"scaled_dist":200.0,"scaled_rad":100.0},{"average":56.8054622515427,"rel_min":0.2070596707718713,"rel_max":56.8054622515427,"scaled_dist":200.0,"scaled_rad":100.0},{"average":56.85596590885365,"rel_min":0.2070596707718713,"rel_max":56.85596590885365,"scaled_dist":200.0,"scaled_rad":100.0},{"average":56.901989067224754,"rel_min":0.2070596707718713,"rel_max":56.901989067224754,"scaled_dist":200.0,"scaled_rad":100.0},{"average":56.95480700055268,"rel_min":0.2070596707718713,"rel_max":56.95480700055268,"scaled_dist":200.0,"scaled_rad":100.0},{"average":57.036774233854715,"rel_min":0.2070596707718713,"rel_max":57.036774233854715,"scaled_dist":200.0,"scaled_rad":100.0},{"average":57.126455794108445,"rel_min":0.2070596707718713,"rel_max":57.126455794108445,"scaled_dist":200.0,"scaled_rad":100.0},{"average":57.19725669685541,"rel_min":0.2070596707718713,"rel_max":57.19725669685541,"scaled_dist":200.0,"scaled_rad":100.0},{"average":57.253879517977005,"rel_min":0.2070596707718713,"rel_max":57.253879517977005,"scaled_dist":200.0,"scaled_rad":100.0},{"average":57.29831665530923,"rel_min":0.2070596707718713,"rel_max":57.29831665530923,"scaled_dist":200.0,"scaled_rad":100.0},{"average":57.34412118449146,"rel_min":0.2070596707718713,"rel_max":57.34412118449146,"scaled_dist":200.0,"scaled_rad":100.0},{"average":57.39026153557009,"rel_min":0.2070596707718713,"rel_max":57.39026153557009,"scaled_dist":200.0,"scaled_rad":100.0},{"average":57.43772599823152,"rel_min":0.2070596707718713,"rel_max":57.43772599823152,"scaled_dist":200.0,"scaled_rad":100.0},{"average":57.47949436337071,"rel_min":0.2070596707718713,"rel_max":57.47949436337071,"scaled_dist":200.0,"scaled_rad":100.0},{"average":57.51343004800165,"rel_min":0.2070596707718713,"rel_max":57.51343004800165,"scaled_dist":200.0,"scaled_rad":100.0},{"average":57.54088727256575,"rel_min":0.2070596707718713,"rel_max":57.54088727256575,"scaled_dist":200.0,"scaled_rad":100.0},{"average":57.58010018853959,"rel_min":0.2070596707718713,"rel_max":57.58010018853959,"scaled_dist":200.0,"scaled_rad":100.0},{"average":57.625572601321196,"rel_min":0.2070596707718713,"rel_max":57.625572601321196,"scaled_dist":200.0,"scaled_rad":100.0},{"average":57.67085244078733,"rel_min":0.2070596707718713,"rel_max":57.67085244078733,"scaled_dist":200.0,"scaled_rad":100.0},{"average":57.717449415101534,"rel_min":0.2070596707718713,"rel_max":57.717449415101534,"scaled_dist":200.0,"scaled_rad":100.0},{"average":57.76472645254712,"rel_min":0.2070596707718713,"rel_max":57.76472645254712,"scaled_dist":200.0,"scaled_rad":100.0},{"average":57.810530177114316,"rel_min":0.2070596707718713,"rel_max":57.810530177114316,"scaled_dist":200.0,"scaled_rad":100.0},{"average":57.84742877033907,"rel_min":0.2070596707718713,"rel_max":57.84742877033907,"scaled_dist":200.0,"scaled_rad":100.0},{"average":57.88284557258198,"rel_min":0.2070596707718713,"rel_max":57.88284557258198,"scaled_dist":200.0,"scaled_rad":100.0},{"average":57.92580985685687,"rel_min":0.2070596707718713,"rel_max":57.92580985685687,"scaled_dist":200.0,"scaled_rad":100.0},{"average":57.9726261692054,"rel_min":0.2070596707718713,"rel_max":57.9726261692054,"scaled_dist":200.0,"scaled_rad":100.0},{"average":58.01851513588059,"rel_min":0.2070596707718713,"rel_max":58.01851513588059,"scaled_dist":200.0,"scaled_rad":100.0},{"average":58.061655941687036,"rel_min":0.2070596707718713,"rel_max":58.061655941687036,"scaled_dist":200.0,"scaled_rad":100.0},{"average":58.070163330774555,"rel_min":0.2070596707718713,"rel_max":58.070163330774555,"scaled_dist":200.0,"scaled_rad":100.0},{"average":58.12786449975651,"rel_min":0.2070596707718713,"rel_max":58.12786449975651,"scaled_dist":200.0,"scaled_rad":100.0},{"average":58.18196674339667,"rel_min":0.2070596707718713,"rel_max":58.18196674339667,"scaled_dist":200.0,"scaled_rad":100.0},{"average":58.226746474973766,"rel_min":0.2070596707718713,"rel_max":58.226746474973766,"scaled_dist":200.0,"scaled_rad":100.0},{"average":58.2702194478192,"rel_min":0.2070596707718713,"rel_max":58.2702194478192,"scaled_dist":200.0,"scaled_rad":100.0},{"average":58.314761877196936,"rel_min":0.2070596707718713,"rel_max":58.314761877196936,"scaled_dist":200.0,"scaled_rad":100.0},{"average":58.35831129771762,"rel_min":0.2070596707718713,"rel_max":58.35831129771762,"scaled_dist":200.0,"scaled_rad":100.0},{"average":58.40065718823608,"rel_min":0.2070596707718713,"rel_max":58.40065718823608,"scaled_dist":200.0,"scaled_rad":100.0},{"average":58.43937530134076,"rel_min":0.2070596707718713,"rel_max":58.43937530134076,"scaled_dist":200.0,"scaled_rad":100.0},{"average":58.47812003741981,"rel_min":0.2070596707718713,"rel_max":58.47812003741981,"scaled_dist":200.0,"scaled_rad":100.0},{"average":58.520487665203085,"rel_min":0.2070596707718713,"rel_max":58.520487665203085,"scaled_dist":200.0,"scaled_rad":100.0},{"average":58.567456495213804,"rel_min":0.2070596707718713,"rel_max":58.567456495213804,"scaled_dist":200.0,"scaled_rad":100.0},{"average":58.61867439384591,"rel_min":0.2070596707718713,"rel_max":58.61867439384591,"scaled_dist":200.0,"scaled_rad":100.0},{"average":58.675597501381155,"rel_min":0.2070596707718713,"rel_max":58.675597501381155,"scaled_dist":200.0,"scaled_rad":100.0},{"average":58.73013620186515,"rel_min":0.2070596707718713,"rel_max":58.73013620186515,"scaled_dist":200.0,"scaled_rad":100.0},{"average":58.77699645480525,"rel_min":0.2070596707718713,"rel_max":58.77699645480525,"scaled_dist":200.0,"scaled_rad":100.0},{"average":58.818533702142034,"rel_min":0.2070596707718713,"rel_max":58.818533702142034,"scaled_dist":200.0,"scaled_rad":100.0},{"average":58.85717436817008,"rel_min":0.2070596707718713,"rel_max":58.85717436817008,"scaled_dist":200.0,"scaled_rad":100.0},{"average":58.88672562411636,"rel_min":0.2070596707718713,"rel_max":58.88672562411636,"scaled_dist":200.0,"scaled_rad":100.0},{"average":58.925873673199334,"rel_min":0.2070596707718713,"rel_max":58.925873673199334,"scaled_dist":200.0,"scaled_rad":100.0},{"average":58.97148183272257,"rel_min":0.2070596707718713,"rel_max":58.97148183272257,"scaled_dist":200.0,"scaled_rad":100.0},{"average":59.02335839000705,"rel_min":0.2070596707718713,"rel_max":59.02335839000705,"scaled_dist":200.0,"scaled_rad":100.0},{"average":59.07566088496619,"rel_min":0.2070596707718713,"rel_max":59.07566088496619,"scaled_dist":200.0,"scaled_rad":100.0},{"average":59.130083092270624,"rel_min":0.2070596707718713,"rel_max":59.130083092270624,"scaled_dist":200.0,"scaled_rad":100.0},{"average":59.17906776914579,"rel_min":0.2070596707718713,"rel_max":59.17906776914579,"scaled_dist":200.0,"scaled_rad":100.0},{"average":59.230594081419554,"rel_min":0.2070596707718713,"rel_max":59.230594081419554,"scaled_dist":200.0,"scaled_rad":100.0},{"average":59.28417208494957,"rel_min":0.2070596707718713,"rel_max":59.28417208494957,"scaled_dist":200.0,"scaled_rad":100.0},{"average":59.33274073671134,"rel_min":0.2070596707718713,"rel_max":59.33274073671134,"scaled_dist":200.0,"scaled_rad":100.0},{"average":59.37623713573993,"rel_min":0.2070596707718713,"rel_max":59.37623713573993,"scaled_dist":200.0,"scaled_rad":100.0},{"average":59.42289182345372,"rel_min":0.2070596707718713,"rel_max":59.42289182345372,"scaled_dist":200.0,"scaled_rad":100.0},{"average":59.47236951043491,"rel_min":0.2070596707718713,"rel_max":59.47236951043491,"scaled_dist":200.0,"scaled_rad":100.0},{"average":59.52493842377478,"rel_min":0.2070596707718713,"rel_max":59.52493842377478,"scaled_dist":200.0,"scaled_rad":100.0},{"average":59.580659853092506,"rel_min":0.2070596707718713,"rel_max":59.580659853092506,"scaled_dist":200.0,"scaled_rad":100.0},{"average":59.63491437387012,"rel_min":0.2070596707718713,"rel_max":59.63491437387012,"scaled_dist":200.0,"scaled_rad":100.0},{"average":59.686503867329726,"rel_min":0.2070596707718713,"rel_max":59.686503867329726,"scaled_dist":200.0,"scaled_rad":100.0},{"average":59.73573889360265,"rel_min":0.2070596707718713,"rel_max":59.73573889360265,"scaled_dist":200.0,"scaled_rad":100.0},{"average":59.78857545519811,"rel_min":0.2070596707718713,"rel_max":59.78857545519811,"scaled_dist":200.0,"scaled_rad":100.0},{"average":59.84256358579103,"rel_min":0.2070596707718713,"rel_max":59.84256358579103,"scaled_dist":200.0,"scaled_rad":100.0},{"average":59.90386003550682,"rel_min":0.2070596707718713,"rel_max":59.90386003550682,"scaled_dist":200.0,"scaled_rad":100.0},{"average":59.957444353525915,"rel_min":0.2070596707718713,"rel_max":59.957444353525915,"scaled_dist":200.0,"scaled_rad":100.0},{"average":60.00900705216942,"rel_min":0.2070596707718713,"rel_max":60.00900705216942,"scaled_dist":200.0,"scaled_rad":100.0},{"average":60.0590384329339,"rel_min":0.2070596707718713,"rel_max":60.0590384329339,"scaled_dist":200.0,"scaled_rad":100.0},{"average":60.10552650895874,"rel_min":0.2070596707718713,"rel_max":60.10552650895874,"scaled_dist":200.0,"scaled_rad":100.0},{"average":60.15724373269693,"rel_min":0.2070596707718713,"rel_max":60.15724373269693,"scaled_dist":200.0,"scaled_rad":100.0},{"average":60.20877633433062,"rel_min":0.2070596707718713,"rel_max":60.20877633433062,"scaled_dist":200.0,"scaled_rad":100.0},{"average":60.26124912122788,"rel_min":0.2070596707718713,"rel_max":60.26124912122788,"scaled_dist":200.0,"scaled_rad":100.0},{"average":60.313651968319,"rel_min":0.2070596707718713,"rel_max":60.313651968319,"scaled_dist":200.0,"scaled_rad":100.0},{"average":60.36545767062121,"rel_min":0.2070596707718713,"rel_max":60.36545767062121,"scaled_dist":200.0,"scaled_rad":100.0},{"average":60.418013211312896,"rel_min":0.2070596707718713,"rel_max":60.418013211312896,"scaled_dist":200.0,"scaled_rad":100.0},{"average":60.46870791289277,"rel_min":0.2070596707718713,"rel_max":60.46870791289277,"scaled_dist":200.0,"scaled_rad":100.0},{"average":60.50885721524737,"rel_min":0.2070596707718713,"rel_max":60.50885721524737,"scaled_dist":200.0,"scaled_rad":100.0},{"average":60.54167387169544,"rel_min":0.2070596707718713,"rel_max":60.54167387169544,"scaled_dist":200.0,"scaled_rad":100.0},{"average":60.57126539380912,"rel_min":0.2070596707718713,"rel_max":60.57126539380912,"scaled_dist":200.0,"scaled_rad":100.0},{"average":60.61740343597638,"rel_min":0.2070596707718713,"rel_max":60.61740343597638,"scaled_dist":200.0,"scaled_rad":100.0},{"average":60.67101859171851,"rel_min":0.2070596707718713,"rel_max":60.67101859171851,"scaled_dist":200.0,"scaled_rad":100.0},{"average":60.71427914743788,"rel_min":0.2070596707718713,"rel_max":60.71427914743788,"scaled_dist":200.0,"scaled_rad":100.0},{"average":60.75164495516994,"rel_min":0.2070596707718713,"rel_max":60.75164495516994,"scaled_dist":200.0,"scaled_rad":100.0},{"average":60.78969401006927,"rel_min":0.2070596707718713,"rel_max":60.78969401006927,"scaled_dist":200.0,"scaled_rad":100.0},{"average":60.83596146990958,"rel_min":0.2070596707718713,"rel_max":60.83596146990958,"scaled_dist":200.0,"scaled_rad":100.0},{"average":60.876135757451756,"rel_min":0.2070596707718713,"rel_max":60.876135757451756,"scaled_dist":200.0,"scaled_rad":100.0},{"average":60.91742337594484,"rel_min":0.2070596707718713,"rel_max":60.91742337594484,"scaled_dist":200.0,"scaled_rad":100.0},{"average":60.96308589621431,"rel_min":0.2070596707718713,"rel_max":60.96308589621431,"scaled_dist":200.0,"scaled_rad":100.0},{"average":61.004427235536944,"rel_min":0.2070596707718713,"rel_max":61.004427235536944,"scaled_dist":200.0,"scaled_rad":100.0},{"average":61.04542574655901,"rel_min":0.2070596707718713,"rel_max":61.04542574655901,"scaled_dist":200.0,"scaled_rad":100.0},{"average":61.08385367892701,"rel_min":0.2070596707718713,"rel_max":61.08385367892701,"scaled_dist":200.0,"scaled_rad":100.0},{"average":61.12879858655093,"rel_min":0.2070596707718713,"rel_max":61.12879858655093,"scaled_dist":200.0,"scaled_rad":100.0},{"average":61.17671000812868,"rel_min":0.2070596707718713,"rel_max":61.17671000812868,"scaled_dist":200.0,"scaled_rad":100.0},{"average":61.202636576447965,"rel_min":0.2070596707718713,"rel_max":61.202636576447965,"scaled_dist":200.0,"scaled_rad":100.0},{"average":61.25334470796903,"rel_min":0.2070596707718713,"rel_max":61.25334470796903,"scaled_dist":200.0,"scaled_rad":100.0},{"average":61.32344556246343,"rel_min":0.2070596707718713,"rel_max":61.32344556246343,"scaled_dist":200.0,"scaled_rad":100.0},{"average":61.3733439037309,"rel_min":0.2070596707718713,"rel_max":61.3733439037309,"scaled_dist":200.0,"scaled_rad":100.0},{"average":61.470066679571595,"rel_min":0.2070596707718713,"rel_max":61.470066679571595,"scaled_dist":200.0,"scaled_rad":100.0},{"average":61.51497180268896,"rel_min":0.2070596707718713,"rel_max":61.51497180268896,"scaled_dist":200.0,"scaled_rad":100.0},{"average":61.54795387394783,"rel_min":0.2070596707718713,"rel_max":61.54795387394783,"scaled_dist":200.0,"scaled_rad":100.0},{"average":61.58792379162246,"rel_min":0.2070596707718713,"rel_max":61.58792379162246,"scaled_dist":200.0,"scaled_rad":100.0},{"average":61.62816185306415,"rel_min":0.2070596707718713,"rel_max":61.62816185306415,"scaled_dist":200.0,"scaled_rad":100.0},{"average":61.668419512809216,"rel_min":0.2070596707718713,"rel_max":61.668419512809216,"scaled_dist":200.0,"scaled_rad":100.0},{"average":61.71869298146957,"rel_min":0.2070596707718713,"rel_max":61.71869298146957,"scaled_dist":200.0,"scaled_rad":100.0},{"average":61.77509352147975,"rel_min":0.2070596707718713,"rel_max":61.77509352147975,"scaled_dist":200.0,"scaled_rad":100.0},{"average":61.835296779465985,"rel_min":0.2070596707718713,"rel_max":61.835296779465985,"scaled_dist":200.0,"scaled_rad":100.0},{"average":61.89635591909111,"rel_min":0.2070596707718713,"rel_max":61.89635591909111,"scaled_dist":200.0,"scaled_rad":100.0},{"average":61.94843555907511,"rel_min":0.2070596707718713,"rel_max":61.94843555907511,"scaled_dist":200.0,"scaled_rad":100.0},{"average":61.99613426919482,"rel_min":0.2070596707718713,"rel_max":61.99613426919482,"scaled_dist":200.0,"scaled_rad":100.0},{"average":62.0434575002497,"rel_min":0.2070596707718713,"rel_max":62.0434575002497,"scaled_dist":200.0,"scaled_rad":100.0},{"average":62.08324649986406,"rel_min":0.2070596707718713,"rel_max":62.08324649986406,"scaled_dist":200.0,"scaled_rad":100.0},{"average":62.11038505327368,"rel_min":0.2070596707718713,"rel_max":62.11038505327368,"scaled_dist":200.0,"scaled_rad":100.0},{"average":62.13148874994495,"rel_min":0.2070596707718713,"rel_max":62.13148874994495,"scaled_dist":200.0,"scaled_rad":100.0},{"average":62.160143256097996,"rel_min":0.2070596707718713,"rel_max":62.160143256097996,"scaled_dist":200.0,"scaled_rad":100.0},{"average":62.20584662496633,"rel_min":0.2070596707718713,"rel_max":62.20584662496633,"scaled_dist":200.0,"scaled_rad":100.0},{"average":62.25524814397958,"rel_min":0.2070596707718713,"rel_max":62.25524814397958,"scaled_dist":200.0,"scaled_rad":100.0},{"average":62.31510302232889,"rel_min":0.2070596707718713,"rel_max":62.31510302232889,"scaled_dist":200.0,"scaled_rad":100.0},{"average":62.36543351572839,"rel_min":0.2070596707718713,"rel_max":62.36543351572839,"scaled_dist":200.0,"scaled_rad":100.0},{"average":62.417460336715074,"rel_min":0.2070596707718713,"rel_max":62.417460336715074,"scaled_dist":200.0,"scaled_rad":100.0},{"average":62.463535035073974,"rel_min":0.2070596707718713,"rel_max":62.463535035073974,"scaled_dist":200.0,"scaled_rad":100.0},{"average":62.50655923806942,"rel_min":0.2070596707718713,"rel_max":62.50655923806942,"scaled_dist":200.0,"scaled_rad":100.0},{"average":62.55231634568702,"rel_min":0.2070596707718713,"rel_max":62.55231634568702,"scaled_dist":200.0,"scaled_rad":100.0},{"average":62.60085813733258,"rel_min":0.2070596707718713,"rel_max":62.60085813733258,"scaled_dist":200.0,"scaled_rad":100.0},{"average":62.65313619236873,"rel_min":0.2070596707718713,"rel_max":62.65313619236873,"scaled_dist":200.0,"scaled_rad":100.0},{"average":62.709209911970426,"rel_min":0.2070596707718713,"rel_max":62.709209911970426,"scaled_dist":200.0,"scaled_rad":100.0},{"average":62.766966163790684,"rel_min":0.2070596707718713,"rel_max":62.766966163790684,"scaled_dist":200.0,"scaled_rad":100.0},{"average":62.817735090608075,"rel_min":0.2070596707718713,"rel_max":62.817735090608075,"scaled_dist":200.0,"scaled_rad":100.0},{"average":62.87472236220687,"rel_min":0.2070596707718713,"rel_max":62.87472236220687,"scaled_dist":200.0,"scaled_rad":100.0},{"average":62.93125415878268,"rel_min":0.2070596707718713,"rel_max":62.93125415878268,"scaled_dist":200.0,"scaled_rad":100.0},{"average":62.98305232953735,"rel_min":0.2070596707718713,"rel_max":62.98305232953735,"scaled_dist":200.0,"scaled_rad":100.0},{"average":63.03459497533602,"rel_min":0.2070596707718713,"rel_max":63.03459497533602,"scaled_dist":200.0,"scaled_rad":100.0},{"average":63.095946724721806,"rel_min":0.2070596707718713,"rel_max":63.095946724721806,"scaled_dist":200.0,"scaled_rad":100.0},{"average":63.14914907522315,"rel_min":0.2070596707718713,"rel_max":63.14914907522315,"scaled_dist":200.0,"scaled_rad":100.0},{"average":63.19409020626721,"rel_min":0.2070596707718713,"rel_max":63.19409020626721,"scaled_dist":200.0,"scaled_rad":100.0},{"average":63.23122270347913,"rel_min":0.2070596707718713,"rel_max":63.23122270347913,"scaled_dist":200.0,"scaled_rad":100.0},{"average":63.26329973637515,"rel_min":0.2070596707718713,"rel_max":63.26329973637515,"scaled_dist":200.0,"scaled_rad":100.0},{"average":63.30267997070944,"rel_min":0.2070596707718713,"rel_max":63.30267997070944,"scaled_dist":200.0,"scaled_rad":100.0},{"average":63.344870654075976,"rel_min":0.2070596707718713,"rel_max":63.344870654075976,"scaled_dist":200.0,"scaled_rad":100.0},{"average":63.39117711236132,"rel_min":0.2070596707718713,"rel_max":63.39117711236132,"scaled_dist":200.0,"scaled_rad":100.0},{"average":63.44188310757335,"rel_min":0.2070596707718713,"rel_max":63.44188310757335,"scaled_dist":200.0,"scaled_rad":100.0},{"average":63.48778459282323,"rel_min":0.2070596707718713,"rel_max":63.48778459282323,"scaled_dist":200.0,"scaled_rad":100.0},{"average":63.533461072462806,"rel_min":0.2070596707718713,"rel_max":63.533461072462806,"scaled_dist":200.0,"scaled_rad":100.0},{"average":63.58152489957461,"rel_min":0.2070596707718713,"rel_max":63.58152489957461,"scaled_dist":200.0,"scaled_rad":100.0},{"average":63.63155464781756,"rel_min":0.2070596707718713,"rel_max":63.63155464781756,"scaled_dist":200.0,"scaled_rad":100.0},{"average":63.67704625709182,"rel_min":0.2070596707718713,"rel_max":63.67704625709182,"scaled_dist":200.0,"scaled_rad":100.0},{"average":63.716047972524436,"rel_min":0.2070596707718713,"rel_max":63.716047972524436,"scaled_dist":200.0,"scaled_rad":100.0},{"average":63.76185488651885,"rel_min":0.2070596707718713,"rel_max":63.76185488651885,"scaled_dist":200.0,"scaled_rad":100.0},{"average":63.80972238232093,"rel_min":0.2070596707718713,"rel_max":63.80972238232093,"scaled_dist":200.0,"scaled_rad":100.0},{"average":63.862950372959574,"rel_min":0.2070596707718713,"rel_max":63.862950372959574,"scaled_dist":200.0,"scaled_rad":100.0},{"average":63.918662790994816,"rel_min":0.2070596707718713,"rel_max":63.918662790994816,"scaled_dist":200.0,"scaled_rad":100.0},{"average":63.987235742912496,"rel_min":0.2070596707718713,"rel_max":63.987235742912496,"scaled_dist":200.0,"scaled_rad":100.0},{"average":64.04039654168749,"rel_min":0.2070596707718713,"rel_max":64.04039654168749,"scaled_dist":200.0,"scaled_rad":100.0},{"average":64.09766132515892,"rel_min":0.2070596707718713,"rel_max":64.09766132515892,"scaled_dist":200.0,"scaled_rad":100.0},{"average":64.15987408375754,"rel_min":0.2070596707718713,"rel_max":64.15987408375754,"scaled_dist":200.0,"scaled_rad":100.0},{"average":64.22234893310801,"rel_min":0.2070596707718713,"rel_max":64.22234893310801,"scaled_dist":200.0,"scaled_rad":100.0},{"average":64.27479629290802,"rel_min":0.2070596707718713,"rel_max":64.27479629290802,"scaled_dist":200.0,"scaled_rad":100.0},{"average":64.32149496988286,"rel_min":0.2070596707718713,"rel_max":64.32149496988286,"scaled_dist":200.0,"scaled_rad":100.0},{"average":64.37521320157639,"rel_min":0.2070596707718713,"rel_max":64.37521320157639,"scaled_dist":200.0,"scaled_rad":100.0},{"average":64.43607933717608,"rel_min":0.2070596707718713,"rel_max":64.43607933717608,"scaled_dist":200.0,"scaled_rad":100.0},{"average":64.49454434959397,"rel_min":0.2070596707718713,"rel_max":64.49454434959397,"scaled_dist":200.0,"scaled_rad":100.0},{"average":64.557595440243,"rel_min":0.2070596707718713,"rel_max":64.557595440243,"scaled_dist":200.0,"scaled_rad":100.0},{"average":64.61240683285855,"rel_min":0.2070596707718713,"rel_max":64.61240683285855,"scaled_dist":200.0,"scaled_rad":100.0},{"average":64.66089497816876,"rel_min":0.2070596707718713,"rel_max":64.66089497816876,"scaled_dist":200.0,"scaled_rad":100.0},{"average":64.7091328287746,"rel_min":0.2070596707718713,"rel_max":64.7091328287746,"scaled_dist":200.0,"scaled_rad":100.0},{"average":64.7572551121592,"rel_min":0.2070596707718713,"rel_max":64.7572551121592,"scaled_dist":200.0,"scaled_rad":100.0},{"average":64.80459309461793,"rel_min":0.2070596707718713,"rel_max":64.80459309461793,"scaled_dist":200.0,"scaled_rad":100.0},{"average":64.84882411507681,"rel_min":0.2070596707718713,"rel_max":64.84882411507681,"scaled_dist":200.0,"scaled_rad":100.0},{"average":64.89376699023782,"rel_min":0.2070596707718713,"rel_max":64.89376699023782,"scaled_dist":200.0,"scaled_rad":100.0},{"average":64.94089852894646,"rel_min":0.2070596707718713,"rel_max":64.94089852894646,"scaled_dist":200.0,"scaled_rad":100.0},{"average":64.98283182144513,"rel_min":0.2070596707718713,"rel_max":64.98283182144513,"scaled_dist":200.0,"scaled_rad":100.0},{"average":65.02929396388703,"rel_min":0.2070596707718713,"rel_max":65.02929396388703,"scaled_dist":200.0,"scaled_rad":100.0},{"average":65.0738286831693,"rel_min":0.2070596707718713,"rel_max":65.0738286831693,"scaled_dist":200.0,"scaled_rad":100.0},{"average":65.11641230299713,"rel_min":0.2070596707718713,"rel_max":65.11641230299713,"scaled_dist":200.0,"scaled_rad":100.0},{"average":65.15567329717659,"rel_min":0.2070596707718713,"rel_max":65.15567329717659,"scaled_dist":200.0,"scaled_rad":100.0},{"average":65.19260998249872,"rel_min":0.2070596707718713,"rel_max":65.19260998249872,"scaled_dist":200.0,"scaled_rad":100.0},{"average":65.23559509071093,"rel_min":0.2070596707718713,"rel_max":65.23559509071093,"scaled_dist":200.0,"scaled_rad":100.0},{"average":65.27956976584676,"rel_min":0.2070596707718713,"rel_max":65.27956976584676,"scaled_dist":200.0,"scaled_rad":100.0},{"average":65.32550656353975,"rel_min":0.2070596707718713,"rel_max":65.32550656353975,"scaled_dist":200.0,"scaled_rad":100.0},{"average":65.37301419074515,"rel_min":0.2070596707718713,"rel_max":65.37301419074515,"scaled_dist":200.0,"scaled_rad":100.0},{"average":65.4131625235676,"rel_min":0.2070596707718713,"rel_max":65.4131625235676,"scaled_dist":200.0,"scaled_rad":100.0},{"average":65.44467531544211,"rel_min":0.2070596707718713,"rel_max":65.44467531544211,"scaled_dist":200.0,"scaled_rad":100.0},{"average":65.47747608119897,"rel_min":0.2070596707718713,"rel_max":65.47747608119897,"scaled_dist":200.0,"scaled_rad":100.0},{"average":65.51561265323761,"rel_min":0.2070596707718713,"rel_max":65.51561265323761,"scaled_dist":200.0,"scaled_rad":100.0},{"average":65.5697791648333,"rel_min":0.2070596707718713,"rel_max":65.5697791648333,"scaled_dist":200.0,"scaled_rad":100.0},{"average":65.64258677504918,"rel_min":0.2070596707718713,"rel_max":65.64258677504918,"scaled_dist":200.0,"scaled_rad":100.0},{"average":65.69358790449998,"rel_min":0.2070596707718713,"rel_max":65.69358790449998,"scaled_dist":200.0,"scaled_rad":100.0},{"average":65.74731834117088,"rel_min":0.2070596707718713,"rel_max":65.74731834117088,"scaled_dist":200.0,"scaled_rad":100.0},{"average":65.79742111784188,"rel_min":0.2070596707718713,"rel_max":65.79742111784188,"scaled_dist":200.0,"scaled_rad":100.0},{"average":65.84610886814104,"rel_min":0.2070596707718713,"rel_max":65.84610886814104,"scaled_dist":200.0,"scaled_rad":100.0},{"average":65.89551456516105,"rel_min":0.2070596707718713,"rel_max":65.89551456516105,"scaled_dist":200.0,"scaled_rad":100.0},{"average":65.93783421203689,"rel_min":0.2070596707718713,"rel_max":65.93783421203689,"scaled_dist":200.0,"scaled_rad":100.0},{"average":65.97263121110154,"rel_min":0.2070596707718713,"rel_max":65.97263121110154,"scaled_dist":200.0,"scaled_rad":100.0},{"average":66.00044118597293,"rel_min":0.2070596707718713,"rel_max":66.00044118597293,"scaled_dist":200.0,"scaled_rad":100.0},{"average":66.02463458627089,"rel_min":0.2070596707718713,"rel_max":66.02463458627089,"scaled_dist":200.0,"scaled_rad":100.0},{"average":66.05094187612923,"rel_min":0.2070596707718713,"rel_max":66.05094187612923,"scaled_dist":200.0,"scaled_rad":100.0},{"average":66.0806130262135,"rel_min":0.2070596707718713,"rel_max":66.0806130262135,"scaled_dist":200.0,"scaled_rad":100.0},{"average":66.1233185405674,"rel_min":0.2070596707718713,"rel_max":66.1233185405674,"scaled_dist":200.0,"scaled_rad":100.0},{"average":66.16706576291193,"rel_min":0.2070596707718713,"rel_max":66.16706576291193,"scaled_dist":200.0,"scaled_rad":100.0},{"average":66.21179540891971,"rel_min":0.2070596707718713,"rel_max":66.21179540891971,"scaled_dist":200.0,"scaled_rad":100.0},{"average":66.25542647312477,"rel_min":0.2070596707718713,"rel_max":66.25542647312477,"scaled_dist":200.0,"scaled_rad":100.0},{"average":66.29673786111114,"rel_min":0.2070596707718713,"rel_max":66.29673786111114,"scaled_dist":200.0,"scaled_rad":100.0},{"average":66.3387345177844,"rel_min":0.2070596707718713,"rel_max":66.3387345177844,"scaled_dist":200.0,"scaled_rad":100.0},{"average":66.38938719223607,"rel_min":0.2070596707718713,"rel_max":66.38938719223607,"scaled_dist":200.0,"scaled_rad":100.0},{"average":66.43770787283468,"rel_min":0.2070596707718713,"rel_max":66.43770787283468,"scaled_dist":200.0,"scaled_rad":100.0},{"average":66.48873380666205,"rel_min":0.2070596707718713,"rel_max":66.48873380666205,"scaled_dist":200.0,"scaled_rad":100.0},{"average":66.53954728564258,"rel_min":0.2070596707718713,"rel_max":66.53954728564258,"scaled_dist":200.0,"scaled_rad":100.0},{"average":66.59122670394416,"rel_min":0.2070596707718713,"rel_max":66.59122670394416,"scaled_dist":200.0,"scaled_rad":100.0},{"average":66.6467134448984,"rel_min":0.2070596707718713,"rel_max":66.6467134448984,"scaled_dist":200.0,"scaled_rad":100.0},{"average":66.70984452587746,"rel_min":0.2070596707718713,"rel_max":66.70984452587746,"scaled_dist":200.0,"scaled_rad":100.0},{"average":66.78445243950685,"rel_min":0.2070596707718713,"rel_max":66.78445243950685,"scaled_dist":200.0,"scaled_rad":100.0},{"average":66.84214742885433,"rel_min":0.2070596707718713,"rel_max":66.84214742885433,"scaled_dist":200.0,"scaled_rad":100.0},{"average":66.90206340998832,"rel_min":0.2070596707718713,"rel_max":66.90206340998832,"scaled_dist":200.0,"scaled_rad":100.0},{"average":66.9657962993134,"rel_min":0.2070596707718713,"rel_max":66.9657962993134,"scaled_dist":200.0,"scaled_rad":100.0},{"average":67.03322899025926,"rel_min":0.2070596707718713,"rel_max":67.03322899025926,"scaled_dist":200.0,"scaled_rad":100.0},{"average":67.09175833371185,"rel_min":0.2070596707718713,"rel_max":67.09175833371185,"scaled_dist":200.0,"scaled_rad":100.0},{"average":67.13989690367427,"rel_min":0.2070596707718713,"rel_max":67.13989690367427,"scaled_dist":200.0,"scaled_rad":100.0},{"average":67.18424638217637,"rel_min":0.2070596707718713,"rel_max":67.18424638217637,"scaled_dist":200.0,"scaled_rad":100.0},{"average":67.22596530163504,"rel_min":0.2070596707718713,"rel_max":67.22596530163504,"scaled_dist":200.0,"scaled_rad":100.0},{"average":67.29426507514842,"rel_min":0.2070596707718713,"rel_max":67.29426507514842,"scaled_dist":200.0,"scaled_rad":100.0},{"average":67.33400405167528,"rel_min":0.2070596707718713,"rel_max":67.33400405167528,"scaled_dist":200.0,"scaled_rad":100.0},{"average":67.37969574891648,"rel_min":0.2070596707718713,"rel_max":67.37969574891648,"scaled_dist":200.0,"scaled_rad":100.0},{"average":67.4355045157806,"rel_min":0.2070596707718713,"rel_max":67.4355045157806,"scaled_dist":200.0,"scaled_rad":100.0},{"average":67.48765051340125,"rel_min":0.2070596707718713,"rel_max":67.48765051340125,"scaled_dist":200.0,"scaled_rad":100.0},{"average":67.5344183123753,"rel_min":0.2070596707718713,"rel_max":67.5344183123753,"scaled_dist":200.0,"scaled_rad":100.0},{"average":67.57486736996921,"rel_min":0.2070596707718713,"rel_max":67.57486736996921,"scaled_dist":200.0,"scaled_rad":100.0},{"average":67.61430263707182,"rel_min":0.2070596707718713,"rel_max":67.61430263707182,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":67.65613070177253,"rel_min":0.2070596707718713,"rel_max":67.65613070177253,"scaled_dist":200.0,"scaled_rad":100.0},{"average":67.69924497528999,"rel_min":0.2070596707718713,"rel_max":67.69924497528999,"scaled_dist":200.0,"scaled_rad":100.0},{"average":67.73643862032212,"rel_min":0.2070596707718713,"rel_max":67.73643862032212,"scaled_dist":200.0,"scaled_rad":100.0},{"average":67.7791530356373,"rel_min":0.2070596707718713,"rel_max":67.7791530356373,"scaled_dist":200.0,"scaled_rad":100.0},{"average":67.8194415080213,"rel_min":0.2070596707718713,"rel_max":67.8194415080213,"scaled_dist":200.0,"scaled_rad":100.0},{"average":67.86421939622372,"rel_min":0.2070596707718713,"rel_max":67.86421939622372,"scaled_dist":200.0,"scaled_rad":100.0},{"average":67.91184288815583,"rel_min":0.2070596707718713,"rel_max":67.91184288815583,"scaled_dist":200.0,"scaled_rad":100.0},{"average":67.95798028717296,"rel_min":0.2070596707718713,"rel_max":67.95798028717296,"scaled_dist":200.0,"scaled_rad":100.0},{"average":68.00538420300882,"rel_min":0.2070596707718713,"rel_max":68.00538420300882,"scaled_dist":200.0,"scaled_rad":100.0},{"average":68.05390767271818,"rel_min":0.2070596707718713,"rel_max":68.05390767271818,"scaled_dist":200.0,"scaled_rad":100.0},{"average":68.09871182029585,"rel_min":0.2070596707718713,"rel_max":68.09871182029585,"scaled_dist":200.0,"scaled_rad":100.0},{"average":68.14371246683706,"rel_min":0.2070596707718713,"rel_max":68.14371246683706,"scaled_dist":200.0,"scaled_rad":100.0},{"average":68.19143063672497,"rel_min":0.2070596707718713,"rel_max":68.19143063672497,"scaled_dist":200.0,"scaled_rad":100.0},{"average":68.23986365632382,"rel_min":0.2070596707718713,"rel_max":68.23986365632382,"scaled_dist":200.0,"scaled_rad":100.0},{"average":68.29402270315825,"rel_min":0.2070596707718713,"rel_max":68.29402270315825,"scaled_dist":200.0,"scaled_rad":100.0},{"average":68.34762158035149,"rel_min":0.2070596707718713,"rel_max":68.34762158035149,"scaled_dist":200.0,"scaled_rad":100.0},{"average":68.4036699115118,"rel_min":0.2070596707718713,"rel_max":68.4036699115118,"scaled_dist":200.0,"scaled_rad":100.0},{"average":68.47763419154204,"rel_min":0.2070596707718713,"rel_max":68.47763419154204,"scaled_dist":200.0,"scaled_rad":100.0},{"average":68.52769838374098,"rel_min":0.2070596707718713,"rel_max":68.52769838374098,"scaled_dist":200.0,"scaled_rad":100.0},{"average":68.57075622052359,"rel_min":0.2070596707718713,"rel_max":68.57075622052359,"scaled_dist":200.0,"scaled_rad":100.0},{"average":68.61071287046899,"rel_min":0.2070596707718713,"rel_max":68.61071287046899,"scaled_dist":200.0,"scaled_rad":100.0},{"average":68.65577888328386,"rel_min":0.2070596707718713,"rel_max":68.65577888328386,"scaled_dist":200.0,"scaled_rad":100.0},{"average":68.69917444547406,"rel_min":0.2070596707718713,"rel_max":68.69917444547406,"scaled_dist":200.0,"scaled_rad":100.0},{"average":68.74245279382542,"rel_min":0.2070596707718713,"rel_max":68.74245279382542,"scaled_dist":200.0,"scaled_rad":100.0},{"average":68.78564319143345,"rel_min":0.2070596707718713,"rel_max":68.78564319143345,"scaled_dist":200.0,"scaled_rad":100.0},{"average":68.81806145865113,"rel_min":0.2070596707718713,"rel_max":68.81806145865113,"scaled_dist":200.0,"scaled_rad":100.0},{"average":68.85014431392403,"rel_min":0.2070596707718713,"rel_max":68.85014431392403,"scaled_dist":200.0,"scaled_rad":100.0},{"average":68.89499652609047,"rel_min":0.2070596707718713,"rel_max":68.89499652609047,"scaled_dist":200.0,"scaled_rad":100.0},{"average":68.94048718922308,"rel_min":0.2070596707718713,"rel_max":68.94048718922308,"scaled_dist":200.0,"scaled_rad":100.0},{"average":68.98665344951134,"rel_min":0.2070596707718713,"rel_max":68.98665344951134,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":69.03623922351301,"rel_min":0.2070596707718713,"rel_max":69.03623922351301,"scaled_dist":200.0,"scaled_rad":100.0},{"average":69.0875822786244,"rel_min":0.2070596707718713,"rel_max":69.0875822786244,"scaled_dist":200.0,"scaled_rad":100.0},{"average":69.14065578297418,"rel_min":0.2070596707718713,"rel_max":69.14065578297418,"scaled_dist":200.0,"scaled_rad":100.0},{"average":69.19524845153981,"rel_min":0.2070596707718713,"rel_max":69.19524845153981,"scaled_dist":200.0,"scaled_rad":100.0},{"average":69.2477239314671,"rel_min":0.2070596707718713,"rel_max":69.2477239314671,"scaled_dist":200.0,"scaled_rad":100.0},{"average":69.29256644062534,"rel_min":0.2070596707718713,"rel_max":69.29256644062534,"scaled_dist":200.0,"scaled_rad":100.0},{"average":69.33892030525428,"rel_min":0.2070596707718713,"rel_max":69.33892030525428,"scaled_dist":200.0,"scaled_rad":100.0},{"average":69.38163870681532,"rel_min":0.2070596707718713,"rel_max":69.38163870681532,"scaled_dist":200.0,"scaled_rad":100.0},{"average":69.42513486169857,"rel_min":0.2070596707718713,"rel_max":69.42513486169857,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":69.46196904606134,"rel_min":0.2070596707718713,"rel_max":69.46196904606134,"scaled_dist":200.0,"scaled_rad":100.0},{"average":69.49736608178746,"rel_min":0.2070596707718713,"rel_max":69.49736608178746,"scaled_dist":200.0,"scaled_rad":100.0},{"average":69.53293293362132,"rel_min":0.2070596707718713,"rel_max":69.53293293362132,"scaled_dist":200.0,"scaled_rad":100.0},{"average":69.5740541174604,"rel_min":0.2070596707718713,"rel_max":69.5740541174604,"scaled_dist":200.0,"scaled_rad":100.0},{"average":69.61277314135988,"rel_min":0.2070596707718713,"rel_max":69.61277314135988,"scaled_dist":200.0,"scaled_rad":100.0},{"average":69.64846025845073,"rel_min":0.2070596707718713,"rel_max":69.64846025845073,"scaled_dist":200.0,"scaled_rad":100.0},{"average":69.6826010886148,"rel_min":0.2070596707718713,"rel_max":69.6826010886148,"scaled_dist":200.0,"scaled_rad":100.0},{"average":69.72113931690282,"rel_min":0.2070596707718713,"rel_max":69.72113931690282,"scaled_dist":200.0,"scaled_rad":100.0},{"average":69.77151981423098,"rel_min":0.2070596707718713,"rel_max":69.77151981423098,"scaled_dist":200.0,"scaled_rad":100.0},{"average":69.80908425595133,"rel_min":0.2070596707718713,"rel_max":69.80908425595133,"scaled_dist":200.0,"scaled_rad":100.0},{"average":69.85408026757077,"rel_min":0.2070596707718713,"rel_max":69.85408026757077,"scaled_dist":200.0,"scaled_rad":100.0},{"average":69.89989368563953,"rel_min":0.2070596707718713,"rel_max":69.89989368563953,"scaled_dist":200.0,"scaled_rad":100.0},{"average":69.94735448293982,"rel_min":0.2070596707718713,"rel_max":69.94735448293982,"scaled_dist":200.0,"scaled_rad":100.0},{"average":69.99653129186892,"rel_min":0.2070596707718713,"rel_max":69.99653129186892,"scaled_dist":200.0,"scaled_rad":100.0},{"average":70.04761511641539,"rel_min":0.2070596707718713,"rel_max":70.04761511641539,"scaled_dist":200.0,"scaled_rad":100.0},{"average":70.07981118437316,"rel_min":0.2070596707718713,"rel_max":70.07981118437316,"scaled_dist":200.0,"scaled_rad":100.0},{"average":70.1309952254537,"rel_min":0.2070596707718713,"rel_max":70.1309952254537,"scaled_dist":200.0,"scaled_rad":100.0},{"average":70.18358108275459,"rel_min":0.2070596707718713,"rel_max":70.18358108275459,"scaled_dist":200.0,"scaled_rad":100.0},{"average":70.23412860748266,"rel_min":0.2070596707718713,"rel_max":70.23412860748266,"scaled_dist":200.0,"scaled_rad":100.0},{"average":70.28220371398436,"rel_min":0.2070596707718713,"rel_max":70.28220371398436,"scaled_dist":200.0,"scaled_rad":100.0},{"average":70.3292773543864,"rel_min":0.2070596707718713,"rel_max":70.3292773543864,"scaled_dist":200.0,"scaled_rad":100.0},{"average":70.37663175955758,"rel_min":0.2070596707718713,"rel_max":70.37663175955758,"scaled_dist":200.0,"scaled_rad":100.0},{"average":70.42438675327355,"rel_min":0.2070596707718713,"rel_max":70.42438675327355,"scaled_dist":200.0,"scaled_rad":100.0},{"average":70.47372143157895,"rel_min":0.2070596707718713,"rel_max":70.47372143157895,"scaled_dist":200.0,"scaled_rad":100.0},{"average":70.52145303303195,"rel_min":0.2070596707718713,"rel_max":70.52145303303195,"scaled_dist":200.0,"scaled_rad":100.0},{"average":70.56881798623198,"rel_min":0.2070596707718713,"rel_max":70.56881798623198,"scaled_dist":200.0,"scaled_rad":100.0},{"average":70.61900180293615,"rel_min":0.2070596707718713,"rel_max":70.61900180293615,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":70.67189551557,"rel_min":0.2070596707718713,"rel_max":70.67189551557,"scaled_dist":200.0,"scaled_rad":100.0},{"average":70.72263920731322,"rel_min":0.2070596707718713,"rel_max":70.72263920731322,"scaled_dist":200.0,"scaled_rad":100.0},{"average":70.76763863232277,"rel_min":0.2070596707718713,"rel_max":70.76763863232277,"scaled_dist":200.0,"scaled_rad":100.0},{"average":70.82879092117177,"rel_min":0.2070596707718713,"rel_max":70.82879092117177,"scaled_dist":200.0,"scaled_rad":100.0},{"average":70.88059723926584,"rel_min":0.2070596707718713,"rel_max":70.88059723926584,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":70.93226525479189,"rel_min":0.2070596707718713,"rel_max":70.93226525479189,"scaled_dist":200.0,"scaled_rad":100.0},{"average":70.98094392256908,"rel_min":0.2070596707718713,"rel_max":70.98094392256908,"scaled_dist":200.0,"scaled_rad":100.0},{"average":71.03358146261763,"rel_min":0.2070596707718713,"rel_max":71.03358146261763,"scaled_dist":200.0,"scaled_rad":100.0},{"average":71.08272955599915,"rel_min":0.2070596707718713,"rel_max":71.08272955599915,"scaled_dist":200.0,"scaled_rad":100.0},{"average":71.13158444359023,"rel_min":0.2070596707718713,"rel_max":71.13158444359023,"scaled_dist":200.0,"scaled_rad":100.0},{"average":71.18085484667246,"rel_min":0.2070596707718713,"rel_max":71.18085484667246,"scaled_dist":200.0,"scaled_rad":100.0},{"average":71.22833482125165,"rel_min":0.2070596707718713,"rel_max":71.22833482125165,"scaled_dist":200.0,"scaled_rad":100.0},{"average":71.26966324638904,"rel_min":0.2070596707718713,"rel_max":71.26966324638904,"scaled_dist":200.0,"scaled_rad":100.0},{"average":71.30006965735085,"rel_min":0.2070596707718713,"rel_max":71.30006965735085,"scaled_dist":200.0,"scaled_rad":100.0},{"average":71.346496680284,"rel_min":0.2070596707718713,"rel_max":71.346496680284,"scaled_dist":200.0,"scaled_rad":100.0},{"average":71.39211776231863,"rel_min":0.2070596707718713,"rel_max":71.39211776231863,"scaled_dist":200.0,"scaled_rad":100.0},{"average":71.42804517423296,"rel_min":0.2070596707718713,"rel_max":71.42804517423296,"scaled_dist":200.0,"scaled_rad":100.0},{"average":71.48178330263741,"rel_min":0.2070596707718713,"rel_max":71.48178330263741,"scaled_dist":200.0,"scaled_rad":100.0},{"average":71.53196932083462,"rel_min":0.2070596707718713,"rel_max":71.53196932083462,"scaled_dist":200.0,"scaled_rad":100.0},{"average":71.58256434435533,"rel_min":0.2070596707718713,"rel_max":71.58256434435533,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":71.63236842154652,"rel_min":0.2070596707718713,"rel_max":71.63236842154652,"scaled_dist":200.0,"scaled_rad":100.0},{"average":71.68235475619623,"rel_min":0.2070596707718713,"rel_max":71.68235475619623,"scaled_dist":200.0,"scaled_rad":100.0},{"average":71.73248197395154,"rel_min":0.2070596707718713,"rel_max":71.73248197395154,"scaled_dist":200.0,"scaled_rad":100.0},{"average":71.78128896492294,"rel_min":0.2070596707718713,"rel_max":71.78128896492294,"scaled_dist":200.0,"scaled_rad":100.0},{"average":71.8420052104776,"rel_min":0.2070596707718713,"rel_max":71.8420052104776,"scaled_dist":200.0,"scaled_rad":100.0},{"average":71.91682070348887,"rel_min":0.2070596707718713,"rel_max":71.91682070348887,"scaled_dist":200.0,"scaled_rad":100.0},{"average":71.96470860491846,"rel_min":0.2070596707718713,"rel_max":71.96470860491846,"scaled_dist":200.0,"scaled_rad":100.0},{"average":72.01084562466139,"rel_min":0.2070596707718713,"rel_max":72.01084562466139,"scaled_dist":200.0,"scaled_rad":100.0},{"average":72.062624535481,"rel_min":0.2070596707718713,"rel_max":72.062624535481,"scaled_dist":200.0,"scaled_rad":100.0},{"average":72.11820349205308,"rel_min":0.2070596707718713,"rel_max":72.11820349205308,"scaled_dist":200.0,"scaled_rad":100.0},{"average":72.17111395376446,"rel_min":0.2070596707718713,"rel_max":72.17111395376446,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":72.22363705514312,"rel_min":0.2070596707718713,"rel_max":72.22363705514312,"scaled_dist":200.0,"scaled_rad":100.0},{"average":72.27456001140472,"rel_min":0.2070596707718713,"rel_max":72.27456001140472,"scaled_dist":200.0,"scaled_rad":100.0},{"average":72.32253615534285,"rel_min":0.2070596707718713,"rel_max":72.32253615534285,"scaled_dist":200.0,"scaled_rad":100.0},{"average":72.36674916743038,"rel_min":0.2070596707718713,"rel_max":72.36674916743038,"scaled_dist":200.0,"scaled_rad":100.0},{"average":72.41139333587591,"rel_min":0.2070596707718713,"rel_max":72.41139333587591,"scaled_dist":200.0,"scaled_rad":100.0},{"average":72.45460726262617,"rel_min":0.2070596707718713,"rel_max":72.45460726262617,"scaled_dist":200.0,"scaled_rad":100.0},{"average":72.49713309927212,"rel_min":0.2070596707718713,"rel_max":72.49713309927212,"scaled_dist":200.0,"scaled_rad":100.0},{"average":72.54558201015607,"rel_min":0.2070596707718713,"rel_max":72.54558201015607,"scaled_dist":200.0,"scaled_rad":100.0},{"average":72.59738908657361,"rel_min":0.2070596707718713,"rel_max":72.59738908657361,"scaled_dist":200.0,"scaled_rad":100.0},{"average":72.65286781206656,"rel_min":0.2070596707718713,"rel_max":72.65286781206656,"scaled_dist":200.0,"scaled_rad":100.0},{"average":72.70371519820672,"rel_min":0.2070596707718713,"rel_max":72.70371519820672,"scaled_dist":200.0,"scaled_rad":100.0},{"average":72.74786264340011,"rel_min":0.2070596707718713,"rel_max":72.74786264340011,"scaled_dist":200.0,"scaled_rad":100.0},{"average":72.79540977921526,"rel_min":0.2070596707718713,"rel_max":72.79540977921526,"scaled_dist":200.0,"scaled_rad":100.0},{"average":72.84171533059246,"rel_min":0.2070596707718713,"rel_max":72.84171533059246,"scaled_dist":200.0,"scaled_rad":100.0},{"average":72.88282319432574,"rel_min":0.2070596707718713,"rel_max":72.88282319432574,"scaled_dist":200.0,"scaled_rad":100.0},{"average":72.92510749473314,"rel_min":0.2070596707718713,"rel_max":72.92510749473314,"scaled_dist":200.0,"scaled_rad":100.0},{"average":72.97372056895553,"rel_min":0.2070596707718713,"rel_max":72.97372056895553,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":73.01851218531746,"rel_min":0.2070596707718713,"rel_max":73.01851218531746,"scaled_dist":200.0,"scaled_rad":100.0},{"average":73.06362625031997,"rel_min":0.2070596707718713,"rel_max":73.06362625031997,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":73.1094263567828,"rel_min":0.2070596707718713,"rel_max":73.1094263567828,"scaled_dist":200.0,"scaled_rad":100.0},{"average":73.15616807547482,"rel_min":0.2070596707718713,"rel_max":73.15616807547482,"scaled_dist":200.0,"scaled_rad":100.0},{"average":73.206745957438,"rel_min":0.2070596707718713,"rel_max":73.206745957438,"scaled_dist":200.0,"scaled_rad":100.0},{"average":73.2587247735029,"rel_min":0.2070596707718713,"rel_max":73.2587247735029,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":73.31124825806297,"rel_min":0.2070596707718713,"rel_max":73.31124825806297,"scaled_dist":200.0,"scaled_rad":100.0},{"average":73.36713804004587,"rel_min":0.2070596707718713,"rel_max":73.36713804004587,"scaled_dist":200.0,"scaled_rad":100.0},{"average":73.4191553083702,"rel_min":0.2070596707718713,"rel_max":73.4191553083702,"scaled_dist":200.0,"scaled_rad":100.0},{"average":73.46823599064271,"rel_min":0.2070596707718713,"rel_max":73.46823599064271,"scaled_dist":200.0,"scaled_rad":100.0},{"average":73.51633106338744,"rel_min":0.2070596707718713,"rel_max":73.51633106338744,"scaled_dist":200.0,"scaled_rad":100.0},{"average":73.56558085800452,"rel_min":0.2070596707718713,"rel_max":73.56558085800452,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":73.61514041784832,"rel_min":0.2070596707718713,"rel_max":73.61514041784832,"scaled_dist":200.0,"scaled_rad":100.0},{"average":73.66146157038355,"rel_min":0.2070596707718713,"rel_max":73.66146157038355,"scaled_dist":200.0,"scaled_rad":100.0},{"average":73.70694360680247,"rel_min":0.2070596707718713,"rel_max":73.70694360680247,"scaled_dist":200.0,"scaled_rad":100.0},{"average":73.75026982969575,"rel_min":0.2070596707718713,"rel_max":73.75026982969575,"scaled_dist":200.0,"scaled_rad":100.0},{"average":73.79084823030225,"rel_min":0.2070596707718713,"rel_max":73.79084823030225,"scaled_dist":200.0,"scaled_rad":100.0},{"average":73.83436070103787,"rel_min":0.2070596707718713,"rel_max":73.83436070103787,"scaled_dist":200.0,"scaled_rad":100.0},{"average":73.88326187902274,"rel_min":0.2070596707718713,"rel_max":73.88326187902274,"scaled_dist":200.0,"scaled_rad":100.0},{"average":73.93206730724954,"rel_min":0.2070596707718713,"rel_max":73.93206730724954,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":73.97566554373266,"rel_min":0.2070596707718713,"rel_max":73.97566554373266,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":74.01667504707981,"rel_min":0.2070596707718713,"rel_max":74.01667504707981,"scaled_dist":200.0,"scaled_rad":100.0},{"average":74.06380633739128,"rel_min":0.2070596707718713,"rel_max":74.06380633739128,"scaled_dist":200.0,"scaled_rad":100.0},{"average":74.1214374858393,"rel_min":0.2070596707718713,"rel_max":74.1214374858393,"scaled_dist":200.0,"scaled_rad":100.0},{"average":74.17482712522028,"rel_min":0.2070596707718713,"rel_max":74.17482712522028,"scaled_dist":200.0,"scaled_rad":100.0},{"average":74.21255744259214,"rel_min":0.2070596707718713,"rel_max":74.21255744259214,"scaled_dist":200.0,"scaled_rad":100.0},{"average":74.24187024094027,"rel_min":0.2070596707718713,"rel_max":74.24187024094027,"scaled_dist":200.0,"scaled_rad":100.0},{"average":74.27694619009465,"rel_min":0.2070596707718713,"rel_max":74.27694619009465,"scaled_dist":200.0,"scaled_rad":100.0},{"average":74.32057911480312,"rel_min":0.2070596707718713,"rel_max":74.32057911480312,"scaled_dist":200.0,"scaled_rad":100.0},{"average":74.36871092912308,"rel_min":0.2070596707718713,"rel_max":74.36871092912308,"scaled_dist":200.0,"scaled_rad":100.0},{"average":74.41514933741024,"rel_min":0.2070596707718713,"rel_max":74.41514933741024,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":74.4595169501569,"rel_min":0.2070596707718713,"rel_max":74.4595169501569,"scaled_dist":200.0,"scaled_rad":100.0},{"average":74.50527771767013,"rel_min":0.2070596707718713,"rel_max":74.50527771767013,"scaled_dist":200.0,"scaled_rad":100.0},{"average":74.5506034940303,"rel_min":0.2070596707718713,"rel_max":74.5506034940303,"scaled_dist":200.0,"scaled_rad":100.0},{"average":74.59591244870153,"rel_min":0.2070596707718713,"rel_max":74.59591244870153,"scaled_dist":200.0,"scaled_rad":100.0},{"average":74.63874288934795,"rel_min":0.2070596707718713,"rel_max":74.63874288934795,"scaled_dist":200.0,"scaled_rad":100.0},{"average":74.68390989126227,"rel_min":0.2070596707718713,"rel_max":74.68390989126227,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":74.7307643401,"rel_min":0.2070596707718713,"rel_max":74.7307643401,"scaled_dist":200.0,"scaled_rad":100.0},{"average":74.77912323333031,"rel_min":0.2070596707718713,"rel_max":74.77912323333031,"scaled_dist":200.0,"scaled_rad":100.0},{"average":74.82870120805494,"rel_min":0.2070596707718713,"rel_max":74.82870120805494,"scaled_dist":200.0,"scaled_rad":100.0},{"average":74.8747547820276,"rel_min":0.2070596707718713,"rel_max":74.8747547820276,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":74.91751264673623,"rel_min":0.2070596707718713,"rel_max":74.91751264673623,"scaled_dist":200.0,"scaled_rad":100.0},{"average":74.96201199033229,"rel_min":0.2070596707718713,"rel_max":74.96201199033229,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":75.02138432748546,"rel_min":0.2070596707718713,"rel_max":75.02138432748546,"scaled_dist":200.0,"scaled_rad":100.0},{"average":75.07293112018917,"rel_min":0.2070596707718713,"rel_max":75.07293112018917,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":75.1254025804546,"rel_min":0.2070596707718713,"rel_max":75.1254025804546,"scaled_dist":200.0,"scaled_rad":100.0},{"average":75.17500175774487,"rel_min":0.2070596707718713,"rel_max":75.17500175774487,"scaled_dist":200.0,"scaled_rad":100.0},{"average":75.22293520867096,"rel_min":0.2070596707718713,"rel_max":75.22293520867096,"scaled_dist":200.0,"scaled_rad":100.0},{"average":75.27009858667527,"rel_min":0.2070596707718713,"rel_max":75.27009858667527,"scaled_dist":200.0,"scaled_rad":100.0},{"average":75.31723097055341,"rel_min":0.2070596707718713,"rel_max":75.31723097055341,"scaled_dist":200.0,"scaled_rad":100.0},{"average":75.36342080446829,"rel_min":0.2070596707718713,"rel_max":75.36342080446829,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":75.4078935967182,"rel_min":0.2070596707718713,"rel_max":75.4078935967182,"scaled_dist":200.0,"scaled_rad":100.0},{"average":75.44349813785762,"rel_min":0.2070596707718713,"rel_max":75.44349813785762,"scaled_dist":200.0,"scaled_rad":100.0},{"average":75.49139856075368,"rel_min":0.2070596707718713,"rel_max":75.49139856075368,"scaled_dist":200.0,"scaled_rad":100.0},{"average":75.5443934308117,"rel_min":0.2070596707718713,"rel_max":75.5443934308117,"scaled_dist":200.0,"scaled_rad":100.0},{"average":75.59700073330724,"rel_min":0.2070596707718713,"rel_max":75.59700073330724,"scaled_dist":200.0,"scaled_rad":100.0},{"average":75.64711996912095,"rel_min":0.2070596707718713,"rel_max":75.64711996912095,"scaled_dist":200.0,"scaled_rad":100.0},{"average":75.69652185531106,"rel_min":0.2070596707718713,"rel_max":75.69652185531106,"scaled_dist":200.0,"scaled_rad":100.0},{"average":75.72942830728667,"rel_min":0.2070596707718713,"rel_max":75.72942830728667,"scaled_dist":200.0,"scaled_rad":100.0},{"average":75.77552480516277,"rel_min":0.2070596707718713,"rel_max":75.77552480516277,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":75.81500779988646,"rel_min":0.2070596707718713,"rel_max":75.81500779988646,"scaled_dist":200.0,"scaled_rad":100.0},{"average":75.85456154260426,"rel_min":0.2070596707718713,"rel_max":75.85456154260426,"scaled_dist":200.0,"scaled_rad":100.0},{"average":75.89695761025499,"rel_min":0.2070596707718713,"rel_max":75.89695761025499,"scaled_dist":200.0,"scaled_rad":100.0},{"average":75.94013582611353,"rel_min":0.2070596707718713,"rel_max":75.94013582611353,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":75.97887495606378,"rel_min":0.2070596707718713,"rel_max":75.97887495606378,"scaled_dist":200.0,"scaled_rad":100.0},{"average":76.02536633133055,"rel_min":0.2070596707718713,"rel_max":76.02536633133055,"scaled_dist":200.0,"scaled_rad":100.0},{"average":76.0696468923028,"rel_min":0.2070596707718713,"rel_max":76.0696468923028,"scaled_dist":200.0,"scaled_rad":100.0},{"average":76.11483164316348,"rel_min":0.2070596707718713,"rel_max":76.11483164316348,"scaled_dist":200.0,"scaled_rad":100.0},{"average":76.16226700555906,"rel_min":0.2070596707718713,"rel_max":76.16226700555906,"scaled_dist":200.0,"scaled_rad":100.0},{"average":76.2121240715064,"rel_min":0.2070596707718713,"rel_max":76.2121240715064,"scaled_dist":200.0,"scaled_rad":100.0},{"average":76.26474145021672,"rel_min":0.2070596707718713,"rel_max":76.26474145021672,"scaled_dist":200.0,"scaled_rad":100.0},{"average":76.31644192433617,"rel_min":0.2070596707718713,"rel_max":76.31644192433617,"scaled_dist":200.0,"scaled_rad":100.0},{"average":76.3637568273712,"rel_min":0.2070596707718713,"rel_max":76.3637568273712,"scaled_dist":200.0,"scaled_rad":100.0},{"average":76.41023102474597,"rel_min":0.2070596707718713,"rel_max":76.41023102474597,"scaled_dist":200.0,"scaled_rad":100.0},{"average":76.46141720710153,"rel_min":0.2070596707718713,"rel_max":76.46141720710153,"scaled_dist":200.0,"scaled_rad":100.0},{"average":76.51008028323604,"rel_min":0.2070596707718713,"rel_max":76.51008028323604,"scaled_dist":200.0,"scaled_rad":100.0},{"average":76.56546038804721,"rel_min":0.2070596707718713,"rel_max":76.56546038804721,"scaled_dist":200.0,"scaled_rad":100.0},{"average":76.61823546448313,"rel_min":0.2070596707718713,"rel_max":76.61823546448313,"scaled_dist":200.0,"scaled_rad":100.0},{"average":76.66709482118969,"rel_min":0.2070596707718713,"rel_max":76.66709482118969,"scaled_dist":200.0,"scaled_rad":100.0},{"average":76.71284313971246,"rel_min":0.2070596707718713,"rel_max":76.71284313971246,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":76.75820382780047,"rel_min":0.2070596707718713,"rel_max":76.75820382780047,"scaled_dist":200.0,"scaled_rad":100.0},{"average":76.80944209624886,"rel_min":0.2070596707718713,"rel_max":76.80944209624886,"scaled_dist":200.0,"scaled_rad":100.0},{"average":76.87280546977983,"rel_min":0.2070596707718713,"rel_max":76.87280546977983,"scaled_dist":200.0,"scaled_rad":100.0},{"average":76.93392007003925,"rel_min":0.2070596707718713,"rel_max":76.93392007003925,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":76.98707334884567,"rel_min":0.2070596707718713,"rel_max":76.98707334884567,"scaled_dist":200.0,"scaled_rad":100.0},{"average":77.03928829226865,"rel_min":0.2070596707718713,"rel_max":77.03928829226865,"scaled_dist":200.0,"scaled_rad":100.0},{"average":77.0883917397057,"rel_min":0.2070596707718713,"rel_max":77.0883917397057,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":77.1317538759315,"rel_min":0.2070596707718713,"rel_max":77.1317538759315,"scaled_dist":200.0,"scaled_rad":100.0},{"average":77.17351547645339,"rel_min":0.2070596707718713,"rel_max":77.17351547645339,"scaled_dist":200.0,"scaled_rad":100.0},{"average":77.21770051302197,"rel_min":0.2070596707718713,"rel_max":77.21770051302197,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":77.26637490823605,"rel_min":0.2070596707718713,"rel_max":77.26637490823605,"scaled_dist":200.0,"scaled_rad":100.0},{"average":77.30933462898793,"rel_min":0.2070596707718713,"rel_max":77.30933462898793,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":77.346083936323,"rel_min":0.2070596707718713,"rel_max":77.346083936323,"scaled_dist":200.0,"scaled_rad":100.0},{"average":77.38095247411356,"rel_min":0.2070596707718713,"rel_max":77.38095247411356,"scaled_dist":200.0,"scaled_rad":100.0},{"average":77.42663149295628,"rel_min":0.2070596707718713,"rel_max":77.42663149295628,"scaled_dist":200.0,"scaled_rad":100.0},{"average":77.47312059248482,"rel_min":0.2070596707718713,"rel_max":77.47312059248482,"scaled_dist":200.0,"scaled_rad":100.0},{"average":77.5199087728212,"rel_min":0.2070596707718713,"rel_max":77.5199087728212,"scaled_dist":200.0,"scaled_rad":100.0},{"average":77.56369784632912,"rel_min":0.2070596707718713,"rel_max":77.56369784632912,"scaled_dist":200.0,"scaled_rad":100.0},{"average":77.603375004126,"rel_min":0.2070596707718713,"rel_max":77.603375004126,"scaled_dist":200.0,"scaled_rad":100.0},{"average":77.64162554537484,"rel_min":0.2070596707718713,"rel_max":77.64162554537484,"scaled_dist":200.0,"scaled_rad":100.0},{"average":77.68308443106154,"rel_min":0.2070596707718713,"rel_max":77.68308443106154,"scaled_dist":200.0,"scaled_rad":100.0},{"average":77.72917673439933,"rel_min":0.2070596707718713,"rel_max":77.72917673439933,"scaled_dist":200.0,"scaled_rad":100.0},{"average":77.77542440384694,"rel_min":0.2070596707718713,"rel_max":77.77542440384694,"scaled_dist":200.0,"scaled_rad":100.0},{"average":77.81970373817882,"rel_min":0.2070596707718713,"rel_max":77.81970373817882,"scaled_dist":200.0,"scaled_rad":100.0},{"average":77.8658781961583,"rel_min":0.2070596707718713,"rel_max":77.8658781961583,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":77.9125232089032,"rel_min":0.2070596707718713,"rel_max":77.9125232089032,"scaled_dist":200.0,"scaled_rad":100.0},{"average":77.9589158100438,"rel_min":0.2070596707718713,"rel_max":77.9589158100438,"scaled_dist":200.0,"scaled_rad":100.0},{"average":78.00539864539383,"rel_min":0.2070596707718713,"rel_max":78.00539864539383,"scaled_dist":200.0,"scaled_rad":100.0},{"average":78.05352199607634,"rel_min":0.2070596707718713,"rel_max":78.05352199607634,"scaled_dist":200.0,"scaled_rad":100.0},{"average":78.10530399891317,"rel_min":0.2070596707718713,"rel_max":78.10530399891317,"scaled_dist":200.0,"scaled_rad":100.0},{"average":78.16109243576253,"rel_min":0.2070596707718713,"rel_max":78.16109243576253,"scaled_dist":200.0,"scaled_rad":100.0},{"average":78.21065073318327,"rel_min":0.2070596707718713,"rel_max":78.21065073318327,"scaled_dist":200.0,"scaled_rad":100.0},{"average":78.25997027880277,"rel_min":0.2070596707718713,"rel_max":78.25997027880277,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":78.32696251979672,"rel_min":0.2070596707718713,"rel_max":78.32696251979672,"scaled_dist":200.0,"scaled_rad":100.0},{"average":78.38096828400118,"rel_min":0.2070596707718713,"rel_max":78.38096828400118,"scaled_dist":200.0,"scaled_rad":100.0},{"average":78.4379426901205,"rel_min":0.2070596707718713,"rel_max":78.4379426901205,"scaled_dist":200.0,"scaled_rad":100.0},{"average":78.49538238257448,"rel_min":0.2070596707718713,"rel_max":78.49538238257448,"scaled_dist":200.0,"scaled_rad":100.0},{"average":78.55245693006809,"rel_min":0.2070596707718713,"rel_max":78.55245693006809,"scaled_dist":200.0,"scaled_rad":100.0},{"average":78.60537932639767,"rel_min":0.2070596707718713,"rel_max":78.60537932639767,"scaled_dist":200.0,"scaled_rad":100.0},{"average":78.65608226148552,"rel_min":0.2070596707718713,"rel_max":78.65608226148552,"scaled_dist":200.0,"scaled_rad":100.0},{"average":78.70831226744242,"rel_min":0.2070596707718713,"rel_max":78.70831226744242,"scaled_dist":200.0,"scaled_rad":100.0},{"average":78.76141302450704,"rel_min":0.2070596707718713,"rel_max":78.76141302450704,"scaled_dist":200.0,"scaled_rad":100.0},{"average":78.81532823299428,"rel_min":0.2070596707718713,"rel_max":78.81532823299428,"scaled_dist":200.0,"scaled_rad":100.0},{"average":78.8682694963711,"rel_min":0.2070596707718713,"rel_max":78.8682694963711,"scaled_dist":200.0,"scaled_rad":100.0},{"average":78.92123399311737,"rel_min":0.2070596707718713,"rel_max":78.92123399311737,"scaled_dist":200.0,"scaled_rad":100.0},{"average":78.96755742613249,"rel_min":0.2070596707718713,"rel_max":78.96755742613249,"scaled_dist":200.0,"scaled_rad":100.0},{"average":79.00589703758016,"rel_min":0.2070596707718713,"rel_max":79.00589703758016,"scaled_dist":200.0,"scaled_rad":100.0},{"average":79.04863198235365,"rel_min":0.2070596707718713,"rel_max":79.04863198235365,"scaled_dist":200.0,"scaled_rad":100.0},{"average":79.09307473935917,"rel_min":0.2070596707718713,"rel_max":79.09307473935917,"scaled_dist":200.0,"scaled_rad":100.0},{"average":79.14024154150499,"rel_min":0.2070596707718713,"rel_max":79.14024154150499,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":79.19007254184956,"rel_min":0.2070596707718713,"rel_max":79.19007254184956,"scaled_dist":200.0,"scaled_rad":100.0},{"average":79.23631313487208,"rel_min":0.2070596707718713,"rel_max":79.23631313487208,"scaled_dist":200.0,"scaled_rad":100.0},{"average":79.28097796116994,"rel_min":0.2070596707718713,"rel_max":79.28097796116994,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":79.32574711765724,"rel_min":0.2070596707718713,"rel_max":79.32574711765724,"scaled_dist":200.0,"scaled_rad":100.0},{"average":79.37226366062424,"rel_min":0.2070596707718713,"rel_max":79.37226366062424,"scaled_dist":200.0,"scaled_rad":100.0},{"average":79.41769548850958,"rel_min":0.2070596707718713,"rel_max":79.41769548850958,"scaled_dist":200.0,"scaled_rad":100.0},{"average":79.4633490429166,"rel_min":0.2070596707718713,"rel_max":79.4633490429166,"scaled_dist":200.0,"scaled_rad":100.0},{"average":79.50977053395029,"rel_min":0.2070596707718713,"rel_max":79.50977053395029,"scaled_dist":200.0,"scaled_rad":100.0},{"average":79.55402792123567,"rel_min":0.2070596707718713,"rel_max":79.55402792123567,"scaled_dist":200.0,"scaled_rad":100.0},{"average":79.59574111611695,"rel_min":0.2070596707718713,"rel_max":79.59574111611695,"scaled_dist":200.0,"scaled_rad":100.0},{"average":79.64195215823078,"rel_min":0.2070596707718713,"rel_max":79.64195215823078,"scaled_dist":200.0,"scaled_rad":100.0},{"average":79.68921068417929,"rel_min":0.2070596707718713,"rel_max":79.68921068417929,"scaled_dist":200.0,"scaled_rad":100.0},{"average":79.73650470200253,"rel_min":0.2070596707718713,"rel_max":79.73650470200253,"scaled_dist":200.0,"scaled_rad":100.0},{"average":79.78088388554332,"rel_min":0.2070596707718713,"rel_max":79.78088388554332,"scaled_dist":200.0,"scaled_rad":100.0},{"average":79.81996794523968,"rel_min":0.2070596707718713,"rel_max":79.81996794523968,"scaled_dist":200.0,"scaled_rad":100.0},{"average":79.88798025822192,"rel_min":0.2070596707718713,"rel_max":79.88798025822192,"scaled_dist":200.0,"scaled_rad":100.0},{"average":79.97958300702292,"rel_min":0.2070596707718713,"rel_max":79.97958300702292,"scaled_dist":200.0,"scaled_rad":100.0},{"average":80.03794274715223,"rel_min":0.2070596707718713,"rel_max":80.03794274715223,"scaled_dist":200.0,"scaled_rad":100.0},{"average":80.08929118904007,"rel_min":0.2070596707718713,"rel_max":80.08929118904007,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":80.13228296856589,"rel_min":0.2070596707718713,"rel_max":80.13228296856589,"scaled_dist":200.0,"scaled_rad":100.0},{"average":80.16902047880576,"rel_min":0.2070596707718713,"rel_max":80.16902047880576,"scaled_dist":200.0,"scaled_rad":100.0},{"average":80.20267969913623,"rel_min":0.2070596707718713,"rel_max":80.20267969913623,"scaled_dist":200.0,"scaled_rad":100.0},{"average":80.23724705358352,"rel_min":0.2070596707718713,"rel_max":80.23724705358352,"scaled_dist":200.0,"scaled_rad":100.0},{"average":80.27566822659229,"rel_min":0.2070596707718713,"rel_max":80.27566822659229,"scaled_dist":200.0,"scaled_rad":100.0},{"average":80.31711951766341,"rel_min":0.2070596707718713,"rel_max":80.31711951766341,"scaled_dist":200.0,"scaled_rad":100.0},{"average":80.36071639239371,"rel_min":0.2070596707718713,"rel_max":80.36071639239371,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":80.40958295987497,"rel_min":0.2070596707718713,"rel_max":80.40958295987497,"scaled_dist":200.0,"scaled_rad":100.0},{"average":80.45977442749191,"rel_min":0.2070596707718713,"rel_max":80.45977442749191,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":80.50373683565576,"rel_min":0.2070596707718713,"rel_max":80.50373683565576,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":80.53998051855405,"rel_min":0.2070596707718713,"rel_max":80.53998051855405,"scaled_dist":200.0,"scaled_rad":100.0},{"average":80.57973712542342,"rel_min":0.2070596707718713,"rel_max":80.57973712542342,"scaled_dist":200.0,"scaled_rad":100.0},{"average":80.62325337280389,"rel_min":0.2070596707718713,"rel_max":80.62325337280389,"scaled_dist":200.0,"scaled_rad":100.0},{"average":80.66639671726388,"rel_min":0.2070596707718713,"rel_max":80.66639671726388,"scaled_dist":200.0,"scaled_rad":100.0},{"average":80.71380934558468,"rel_min":0.2070596707718713,"rel_max":80.71380934558468,"scaled_dist":200.0,"scaled_rad":100.0},{"average":80.7611972098061,"rel_min":0.2070596707718713,"rel_max":80.7611972098061,"scaled_dist":200.0,"scaled_rad":100.0},{"average":80.81169521035166,"rel_min":0.2070596707718713,"rel_max":80.81169521035166,"scaled_dist":200.0,"scaled_rad":100.0},{"average":80.8633898233321,"rel_min":0.2070596707718713,"rel_max":80.8633898233321,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":80.91608743137925,"rel_min":0.2070596707718713,"rel_max":80.91608743137925,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":80.96810679790697,"rel_min":0.2070596707718713,"rel_max":80.96810679790697,"scaled_dist":200.0,"scaled_rad":100.0},{"average":81.01914725596264,"rel_min":0.2070596707718713,"rel_max":81.01914725596264,"scaled_dist":200.0,"scaled_rad":100.0},{"average":81.07151327155222,"rel_min":0.2070596707718713,"rel_max":81.07151327155222,"scaled_dist":200.0,"scaled_rad":100.0},{"average":81.12191680724987,"rel_min":0.2070596707718713,"rel_max":81.12191680724987,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":81.17088241569702,"rel_min":0.2070596707718713,"rel_max":81.17088241569702,"scaled_dist":200.0,"scaled_rad":100.0},{"average":81.21894945486676,"rel_min":0.2070596707718713,"rel_max":81.21894945486676,"scaled_dist":200.0,"scaled_rad":100.0},{"average":81.2658431190942,"rel_min":0.2070596707718713,"rel_max":81.2658431190942,"scaled_dist":200.0,"scaled_rad":100.0},{"average":81.31534740155405,"rel_min":0.2070596707718713,"rel_max":81.31534740155405,"scaled_dist":200.0,"scaled_rad":100.0},{"average":81.3684234494214,"rel_min":0.2070596707718713,"rel_max":81.3684234494214,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":81.42106200984112,"rel_min":0.2070596707718713,"rel_max":81.42106200984112,"scaled_dist":200.0,"scaled_rad":100.0},{"average":81.47155592946997,"rel_min":0.2070596707718713,"rel_max":81.47155592946997,"scaled_dist":200.0,"scaled_rad":100.0},{"average":81.51982209608325,"rel_min":0.2070596707718713,"rel_max":81.51982209608325,"scaled_dist":200.0,"scaled_rad":100.0},{"average":81.56206043850183,"rel_min":0.2070596707718713,"rel_max":81.56206043850183,"scaled_dist":200.0,"scaled_rad":100.0},{"average":81.60352911653503,"rel_min":0.2070596707718713,"rel_max":81.60352911653503,"scaled_dist":200.0,"scaled_rad":100.0},{"average":81.65870498139842,"rel_min":0.2070596707718713,"rel_max":81.65870498139842,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":81.73488366996686,"rel_min":0.2070596707718713,"rel_max":81.73488366996686,"scaled_dist":200.0,"scaled_rad":100.0},{"average":81.81234048714039,"rel_min":0.2070596707718713,"rel_max":81.81234048714039,"scaled_dist":200.0,"scaled_rad":100.0},{"average":81.8918885470655,"rel_min":0.2070596707718713,"rel_max":81.8918885470655,"scaled_dist":200.0,"scaled_rad":100.0},{"average":81.9648460578281,"rel_min":0.2070596707718713,"rel_max":81.9648460578281,"scaled_dist":200.0,"scaled_rad":100.0},{"average":82.03120482219046,"rel_min":0.2070596707718713,"rel_max":82.03120482219046,"scaled_dist":200.0,"scaled_rad":100.0},{"average":82.08936679958298,"rel_min":0.2070596707718713,"rel_max":82.08936679958298,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":82.13266884480879,"rel_min":0.2070596707718713,"rel_max":82.13266884480879,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":82.16982393923018,"rel_min":0.2070596707718713,"rel_max":82.16982393923018,"scaled_dist":200.0,"scaled_rad":100.0},{"average":82.20825173097438,"rel_min":0.2070596707718713,"rel_max":82.20825173097438,"scaled_dist":200.0,"scaled_rad":100.0},{"average":82.24760079327223,"rel_min":0.2070596707718713,"rel_max":82.24760079327223,"scaled_dist":200.0,"scaled_rad":100.0},{"average":82.29083810062417,"rel_min":0.2070596707718713,"rel_max":82.29083810062417,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":82.33461296095784,"rel_min":0.2070596707718713,"rel_max":82.33461296095784,"scaled_dist":200.0,"scaled_rad":100.0},{"average":82.37626553418205,"rel_min":0.2070596707718713,"rel_max":82.37626553418205,"scaled_dist":200.0,"scaled_rad":100.0},{"average":82.41788273404745,"rel_min":0.2070596707718713,"rel_max":82.41788273404745,"scaled_dist":200.0,"scaled_rad":100.0},{"average":82.45905586519318,"rel_min":0.2070596707718713,"rel_max":82.45905586519318,"scaled_dist":200.0,"scaled_rad":100.0},{"average":82.50368169758953,"rel_min":0.2070596707718713,"rel_max":82.50368169758953,"scaled_dist":200.0,"scaled_rad":100.0},{"average":82.54820931136452,"rel_min":0.2070596707718713,"rel_max":82.54820931136452,"scaled_dist":200.0,"scaled_rad":100.0},{"average":82.59911983174429,"rel_min":0.2070596707718713,"rel_max":82.59911983174429,"scaled_dist":200.0,"scaled_rad":100.0},{"average":82.64476673344525,"rel_min":0.2070596707718713,"rel_max":82.64476673344525,"scaled_dist":200.0,"scaled_rad":100.0},{"average":82.68297451313849,"rel_min":0.2070596707718713,"rel_max":82.68297451313849,"scaled_dist":200.0,"scaled_rad":100.0},{"average":82.71672327514905,"rel_min":0.2070596707718713,"rel_max":82.71672327514905,"scaled_dist":200.0,"scaled_rad":100.0},{"average":82.75335799114315,"rel_min":0.2070596707718713,"rel_max":82.75335799114315,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":82.78484253127252,"rel_min":0.2070596707718713,"rel_max":82.78484253127252,"scaled_dist":200.0,"scaled_rad":100.0},{"average":82.81371565152261,"rel_min":0.2070596707718713,"rel_max":82.81371565152261,"scaled_dist":200.0,"scaled_rad":100.0},{"average":82.8542280065658,"rel_min":0.2070596707718713,"rel_max":82.8542280065658,"scaled_dist":200.0,"scaled_rad":100.0},{"average":82.91157425525793,"rel_min":0.2070596707718713,"rel_max":82.91157425525793,"scaled_dist":200.0,"scaled_rad":100.0},{"average":82.95655368584956,"rel_min":0.2070596707718713,"rel_max":82.95655368584956,"scaled_dist":200.0,"scaled_rad":100.0},{"average":83.00243137609081,"rel_min":0.2070596707718713,"rel_max":83.00243137609081,"scaled_dist":200.0,"scaled_rad":100.0},{"average":83.05334682682383,"rel_min":0.2070596707718713,"rel_max":83.05334682682383,"scaled_dist":200.0,"scaled_rad":100.0},{"average":83.10708142834577,"rel_min":0.2070596707718713,"rel_max":83.10708142834577,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":83.16384512889381,"rel_min":0.2070596707718713,"rel_max":83.16384512889381,"scaled_dist":200.0,"scaled_rad":100.0},{"average":83.2208524814328,"rel_min":0.2070596707718713,"rel_max":83.2208524814328,"scaled_dist":200.0,"scaled_rad":100.0},{"average":83.26407270696114,"rel_min":0.2070596707718713,"rel_max":83.26407270696114,"scaled_dist":200.0,"scaled_rad":100.0},{"average":83.29290105187441,"rel_min":0.2070596707718713,"rel_max":83.29290105187441,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":83.33956462753375,"rel_min":0.2070596707718713,"rel_max":83.33956462753375,"scaled_dist":200.0,"scaled_rad":100.0},{"average":83.40700049595975,"rel_min":0.2070596707718713,"rel_max":83.40700049595975,"scaled_dist":200.0,"scaled_rad":100.0},{"average":83.4554509881361,"rel_min":0.2070596707718713,"rel_max":83.4554509881361,"scaled_dist":200.0,"scaled_rad":100.0},{"average":83.50517468080311,"rel_min":0.2070596707718713,"rel_max":83.50517468080311,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":83.55242952747142,"rel_min":0.2070596707718713,"rel_max":83.55242952747142,"scaled_dist":200.0,"scaled_rad":100.0},{"average":83.59901329096864,"rel_min":0.2070596707718713,"rel_max":83.59901329096864,"scaled_dist":200.0,"scaled_rad":100.0},{"average":83.66557259563056,"rel_min":0.2070596707718713,"rel_max":83.66557259563056,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":83.7112960427738,"rel_min":0.2070596707718713,"rel_max":83.7112960427738,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":83.78106529890132,"rel_min":0.2070596707718713,"rel_max":83.78106529890132,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":83.83150485208124,"rel_min":0.2070596707718713,"rel_max":83.83150485208124,"scaled_dist":200.0,"scaled_rad":100.0},{"average":83.8650707223512,"rel_min":0.2070596707718713,"rel_max":83.8650707223512,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":83.89152621649545,"rel_min":0.2070596707718713,"rel_max":83.89152621649545,"scaled_dist":200.0,"scaled_rad":100.0},{"average":83.91703708720007,"rel_min":0.2070596707718713,"rel_max":83.91703708720007,"scaled_dist":200.0,"scaled_rad":100.0},{"average":83.9549795490487,"rel_min":0.2070596707718713,"rel_max":83.9549795490487,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":84.00709091991061,"rel_min":0.2070596707718713,"rel_max":84.00709091991061,"scaled_dist":200.0,"scaled_rad":100.0},{"average":84.06066096120097,"rel_min":0.2070596707718713,"rel_max":84.06066096120097,"scaled_dist":200.0,"scaled_rad":100.0},{"average":84.11457532213599,"rel_min":0.2070596707718713,"rel_max":84.11457532213599,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":84.16556166087668,"rel_min":0.2070596707718713,"rel_max":84.16556166087668,"scaled_dist":200.0,"scaled_rad":100.0},{"average":84.21255657431875,"rel_min":0.2070596707718713,"rel_max":84.21255657431875,"scaled_dist":200.0,"scaled_rad":100.0},{"average":84.25829080983176,"rel_min":0.2070596707718713,"rel_max":84.25829080983176,"scaled_dist":200.0,"scaled_rad":100.0},{"average":84.30253445348404,"rel_min":0.2070596707718713,"rel_max":84.30253445348404,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":84.34617015077453,"rel_min":0.2070596707718713,"rel_max":84.34617015077453,"scaled_dist":200.0,"scaled_rad":100.0},{"average":84.39071555542571,"rel_min":0.2070596707718713,"rel_max":84.39071555542571,"scaled_dist":200.0,"scaled_rad":100.0},{"average":84.43173814546608,"rel_min":0.2070596707718713,"rel_max":84.43173814546608,"scaled_dist":200.0,"scaled_rad":100.0},{"average":84.47289520078603,"rel_min":0.2070596707718713,"rel_max":84.47289520078603,"scaled_dist":200.0,"scaled_rad":100.0},{"average":84.51554491309253,"rel_min":0.2070596707718713,"rel_max":84.51554491309253,"scaled_dist":200.0,"scaled_rad":100.0},{"average":84.549401256455,"rel_min":0.2070596707718713,"rel_max":84.549401256455,"scaled_dist":200.0,"scaled_rad":100.0},{"average":84.58655728576404,"rel_min":0.2070596707718713,"rel_max":84.58655728576404,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":84.6262108950212,"rel_min":0.2070596707718713,"rel_max":84.6262108950212,"scaled_dist":200.0,"scaled_rad":100.0},{"average":84.6673919299236,"rel_min":0.2070596707718713,"rel_max":84.6673919299236,"scaled_dist":200.0,"scaled_rad":100.0},{"average":84.71683667745548,"rel_min":0.2070596707718713,"rel_max":84.71683667745548,"scaled_dist":200.0,"scaled_rad":100.0},{"average":84.7703095177595,"rel_min":0.2070596707718713,"rel_max":84.7703095177595,"scaled_dist":200.0,"scaled_rad":100.0},{"average":84.82253091262652,"rel_min":0.2070596707718713,"rel_max":84.82253091262652,"scaled_dist":200.0,"scaled_rad":100.0},{"average":84.87039203304715,"rel_min":0.2070596707718713,"rel_max":84.87039203304715,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":84.91747243029249,"rel_min":0.2070596707718713,"rel_max":84.91747243029249,"scaled_dist":200.0,"scaled_rad":100.0},{"average":84.96484858632881,"rel_min":0.2070596707718713,"rel_max":84.96484858632881,"scaled_dist":200.0,"scaled_rad":100.0},{"average":85.01164267816718,"rel_min":0.2070596707718713,"rel_max":85.01164267816718,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":85.05871172920165,"rel_min":0.2070596707718713,"rel_max":85.05871172920165,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":85.10058477267195,"rel_min":0.2070596707718713,"rel_max":85.10058477267195,"scaled_dist":200.0,"scaled_rad":100.0},{"average":85.1396976655046,"rel_min":0.2070596707718713,"rel_max":85.1396976655046,"scaled_dist":200.0,"scaled_rad":100.0},{"average":85.18184664594642,"rel_min":0.2070596707718713,"rel_max":85.18184664594642,"scaled_dist":200.0,"scaled_rad":100.0},{"average":85.22644030777155,"rel_min":0.2070596707718713,"rel_max":85.22644030777155,"scaled_dist":200.0,"scaled_rad":100.0},{"average":85.27228841504876,"rel_min":0.2070596707718713,"rel_max":85.27228841504876,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":85.31849416299353,"rel_min":0.2070596707718713,"rel_max":85.31849416299353,"scaled_dist":200.0,"scaled_rad":100.0},{"average":85.36498499666294,"rel_min":0.2070596707718713,"rel_max":85.36498499666294,"scaled_dist":200.0,"scaled_rad":100.0},{"average":85.41207958168692,"rel_min":0.2070596707718713,"rel_max":85.41207958168692,"scaled_dist":200.0,"scaled_rad":100.0},{"average":85.46017508784111,"rel_min":0.2070596707718713,"rel_max":85.46017508784111,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":85.50894511246169,"rel_min":0.2070596707718713,"rel_max":85.50894511246169,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":85.60205282457515,"rel_min":0.2070596707718713,"rel_max":85.60205282457515,"scaled_dist":200.0,"scaled_rad":100.0},{"average":85.65800062450187,"rel_min":0.2070596707718713,"rel_max":85.65800062450187,"scaled_dist":200.0,"scaled_rad":100.0},{"average":85.71849498178183,"rel_min":0.2070596707718713,"rel_max":85.71849498178183,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":85.7822017263202,"rel_min":0.2070596707718713,"rel_max":85.7822017263202,"scaled_dist":200.0,"scaled_rad":100.0},{"average":85.8511236498094,"rel_min":0.2070596707718713,"rel_max":85.8511236498094,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":85.91392030520454,"rel_min":0.2070596707718713,"rel_max":85.91392030520454,"scaled_dist":200.0,"scaled_rad":100.0},{"average":85.97073469493732,"rel_min":0.2070596707718713,"rel_max":85.97073469493732,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":86.02063348648352,"rel_min":0.2070596707718713,"rel_max":86.02063348648352,"scaled_dist":200.0,"scaled_rad":100.0},{"average":86.06958731635636,"rel_min":0.2070596707718713,"rel_max":86.06958731635636,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":86.10729589146709,"rel_min":0.2070596707718713,"rel_max":86.10729589146709,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":86.13767950976946,"rel_min":0.2070596707718713,"rel_max":86.13767950976946,"scaled_dist":200.0,"scaled_rad":100.0},{"average":86.16531650870076,"rel_min":0.2070596707718713,"rel_max":86.16531650870076,"scaled_dist":200.0,"scaled_rad":100.0},{"average":86.19621416283272,"rel_min":0.2070596707718713,"rel_max":86.19621416283272,"scaled_dist":200.0,"scaled_rad":100.0},{"average":86.23425883877411,"rel_min":0.2070596707718713,"rel_max":86.23425883877411,"scaled_dist":200.0,"scaled_rad":100.0},{"average":86.27985449018801,"rel_min":0.2070596707718713,"rel_max":86.27985449018801,"scaled_dist":200.0,"scaled_rad":100.0},{"average":86.32450991898801,"rel_min":0.2070596707718713,"rel_max":86.32450991898801,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":86.3679155541459,"rel_min":0.2070596707718713,"rel_max":86.3679155541459,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":86.41265865363678,"rel_min":0.2070596707718713,"rel_max":86.41265865363678,"scaled_dist":200.0,"scaled_rad":100.0},{"average":86.45653867095,"rel_min":0.2070596707718713,"rel_max":86.45653867095,"scaled_dist":200.0,"scaled_rad":100.0},{"average":86.49953774612464,"rel_min":0.2070596707718713,"rel_max":86.49953774612464,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":86.53788252273078,"rel_min":0.2070596707718713,"rel_max":86.53788252273078,"scaled_dist":200.0,"scaled_rad":100.0},{"average":86.59740717960526,"rel_min":0.2070596707718713,"rel_max":86.59740717960526,"scaled_dist":200.0,"scaled_rad":100.0},{"average":86.63300548977959,"rel_min":0.2070596707718713,"rel_max":86.63300548977959,"scaled_dist":200.0,"scaled_rad":100.0},{"average":86.67095442051244,"rel_min":0.2070596707718713,"rel_max":86.67095442051244,"scaled_dist":200.0,"scaled_rad":100.0},{"average":86.71418076871709,"rel_min":0.2070596707718713,"rel_max":86.71418076871709,"scaled_dist":200.0,"scaled_rad":100.0},{"average":86.75966818541922,"rel_min":0.2070596707718713,"rel_max":86.75966818541922,"scaled_dist":200.0,"scaled_rad":100.0},{"average":86.80690420955096,"rel_min":0.2070596707718713,"rel_max":86.80690420955096,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":86.85337836675288,"rel_min":0.2070596707718713,"rel_max":86.85337836675288,"scaled_dist":200.0,"scaled_rad":100.0},{"average":86.8968690750313,"rel_min":0.2070596707718713,"rel_max":86.8968690750313,"scaled_dist":200.0,"scaled_rad":100.0},{"average":86.94208669046523,"rel_min":0.2070596707718713,"rel_max":86.94208669046523,"scaled_dist":200.0,"scaled_rad":100.0},{"average":86.9908983154433,"rel_min":0.2070596707718713,"rel_max":86.9908983154433,"scaled_dist":200.0,"scaled_rad":100.0},{"average":87.04164981711055,"rel_min":0.2070596707718713,"rel_max":87.04164981711055,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":87.09262059518828,"rel_min":0.2070596707718713,"rel_max":87.09262059518828,"scaled_dist":200.0,"scaled_rad":100.0},{"average":87.14631875665107,"rel_min":0.2070596707718713,"rel_max":87.14631875665107,"scaled_dist":200.0,"scaled_rad":100.0},{"average":87.20034553034264,"rel_min":0.2070596707718713,"rel_max":87.20034553034264,"scaled_dist":200.0,"scaled_rad":100.0},{"average":87.25267848798117,"rel_min":0.2070596707718713,"rel_max":87.25267848798117,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":87.29064994990716,"rel_min":0.2070596707718713,"rel_max":87.29064994990716,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":87.33536111081622,"rel_min":0.2070596707718713,"rel_max":87.33536111081622,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":87.38290409370462,"rel_min":0.2070596707718713,"rel_max":87.38290409370462,"scaled_dist":200.0,"scaled_rad":100.0},{"average":87.43851766657542,"rel_min":0.2070596707718713,"rel_max":87.43851766657542,"scaled_dist":200.0,"scaled_rad":100.0},{"average":87.49570868636015,"rel_min":0.2070596707718713,"rel_max":87.49570868636015,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":87.55219128064098,"rel_min":0.2070596707718713,"rel_max":87.55219128064098,"scaled_dist":200.0,"scaled_rad":100.0},{"average":87.60942019241512,"rel_min":0.2070596707718713,"rel_max":87.60942019241512,"scaled_dist":200.0,"scaled_rad":100.0},{"average":87.67006065350958,"rel_min":0.2070596707718713,"rel_max":87.67006065350958,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":87.73660810717583,"rel_min":0.2070596707718713,"rel_max":87.73660810717583,"scaled_dist":200.0,"scaled_rad":100.0},{"average":87.80256520477126,"rel_min":0.2070596707718713,"rel_max":87.80256520477126,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":87.85557203499295,"rel_min":0.2070596707718713,"rel_max":87.85557203499295,"scaled_dist":200.0,"scaled_rad":100.0},{"average":87.8985353450021,"rel_min":0.2070596707718713,"rel_max":87.8985353450021,"scaled_dist":200.0,"scaled_rad":100.0},{"average":87.93387687145666,"rel_min":0.2070596707718713,"rel_max":87.93387687145666,"scaled_dist":200.0,"scaled_rad":100.0},{"average":87.97684096785271,"rel_min":0.2070596707718713,"rel_max":87.97684096785271,"scaled_dist":200.0,"scaled_rad":100.0},{"average":88.02090460657583,"rel_min":0.2070596707718713,"rel_max":88.02090460657583,"scaled_dist":200.0,"scaled_rad":100.0},{"average":88.07577425002822,"rel_min":0.2070596707718713,"rel_max":88.07577425002822,"scaled_dist":200.0,"scaled_rad":100.0},{"average":88.13376379927264,"rel_min":0.2070596707718713,"rel_max":88.13376379927264,"scaled_dist":200.0,"scaled_rad":100.0},{"average":88.20965282368755,"rel_min":0.2070596707718713,"rel_max":88.20965282368755,"scaled_dist":200.0,"scaled_rad":100.0},{"average":88.24860461320647,"rel_min":0.2070596707718713,"rel_max":88.24860461320647,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":88.28258580579153,"rel_min":0.2070596707718713,"rel_max":88.28258580579153,"scaled_dist":200.0,"scaled_rad":100.0},{"average":88.31862268456213,"rel_min":0.2070596707718713,"rel_max":88.31862268456213,"scaled_dist":200.0,"scaled_rad":100.0},{"average":88.35091157192925,"rel_min":0.2070596707718713,"rel_max":88.35091157192925,"scaled_dist":200.0,"scaled_rad":100.0},{"average":88.39136982906051,"rel_min":0.2070596707718713,"rel_max":88.39136982906051,"scaled_dist":200.0,"scaled_rad":100.0},{"average":88.43220154476668,"rel_min":0.2070596707718713,"rel_max":88.43220154476668,"scaled_dist":200.0,"scaled_rad":100.0},{"average":88.47549202739123,"rel_min":0.2070596707718713,"rel_max":88.47549202739123,"scaled_dist":200.0,"scaled_rad":100.0},{"average":88.5186469552555,"rel_min":0.2070596707718713,"rel_max":88.5186469552555,"scaled_dist":200.0,"scaled_rad":100.0},{"average":88.56520020689283,"rel_min":0.2070596707718713,"rel_max":88.56520020689283,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":88.61813655332509,"rel_min":0.2070596707718713,"rel_max":88.61813655332509,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":88.67503904355874,"rel_min":0.2070596707718713,"rel_max":88.67503904355874,"scaled_dist":200.0,"scaled_rad":100.0},{"average":88.72646318881253,"rel_min":0.2070596707718713,"rel_max":88.72646318881253,"scaled_dist":200.0,"scaled_rad":100.0},{"average":88.76944603883777,"rel_min":0.2070596707718713,"rel_max":88.76944603883777,"scaled_dist":200.0,"scaled_rad":100.0},{"average":88.8128324822658,"rel_min":0.2070596707718713,"rel_max":88.8128324822658,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":88.84566297622824,"rel_min":0.2070596707718713,"rel_max":88.84566297622824,"scaled_dist":200.0,"scaled_rad":100.0},{"average":88.88872977143335,"rel_min":0.2070596707718713,"rel_max":88.88872977143335,"scaled_dist":200.0,"scaled_rad":100.0},{"average":88.88706567622998,"rel_min":0.2070596707718713,"rel_max":88.88872977143335,"scaled_dist":199.996340860921,"scaled_rad":99.99512114789468},{"average":88.93276703339752,"rel_min":0.2070596707718713,"rel_max":88.93276703339752,"scaled_dist":200.0,"scaled_rad":100.0},{"average":88.98157846864862,"rel_min":0.2070596707718713,"rel_max":88.98157846864862,"scaled_dist":200.0,"scaled_rad":100.0},{"average":89.03336478588155,"rel_min":0.2070596707718713,"rel_max":89.03336478588155,"scaled_dist":200.0,"scaled_rad":100.0},{"average":89.08521580990342,"rel_min":0.2070596707718713,"rel_max":89.08521580990342,"scaled_dist":200.0,"scaled_rad":100.0},{"average":89.13821883279206,"rel_min":0.2070596707718713,"rel_max":89.13821883279206,"scaled_dist":200.0,"scaled_rad":100.0},{"average":89.18527342614354,"rel_min":0.2070596707718713,"rel_max":89.18527342614354,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":89.23436308559727,"rel_min":0.2070596707718713,"rel_max":89.23436308559727,"scaled_dist":200.0,"scaled_rad":100.0},{"average":89.28236260917869,"rel_min":0.2070596707718713,"rel_max":89.28236260917869,"scaled_dist":200.0,"scaled_rad":100.0},{"average":89.33221630778368,"rel_min":0.2070596707718713,"rel_max":89.33221630778368,"scaled_dist":200.0,"scaled_rad":100.0},{"average":89.3782109264389,"rel_min":0.2070596707718713,"rel_max":89.3782109264389,"scaled_dist":200.0,"scaled_rad":100.0},{"average":89.42708159471965,"rel_min":0.2070596707718713,"rel_max":89.42708159471965,"scaled_dist":200.0,"scaled_rad":100.0},{"average":89.47721831126555,"rel_min":0.2070596707718713,"rel_max":89.47721831126555,"scaled_dist":200.0,"scaled_rad":100.0},{"average":89.52947825702438,"rel_min":0.2070596707718713,"rel_max":89.52947825702438,"scaled_dist":200.0,"scaled_rad":100.0},{"average":89.58176585233976,"rel_min":0.2070596707718713,"rel_max":89.58176585233976,"scaled_dist":200.0,"scaled_rad":100.0},{"average":89.63636151656324,"rel_min":0.2070596707718713,"rel_max":89.63636151656324,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":89.6929741898086,"rel_min":0.2070596707718713,"rel_max":89.6929741898086,"scaled_dist":200.0,"scaled_rad":100.0},{"average":89.7493434422012,"rel_min":0.2070596707718713,"rel_max":89.7493434422012,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":89.80505320915182,"rel_min":0.2070596707718713,"rel_max":89.80505320915182,"scaled_dist":200.0,"scaled_rad":100.0},{"average":89.86732608141413,"rel_min":0.2070596707718713,"rel_max":89.86732608141413,"scaled_dist":200.0,"scaled_rad":100.0},{"average":89.92471085050374,"rel_min":0.2070596707718713,"rel_max":89.92471085050374,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":89.97353422716448,"rel_min":0.2070596707718713,"rel_max":89.97353422716448,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":90.01757418714459,"rel_min":0.2070596707718713,"rel_max":90.01757418714459,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":90.0601715186446,"rel_min":0.2070596707718713,"rel_max":90.0601715186446,"scaled_dist":200.0,"scaled_rad":100.0},{"average":90.10515267095413,"rel_min":0.2070596707718713,"rel_max":90.10515267095413,"scaled_dist":200.0,"scaled_rad":100.0},{"average":90.14805331177097,"rel_min":0.2070596707718713,"rel_max":90.14805331177097,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":90.18664933489237,"rel_min":0.2070596707718713,"rel_max":90.18664933489237,"scaled_dist":200.0,"scaled_rad":100.0},{"average":90.22762188892041,"rel_min":0.2070596707718713,"rel_max":90.22762188892041,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":90.27304762900003,"rel_min":0.2070596707718713,"rel_max":90.27304762900003,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":90.3314031569878,"rel_min":0.2070596707718713,"rel_max":90.3314031569878,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":90.39518807281985,"rel_min":0.2070596707718713,"rel_max":90.39518807281985,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":90.45089277376591,"rel_min":0.2070596707718713,"rel_max":90.45089277376591,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":90.50322569460536,"rel_min":0.2070596707718713,"rel_max":90.50322569460536,"scaled_dist":200.0,"scaled_rad":100.0},{"average":90.54861540619952,"rel_min":0.2070596707718713,"rel_max":90.54861540619952,"scaled_dist":200.0,"scaled_rad":100.0},{"average":90.59063554638364,"rel_min":0.2070596707718713,"rel_max":90.59063554638364,"scaled_dist":200.0,"scaled_rad":100.0},{"average":90.6351199781047,"rel_min":0.2070596707718713,"rel_max":90.6351199781047,"scaled_dist":200.0,"scaled_rad":100.0},{"average":90.68025776567619,"rel_min":0.2070596707718713,"rel_max":90.68025776567619,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":90.72954300476107,"rel_min":0.2070596707718713,"rel_max":90.72954300476107,"scaled_dist":200.0,"scaled_rad":100.0},{"average":90.77647306863263,"rel_min":0.2070596707718713,"rel_max":90.77647306863263,"scaled_dist":200.0,"scaled_rad":100.0},{"average":90.81925872056328,"rel_min":0.2070596707718713,"rel_max":90.81925872056328,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":90.8650619436316,"rel_min":0.2070596707718713,"rel_max":90.8650619436316,"scaled_dist":200.0,"scaled_rad":100.0},{"average":90.91504584742025,"rel_min":0.2070596707718713,"rel_max":90.91504584742025,"scaled_dist":200.0,"scaled_rad":100.0},{"average":90.96986940635975,"rel_min":0.2070596707718713,"rel_max":90.96986940635975,"scaled_dist":200.0,"scaled_rad":100.0},{"average":91.02981499605244,"rel_min":0.2070596707718713,"rel_max":91.02981499605244,"scaled_dist":200.0,"scaled_rad":100.0},{"average":91.0919326384457,"rel_min":0.2070596707718713,"rel_max":91.0919326384457,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":91.14371304894631,"rel_min":0.2070596707718713,"rel_max":91.14371304894631,"scaled_dist":200.0,"scaled_rad":100.0},{"average":91.19215159574922,"rel_min":0.2070596707718713,"rel_max":91.19215159574922,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":91.2405597492622,"rel_min":0.2070596707718713,"rel_max":91.2405597492622,"scaled_dist":200.0,"scaled_rad":100.0},{"average":91.29033349682777,"rel_min":0.2070596707718713,"rel_max":91.29033349682777,"scaled_dist":200.0,"scaled_rad":100.0},{"average":91.34049422403113,"rel_min":0.2070596707718713,"rel_max":91.34049422403113,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":91.39654589758665,"rel_min":0.2070596707718713,"rel_max":91.39654589758665,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":91.42123488329631,"rel_min":0.2070596707718713,"rel_max":91.42123488329631,"scaled_dist":200.0,"scaled_rad":100.0},{"average":91.48543514757733,"rel_min":0.2070596707718713,"rel_max":91.48543514757733,"scaled_dist":200.0,"scaled_rad":100.0},{"average":91.53938376154582,"rel_min":0.2070596707718713,"rel_max":91.53938376154582,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":91.58262354834609,"rel_min":0.2070596707718713,"rel_max":91.58262354834609,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":91.62143349009544,"rel_min":0.2070596707718713,"rel_max":91.62143349009544,"scaled_dist":200.0,"scaled_rad":100.0},{"average":91.67296800888069,"rel_min":0.2070596707718713,"rel_max":91.67296800888069,"scaled_dist":200.0,"scaled_rad":100.0},{"average":91.71535707495693,"rel_min":0.2070596707718713,"rel_max":91.71535707495693,"scaled_dist":200.0,"scaled_rad":100.0},{"average":91.76200836153028,"rel_min":0.2070596707718713,"rel_max":91.76200836153028,"scaled_dist":200.0,"scaled_rad":100.0},{"average":91.81671153295184,"rel_min":0.2070596707718713,"rel_max":91.81671153295184,"scaled_dist":200.0,"scaled_rad":100.0},{"average":91.8708429269695,"rel_min":0.2070596707718713,"rel_max":91.8708429269695,"scaled_dist":200.0,"scaled_rad":100.0},{"average":91.92625823181244,"rel_min":0.2070596707718713,"rel_max":91.92625823181244,"scaled_dist":200.0,"scaled_rad":100.0},{"average":91.98113039594546,"rel_min":0.2070596707718713,"rel_max":91.98113039594546,"scaled_dist":200.0,"scaled_rad":100.0},{"average":92.03244727105584,"rel_min":0.2070596707718713,"rel_max":92.03244727105584,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":92.08434197999026,"rel_min":0.2070596707718713,"rel_max":92.08434197999026,"scaled_dist":200.0,"scaled_rad":100.0},{"average":92.13446825396342,"rel_min":0.2070596707718713,"rel_max":92.13446825396342,"scaled_dist":200.0,"scaled_rad":100.0},{"average":92.18442219593327,"rel_min":0.2070596707718713,"rel_max":92.18442219593327,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":92.22912239113987,"rel_min":0.2070596707718713,"rel_max":92.22912239113987,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":92.2680459808408,"rel_min":0.2070596707718713,"rel_max":92.2680459808408,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":92.30757891952769,"rel_min":0.2070596707718713,"rel_max":92.30757891952769,"scaled_dist":200.0,"scaled_rad":100.0},{"average":92.34852655515968,"rel_min":0.2070596707718713,"rel_max":92.34852655515968,"scaled_dist":200.0,"scaled_rad":100.0},{"average":92.39553131828698,"rel_min":0.2070596707718713,"rel_max":92.39553131828698,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":92.44339563095699,"rel_min":0.2070596707718713,"rel_max":92.44339563095699,"scaled_dist":200.0,"scaled_rad":100.0},{"average":92.4914871634918,"rel_min":0.2070596707718713,"rel_max":92.4914871634918,"scaled_dist":200.0,"scaled_rad":100.0},{"average":92.53498519335983,"rel_min":0.2070596707718713,"rel_max":92.53498519335983,"scaled_dist":200.0,"scaled_rad":100.0},{"average":92.56568074274843,"rel_min":0.2070596707718713,"rel_max":92.56568074274843,"scaled_dist":200.0,"scaled_rad":100.0},{"average":92.59401801194022,"rel_min":0.2070596707718713,"rel_max":92.59401801194022,"scaled_dist":200.0,"scaled_rad":100.0},{"average":92.62446427903804,"rel_min":0.2070596707718713,"rel_max":92.62446427903804,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":92.65655901735003,"rel_min":0.2070596707718713,"rel_max":92.65655901735003,"scaled_dist":200.0,"scaled_rad":100.0},{"average":92.68906762223376,"rel_min":0.2070596707718713,"rel_max":92.68906762223376,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":92.73457166367041,"rel_min":0.2070596707718713,"rel_max":92.73457166367041,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":92.78472416105822,"rel_min":0.2070596707718713,"rel_max":92.78472416105822,"scaled_dist":200.0,"scaled_rad":100.0},{"average":92.84978806656254,"rel_min":0.2070596707718713,"rel_max":92.84978806656254,"scaled_dist":200.0,"scaled_rad":100.0},{"average":92.91824757044853,"rel_min":0.2070596707718713,"rel_max":92.91824757044853,"scaled_dist":200.0,"scaled_rad":100.0},{"average":92.97696621771989,"rel_min":0.2070596707718713,"rel_max":92.97696621771989,"scaled_dist":200.0,"scaled_rad":100.0},{"average":93.02596043821684,"rel_min":0.2070596707718713,"rel_max":93.02596043821684,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":93.07304665774922,"rel_min":0.2070596707718713,"rel_max":93.07304665774922,"scaled_dist":200.0,"scaled_rad":100.0},{"average":93.11772917055436,"rel_min":0.2070596707718713,"rel_max":93.11772917055436,"scaled_dist":200.0,"scaled_rad":100.0},{"average":93.16203834411735,"rel_min":0.2070596707718713,"rel_max":93.16203834411735,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":93.20664896377738,"rel_min":0.2070596707718713,"rel_max":93.20664896377738,"scaled_dist":200.0,"scaled_rad":100.0},{"average":93.25099167725739,"rel_min":0.2070596707718713,"rel_max":93.25099167725739,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":93.29544845327369,"rel_min":0.2070596707718713,"rel_max":93.29544845327369,"scaled_dist":200.0,"scaled_rad":100.0},{"average":93.34048013246577,"rel_min":0.2070596707718713,"rel_max":93.34048013246577,"scaled_dist":200.0,"scaled_rad":100.0},{"average":93.38577106279617,"rel_min":0.2070596707718713,"rel_max":93.38577106279617,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":93.43088179643111,"rel_min":0.2070596707718713,"rel_max":93.43088179643111,"scaled_dist":200.0,"scaled_rad":100.0},{"average":93.47671251397922,"rel_min":0.2070596707718713,"rel_max":93.47671251397922,"scaled_dist":200.0,"scaled_rad":100.0},{"average":93.52263284425734,"rel_min":0.2070596707718713,"rel_max":93.52263284425734,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":93.56905830798964,"rel_min":0.2070596707718713,"rel_max":93.56905830798964,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":93.61801149287996,"rel_min":0.2070596707718713,"rel_max":93.61801149287996,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":93.66640066224787,"rel_min":0.2070596707718713,"rel_max":93.66640066224787,"scaled_dist":200.0,"scaled_rad":100.0},{"average":93.71489752186942,"rel_min":0.2070596707718713,"rel_max":93.71489752186942,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":93.76330571745571,"rel_min":0.2070596707718713,"rel_max":93.76330571745571,"scaled_dist":200.0,"scaled_rad":100.0},{"average":93.82369177530096,"rel_min":0.2070596707718713,"rel_max":93.82369177530096,"scaled_dist":200.0,"scaled_rad":100.0},{"average":93.87037170459013,"rel_min":0.2070596707718713,"rel_max":93.87037170459013,"scaled_dist":200.0,"scaled_rad":100.0},{"average":93.91752822284856,"rel_min":0.2070596707718713,"rel_max":93.91752822284856,"scaled_dist":200.0,"scaled_rad":100.0},{"average":93.96445163332731,"rel_min":0.2070596707718713,"rel_max":93.96445163332731,"scaled_dist":200.0,"scaled_rad":100.0},{"average":94.01176125671414,"rel_min":0.2070596707718713,"rel_max":94.01176125671414,"scaled_dist":200.0,"scaled_rad":100.0},{"average":94.06089367462458,"rel_min":0.2070596707718713,"rel_max":94.06089367462458,"scaled_dist":200.0,"scaled_rad":100.0},{"average":94.11165785111614,"rel_min":0.2070596707718713,"rel_max":94.11165785111614,"scaled_dist":200.0,"scaled_rad":100.0},{"average":94.16412511196494,"rel_min":0.2070596707718713,"rel_max":94.16412511196494,"scaled_dist":200.0,"scaled_rad":100.0},{"average":94.1563770789516,"rel_min":0.2070596707718713,"rel_max":94.16412511196494,"scaled_dist":199.98391960806242,"scaled_rad":99.97855947741658},{"average":94.20895149741204,"rel_min":0.2070596707718713,"rel_max":94.20895149741204,"scaled_dist":200.0,"scaled_rad":100.0},{"average":94.26095344572852,"rel_min":0.2070596707718713,"rel_max":94.26095344572852,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":94.31449063923004,"rel_min":0.2070596707718713,"rel_max":94.31449063923004,"scaled_dist":200.0,"scaled_rad":100.0},{"average":94.35958942642263,"rel_min":0.2070596707718713,"rel_max":94.35958942642263,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":94.40045169064736,"rel_min":0.2070596707718713,"rel_max":94.40045169064736,"scaled_dist":200.0,"scaled_rad":100.0},{"average":94.44387266906467,"rel_min":0.2070596707718713,"rel_max":94.44387266906467,"scaled_dist":200.0,"scaled_rad":100.0},{"average":94.48905335913678,"rel_min":0.2070596707718713,"rel_max":94.48905335913678,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":94.53604677019656,"rel_min":0.2070596707718713,"rel_max":94.53604677019656,"scaled_dist":200.0,"scaled_rad":100.0},{"average":94.58544011169526,"rel_min":0.2070596707718713,"rel_max":94.58544011169526,"scaled_dist":200.0,"scaled_rad":100.0},{"average":94.63633215668307,"rel_min":0.2070596707718713,"rel_max":94.63633215668307,"scaled_dist":200.0,"scaled_rad":100.0},{"average":94.68898867723176,"rel_min":0.2070596707718713,"rel_max":94.68898867723176,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":94.74248302868756,"rel_min":0.2070596707718713,"rel_max":94.74248302868756,"scaled_dist":200.0,"scaled_rad":100.0},{"average":94.79376233911897,"rel_min":0.2070596707718713,"rel_max":94.79376233911897,"scaled_dist":200.0,"scaled_rad":100.0},{"average":94.84165245138713,"rel_min":0.2070596707718713,"rel_max":94.84165245138713,"scaled_dist":200.0,"scaled_rad":100.0},{"average":94.88741015201926,"rel_min":0.2070596707718713,"rel_max":94.88741015201926,"scaled_dist":200.0,"scaled_rad":100.0},{"average":94.93209478061956,"rel_min":0.2070596707718713,"rel_max":94.93209478061956,"scaled_dist":200.0,"scaled_rad":100.0},{"average":94.9765298494962,"rel_min":0.2070596707718713,"rel_max":94.9765298494962,"scaled_dist":200.0,"scaled_rad":100.0},{"average":95.02219534159732,"rel_min":0.2070596707718713,"rel_max":95.02219534159732,"scaled_dist":200.0,"scaled_rad":100.0},{"average":95.07986076760271,"rel_min":0.2070596707718713,"rel_max":95.07986076760271,"scaled_dist":200.0,"scaled_rad":100.0},{"average":95.13793448380656,"rel_min":0.2070596707718713,"rel_max":95.13793448380656,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":95.19150245004612,"rel_min":0.2070596707718713,"rel_max":95.19150245004612,"scaled_dist":200.0,"scaled_rad":100.0},{"average":95.24181969520382,"rel_min":0.2070596707718713,"rel_max":95.24181969520382,"scaled_dist":200.0,"scaled_rad":100.0},{"average":95.28823047686969,"rel_min":0.2070596707718713,"rel_max":95.28823047686969,"scaled_dist":200.0,"scaled_rad":100.0},{"average":95.33216604680835,"rel_min":0.2070596707718713,"rel_max":95.33216604680835,"scaled_dist":200.0,"scaled_rad":100.0},{"average":95.37698552269941,"rel_min":0.2070596707718713,"rel_max":95.37698552269941,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":95.42397529969017,"rel_min":0.2070596707718713,"rel_max":95.42397529969017,"scaled_dist":200.0,"scaled_rad":100.0},{"average":95.46997123618452,"rel_min":0.2070596707718713,"rel_max":95.46997123618452,"scaled_dist":200.0,"scaled_rad":100.0},{"average":95.51391436973243,"rel_min":0.2070596707718713,"rel_max":95.51391436973243,"scaled_dist":200.0,"scaled_rad":100.0},{"average":95.55946677252962,"rel_min":0.2070596707718713,"rel_max":95.55946677252962,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":95.60616211903684,"rel_min":0.2070596707718713,"rel_max":95.60616211903684,"scaled_dist":200.0,"scaled_rad":100.0},{"average":95.6530880738311,"rel_min":0.2070596707718713,"rel_max":95.6530880738311,"scaled_dist":200.0,"scaled_rad":100.0},{"average":95.70278850293376,"rel_min":0.2070596707718713,"rel_max":95.70278850293376,"scaled_dist":200.0,"scaled_rad":100.0},{"average":95.75694486682931,"rel_min":0.2070596707718713,"rel_max":95.75694486682931,"scaled_dist":200.0,"scaled_rad":100.0},{"average":95.8088725763386,"rel_min":0.2070596707718713,"rel_max":95.8088725763386,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":95.85260528512653,"rel_min":0.2070596707718713,"rel_max":95.85260528512653,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":95.89222000052813,"rel_min":0.2070596707718713,"rel_max":95.89222000052813,"scaled_dist":200.0,"scaled_rad":100.0},{"average":95.93394165850496,"rel_min":0.2070596707718713,"rel_max":95.93394165850496,"scaled_dist":200.0,"scaled_rad":100.0},{"average":95.97618307896235,"rel_min":0.2070596707718713,"rel_max":95.97618307896235,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":96.01834157387535,"rel_min":0.2070596707718713,"rel_max":96.01834157387535,"scaled_dist":200.0,"scaled_rad":100.0},{"average":96.06385939587895,"rel_min":0.2070596707718713,"rel_max":96.06385939587895,"scaled_dist":200.0,"scaled_rad":100.0},{"average":96.13871306529813,"rel_min":0.2070596707718713,"rel_max":96.13871306529813,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":96.18104745985335,"rel_min":0.2070596707718713,"rel_max":96.18104745985335,"scaled_dist":200.0,"scaled_rad":100.0},{"average":96.22475839657329,"rel_min":0.2070596707718713,"rel_max":96.22475839657329,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":96.26685305806767,"rel_min":0.2070596707718713,"rel_max":96.26685305806767,"scaled_dist":200.0,"scaled_rad":100.0},{"average":96.30997733558277,"rel_min":0.2070596707718713,"rel_max":96.30997733558277,"scaled_dist":200.0,"scaled_rad":100.0},{"average":96.35396979339596,"rel_min":0.2070596707718713,"rel_max":96.35396979339596,"scaled_dist":200.0,"scaled_rad":100.0},{"average":96.39890889909161,"rel_min":0.2070596707718713,"rel_max":96.39890889909161,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":96.44536048338408,"rel_min":0.2070596707718713,"rel_max":96.44536048338408,"scaled_dist":200.0,"scaled_rad":100.0},{"average":96.49530770065154,"rel_min":0.2070596707718713,"rel_max":96.49530770065154,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":96.54673655070764,"rel_min":0.2070596707718713,"rel_max":96.54673655070764,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":96.59739549551854,"rel_min":0.2070596707718713,"rel_max":96.59739549551854,"scaled_dist":200.0,"scaled_rad":100.0},{"average":96.64501859289773,"rel_min":0.2070596707718713,"rel_max":96.64501859289773,"scaled_dist":200.0,"scaled_rad":100.0},{"average":96.70086565616931,"rel_min":0.2070596707718713,"rel_max":96.70086565616931,"scaled_dist":200.0,"scaled_rad":100.0},{"average":96.74791905620874,"rel_min":0.2070596707718713,"rel_max":96.74791905620874,"scaled_dist":200.0,"scaled_rad":100.0},{"average":96.7958263877635,"rel_min":0.2070596707718713,"rel_max":96.7958263877635,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":96.845455044086,"rel_min":0.2070596707718713,"rel_max":96.845455044086,"scaled_dist":200.0,"scaled_rad":100.0},{"average":96.88964130673467,"rel_min":0.2070596707718713,"rel_max":96.88964130673467,"scaled_dist":200.0,"scaled_rad":100.0},{"average":96.94278218146243,"rel_min":0.2070596707718713,"rel_max":96.94278218146243,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":96.98480906399406,"rel_min":0.2070596707718713,"rel_max":96.98480906399406,"scaled_dist":200.0,"scaled_rad":100.0},{"average":97.02864004853292,"rel_min":0.2070596707718713,"rel_max":97.02864004853292,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":97.07412493167958,"rel_min":0.2070596707718713,"rel_max":97.07412493167958,"scaled_dist":200.0,"scaled_rad":100.0},{"average":97.12347772314091,"rel_min":0.2070596707718713,"rel_max":97.12347772314091,"scaled_dist":200.0,"scaled_rad":100.0},{"average":97.17744300347057,"rel_min":0.2070596707718713,"rel_max":97.17744300347057,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":97.23066295581557,"rel_min":0.2070596707718713,"rel_max":97.23066295581557,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":97.28300987202552,"rel_min":0.2070596707718713,"rel_max":97.28300987202552,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":97.33482248869738,"rel_min":0.2070596707718713,"rel_max":97.33482248869738,"scaled_dist":200.0,"scaled_rad":100.0},{"average":97.39041009135495,"rel_min":0.2070596707718713,"rel_max":97.39041009135495,"scaled_dist":200.0,"scaled_rad":100.0},{"average":97.44471557915004,"rel_min":0.2070596707718713,"rel_max":97.44471557915004,"scaled_dist":200.00000000000003,"scaled_rad":100.0},{"average":97.50852687919466,"rel_min":0.2070596707718713,"rel_max":97.50852687919466,"scaled_dist":199.99999999999997,"scaled_rad":100.0},{"average":97.57115465734604,"rel_min":0.2070596707718713,"rel_max":97.57115465734604,"scaled_dist":200.0,"scaled_rad":100.0},{"average":97.62954933002543,"rel_min":0.2070596707718713,"rel_max":97.62954933002543,"scaled_dist":200.0,"scaled_rad":100.0},{"average":97.67692981500944,"rel_min":0.2070596707718713,"rel_max":97.67692981500944,"scaled_dist":200.0,"scaled_rad":100.0},{"average":97.72489758258243,"rel_min":0.2070596707718713,"rel_max":97.72489758258243,"scaled_dist":200.0,"scaled_rad":100.0},{"average":97.77314262387183,"rel_min":0.2070596707718713,"rel_max":97.77314262387183,"scaled_dist":200.0,"scaled_rad":100.0},{"average":97.81936149215173,"rel_min":0.2070596707718713,"rel_max":97.81936149215173,"scaled_dist":200.0,"scaled_rad":100.0},{"average":97.86580215294572,"rel_min":0.2070596707718713,"rel_max":97.86580215294572,"scaled_dist":200.0,"scaled_rad":100.0},{"average":97.91114645504464,"rel_min":0.2070596707718713,"rel_max":97.91114645504464,"scaled_dist":200.0,"scaled_rad":100.0},{"average":97.95635964738321,"rel_min":0.2070596707718713,"rel_max":97.95635964738321,"scaled_dist":200.0,"scaled_rad":100.0},{"average":97.98164025062074,"rel_min":0.2070596707718713,"rel_max":97.98164025062074,"scaled_dist":200.0,"scaled_rad":100.0},{"average":98.03739419877968,"rel_min":0.2070596707718713,"rel_max":98.03739419877968,"scaled_dist":200.0,"scaled_rad":100.0},{"average":98.0933651704495,"rel_min":0.2070596707718713,"rel_max":98.0933651704495,"scaled_dist":200.0,"scaled_rad":100.0},{"average":98.14761365691635,"rel_min":0.2070596707718713,"rel_max":98.14761365691635,"scaled_dist":200.0,"scaled_rad":100.0},{"average":98.20069956172783,"rel_min":0.2070596707718713,"rel_max":98.20069956172783,"scaled_dist":200.0,"scaled_rad":100.0},{"average":98.25594652517766,"rel_min":0.2070596707718713,"rel_max":98.25594652517766,"scaled_dist":200.0,"scaled_rad":100.0},{"average":98.31401500166302,"rel_min":0.2070596707718713,"rel_max":98.31401500166302,"scaled_dist":200.0,"scaled_rad":100.0},{"average":98.37295416486306,"rel_min":0.2070596707718713,"rel_max":98.37295416486306,"scaled_dist":200.0,"scaled_rad":100.0},{"average":98.4182202305347,"rel_min":0.2070596707718713,"rel_max":98.4182202305347,"scaled_dist":200.0,"scaled_rad":100.0},{"average":98.44122687367127,"rel_min":0.2070596707718713,"rel_max":98.44122687367127,"scaled_dist":200.0,"scaled_rad":100.0},{"average":98.45782933266466,"rel_min":0.2070596707718713,"rel_max":98.45782933266466,"scaled_dist":200.0,"scaled_rad":100.0},{"average":98.50425713467811,"rel_min":0.2070596707718713,"rel_max":98.50425713467811,"scaled_dist":200.0,"scaled_rad":100.0},{"average":98.55001084831731,"rel_min":0.2070596707718713,"rel_max":98.55001084831731,"scaled_dist":200.0,"scaled_rad":100.0},{"average":98.60275855038759,"rel_min":0.2070596707718713,"rel_max":98.60275855038759,"scaled_dist":200.0,"scaled_rad":100.0},{"average":98.66415893606857,"rel_min":0.2070596707718713,"rel_max":98.66415893606857,"scaled_dist":200.0,"scaled_rad":100.0},{"average":98.72318503491988,"rel_min":0.2070596707718713,"rel_max":98.72318503491988,"scaled_dist":200.0,"scaled_rad":100.0},{"average":98.77063463391544,"rel_min":0.2070596707718713,"rel_max":98.77063463391544,"scaled_dist":200.0,"scaled_rad":100.0},{"average":98.81121622050568,"rel_min":0.2070596707718713,"rel_max":98.81121622050568,"scaled_dist":200.0,"scaled_rad":100.0},{"average":98.85598844371849,"rel_min":0.2070596707718713,"rel_max":98.85598844371849,"scaled_dist":200.0,"scaled_rad":100.0},{"average":98.90235351137423,"rel_min":0.2070596707718713,"rel_max":98.90235351137423,"scaled_dist":200.0,"scaled_rad":100.0},{"average":98.94687494358371,"rel_min":0.2070596707718713,"rel_max":98.94687494358371,"scaled_dist":200.0,"scaled_rad":100.0},{"average":98.99112921525881,"rel_min":0.2070596707718713,"rel_max":98.99112921525881,"scaled_dist":200.0,"scaled_rad":100.0},{"average":99.039225106989,"rel_min":0.2070596707718713,"rel_max":99.039225106989,"scaled_dist":200.0,"scaled_rad":100.0},{"average":99.08888228614215,"rel_min":0.2070596707718713,"rel_max":99.08888228614215,"scaled_dist":200.0,"scaled_rad":100.0},{"average":99.13808989752093,"rel_min":0.2070596707718713,"rel_max":99.13808989752093,"scaled_dist":200.0,"scaled_rad":100.0},{"average":99.18743965990532,"rel_min":0.2070596707718713,"rel_max":99.18743965990532,"scaled_dist":200.0,"scaled_rad":100.0},{"average":99.20461566410755,"rel_min":0.2070596707718713,"rel_max":99.20461566410755,"scaled_dist":200.0,"scaled_rad":100.0},{"average":99.25403660371802,"rel_min":0.2070596707718713,"rel_max":99.25403660371802,"scaled_dist":200.0,"scaled_rad":100.0},{"average":99.301827958806,"rel_min":0.2070596707718713,"rel_max":99.301827958806,"scaled_dist":200.0,"scaled_rad":100.0},{"average":99.35078996288551,"rel_min":0.2070596707718713,"rel_max":99.35078996288551,"scaled_dist":200.0,"scaled_rad":100.0},{"average":99.3988417012418,"rel_min":0.2070596707718713,"rel_max":99.3988417012418,"scaled_dist":200.0,"scaled_rad":100.0},{"average":99.41615529346629,"rel_min":0.2070596707718713,"rel_max":99.41615529346629,"scaled_dist":200.0,"scaled_rad":100.0},{"average":99.46106162825433,"rel_min":0.2070596707718713,"rel_max":99.46106162825433,"scaled_dist":200.0,"scaled_rad":100.0},{"average":99.50785121672507,"rel_min":0.2070596707718713,"rel_max":99.50785121672507,"scaled_dist":200.0,"scaled_rad":100.0},{"average":99.55457181233132,"rel_min":0.2070596707718713,"rel_max":99.55457181233132,"scaled_dist":200.0,"scaled_rad":100.0},{"average":99.60137645879426,"rel_min":0.2070596707718713,"rel_max":99.60137645879426,"scaled_dist":200.0,"scaled_rad":100.0},{"average":99.6485522882223,"rel_min":0.2070596707718713,"rel_max":99.6485522882223,"scaled_dist":200.0,"scaled_rad":100.0},{"average":99.69625758404284,"rel_min":0.2070596707718713,"rel_max":99.69625758404284,"scaled_dist":200.0,"scaled_rad":100.0},{"average":99.7446378481359,"rel_min":0.2070596707718713,"rel_max":99.7446378481359,"scaled_dist":200.0,"scaled_rad":100.0},{"average":99.79410951256452,"rel_min":0.2070596707718713,"rel_max":99.79410951256452,"scaled_dist":200.0,"scaled_rad":100.0},{"average":99.84408801636073,"rel_min":0.2070596707718713,"rel_max":99.84408801636073,"scaled_dist":200.0,"scaled_rad":100.0},{"average":99.89503859772047,"rel_min":0.2070596707718713,"rel_max":99.89503859772047,"scaled_dist":200.0,"scaled_rad":100.0},{"average":99.95083579642701,"rel_min":0.2070596707718713,"rel_max":99.95083579642701,"scaled_dist":200.0,"scaled_rad":100.0},{"average":99.9727910991967,"rel_min":0.2070596707718713,"rel_max":99.9727910991967,"scaled_dist":200.0,"scaled_rad":100.0},{"average":100.02265388262255,"rel_min":0.2070596707718713,"rel_max":100.02265388262255,"scaled_dist":200.0,"scaled_rad":100.0},{"average":100.07445905538627,"rel_min":0.2070596707718713,"rel_max":100.07445905538627,"scaled_dist":200.0,"scaled_rad":100.0},{"average":100.12665310071304,"rel_min":0.2070596707718713,"rel_max":100.12665310071304,"scaled_dist":200.0,"scaled_rad":100.0},{"average":100.17564101612155,"rel_min":0.2070596707718713,"rel_max":100.17564101612155,"scaled_dist":200.0,"scaled_rad":100.0},{"average":100.2209096941399,"rel_min":0.2070596707718713,"rel_max":100.2209096941399,"scaled_dist":200.0,"scaled_rad":100.0},{"average":100.2661951968685,"rel_min":0.2070596707718713,"rel_max":100.2661951968685,"scaled_dist":200.0,"scaled_rad":100.0},{"average":100.31508917816906,"rel_min":0.2070596707718713,"rel_max":100.31508917816906,"scaled_dist":200.0,"scaled_rad":100.0},{"average":100.36507853943056,"rel_min":0.2070596707718713,"rel_max":100.36507853943056,"scaled_dist":200.0,"scaled_rad":100.0},{"average":100.4153942047363,"rel_min":0.2070596707718713,"rel_max":100.4153942047363,"scaled_dist":200.0,"scaled_rad":100.0},{"average":100.46565529474482,"rel_min":0.2070596707718713,"rel_max":100.46565529474482,"scaled_dist":200.0,"scaled_rad":100.0},{"average":100.51442361702793,"rel_min":0.2070596707718713,"rel_max":100.51442361702793,"scaled_dist":200.0,"scaled_rad":100.0},{"average":100.56438946074013,"rel_min":0.2070596707718713,"rel_max":100.56438946074013,"scaled_dist":200.0,"scaled_rad":100.0},{"average":100.61637328367044,"rel_min":0.2070596707718713,"rel_max":100.61637328367044,"scaled_dist":200.0,"scaled_rad":100.0},{"average":100.6716601502774,"rel_min":0.2070596707718713,"rel_max":100.6716601502774,"scaled_dist":200.0,"scaled_rad":100.0},{"average":100.7185608702883,"rel_min":0.2070596707718713,"rel_max":100.7185608702883,"scaled_dist":200.0,"scaled_rad":100.0},{"average":100.75369249938738,"rel_min":0.2070596707718713,"rel_max":100.75369249938738,"scaled_dist":200.0,"scaled_rad":100.0},{"average":100.79631785568222,"rel_min":0.2070596707718713,"rel_max":100.79631785568222,"scaled_dist":200.0,"scaled_rad":100.0},{"average":100.83952541834067,"rel_min":0.2070596707718713,"rel_max":100.83952541834067,"scaled_dist":200.0,"scaled_rad":100.0},{"average":100.88226151380255,"rel_min":0.2070596707718713,"rel_max":100.88226151380255,"scaled_dist":200.0,"scaled_rad":100.0},{"average":100.92724879198101,"rel_min":0.2070596707718713,"rel_max":100.92724879198101,"scaled_dist":200.0,"scaled_rad":100.0},{"average":100.97347074492166,"rel_min":0.2070596707718713,"rel_max":100.97347074492166,"scaled_dist":200.0,"scaled_rad":100.0},{"average":101.0208526698679,"rel_min":0.2070596707718713,"rel_max":101.0208526698679,"scaled_dist":200.0,"scaled_rad":100.0},{"average":101.06771703004429,"rel_min":0.2070596707718713,"rel_max":101.06771703004429,"scaled_dist":200.0,"scaled_rad":100.0},{"average":101.11279323296468,"rel_min":0.2070596707718713,"rel_max":101.11279323296468,"scaled_dist":200.0,"scaled_rad":100.0},{"average":101.15659742172956,"rel_min":0.2070596707718713,"rel_max":101.15659742172956,"scaled_dist":200.0,"scaled_rad":100.0},{"average":101.19750076141511,"rel_min":0.2070596707718713,"rel_max":101.19750076141511,"scaled_dist":200.0,"scaled_rad":100.0},{"average":101.23698377577382,"rel_min":0.2070596707718713,"rel_max":101.23698377577382,"scaled_dist":200.0,"scaled_rad":100.0},{"average":101.27665804266194,"rel_min":0.2070596707718713,"rel_max":101.27665804266194,"scaled_dist":200.0,"scaled_rad":100.0},{"average":101.3181185062626,"rel_min":0.2070596707718713,"rel_max":101.3181185062626,"scaled_dist":200.0,"scaled_rad":100.0},{"average":101.36010849809549,"rel_min":0.2070596707718713,"rel_max":101.36010849809549,"scaled_dist":200.0,"scaled_rad":100.0},{"average":101.40007703664729,"rel_min":0.2070596707718713,"rel_max":101.40007703664729,"scaled_dist":200.0,"scaled_rad":100.0},{"average":101.43444321848358,"rel_min":0.2070596707718713,"rel_max":101.43444321848358,"scaled_dist":200.0,"scaled_rad":100.0},{"average":101.48012996992438,"rel_min":0.2070596707718713,"rel_max":101.48012996992438,"scaled_dist":200.0,"scaled_rad":100.0},{"average":101.53087217169022,"rel_min":0.2070596707718713,"rel_max":101.53087217169022,"scaled_dist":200.0,"scaled_rad":100.0},{"average":101.57992847259335,"rel_min":0.2070596707718713,"rel_max":101.57992847259335,"scaled_dist":200.0,"scaled_rad":100.0},{"average":101.63036029413068,"rel_min":0.2070596707718713,"rel_max":101.63036029413068,"scaled_dist":200.0,"scaled_rad":100.0},{"average":101.68501935818345,"rel_min":0.2070596707718713,"rel_max":101.68501935818345,"scaled_dist":200.0,"scaled_rad":100.0},{"average":101.72948041688528,"rel_min":0.2070596707718713,"rel_max":101.72948041688528,"scaled_dist":200.0,"scaled_rad":100.0},{"average":101.78387534333449,"rel_min":0.2070596707718713,"rel_max":101.78387534333449,"scaled_dist":200.0,"scaled_rad":100.0},{"average":101.83565405498373,"rel_min":0.2070596707718713,"rel_max":101.83565405498373,"scaled_dist":200.0,"scaled_rad":100.0},{"average":101.8877921708632,"rel_min":0.2070596707718713,"rel_max":101.8877921708632,"scaled_dist":200.0,"scaled_rad":100.0},{"average":101.94056892334106,"rel_min":0.2070596707718713,"rel_max":101.94056892334106,"scaled_dist":200.0,"scaled_rad":100.0},{"average":101.9945086169711,"rel_min":0.2070596707718713,"rel_max":101.9945086169711,"scaled_dist":200.0,"scaled_rad":100.0},{"average":102.04863863171323,"rel_min":0.2070596707718713,"rel_max":102.04863863171323,"scaled_dist":200.0,"scaled_rad":100.0},{"average":102.09649219661345,"rel_min":0.2070596707718713,"rel_max":102.09649219661345,"scaled_dist":200.0,"scaled_rad":100.0},{"average":102.145234927318,"rel_min":0.2070596707718713,"rel_max":102.145234927318,"scaled_dist":200.0,"scaled_rad":100.0},{"average":102.19274807036221,"rel_min":0.2070596707718713,"rel_max":102.19274807036221,"scaled_dist":200.0,"scaled_rad":100.0},{"average":102.24083053383964,"rel_min":0.2070596707718713,"rel_max":102.24083053383964,"scaled_dist":200.0,"scaled_rad":100.0},{"average":102.2898909646764,"rel_min":0.2070596707718713,"rel_max":102.2898909646764,"scaled_dist":200.0,"scaled_rad":100.0},{"average":102.34075313917106,"rel_min":0.2070596707718713,"rel_max":102.34075313917106,"scaled_dist":200.0,"scaled_rad":100.0},{"average":102.39520079455687,"rel_min":0.2070596707718713,"rel_max":102.39520079455687,"scaled_dist":200.0,"scaled_rad":100.0},{"average":102.45626331607657,"rel_min":0.2070596707718713,"rel_max":102.45626331607657,"scaled_dist":200.0,"scaled_rad":100.0},{"average":102.5170591273623,"rel_min":0.2070596707718713,"rel_max":102.5170591273623,"scaled_dist":200.0,"scaled_rad":100.0},{"average":102.61141190977814,"rel_min":0.2070596707718713,"rel_max":102.61141190977814,"scaled_dist":200.0,"scaled_rad":100.0},{"average":102.66677201338078,"rel_min":0.2070596707718713,"rel_max":102.66677201338078,"scaled_dist":200.0,"scaled_rad":100.0},{"average":102.72527909603349,"rel_min":0.2070596707718713,"rel_max":102.72527909603349,"scaled_dist":200.0,"scaled_rad":100.0},{"average":102.78596303749491,"rel_min":0.2070596707718713,"rel_max":102.78596303749491,"scaled_dist":200.0,"scaled_rad":100.0},{"average":102.84619250834085,"rel_min":0.2070596707718713,"rel_max":102.84619250834085,"scaled_dist":200.0,"scaled_rad":100.0},{"average":102.90629817583464,"rel_min":0.2070596707718713,"rel_max":102.90629817583464,"scaled_dist":200.0,"scaled_rad":100.0},{"average":102.97007698479331,"rel_min":0.2070596707718713,"rel_max":102.97007698479331,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.03299047023157,"rel_min":0.2070596707718713,"rel_max":103.03299047023157,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.10389730511216,"rel_min":0.2070596707718713,"rel_max":103.10389730511216,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.15217557085754,"rel_min":0.2070596707718713,"rel_max":103.15217557085754,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.20500445946382,"rel_min":0.2070596707718713,"rel_max":103.20500445946382,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.25322258004316,"rel_min":0.2070596707718713,"rel_max":103.25322258004316,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.29829059786012,"rel_min":0.2070596707718713,"rel_max":103.29829059786012,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.33724506453173,"rel_min":0.2070596707718713,"rel_max":103.33724506453173,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.36471362174962,"rel_min":0.2070596707718713,"rel_max":103.36471362174962,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.38499161893465,"rel_min":0.2070596707718713,"rel_max":103.38499161893465,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.40980553730448,"rel_min":0.2070596707718713,"rel_max":103.40980553730448,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.44564004454321,"rel_min":0.2070596707718713,"rel_max":103.44564004454321,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.48863817457975,"rel_min":0.2070596707718713,"rel_max":103.48863817457975,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.52917376020508,"rel_min":0.2070596707718713,"rel_max":103.52917376020508,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.56213958871425,"rel_min":0.2070596707718713,"rel_max":103.56213958871425,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.58450757139019,"rel_min":0.2070596707718713,"rel_max":103.58450757139019,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.6143852438393,"rel_min":0.2070596707718713,"rel_max":103.6143852438393,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.65090688415961,"rel_min":0.2070596707718713,"rel_max":103.65090688415961,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.66582757668077,"rel_min":0.2070596707718713,"rel_max":103.66582757668077,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.69968669601172,"rel_min":0.2070596707718713,"rel_max":103.69968669601172,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.73843932591694,"rel_min":0.2070596707718713,"rel_max":103.73843932591694,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.7815972417838,"rel_min":0.2070596707718713,"rel_max":103.7815972417838,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.82559372588207,"rel_min":0.2070596707718713,"rel_max":103.82559372588207,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.87400405243294,"rel_min":0.2070596707718713,"rel_max":103.87400405243294,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.92350562511854,"rel_min":0.2070596707718713,"rel_max":103.92350562511854,"scaled_dist":200.0,"scaled_rad":100.0},{"average":103.97292655443776,"rel_min":0.2070596707718713,"rel_max":103.97292655443776,"scaled_dist":200.0,"scaled_rad":100.0},{"average":104.02471308401252,"rel_min":0.2070596707718713,"rel_max":104.02471308401252,"scaled_dist":200.0,"scaled_rad":100.0},{"average":104.06644408983404,"rel_min":0.2070596707718713,"rel_max":104.06644408983404,"scaled_dist":200.0,"scaled_rad":100.0},{"average":104.12016852368643,"rel_min":0.2070596707718713,"rel_max":104.12016852368643,"scaled_dist":200.0,"scaled_rad":100.0},{"average":104.16953154330552,"rel_min":0.2070596707718713,"rel_max":104.16953154330552,"scaled_dist":200.0,"scaled_rad":100.0},{"average":104.21876899193461,"rel_min":0.2070596707718713,"rel_max":104.21876899193461,"scaled_dist":200.0,"scaled_rad":100.0},{"average":104.26925642131526,"rel_min":0.2070596707718713,"rel_max":104.26925642131526,"scaled_dist":200.0,"scaled_rad":100.0},{"average":104.31750008362647,"rel_min":0.2070596707718713,"rel_max":104.31750008362647,"scaled_dist":200.0,"scaled_rad":100.0},{"average":104.36499279606711,"rel_min":0.2070596707718713,"rel_max":104.36499279606711,"scaled_dist":200.0,"scaled_rad":100.0},{"average":104.4113436362971,"rel_min":0.2070596707718713,"rel_max":104.4113436362971,"scaled_dist":200.0,"scaled_rad":100.0},{"average":104.46343810790277,"rel_min":0.2070596707718713,"rel_max":104.46343810790277,"scaled_dist":200.0,"scaled_rad":100.0},{"average":104.51917909379418,"rel_min":0.2070596707718713,"rel_max":104.51917909379418,"scaled_dist":200.0,"scaled_rad":100.0},{"average":104.57218631381777,"rel_min":0.2070596707718713,"rel_max":104.57218631381777,"scaled_dist":200.0,"scaled_rad":100.0},{"average":104.62557862432621,"rel_min":0.2070596707718713,"rel_max":104.62557862432621,"scaled_dist":200.0,"scaled_rad":100.0},{"average":104.67549991304608,"rel_min":0.2070596707718713,"rel_max":104.67549991304608,"scaled_dist":200.0,"scaled_rad":100.0},{"average":104.72512973153178,"rel_min":0.2070596707718713,"rel_max":104.72512973153178,"scaled_dist":200.0,"scaled_rad":100.0},{"average":104.77188256985107,"rel_min":0.2070596707718713,"rel_max":104.77188256985107,"scaled_dist":200.0,"scaled_rad":100.0},{"average":104.81581059293288,"rel_min":0.2070596707718713,"rel_max":104.81581059293288,"scaled_dist":200.0,"scaled_rad":100.0},{"average":104.85927596222379,"rel_min":0.2070596707718713,"rel_max":104.85927596222379,"scaled_dist":200.0,"scaled_rad":100.0},{"average":104.90373649796341,"rel_min":0.2070596707718713,"rel_max":104.90373649796341,"scaled_dist":200.0,"scaled_rad":100.0},{"average":104.94495549135812,"rel_min":0.2070596707718713,"rel_max":104.94495549135812,"scaled_dist":200.0,"scaled_rad":100.0},{"average":104.98266859855909,"rel_min":0.2070596707718713,"rel_max":104.98266859855909,"scaled_dist":200.0,"scaled_rad":100.0},{"average":105.02195404337746,"rel_min":0.2070596707718713,"rel_max":105.02195404337746,"scaled_dist":200.0,"scaled_rad":100.0},{"average":105.06784785486738,"rel_min":0.2070596707718713,"rel_max":105.06784785486738,"scaled_dist":200.0,"scaled_rad":100.0},{"average":105.11893987807439,"rel_min":0.2070596707718713,"rel_max":105.11893987807439,"scaled_dist":200.0,"scaled_rad":100.0},{"average":105.1684457086164,"rel_min":0.2070596707718713,"rel_max":105.1684457086164,"scaled_dist":200.0,"scaled_rad":100.0},{"average":105.21289721045403,"rel_min":0.2070596707718713,"rel_max":105.21289721045403,"scaled_dist":200.0,"scaled_rad":100.0},{"average":105.25551559724576,"rel_min":0.2070596707718713,"rel_max":105.25551559724576,"scaled_dist":200.0,"scaled_rad":100.0},{"average":105.29721340160911,"rel_min":0.2070596707718713,"rel_max":105.29721340160911,"scaled_dist":200.0,"scaled_rad":100.0},{"average":105.34064988636952,"rel_min":0.2070596707718713,"rel_max":105.34064988636952,"scaled_dist":200.0,"scaled_rad":100.0},{"average":105.39326087806695,"rel_min":0.2070596707718713,"rel_max":105.39326087806695,"scaled_dist":200.0,"scaled_rad":100.0},{"average":105.4499886591998,"rel_min":0.2070596707718713,"rel_max":105.4499886591998,"scaled_dist":200.0,"scaled_rad":100.0},{"average":105.50390099979005,"rel_min":0.2070596707718713,"rel_max":105.50390099979005,"scaled_dist":200.0,"scaled_rad":100.0},{"average":105.55583678439552,"rel_min":0.2070596707718713,"rel_max":105.55583678439552,"scaled_dist":200.0,"scaled_rad":100.0},{"average":105.608013927585,"rel_min":0.2070596707718713,"rel_max":105.608013927585,"scaled_dist":200.0,"scaled_rad":100.0},{"average":105.65918295607615,"rel_min":0.2070596707718713,"rel_max":105.65918295607615,"scaled_dist":200.0,"scaled_rad":100.0},{"average":105.70727543730021,"rel_min":0.2070596707718713,"rel_max":105.70727543730021,"scaled_dist":200.0,"scaled_rad":100.0},{"average":105.75722327097279,"rel_min":0.2070596707718713,"rel_max":105.75722327097279,"scaled_dist":200.0,"scaled_rad":100.0},{"average":105.8069767620361,"rel_min":0.2070596707718713,"rel_max":105.8069767620361,"scaled_dist":200.0,"scaled_rad":100.0},{"average":105.85624215653107,"rel_min":0.2070596707718713,"rel_max":105.85624215653107,"scaled_dist":200.0,"scaled_rad":100.0},{"average":105.9051335863569,"rel_min":0.2070596707718713,"rel_max":105.9051335863569,"scaled_dist":200.0,"scaled_rad":100.0},{"average":105.95640747962031,"rel_min":0.2070596707718713,"rel_max":105.95640747962031,"scaled_dist":200.0,"scaled_rad":100.0},{"average":106.01219614425598,"rel_min":0.2070596707718713,"rel_max":106.01219614425598,"scaled_dist":200.0,"scaled_rad":100.0},{"average":106.06865831391372,"rel_min":0.2070596707718713,"rel_max":106.06865831391372,"scaled_dist":200.0,"scaled_rad":100.0},{"average":106.11747047631904,"rel_min":0.2070596707718713,"rel_max":106.11747047631904,"scaled_dist":200.0,"scaled_rad":100.0},{"average":106.16286805667497,"rel_min":0.2070596707718713,"rel_max":106.16286805667497,"scaled_dist":200.0,"scaled_rad":100.0},{"average":106.2090440639772,"rel_min":0.2070596707718713,"rel_max":106.2090440639772,"scaled_dist":200.0,"scaled_rad":100.0},{"average":106.25460977872882,"rel_min":0.2070596707718713,"rel_max":106.25460977872882,"scaled_dist":200.0,"scaled_rad":100.0},{"average":106.29895779566925,"rel_min":0.2070596707718713,"rel_max":106.29895779566925,"scaled_dist":200.0,"scaled_rad":100.0},{"average":106.34469085089773,"rel_min":0.2070596707718713,"rel_max":106.34469085089773,"scaled_dist":200.0,"scaled_rad":100.0},{"average":106.39158689685073,"rel_min":0.2070596707718713,"rel_max":106.39158689685073,"scaled_dist":200.0,"scaled_rad":100.0},{"average":106.43834495635527,"rel_min":0.2070596707718713,"rel_max":106.43834495635527,"scaled_dist":200.0,"scaled_rad":100.0},{"average":106.48437532242883,"rel_min":0.2070596707718713,"rel_max":106.48437532242883,"scaled_dist":200.0,"scaled_rad":100.0},{"average":106.53016651483358,"rel_min":0.2070596707718713,"rel_max":106.53016651483358,"scaled_dist":200.0,"scaled_rad":100.0},{"average":106.57574072887685,"rel_min":0.2070596707718713,"rel_max":106.57574072887685,"scaled_dist":200.0,"scaled_rad":100.0},{"average":106.62211030394793,"rel_min":0.2070596707718713,"rel_max":106.62211030394793,"scaled_dist":200.0,"scaled_rad":100.0},{"average":106.66951104569377,"rel_min":0.2070596707718713,"rel_max":106.66951104569377,"scaled_dist":200.0,"scaled_rad":100.0},{"average":106.71762483631618,"rel_min":0.2070596707718713,"rel_max":106.71762483631618,"scaled_dist":200.0,"scaled_rad":100.0},{"average":106.77750968903717,"rel_min":0.2070596707718713,"rel_max":106.77750968903717,"scaled_dist":200.0,"scaled_rad":100.0},{"average":106.84571524529235,"rel_min":0.2070596707718713,"rel_max":106.84571524529235,"scaled_dist":200.0,"scaled_rad":100.0},{"average":106.90109825914814,"rel_min":0.2070596707718713,"rel_max":106.90109825914814,"scaled_dist":200.0,"scaled_rad":100.0},{"average":106.95818321645355,"rel_min":0.2070596707718713,"rel_max":106.95818321645355,"scaled_dist":200.0,"scaled_rad":100.0},{"average":107.01248199782232,"rel_min":0.2070596707718713,"rel_max":107.01248199782232,"scaled_dist":200.0,"scaled_rad":100.0},{"average":107.06782828279306,"rel_min":0.2070596707718713,"rel_max":107.06782828279306,"scaled_dist":200.0,"scaled_rad":100.0},{"average":107.12220272746929,"rel_min":0.2070596707718713,"rel_max":107.12220272746929,"scaled_dist":200.0,"scaled_rad":100.0},{"average":107.1699503178473,"rel_min":0.2070596707718713,"rel_max":107.1699503178473,"scaled_dist":200.0,"scaled_rad":100.0},{"average":107.21362190296261,"rel_min":0.2070596707718713,"rel_max":107.21362190296261,"scaled_dist":200.0,"scaled_rad":100.0},{"average":107.25939464019838,"rel_min":0.2070596707718713,"rel_max":107.25939464019838,"scaled_dist":200.0,"scaled_rad":100.0},{"average":107.30817480540875,"rel_min":0.2070596707718713,"rel_max":107.30817480540875,"scaled_dist":200.0,"scaled_rad":100.0},{"average":107.35608811139983,"rel_min":0.2070596707718713,"rel_max":107.35608811139983,"scaled_dist":200.0,"scaled_rad":100.0},{"average":107.39963326692124,"rel_min":0.2070596707718713,"rel_max":107.39963326692124,"scaled_dist":200.0,"scaled_rad":100.0},{"average":107.44473062208482,"rel_min":0.2070596707718713,"rel_max":107.44473062208482,"scaled_dist":200.0,"scaled_rad":100.0},{"average":107.48935132036004,"rel_min":0.2070596707718713,"rel_max":107.48935132036004,"scaled_dist":200.0,"scaled_rad":100.0},{"average":107.53549328799943,"rel_min":0.2070596707718713,"rel_max":107.53549328799943,"scaled_dist":200.0,"scaled_rad":100.0},{"average":107.58660741366208,"rel_min":0.2070596707718713,"rel_max":107.58660741366208,"scaled_dist":200.0,"scaled_rad":100.0},{"average":107.6362326498705,"rel_min":0.2070596707718713,"rel_max":107.6362326498705,"scaled_dist":200.0,"scaled_rad":100.0},{"average":107.67966053758398,"rel_min":0.2070596707718713,"rel_max":107.67966053758398,"scaled_dist":200.0,"scaled_rad":100.0},{"average":107.7198385654628,"rel_min":0.2070596707718713,"rel_max":107.7198385654628,"scaled_dist":200.0,"scaled_rad":100.0},{"average":107.7612396851372,"rel_min":0.2070596707718713,"rel_max":107.7612396851372,"scaled_dist":200.0,"scaled_rad":100.0},{"average":107.80729137449583,"rel_min":0.2070596707718713,"rel_max":107.80729137449583,"scaled_dist":200.0,"scaled_rad":100.0},{"average":107.84897731437675,"rel_min":0.2070596707718713,"rel_max":107.84897731437675,"scaled_dist":200.0,"scaled_rad":100.0},{"average":107.88230072118156,"rel_min":0.2070596707718713,"rel_max":107.88230072118156,"scaled_dist":200.0,"scaled_rad":100.0},{"average":107.92888043357047,"rel_min":0.2070596707718713,"rel_max":107.92888043357047,"scaled_dist":200.0,"scaled_rad":100.0},{"average":107.97683708794995,"rel_min":0.2070596707718713,"rel_max":107.97683708794995,"scaled_dist":200.0,"scaled_rad":100.0},{"average":108.02631524179233,"rel_min":0.2070596707718713,"rel_max":108.02631524179233,"scaled_dist":200.0,"scaled_rad":100.0},{"average":108.07174375518909,"rel_min":0.2070596707718713,"rel_max":108.07174375518909,"scaled_dist":200.0,"scaled_rad":100.0},{"average":108.10654472131338,"rel_min":0.2070596707718713,"rel_max":108.10654472131338,"scaled_dist":200.0,"scaled_rad":100.0},{"average":108.15230977397648,"rel_min":0.2070596707718713,"rel_max":108.15230977397648,"scaled_dist":200.0,"scaled_rad":100.0},{"average":108.21798410238974,"rel_min":0.2070596707718713,"rel_max":108.21798410238974,"scaled_dist":200.0,"scaled_rad":100.0},{"average":108.27203872706225,"rel_min":0.2070596707718713,"rel_max":108.27203872706225,"scaled_dist":200.0,"scaled_rad":100.0},{"average":108.3285698513765,"rel_min":0.2070596707718713,"rel_max":108.3285698513765,"scaled_dist":200.0,"scaled_rad":100.0},{"average":108.38195567448531,"rel_min":0.2070596707718713,"rel_max":108.38195567448531,"scaled_dist":200.0,"scaled_rad":100.0},{"average":108.42899915404601,"rel_min":0.2070596707718713,"rel_max":108.42899915404601,"scaled_dist":200.0,"scaled_rad":100.0},{"average":108.47725289003348,"rel_min":0.2070596707718713,"rel_max":108.47725289003348,"scaled_dist":200.0,"scaled_rad":100.0},{"average":108.52875682451239,"rel_min":0.2070596707718713,"rel_max":108.52875682451239,"scaled_dist":200.0,"scaled_rad":100.0},{"average":108.57973465374602,"rel_min":0.2070596707718713,"rel_max":108.57973465374602,"scaled_dist":200.0,"scaled_rad":100.0},{"average":108.63017893299046,"rel_min":0.2070596707718713,"rel_max":108.63017893299046,"scaled_dist":200.0,"scaled_rad":100.0},{"average":108.68108636945702,"rel_min":0.2070596707718713,"rel_max":108.68108636945702,"scaled_dist":200.0,"scaled_rad":100.0},{"average":108.7316981313379,"rel_min":0.2070596707718713,"rel_max":108.7316981313379,"scaled_dist":200.0,"scaled_rad":100.0},{"average":108.78202509431749,"rel_min":0.2070596707718713,"rel_max":108.78202509431749,"scaled_dist":200.0,"scaled_rad":100.0},{"average":108.83296794203339,"rel_min":0.2070596707718713,"rel_max":108.83296794203339,"scaled_dist":200.0,"scaled_rad":100.0},{"average":108.88279941310763,"rel_min":0.2070596707718713,"rel_max":108.88279941310763,"scaled_dist":200.0,"scaled_rad":100.0},{"average":108.93128564165421,"rel_min":0.2070596707718713,"rel_max":108.93128564165421,"scaled_dist":200.0,"scaled_rad":100.0},{"average":108.97985404475433,"rel_min":0.2070596707718713,"rel_max":108.97985404475433,"scaled_dist":200.0,"scaled_rad":100.0},{"average":109.01752917167816,"rel_min":0.2070596707718713,"rel_max":109.01752917167816,"scaled_dist":200.0,"scaled_rad":100.0},{"average":109.05308831608131,"rel_min":0.2070596707718713,"rel_max":109.05308831608131,"scaled_dist":200.0,"scaled_rad":100.0},{"average":109.09029758886238,"rel_min":0.2070596707718713,"rel_max":109.09029758886238,"scaled_dist":200.0,"scaled_rad":100.0},{"average":109.13751040470979,"rel_min":0.2070596707718713,"rel_max":109.13751040470979,"scaled_dist":200.0,"scaled_rad":100.0},{"average":109.19313858381537,"rel_min":0.2070596707718713,"rel_max":109.19313858381537,"scaled_dist":200.0,"scaled_rad":100.0},{"average":109.25069845254481,"rel_min":0.2070596707718713,"rel_max":109.25069845254481,"scaled_dist":200.0,"scaled_rad":100.0},{"average":109.30570033221908,"rel_min":0.2070596707718713,"rel_max":109.30570033221908,"scaled_dist":200.0,"scaled_rad":100.0},{"average":109.35279882001834,"rel_min":0.2070596707718713,"rel_max":109.35279882001834,"scaled_dist":200.0,"scaled_rad":100.0},{"average":109.39290552842806,"rel_min":0.2070596707718713,"rel_max":109.39290552842806,"scaled_dist":200.0,"scaled_rad":100.0},{"average":109.43137874959129,"rel_min":0.2070596707718713,"rel_max":109.43137874959129,"scaled_dist":200.0,"scaled_rad":100.0},{"average":109.46934642776957,"rel_min":0.2070596707718713,"rel_max":109.46934642776957,"scaled_dist":200.0,"scaled_rad":100.0},{"average":109.51339534679566,"rel_min":0.2070596707718713,"rel_max":109.51339534679566,"scaled_dist":200.0,"scaled_rad":100.0},{"average":109.55881396271211,"rel_min":0.2070596707718713,"rel_max":109.55881396271211,"scaled_dist":200.0,"scaled_rad":100.0},{"average":109.60688487911806,"rel_min":0.2070596707718713,"rel_max":109.60688487911806,"scaled_dist":200.0,"scaled_rad":100.0},{"average":109.65517628525171,"rel_min":0.2070596707718713,"rel_max":109.65517628525171,"scaled_dist":200.0,"scaled_rad":100.0},{"average":109.70525056719012,"rel_min":0.2070596707718713,"rel_max":109.70525056719012,"scaled_dist":200.0,"scaled_rad":100.0},{"average":109.75529965401084,"rel_min":0.2070596707718713,"rel_max":109.75529965401084,"scaled_dist":200.0,"scaled_rad":100.0},{"average":109.80354883847838,"rel_min":0.2070596707718713,"rel_max":109.80354883847838,"scaled_dist":200.0,"scaled_rad":100.0},{"average":109.84701303092803,"rel_min":0.2070596707718713,"rel_max":109.84701303092803,"scaled_dist":200.0,"scaled_rad":100.0},{"average":109.89110872565533,"rel_min":0.2070596707718713,"rel_max":109.89110872565533,"scaled_dist":200.0,"scaled_rad":100.0},{"average":109.93601468374108,"rel_min":0.2070596707718713,"rel_max":109.93601468374108,"scaled_dist":200.0,"scaled_rad":100.0},{"average":109.98213592767907,"rel_min":0.2070596707718713,"rel_max":109.98213592767907,"scaled_dist":200.0,"scaled_rad":100.0},{"average":110.02679154435658,"rel_min":0.2070596707718713,"rel_max":110.02679154435658,"scaled_dist":200.0,"scaled_rad":100.0},{"average":110.07165424950824,"rel_min":0.2070596707718713,"rel_max":110.07165424950824,"scaled_dist":200.0,"scaled_rad":100.0},{"average":110.12161891150893,"rel_min":0.2070596707718713,"rel_max":110.12161891150893,"scaled_dist":200.0,"scaled_rad":100.0},{"average":110.17229004555087,"rel_min":0.2070596707718713,"rel_max":110.17229004555087,"scaled_dist":200.0,"scaled_rad":100.0},{"average":110.22350142715649,"rel_min":0.2070596707718713,"rel_max":110.22350142715649,"scaled_dist":200.0,"scaled_rad":100.0},{"average":110.27324418365173,"rel_min":0.2070596707718713,"rel_max":110.27324418365173,"scaled_dist":200.0,"scaled_rad":100.0},{"average":110.32635535811234,"rel_min":0.2070596707718713,"rel_max":110.32635535811234,"scaled_dist":200.0,"scaled_rad":100.0},{"average":110.38184854734169,"rel_min":0.2070596707718713,"rel_max":110.38184854734169,"scaled_dist":200.0,"scaled_rad":100.0},{"average":110.43959576931614,"rel_min":0.2070596707718713,"rel_max":110.43959576931614,"scaled_dist":200.0,"scaled_rad":100.0},{"average":110.49923376335695,"rel_min":0.2070596707718713,"rel_max":110.49923376335695,"scaled_dist":200.0,"scaled_rad":100.0},{"average":110.5477230995015,"rel_min":0.2070596707718713,"rel_max":110.5477230995015,"scaled_dist":200.0,"scaled_rad":100.0},{"average":110.58942846621753,"rel_min":0.2070596707718713,"rel_max":110.58942846621753,"scaled_dist":200.0,"scaled_rad":100.0},{"average":110.63094496270702,"rel_min":0.2070596707718713,"rel_max":110.63094496270702,"scaled_dist":200.0,"scaled_rad":100.0},{"average":110.6716785977368,"rel_min":0.2070596707718713,"rel_max":110.6716785977368,"scaled_dist":200.0,"scaled_rad":100.0},{"average":110.71668741514215,"rel_min":0.2070596707718713,"rel_max":110.71668741514215,"scaled_dist":200.0,"scaled_rad":100.0},{"average":110.76307690620908,"rel_min":0.2070596707718713,"rel_max":110.76307690620908,"scaled_dist":200.0,"scaled_rad":100.0},{"average":110.80883003937495,"rel_min":0.2070596707718713,"rel_max":110.80883003937495,"scaled_dist":200.0,"scaled_rad":100.0},{"average":110.85331506074024,"rel_min":0.2070596707718713,"rel_max":110.85331506074024,"scaled_dist":200.0,"scaled_rad":100.0},{"average":110.89826001455943,"rel_min":0.2070596707718713,"rel_max":110.89826001455943,"scaled_dist":200.0,"scaled_rad":100.0},{"average":110.94350130992191,"rel_min":0.2070596707718713,"rel_max":110.94350130992191,"scaled_dist":200.0,"scaled_rad":100.0},{"average":110.98779587630692,"rel_min":0.2070596707718713,"rel_max":110.98779587630692,"scaled_dist":200.0,"scaled_rad":100.0},{"average":111.03178866055431,"rel_min":0.2070596707718713,"rel_max":111.03178866055431,"scaled_dist":200.0,"scaled_rad":100.0},{"average":111.07597261419173,"rel_min":0.2070596707718713,"rel_max":111.07597261419173,"scaled_dist":200.0,"scaled_rad":100.0},{"average":111.1221448088953,"rel_min":0.2070596707718713,"rel_max":111.1221448088953,"scaled_dist":200.0,"scaled_rad":100.0},{"average":111.1720483993831,"rel_min":0.2070596707718713,"rel_max":111.1720483993831,"scaled_dist":200.0,"scaled_rad":100.0},{"average":111.22078626123898,"rel_min":0.2070596707718713,"rel_max":111.22078626123898,"scaled_dist":200.0,"scaled_rad":100.0},{"average":111.26439787233362,"rel_min":0.2070596707718713,"rel_max":111.26439787233362,"scaled_dist":200.0,"scaled_rad":100.0},{"average":111.31399611233617,"rel_min":0.2070596707718713,"rel_max":111.31399611233617,"scaled_dist":200.0,"scaled_rad":100.0},{"average":111.366684154647,"rel_min":0.2070596707718713,"rel_max":111.366684154647,"scaled_dist":200.0,"scaled_rad":100.0},{"average":111.41325388922988,"rel_min":0.2070596707718713,"rel_max":111.41325388922988,"scaled_dist":200.0,"scaled_rad":100.0},{"average":111.46062126718414,"rel_min":0.2070596707718713,"rel_max":111.46062126718414,"scaled_dist":200.0,"scaled_rad":100.0},{"average":111.50803304073659,"rel_min":0.2070596707718713,"rel_max":111.50803304073659,"scaled_dist":200.0,"scaled_rad":100.0},{"average":111.55593327683452,"rel_min":0.2070596707718713,"rel_max":111.55593327683452,"scaled_dist":200.0,"scaled_rad":100.0},{"average":111.60260916109483,"rel_min":0.2070596707718713,"rel_max":111.60260916109483,"scaled_dist":200.0,"scaled_rad":100.0},{"average":111.64905172422979,"rel_min":0.2070596707718713,"rel_max":111.64905172422979,"scaled_dist":200.0,"scaled_rad":100.0},{"average":111.63342616099368,"rel_min":0.2070596707718713,"rel_max":111.64905172422979,"scaled_dist":199.97265855738132,"scaled_rad":99.96354474317508},{"average":111.6808589443665,"rel_min":0.2070596707718713,"rel_max":111.6808589443665,"scaled_dist":200.0,"scaled_rad":100.0},{"average":111.73073634622708,"rel_min":0.2070596707718713,"rel_max":111.73073634622708,"scaled_dist":200.0,"scaled_rad":100.0},{"average":111.78274471084647,"rel_min":0.2070596707718713,"rel_max":111.78274471084647,"scaled_dist":200.0,"scaled_rad":100.0},{"average":111.84064675451904,"rel_min":0.2070596707718713,"rel_max":111.84064675451904,"scaled_dist":200.0,"scaled_rad":100.0},{"average":111.90269831699024,"rel_min":0.2070596707718713,"rel_max":111.90269831699024,"scaled_dist":200.0,"scaled_rad":100.0},{"average":111.95749082034911,"rel_min":0.2070596707718713,"rel_max":111.95749082034911,"scaled_dist":200.0,"scaled_rad":100.0},{"average":112.00888481167468,"rel_min":0.2070596707718713,"rel_max":112.00888481167468,"scaled_dist":200.0,"scaled_rad":100.0},{"average":112.06188037380493,"rel_min":0.2070596707718713,"rel_max":112.06188037380493,"scaled_dist":200.0,"scaled_rad":100.0},{"average":112.11442253536815,"rel_min":0.2070596707718713,"rel_max":112.11442253536815,"scaled_dist":200.0,"scaled_rad":100.0},{"average":112.16520164407392,"rel_min":0.2070596707718713,"rel_max":112.16520164407392,"scaled_dist":200.0,"scaled_rad":100.0},{"average":112.2142460644751,"rel_min":0.2070596707718713,"rel_max":112.2142460644751,"scaled_dist":200.0,"scaled_rad":100.0},{"average":112.2652103825105,"rel_min":0.2070596707718713,"rel_max":112.2652103825105,"scaled_dist":200.0,"scaled_rad":100.0},{"average":112.31832657246737,"rel_min":0.2070596707718713,"rel_max":112.31832657246737,"scaled_dist":200.0,"scaled_rad":100.0},{"average":112.37149369794052,"rel_min":0.2070596707718713,"rel_max":112.37149369794052,"scaled_dist":200.0,"scaled_rad":100.0},{"average":112.42401958913085,"rel_min":0.2070596707718713,"rel_max":112.42401958913085,"scaled_dist":200.0,"scaled_rad":100.0},{"average":112.48494860149238,"rel_min":0.2070596707718713,"rel_max":112.48494860149238,"scaled_dist":200.0,"scaled_rad":100.0},{"average":112.54861329051285,"rel_min":0.2070596707718713,"rel_max":112.54861329051285,"scaled_dist":200.0,"scaled_rad":100.0},{"average":112.61349883177468,"rel_min":0.2070596707718713,"rel_max":112.61349883177468,"scaled_dist":200.0,"scaled_rad":100.0},{"average":112.67890829022727,"rel_min":0.2070596707718713,"rel_max":112.67890829022727,"scaled_dist":200.0,"scaled_rad":100.0},{"average":112.7421475548515,"rel_min":0.2070596707718713,"rel_max":112.7421475548515,"scaled_dist":200.0,"scaled_rad":100.0},{"average":112.79189903381634,"rel_min":0.2070596707718713,"rel_max":112.79189903381634,"scaled_dist":200.0,"scaled_rad":100.0},{"average":112.83138525442016,"rel_min":0.2070596707718713,"rel_max":112.83138525442016,"scaled_dist":200.0,"scaled_rad":100.0},{"average":112.88059953090972,"rel_min":0.2070596707718713,"rel_max":112.88059953090972,"scaled_dist":200.0,"scaled_rad":100.0},{"average":112.93894857055344,"rel_min":0.2070596707718713,"rel_max":112.93894857055344,"scaled_dist":200.0,"scaled_rad":100.0},{"average":113.00126895978849,"rel_min":0.2070596707718713,"rel_max":113.00126895978849,"scaled_dist":200.0,"scaled_rad":100.0},{"average":113.05059568160277,"rel_min":0.2070596707718713,"rel_max":113.05059568160277,"scaled_dist":200.0,"scaled_rad":100.0},{"average":113.10291091580993,"rel_min":0.2070596707718713,"rel_max":113.10291091580993,"scaled_dist":200.0,"scaled_rad":100.0},{"average":113.15364742054633,"rel_min":0.2070596707718713,"rel_max":113.15364742054633,"scaled_dist":200.0,"scaled_rad":100.0},{"average":113.20344828478699,"rel_min":0.2070596707718713,"rel_max":113.20344828478699,"scaled_dist":200.0,"scaled_rad":100.0},{"average":113.25440759063905,"rel_min":0.2070596707718713,"rel_max":113.25440759063905,"scaled_dist":200.0,"scaled_rad":100.0},{"average":113.30794786130687,"rel_min":0.2070596707718713,"rel_max":113.30794786130687,"scaled_dist":200.0,"scaled_rad":100.0},{"average":113.35561845636262,"rel_min":0.2070596707718713,"rel_max":113.35561845636262,"scaled_dist":200.0,"scaled_rad":100.0},{"average":113.3517485856013,"rel_min":0.2070596707718713,"rel_max":113.35561845636262,"scaled_dist":199.99333067246673,"scaled_rad":99.99110756328895},{"average":113.39222091551856,"rel_min":0.2070596707718713,"rel_max":113.39222091551856,"scaled_dist":200.0,"scaled_rad":100.0},{"average":113.42931326197537,"rel_min":0.2070596707718713,"rel_max":113.42931326197537,"scaled_dist":200.0,"scaled_rad":100.0},{"average":113.4728163626509,"rel_min":0.2070596707718713,"rel_max":113.4728163626509,"scaled_dist":200.0,"scaled_rad":100.0},{"average":113.51653906055506,"rel_min":0.2070596707718713,"rel_max":113.51653906055506,"scaled_dist":200.0,"scaled_rad":100.0},{"average":113.56347652741677,"rel_min":0.2070596707718713,"rel_max":113.56347652741677,"scaled_dist":200.0,"scaled_rad":100.0},{"average":113.61008163624972,"rel_min":0.2070596707718713,"rel_max":113.61008163624972,"scaled_dist":200.0,"scaled_rad":100.0},{"average":113.65602614696651,"rel_min":0.2070596707718713,"rel_max":113.65602614696651,"scaled_dist":200.0,"scaled_rad":100.0},{"average":113.63479881052578,"rel_min":0.2070596707718713,"rel_max":113.65602614696651,"scaled_dist":199.96351372132764,"scaled_rad":99.95135162843684},{"average":113.68885343845785,"rel_min":0.2070596707718713,"rel_max":113.68885343845785,"scaled_dist":200.0,"scaled_rad":100.0},{"average":113.74047475840665,"rel_min":0.2070596707718713,"rel_max":113.74047475840665,"scaled_dist":200.0,"scaled_rad":100.0},{"average":113.79009267395632,"rel_min":0.2070596707718713,"rel_max":113.79009267395632,"scaled_dist":200.0,"scaled_rad":100.0},{"average":113.83859456905951,"rel_min":0.2070596707718713,"rel_max":113.83859456905951,"scaled_dist":200.0,"scaled_rad":100.0},{"average":113.88601044742384,"rel_min":0.2070596707718713,"rel_max":113.88601044742384,"scaled_dist":200.0,"scaled_rad":100.0},{"average":113.93584150371619,"rel_min":0.2070596707718713,"rel_max":113.93584150371619,"scaled_dist":200.0,"scaled_rad":100.0},{"average":113.98887453326655,"rel_min":0.2070596707718713,"rel_max":113.98887453326655,"scaled_dist":200.0,"scaled_rad":100.0},{"average":114.04450432056579,"rel_min":0.2070596707718713,"rel_max":114.04450432056579,"scaled_dist":200.0,"scaled_rad":100.0},{"average":114.0926511462651,"rel_min":0.2070596707718713,"rel_max":114.0926511462651,"scaled_dist":200.0,"scaled_rad":100.0},{"average":114.1379698755573,"rel_min":0.2070596707718713,"rel_max":114.1379698755573,"scaled_dist":200.0,"scaled_rad":100.0},{"average":114.1897529896802,"rel_min":0.2070596707718713,"rel_max":114.1897529896802,"scaled_dist":200.0,"scaled_rad":100.0},{"average":114.25365000432477,"rel_min":0.2070596707718713,"rel_max":114.25365000432477,"scaled_dist":200.0,"scaled_rad":100.0},{"average":114.31831293164113,"rel_min":0.2070596707718713,"rel_max":114.31831293164113,"scaled_dist":200.0,"scaled_rad":100.0},{"average":114.37375644745458,"rel_min":0.2070596707718713,"rel_max":114.37375644745458,"scaled_dist":200.0,"scaled_rad":100.0},{"average":114.42689072859658,"rel_min":0.2070596707718713,"rel_max":114.42689072859658,"scaled_dist":200.0,"scaled_rad":100.0},{"average":114.47742007986226,"rel_min":0.2070596707718713,"rel_max":114.47742007986226,"scaled_dist":200.0,"scaled_rad":100.0},{"average":114.5423390103378,"rel_min":0.2070596707718713,"rel_max":114.5423390103378,"scaled_dist":200.0,"scaled_rad":100.0},{"average":114.59970141178039,"rel_min":0.2070596707718713,"rel_max":114.59970141178039,"scaled_dist":200.0,"scaled_rad":100.0},{"average":114.6533031366727,"rel_min":0.2070596707718713,"rel_max":114.6533031366727,"scaled_dist":200.0,"scaled_rad":100.0},{"average":114.70161843509995,"rel_min":0.2070596707718713,"rel_max":114.70161843509995,"scaled_dist":200.0,"scaled_rad":100.0},{"average":114.7493520631382,"rel_min":0.2070596707718713,"rel_max":114.7493520631382,"scaled_dist":200.0,"scaled_rad":100.0},{"average":114.79796443184095,"rel_min":0.2070596707718713,"rel_max":114.79796443184095,"scaled_dist":200.0,"scaled_rad":100.0},{"average":114.8461966630588,"rel_min":0.2070596707718713,"rel_max":114.8461966630588,"scaled_dist":200.0,"scaled_rad":100.0},{"average":114.8878235802805,"rel_min":0.2070596707718713,"rel_max":114.8878235802805,"scaled_dist":200.0,"scaled_rad":100.0},{"average":114.92329492263812,"rel_min":0.2070596707718713,"rel_max":114.92329492263812,"scaled_dist":200.0,"scaled_rad":100.0},{"average":114.95840642884097,"rel_min":0.2070596707718713,"rel_max":114.95840642884097,"scaled_dist":200.0,"scaled_rad":100.0},{"average":114.99915246294877,"rel_min":0.2070596707718713,"rel_max":114.99915246294877,"scaled_dist":200.0,"scaled_rad":100.0},{"average":115.03903419650749,"rel_min":0.2070596707718713,"rel_max":115.03903419650749,"scaled_dist":200.0,"scaled_rad":100.0},{"average":115.08370999453513,"rel_min":0.2070596707718713,"rel_max":115.08370999453513,"scaled_dist":200.0,"scaled_rad":100.0},{"average":115.13050717276158,"rel_min":0.2070596707718713,"rel_max":115.13050717276158,"scaled_dist":200.0,"scaled_rad":100.0},{"average":115.17975993349357,"rel_min":0.2070596707718713,"rel_max":115.17975993349357,"scaled_dist":200.0,"scaled_rad":100.0},{"average":115.22350921175207,"rel_min":0.2070596707718713,"rel_max":115.22350921175207,"scaled_dist":200.0,"scaled_rad":100.0},{"average":115.26098588897355,"rel_min":0.2070596707718713,"rel_max":115.26098588897355,"scaled_dist":200.0,"scaled_rad":100.0},{"average":115.28728184283862,"rel_min":0.2070596707718713,"rel_max":115.28728184283862,"scaled_dist":200.0,"scaled_rad":100.0},{"average":115.31162152966915,"rel_min":0.2070596707718713,"rel_max":115.31162152966915,"scaled_dist":200.0,"scaled_rad":100.0},{"average":115.34902711234295,"rel_min":0.2070596707718713,"rel_max":115.34902711234295,"scaled_dist":200.0,"scaled_rad":100.0},{"average":115.38960613553155,"rel_min":0.2070596707718713,"rel_max":115.38960613553155,"scaled_dist":200.0,"scaled_rad":100.0},{"average":115.43072261417959,"rel_min":0.2070596707718713,"rel_max":115.43072261417959,"scaled_dist":200.0,"scaled_rad":100.0},{"average":115.47904882886823,"rel_min":0.2070596707718713,"rel_max":115.47904882886823,"scaled_dist":200.0,"scaled_rad":100.0},{"average":115.52560036609692,"rel_min":0.2070596707718713,"rel_max":115.52560036609692,"scaled_dist":200.0,"scaled_rad":100.0},{"average":115.57038071885309,"rel_min":0.2070596707718713,"rel_max":115.57038071885309,"scaled_dist":200.0,"scaled_rad":100.0},{"average":115.61338117806082,"rel_min":0.2070596707718713,"rel_max":115.61338117806082,"scaled_dist":200.0,"scaled_rad":100.0},{"average":115.66151031671404,"rel_min":0.2070596707718713,"rel_max":115.66151031671404,"scaled_dist":200.0,"scaled_rad":100.0},{"average":115.72087622264841,"rel_min":0.2070596707718713,"rel_max":115.72087622264841,"scaled_dist":200.0,"scaled_rad":100.0},{"average":115.77600894049127,"rel_min":0.2070596707718713,"rel_max":115.77600894049127,"scaled_dist":200.0,"scaled_rad":100.0},{"average":115.83190452365083,"rel_min":0.2070596707718713,"rel_max":115.83190452365083,"scaled_dist":200.0,"scaled_rad":100.0},{"average":115.89524836578902,"rel_min":0.2070596707718713,"rel_max":115.89524836578902,"scaled_dist":200.0,"scaled_rad":100.0},{"average":115.96421472009555,"rel_min":0.2070596707718713,"rel_max":115.96421472009555,"scaled_dist":200.0,"scaled_rad":100.0},{"average":116.03039744779754,"rel_min":0.2070596707718713,"rel_max":116.03039744779754,"scaled_dist":200.0,"scaled_rad":100.0},{"average":116.08063216355545,"rel_min":0.2070596707718713,"rel_max":116.08063216355545,"scaled_dist":200.0,"scaled_rad":100.0},{"average":116.11877013568717,"rel_min":0.2070596707718713,"rel_max":116.11877013568717,"scaled_dist":200.0,"scaled_rad":100.0},{"average":116.16755381145737,"rel_min":0.2070596707718713,"rel_max":116.16755381145737,"scaled_dist":200.0,"scaled_rad":100.0},{"average":116.21628143774221,"rel_min":0.2070596707718713,"rel_max":116.21628143774221,"scaled_dist":200.0,"scaled_rad":100.0},{"average":116.27091714661567,"rel_min":0.2070596707718713,"rel_max":116.27091714661567,"scaled_dist":200.0,"scaled_rad":100.0},{"average":116.32282460532514,"rel_min":0.2070596707718713,"rel_max":116.32282460532514,"scaled_dist":200.0,"scaled_rad":100.0},{"average":116.37829372874933,"rel_min":0.2070596707718713,"rel_max":116.37829372874933,"scaled_dist":200.0,"scaled_rad":100.0},{"average":116.4361431712123,"rel_min":0.2070596707718713,"rel_max":116.4361431712123,"scaled_dist":200.0,"scaled_rad":100.0},{"average":116.48895608940143,"rel_min":0.2070596707718713,"rel_max":116.48895608940143,"scaled_dist":200.0,"scaled_rad":100.0},{"average":116.53600046366158,"rel_min":0.2070596707718713,"rel_max":116.53600046366158,"scaled_dist":200.0,"scaled_rad":100.0},{"average":116.60640688157272,"rel_min":0.2070596707718713,"rel_max":116.60640688157272,"scaled_dist":200.0,"scaled_rad":100.0},{"average":116.65524356951651,"rel_min":0.2070596707718713,"rel_max":116.65524356951651,"scaled_dist":200.0,"scaled_rad":100.0},{"average":116.70270369526817,"rel_min":0.2070596707718713,"rel_max":116.70270369526817,"scaled_dist":200.0,"scaled_rad":100.0},{"average":116.74412087785336,"rel_min":0.2070596707718713,"rel_max":116.74412087785336,"scaled_dist":200.0,"scaled_rad":100.0},{"average":116.7773811193433,"rel_min":0.2070596707718713,"rel_max":116.7773811193433,"scaled_dist":200.0,"scaled_rad":100.0},{"average":116.81386100990844,"rel_min":0.2070596707718713,"rel_max":116.81386100990844,"scaled_dist":200.0,"scaled_rad":100.0},{"average":116.86615444368448,"rel_min":0.2070596707718713,"rel_max":116.86615444368448,"scaled_dist":200.0,"scaled_rad":100.0},{"average":116.90961947855908,"rel_min":0.2070596707718713,"rel_max":116.90961947855908,"scaled_dist":200.0,"scaled_rad":100.0},{"average":116.95995193882817,"rel_min":0.2070596707718713,"rel_max":116.95995193882817,"scaled_dist":200.0,"scaled_rad":100.0},{"average":117.01103184452481,"rel_min":0.2070596707718713,"rel_max":117.01103184452481,"scaled_dist":200.0,"scaled_rad":100.0},{"average":117.0583414120247,"rel_min":0.2070596707718713,"rel_max":117.0583414120247,"scaled_dist":200.0,"scaled_rad":100.0},{"average":117.10435082372392,"rel_min":0.2070596707718713,"rel_max":117.10435082372392,"scaled_dist":200.0,"scaled_rad":100.0},{"average":117.15039555409659,"rel_min":0.2070596707718713,"rel_max":117.15039555409659,"scaled_dist":200.0,"scaled_rad":100.0},{"average":117.19694818209221,"rel_min":0.2070596707718713,"rel_max":117.19694818209221,"scaled_dist":200.0,"scaled_rad":100.0},{"average":117.24253511809223,"rel_min":0.2070596707718713,"rel_max":117.24253511809223,"scaled_dist":200.0,"scaled_rad":100.0},{"average":117.2619946643307,"rel_min":0.2070596707718713,"rel_max":117.2619946643307,"scaled_dist":200.0,"scaled_rad":100.0},{"average":117.26627027329958,"rel_min":0.2070596707718713,"rel_max":117.26627027329958,"scaled_dist":200.0,"scaled_rad":100.0},{"average":117.28038724256378,"rel_min":0.2070596707718713,"rel_max":117.28038724256378,"scaled_dist":200.0,"scaled_rad":100.0},{"average":117.31755872631257,"rel_min":0.2070596707718713,"rel_max":117.31755872631257,"scaled_dist":200.0,"scaled_rad":100.0},{"average":117.36180477406626,"rel_min":0.2070596707718713,"rel_max":117.36180477406626,"scaled_dist":200.0,"scaled_rad":100.0},{"average":117.40751173286932,"rel_min":0.2070596707718713,"rel_max":117.40751173286932,"scaled_dist":200.0,"scaled_rad":100.0},{"average":117.4551064884759,"rel_min":0.2070596707718713,"rel_max":117.4551064884759,"scaled_dist":200.0,"scaled_rad":100.0},{"average":117.50195040294801,"rel_min":0.2070596707718713,"rel_max":117.50195040294801,"scaled_dist":200.0,"scaled_rad":100.0},{"average":117.54840239006738,"rel_min":0.2070596707718713,"rel_max":117.54840239006738,"scaled_dist":200.0,"scaled_rad":100.0},{"average":117.59472929860627,"rel_min":0.2070596707718713,"rel_max":117.59472929860627,"scaled_dist":200.0,"scaled_rad":100.0},{"average":117.63868249468163,"rel_min":0.2070596707718713,"rel_max":117.63868249468163,"scaled_dist":200.0,"scaled_rad":100.0},{"average":117.68472442368841,"rel_min":0.2070596707718713,"rel_max":117.68472442368841,"scaled_dist":200.0,"scaled_rad":100.0},{"average":117.73438564359392,"rel_min":0.2070596707718713,"rel_max":117.73438564359392,"scaled_dist":200.0,"scaled_rad":100.0},{"average":117.78245331812292,"rel_min":0.2070596707718713,"rel_max":117.78245331812292,"scaled_dist":200.0,"scaled_rad":100.0},{"average":117.82926798356128,"rel_min":0.2070596707718713,"rel_max":117.82926798356128,"scaled_dist":200.0,"scaled_rad":100.0},{"average":117.87648453804253,"rel_min":0.2070596707718713,"rel_max":117.87648453804253,"scaled_dist":200.0,"scaled_rad":100.0},{"average":117.92367076205645,"rel_min":0.2070596707718713,"rel_max":117.92367076205645,"scaled_dist":200.0,"scaled_rad":100.0},{"average":118.04176570424558,"rel_min":0.2070596707718713,"rel_max":118.04176570424558,"scaled_dist":200.0,"scaled_rad":100.0},{"average":118.06997668980704,"rel_min":0.2070596707718713,"rel_max":118.06997668980704,"scaled_dist":200.0,"scaled_rad":100.0},{"average":118.09897168238551,"rel_min":0.2070596707718713,"rel_max":118.09897168238551,"scaled_dist":200.0,"scaled_rad":100.0},{"average":118.14786523414143,"rel_min":0.2070596707718713,"rel_max":118.14786523414143,"scaled_dist":200.0,"scaled_rad":100.0},{"average":118.19761419707349,"rel_min":0.2070596707718713,"rel_max":118.19761419707349,"scaled_dist":200.0,"scaled_rad":100.0},{"average":118.24845896695906,"rel_min":0.2070596707718713,"rel_max":118.24845896695906,"scaled_dist":200.0,"scaled_rad":100.0},{"average":118.2989224982685,"rel_min":0.2070596707718713,"rel_max":118.2989224982685,"scaled_dist":200.0,"scaled_rad":100.0},{"average":118.34727572145535,"rel_min":0.2070596707718713,"rel_max":118.34727572145535,"scaled_dist":200.0,"scaled_rad":100.0},{"average":118.39465626183167,"rel_min":0.2070596707718713,"rel_max":118.39465626183167,"scaled_dist":200.0,"scaled_rad":100.0},{"average":118.44289262803042,"rel_min":0.2070596707718713,"rel_max":118.44289262803042,"scaled_dist":200.0,"scaled_rad":100.0},{"average":118.49056420021033,"rel_min":0.2070596707718713,"rel_max":118.49056420021033,"scaled_dist":200.0,"scaled_rad":100.0},{"average":118.53837895883404,"rel_min":0.2070596707718713,"rel_max":118.53837895883404,"scaled_dist":200.0,"scaled_rad":100.0},{"average":118.58265355832758,"rel_min":0.2070596707718713,"rel_max":118.58265355832758,"scaled_dist":200.0,"scaled_rad":100.0},{"average":118.62436865946682,"rel_min":0.2070596707718713,"rel_max":118.62436865946682,"scaled_dist":200.0,"scaled_rad":100.0},{"average":118.67354793990029,"rel_min":0.2070596707718713,"rel_max":118.67354793990029,"scaled_dist":200.0,"scaled_rad":100.0},{"average":118.7216249664659,"rel_min":0.2070596707718713,"rel_max":118.7216249664659,"scaled_dist":200.0,"scaled_rad":100.0},{"average":118.76630394515202,"rel_min":0.2070596707718713,"rel_max":118.76630394515202,"scaled_dist":200.0,"scaled_rad":100.0},{"average":118.80865217390172,"rel_min":0.2070596707718713,"rel_max":118.80865217390172,"scaled_dist":200.0,"scaled_rad":100.0},{"average":118.84942060618897,"rel_min":0.2070596707718713,"rel_max":118.84942060618897,"scaled_dist":200.0,"scaled_rad":100.0},{"average":118.89010364177459,"rel_min":0.2070596707718713,"rel_max":118.89010364177459,"scaled_dist":200.0,"scaled_rad":100.0},{"average":118.93409466273671,"rel_min":0.2070596707718713,"rel_max":118.93409466273671,"scaled_dist":200.0,"scaled_rad":100.0},{"average":118.97890465459389,"rel_min":0.2070596707718713,"rel_max":118.97890465459389,"scaled_dist":200.0,"scaled_rad":100.0},{"average":119.02518851179543,"rel_min":0.2070596707718713,"rel_max":119.02518851179543,"scaled_dist":200.0,"scaled_rad":100.0},{"average":119.07103708725283,"rel_min":0.2070596707718713,"rel_max":119.07103708725283,"scaled_dist":200.0,"scaled_rad":100.0},{"average":119.11789595240077,"rel_min":0.2070596707718713,"rel_max":119.11789595240077,"scaled_dist":200.0,"scaled_rad":100.0},{"average":119.16478243501102,"rel_min":0.2070596707718713,"rel_max":119.16478243501102,"scaled_dist":200.0,"scaled_rad":100.0},{"average":119.2122363103857,"rel_min":0.2070596707718713,"rel_max":119.2122363103857,"scaled_dist":200.0,"scaled_rad":100.0},{"average":119.26189118948041,"rel_min":0.2070596707718713,"rel_max":119.26189118948041,"scaled_dist":200.0,"scaled_rad":100.0},{"average":119.31158951453571,"rel_min":0.2070596707718713,"rel_max":119.31158951453571,"scaled_dist":200.0,"scaled_rad":100.0},{"average":119.35998666914175,"rel_min":0.2070596707718713,"rel_max":119.35998666914175,"scaled_dist":200.0,"scaled_rad":100.0},{"average":119.40766127919292,"rel_min":0.2070596707718713,"rel_max":119.40766127919292,"scaled_dist":200.0,"scaled_rad":100.0},{"average":119.48458232661625,"rel_min":0.2070596707718713,"rel_max":119.48458232661625,"scaled_dist":200.0,"scaled_rad":100.0},{"average":119.54220975606692,"rel_min":0.2070596707718713,"rel_max":119.54220975606692,"scaled_dist":200.0,"scaled_rad":100.0},{"average":119.59788575453958,"rel_min":0.2070596707718713,"rel_max":119.59788575453958,"scaled_dist":200.0,"scaled_rad":100.0},{"average":119.65254298102208,"rel_min":0.2070596707718713,"rel_max":119.65254298102208,"scaled_dist":200.0,"scaled_rad":100.0},{"average":119.774654213798,"rel_min":0.2070596707718713,"rel_max":119.774654213798,"scaled_dist":200.0,"scaled_rad":100.0},{"average":119.80619255141426,"rel_min":0.2070596707718713,"rel_max":119.80619255141426,"scaled_dist":200.0,"scaled_rad":100.0},{"average":119.85602807366003,"rel_min":0.2070596707718713,"rel_max":119.85602807366003,"scaled_dist":200.0,"scaled_rad":100.0},{"average":119.90565110262048,"rel_min":0.2070596707718713,"rel_max":119.90565110262048,"scaled_dist":200.0,"scaled_rad":100.0},{"average":119.9560853183376,"rel_min":0.2070596707718713,"rel_max":119.9560853183376,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.0074407666709,"rel_min":0.2070596707718713,"rel_max":120.0074407666709,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.05783231821479,"rel_min":0.2070596707718713,"rel_max":120.05783231821479,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.10679407627262,"rel_min":0.2070596707718713,"rel_max":120.10679407627262,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.11330277515367,"rel_min":0.2070596707718713,"rel_max":120.11330277515367,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.14283924720455,"rel_min":0.2070596707718713,"rel_max":120.14283924720455,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.18144588282026,"rel_min":0.2070596707718713,"rel_max":120.18144588282026,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.2248120609595,"rel_min":0.2070596707718713,"rel_max":120.2248120609595,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.26378733696363,"rel_min":0.2070596707718713,"rel_max":120.26378733696363,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.30167092381049,"rel_min":0.2070596707718713,"rel_max":120.30167092381049,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.33940236719235,"rel_min":0.2070596707718713,"rel_max":120.33940236719235,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.37901577352291,"rel_min":0.2070596707718713,"rel_max":120.37901577352291,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.41629335677189,"rel_min":0.2070596707718713,"rel_max":120.41629335677189,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.46353216084084,"rel_min":0.2070596707718713,"rel_max":120.46353216084084,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.51310630869827,"rel_min":0.2070596707718713,"rel_max":120.51310630869827,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.56031457885963,"rel_min":0.2070596707718713,"rel_max":120.56031457885963,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.60725617197635,"rel_min":0.2070596707718713,"rel_max":120.60725617197635,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.65408669092794,"rel_min":0.2070596707718713,"rel_max":120.65408669092794,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.70110221587339,"rel_min":0.2070596707718713,"rel_max":120.70110221587339,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.7492088518551,"rel_min":0.2070596707718713,"rel_max":120.7492088518551,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.7978263390466,"rel_min":0.2070596707718713,"rel_max":120.7978263390466,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.84557188822613,"rel_min":0.2070596707718713,"rel_max":120.84557188822613,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.89320106245584,"rel_min":0.2070596707718713,"rel_max":120.89320106245584,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.93920496118808,"rel_min":0.2070596707718713,"rel_max":120.93920496118808,"scaled_dist":200.0,"scaled_rad":100.0},{"average":120.98626164214421,"rel_min":0.2070596707718713,"rel_max":120.98626164214421,"scaled_dist":200.0,"scaled_rad":100.0},{"average":121.04047505295699,"rel_min":0.2070596707718713,"rel_max":121.04047505295699,"scaled_dist":200.0,"scaled_rad":100.0},{"average":121.0957637446521,"rel_min":0.2070596707718713,"rel_max":121.0957637446521,"scaled_dist":200.0,"scaled_rad":100.0},{"average":121.1502138954002,"rel_min":0.2070596707718713,"rel_max":121.1502138954002,"scaled_dist":200.0,"scaled_rad":100.0},{"average":121.20888198683456,"rel_min":0.2070596707718713,"rel_max":121.20888198683456,"scaled_dist":200.0,"scaled_rad":100.0},{"average":121.24527062136374,"rel_min":0.2070596707718713,"rel_max":121.24527062136374,"scaled_dist":200.0,"scaled_rad":100.0},{"average":121.29620996133302,"rel_min":0.2070596707718713,"rel_max":121.29620996133302,"scaled_dist":200.0,"scaled_rad":100.0},{"average":121.34545665829346,"rel_min":0.2070596707718713,"rel_max":121.34545665829346,"scaled_dist":200.0,"scaled_rad":100.0},{"average":121.39639979331591,"rel_min":0.2070596707718713,"rel_max":121.39639979331591,"scaled_dist":200.0,"scaled_rad":100.0},{"average":121.44802247123683,"rel_min":0.2070596707718713,"rel_max":121.44802247123683,"scaled_dist":200.0,"scaled_rad":100.0},{"average":121.50082762707339,"rel_min":0.2070596707718713,"rel_max":121.50082762707339,"scaled_dist":200.0,"scaled_rad":100.0},{"average":121.55528813875243,"rel_min":0.2070596707718713,"rel_max":121.55528813875243,"scaled_dist":200.0,"scaled_rad":100.0},{"average":121.61106410893555,"rel_min":0.2070596707718713,"rel_max":121.61106410893555,"scaled_dist":200.0,"scaled_rad":100.0},{"average":121.68172009457162,"rel_min":0.2070596707718713,"rel_max":121.68172009457162,"scaled_dist":200.0,"scaled_rad":100.0},{"average":121.75389401032835,"rel_min":0.2070596707718713,"rel_max":121.75389401032835,"scaled_dist":200.0,"scaled_rad":100.0},{"average":121.81961780294354,"rel_min":0.2070596707718713,"rel_max":121.81961780294354,"scaled_dist":200.0,"scaled_rad":100.0},{"average":121.87384585748026,"rel_min":0.2070596707718713,"rel_max":121.87384585748026,"scaled_dist":200.0,"scaled_rad":100.0},{"average":121.92400904380197,"rel_min":0.2070596707718713,"rel_max":121.92400904380197,"scaled_dist":200.0,"scaled_rad":100.0},{"average":121.98024320488904,"rel_min":0.2070596707718713,"rel_max":121.98024320488904,"scaled_dist":200.0,"scaled_rad":100.0},{"average":122.03244823875872,"rel_min":0.2070596707718713,"rel_max":122.03244823875872,"scaled_dist":200.0,"scaled_rad":100.0},{"average":122.08728862799838,"rel_min":0.2070596707718713,"rel_max":122.08728862799838,"scaled_dist":200.0,"scaled_rad":100.0},{"average":122.13560021791393,"rel_min":0.2070596707718713,"rel_max":122.13560021791393,"scaled_dist":200.0,"scaled_rad":100.0},{"average":122.17207067242174,"rel_min":0.2070596707718713,"rel_max":122.17207067242174,"scaled_dist":200.0,"scaled_rad":100.0},{"average":122.21247716942742,"rel_min":0.2070596707718713,"rel_max":122.21247716942742,"scaled_dist":200.0,"scaled_rad":100.0},{"average":122.25408894680568,"rel_min":0.2070596707718713,"rel_max":122.25408894680568,"scaled_dist":200.0,"scaled_rad":100.0},{"average":122.29960729904636,"rel_min":0.2070596707718713,"rel_max":122.29960729904636,"scaled_dist":200.0,"scaled_rad":100.0},{"average":122.34248506083837,"rel_min":0.2070596707718713,"rel_max":122.34248506083837,"scaled_dist":200.0,"scaled_rad":100.0},{"average":122.3826928705723,"rel_min":0.2070596707718713,"rel_max":122.3826928705723,"scaled_dist":200.0,"scaled_rad":100.0},{"average":122.4203823532897,"rel_min":0.2070596707718713,"rel_max":122.4203823532897,"scaled_dist":200.0,"scaled_rad":100.0},{"average":122.45975282867504,"rel_min":0.2070596707718713,"rel_max":122.45975282867504,"scaled_dist":200.0,"scaled_rad":100.0},{"average":122.50915171762934,"rel_min":0.2070596707718713,"rel_max":122.50915171762934,"scaled_dist":200.0,"scaled_rad":100.0},{"average":122.56499353132607,"rel_min":0.2070596707718713,"rel_max":122.56499353132607,"scaled_dist":200.0,"scaled_rad":100.0},{"average":122.61503769663162,"rel_min":0.2070596707718713,"rel_max":122.61503769663162,"scaled_dist":200.0,"scaled_rad":100.0},{"average":122.6543875021238,"rel_min":0.2070596707718713,"rel_max":122.6543875021238,"scaled_dist":200.0,"scaled_rad":100.0},{"average":122.68885407269886,"rel_min":0.2070596707718713,"rel_max":122.68885407269886,"scaled_dist":200.0,"scaled_rad":100.0},{"average":122.72617447871063,"rel_min":0.2070596707718713,"rel_max":122.72617447871063,"scaled_dist":200.0,"scaled_rad":100.0},{"average":122.76921828157478,"rel_min":0.2070596707718713,"rel_max":122.76921828157478,"scaled_dist":200.0,"scaled_rad":100.0},{"average":122.81221850735682,"rel_min":0.2070596707718713,"rel_max":122.81221850735682,"scaled_dist":200.0,"scaled_rad":100.0},{"average":122.85358463289198,"rel_min":0.2070596707718713,"rel_max":122.85358463289198,"scaled_dist":200.0,"scaled_rad":100.0},{"average":122.89563096781468,"rel_min":0.2070596707718713,"rel_max":122.89563096781468,"scaled_dist":200.0,"scaled_rad":100.0},{"average":122.93674338730584,"rel_min":0.2070596707718713,"rel_max":122.93674338730584,"scaled_dist":200.0,"scaled_rad":100.0},{"average":122.97850215146275,"rel_min":0.2070596707718713,"rel_max":122.97850215146275,"scaled_dist":200.0,"scaled_rad":100.0},{"average":123.02252786251218,"rel_min":0.2070596707718713,"rel_max":123.02252786251218,"scaled_dist":200.0,"scaled_rad":100.0},{"average":123.06751955230067,"rel_min":0.2070596707718713,"rel_max":123.06751955230067,"scaled_dist":200.0,"scaled_rad":100.0},{"average":123.11143585899887,"rel_min":0.2070596707718713,"rel_max":123.11143585899887,"scaled_dist":200.0,"scaled_rad":100.0},{"average":123.15671049455408,"rel_min":0.2070596707718713,"rel_max":123.15671049455408,"scaled_dist":200.0,"scaled_rad":100.0},{"average":123.20476171682358,"rel_min":0.2070596707718713,"rel_max":123.20476171682358,"scaled_dist":200.0,"scaled_rad":100.0},{"average":123.251794240334,"rel_min":0.2070596707718713,"rel_max":123.251794240334,"scaled_dist":200.0,"scaled_rad":100.0},{"average":123.29183491603548,"rel_min":0.2070596707718713,"rel_max":123.29183491603548,"scaled_dist":200.0,"scaled_rad":100.0},{"average":123.29669074047693,"rel_min":0.2070596707718713,"rel_max":123.29669074047693,"scaled_dist":200.0,"scaled_rad":100.0},{"average":123.34839525201664,"rel_min":0.2070596707718713,"rel_max":123.34839525201664,"scaled_dist":200.0,"scaled_rad":100.0},{"average":123.40023610886303,"rel_min":0.2070596707718713,"rel_max":123.40023610886303,"scaled_dist":200.0,"scaled_rad":100.0},{"average":123.4505414646474,"rel_min":0.2070596707718713,"rel_max":123.4505414646474,"scaled_dist":200.0,"scaled_rad":100.0},{"average":123.51228544085895,"rel_min":0.2070596707718713,"rel_max":123.51228544085895,"scaled_dist":200.0,"scaled_rad":100.0},{"average":123.57336834017714,"rel_min":0.2070596707718713,"rel_max":123.57336834017714,"scaled_dist":200.0,"scaled_rad":100.0},{"average":123.63122119360422,"rel_min":0.2070596707718713,"rel_max":123.63122119360422,"scaled_dist":200.0,"scaled_rad":100.0},{"average":123.68359361505975,"rel_min":0.2070596707718713,"rel_max":123.68359361505975,"scaled_dist":200.0,"scaled_rad":100.0},{"average":123.7290782584092,"rel_min":0.2070596707718713,"rel_max":123.7290782584092,"scaled_dist":200.0,"scaled_rad":100.0},{"average":123.77150554699152,"rel_min":0.2070596707718713,"rel_max":123.77150554699152,"scaled_dist":200.0,"scaled_rad":100.0},{"average":123.81496693287826,"rel_min":0.2070596707718713,"rel_max":123.81496693287826,"scaled_dist":200.0,"scaled_rad":100.0},{"average":123.85762997473819,"rel_min":0.2070596707718713,"rel_max":123.85762997473819,"scaled_dist":200.0,"scaled_rad":100.0},{"average":123.89676832654543,"rel_min":0.2070596707718713,"rel_max":123.89676832654543,"scaled_dist":200.0,"scaled_rad":100.0},{"average":123.93529222054994,"rel_min":0.2070596707718713,"rel_max":123.93529222054994,"scaled_dist":200.0,"scaled_rad":100.0},{"average":123.97861988998048,"rel_min":0.2070596707718713,"rel_max":123.97861988998048,"scaled_dist":200.0,"scaled_rad":100.0},{"average":124.0219216077617,"rel_min":0.2070596707718713,"rel_max":124.0219216077617,"scaled_dist":200.0,"scaled_rad":100.0},{"average":124.06516186188817,"rel_min":0.2070596707718713,"rel_max":124.06516186188817,"scaled_dist":200.0,"scaled_rad":100.0},{"average":124.12134724579528,"rel_min":0.2070596707718713,"rel_max":124.12134724579528,"scaled_dist":200.0,"scaled_rad":100.0},{"average":124.1612333498045,"rel_min":0.2070596707718713,"rel_max":124.1612333498045,"scaled_dist":200.0,"scaled_rad":100.0},{"average":124.20646616321146,"rel_min":0.2070596707718713,"rel_max":124.20646616321146,"scaled_dist":200.0,"scaled_rad":100.0},{"average":124.25787821113703,"rel_min":0.2070596707718713,"rel_max":124.25787821113703,"scaled_dist":200.0,"scaled_rad":100.0},{"average":124.30118068513764,"rel_min":0.2070596707718713,"rel_max":124.30118068513764,"scaled_dist":200.0,"scaled_rad":100.0},{"average":124.34309106246393,"rel_min":0.2070596707718713,"rel_max":124.34309106246393,"scaled_dist":200.0,"scaled_rad":100.0},{"average":124.39126862490096,"rel_min":0.2070596707718713,"rel_max":124.39126862490096,"scaled_dist":200.0,"scaled_rad":100.0},{"average":124.43799742028116,"rel_min":0.2070596707718713,"rel_max":124.43799742028116,"scaled_dist":200.0,"scaled_rad":100.0},{"average":124.4853739620246,"rel_min":0.2070596707718713,"rel_max":124.4853739620246,"scaled_dist":200.0,"scaled_rad":100.0},{"average":124.53328413369208,"rel_min":0.2070596707718713,"rel_max":124.53328413369208,"scaled_dist":200.0,"scaled_rad":100.0},{"average":124.5887201402067,"rel_min":0.2070596707718713,"rel_max":124.5887201402067,"scaled_dist":200.0,"scaled_rad":100.0},{"average":124.64196287388256,"rel_min":0.2070596707718713,"rel_max":124.64196287388256,"scaled_dist":200.0,"scaled_rad":100.0},{"average":124.68854199816636,"rel_min":0.2070596707718713,"rel_max":124.68854199816636,"scaled_dist":200.0,"scaled_rad":100.0},{"average":124.733973370676,"rel_min":0.2070596707718713,"rel_max":124.733973370676,"scaled_dist":200.0,"scaled_rad":100.0},{"average":124.7788871760358,"rel_min":0.2070596707718713,"rel_max":124.7788871760358,"scaled_dist":200.0,"scaled_rad":100.0},{"average":124.81636574809654,"rel_min":0.2070596707718713,"rel_max":124.81636574809654,"scaled_dist":200.0,"scaled_rad":100.0},{"average":124.85574950809479,"rel_min":0.2070596707718713,"rel_max":124.85574950809479,"scaled_dist":200.0,"scaled_rad":100.0},{"average":124.90546213895432,"rel_min":0.2070596707718713,"rel_max":124.90546213895432,"scaled_dist":200.0,"scaled_rad":100.0},{"average":124.95308117964949,"rel_min":0.2070596707718713,"rel_max":124.95308117964949,"scaled_dist":200.0,"scaled_rad":100.0},{"average":125.00070022034991,"rel_min":0.2070596707718713,"rel_max":125.00070022034991,"scaled_dist":200.0,"scaled_rad":100.0},{"average":125.04831926105564,"rel_min":0.2070596707718713,"rel_max":125.04831926105564,"scaled_dist":200.0,"scaled_rad":100.0},{"average":125.09593830176662,"rel_min":0.2070596707718713,"rel_max":125.09593830176662,"scaled_dist":200.0,"scaled_rad":100.0},{"average":125.14355734248285,"rel_min":0.2070596707718713,"rel_max":125.14355734248285,"scaled_dist":200.0,"scaled_rad":100.0},{"average":125.19117638320432,"rel_min":0.2070596707718713,"rel_max":125.19117638320432,"scaled_dist":200.0,"scaled_rad":100.0},{"average":125.23880869959031,"rel_min":0.2070596707718713,"rel_max":125.23880869959031,"scaled_dist":200.0,"scaled_rad":100.0},{"average":125.32131845614313,"rel_min":0.2070596707718713,"rel_max":125.32131845614313,"scaled_dist":200.0,"scaled_rad":100.0},{"average":125.37494213245786,"rel_min":0.2070596707718713,"rel_max":125.37494213245786,"scaled_dist":200.0,"scaled_rad":100.0},{"average":125.42714192100134,"rel_min":0.2070596707718713,"rel_max":125.42714192100134,"scaled_dist":200.0,"scaled_rad":100.0},{"average":125.47476096174901,"rel_min":0.2070596707718713,"rel_max":125.47476096174901,"scaled_dist":200.0,"scaled_rad":100.0},{"average":125.5223800025019,"rel_min":0.2070596707718713,"rel_max":125.5223800025019,"scaled_dist":200.0,"scaled_rad":100.0},{"average":125.56999904326001,"rel_min":0.2070596707718713,"rel_max":125.56999904326001,"scaled_dist":200.0,"scaled_rad":100.0},{"average":125.61761808402332,"rel_min":0.2070596707718713,"rel_max":125.61761808402332,"scaled_dist":200.0,"scaled_rad":100.0},{"average":125.66523712479182,"rel_min":0.2070596707718713,"rel_max":125.66523712479182,"scaled_dist":200.0,"scaled_rad":100.0},{"average":125.71285854220649,"rel_min":0.2070596707718713,"rel_max":125.71285854220649,"scaled_dist":200.0,"scaled_rad":100.0},{"average":125.76674478529938,"rel_min":0.2070596707718713,"rel_max":125.76674478529938,"scaled_dist":200.0,"scaled_rad":100.0},{"average":125.81436382608345,"rel_min":0.2070596707718713,"rel_max":125.81436382608345,"scaled_dist":200.0,"scaled_rad":100.0},{"average":125.86198286687271,"rel_min":0.2070596707718713,"rel_max":125.86198286687271,"scaled_dist":200.0,"scaled_rad":100.0},{"average":125.90960240664518,"rel_min":0.2070596707718713,"rel_max":125.90960240664518,"scaled_dist":200.0,"scaled_rad":100.0},{"average":125.95853375290837,"rel_min":0.2070596707718713,"rel_max":125.95853375290837,"scaled_dist":200.0,"scaled_rad":100.0},{"average":125.99163447087928,"rel_min":0.2070596707718713,"rel_max":125.99163447087928,"scaled_dist":200.0,"scaled_rad":100.0},{"average":126.04212335427457,"rel_min":0.2070596707718713,"rel_max":126.04212335427457,"scaled_dist":200.0,"scaled_rad":100.0},{"average":126.0926507473637,"rel_min":0.2070596707718713,"rel_max":126.0926507473637,"scaled_dist":200.0,"scaled_rad":100.0},{"average":126.14345947265964,"rel_min":0.2070596707718713,"rel_max":126.14345947265964,"scaled_dist":200.0,"scaled_rad":100.0},{"average":126.1930153067455,"rel_min":0.2070596707718713,"rel_max":126.1930153067455,"scaled_dist":200.0,"scaled_rad":100.0},{"average":126.217335096493,"rel_min":0.2070596707718713,"rel_max":126.217335096493,"scaled_dist":200.0,"scaled_rad":100.0},{"average":126.26805504655661,"rel_min":0.2070596707718713,"rel_max":126.26805504655661,"scaled_dist":200.0,"scaled_rad":100.0},{"average":126.31514921036063,"rel_min":0.2070596707718713,"rel_max":126.31514921036063,"scaled_dist":200.0,"scaled_rad":100.0},{"average":126.35738745430682,"rel_min":0.2070596707718713,"rel_max":126.35738745430682,"scaled_dist":200.0,"scaled_rad":100.0}]}} diff --git a/data/muse/080d4929-6e50-43a2-a0da-279772288a06.json b/data/muse/080d4929-6e50-43a2-a0da-279772288a06.json new file mode 100644 index 0000000..bede20b --- /dev/null +++ b/data/muse/080d4929-6e50-43a2-a0da-279772288a06.json @@ -0,0 +1 @@ +{"timeseries": {"eeg": {"name": "eeg", "fs": 256.0, "emp_fs": 256.4293317161251, "timestamps": [1571759075.4662218, 1571759075.4701216, 1571759075.4740212, 1571759075.477921, 1571759075.4818206, 1571759075.4857204, 1571759075.48962, 1571759075.4935198, 1571759075.4974196, 1571759075.5013192, 1571759075.505219, 1571759075.5091186, 1571759075.5130184, 1571759075.516918, 1571759075.5208178, 1571759075.5247176, 1571759075.5286171, 1571759075.532517, 1571759075.5364165, 1571759075.5403163, 1571759075.544216, 1571759075.5481157, 1571759075.5520155, 1571759075.555915, 1571759075.559815, 1571759075.5637145, 1571759075.5676143, 1571759075.571514, 1571759075.5754137, 1571759075.5793133, 1571759075.583213, 1571759075.587113, 1571759075.5910125, 1571759075.5949123, 1571759075.5988119, 1571759075.6027117, 1571759075.6066113, 1571759075.610511, 1571759075.6144109, 1571759075.6183105, 1571759075.6222103, 1571759075.6261098, 1571759075.6300097, 1571759075.6339092, 1571759075.637809, 1571759075.6417089, 1571759075.6456084, 1571759075.6495082, 1571759075.6534078, 1571759075.6573076, 1571759075.6612072, 1571759075.665107, 1571759075.6690068, 1571759075.6729064, 1571759075.6768062, 1571759075.6807058, 1571759075.6846056, 1571759075.6885052, 1571759075.692405, 1571759075.6963048, 1571759075.7002044, 1571759075.7041042, 1571759075.7080038, 1571759075.7119036, 1571759075.7158031, 1571759075.719703, 1571759075.7236028, 1571759075.7275023, 1571759075.7314022, 1571759075.7353017, 1571759075.7392015, 1571759075.7431011, 1571759075.747001, 1571759075.7509007, 1571759075.7548003, 1571759075.7587001, 1571759075.7625997, 1571759075.7664995, 1571759075.770399, 1571759075.774299, 1571759075.7781987, 1571759075.7820983, 1571759075.785998, 1571759075.7898977, 1571759075.7937975, 1571759075.797697, 1571759075.8015969, 1571759075.8054965, 1571759075.8093963, 1571759075.813296, 1571759075.8171957, 1571759075.8210955, 1571759075.824995, 1571759075.8288949, 1571759075.8327944, 1571759075.8366942, 1571759075.840594, 1571759075.8444936, 1571759075.8483934, 1571759075.852293, 1571759075.8561928, 1571759075.8600924, 1571759075.8639922, 1571759075.867892, 1571759075.8717916, 1571759075.8756914, 1571759075.879591, 1571759075.8834908, 1571759075.8873904, 1571759075.8912902, 1571759075.89519, 1571759075.8990896, 1571759075.9029894, 1571759075.906889, 1571759075.9107888, 1571759075.9146883, 1571759075.9185882, 1571759075.922488, 1571759075.9263875, 1571759075.9302874, 1571759075.934187, 1571759075.9380867, 1571759075.9419863, 1571759075.9458861, 1571759075.949786, 1571759075.9536855, 1571759075.9575853, 1571759075.961485, 1571759075.9653847, 1571759075.9692843, 1571759075.973184, 1571759075.977084, 1571759075.9809835, 1571759075.9848833, 1571759075.988783, 1571759075.9926827, 1571759075.9965823, 1571759076.000482, 1571759076.0043817, 1571759076.0082815, 1571759076.0121813, 1571759076.0160809, 1571759076.0199807, 1571759076.0238802, 1571759076.02778, 1571759076.0316796, 1571759076.0355794, 1571759076.0394793, 1571759076.0433788, 1571759076.0472786, 1571759076.0511782, 1571759076.055078, 1571759076.0589776, 1571759076.0628774, 1571759076.0667772, 1571759076.0706768, 1571759076.0745766, 1571759076.0784762, 1571759076.082376, 1571759076.0862756, 1571759076.0901754, 1571759076.0940752, 1571759076.0979748, 1571759076.1018746, 1571759076.1057742, 1571759076.109674, 1571759076.1135736, 1571759076.1174734, 1571759076.1213732, 1571759076.1252728, 1571759076.1291726, 1571759076.1330721, 1571759076.136972, 1571759076.1408715, 1571759076.1447713, 1571759076.1486712, 1571759076.1525707, 1571759076.1564705, 1571759076.16037, 1571759076.16427, 1571759076.1681695, 1571759076.1720693, 1571759076.1759691, 1571759076.1798687, 1571759076.1837685, 1571759076.187668, 1571759076.191568, 1571759076.1954675, 1571759076.1993673, 1571759076.203267, 1571759076.2071667, 1571759076.2110665, 1571759076.214966, 1571759076.2188659, 1571759076.2227654, 1571759076.2266653, 1571759076.2305648, 1571759076.2344646, 1571759076.2383645, 1571759076.242264, 1571759076.2461638, 1571759076.2500634, 1571759076.2539632, 1571759076.2578628, 1571759076.2617626, 1571759076.2656624, 1571759076.269562, 1571759076.2734618, 1571759076.2773614, 1571759076.2812612, 1571759076.2851608, 1571759076.2890606, 1571759076.2929604, 1571759076.29686, 1571759076.3007598, 1571759076.3046594, 1571759076.3085592, 1571759076.3124588, 1571759076.3163586, 1571759076.3202584, 1571759076.324158, 1571759076.3280578, 1571759076.3319573, 1571759076.3358572, 1571759076.3397567, 1571759076.3436565, 1571759076.3475564, 1571759076.351456, 1571759076.3553557, 1571759076.3592553, 1571759076.3631551, 1571759076.3670547, 1571759076.3709545, 1571759076.3748543, 1571759076.378754, 1571759076.3826537, 1571759076.3865533, 1571759076.390453, 1571759076.3943527, 1571759076.3982525, 1571759076.4021523, 1571759076.4060519, 1571759076.4099517, 1571759076.4138513, 1571759076.417751, 1571759076.4216506, 1571759076.4255505, 1571759076.42945, 1571759076.4333498, 1571759076.4372497, 1571759076.4411492, 1571759076.445049, 1571759076.4489486, 1571759076.4528484, 1571759076.456748, 1571759076.4606478, 1571759076.4645476, 1571759076.4684472, 1571759076.472347, 1571759076.4762466, 1571759076.4801464, 1571759076.484046, 1571759076.4879458, 1571759076.4918456, 1571759076.4957452, 1571759076.499645, 1571759076.5035446, 1571759076.5074444, 1571759076.511344, 1571759076.5152438, 1571759076.5191436, 1571759076.5230432, 1571759076.526943, 1571759076.5308425, 1571759076.5347424, 1571759076.538642, 1571759076.5425417, 1571759076.5464416, 1571759076.5503411, 1571759076.554241, 1571759076.5581405, 1571759076.5620403, 1571759076.56594, 1571759076.5698397, 1571759076.5737395, 1571759076.577639, 1571759076.581539, 1571759076.5854385, 1571759076.5893383, 1571759076.5932379, 1571759076.5971377, 1571759076.6010375, 1571759076.604937, 1571759076.608837, 1571759076.6127365, 1571759076.6166363, 1571759076.6205359, 1571759076.6244357, 1571759076.6283355, 1571759076.632235, 1571759076.6361349, 1571759076.6400344, 1571759076.6439342, 1571759076.6478338, 1571759076.6517336, 1571759076.6556332, 1571759076.659533, 1571759076.6634328, 1571759076.6673324, 1571759076.6712322, 1571759076.6751318, 1571759076.6790316, 1571759076.6829312, 1571759076.686831, 1571759076.6907308, 1571759076.6946304, 1571759076.6985302, 1571759076.7024298, 1571759076.7063296, 1571759076.7102292, 1571759076.714129, 1571759076.7180288, 1571759076.7219284, 1571759076.7258282, 1571759076.7297277, 1571759076.7336276, 1571759076.7375271, 1571759076.741427, 1571759076.7453268, 1571759076.7492263, 1571759076.7531261, 1571759076.7570257, 1571759076.7609255, 1571759076.764825, 1571759076.768725, 1571759076.7726247, 1571759076.7765243, 1571759076.780424, 1571759076.7843237, 1571759076.7882235, 1571759076.792123, 1571759076.796023, 1571759076.7999227, 1571759076.8038223, 1571759076.807722, 1571759076.8116217, 1571759076.8155215, 1571759076.819421, 1571759076.8233209, 1571759076.8272207, 1571759076.8311203, 1571759076.83502, 1571759076.8389196, 1571759076.8428195, 1571759076.846719, 1571759076.8506188, 1571759076.8545184, 1571759076.8584182, 1571759076.862318, 1571759076.8662176, 1571759076.8701174, 1571759076.874017, 1571759076.8779168, 1571759076.8818164, 1571759076.8857162, 1571759076.889616, 1571759076.8935156, 1571759076.8974154, 1571759076.901315, 1571759076.9052148, 1571759076.9091144, 1571759076.9130142, 1571759076.916914, 1571759076.9208136, 1571759076.9247134, 1571759076.928613, 1571759076.9325128, 1571759076.9364123, 1571759076.9403121, 1571759076.944212, 1571759076.9481115, 1571759076.9520113, 1571759076.955911, 1571759076.9598107, 1571759076.9637103, 1571759076.9676101, 1571759076.97151, 1571759076.9754095, 1571759076.9793093, 1571759076.983209, 1571759076.9871087, 1571759076.9910083, 1571759076.994908, 1571759076.998808, 1571759077.0027075, 1571759077.0066073, 1571759077.0105069, 1571759077.0144067, 1571759077.0183063, 1571759077.022206, 1571759077.0261059, 1571759077.0300055, 1571759077.0339053, 1571759077.0378048, 1571759077.0417047, 1571759077.0456042, 1571759077.049504, 1571759077.0534039, 1571759077.0573034, 1571759077.0612032, 1571759077.0651028, 1571759077.0690026, 1571759077.0729022, 1571759077.076802, 1571759077.0807016, 1571759077.0846014, 1571759077.0885012, 1571759077.0924008, 1571759077.0963006, 1571759077.1002002, 1571759077.1041, 1571759077.1079996, 1571759077.1118994, 1571759077.1157992, 1571759077.1196988, 1571759077.1235986, 1571759077.1274981, 1571759077.131398, 1571759077.1352975, 1571759077.1391973, 1571759077.1430972, 1571759077.1469967, 1571759077.1508965, 1571759077.1547961, 1571759077.158696, 1571759077.1625955, 1571759077.1664953, 1571759077.1703951, 1571759077.1742947, 1571759077.1781945, 1571759077.182094, 1571759077.185994, 1571759077.1898935, 1571759077.1937933, 1571759077.197693, 1571759077.2015927, 1571759077.2054925, 1571759077.209392, 1571759077.213292, 1571759077.2171915, 1571759077.2210913, 1571759077.224991, 1571759077.2288907, 1571759077.2327905, 1571759077.23669, 1571759077.2405899, 1571759077.2444894, 1571759077.2483892, 1571759077.252289, 1571759077.2561886, 1571759077.2600884, 1571759077.263988, 1571759077.2678878, 1571759077.2717874, 1571759077.2756872, 1571759077.2795868, 1571759077.2834866, 1571759077.2873864, 1571759077.291286, 1571759077.2951858, 1571759077.2990854, 1571759077.3029852, 1571759077.3068848, 1571759077.3107846, 1571759077.3146844, 1571759077.318584, 1571759077.3224838, 1571759077.3263834, 1571759077.3302832, 1571759077.3341827, 1571759077.3380826, 1571759077.3419824, 1571759077.345882, 1571759077.3497818, 1571759077.3536813, 1571759077.3575811, 1571759077.3614807, 1571759077.3653805, 1571759077.3692803, 1571759077.37318, 1571759077.3770797, 1571759077.3809793, 1571759077.384879, 1571759077.3887787, 1571759077.3926785, 1571759077.3965783, 1571759077.400478, 1571759077.4043777, 1571759077.4082773, 1571759077.412177, 1571759077.4160767, 1571759077.4199765, 1571759077.4238763, 1571759077.4277759, 1571759077.4316757, 1571759077.4355752, 1571759077.439475, 1571759077.4433746, 1571759077.4472744, 1571759077.4511743, 1571759077.4550738, 1571759077.4589736, 1571759077.4628732, 1571759077.466773, 1571759077.4706726, 1571759077.4745724, 1571759077.4784722, 1571759077.4823718, 1571759077.4862716, 1571759077.4901712, 1571759077.494071, 1571759077.4979706, 1571759077.5018704, 1571759077.50577, 1571759077.5096698, 1571759077.5135696, 1571759077.5174692, 1571759077.521369, 1571759077.5252686, 1571759077.5291684, 1571759077.533068, 1571759077.5369678, 1571759077.5408676, 1571759077.5447671, 1571759077.548667, 1571759077.5525665, 1571759077.5564663, 1571759077.560366, 1571759077.5642657, 1571759077.5681655, 1571759077.572065, 1571759077.575965, 1571759077.5798645, 1571759077.5837643, 1571759077.587664, 1571759077.5915637, 1571759077.5954635, 1571759077.599363, 1571759077.603263, 1571759077.6071625, 1571759077.6110623, 1571759077.6149619, 1571759077.6188617, 1571759077.6227615, 1571759077.626661, 1571759077.6305609, 1571759077.6344604, 1571759077.6383603, 1571759077.6422598, 1571759077.6461596, 1571759077.6500595, 1571759077.653959, 1571759077.6578588, 1571759077.6617584, 1571759077.6656582, 1571759077.6695578, 1571759077.6734576, 1571759077.6773574, 1571759077.681257, 1571759077.6851568, 1571759077.6890564, 1571759077.6929562, 1571759077.6968558, 1571759077.7007556, 1571759077.7046552, 1571759077.708555, 1571759077.7124548, 1571759077.7163544, 1571759077.7202542, 1571759077.7241538, 1571759077.7280536, 1571759077.7319531, 1571759077.735853, 1571759077.7397528, 1571759077.7436523, 1571759077.7475522, 1571759077.7514517, 1571759077.7553515, 1571759077.759251, 1571759077.763151, 1571759077.7670507, 1571759077.7709503, 1571759077.7748501, 1571759077.7787497, 1571759077.7826495, 1571759077.786549, 1571759077.790449, 1571759077.7943487, 1571759077.7982483, 1571759077.802148, 1571759077.8060477, 1571759077.8099475, 1571759077.813847, 1571759077.8177469, 1571759077.8216467, 1571759077.8255463, 1571759077.829446, 1571759077.8333457, 1571759077.8372455, 1571759077.841145, 1571759077.8450449, 1571759077.8489447, 1571759077.8528442, 1571759077.856744, 1571759077.8606436, 1571759077.8645434, 1571759077.868443, 1571759077.8723428, 1571759077.8762426, 1571759077.8801422, 1571759077.884042, 1571759077.8879416, 1571759077.8918414, 1571759077.895741, 1571759077.8996408, 1571759077.9035406, 1571759077.9074402, 1571759077.91134, 1571759077.9152396, 1571759077.9191394, 1571759077.923039, 1571759077.9269388, 1571759077.9308383, 1571759077.9347382, 1571759077.938638, 1571759077.9425375, 1571759077.9464374, 1571759077.950337, 1571759077.9542367, 1571759077.9581363, 1571759077.9620361, 1571759077.965936, 1571759077.9698355, 1571759077.9737353, 1571759077.977635, 1571759077.9815347, 1571759077.9854343, 1571759077.989334, 1571759077.993234, 1571759077.9971335, 1571759078.0010333, 1571759078.0049329, 1571759078.0088327, 1571759078.0127323, 1571759078.016632, 1571759078.020532, 1571759078.0244315, 1571759078.0283313, 1571759078.0322309, 1571759078.0361307, 1571759078.0400302, 1571759078.04393, 1571759078.0478299, 1571759078.0517294, 1571759078.0556293, 1571759078.0595288, 1571759078.0634286, 1571759078.0673282, 1571759078.071228, 1571759078.0751278, 1571759078.0790274, 1571759078.0829272, 1571759078.0868268, 1571759078.0907266, 1571759078.0946262, 1571759078.098526, 1571759078.1024258, 1571759078.1063254, 1571759078.1102252, 1571759078.1141248, 1571759078.1180246, 1571759078.1219242, 1571759078.125824, 1571759078.1297235, 1571759078.1336234, 1571759078.1375232, 1571759078.1414227, 1571759078.1453226, 1571759078.1492221, 1571759078.153122, 1571759078.1570215, 1571759078.1609213, 1571759078.1648211, 1571759078.1687207, 1571759078.1726205, 1571759078.17652, 1571759078.18042, 1571759078.1843195, 1571759078.1882193, 1571759078.1921191, 1571759078.1960187, 1571759078.1999185, 1571759078.203818, 1571759078.207718, 1571759078.2116175, 1571759078.2155173, 1571759078.219417, 1571759078.2233167, 1571759078.2272165, 1571759078.231116, 1571759078.2350159, 1571759078.2389154, 1571759078.2428153, 1571759078.246715, 1571759078.2506146, 1571759078.2545145, 1571759078.258414, 1571759078.2623138, 1571759078.2662134, 1571759078.2701132, 1571759078.274013, 1571759078.2779126, 1571759078.2818124, 1571759078.285712, 1571759078.2896118, 1571759078.2935114, 1571759078.2974112, 1571759078.301311, 1571759078.3052106, 1571759078.3091104, 1571759078.31301, 1571759078.3169098, 1571759078.3208094, 1571759078.3247092, 1571759078.328609, 1571759078.3325086, 1571759078.3364084, 1571759078.340308, 1571759078.3442078, 1571759078.3481073, 1571759078.3520072, 1571759078.3559067, 1571759078.3598065, 1571759078.3637064, 1571759078.367606, 1571759078.3715057, 1571759078.3754053, 1571759078.3793051, 1571759078.3832047, 1571759078.3871045, 1571759078.3910043, 1571759078.394904, 1571759078.3988037, 1571759078.4027033, 1571759078.406603, 1571759078.4105027, 1571759078.4144025, 1571759078.4183023, 1571759078.4222019, 1571759078.4261017, 1571759078.4300013, 1571759078.433901, 1571759078.4378006, 1571759078.4417005, 1571759078.4456003, 1571759078.4494998, 1571759078.4533997, 1571759078.4572992, 1571759078.461199, 1571759078.4650986, 1571759078.4689984, 1571759078.4728982, 1571759078.4767978, 1571759078.4806976, 1571759078.4845972, 1571759078.488497, 1571759078.4923966, 1571759078.4962964, 1571759078.5001962, 1571759078.5040958, 1571759078.5079956, 1571759078.5118952, 1571759078.515795, 1571759078.5196946, 1571759078.5235944, 1571759078.5274942, 1571759078.5313938, 1571759078.5352936, 1571759078.5391932, 1571759078.543093, 1571759078.5469925, 1571759078.5508924, 1571759078.554792, 1571759078.5586917, 1571759078.5625916, 1571759078.5664911, 1571759078.570391, 1571759078.5742905, 1571759078.5781903, 1571759078.58209, 1571759078.5859897, 1571759078.5898895, 1571759078.593789, 1571759078.597689, 1571759078.6015885, 1571759078.6054883, 1571759078.6093879, 1571759078.6132877, 1571759078.6171875, 1571759078.621087, 1571759078.624987, 1571759078.6288865, 1571759078.6327863, 1571759078.6366858, 1571759078.6405857, 1571759078.6444855, 1571759078.648385, 1571759078.6522849, 1571759078.6561844, 1571759078.6600842, 1571759078.6639838, 1571759078.6678836, 1571759078.6717834, 1571759078.675683, 1571759078.6795828, 1571759078.6834824, 1571759078.6873822, 1571759078.6912818, 1571759078.6951816, 1571759078.6990814, 1571759078.702981, 1571759078.7068808, 1571759078.7107804, 1571759078.7146802, 1571759078.7185798, 1571759078.7224796, 1571759078.7263794, 1571759078.730279, 1571759078.7341788, 1571759078.7380784, 1571759078.7419782, 1571759078.7458777, 1571759078.7497776, 1571759078.7536774, 1571759078.757577, 1571759078.7614768, 1571759078.7653763, 1571759078.7692761, 1571759078.7731757, 1571759078.7770755, 1571759078.780975, 1571759078.784875, 1571759078.7887747, 1571759078.7926743, 1571759078.796574, 1571759078.8004737, 1571759078.8043735, 1571759078.808273, 1571759078.812173, 1571759078.8160727, 1571759078.8199723, 1571759078.823872, 1571759078.8277717, 1571759078.8316715, 1571759078.835571, 1571759078.8394709, 1571759078.8433707, 1571759078.8472703, 1571759078.85117, 1571759078.8550696, 1571759078.8589694, 1571759078.862869, 1571759078.8667688, 1571759078.8706686, 1571759078.8745682, 1571759078.878468, 1571759078.8823676, 1571759078.8862674, 1571759078.890167, 1571759078.8940668, 1571759078.8979666, 1571759078.9018662, 1571759078.905766, 1571759078.9096656, 1571759078.9135654, 1571759078.917465, 1571759078.9213648, 1571759078.9252646, 1571759078.9291642, 1571759078.933064, 1571759078.9369636, 1571759078.9408634, 1571759078.944763, 1571759078.9486628, 1571759078.9525626, 1571759078.9564621, 1571759078.960362, 1571759078.9642615, 1571759078.9681613, 1571759078.972061, 1571759078.9759607, 1571759078.9798603, 1571759078.98376, 1571759078.98766, 1571759078.9915595, 1571759078.9954593, 1571759078.999359, 1571759079.0032587, 1571759079.0071583, 1571759079.011058, 1571759079.014958, 1571759079.0188575, 1571759079.0227573, 1571759079.0266569, 1571759079.0305567, 1571759079.0344563, 1571759079.038356, 1571759079.0422559, 1571759079.0461555, 1571759079.0500553, 1571759079.0539548, 1571759079.0578547, 1571759079.0617542, 1571759079.065654, 1571759079.0695539, 1571759079.0734534, 1571759079.0773532, 1571759079.0812528, 1571759079.0851526, 1571759079.0890522, 1571759079.092952, 1571759079.0968518, 1571759079.1007514, 1571759079.1046512, 1571759079.1085508, 1571759079.1124506, 1571759079.1163502, 1571759079.12025, 1571759079.1241498, 1571759079.1280494, 1571759079.1319492, 1571759079.1358488, 1571759079.1397486, 1571759079.1436481, 1571759079.147548, 1571759079.1514478, 1571759079.1553473, 1571759079.1592472, 1571759079.1631467, 1571759079.1670465, 1571759079.1709461, 1571759079.174846, 1571759079.1787457, 1571759079.1826453, 1571759079.1865451, 1571759079.1904447, 1571759079.1943445, 1571759079.198244, 1571759079.202144, 1571759079.2060435, 1571759079.2099433, 1571759079.213843, 1571759079.2177427, 1571759079.2216425, 1571759079.225542, 1571759079.229442, 1571759079.2333415, 1571759079.2372413, 1571759079.241141, 1571759079.2450407, 1571759079.2489405, 1571759079.25284, 1571759079.2567399, 1571759079.2606394, 1571759079.2645392, 1571759079.268439, 1571759079.2723386, 1571759079.2762384, 1571759079.280138, 1571759079.2840378, 1571759079.2879374, 1571759079.2918372, 1571759079.295737, 1571759079.2996366, 1571759079.3035364, 1571759079.307436, 1571759079.3113358, 1571759079.3152354, 1571759079.3191352, 1571759079.323035, 1571759079.3269346, 1571759079.3308344, 1571759079.334734, 1571759079.3386338, 1571759079.3425333, 1571759079.3464332, 1571759079.350333, 1571759079.3542325, 1571759079.3581324, 1571759079.362032, 1571759079.3659317, 1571759079.3698313, 1571759079.3737311, 1571759079.377631, 1571759079.3815305, 1571759079.3854303, 1571759079.38933, 1571759079.3932297, 1571759079.3971293, 1571759079.401029, 1571759079.4049287, 1571759079.4088285, 1571759079.4127283, 1571759079.416628, 1571759079.4205277, 1571759079.4244273, 1571759079.428327, 1571759079.4322267, 1571759079.4361265, 1571759079.4400263, 1571759079.4439259, 1571759079.4478257, 1571759079.4517252, 1571759079.455625, 1571759079.4595246, 1571759079.4634244, 1571759079.4673243, 1571759079.4712238, 1571759079.4751236, 1571759079.4790232, 1571759079.482923, 1571759079.4868226, 1571759079.4907224, 1571759079.4946222, 1571759079.4985218, 1571759079.5024216, 1571759079.5063212, 1571759079.510221, 1571759079.5141206, 1571759079.5180204, 1571759079.5219202, 1571759079.5258198, 1571759079.5297196, 1571759079.5336192, 1571759079.537519, 1571759079.5414186, 1571759079.5453184, 1571759079.5492182, 1571759079.5531178, 1571759079.5570176, 1571759079.5609171, 1571759079.564817, 1571759079.5687165, 1571759079.5726163, 1571759079.5765162, 1571759079.5804157, 1571759079.5843155, 1571759079.588215, 1571759079.592115, 1571759079.5960145, 1571759079.5999143, 1571759079.6038141, 1571759079.6077137, 1571759079.6116135, 1571759079.615513, 1571759079.619413, 1571759079.6233125, 1571759079.6272123, 1571759079.6311119, 1571759079.6350117, 1571759079.6389115, 1571759079.642811, 1571759079.6467109, 1571759079.6506104, 1571759079.6545103, 1571759079.6584098, 1571759079.6623096, 1571759079.6662095, 1571759079.670109, 1571759079.6740088, 1571759079.6779084, 1571759079.6818082, 1571759079.6857078, 1571759079.6896076, 1571759079.6935074, 1571759079.697407, 1571759079.7013068, 1571759079.7052064, 1571759079.7091062, 1571759079.7130058, 1571759079.7169056, 1571759079.7208054, 1571759079.724705, 1571759079.7286048, 1571759079.7325044, 1571759079.7364042, 1571759079.7403038, 1571759079.7442036, 1571759079.7481034, 1571759079.752003, 1571759079.7559028, 1571759079.7598023, 1571759079.7637022, 1571759079.7676017, 1571759079.7715015, 1571759079.7754014, 1571759079.779301, 1571759079.7832007, 1571759079.7871003, 1571759079.7910001, 1571759079.7948997, 1571759079.7987995, 1571759079.8026993, 1571759079.806599, 1571759079.8104987, 1571759079.8143983, 1571759079.818298, 1571759079.8221977, 1571759079.8260975, 1571759079.829997, 1571759079.8338969, 1571759079.8377967, 1571759079.8416963, 1571759079.845596, 1571759079.8494956, 1571759079.8533955, 1571759079.857295, 1571759079.8611948, 1571759079.8650947, 1571759079.8689942, 1571759079.872894, 1571759079.8767936, 1571759079.8806934, 1571759079.884593, 1571759079.8884928, 1571759079.8923926, 1571759079.8962922, 1571759079.900192, 1571759079.9040916, 1571759079.9079914, 1571759079.911891, 1571759079.9157908, 1571759079.9196906, 1571759079.9235902, 1571759079.92749, 1571759079.9313896, 1571759079.9352894, 1571759079.939189, 1571759079.9430888, 1571759079.9469886, 1571759079.9508882, 1571759079.954788, 1571759079.9586875, 1571759079.9625874, 1571759079.966487, 1571759079.9703867, 1571759079.9742866, 1571759079.9781861, 1571759079.982086, 1571759079.9859855, 1571759079.9898853, 1571759079.993785, 1571759079.9976847, 1571759080.0015845, 1571759080.005484, 1571759080.009384, 1571759080.0132835, 1571759080.0171833, 1571759080.0210829, 1571759080.0249827, 1571759080.0288825, 1571759080.032782, 1571759080.036682, 1571759080.0405815, 1571759080.0444813, 1571759080.0483809, 1571759080.0522807, 1571759080.0561802, 1571759080.06008, 1571759080.0639799, 1571759080.0678794, 1571759080.0717793, 1571759080.0756788, 1571759080.0795786, 1571759080.0834782, 1571759080.087378, 1571759080.0912778, 1571759080.0951774, 1571759080.0990772, 1571759080.1029768, 1571759080.1068766, 1571759080.1107762, 1571759080.114676, 1571759080.1185758, 1571759080.1224754, 1571759080.1263752, 1571759080.1302748, 1571759080.1341746, 1571759080.1380742, 1571759080.141974, 1571759080.1458738, 1571759080.1497734, 1571759080.1536732, 1571759080.1575727, 1571759080.1614726, 1571759080.1653721, 1571759080.169272, 1571759080.1731718, 1571759080.1770713, 1571759080.1809711, 1571759080.1848707, 1571759080.1887705, 1571759080.19267, 1571759080.19657, 1571759080.2004697, 1571759080.2043693, 1571759080.2082691, 1571759080.2121687, 1571759080.2160685, 1571759080.219968, 1571759080.223868, 1571759080.2277677, 1571759080.2316673, 1571759080.235567, 1571759080.2394667, 1571759080.2433665, 1571759080.247266, 1571759080.2511659, 1571759080.2550654, 1571759080.2589653, 1571759080.262865, 1571759080.2667646, 1571759080.2706645, 1571759080.274564, 1571759080.2784638, 1571759080.2823634, 1571759080.2862632, 1571759080.290163, 1571759080.2940626, 1571759080.2979624, 1571759080.301862, 1571759080.3057618, 1571759080.3096614, 1571759080.3135612, 1571759080.317461, 1571759080.3213606, 1571759080.3252604, 1571759080.32916, 1571759080.3330598, 1571759080.3369594, 1571759080.3408592, 1571759080.344759, 1571759080.3486586, 1571759080.3525584, 1571759080.356458, 1571759080.3603578, 1571759080.3642573, 1571759080.3681571, 1571759080.372057, 1571759080.3759565, 1571759080.3798563, 1571759080.383756, 1571759080.3876557, 1571759080.3915553, 1571759080.3954551, 1571759080.399355, 1571759080.4032545, 1571759080.4071543, 1571759080.411054, 1571759080.4149537, 1571759080.4188533, 1571759080.422753, 1571759080.426653, 1571759080.4305525, 1571759080.4344523, 1571759080.4383519, 1571759080.4422517, 1571759080.4461513, 1571759080.450051, 1571759080.453951, 1571759080.4578505, 1571759080.4617503, 1571759080.4656498, 1571759080.4695497, 1571759080.4734492, 1571759080.477349, 1571759080.4812486, 1571759080.4851484, 1571759080.4890482, 1571759080.4929478, 1571759080.4968476, 1571759080.5007472, 1571759080.504647, 1571759080.5085466, 1571759080.5124464, 1571759080.5163462, 1571759080.5202458, 1571759080.5241456, 1571759080.5280452, 1571759080.531945, 1571759080.5358446, 1571759080.5397444, 1571759080.5436442, 1571759080.5475438, 1571759080.5514436, 1571759080.5553432, 1571759080.559243, 1571759080.5631425, 1571759080.5670424, 1571759080.5709422, 1571759080.5748417, 1571759080.5787416, 1571759080.5826411, 1571759080.586541, 1571759080.5904405, 1571759080.5943403, 1571759080.5982401, 1571759080.6021397, 1571759080.6060395, 1571759080.609939, 1571759080.613839, 1571759080.6177385, 1571759080.6216383, 1571759080.625538, 1571759080.6294377, 1571759080.6333375, 1571759080.637237, 1571759080.641137, 1571759080.6450365, 1571759080.6489363, 1571759080.652836, 1571759080.6567357, 1571759080.6606355, 1571759080.664535, 1571759080.6684349, 1571759080.6723344, 1571759080.6762342, 1571759080.6801338, 1571759080.6840336, 1571759080.6879334, 1571759080.691833, 1571759080.6957328, 1571759080.6996324, 1571759080.7035322, 1571759080.7074318, 1571759080.7113316, 1571759080.7152314, 1571759080.719131, 1571759080.7230308, 1571759080.7269304, 1571759080.7308302, 1571759080.7347298, 1571759080.7386296, 1571759080.7425294, 1571759080.746429, 1571759080.7503288, 1571759080.7542284, 1571759080.7581282, 1571759080.7620277, 1571759080.7659276, 1571759080.7698274, 1571759080.773727, 1571759080.7776268, 1571759080.7815263, 1571759080.7854261, 1571759080.7893257, 1571759080.7932255, 1571759080.7971253, 1571759080.801025, 1571759080.8049247, 1571759080.8088243, 1571759080.812724, 1571759080.8166237, 1571759080.8205235, 1571759080.8244233, 1571759080.828323, 1571759080.8322227, 1571759080.8361223, 1571759080.840022, 1571759080.8439217, 1571759080.8478215, 1571759080.8517213, 1571759080.8556209, 1571759080.8595207, 1571759080.8634202, 1571759080.86732, 1571759080.8712196, 1571759080.8751194, 1571759080.8790193, 1571759080.8829188, 1571759080.8868186, 1571759080.8907182, 1571759080.894618, 1571759080.8985176, 1571759080.9024174, 1571759080.906317, 1571759080.9102168, 1571759080.9141166, 1571759080.9180162, 1571759080.921916, 1571759080.9258156, 1571759080.9297154, 1571759080.933615, 1571759080.9375148, 1571759080.9414146, 1571759080.9453142, 1571759080.949214, 1571759080.9531136, 1571759080.9570134, 1571759080.960913, 1571759080.9648128, 1571759080.9687126, 1571759080.9726121, 1571759080.976512, 1571759080.9804115, 1571759080.9843113, 1571759080.988211, 1571759080.9921107, 1571759080.9960105, 1571759080.99991, 1571759081.00381, 1571759081.0077095, 1571759081.0116093, 1571759081.015509, 1571759081.0194087, 1571759081.0233085, 1571759081.027208, 1571759081.031108, 1571759081.0350075, 1571759081.0389073, 1571759081.0428069, 1571759081.0467067, 1571759081.0506065, 1571759081.054506, 1571759081.0584059, 1571759081.0623055, 1571759081.0662053, 1571759081.0701048, 1571759081.0740047, 1571759081.0779045, 1571759081.081804, 1571759081.0857038, 1571759081.0896034, 1571759081.0935032, 1571759081.0974028, 1571759081.1013026, 1571759081.1052022, 1571759081.109102, 1571759081.1130018, 1571759081.1169014, 1571759081.1208012, 1571759081.1247008, 1571759081.1286006, 1571759081.1325002, 1571759081.1364, 1571759081.1402998, 1571759081.1441994, 1571759081.1480992, 1571759081.1519988, 1571759081.1558986, 1571759081.1597981, 1571759081.163698, 1571759081.1675978, 1571759081.1714973, 1571759081.1753972, 1571759081.1792967, 1571759081.1831965, 1571759081.187096, 1571759081.190996, 1571759081.1948957, 1571759081.1987953, 1571759081.2026951, 1571759081.2065947, 1571759081.2104945, 1571759081.214394, 1571759081.218294, 1571759081.2221937, 1571759081.2260933, 1571759081.229993, 1571759081.2338927, 1571759081.2377925, 1571759081.241692, 1571759081.2455919, 1571759081.2494917, 1571759081.2533913, 1571759081.257291, 1571759081.2611907, 1571759081.2650905, 1571759081.26899, 1571759081.2728899, 1571759081.2767897, 1571759081.2806892, 1571759081.284589, 1571759081.2884886, 1571759081.2923884, 1571759081.296288, 1571759081.3001878, 1571759081.3040876, 1571759081.3079872, 1571759081.311887, 1571759081.3157866, 1571759081.3196864, 1571759081.323586, 1571759081.3274858, 1571759081.3313854, 1571759081.3352852, 1571759081.339185, 1571759081.3430846, 1571759081.3469844, 1571759081.350884, 1571759081.3547838, 1571759081.3586833, 1571759081.3625832, 1571759081.366483, 1571759081.3703825, 1571759081.3742824, 1571759081.378182, 1571759081.3820817, 1571759081.3859813, 1571759081.3898811, 1571759081.393781, 1571759081.3976805, 1571759081.4015803, 1571759081.40548, 1571759081.4093797, 1571759081.4132793, 1571759081.417179, 1571759081.421079, 1571759081.4249785, 1571759081.4288783, 1571759081.432778, 1571759081.4366777, 1571759081.4405773, 1571759081.444477, 1571759081.448377, 1571759081.4522765, 1571759081.4561763, 1571759081.4600759, 1571759081.4639757, 1571759081.4678752, 1571759081.471775, 1571759081.4756749, 1571759081.4795744, 1571759081.4834743, 1571759081.4873738, 1571759081.4912736, 1571759081.4951732, 1571759081.499073, 1571759081.5029728, 1571759081.5068724, 1571759081.5107722, 1571759081.5146718, 1571759081.5185716, 1571759081.5224712, 1571759081.526371, 1571759081.5302706, 1571759081.5341704, 1571759081.5380702, 1571759081.5419698, 1571759081.5458696, 1571759081.5497692, 1571759081.553669, 1571759081.5575686, 1571759081.5614684, 1571759081.5653682, 1571759081.5692677, 1571759081.5731676, 1571759081.5770671, 1571759081.580967, 1571759081.5848665, 1571759081.5887663, 1571759081.5926661, 1571759081.5965657, 1571759081.6004655, 1571759081.604365, 1571759081.608265, 1571759081.6121645, 1571759081.6160643, 1571759081.6199641, 1571759081.6238637, 1571759081.6277635, 1571759081.631663, 1571759081.635563, 1571759081.6394625, 1571759081.6433623, 1571759081.647262, 1571759081.6511617, 1571759081.6550615, 1571759081.658961, 1571759081.6628609, 1571759081.6667604, 1571759081.6706603, 1571759081.67456, 1571759081.6784596, 1571759081.6823595, 1571759081.686259, 1571759081.6901588, 1571759081.6940584, 1571759081.6979582, 1571759081.701858, 1571759081.7057576, 1571759081.7096574, 1571759081.713557, 1571759081.7174568, 1571759081.7213564, 1571759081.7252562, 1571759081.729156, 1571759081.7330556, 1571759081.7369554, 1571759081.740855, 1571759081.7447548, 1571759081.7486544, 1571759081.7525542, 1571759081.7564538, 1571759081.7603536, 1571759081.7642534, 1571759081.768153, 1571759081.7720528, 1571759081.7759523, 1571759081.7798522, 1571759081.7837517, 1571759081.7876515, 1571759081.7915514, 1571759081.795451, 1571759081.7993507, 1571759081.8032503, 1571759081.8071501, 1571759081.8110497, 1571759081.8149495, 1571759081.8188493, 1571759081.822749, 1571759081.8266487, 1571759081.8305483, 1571759081.834448, 1571759081.8383477, 1571759081.8422475, 1571759081.8461473, 1571759081.8500469, 1571759081.8539467, 1571759081.8578463, 1571759081.861746, 1571759081.8656456, 1571759081.8695455, 1571759081.8734453, 1571759081.8773448, 1571759081.8812447, 1571759081.8851442, 1571759081.889044, 1571759081.8929436, 1571759081.8968434, 1571759081.9007432, 1571759081.9046428, 1571759081.9085426, 1571759081.9124422, 1571759081.916342, 1571759081.9202416, 1571759081.9241414, 1571759081.9280412, 1571759081.9319408, 1571759081.9358406, 1571759081.9397402, 1571759081.94364, 1571759081.9475396, 1571759081.9514394, 1571759081.955339, 1571759081.9592388, 1571759081.9631386, 1571759081.9670382, 1571759081.970938, 1571759081.9748375, 1571759081.9787374, 1571759081.982637, 1571759081.9865367, 1571759081.9904366, 1571759081.9943361, 1571759081.998236, 1571759082.0021355, 1571759082.0060353, 1571759082.009935, 1571759082.0138347, 1571759082.0177345, 1571759082.021634, 1571759082.025534, 1571759082.0294335, 1571759082.0333333, 1571759082.0372329, 1571759082.0411327, 1571759082.0450325, 1571759082.048932, 1571759082.052832, 1571759082.0567315, 1571759082.0606313, 1571759082.0645308, 1571759082.0684307, 1571759082.0723305, 1571759082.07623, 1571759082.0801299, 1571759082.0840294, 1571759082.0879292, 1571759082.0918288, 1571759082.0957286, 1571759082.0996284, 1571759082.103528, 1571759082.1074278, 1571759082.1113274, 1571759082.1152272, 1571759082.1191268, 1571759082.1230266, 1571759082.1269264, 1571759082.130826, 1571759082.1347258, 1571759082.1386254, 1571759082.1425252, 1571759082.1464248, 1571759082.1503246, 1571759082.1542244, 1571759082.158124, 1571759082.1620238, 1571759082.1659234, 1571759082.1698232, 1571759082.1737227, 1571759082.1776226, 1571759082.1815221, 1571759082.185422, 1571759082.1893218, 1571759082.1932213, 1571759082.1971211, 1571759082.2010207, 1571759082.2049205, 1571759082.20882, 1571759082.21272, 1571759082.2166197, 1571759082.2205193, 1571759082.224419, 1571759082.2283187, 1571759082.2322185, 1571759082.236118, 1571759082.240018, 1571759082.2439177, 1571759082.2478173, 1571759082.251717, 1571759082.2556167, 1571759082.2595165, 1571759082.263416, 1571759082.2673159, 1571759082.2712157, 1571759082.2751153, 1571759082.279015, 1571759082.2829146, 1571759082.2868145, 1571759082.290714, 1571759082.2946138, 1571759082.2985137, 1571759082.3024132, 1571759082.306313, 1571759082.3102126, 1571759082.3141124, 1571759082.318012, 1571759082.3219118, 1571759082.3258116, 1571759082.3297112, 1571759082.333611, 1571759082.3375106, 1571759082.3414104, 1571759082.34531, 1571759082.3492098, 1571759082.3531096, 1571759082.3570092, 1571759082.360909, 1571759082.3648086, 1571759082.3687084, 1571759082.372608, 1571759082.3765078, 1571759082.3804073, 1571759082.3843071, 1571759082.388207, 1571759082.3921065, 1571759082.3960063, 1571759082.399906, 1571759082.4038057, 1571759082.4077053, 1571759082.4116051, 1571759082.415505, 1571759082.4194045, 1571759082.4233043, 1571759082.427204, 1571759082.4311037, 1571759082.4350033, 1571759082.438903, 1571759082.442803, 1571759082.4467025, 1571759082.4506023, 1571759082.4545019, 1571759082.4584017, 1571759082.4623013, 1571759082.466201, 1571759082.4701009, 1571759082.4740005, 1571759082.4779003, 1571759082.4817998, 1571759082.4856997, 1571759082.4895992, 1571759082.493499, 1571759082.4973989, 1571759082.5012984, 1571759082.5051982, 1571759082.5090978, 1571759082.5129976, 1571759082.5168972, 1571759082.520797, 1571759082.5246968, 1571759082.5285964, 1571759082.5324962, 1571759082.5363958, 1571759082.5402956, 1571759082.5441952, 1571759082.548095, 1571759082.5519948, 1571759082.5558944, 1571759082.5597942, 1571759082.5636938, 1571759082.5675936, 1571759082.5714931, 1571759082.575393, 1571759082.5792928, 1571759082.5831923, 1571759082.5870922, 1571759082.5909917, 1571759082.5948915, 1571759082.5987911, 1571759082.602691, 1571759082.6065905, 1571759082.6104903, 1571759082.6143901, 1571759082.6182897, 1571759082.6221895, 1571759082.626089, 1571759082.629989, 1571759082.6338885, 1571759082.6377883, 1571759082.641688, 1571759082.6455877, 1571759082.6494875, 1571759082.653387, 1571759082.657287, 1571759082.6611865, 1571759082.6650863, 1571759082.668986, 1571759082.6728857, 1571759082.6767855, 1571759082.680685, 1571759082.6845849, 1571759082.6884844, 1571759082.6923842, 1571759082.696284, 1571759082.7001836, 1571759082.7040834, 1571759082.707983, 1571759082.7118828, 1571759082.7157824, 1571759082.7196822, 1571759082.723582, 1571759082.7274816, 1571759082.7313814, 1571759082.735281, 1571759082.7391808, 1571759082.7430804, 1571759082.7469802, 1571759082.75088, 1571759082.7547796, 1571759082.7586794, 1571759082.762579, 1571759082.7664788, 1571759082.7703784, 1571759082.7742782, 1571759082.778178, 1571759082.7820776, 1571759082.7859774, 1571759082.789877, 1571759082.7937768, 1571759082.7976763, 1571759082.8015761, 1571759082.8054757, 1571759082.8093755, 1571759082.8132753, 1571759082.817175, 1571759082.8210747, 1571759082.8249743, 1571759082.828874, 1571759082.8327737, 1571759082.8366735, 1571759082.8405733, 1571759082.844473, 1571759082.8483727, 1571759082.8522723, 1571759082.856172, 1571759082.8600717, 1571759082.8639715, 1571759082.8678713, 1571759082.8717709, 1571759082.8756707, 1571759082.8795702, 1571759082.88347, 1571759082.8873696, 1571759082.8912694, 1571759082.8951693, 1571759082.8990688, 1571759082.9029686, 1571759082.9068682, 1571759082.910768, 1571759082.9146676, 1571759082.9185674, 1571759082.9224672, 1571759082.9263668, 1571759082.9302666, 1571759082.9341662, 1571759082.938066, 1571759082.9419656, 1571759082.9458654, 1571759082.9497652, 1571759082.9536648, 1571759082.9575646, 1571759082.9614642, 1571759082.965364, 1571759082.9692636, 1571759082.9731634, 1571759082.9770632, 1571759082.9809628, 1571759082.9848626, 1571759082.9887621, 1571759082.992662, 1571759082.9965615, 1571759083.0004613, 1571759083.0043612, 1571759083.0082607, 1571759083.0121605, 1571759083.01606, 1571759083.01996, 1571759083.0238595, 1571759083.0277593, 1571759083.031659, 1571759083.0355587, 1571759083.0394585, 1571759083.043358, 1571759083.047258, 1571759083.0511575, 1571759083.0550573, 1571759083.0589569, 1571759083.0628567, 1571759083.0667565, 1571759083.070656, 1571759083.0745559, 1571759083.0784554, 1571759083.0823553, 1571759083.0862548, 1571759083.0901546, 1571759083.0940545, 1571759083.097954, 1571759083.1018538, 1571759083.1057534, 1571759083.1096532, 1571759083.1135528, 1571759083.1174526, 1571759083.1213524, 1571759083.125252, 1571759083.1291518, 1571759083.1330514, 1571759083.1369512, 1571759083.1408508, 1571759083.1447506, 1571759083.1486504, 1571759083.15255, 1571759083.1564498, 1571759083.1603494, 1571759083.1642492, 1571759083.1681488, 1571759083.1720486, 1571759083.1759484, 1571759083.179848, 1571759083.1837478, 1571759083.1876473, 1571759083.1915472, 1571759083.1954467, 1571759083.1993465, 1571759083.2032464, 1571759083.207146, 1571759083.2110457, 1571759083.2149453, 1571759083.2188451, 1571759083.2227447, 1571759083.2266445, 1571759083.230544, 1571759083.234444, 1571759083.2383437, 1571759083.2422433, 1571759083.246143, 1571759083.2500427, 1571759083.2539425, 1571759083.257842, 1571759083.2617419, 1571759083.2656417, 1571759083.2695413, 1571759083.273441, 1571759083.2773407, 1571759083.2812405, 1571759083.28514, 1571759083.2890399, 1571759083.2929397, 1571759083.2968392, 1571759083.300739, 1571759083.3046386, 1571759083.3085384, 1571759083.312438, 1571759083.3163378, 1571759083.3202376, 1571759083.3241372, 1571759083.328037, 1571759083.3319366, 1571759083.3358364, 1571759083.339736, 1571759083.3436358, 1571759083.3475356, 1571759083.3514352, 1571759083.355335, 1571759083.3592346, 1571759083.3631344, 1571759083.367034, 1571759083.3709338, 1571759083.3748336, 1571759083.3787332, 1571759083.382633, 1571759083.3865325, 1571759083.3904324, 1571759083.394332, 1571759083.3982317, 1571759083.4021316, 1571759083.4060311, 1571759083.409931, 1571759083.4138305, 1571759083.4177303, 1571759083.42163, 1571759083.4255297, 1571759083.4294295, 1571759083.433329, 1571759083.437229, 1571759083.4411285, 1571759083.4450283, 1571759083.4489279, 1571759083.4528277, 1571759083.4567273, 1571759083.460627, 1571759083.464527, 1571759083.4684265, 1571759083.4723263, 1571759083.4762259, 1571759083.4801257, 1571759083.4840252, 1571759083.487925, 1571759083.4918249, 1571759083.4957244, 1571759083.4996243, 1571759083.5035238, 1571759083.5074236, 1571759083.5113232, 1571759083.515223, 1571759083.5191228, 1571759083.5230224, 1571759083.5269222, 1571759083.5308218, 1571759083.5347216, 1571759083.5386212, 1571759083.542521, 1571759083.5464208, 1571759083.5503204, 1571759083.5542202, 1571759083.5581198, 1571759083.5620196, 1571759083.5659192, 1571759083.569819, 1571759083.5737188, 1571759083.5776184, 1571759083.5815182, 1571759083.5854177, 1571759083.5893176, 1571759083.5932171, 1571759083.597117, 1571759083.6010168, 1571759083.6049163, 1571759083.6088161, 1571759083.6127157, 1571759083.6166155, 1571759083.620515, 1571759083.624415, 1571759083.6283147, 1571759083.6322143, 1571759083.6361141, 1571759083.6400137, 1571759083.6439135, 1571759083.647813, 1571759083.651713, 1571759083.6556127, 1571759083.6595123, 1571759083.663412, 1571759083.6673117, 1571759083.6712115, 1571759083.675111, 1571759083.6790109, 1571759083.6829104, 1571759083.6868103, 1571759083.69071, 1571759083.6946096, 1571759083.6985095, 1571759083.702409, 1571759083.7063088, 1571759083.7102084, 1571759083.7141082, 1571759083.718008, 1571759083.7219076, 1571759083.7258074, 1571759083.729707, 1571759083.7336068, 1571759083.7375064, 1571759083.7414062, 1571759083.745306, 1571759083.7492056, 1571759083.7531054, 1571759083.757005, 1571759083.7609048, 1571759083.7648044, 1571759083.7687042, 1571759083.772604, 1571759083.7765036, 1571759083.7804034, 1571759083.784303, 1571759083.7882028, 1571759083.7921023, 1571759083.7960021, 1571759083.799902, 1571759083.8038015, 1571759083.8077013, 1571759083.811601, 1571759083.8155007, 1571759083.8194003, 1571759083.8233001, 1571759083.8272, 1571759083.8310995, 1571759083.8349993, 1571759083.838899, 1571759083.8427987, 1571759083.8466983, 1571759083.850598, 1571759083.854498, 1571759083.8583975, 1571759083.8622973, 1571759083.8661969, 1571759083.8700967, 1571759083.8739963, 1571759083.877896, 1571759083.8817956, 1571759083.8856955, 1571759083.8895953, 1571759083.8934948, 1571759083.8973947, 1571759083.9012942, 1571759083.905194, 1571759083.9090936, 1571759083.9129934, 1571759083.9168932, 1571759083.9207928, 1571759083.9246926, 1571759083.9285922, 1571759083.932492, 1571759083.9363916, 1571759083.9402914, 1571759083.9441912, 1571759083.9480908, 1571759083.9519906, 1571759083.9558902, 1571759083.95979, 1571759083.9636896, 1571759083.9675894, 1571759083.9714892, 1571759083.9753888, 1571759083.9792886, 1571759083.9831882, 1571759083.987088, 1571759083.9909875, 1571759083.9948874, 1571759083.9987872, 1571759084.0026867, 1571759084.0065866, 1571759084.0104861, 1571759084.014386, 1571759084.0182855, 1571759084.0221853, 1571759084.0260851, 1571759084.0299847, 1571759084.0338845, 1571759084.037784, 1571759084.041684, 1571759084.0455835, 1571759084.0494833, 1571759084.053383, 1571759084.0572827, 1571759084.0611825, 1571759084.065082, 1571759084.068982, 1571759084.0728815, 1571759084.0767813, 1571759084.080681, 1571759084.0845807, 1571759084.0884805, 1571759084.09238, 1571759084.0962799, 1571759084.1001794, 1571759084.1040792, 1571759084.1079788, 1571759084.1118786, 1571759084.1157784, 1571759084.119678, 1571759084.1235778, 1571759084.1274774, 1571759084.1313772, 1571759084.1352768, 1571759084.1391766, 1571759084.1430764, 1571759084.146976, 1571759084.1508758, 1571759084.1547754, 1571759084.1586752, 1571759084.1625748, 1571759084.1664746, 1571759084.1703744, 1571759084.174274, 1571759084.1781738, 1571759084.1820734, 1571759084.1859732, 1571759084.1898727, 1571759084.1937726, 1571759084.1976724, 1571759084.201572, 1571759084.2054718, 1571759084.2093713, 1571759084.2132711, 1571759084.2171707, 1571759084.2210705, 1571759084.2249703, 1571759084.22887, 1571759084.2327697, 1571759084.2366693, 1571759084.240569, 1571759084.2444687, 1571759084.2483685, 1571759084.2522683, 1571759084.256168, 1571759084.2600677, 1571759084.2639673, 1571759084.267867, 1571759084.2717667, 1571759084.2756665, 1571759084.2795663, 1571759084.2834659, 1571759084.2873657, 1571759084.2912652, 1571759084.295165, 1571759084.2990646, 1571759084.3029644, 1571759084.306864, 1571759084.3107638, 1571759084.3146636, 1571759084.3185632, 1571759084.322463, 1571759084.3263626, 1571759084.3302624, 1571759084.334162, 1571759084.3380618, 1571759084.3419616, 1571759084.3458612, 1571759084.349761, 1571759084.3536606, 1571759084.3575604, 1571759084.36146, 1571759084.3653598, 1571759084.3692596, 1571759084.3731592, 1571759084.377059, 1571759084.3809586, 1571759084.3848584, 1571759084.388758, 1571759084.3926578, 1571759084.3965576, 1571759084.4004571, 1571759084.404357, 1571759084.4082565, 1571759084.4121563, 1571759084.416056, 1571759084.4199557, 1571759084.4238555, 1571759084.427755, 1571759084.431655, 1571759084.4355545, 1571759084.4394543, 1571759084.443354, 1571759084.4472537, 1571759084.4511535, 1571759084.455053, 1571759084.458953, 1571759084.4628525, 1571759084.4667523, 1571759084.4706519, 1571759084.4745517, 1571759084.4784515, 1571759084.482351, 1571759084.4862509, 1571759084.4901505, 1571759084.4940503, 1571759084.4979498, 1571759084.5018497, 1571759084.5057495, 1571759084.509649, 1571759084.5135489, 1571759084.5174484, 1571759084.5213482, 1571759084.5252478, 1571759084.5291476, 1571759084.5330472, 1571759084.536947, 1571759084.5408468, 1571759084.5447464, 1571759084.5486462, 1571759084.5525458, 1571759084.5564456, 1571759084.5603452, 1571759084.564245, 1571759084.5681448, 1571759084.5720444, 1571759084.5759442, 1571759084.5798438, 1571759084.5837436, 1571759084.5876431, 1571759084.591543, 1571759084.5954428, 1571759084.5993423, 1571759084.6032422, 1571759084.6071417, 1571759084.6110415, 1571759084.6149411, 1571759084.618841, 1571759084.6227407, 1571759084.6266403, 1571759084.6305401, 1571759084.6344397, 1571759084.6383395, 1571759084.642239, 1571759084.646139, 1571759084.6500387, 1571759084.6539383, 1571759084.657838, 1571759084.6617377, 1571759084.6656375, 1571759084.669537, 1571759084.6734369, 1571759084.6773367, 1571759084.6812363, 1571759084.685136, 1571759084.6890357, 1571759084.6929355, 1571759084.696835, 1571759084.7007349, 1571759084.7046347, 1571759084.7085342, 1571759084.712434, 1571759084.7163336, 1571759084.7202334, 1571759084.724133, 1571759084.7280328, 1571759084.7319324, 1571759084.7358322, 1571759084.739732, 1571759084.7436316, 1571759084.7475314, 1571759084.751431, 1571759084.7553308, 1571759084.7592304, 1571759084.7631302, 1571759084.76703, 1571759084.7709296, 1571759084.7748294, 1571759084.778729, 1571759084.7826288, 1571759084.7865283, 1571759084.7904282, 1571759084.794328, 1571759084.7982275, 1571759084.8021274, 1571759084.806027, 1571759084.8099267, 1571759084.8138263, 1571759084.8177261, 1571759084.821626, 1571759084.8255255, 1571759084.8294253, 1571759084.833325, 1571759084.8372247, 1571759084.8411243, 1571759084.845024, 1571759084.848924, 1571759084.8528235, 1571759084.8567233, 1571759084.860623, 1571759084.8645227, 1571759084.8684223, 1571759084.872322, 1571759084.876222, 1571759084.8801215, 1571759084.8840213, 1571759084.8879209, 1571759084.8918207, 1571759084.8957202, 1571759084.89962, 1571759084.9035199, 1571759084.9074194, 1571759084.9113193, 1571759084.9152188, 1571759084.9191186, 1571759084.9230182, 1571759084.926918, 1571759084.9308178, 1571759084.9347174, 1571759084.9386172, 1571759084.9425168, 1571759084.9464166, 1571759084.9503162, 1571759084.954216, 1571759084.9581156, 1571759084.9620154, 1571759084.9659152, 1571759084.9698148, 1571759084.9737146, 1571759084.9776142, 1571759084.981514, 1571759084.9854136, 1571759084.9893134, 1571759084.9932132, 1571759084.9971128, 1571759085.0010126, 1571759085.0049121, 1571759085.008812, 1571759085.0127115, 1571759085.0166113, 1571759085.0205112, 1571759085.0244107, 1571759085.0283105, 1571759085.03221, 1571759085.03611, 1571759085.0400095, 1571759085.0439093, 1571759085.0478091, 1571759085.0517087, 1571759085.0556085, 1571759085.059508, 1571759085.063408, 1571759085.0673075, 1571759085.0712073, 1571759085.075107, 1571759085.0790067, 1571759085.0829065, 1571759085.086806, 1571759085.0907059, 1571759085.0946054, 1571759085.0985053, 1571759085.102405, 1571759085.1063046, 1571759085.1102045, 1571759085.114104, 1571759085.1180038, 1571759085.1219034, 1571759085.1258032, 1571759085.129703, 1571759085.1336026, 1571759085.1375024, 1571759085.141402, 1571759085.1453018, 1571759085.1492014, 1571759085.1531012, 1571759085.1570008, 1571759085.1609006, 1571759085.1648004, 1571759085.1687, 1571759085.1725998, 1571759085.1764994, 1571759085.1803992, 1571759085.1842988, 1571759085.1881986, 1571759085.1920984, 1571759085.195998, 1571759085.1998978, 1571759085.2037973, 1571759085.2076972, 1571759085.2115967, 1571759085.2154965, 1571759085.2193964, 1571759085.223296, 1571759085.2271957, 1571759085.2310953, 1571759085.2349951, 1571759085.2388947, 1571759085.2427945, 1571759085.2466943, 1571759085.250594, 1571759085.2544937, 1571759085.2583933, 1571759085.262293, 1571759085.2661927, 1571759085.2700925, 1571759085.2739923, 1571759085.2778919, 1571759085.2817917, 1571759085.2856913, 1571759085.289591, 1571759085.2934906, 1571759085.2973905, 1571759085.3012903, 1571759085.3051898, 1571759085.3090897, 1571759085.3129892, 1571759085.316889, 1571759085.3207886, 1571759085.3246884, 1571759085.3285882, 1571759085.3324878, 1571759085.3363876, 1571759085.3402872, 1571759085.344187, 1571759085.3480866, 1571759085.3519864, 1571759085.3558862, 1571759085.3597858, 1571759085.3636856, 1571759085.3675852, 1571759085.371485, 1571759085.3753846, 1571759085.3792844, 1571759085.383184, 1571759085.3870838, 1571759085.3909836, 1571759085.3948832, 1571759085.398783, 1571759085.4026825, 1571759085.4065824, 1571759085.410482, 1571759085.4143817, 1571759085.4182816, 1571759085.4221811, 1571759085.426081, 1571759085.4299805, 1571759085.4338803, 1571759085.43778, 1571759085.4416797, 1571759085.4455795, 1571759085.449479, 1571759085.453379, 1571759085.4572785, 1571759085.4611783, 1571759085.4650779, 1571759085.4689777, 1571759085.4728775, 1571759085.476777, 1571759085.480677, 1571759085.4845765, 1571759085.4884763, 1571759085.4923759, 1571759085.4962757, 1571759085.5001755, 1571759085.504075, 1571759085.5079749, 1571759085.5118744, 1571759085.5157743, 1571759085.5196738, 1571759085.5235736, 1571759085.5274734, 1571759085.531373, 1571759085.5352728, 1571759085.5391724, 1571759085.5430722, 1571759085.5469718, 1571759085.5508716, 1571759085.5547714, 1571759085.558671, 1571759085.5625708, 1571759085.5664704, 1571759085.5703702, 1571759085.5742698, 1571759085.5781696, 1571759085.5820692, 1571759085.585969, 1571759085.5898688, 1571759085.5937684, 1571759085.5976682, 1571759085.6015677, 1571759085.6054676, 1571759085.6093671, 1571759085.613267, 1571759085.6171668, 1571759085.6210663, 1571759085.6249661, 1571759085.6288657, 1571759085.6327655, 1571759085.636665, 1571759085.640565, 1571759085.6444647, 1571759085.6483643, 1571759085.652264, 1571759085.6561637, 1571759085.6600635, 1571759085.663963, 1571759085.667863, 1571759085.6717627, 1571759085.6756623, 1571759085.679562, 1571759085.6834617, 1571759085.6873615, 1571759085.691261, 1571759085.6951609, 1571759085.6990607, 1571759085.7029603, 1571759085.70686, 1571759085.7107596, 1571759085.7146595, 1571759085.718559, 1571759085.7224588, 1571759085.7263587, 1571759085.7302582, 1571759085.734158, 1571759085.7380576, 1571759085.7419574, 1571759085.745857, 1571759085.7497568, 1571759085.7536566, 1571759085.7575562, 1571759085.761456, 1571759085.7653556, 1571759085.7692554, 1571759085.773155, 1571759085.7770548, 1571759085.7809546, 1571759085.7848542, 1571759085.788754, 1571759085.7926536, 1571759085.7965534, 1571759085.800453, 1571759085.8043528, 1571759085.8082523, 1571759085.8121521, 1571759085.816052, 1571759085.8199515, 1571759085.8238513, 1571759085.827751, 1571759085.8316507, 1571759085.8355503, 1571759085.8394501, 1571759085.84335, 1571759085.8472495, 1571759085.8511493, 1571759085.855049, 1571759085.8589487, 1571759085.8628483, 1571759085.866748, 1571759085.870648, 1571759085.8745475, 1571759085.8784473, 1571759085.8823469, 1571759085.8862467, 1571759085.8901463, 1571759085.894046, 1571759085.897946, 1571759085.9018455, 1571759085.9057453, 1571759085.9096448, 1571759085.9135447, 1571759085.9174442, 1571759085.921344, 1571759085.9252439, 1571759085.9291434, 1571759085.9330432, 1571759085.9369428, 1571759085.9408426, 1571759085.9447422, 1571759085.948642, 1571759085.9525418, 1571759085.9564414, 1571759085.9603412, 1571759085.9642408, 1571759085.9681406, 1571759085.9720402, 1571759085.97594, 1571759085.9798398, 1571759085.9837394, 1571759085.9876392, 1571759085.9915388, 1571759085.9954386, 1571759085.9993382, 1571759086.003238, 1571759086.0071375, 1571759086.0110373, 1571759086.0149372, 1571759086.0188367, 1571759086.0227365, 1571759086.0266361, 1571759086.030536, 1571759086.0344355, 1571759086.0383353, 1571759086.0422351, 1571759086.0461347, 1571759086.0500345, 1571759086.053934, 1571759086.057834, 1571759086.0617335, 1571759086.0656333, 1571759086.069533, 1571759086.0734327, 1571759086.0773325, 1571759086.081232, 1571759086.085132, 1571759086.0890315, 1571759086.0929313, 1571759086.096831, 1571759086.1007307, 1571759086.1046305, 1571759086.10853, 1571759086.1124299, 1571759086.1163294, 1571759086.1202292, 1571759086.124129, 1571759086.1280286, 1571759086.1319284, 1571759086.135828, 1571759086.1397278, 1571759086.1436274, 1571759086.1475272, 1571759086.151427, 1571759086.1553266, 1571759086.1592264, 1571759086.163126, 1571759086.1670258, 1571759086.1709254, 1571759086.1748252, 1571759086.178725, 1571759086.1826246, 1571759086.1865244, 1571759086.190424, 1571759086.1943238, 1571759086.1982234, 1571759086.2021232, 1571759086.206023, 1571759086.2099226, 1571759086.2138224, 1571759086.217722, 1571759086.2216218, 1571759086.2255213, 1571759086.2294211, 1571759086.2333207, 1571759086.2372205, 1571759086.2411203, 1571759086.24502, 1571759086.2489197, 1571759086.2528193, 1571759086.256719, 1571759086.2606187, 1571759086.2645185, 1571759086.2684183, 1571759086.272318, 1571759086.2762177, 1571759086.2801173, 1571759086.284017, 1571759086.2879167, 1571759086.2918165, 1571759086.2957163, 1571759086.2996159, 1571759086.3035157, 1571759086.3074152, 1571759086.311315, 1571759086.3152146, 1571759086.3191144, 1571759086.3230143, 1571759086.3269138, 1571759086.3308136, 1571759086.3347132, 1571759086.338613, 1571759086.3425126, 1571759086.3464124, 1571759086.3503122, 1571759086.3542118, 1571759086.3581116, 1571759086.3620112, 1571759086.365911, 1571759086.3698106, 1571759086.3737104, 1571759086.3776102, 1571759086.3815098, 1571759086.3854096, 1571759086.3893092, 1571759086.393209, 1571759086.3971086, 1571759086.4010084, 1571759086.4049082, 1571759086.4088078, 1571759086.4127076, 1571759086.4166071, 1571759086.420507, 1571759086.4244065, 1571759086.4283063, 1571759086.432206, 1571759086.4361057, 1571759086.4400055, 1571759086.443905, 1571759086.447805, 1571759086.4517045, 1571759086.4556043, 1571759086.459504, 1571759086.4634037, 1571759086.4673035, 1571759086.471203, 1571759086.475103, 1571759086.4790025, 1571759086.4829023, 1571759086.4868019, 1571759086.4907017, 1571759086.4946015, 1571759086.498501, 1571759086.5024009, 1571759086.5063004, 1571759086.5102003, 1571759086.5140998, 1571759086.5179996, 1571759086.5218995, 1571759086.525799, 1571759086.5296988, 1571759086.5335984, 1571759086.5374982, 1571759086.5413978, 1571759086.5452976, 1571759086.5491974, 1571759086.553097, 1571759086.5569968, 1571759086.5608964, 1571759086.5647962, 1571759086.5686958, 1571759086.5725956, 1571759086.5764954, 1571759086.580395, 1571759086.5842948, 1571759086.5881944, 1571759086.5920942, 1571759086.5959938, 1571759086.5998936, 1571759086.6037934, 1571759086.607693, 1571759086.6115928, 1571759086.6154923, 1571759086.6193922, 1571759086.6232917, 1571759086.6271915, 1571759086.6310914, 1571759086.634991, 1571759086.6388907, 1571759086.6427903, 1571759086.6466901, 1571759086.6505897, 1571759086.6544895, 1571759086.658389, 1571759086.662289, 1571759086.6661887, 1571759086.6700883, 1571759086.673988, 1571759086.6778877, 1571759086.6817875, 1571759086.685687, 1571759086.6895869, 1571759086.6934867, 1571759086.6973863, 1571759086.701286, 1571759086.7051857, 1571759086.7090855, 1571759086.712985, 1571759086.7168849, 1571759086.7207847, 1571759086.7246842, 1571759086.728584, 1571759086.7324836, 1571759086.7363834, 1571759086.740283, 1571759086.7441828, 1571759086.7480826, 1571759086.7519822, 1571759086.755882, 1571759086.7597816, 1571759086.7636814, 1571759086.767581, 1571759086.7714808, 1571759086.7753806, 1571759086.7792802, 1571759086.78318, 1571759086.7870796, 1571759086.7909794, 1571759086.794879, 1571759086.7987788, 1571759086.8026786, 1571759086.8065782, 1571759086.810478, 1571759086.8143775, 1571759086.8182774, 1571759086.822177, 1571759086.8260767, 1571759086.8299766, 1571759086.8338761, 1571759086.837776, 1571759086.8416755, 1571759086.8455753, 1571759086.849475, 1571759086.8533747, 1571759086.8572743, 1571759086.861174, 1571759086.865074, 1571759086.8689735, 1571759086.8728733, 1571759086.8767729, 1571759086.8806727, 1571759086.8845723, 1571759086.888472, 1571759086.892372, 1571759086.8962715, 1571759086.9001713, 1571759086.9040709, 1571759086.9079707, 1571759086.9118702, 1571759086.91577, 1571759086.9196699, 1571759086.9235694, 1571759086.9274693, 1571759086.9313688, 1571759086.9352686, 1571759086.9391682, 1571759086.943068, 1571759086.9469678, 1571759086.9508674, 1571759086.9547672, 1571759086.9586668, 1571759086.9625666, 1571759086.9664662, 1571759086.970366, 1571759086.9742658, 1571759086.9781654, 1571759086.9820652, 1571759086.9859648, 1571759086.9898646, 1571759086.9937642, 1571759086.997664, 1571759087.0015638, 1571759087.0054634, 1571759087.0093632, 1571759087.0132627, 1571759087.0171626, 1571759087.0210621, 1571759087.024962, 1571759087.0288618, 1571759087.0327613, 1571759087.0366611, 1571759087.0405607, 1571759087.0444605, 1571759087.04836, 1571759087.05226, 1571759087.0561597, 1571759087.0600593, 1571759087.0639591, 1571759087.0678587, 1571759087.0717585, 1571759087.075658, 1571759087.079558, 1571759087.0834575, 1571759087.0873573, 1571759087.091257, 1571759087.0951567, 1571759087.0990565, 1571759087.102956, 1571759087.1068559, 1571759087.1107554, 1571759087.1146553, 1571759087.118555, 1571759087.1224546, 1571759087.1263545, 1571759087.130254, 1571759087.1341538, 1571759087.1380534, 1571759087.1419532, 1571759087.145853, 1571759087.1497526, 1571759087.1536524, 1571759087.157552, 1571759087.1614518, 1571759087.1653514, 1571759087.1692512, 1571759087.173151, 1571759087.1770506, 1571759087.1809504, 1571759087.18485, 1571759087.1887498, 1571759087.1926494, 1571759087.1965492, 1571759087.200449, 1571759087.2043486, 1571759087.2082484, 1571759087.212148, 1571759087.2160478, 1571759087.2199473, 1571759087.2238472, 1571759087.227747, 1571759087.2316465, 1571759087.2355464, 1571759087.239446, 1571759087.2433457, 1571759087.2472453, 1571759087.2511451, 1571759087.255045, 1571759087.2589445, 1571759087.2628443, 1571759087.266744, 1571759087.2706437, 1571759087.2745433, 1571759087.278443, 1571759087.2823427, 1571759087.2862425, 1571759087.2901423, 1571759087.2940419, 1571759087.2979417, 1571759087.3018413, 1571759087.305741, 1571759087.3096406, 1571759087.3135405, 1571759087.3174403, 1571759087.3213398, 1571759087.3252397, 1571759087.3291392, 1571759087.333039, 1571759087.3369386, 1571759087.3408384, 1571759087.3447382, 1571759087.3486378, 1571759087.3525376, 1571759087.3564372, 1571759087.360337, 1571759087.3642366, 1571759087.3681364, 1571759087.3720362, 1571759087.3759358, 1571759087.3798356, 1571759087.3837352, 1571759087.387635, 1571759087.3915346, 1571759087.3954344, 1571759087.3993342, 1571759087.4032338, 1571759087.4071336, 1571759087.4110332, 1571759087.414933, 1571759087.4188325, 1571759087.4227324, 1571759087.4266322, 1571759087.4305317, 1571759087.4344316, 1571759087.4383311, 1571759087.442231, 1571759087.4461305, 1571759087.4500303, 1571759087.4539301, 1571759087.4578297, 1571759087.4617295, 1571759087.465629, 1571759087.469529, 1571759087.4734285, 1571759087.4773283, 1571759087.481228, 1571759087.4851277, 1571759087.4890275, 1571759087.492927, 1571759087.496827, 1571759087.5007265, 1571759087.5046263, 1571759087.5085258, 1571759087.5124257, 1571759087.5163255, 1571759087.520225, 1571759087.5241249, 1571759087.5280244, 1571759087.5319242, 1571759087.5358238, 1571759087.5397236, 1571759087.5436234, 1571759087.547523, 1571759087.5514228, 1571759087.5553224, 1571759087.5592222, 1571759087.5631218, 1571759087.5670216, 1571759087.5709214, 1571759087.574821, 1571759087.5787208, 1571759087.5826204, 1571759087.5865202, 1571759087.5904198, 1571759087.5943196, 1571759087.5982194, 1571759087.602119, 1571759087.6060188, 1571759087.6099184, 1571759087.6138182, 1571759087.6177177, 1571759087.6216176, 1571759087.6255174, 1571759087.629417, 1571759087.6333168, 1571759087.6372163, 1571759087.6411161, 1571759087.6450157, 1571759087.6489155, 1571759087.6528153, 1571759087.656715, 1571759087.6606147, 1571759087.6645143, 1571759087.668414, 1571759087.6723137, 1571759087.6762135, 1571759087.6801133, 1571759087.684013, 1571759087.6879127, 1571759087.6918123, 1571759087.695712, 1571759087.6996117, 1571759087.7035115, 1571759087.707411, 1571759087.7113109, 1571759087.7152107, 1571759087.7191103, 1571759087.72301, 1571759087.7269096, 1571759087.7308095, 1571759087.734709, 1571759087.7386088, 1571759087.7425086, 1571759087.7464082, 1571759087.750308, 1571759087.7542076, 1571759087.7581074, 1571759087.762007, 1571759087.7659068, 1571759087.7698066, 1571759087.7737062, 1571759087.777606, 1571759087.7815056, 1571759087.7854054, 1571759087.789305, 1571759087.7932048, 1571759087.7971046, 1571759087.8010042, 1571759087.804904, 1571759087.8088036, 1571759087.8127034, 1571759087.816603, 1571759087.8205028, 1571759087.8244026, 1571759087.8283021, 1571759087.832202, 1571759087.8361015, 1571759087.8400013, 1571759087.843901, 1571759087.8478007, 1571759087.8517005, 1571759087.8556, 1571759087.8595, 1571759087.8633995, 1571759087.8672993, 1571759087.871199, 1571759087.8750987, 1571759087.8789985, 1571759087.882898, 1571759087.886798, 1571759087.8906975, 1571759087.8945973, 1571759087.8984969, 1571759087.9023967, 1571759087.9062965, 1571759087.910196, 1571759087.9140959, 1571759087.9179955, 1571759087.9218953, 1571759087.9257948, 1571759087.9296947, 1571759087.9335942, 1571759087.937494, 1571759087.9413939, 1571759087.9452934, 1571759087.9491932, 1571759087.9530928, 1571759087.9569926, 1571759087.9608922, 1571759087.964792, 1571759087.9686918, 1571759087.9725914, 1571759087.9764912, 1571759087.9803908, 1571759087.9842906, 1571759087.9881902, 1571759087.99209, 1571759087.9959898, 1571759087.9998894, 1571759088.0037892, 1571759088.0076888, 1571759088.0115886, 1571759088.0154881, 1571759088.019388, 1571759088.0232878, 1571759088.0271873, 1571759088.0310872, 1571759088.0349867, 1571759088.0388865, 1571759088.0427861, 1571759088.046686, 1571759088.0505857, 1571759088.0544853, 1571759088.0583851, 1571759088.0622847, 1571759088.0661845, 1571759088.070084, 1571759088.073984, 1571759088.0778837, 1571759088.0817833, 1571759088.085683, 1571759088.0895827, 1571759088.0934825, 1571759088.097382, 1571759088.101282, 1571759088.1051817, 1571759088.1090813, 1571759088.112981, 1571759088.1168807, 1571759088.1207805, 1571759088.12468, 1571759088.1285799, 1571759088.1324794, 1571759088.1363792, 1571759088.140279, 1571759088.1441786, 1571759088.1480784, 1571759088.151978, 1571759088.1558778, 1571759088.1597774, 1571759088.1636772, 1571759088.167577, 1571759088.1714766, 1571759088.1753764, 1571759088.179276, 1571759088.1831758, 1571759088.1870754, 1571759088.1909752, 1571759088.194875, 1571759088.1987746, 1571759088.2026744, 1571759088.206574, 1571759088.2104738, 1571759088.2143734, 1571759088.2182732, 1571759088.222173, 1571759088.2260725, 1571759088.2299724, 1571759088.233872, 1571759088.2377717, 1571759088.2416713, 1571759088.2455711, 1571759088.249471, 1571759088.2533705, 1571759088.2572703, 1571759088.26117, 1571759088.2650697, 1571759088.2689693, 1571759088.272869, 1571759088.276769, 1571759088.2806685, 1571759088.2845683, 1571759088.288468, 1571759088.2923677, 1571759088.2962673, 1571759088.300167, 1571759088.304067, 1571759088.3079665, 1571759088.3118663, 1571759088.3157659, 1571759088.3196657, 1571759088.3235652, 1571759088.327465, 1571759088.3313649, 1571759088.3352644, 1571759088.3391643, 1571759088.3430638, 1571759088.3469636, 1571759088.3508632, 1571759088.354763, 1571759088.3586626, 1571759088.3625624, 1571759088.3664622, 1571759088.3703618, 1571759088.3742616, 1571759088.3781612, 1571759088.382061, 1571759088.3859606, 1571759088.3898604, 1571759088.3937602, 1571759088.3976598, 1571759088.4015596, 1571759088.4054592, 1571759088.409359, 1571759088.4132586, 1571759088.4171584, 1571759088.4210582, 1571759088.4249578, 1571759088.4288576, 1571759088.4327571, 1571759088.436657, 1571759088.4405565, 1571759088.4444563, 1571759088.4483562, 1571759088.4522557, 1571759088.4561555, 1571759088.460055, 1571759088.463955, 1571759088.4678545, 1571759088.4717543, 1571759088.4756541, 1571759088.4795537, 1571759088.4834535, 1571759088.487353, 1571759088.491253, 1571759088.4951525, 1571759088.4990523, 1571759088.502952, 1571759088.5068517, 1571759088.5107515, 1571759088.514651, 1571759088.5185509, 1571759088.5224504, 1571759088.5263503, 1571759088.53025, 1571759088.5341496, 1571759088.5380495, 1571759088.541949, 1571759088.5458488, 1571759088.5497484, 1571759088.5536482, 1571759088.5575478, 1571759088.5614476, 1571759088.5653474, 1571759088.569247, 1571759088.5731468, 1571759088.5770464, 1571759088.5809462, 1571759088.5848458, 1571759088.5887456, 1571759088.5926454, 1571759088.596545, 1571759088.6004448, 1571759088.6043444, 1571759088.6082442, 1571759088.6121438, 1571759088.6160436, 1571759088.6199434, 1571759088.623843, 1571759088.6277428, 1571759088.6316423, 1571759088.6355422, 1571759088.6394417, 1571759088.6433415, 1571759088.6472414, 1571759088.651141, 1571759088.6550407, 1571759088.6589403, 1571759088.6628401, 1571759088.6667397, 1571759088.6706395, 1571759088.6745393, 1571759088.678439, 1571759088.6823387, 1571759088.6862383, 1571759088.690138, 1571759088.6940377, 1571759088.6979375, 1571759088.7018373, 1571759088.7057369, 1571759088.7096367, 1571759088.7135363, 1571759088.717436, 1571759088.7213356, 1571759088.7252355, 1571759088.7291353, 1571759088.7330348, 1571759088.7369347, 1571759088.7408342, 1571759088.744734, 1571759088.7486336, 1571759088.7525334, 1571759088.7564332, 1571759088.7603328, 1571759088.7642326, 1571759088.7681322, 1571759088.772032, 1571759088.7759316, 1571759088.7798314, 1571759088.783731, 1571759088.7876308, 1571759088.7915306, 1571759088.7954302, 1571759088.79933, 1571759088.8032296, 1571759088.8071294, 1571759088.811029, 1571759088.8149288, 1571759088.8188286, 1571759088.8227282, 1571759088.826628, 1571759088.8305275, 1571759088.8344274, 1571759088.838327, 1571759088.8422267, 1571759088.8461266, 1571759088.8500261, 1571759088.853926, 1571759088.8578255, 1571759088.8617253, 1571759088.865625, 1571759088.8695247, 1571759088.8734245, 1571759088.877324, 1571759088.881224, 1571759088.8851235, 1571759088.8890233, 1571759088.8929229, 1571759088.8968227, 1571759088.9007225, 1571759088.904622, 1571759088.908522, 1571759088.9124215, 1571759088.9163213, 1571759088.9202209, 1571759088.9241207, 1571759088.9280205, 1571759088.93192, 1571759088.9358199, 1571759088.9397194, 1571759088.9436193, 1571759088.9475188, 1571759088.9514186, 1571759088.9553185, 1571759088.959218, 1571759088.9631178, 1571759088.9670174, 1571759088.9709172, 1571759088.9748168, 1571759088.9787166, 1571759088.9826162, 1571759088.986516, 1571759088.9904158, 1571759088.9943154, 1571759088.9982152, 1571759089.0021148, 1571759089.0060146, 1571759089.0099142, 1571759089.013814, 1571759089.0177138, 1571759089.0216134, 1571759089.0255132, 1571759089.0294127, 1571759089.0333126, 1571759089.0372121, 1571759089.041112, 1571759089.0450118, 1571759089.0489113, 1571759089.0528111, 1571759089.0567107, 1571759089.0606105, 1571759089.06451, 1571759089.06841, 1571759089.0723097, 1571759089.0762093, 1571759089.0801091, 1571759089.0840087, 1571759089.0879085, 1571759089.091808, 1571759089.095708, 1571759089.0996077, 1571759089.1035073, 1571759089.107407, 1571759089.1113067, 1571759089.1152065, 1571759089.119106, 1571759089.1230059, 1571759089.1269057, 1571759089.1308053, 1571759089.134705, 1571759089.1386046, 1571759089.1425045, 1571759089.146404, 1571759089.1503038, 1571759089.1542037, 1571759089.1581032, 1571759089.162003, 1571759089.1659026, 1571759089.1698024, 1571759089.173702, 1571759089.1776018, 1571759089.1815016, 1571759089.1854012, 1571759089.189301, 1571759089.1932006, 1571759089.1971004, 1571759089.201, 1571759089.2048998, 1571759089.2087994, 1571759089.2126992, 1571759089.216599, 1571759089.2204986, 1571759089.2243984, 1571759089.228298, 1571759089.2321978, 1571759089.2360973, 1571759089.2399971, 1571759089.243897, 1571759089.2477965, 1571759089.2516963, 1571759089.255596, 1571759089.2594957, 1571759089.2633953, 1571759089.2672951, 1571759089.271195, 1571759089.2750945, 1571759089.2789943, 1571759089.282894, 1571759089.2867937, 1571759089.2906933, 1571759089.294593, 1571759089.298493, 1571759089.3023925, 1571759089.3062923, 1571759089.3101919, 1571759089.3140917, 1571759089.3179913, 1571759089.321891, 1571759089.325791, 1571759089.3296905, 1571759089.3335903, 1571759089.3374898, 1571759089.3413897, 1571759089.3452892, 1571759089.349189, 1571759089.3530889, 1571759089.3569884, 1571759089.3608882, 1571759089.3647878, 1571759089.3686876, 1571759089.3725872, 1571759089.376487, 1571759089.3803868, 1571759089.3842864, 1571759089.3881862, 1571759089.3920858, 1571759089.3959856, 1571759089.3998852, 1571759089.403785, 1571759089.4076846, 1571759089.4115844, 1571759089.4154842, 1571759089.4193838, 1571759089.4232836, 1571759089.4271832, 1571759089.431083, 1571759089.4349825, 1571759089.4388824, 1571759089.4427822, 1571759089.4466817, 1571759089.4505816, 1571759089.4544811, 1571759089.458381, 1571759089.4622805, 1571759089.4661803, 1571759089.4700801, 1571759089.4739797, 1571759089.4778795, 1571759089.481779, 1571759089.485679, 1571759089.4895785, 1571759089.4934783, 1571759089.497378, 1571759089.5012777, 1571759089.5051775, 1571759089.509077, 1571759089.512977, 1571759089.5168765, 1571759089.5207763, 1571759089.524676, 1571759089.5285757, 1571759089.5324755, 1571759089.536375, 1571759089.5402749, 1571759089.5441744, 1571759089.5480742, 1571759089.551974, 1571759089.5558736, 1571759089.5597734, 1571759089.563673, 1571759089.5675728, 1571759089.5714724, 1571759089.5753722, 1571759089.579272, 1571759089.5831716, 1571759089.5870714, 1571759089.590971, 1571759089.5948708, 1571759089.5987704, 1571759089.6026702, 1571759089.60657, 1571759089.6104696, 1571759089.6143694, 1571759089.618269, 1571759089.6221688, 1571759089.6260684, 1571759089.6299682, 1571759089.6338677, 1571759089.6377676, 1571759089.6416674, 1571759089.645567, 1571759089.6494668, 1571759089.6533663, 1571759089.6572661, 1571759089.6611657, 1571759089.6650655, 1571759089.6689653, 1571759089.672865, 1571759089.6767647, 1571759089.6806643, 1571759089.684564, 1571759089.6884637, 1571759089.6923635, 1571759089.6962633, 1571759089.700163, 1571759089.7040627, 1571759089.7079623, 1571759089.711862, 1571759089.7157617, 1571759089.7196615, 1571759089.7235613, 1571759089.7274609, 1571759089.7313607, 1571759089.7352602, 1571759089.73916, 1571759089.7430596, 1571759089.7469594, 1571759089.7508593, 1571759089.7547588, 1571759089.7586586, 1571759089.7625582, 1571759089.766458, 1571759089.7703576, 1571759089.7742574, 1571759089.7781572, 1571759089.7820568, 1571759089.7859566, 1571759089.7898562, 1571759089.793756, 1571759089.7976556, 1571759089.8015554, 1571759089.8054552, 1571759089.8093548, 1571759089.8132546, 1571759089.8171542, 1571759089.821054, 1571759089.8249536, 1571759089.8288534, 1571759089.832753, 1571759089.8366528, 1571759089.8405526, 1571759089.8444521, 1571759089.848352, 1571759089.8522515, 1571759089.8561513, 1571759089.860051, 1571759089.8639507, 1571759089.8678505, 1571759089.87175, 1571759089.87565, 1571759089.8795495, 1571759089.8834493, 1571759089.887349, 1571759089.8912487, 1571759089.8951485, 1571759089.899048, 1571759089.902948, 1571759089.9068475, 1571759089.9107473, 1571759089.9146469, 1571759089.9185467, 1571759089.9224465, 1571759089.926346, 1571759089.9302459, 1571759089.9341455, 1571759089.9380453, 1571759089.9419448, 1571759089.9458447, 1571759089.9497445, 1571759089.953644, 1571759089.9575438, 1571759089.9614434, 1571759089.9653432, 1571759089.9692428, 1571759089.9731426, 1571759089.9770424, 1571759089.980942, 1571759089.9848418, 1571759089.9887414, 1571759089.9926412, 1571759089.9965408, 1571759090.0004406, 1571759090.0043404, 1571759090.00824, 1571759090.0121398, 1571759090.0160394, 1571759090.0199392, 1571759090.0238388, 1571759090.0277386, 1571759090.0316384, 1571759090.035538, 1571759090.0394378, 1571759090.0433373, 1571759090.0472372, 1571759090.0511367, 1571759090.0550365, 1571759090.058936, 1571759090.062836, 1571759090.0667357, 1571759090.0706353, 1571759090.0745351, 1571759090.0784347, 1571759090.0823345, 1571759090.086234, 1571759090.090134, 1571759090.0940337, 1571759090.0979333, 1571759090.101833, 1571759090.1057327, 1571759090.1096325, 1571759090.113532, 1571759090.1174319, 1571759090.1213317, 1571759090.1252313, 1571759090.129131, 1571759090.1330307, 1571759090.1369305, 1571759090.14083, 1571759090.1447299, 1571759090.1486297, 1571759090.1525292, 1571759090.156429, 1571759090.1603286, 1571759090.1642284, 1571759090.168128, 1571759090.1720278, 1571759090.1759276, 1571759090.1798272, 1571759090.183727, 1571759090.1876266, 1571759090.1915264, 1571759090.195426, 1571759090.1993258, 1571759090.2032256, 1571759090.2071252, 1571759090.211025, 1571759090.2149246, 1571759090.2188244, 1571759090.222724, 1571759090.2266238, 1571759090.2305236, 1571759090.2344232, 1571759090.238323, 1571759090.2422225, 1571759090.2461224, 1571759090.250022, 1571759090.2539217, 1571759090.2578213, 1571759090.2617211, 1571759090.265621, 1571759090.2695205, 1571759090.2734203, 1571759090.27732, 1571759090.2812197, 1571759090.2851193, 1571759090.289019, 1571759090.292919, 1571759090.2968185, 1571759090.3007183, 1571759090.304618, 1571759090.3085177, 1571759090.3124173, 1571759090.316317, 1571759090.320217, 1571759090.3241165, 1571759090.3280163, 1571759090.3319159, 1571759090.3358157, 1571759090.3397152, 1571759090.343615, 1571759090.3475149, 1571759090.3514144, 1571759090.3553143, 1571759090.3592138, 1571759090.3631136, 1571759090.3670132, 1571759090.370913, 1571759090.3748128, 1571759090.3787124, 1571759090.3826122, 1571759090.3865118, 1571759090.3904116, 1571759090.3943112, 1571759090.398211, 1571759090.4021108, 1571759090.4060104, 1571759090.4099102, 1571759090.4138098, 1571759090.4177096, 1571759090.4216092, 1571759090.425509, 1571759090.4294088, 1571759090.4333084, 1571759090.4372082, 1571759090.4411077, 1571759090.4450076, 1571759090.4489071, 1571759090.452807, 1571759090.4567068, 1571759090.4606063, 1571759090.4645061, 1571759090.4684057, 1571759090.4723055, 1571759090.476205, 1571759090.480105, 1571759090.4840045, 1571759090.4879043, 1571759090.4918041, 1571759090.4957037, 1571759090.4996035, 1571759090.503503, 1571759090.507403, 1571759090.5113025, 1571759090.5152023, 1571759090.519102, 1571759090.5230017, 1571759090.5269015, 1571759090.530801, 1571759090.5347009, 1571759090.5386004, 1571759090.5425003, 1571759090.5464, 1571759090.5502996, 1571759090.5541995, 1571759090.558099, 1571759090.5619988, 1571759090.5658984, 1571759090.5697982, 1571759090.573698, 1571759090.5775976, 1571759090.5814974, 1571759090.585397, 1571759090.5892968, 1571759090.5931964, 1571759090.5970962, 1571759090.600996, 1571759090.6048956, 1571759090.6087954, 1571759090.612695, 1571759090.6165948, 1571759090.6204944, 1571759090.6243942, 1571759090.628294, 1571759090.6321936, 1571759090.6360934, 1571759090.639993, 1571759090.6438928, 1571759090.6477923, 1571759090.6516922, 1571759090.655592, 1571759090.6594915, 1571759090.6633914, 1571759090.667291, 1571759090.6711907, 1571759090.6750903, 1571759090.6789901, 1571759090.6828897, 1571759090.6867895, 1571759090.6906893, 1571759090.694589, 1571759090.6984887, 1571759090.7023883, 1571759090.706288, 1571759090.7101877, 1571759090.7140875, 1571759090.7179873, 1571759090.7218869, 1571759090.7257867, 1571759090.7296863, 1571759090.733586, 1571759090.7374856, 1571759090.7413855, 1571759090.7452853, 1571759090.7491848, 1571759090.7530847, 1571759090.7569842, 1571759090.760884, 1571759090.7647836, 1571759090.7686834, 1571759090.7725832, 1571759090.7764828, 1571759090.7803826, 1571759090.7842822, 1571759090.788182, 1571759090.7920816, 1571759090.7959814, 1571759090.7998812, 1571759090.8037808, 1571759090.8076806, 1571759090.8115802, 1571759090.81548, 1571759090.8193796, 1571759090.8232794, 1571759090.8271792, 1571759090.8310788, 1571759090.8349786, 1571759090.8388782, 1571759090.842778, 1571759090.8466775, 1571759090.8505774, 1571759090.8544772, 1571759090.8583767, 1571759090.8622766, 1571759090.8661761, 1571759090.870076, 1571759090.8739755, 1571759090.8778753, 1571759090.8817751, 1571759090.8856747, 1571759090.8895745, 1571759090.893474, 1571759090.897374, 1571759090.9012735, 1571759090.9051733, 1571759090.9090729, 1571759090.9129727, 1571759090.9168725, 1571759090.920772, 1571759090.924672, 1571759090.9285715, 1571759090.9324713, 1571759090.9363708, 1571759090.9402707, 1571759090.9441705, 1571759090.94807, 1571759090.9519699, 1571759090.9558694, 1571759090.9597692, 1571759090.9636688, 1571759090.9675686, 1571759090.9714684, 1571759090.975368, 1571759090.9792678, 1571759090.9831674, 1571759090.9870672, 1571759090.9909668, 1571759090.9948666, 1571759090.9987664, 1571759091.002666, 1571759091.0065658, 1571759091.0104654, 1571759091.0143652, 1571759091.0182648, 1571759091.0221646, 1571759091.0260644, 1571759091.029964, 1571759091.0338638, 1571759091.0377634, 1571759091.0416632, 1571759091.0455627, 1571759091.0494626, 1571759091.0533624, 1571759091.057262, 1571759091.0611618, 1571759091.0650613, 1571759091.0689611, 1571759091.0728607, 1571759091.0767605, 1571759091.0806603, 1571759091.08456, 1571759091.0884597, 1571759091.0923593, 1571759091.096259, 1571759091.1001587, 1571759091.1040585, 1571759091.107958, 1571759091.111858, 1571759091.1157577, 1571759091.1196573, 1571759091.123557, 1571759091.1274567, 1571759091.1313565, 1571759091.135256, 1571759091.1391559, 1571759091.1430557, 1571759091.1469553, 1571759091.150855, 1571759091.1547546, 1571759091.1586545, 1571759091.162554, 1571759091.1664538, 1571759091.1703537, 1571759091.1742532, 1571759091.178153, 1571759091.1820526, 1571759091.1859524, 1571759091.189852, 1571759091.1937518, 1571759091.1976516, 1571759091.2015512, 1571759091.205451, 1571759091.2093506, 1571759091.2132504, 1571759091.21715, 1571759091.2210498, 1571759091.2249496, 1571759091.2288492, 1571759091.232749, 1571759091.2366486, 1571759091.2405484, 1571759091.244448, 1571759091.2483478, 1571759091.2522476, 1571759091.2561471, 1571759091.260047, 1571759091.2639465, 1571759091.2678463, 1571759091.271746, 1571759091.2756457, 1571759091.2795455, 1571759091.2834451, 1571759091.287345, 1571759091.2912445, 1571759091.2951443, 1571759091.299044, 1571759091.3029437, 1571759091.3068435, 1571759091.310743, 1571759091.314643, 1571759091.3185425, 1571759091.3224423, 1571759091.3263419, 1571759091.3302417, 1571759091.3341413, 1571759091.338041, 1571759091.3419409, 1571759091.3458405, 1571759091.3497403, 1571759091.3536398, 1571759091.3575397, 1571759091.3614392, 1571759091.365339, 1571759091.3692389, 1571759091.3731384, 1571759091.3770382, 1571759091.3809378, 1571759091.3848376, 1571759091.3887372, 1571759091.392637, 1571759091.3965368, 1571759091.4004364, 1571759091.4043362, 1571759091.4082358, 1571759091.4121356, 1571759091.4160352, 1571759091.419935], "samples": [[824.7985229492188, 900.952392578125, 923.91943359375, 915.054931640625, NaN, NaN], [795.3846435546875, 848.1685180664062, 848.1685180664062, 817.5457763671875, NaN, NaN], [842.930419921875, 806.6666870117188, 785.3113403320312, 755.091552734375, NaN, NaN], [895.7142944335938, 852.6007080078125, 850.989013671875, 845.7509155273438, NaN, NaN], [851.7948608398438, 900.1465454101562, 924.7252807617188, 938.8278198242188, NaN, NaN], [802.6373901367188, 867.912109375, 883.6264038085938, 877.5823974609375, NaN, NaN], [853.003662109375, 812.7106323242188, 798.2051391601562, 776.8497924804688, NaN, NaN], [896.1171875, 832.05126953125, 820.7692260742188, 807.4725341796875, NaN, NaN], [872.7472534179688, 900.5494384765625, 919.084228515625, 922.3076782226562, NaN, NaN], [812.3076782226562, 893.2966918945312, 906.5933837890625, 903.3699340820312, NaN, NaN], [821.1721801757812, 820.3662719726562, 801.8314819335938, 766.3735961914062, NaN, NaN], [904.5787353515625, 825.2014770507812, 811.90478515625, 793.3699340820312, NaN, NaN], [901.7582397460938, 890.0732421875, 902.1611938476562, 925.5311279296875, NaN, NaN], [816.3369750976562, 900.5494384765625, 913.040283203125, 932.3809814453125, NaN, NaN], [799.8168334960938, 838.901123046875, 829.6337280273438, 810.6959838867188, NaN, NaN], [871.1355590820312, 811.5018310546875, 796.5933837890625, 773.2234497070312, NaN, NaN], [896.5201416015625, 875.1648559570312, 886.4468994140625, 880.0, NaN, NaN], [815.5311279296875, 912.6373901367188, 938.8278198242188, 931.97802734375, NaN, NaN], [759.9267578125, 858.6447143554688, 850.5860595703125, 807.4725341796875, NaN, NaN], [824.3956298828125, 815.1282348632812, 778.4615478515625, 732.12451171875, NaN, NaN], [885.6410522460938, 850.1831665039062, 836.08056640625, 810.6959838867188, NaN, NaN], [855.018310546875, 903.7728881835938, 919.4871826171875, 896.5201416015625, NaN, NaN], [815.1282348632812, 877.9853515625, 882.8204956054688, 847.7655639648438, NaN, NaN], [841.7216186523438, 814.7252807617188, 797.3992919921875, 769.1941528320312, NaN, NaN], [887.6557006835938, 829.6337280273438, 828.02197265625, 821.97802734375, NaN, NaN], [824.7985229492188, 886.4468994140625, 910.2197875976562, 903.3699340820312, NaN, NaN], [767.5823974609375, 883.6264038085938, 898.937744140625, 855.018310546875, NaN, NaN], [821.1721801757812, 819.96337890625, 800.2197875976562, 736.959716796875, NaN, NaN], [879.1941528320312, 807.87548828125, 790.952392578125, 757.5091552734375, NaN, NaN], [871.94140625, 873.5531005859375, 890.4761962890625, 874.3589477539062, NaN, NaN], [807.87548828125, 890.879150390625, 910.6226806640625, 885.2380981445312, NaN, NaN], [807.4725341796875, 833.6630249023438, 824.7985229492188, 790.952392578125, NaN, NaN], [890.879150390625, 815.93408203125, 794.1758422851562, 775.6410522460938, NaN, NaN], [875.5677490234375, 858.2417602539062, 854.6153564453125, 833.6630249023438, NaN, NaN], [778.8644409179688, 894.1025390625, 908.2051391601562, 884.029296875, NaN, NaN], [769.5970458984375, 857.032958984375, 852.6007080078125, 828.8278198242188, NaN, NaN], [836.4835205078125, 807.87548828125, 782.087890625, 757.106201171875, NaN, NaN], [882.8204956054688, 842.12451171875, 833.2600708007812, 828.4249267578125, NaN, NaN], [841.3186645507812, 894.908447265625, 913.040283203125, 901.3552856445312, NaN, NaN], [788.1318969726562, 873.1502075195312, 880.8058471679688, 836.4835205078125, NaN, NaN], [823.99267578125, 814.7252807617188, 791.3552856445312, 750.6593627929688, NaN, NaN], [896.5201416015625, 821.1721801757812, 806.6666870117188, 793.7728881835938, NaN, NaN], [868.3150024414062, 883.6264038085938, 896.923095703125, 891.2820434570312, NaN, NaN], [784.908447265625, 887.6557006835938, 900.952392578125, 882.4176025390625, NaN, NaN], [809.084228515625, 822.7838745117188, 801.8314819335938, 788.937744140625, NaN, NaN], [884.029296875, 808.6813354492188, 779.6703491210938, 769.1941528320312, NaN, NaN], [879.1941528320312, 871.1355590820312, 876.7765502929688, 865.4945068359375, NaN, NaN], [831.6483764648438, 905.7875366210938, 919.89013671875, 917.4725341796875, NaN, NaN], [812.3076782226562, 842.12451171875, 825.2014770507812, 809.084228515625, NaN, NaN], [847.3626098632812, 795.7875366210938, 765.5677490234375, 746.2271118164062, NaN, NaN], [886.4468994140625, 850.989013671875, 850.5860595703125, 852.1978149414062, NaN, NaN], [816.3369750976562, 902.5640869140625, 919.084228515625, 917.4725341796875, NaN, NaN], [780.879150390625, 865.4945068359375, 859.8534545898438, 838.4981689453125, NaN, NaN], [851.7948608398438, 813.113525390625, 788.5347900390625, 777.6557006835938, NaN, NaN], [902.967041015625, 841.7216186523438, 832.4542236328125, 838.4981689453125, NaN, NaN], [853.003662109375, 909.010986328125, 925.93408203125, 921.90478515625, NaN, NaN], [770.8058471679688, 882.4176025390625, 888.4615478515625, 858.6447143554688, NaN, NaN], [813.91943359375, 811.5018310546875, 787.7289428710938, 776.4468994140625, NaN, NaN], [874.7619018554688, 819.96337890625, 800.6226806640625, 827.6190185546875, NaN, NaN], [870.7326049804688, 885.2380981445312, 899.7435913085938, 911.4285888671875, NaN, NaN], [823.99267578125, 893.2966918945312, 913.040283203125, 899.3406372070312, NaN, NaN], [800.6226806640625, 826.8131713867188, 810.2930297851562, 790.952392578125, NaN, NaN], [865.8974609375, 808.2783813476562, 784.908447265625, 779.2673950195312, NaN, NaN], [869.120849609375, 867.106201171875, 874.7619018554688, 867.5091552734375, NaN, NaN], [783.6996459960938, 898.937744140625, 915.8607788085938, 890.0732421875, NaN, NaN], [788.5347900390625, 846.959716796875, 839.3040161132812, 804.2490844726562, NaN, NaN], [863.4798583984375, 799.8168334960938, 774.8351440429688, 747.8388061523438, NaN, NaN], [877.5823974609375, 840.10986328125, 837.2893676757812, 834.06591796875, NaN, NaN], [798.2051391601562, 889.6703491210938, 906.5933837890625, 899.3406372070312, NaN, NaN], [765.970703125, 856.6300659179688, 855.8241577148438, 826.8131713867188, NaN, NaN], [865.091552734375, 807.4725341796875, 785.3113403320312, 769.1941528320312, NaN, NaN], [896.5201416015625, 826.00732421875, 816.7399291992188, 819.1575317382812, NaN, NaN], [827.2161254882812, 883.6264038085938, 902.5640869140625, 897.7289428710938, NaN, NaN], [772.4176025390625, 878.3883056640625, 891.2820434570312, 866.3003540039062, NaN, NaN], [806.6666870117188, 812.7106323242188, 794.5787353515625, 771.2088012695312, NaN, NaN], [888.8644409179688, 809.4871826171875, 795.3846435546875, 775.6410522460938, NaN, NaN], [868.7179565429688, 877.5823974609375, 893.2966918945312, 868.7179565429688, NaN, NaN], [792.967041015625, 894.5054931640625, 918.2783813476562, 900.1465454101562, NaN, NaN], [809.4871826171875, 825.2014770507812, 821.1721801757812, 803.4432373046875, NaN, NaN], [863.8828125, 792.967041015625, 770.8058471679688, 761.94140625, NaN, NaN], [880.4029541015625, 854.2124633789062, 857.8388061523438, 873.5531005859375, NaN, NaN], [819.1575317382812, 894.1025390625, 915.8607788085938, 922.3076782226562, NaN, NaN], [785.7142944335938, 842.5274658203125, 842.5274658203125, 829.2307739257812, NaN, NaN], [851.7948608398438, 796.5933837890625, 778.4615478515625, 765.970703125, NaN, NaN], [883.2234497070312, 834.06591796875, 835.2747192382812, 845.7509155273438, NaN, NaN], [831.2454223632812, 892.4908447265625, 922.7106323242188, 927.94873046875, NaN, NaN], [787.7289428710938, 865.8974609375, 880.0, 850.5860595703125, NaN, NaN], [836.4835205078125, 797.3992919921875, 778.05859375, 759.5238037109375, NaN, NaN], [892.4908447265625, 813.91943359375, 803.040283203125, 802.6373901367188, NaN, NaN], [845.3479614257812, 885.6410522460938, 903.3699340820312, 906.1904907226562, NaN, NaN], [780.4761962890625, 881.2088012695312, 897.7289428710938, 895.7142944335938, NaN, NaN], [811.098876953125, 811.098876953125, 795.7875366210938, 796.996337890625, NaN, NaN], [886.4468994140625, 803.8461303710938, 786.1171875, 807.069580078125, NaN, NaN], [891.6849975585938, 880.0, 892.087890625, 905.7875366210938, NaN, NaN], [809.4871826171875, 899.3406372070312, 912.2344360351562, 918.2783813476562, NaN, NaN], [790.1465454101562, 828.4249267578125, 809.89013671875, 821.5750732421875, NaN, NaN], [871.1355590820312, 803.4432373046875, 774.029296875, 783.6996459960938, NaN, NaN], [898.5347900390625, 859.4505615234375, 857.4359130859375, 845.3479614257812, NaN, NaN], [827.2161254882812, 905.3846435546875, 928.7545776367188, 900.5494384765625, NaN, NaN], [797.3992919921875, 855.8241577148438, 855.018310546875, 825.6043701171875, NaN, NaN], [874.7619018554688, 800.2197875976562, 778.05859375, 777.2527465820312, NaN, NaN], [937.6190185546875, 844.5421142578125, 848.1685180664062, 855.018310546875, NaN, NaN], [861.062255859375, 894.5054931640625, 914.6520385742188, 915.8607788085938, NaN, NaN], [756.3003540039062, 863.076904296875, 866.7033081054688, 846.959716796875, NaN, NaN], [809.4871826171875, 803.040283203125, 785.3113403320312, 774.4322509765625, NaN, NaN], [879.5970458984375, 813.113525390625, 804.6520385742188, 817.94873046875, NaN, NaN], [855.018310546875, 882.0146484375, 899.7435913085938, 904.981689453125, NaN, NaN], [802.2344360351562, 882.8204956054688, 900.1465454101562, 881.6116943359375, NaN, NaN], [836.08056640625, 819.1575317382812, 807.4725341796875, 820.3662719726562, NaN, NaN], [893.6996459960938, 802.2344360351562, 784.908447265625, 830.8424682617188, NaN, NaN], [866.7033081054688, 867.106201171875, 877.5823974609375, 882.8204956054688, NaN, NaN], [803.040283203125, 897.7289428710938, 915.8607788085938, 886.0439453125, NaN, NaN], [812.7106323242188, 837.6923217773438, 823.5897216796875, 779.6703491210938, NaN, NaN], [897.7289428710938, 805.054931640625, 772.4176025390625, 764.3589477539062, NaN, NaN], [905.7875366210938, 851.3919677734375, 840.5128173828125, 860.2564086914062, NaN, NaN], [817.94873046875, 893.2966918945312, 902.967041015625, 904.1758422851562, NaN, NaN], [828.4249267578125, 862.6740112304688, 861.062255859375, 847.3626098632812, NaN, NaN], [881.2088012695312, 810.2930297851562, 782.4908447265625, 774.029296875, NaN, NaN], [885.6410522460938, 826.00732421875, 806.6666870117188, 816.3369750976562, NaN, NaN], [843.3333129882812, 891.6849975585938, 902.967041015625, 918.2783813476562, NaN, NaN], [804.2490844726562, 883.6264038085938, 880.8058471679688, 864.2857055664062, NaN, NaN], [852.6007080078125, 819.5604248046875, 784.5054931640625, 786.1171875, NaN, NaN], [896.1171875, 820.7692260742188, 795.7875366210938, 820.7692260742188, NaN, NaN], [882.4176025390625, 892.4908447265625, 904.981689453125, 896.5201416015625, NaN, NaN], [824.7985229492188, 905.3846435546875, 917.4725341796875, 899.3406372070312, NaN, NaN], [838.09521484375, 838.4981689453125, 809.4871826171875, 805.4578857421875, NaN, NaN], [914.2490844726562, 817.94873046875, 778.4615478515625, 787.3259887695312, NaN, NaN], [902.967041015625, 877.5823974609375, 871.1355590820312, 888.8644409179688, NaN, NaN], [838.901123046875, 909.4139404296875, 916.2637329101562, 924.3223266601562, NaN, NaN], [822.3809814453125, 851.3919677734375, 824.7985229492188, 834.8717651367188, NaN, NaN], [875.1648559570312, 809.4871826171875, 765.970703125, 793.3699340820312, NaN, NaN], [923.5164794921875, 859.047607421875, 848.1685180664062, 870.3296508789062, NaN, NaN], [861.8681030273438, 914.6520385742188, 927.1428833007812, 931.97802734375, NaN, NaN], [799.8168334960938, 868.3150024414062, 857.032958984375, 840.5128173828125, NaN, NaN], [859.4505615234375, 804.2490844726562, 772.4176025390625, 772.4176025390625, NaN, NaN], [901.7582397460938, 829.2307739257812, 806.2637329101562, 816.3369750976562, NaN, NaN], [852.6007080078125, 897.7289428710938, 899.3406372070312, 893.6996459960938, NaN, NaN], [802.2344360351562, 891.2820434570312, 888.05859375, 865.4945068359375, NaN, NaN], [828.02197265625, 818.3516235351562, 780.879150390625, 782.087890625, NaN, NaN], [894.5054931640625, 821.97802734375, 789.7435913085938, 815.5311279296875, NaN, NaN], [874.7619018554688, 886.4468994140625, 877.9853515625, 894.908447265625, NaN, NaN], [806.6666870117188, 890.0732421875, 879.1941528320312, 877.9853515625, NaN, NaN], [828.02197265625, 829.6337280273438, 797.3992919921875, 795.3846435546875, NaN, NaN], [881.6116943359375, 804.6520385742188, 761.94140625, 783.2966918945312, NaN, NaN], [890.4761962890625, 863.8828125, 850.1831665039062, 875.5677490234375, NaN, NaN], [810.2930297851562, 902.5640869140625, 903.7728881835938, 926.3369750976562, NaN, NaN], [789.7435913085938, 854.2124633789062, 832.05126953125, 827.6190185546875, NaN, NaN], [874.3589477539062, 811.90478515625, 770.0, 756.3003540039062, NaN, NaN], [891.6849975585938, 848.1685180664062, 819.96337890625, 830.8424682617188, NaN, NaN], [822.3809814453125, 902.967041015625, 900.5494384765625, 919.4871826171875, NaN, NaN], [773.2234497070312, 873.1502075195312, 857.4359130859375, 853.8095092773438, NaN, NaN], [846.959716796875, 816.7399291992188, 771.2088012695312, 759.120849609375, NaN, NaN], [909.4139404296875, 833.2600708007812, 797.8021850585938, 801.4285888671875, NaN, NaN], [850.989013671875, 894.5054931640625, 892.087890625, 896.5201416015625, NaN, NaN], [788.1318969726562, 896.923095703125, 896.5201416015625, 888.05859375, NaN, NaN], [827.6190185546875, 828.8278198242188, 802.6373901367188, 795.3846435546875, NaN, NaN], [895.3113403320312, 811.098876953125, 777.2527465820312, 776.4468994140625, NaN, NaN], [883.6264038085938, 880.8058471679688, 873.1502075195312, 868.3150024414062, NaN, NaN], [786.5201416015625, 900.5494384765625, 898.937744140625, 882.8204956054688, NaN, NaN], [794.981689453125, 838.09521484375, 805.8607788085938, 792.967041015625, NaN, NaN], [880.4029541015625, 810.2930297851562, 766.7765502929688, 779.6703491210938, NaN, NaN], [882.8204956054688, 866.3003540039062, 848.974365234375, 860.2564086914062, NaN, NaN], [814.7252807617188, 909.8168334960938, 910.6226806640625, 918.6813354492188, NaN, NaN], [782.893798828125, 857.4359130859375, 833.6630249023438, 836.4835205078125, NaN, NaN], [834.4688720703125, 799.4139404296875, 748.6447143554688, 751.8681030273438, NaN, NaN], [890.4761962890625, 833.6630249023438, 796.996337890625, 816.7399291992188, NaN, NaN], [842.930419921875, 890.0732421875, 873.1502075195312, 883.6264038085938, NaN, NaN], [786.923095703125, 868.3150024414062, 845.7509155273438, 840.5128173828125, NaN, NaN], [823.1868286132812, 801.8314819335938, 763.9560546875, 765.970703125, NaN, NaN], [874.3589477539062, 811.098876953125, 779.2673950195312, 806.6666870117188, NaN, NaN], [848.1685180664062, 882.4176025390625, 877.9853515625, 894.1025390625, NaN, NaN], [784.1025390625, 882.8204956054688, 880.0, 867.5091552734375, NaN, NaN], [810.6959838867188, 814.3223266601562, 785.7142944335938, 787.7289428710938, NaN, NaN], [892.087890625, 805.054931640625, 773.2234497070312, 801.025634765625, NaN, NaN], [888.4615478515625, 864.6886596679688, 859.4505615234375, 888.4615478515625, NaN, NaN], [798.6080322265625, 884.4322509765625, 892.893798828125, 910.2197875976562, NaN, NaN], [787.7289428710938, 828.02197265625, 806.2637329101562, 808.6813354492188, NaN, NaN], [891.6849975585938, 804.2490844726562, 769.1941528320312, 774.4322509765625, NaN, NaN], [925.1282348632812, 859.8534545898438, 851.7948608398438, 850.989013671875, NaN, NaN], [818.7545776367188, 889.2673950195312, 896.923095703125, 889.6703491210938, NaN, NaN], [775.2380981445312, 842.930419921875, 834.06591796875, 821.97802734375, NaN, NaN], [855.8241577148438, 795.3846435546875, 756.7033081054688, 773.6264038085938, NaN, NaN], [902.5640869140625, 827.2161254882812, 799.8168334960938, 841.3186645507812, NaN, NaN], [840.5128173828125, 886.8497924804688, 889.6703491210938, 914.2490844726562, NaN, NaN], [787.3259887695312, 866.3003540039062, 864.6886596679688, 868.3150024414062, NaN, NaN], [854.6153564453125, 807.069580078125, 779.2673950195312, 781.2820434570312, NaN, NaN], [898.5347900390625, 803.8461303710938, 778.8644409179688, 787.3259887695312, NaN, NaN], [858.6447143554688, 864.2857055664062, 869.120849609375, 890.879150390625, NaN, NaN], [819.5604248046875, 878.3883056640625, 886.8497924804688, 899.7435913085938, NaN, NaN], [815.5311279296875, 811.098876953125, 794.1758422851562, 783.6996459960938, NaN, NaN], [874.3589477539062, 792.5640869140625, 768.7911987304688, 770.4029541015625, NaN, NaN], [877.5823974609375, 855.018310546875, 852.6007080078125, 868.7179565429688, NaN, NaN], [811.098876953125, 884.8351440429688, 887.2527465820312, 906.996337890625, NaN, NaN], [820.3662719726562, 838.09521484375, 828.8278198242188, 833.2600708007812, NaN, NaN], [879.1941528320312, 797.3992919921875, 770.4029541015625, 784.5054931640625, NaN, NaN], [874.7619018554688, 831.2454223632812, 822.3809814453125, 850.1831665039062, NaN, NaN], [832.05126953125, 884.8351440429688, 902.967041015625, 934.3956298828125, NaN, NaN], [816.7399291992188, 858.2417602539062, 856.6300659179688, 869.9267578125, NaN, NaN], [853.4066162109375, 799.8168334960938, 776.8497924804688, 772.4176025390625, NaN, NaN], [881.2088012695312, 814.7252807617188, 804.6520385742188, 808.2783813476562, NaN, NaN], [854.6153564453125, 883.2234497070312, 909.4139404296875, 915.054931640625, NaN, NaN], [822.7838745117188, 884.8351440429688, 899.3406372070312, 903.3699340820312, NaN, NaN], [846.1538696289062, 811.90478515625, 781.6849975585938, 794.1758422851562, NaN, NaN], [897.7289428710938, 805.4578857421875, 788.5347900390625, 804.2490844726562, NaN, NaN], [868.3150024414062, 875.1648559570312, 892.087890625, 894.1025390625, NaN, NaN], [811.90478515625, 888.8644409179688, 909.010986328125, 887.2527465820312, NaN, NaN], [833.2600708007812, 817.94873046875, 817.1428833007812, 778.05859375, NaN, NaN], [861.4652099609375, 788.937744140625, 786.5201416015625, 760.7326049804688, NaN, NaN], [855.018310546875, 844.945068359375, 878.3883056640625, 849.7802124023438, NaN, NaN], [786.923095703125, 878.7911987304688, 932.7838745117188, 892.087890625, NaN, NaN], [763.1502075195312, 821.1721801757812, 854.2124633789062, 809.4871826171875, NaN, NaN], [846.1538696289062, 775.2380981445312, 790.5494384765625, 759.5238037109375, NaN, NaN], [886.8497924804688, 820.7692260742188, 853.003662109375, 836.08056640625, NaN, NaN], [827.2161254882812, 877.5823974609375, 930.7692260742188, 894.1025390625, NaN, NaN], [764.3589477539062, 852.1978149414062, 891.2820434570312, 830.4395751953125, NaN, NaN], [812.7106323242188, 792.967041015625, 806.6666870117188, 775.2380981445312, NaN, NaN], [882.8204956054688, 811.5018310546875, 839.7069702148438, 838.901123046875, NaN, NaN], [836.4835205078125, 869.5238037109375, 917.87548828125, 913.8461303710938, NaN, NaN], [765.1648559570312, 858.2417602539062, 887.2527465820312, 884.8351440429688, NaN, NaN], [852.1978149414062, 795.3846435546875, 798.2051391601562, 794.1758422851562, NaN, NaN], [901.3552856445312, 790.952392578125, 799.010986328125, 794.1758422851562, NaN, NaN], [831.6483764648438, 860.2564086914062, 902.967041015625, 897.7289428710938, NaN, NaN], [787.3259887695312, 873.9560546875, 919.084228515625, 890.879150390625, NaN, NaN], [802.2344360351562, 815.1282348632812, 829.2307739257812, 788.1318969726562, NaN, NaN], [861.8681030273438, 794.981689453125, 797.8021850585938, 780.879150390625, NaN, NaN], [863.4798583984375, 843.3333129882812, 864.2857055664062, 857.4359130859375, NaN, NaN], [796.1904907226562, 878.7911987304688, 917.4725341796875, 898.1318969726562, NaN, NaN], [789.7435913085938, 837.6923217773438, 849.7802124023438, 819.96337890625, NaN, NaN], [880.0, 794.981689453125, 777.6557006835938, 759.5238037109375, NaN, NaN], [911.025634765625, 830.4395751953125, 836.4835205078125, 815.1282348632812, NaN, NaN], [832.05126953125, 886.8497924804688, 914.6520385742188, 898.1318969726562, NaN, NaN], [780.879150390625, 865.4945068359375, 877.5823974609375, 872.3442993164062, NaN, NaN], [827.6190185546875, 800.6226806640625, 794.5787353515625, 784.1025390625, NaN, NaN], [889.6703491210938, 809.084228515625, 810.2930297851562, 813.113525390625, NaN, NaN], [848.5714111328125, 873.5531005859375, 896.5201416015625, 894.1025390625, NaN, NaN], [785.7142944335938, 875.5677490234375, 892.4908447265625, 871.94140625, NaN, NaN], [811.90478515625, 813.91943359375, 805.4578857421875, 803.040283203125, NaN, NaN], [895.7142944335938, 795.3846435546875, 792.5640869140625, 809.4871826171875, NaN, NaN], [884.4322509765625, 855.4212646484375, 877.1795043945312, 878.7911987304688, NaN, NaN], [795.3846435546875, 891.2820434570312, 914.6520385742188, 893.6996459960938, NaN, NaN], [793.3699340820312, 829.2307739257812, 823.5897216796875, 793.7728881835938, NaN, NaN], [869.9267578125, 788.1318969726562, 767.5823974609375, 758.3150024414062, NaN, NaN], [892.4908447265625, 839.3040161132812, 848.5714111328125, 850.989013671875, NaN, NaN], [803.8461303710938, 882.4176025390625, 912.6373901367188, 887.6557006835938, NaN, NaN], [767.5823974609375, 843.7362670898438, 857.8388061523438, 819.96337890625, NaN, NaN], [830.03662109375, 788.937744140625, 781.2820434570312, 765.1648559570312, NaN, NaN], [886.8497924804688, 814.7252807617188, 821.1721801757812, 812.3076782226562, NaN, NaN], [850.5860595703125, 881.2088012695312, 917.069580078125, 894.908447265625, NaN, NaN], [769.5970458984375, 857.8388061523438, 877.5823974609375, 837.2893676757812, NaN, NaN], [832.4542236328125, 790.1465454101562, 776.4468994140625, 750.2564086914062, NaN, NaN], [888.8644409179688, 799.4139404296875, 794.1758422851562, 779.6703491210938, NaN, NaN], [827.6190185546875, 862.2710571289062, 891.2820434570312, 871.1355590820312, NaN, NaN], [776.0439453125, 871.1355590820312, 905.7875366210938, 888.8644409179688, NaN, NaN], [799.8168334960938, 805.054931640625, 807.4725341796875, 792.1611938476562, NaN, NaN], [872.3442993164062, 788.5347900390625, 785.7142944335938, 771.6116943359375, NaN, NaN], [851.3919677734375, 850.1831665039062, 872.3442993164062, 853.8095092773438, NaN, NaN], [769.5970458984375, 875.5677490234375, 906.996337890625, 875.1648559570312, NaN, NaN], [789.7435913085938, 819.96337890625, 824.3956298828125, 804.2490844726562, NaN, NaN], [849.3773193359375, 779.6703491210938, 771.2088012695312, 778.05859375, NaN, NaN], [857.4359130859375, 822.3809814453125, 840.5128173828125, 843.3333129882812, NaN, NaN], [805.8607788085938, 872.3442993164062, 905.7875366210938, 884.4322509765625, NaN, NaN], [776.4468994140625, 842.12451171875, 855.018310546875, 817.5457763671875, NaN, NaN], [865.8974609375, 797.8021850585938, 788.937744140625, 778.4615478515625, NaN, NaN], [901.7582397460938, 817.5457763671875, 816.3369750976562, 807.069580078125, NaN, NaN], [798.6080322265625, 869.120849609375, 887.2527465820312, 856.2271118164062, NaN, NaN], [761.94140625, 865.091552734375, 877.5823974609375, 843.3333129882812, NaN, NaN], [809.89013671875, 800.2197875976562, 786.923095703125, 761.94140625, NaN, NaN], [865.8974609375, 800.2197875976562, 792.1611938476562, 781.2820434570312, NaN, NaN], [844.945068359375, 869.5238037109375, 894.908447265625, 867.912109375, NaN, NaN], [796.5933837890625, 883.2234497070312, 917.87548828125, 879.1941528320312, NaN, NaN], [811.098876953125, 817.94873046875, 823.5897216796875, 801.025634765625, NaN, NaN], [864.6886596679688, 793.7728881835938, 775.6410522460938, 768.7911987304688, NaN, NaN], [868.3150024414062, 857.8388061523438, 861.8681030273438, 857.4359130859375, NaN, NaN], [809.084228515625, 894.5054931640625, 917.069580078125, 904.981689453125, NaN, NaN], [794.1758422851562, 839.7069702148438, 836.4835205078125, 816.3369750976562, NaN, NaN], [841.7216186523438, 798.2051391601562, 776.0439453125, 750.6593627929688, NaN, NaN], [870.7326049804688, 836.886474609375, 836.08056640625, 808.6813354492188, NaN, NaN], [828.4249267578125, 895.7142944335938, 917.069580078125, 897.3259887695312, NaN, NaN], [778.8644409179688, 865.8974609375, 867.106201171875, 846.5567626953125, NaN, NaN], [822.7838745117188, 801.8314819335938, 776.8497924804688, 758.7179565429688, NaN, NaN], [900.1465454101562, 824.3956298828125, 815.1282348632812, 807.069580078125, NaN, NaN], [862.6740112304688, 891.2820434570312, 915.054931640625, 887.6557006835938, NaN, NaN], [791.3552856445312, 887.6557006835938, 899.3406372070312, 855.4212646484375, NaN, NaN], [814.7252807617188, 814.3223266601562, 799.010986328125, 772.8204956054688, NaN, NaN], [871.1355590820312, 804.2490844726562, 793.7728881835938, 786.1171875, NaN, NaN], [870.7326049804688, 882.0146484375, 897.3259887695312, 889.2673950195312, NaN, NaN], [793.3699340820312, 895.7142944335938, 915.4578857421875, 894.1025390625, NaN, NaN], [779.6703491210938, 826.4102783203125, 816.3369750976562, 791.3552856445312, NaN, NaN], [865.8974609375, 802.6373901367188, 788.5347900390625, 771.6116943359375, NaN, NaN], [893.2966918945312, 855.4212646484375, 868.3150024414062, 840.10986328125, NaN, NaN], [843.7362670898438, 897.3259887695312, 925.93408203125, 883.2234497070312, NaN, NaN], [800.6226806640625, 849.7802124023438, 860.2564086914062, 815.1282348632812, NaN, NaN], [858.2417602539062, 805.054931640625, 794.981689453125, 771.6116943359375, NaN, NaN], [913.8461303710938, 850.1831665039062, 858.2417602539062, 847.7655639648438, NaN, NaN], [835.2747192382812, 898.937744140625, 925.5311279296875, 898.5347900390625, NaN, NaN], [784.1025390625, 867.106201171875, 873.1502075195312, 840.915771484375, NaN, NaN], [842.12451171875, 808.6813354492188, 793.3699340820312, 782.4908447265625, NaN, NaN], [884.8351440429688, 819.1575317382812, 817.94873046875, 806.6666870117188, NaN, NaN], [830.4395751953125, 882.8204956054688, 912.2344360351562, 877.5823974609375, NaN, NaN], [791.7582397460938, 881.6116943359375, 911.025634765625, 866.3003540039062, NaN, NaN], [826.4102783203125, 816.3369750976562, 815.93408203125, 786.5201416015625, NaN, NaN], [859.8534545898438, 803.8461303710938, 796.996337890625, 787.7289428710938, NaN, NaN], [862.2710571289062, 871.1355590820312, 886.8497924804688, 862.2710571289062, NaN, NaN], [782.087890625, 896.1171875, 915.054931640625, 867.106201171875, NaN, NaN], [779.2673950195312, 837.6923217773438, 828.8278198242188, 792.1611938476562, NaN, NaN], [875.970703125, 806.6666870117188, 785.3113403320312, 771.6116943359375, NaN, NaN], [869.9267578125, 847.7655639648438, 846.959716796875, 826.8131713867188, NaN, NaN], [780.4761962890625, 887.2527465820312, 906.996337890625, 876.7765502929688, NaN, NaN], [777.6557006835938, 856.6300659179688, 865.091552734375, 836.08056640625, NaN, NaN], [862.6740112304688, 805.054931640625, 786.923095703125, 774.4322509765625, NaN, NaN], [894.5054931640625, 821.5750732421875, 803.4432373046875, 823.5897216796875, NaN, NaN], [831.6483764648438, 884.4322509765625, 890.0732421875, 898.1318969726562, NaN, NaN], [776.4468994140625, 872.3442993164062, 867.5091552734375, 841.7216186523438, NaN, NaN], [830.4395751953125, 810.6959838867188, 779.2673950195312, 757.912109375, NaN, NaN], [875.5677490234375, 815.5311279296875, 793.7728881835938, 763.1502075195312, NaN, NaN], [838.09521484375, 885.6410522460938, 885.6410522460938, 855.4212646484375, NaN, NaN], [783.2966918945312, 896.5201416015625, 889.2673950195312, 861.062255859375, NaN, NaN], [799.010986328125, 827.6190185546875, 800.6226806640625, 777.2527465820312, NaN, NaN], [880.0, 805.4578857421875, 784.5054931640625, 780.4761962890625, NaN, NaN], [882.0146484375, 863.4798583984375, 869.5238037109375, 862.6740112304688, NaN, NaN], [803.8461303710938, 901.3552856445312, 909.010986328125, 888.4615478515625, NaN, NaN], [790.5494384765625, 852.1978149414062, 829.6337280273438, 813.5164794921875, NaN, NaN], [865.091552734375, 813.113525390625, 770.8058471679688, 771.2088012695312, NaN, NaN], [894.1025390625, 867.5091552734375, 842.12451171875, 835.6776733398438, NaN, NaN], [834.06591796875, 925.1282348632812, 919.084228515625, 913.4432373046875, NaN, NaN], [799.010986328125, 881.2088012695312, 842.930419921875, 820.7692260742188, NaN, NaN], [855.4212646484375, 828.02197265625, 758.3150024414062, 745.018310546875, NaN, NaN], [907.8021850585938, 857.4359130859375, 794.1758422851562, 814.7252807617188, NaN, NaN], [850.5860595703125, 917.87548828125, 876.3735961914062, 892.087890625, NaN, NaN], [790.5494384765625, 906.1904907226562, 861.062255859375, 865.8974609375, NaN, NaN], [838.901123046875, 836.08056640625, 762.7472534179688, 770.0, NaN, NaN], [915.4578857421875, 841.7216186523438, 783.2966918945312, 796.996337890625, NaN, NaN], [872.7472534179688, 903.7728881835938, 874.7619018554688, 882.8204956054688, NaN, NaN], [781.2820434570312, 905.3846435546875, 868.7179565429688, 867.5091552734375, NaN, NaN], [800.2197875976562, 842.12451171875, 782.087890625, 777.6557006835938, NaN, NaN], [886.4468994140625, 819.5604248046875, 755.091552734375, 759.9267578125, NaN, NaN], [897.7289428710938, 884.4322509765625, 843.7362670898438, 851.7948608398438, NaN, NaN], [800.2197875976562, 918.6813354492188, 890.0732421875, 884.029296875, NaN, NaN], [795.7875366210938, 869.9267578125, 818.7545776367188, 803.8461303710938, NaN, NaN], [888.05859375, 830.03662109375, 764.3589477539062, 771.2088012695312, NaN, NaN], [899.7435913085938, 864.6886596679688, 823.1868286132812, 837.2893676757812, NaN, NaN], [823.1868286132812, 917.4725341796875, 899.3406372070312, 895.3113403320312, NaN, NaN], [773.6264038085938, 884.4322509765625, 849.3773193359375, 825.6043701171875, NaN, NaN], [851.3919677734375, 825.6043701171875, 765.5677490234375, 757.912109375, NaN, NaN], [910.2197875976562, 842.12451171875, 796.1904907226562, 806.2637329101562, NaN, NaN], [825.2014770507812, 903.3699340820312, 881.6116943359375, 896.5201416015625, NaN, NaN], [777.6557006835938, 906.5933837890625, 872.7472534179688, 888.05859375, NaN, NaN], [830.8424682617188, 840.5128173828125, 785.3113403320312, 788.1318969726562, NaN, NaN], [886.4468994140625, 819.5604248046875, 765.1648559570312, 772.4176025390625, NaN, NaN], [865.091552734375, 879.5970458984375, 857.032958984375, 860.2564086914062, NaN, NaN], [786.1171875, 901.3552856445312, 890.4761962890625, 877.1795043945312, NaN, NaN], [799.8168334960938, 841.3186645507812, 800.2197875976562, 807.87548828125, NaN, NaN], [898.1318969726562, 815.5311279296875, 763.1502075195312, 787.3259887695312, NaN, NaN], [910.2197875976562, 871.5384521484375, 844.5421142578125, 848.1685180664062, NaN, NaN], [824.3956298828125, 917.87548828125, 903.7728881835938, 884.029296875, NaN, NaN], [803.8461303710938, 867.912109375, 834.4688720703125, 812.3076782226562, NaN, NaN], [858.2417602539062, 807.87548828125, 755.8974609375, 749.4505615234375, NaN, NaN], [889.6703491210938, 846.1538696289062, 812.3076782226562, 809.084228515625, NaN, NaN], [829.2307739257812, 906.1904907226562, 893.2966918945312, 882.4176025390625, NaN, NaN], [778.05859375, 882.0146484375, 853.003662109375, 833.2600708007812, NaN, NaN], [846.1538696289062, 819.5604248046875, 772.4176025390625, 759.120849609375, NaN, NaN], [906.996337890625, 830.03662109375, 794.1758422851562, 790.952392578125, NaN, NaN], [845.3479614257812, 892.087890625, 878.7911987304688, 865.8974609375, NaN, NaN], [763.9560546875, 884.8351440429688, 869.9267578125, 855.4212646484375, NaN, NaN], [806.6666870117188, 821.1721801757812, 780.0732421875, 779.6703491210938, NaN, NaN], [879.1941528320312, 816.3369750976562, 775.2380981445312, 778.4615478515625, NaN, NaN], [863.076904296875, 875.1648559570312, 864.6886596679688, 859.4505615234375, NaN, NaN], [789.7435913085938, 900.1465454101562, 893.6996459960938, 883.6264038085938, NaN, NaN], [783.2966918945312, 842.5274658203125, 805.054931640625, 795.7875366210938, NaN, NaN], [866.3003540039062, 813.113525390625, 767.1795043945312, 779.2673950195312, NaN, NaN], [887.2527465820312, 867.912109375, 846.959716796875, 855.8241577148438, NaN, NaN], [788.5347900390625, 901.3552856445312, 900.5494384765625, 885.6410522460938, NaN, NaN], [752.2710571289062, 859.047607421875, 843.3333129882812, 810.6959838867188, NaN, NaN], [829.6337280273438, 810.2930297851562, 774.8351440429688, 766.3735961914062, NaN, NaN], [894.908447265625, 839.3040161132812, 812.7106323242188, 811.098876953125, NaN, NaN], [835.6776733398438, 898.5347900390625, 893.2966918945312, 857.8388061523438, NaN, NaN], [747.4359130859375, 877.1795043945312, 864.2857055664062, 834.06591796875, NaN, NaN], [828.02197265625, 826.4102783203125, 787.7289428710938, 769.5970458984375, NaN, NaN], [896.5201416015625, 834.4688720703125, 792.5640869140625, 778.4615478515625, NaN, NaN], [830.03662109375, 888.05859375, 863.8828125, 834.06591796875, NaN, NaN], [779.6703491210938, 894.5054931640625, 875.1648559570312, 837.6923217773438, NaN, NaN], [806.2637329101562, 829.2307739257812, 786.5201416015625, 779.2673950195312, NaN, NaN], [858.6447143554688, 810.2930297851562, 764.3589477539062, 775.6410522460938, NaN, NaN], [849.3773193359375, 871.94140625, 855.018310546875, 847.7655639648438, NaN, NaN], [789.3406372070312, 900.952392578125, 900.1465454101562, 873.5531005859375, NaN, NaN], [781.6849975585938, 846.1538696289062, 823.5897216796875, 800.6226806640625, NaN, NaN], [860.2564086914062, 810.6959838867188, 774.029296875, 772.8204956054688, NaN, NaN], [873.9560546875, 849.3773193359375, 832.05126953125, 845.3479614257812, NaN, NaN], [813.91943359375, 895.7142944335938, 891.2820434570312, 901.7582397460938, NaN, NaN], [809.89013671875, 869.9267578125, 849.7802124023438, 826.8131713867188, NaN, NaN], [836.886474609375, 813.5164794921875, 775.6410522460938, 760.7326049804688, NaN, NaN], [859.8534545898438, 832.4542236328125, 802.2344360351562, 803.040283203125, NaN, NaN], [830.4395751953125, 894.908447265625, 891.6849975585938, 882.0146484375, NaN, NaN], [798.2051391601562, 890.0732421875, 884.029296875, 875.970703125, NaN, NaN], [823.5897216796875, 818.7545776367188, 777.6557006835938, 784.908447265625, NaN, NaN], [881.2088012695312, 811.90478515625, 773.6264038085938, 782.893798828125, NaN, NaN], [857.4359130859375, 877.5823974609375, 869.5238037109375, 864.6886596679688, NaN, NaN], [780.0732421875, 892.4908447265625, 884.4322509765625, 866.7033081054688, NaN, NaN], [797.8021850585938, 830.03662109375, 791.3552856445312, 784.5054931640625, NaN, NaN], [870.7326049804688, 803.4432373046875, 761.5384521484375, 768.3883056640625, NaN, NaN], [884.029296875, 863.4798583984375, 848.5714111328125, 832.05126953125, NaN, NaN], [804.6520385742188, 899.3406372070312, 892.087890625, 878.7911987304688, NaN, NaN], [767.1795043945312, 846.959716796875, 815.93408203125, 805.054931640625, NaN, NaN], [836.08056640625, 805.054931640625, 759.120849609375, 755.4945068359375, NaN, NaN], [882.0146484375, 845.3479614257812, 822.3809814453125, 822.3809814453125, NaN, NaN], [822.7838745117188, 899.7435913085938, 890.0732421875, 882.4176025390625, NaN, NaN], [774.4322509765625, 870.3296508789062, 845.3479614257812, 836.4835205078125, NaN, NaN], [836.886474609375, 811.90478515625, 764.3589477539062, 752.2710571289062, NaN, NaN], [898.937744140625, 841.7216186523438, 801.4285888671875, 799.4139404296875, NaN, NaN], [835.6776733398438, 900.5494384765625, 889.6703491210938, 884.8351440429688, NaN, NaN], [755.4945068359375, 884.8351440429688, 863.4798583984375, 842.930419921875, NaN, NaN], [807.069580078125, 824.3956298828125, 777.2527465820312, 766.3735961914062, NaN, NaN], [865.8974609375, 819.5604248046875, 778.4615478515625, 783.2966918945312, NaN, NaN], [846.959716796875, 886.4468994140625, 877.1795043945312, 867.5091552734375, NaN, NaN], [778.05859375, 898.1318969726562, 897.3259887695312, 857.032958984375, NaN, NaN], [795.3846435546875, 836.886474609375, 813.113525390625, 782.087890625, NaN, NaN], [875.1648559570312, 818.7545776367188, 783.6996459960938, 781.6849975585938, NaN, NaN], [850.989013671875, 864.6886596679688, 845.3479614257812, 840.10986328125, NaN, NaN], [788.937744140625, 903.3699340820312, 901.7582397460938, 891.2820434570312, NaN, NaN], [780.0732421875, 860.2564086914062, 836.4835205078125, 831.2454223632812, NaN, NaN], [835.2747192382812, 809.084228515625, 762.7472534179688, 760.3296508789062, NaN, NaN], [882.8204956054688, 836.886474609375, 811.90478515625, 803.8461303710938, NaN, NaN], [836.08056640625, 887.6557006835938, 884.4322509765625, 869.5238037109375, NaN, NaN], [801.8314819335938, 874.7619018554688, 856.6300659179688, 834.06591796875, NaN, NaN], [835.6776733398438, 816.3369750976562, 774.8351440429688, 760.7326049804688, NaN, NaN], [887.2527465820312, 826.4102783203125, 792.1611938476562, 790.5494384765625, NaN, NaN], [839.3040161132812, 887.6557006835938, 878.7911987304688, 880.8058471679688, NaN, NaN], [756.3003540039062, 883.2234497070312, 866.3003540039062, 856.2271118164062, NaN, NaN], [818.7545776367188, 821.97802734375, 782.087890625, 759.9267578125, NaN, NaN], [890.0732421875, 811.90478515625, 783.2966918945312, 757.912109375, NaN, NaN], [858.6447143554688, 874.7619018554688, 876.7765502929688, 857.032958984375, NaN, NaN], [796.996337890625, 908.6080322265625, 916.6666870117188, 893.6996459960938, NaN, NaN], [803.4432373046875, 848.5714111328125, 827.6190185546875, 805.054931640625, NaN, NaN], [871.94140625, 809.4871826171875, 771.2088012695312, 772.8204956054688, NaN, NaN], [892.087890625, 859.8534545898438, 847.3626098632812, 852.1978149414062, NaN, NaN], [803.8461303710938, 897.3259887695312, 905.3846435546875, 887.2527465820312, NaN, NaN], [786.1171875, 862.2710571289062, 852.6007080078125, 821.97802734375, NaN, NaN], [871.1355590820312, 815.5311279296875, 784.5054931640625, 775.6410522460938, NaN, NaN], [892.4908447265625, 839.7069702148438, 818.7545776367188, 819.5604248046875, NaN, NaN], [842.5274658203125, 902.967041015625, 906.5933837890625, 884.4322509765625, NaN, NaN], [783.2966918945312, 879.1941528320312, 869.120849609375, 857.032958984375, NaN, NaN], [819.1575317382812, 810.2930297851562, 772.4176025390625, 798.2051391601562, NaN, NaN], [880.0, 819.1575317382812, 788.5347900390625, 794.1758422851562, NaN, NaN], [839.3040161132812, 885.6410522460938, 872.7472534179688, 857.032958984375, NaN, NaN], [770.8058471679688, 892.087890625, 872.3442993164062, 840.5128173828125, NaN, NaN], [798.6080322265625, 832.8571166992188, 780.4761962890625, 753.4798583984375, NaN, NaN], [878.7911987304688, 822.7838745117188, 768.3883056640625, 765.5677490234375, NaN, NaN], [876.7765502929688, 880.4029541015625, 863.076904296875, 856.6300659179688, NaN, NaN], [802.2344360351562, 907.3992919921875, 902.967041015625, 883.2234497070312, NaN, NaN], [785.7142944335938, 850.989013671875, 819.5604248046875, 804.2490844726562, NaN, NaN], [841.7216186523438, 810.2930297851562, 764.7619018554688, 764.7619018554688, NaN, NaN], [862.2710571289062, 854.2124633789062, 828.8278198242188, 830.03662109375, NaN, NaN], [829.6337280273438, 905.3846435546875, 892.4908447265625, 880.4029541015625, NaN, NaN], [796.1904907226562, 871.1355590820312, 840.915771484375, 836.4835205078125, NaN, NaN], [842.5274658203125, 826.4102783203125, 785.3113403320312, 799.4139404296875, NaN, NaN], [877.9853515625, 847.3626098632812, 813.91943359375, 816.3369750976562, NaN, NaN], [799.010986328125, 892.4908447265625, 878.3883056640625, 854.2124633789062, NaN, NaN], [768.3883056640625, 884.8351440429688, 865.4945068359375, 821.97802734375, NaN, NaN], [819.96337890625, 822.7838745117188, 772.8204956054688, 765.1648559570312, NaN, NaN], [869.120849609375, 818.7545776367188, 772.0146484375, 783.2966918945312, NaN, NaN], [838.4981689453125, 881.2088012695312, 863.076904296875, 847.7655639648438, NaN, NaN], [793.3699340820312, 897.3259887695312, 877.9853515625, 852.6007080078125, NaN, NaN], [810.6959838867188, 840.10986328125, 799.8168334960938, 786.5201416015625, NaN, NaN], [844.5421142578125, 815.5311279296875, 770.0, 763.1502075195312, NaN, NaN], [842.930419921875, 872.7472534179688, 846.5567626953125, 838.901123046875, NaN, NaN], [787.7289428710938, 912.2344360351562, 900.1465454101562, 886.8497924804688, NaN, NaN], [790.1465454101562, 861.8681030273438, 828.4249267578125, 797.3992919921875, NaN, NaN], [876.3735961914062, 822.3809814453125, 776.0439453125, 758.3150024414062, NaN, NaN], [898.1318969726562, 861.062255859375, 836.08056640625, 838.09521484375, NaN, NaN], [842.5274658203125, 913.040283203125, 908.2051391601562, 916.6666870117188, NaN, NaN], [816.3369750976562, 885.2380981445312, 859.047607421875, 837.6923217773438, NaN, NaN], [846.959716796875, 823.5897216796875, 768.3883056640625, 753.076904296875, NaN, NaN], [873.5531005859375, 836.08056640625, 798.6080322265625, 801.4285888671875, NaN, NaN], [830.03662109375, 898.5347900390625, 893.2966918945312, 885.2380981445312, NaN, NaN], [762.3442993164062, 887.6557006835938, 875.1648559570312, 859.4505615234375, NaN, NaN], [819.5604248046875, 822.3809814453125, 782.893798828125, 765.970703125, NaN, NaN], [892.893798828125, 819.96337890625, 779.2673950195312, 796.996337890625, NaN, NaN], [869.5238037109375, 889.2673950195312, 879.1941528320312, 909.4139404296875, NaN, NaN], [797.3992919921875, 900.1465454101562, 899.7435913085938, 886.4468994140625, NaN, NaN], [782.4908447265625, 834.4688720703125, 803.040283203125, 770.8058471679688, NaN, NaN], [867.106201171875, 813.113525390625, 770.4029541015625, 748.2417602539062, NaN, NaN], [873.1502075195312, 866.7033081054688, 848.5714111328125, 830.03662109375, NaN, NaN], [773.2234497070312, 900.952392578125, 899.3406372070312, 873.1502075195312, NaN, NaN], [756.7033081054688, 852.1978149414062, 826.4102783203125, 793.7728881835938, NaN, NaN], [844.945068359375, 810.6959838867188, 772.0146484375, 760.3296508789062, NaN, NaN], [878.3883056640625, 842.930419921875, 828.4249267578125, 829.2307739257812, NaN, NaN], [814.3223266601562, 889.6703491210938, 889.2673950195312, 872.3442993164062, NaN, NaN], [783.6996459960938, 871.94140625, 855.4212646484375, 830.8424682617188, NaN, NaN], [824.7985229492188, 819.1575317382812, 780.879150390625, 773.2234497070312, NaN, NaN], [867.5091552734375, 830.4395751953125, 793.3699340820312, 796.1904907226562, NaN, NaN], [828.02197265625, 893.2966918945312, 876.7765502929688, 878.3883056640625, NaN, NaN], [764.3589477539062, 894.1025390625, 876.7765502929688, 859.8534545898438, NaN, NaN], [819.5604248046875, 832.4542236328125, 792.967041015625, 778.8644409179688, NaN, NaN], [895.7142944335938, 823.99267578125, 788.5347900390625, 782.893798828125, NaN, NaN], [874.3589477539062, 875.1648559570312, 862.2710571289062, 852.1978149414062, NaN, NaN], [810.6959838867188, 895.7142944335938, 894.1025390625, 879.1941528320312, NaN, NaN], [800.2197875976562, 844.945068359375, 819.96337890625, 794.5787353515625, NaN, NaN], [874.3589477539062, 819.96337890625, 774.4322509765625, 758.7179565429688, NaN, NaN], [865.091552734375, 861.8681030273438, 835.6776733398438, 834.06591796875, NaN, NaN], [776.4468994140625, 898.1318969726562, 888.05859375, 890.4761962890625, NaN, NaN], [790.952392578125, 869.5238037109375, 841.7216186523438, 830.03662109375, NaN, NaN], [892.087890625, 821.1721801757812, 769.1941528320312, 773.2234497070312, NaN, NaN], [912.2344360351562, 845.7509155273438, 801.025634765625, 830.4395751953125, NaN, NaN], [830.8424682617188, 905.3846435546875, 886.4468994140625, 891.6849975585938, NaN, NaN], [774.029296875, 883.2234497070312, 857.4359130859375, 840.915771484375, NaN, NaN], [838.901123046875, 825.6043701171875, 774.8351440429688, 759.120849609375, NaN, NaN], [906.5933837890625, 835.2747192382812, 784.908447265625, 789.3406372070312, NaN, NaN], [865.4945068359375, 896.5201416015625, 874.3589477539062, 886.8497924804688, NaN, NaN], [802.2344360351562, 901.7582397460938, 884.4322509765625, 891.2820434570312, NaN, NaN], [836.4835205078125, 836.4835205078125, 787.3259887695312, 799.8168334960938, NaN, NaN], [911.025634765625, 820.7692260742188, 760.7326049804688, 778.8644409179688, NaN, NaN], [901.3552856445312, 876.7765502929688, 840.5128173828125, 847.3626098632812, NaN, NaN], [809.084228515625, 902.5640869140625, 874.7619018554688, 871.94140625, NaN, NaN], [797.3992919921875, 848.5714111328125, 799.010986328125, 803.8461303710938, NaN, NaN], [867.912109375, 805.4578857421875, 750.6593627929688, 765.5677490234375, NaN, NaN], [889.6703491210938, 855.4212646484375, 826.8131713867188, 836.08056640625, NaN, NaN], [824.3956298828125, 902.967041015625, 891.6849975585938, 896.923095703125, NaN, NaN], [769.5970458984375, 858.2417602539062, 827.2161254882812, 816.3369750976562, NaN, NaN], [839.3040161132812, 807.4725341796875, 761.1355590820312, 760.7326049804688, NaN, NaN], [903.7728881835938, 831.2454223632812, 799.4139404296875, 823.1868286132812, NaN, NaN], [859.8534545898438, 895.7142944335938, 883.2234497070312, 892.4908447265625, NaN, NaN], [800.2197875976562, 887.2527465820312, 868.3150024414062, 865.4945068359375, NaN, NaN], [824.3956298828125, 816.7399291992188, 770.8058471679688, 772.4176025390625, NaN, NaN], [893.2966918945312, 820.3662719726562, 780.879150390625, 797.8021850585938, NaN, NaN], [859.8534545898438, 886.0439453125, 873.1502075195312, 875.1648559570312, NaN, NaN], [753.4798583984375, 886.0439453125, 867.912109375, 838.4981689453125, NaN, NaN], [781.2820434570312, 830.4395751953125, 784.5054931640625, 778.8644409179688, NaN, NaN], [873.9560546875, 813.5164794921875, 762.3442993164062, 783.6996459960938, NaN, NaN], [887.6557006835938, 869.120849609375, 844.1392211914062, 855.4212646484375, NaN, NaN], [814.3223266601562, 902.967041015625, 888.05859375, 894.5054931640625, NaN, NaN], [791.7582397460938, 850.5860595703125, 819.1575317382812, 826.8131713867188, NaN, NaN], [886.4468994140625, 809.084228515625, 761.5384521484375, 769.1941528320312, NaN, NaN], [898.1318969726562, 849.7802124023438, 814.7252807617188, 818.3516235351562, NaN, NaN], [795.7875366210938, 900.5494384765625, 892.893798828125, 873.1502075195312, NaN, NaN], [755.091552734375, 865.8974609375, 843.7362670898438, 801.4285888671875, NaN, NaN], [829.6337280273438, 815.93408203125, 766.3735961914062, 738.5714111328125, NaN, NaN], [893.2966918945312, 836.08056640625, 799.8168334960938, 794.5787353515625, NaN, NaN], [843.3333129882812, 890.879150390625, 881.2088012695312, 871.94140625, NaN, NaN], [776.4468994140625, 892.087890625, 879.5970458984375, 879.5970458984375, NaN, NaN], [840.10986328125, 839.7069702148438, 805.054931640625, 818.3516235351562, NaN, NaN], [890.0732421875, 824.3956298828125, 783.2966918945312, 787.7289428710938, NaN, NaN], [837.2893676757812, 882.8204956054688, 868.7179565429688, 855.018310546875, NaN, NaN], [770.8058471679688, 904.981689453125, 900.1465454101562, 863.4798583984375, NaN, NaN], [788.1318969726562, 844.5421142578125, 808.6813354492188, 782.4908447265625, NaN, NaN], [870.7326049804688, 821.1721801757812, 772.8204956054688, 775.2380981445312, NaN, NaN], [875.1648559570312, 877.1795043945312, 849.3773193359375, 852.6007080078125, NaN, NaN], [822.7838745117188, 916.6666870117188, 907.3992919921875, 895.3113403320312, NaN, NaN], [795.3846435546875, 860.6593627929688, 835.6776733398438, 820.7692260742188, NaN, NaN], [828.02197265625, 807.069580078125, 753.076904296875, 769.1941528320312, NaN, NaN], [882.8204956054688, 848.5714111328125, 808.6813354492188, 827.2161254882812, NaN, NaN], [817.94873046875, 900.5494384765625, 892.087890625, 890.0732421875, NaN, NaN], [781.6849975585938, 878.3883056640625, 859.4505615234375, 826.4102783203125, NaN, NaN], [840.10986328125, 821.97802734375, 783.2966918945312, 757.106201171875, NaN, NaN], [864.2857055664062, 830.03662109375, 803.040283203125, 800.6226806640625, NaN, NaN], [815.1282348632812, 890.879150390625, 890.0732421875, 865.4945068359375, NaN, NaN], [779.6703491210938, 889.6703491210938, 879.1941528320312, 840.5128173828125, NaN, NaN], [830.03662109375, 830.4395751953125, 787.3259887695312, 770.0, NaN, NaN], [869.9267578125, 819.1575317382812, 780.879150390625, 797.3992919921875, NaN, NaN], [849.3773193359375, 877.1795043945312, 865.091552734375, 874.3589477539062, NaN, NaN], [784.908447265625, 900.5494384765625, 892.4908447265625, 871.1355590820312, NaN, NaN], [813.113525390625, 844.5421142578125, 809.89013671875, 793.3699340820312, NaN, NaN], [885.6410522460938, 823.1868286132812, 775.6410522460938, 780.4761962890625, NaN, NaN], [879.5970458984375, 874.3589477539062, 844.945068359375, 834.4688720703125, NaN, NaN], [805.4578857421875, 901.3552856445312, 887.2527465820312, 867.5091552734375, NaN, NaN], [784.5054931640625, 859.8534545898438, 832.4542236328125, 822.3809814453125, NaN, NaN], [859.4505615234375, 813.91943359375, 764.3589477539062, 774.029296875, NaN, NaN], [892.4908447265625, 844.1392211914062, 807.87548828125, 828.8278198242188, NaN, NaN], [817.94873046875, 905.7875366210938, 883.2234497070312, 895.7142944335938, NaN, NaN], [779.2673950195312, 888.4615478515625, 855.8241577148438, 854.6153564453125, NaN, NaN], [864.6886596679688, 832.8571166992188, 792.5640869140625, 802.6373901367188, NaN, NaN], [900.952392578125, 833.2600708007812, 803.040283203125, 808.2783813476562, NaN, NaN], [841.7216186523438, 882.4176025390625, 870.3296508789062, 857.4359130859375, NaN, NaN], [791.7582397460938, 891.6849975585938, 877.9853515625, 864.6886596679688, NaN, NaN], [818.7545776367188, 830.8424682617188, 792.1611938476562, 789.3406372070312, NaN, NaN], [882.0146484375, 814.3223266601562, 773.6264038085938, 801.025634765625, NaN, NaN], [852.1978149414062, 872.7472534179688, 861.062255859375, 866.7033081054688, NaN, NaN], [794.981689453125, 902.5640869140625, 900.1465454101562, 857.4359130859375, NaN, NaN], [823.99267578125, 847.3626098632812, 818.7545776367188, 777.6557006835938, NaN, NaN], [878.7911987304688, 809.89013671875, 772.8204956054688, 757.106201171875, NaN, NaN], [872.7472534179688, 858.2417602539062, 837.2893676757812, 831.2454223632812, NaN, NaN], [796.996337890625, 902.5640869140625, 895.7142944335938, 877.5823974609375, NaN, NaN], [770.8058471679688, 871.5384521484375, 849.7802124023438, 824.7985229492188, NaN, NaN], [839.3040161132812, 815.93408203125, 773.2234497070312, 763.9560546875, NaN, NaN], [881.6116943359375, 831.6483764648438, 804.6520385742188, 797.8021850585938, NaN, NaN], [845.7509155273438, 897.7289428710938, 896.5201416015625, 886.0439453125, NaN, NaN], [799.8168334960938, 892.087890625, 890.879150390625, 874.7619018554688, NaN, NaN], [827.6190185546875, 820.7692260742188, 793.3699340820312, 785.3113403320312, NaN, NaN], [875.1648559570312, 813.91943359375, 784.5054931640625, 796.996337890625, NaN, NaN], [845.3479614257812, 876.7765502929688, 865.8974609375, 871.94140625, NaN, NaN], [803.4432373046875, 893.2966918945312, 884.029296875, 873.9560546875, NaN, NaN], [799.010986328125, 831.6483764648438, 799.010986328125, 775.2380981445312, NaN, NaN], [843.3333129882812, 809.89013671875, 769.1941528320312, 757.5091552734375, NaN, NaN], [863.8828125, 867.106201171875, 855.018310546875, 843.7362670898438, NaN, NaN], [797.3992919921875, 898.1318969726562, 896.923095703125, 904.1758422851562, NaN, NaN], [799.8168334960938, 848.5714111328125, 813.91943359375, 828.4249267578125, NaN, NaN], [886.0439453125, 804.6520385742188, 751.8681030273438, 737.7655639648438, NaN, NaN], [851.7948608398438, 837.6923217773438, 811.90478515625, 805.8607788085938, NaN, NaN], [800.6226806640625, 889.6703491210938, 886.8497924804688, 871.94140625, NaN, NaN], [781.2820434570312, 865.091552734375, 848.5714111328125, 823.99267578125, NaN, NaN], [823.1868286132812, 807.87548828125, 771.2088012695312, 770.4029541015625, NaN, NaN], [892.4908447265625, 830.03662109375, 808.2783813476562, 829.2307739257812, NaN, NaN], [836.4835205078125, 886.0439453125, 880.4029541015625, 888.05859375, NaN, NaN], [763.1502075195312, 873.5531005859375, 855.4212646484375, 823.5897216796875, NaN, NaN], [792.1611938476562, 813.91943359375, 777.6557006835938, 752.2710571289062, NaN, NaN], [877.5823974609375, 809.4871826171875, 775.2380981445312, 763.5531005859375, NaN, NaN], [873.5531005859375, 876.7765502929688, 867.912109375, 848.5714111328125, NaN, NaN], [772.4176025390625, 886.4468994140625, 883.6264038085938, 846.5567626953125, NaN, NaN], [793.3699340820312, 828.02197265625, 801.8314819335938, 765.5677490234375, NaN, NaN], [879.5970458984375, 811.5018310546875, 782.893798828125, 792.5640869140625, NaN, NaN], [855.8241577148438, 850.989013671875, 847.3626098632812, 841.3186645507812, NaN, NaN], [776.0439453125, 877.9853515625, 883.2234497070312, 849.7802124023438, NaN, NaN], [765.5677490234375, 834.8717651367188, 821.1721801757812, 790.1465454101562, NaN, NaN], [834.06591796875, 786.923095703125, 760.3296508789062, 745.018310546875, NaN, NaN], [862.6740112304688, 819.5604248046875, 804.2490844726562, 811.5018310546875, NaN, NaN], [793.7728881835938, 871.5384521484375, 880.4029541015625, 876.7765502929688, NaN, NaN], [762.7472534179688, 847.7655639648438, 855.8241577148438, 825.6043701171875, NaN, NaN], [821.1721801757812, 793.7728881835938, 778.8644409179688, 754.2857055664062, NaN, NaN], [867.5091552734375, 813.91943359375, 805.4578857421875, 801.025634765625, NaN, NaN], [818.7545776367188, 870.3296508789062, 882.8204956054688, 870.7326049804688, NaN, NaN], [771.2088012695312, 861.4652099609375, 869.5238037109375, 837.2893676757812, NaN, NaN], [811.90478515625, 805.054931640625, 789.3406372070312, 772.0146484375, NaN, NaN], [878.7911987304688, 798.2051391601562, 777.6557006835938, 780.0732421875, NaN, NaN], [859.8534545898438, 862.2710571289062, 866.7033081054688, 858.6447143554688, NaN, NaN], [782.4908447265625, 892.4908447265625, 909.4139404296875, 893.6996459960938, NaN, NaN], [779.2673950195312, 827.2161254882812, 819.1575317382812, 798.6080322265625, NaN, NaN], [833.2600708007812, 785.3113403320312, 760.7326049804688, 748.2417602539062, NaN, NaN], [852.1978149414062, 840.915771484375, 839.7069702148438, 827.2161254882812, NaN, NaN], [786.1171875, 886.4468994140625, 900.5494384765625, 865.4945068359375, NaN, NaN], [764.7619018554688, 846.5567626953125, 841.7216186523438, 809.4871826171875, NaN, NaN], [829.2307739257812, 797.3992919921875, 776.0439453125, 764.7619018554688, NaN, NaN], [871.1355590820312, 827.6190185546875, 821.1721801757812, 806.2637329101562, NaN, NaN], [823.5897216796875, 888.8644409179688, 898.5347900390625, 876.3735961914062, NaN, NaN], [755.091552734375, 863.4798583984375, 857.032958984375, 828.02197265625, NaN, NaN], [800.6226806640625, 804.2490844726562, 774.4322509765625, 756.3003540039062, NaN, NaN], [865.091552734375, 816.7399291992188, 790.1465454101562, 792.5640869140625, NaN, NaN], [828.8278198242188, 878.7911987304688, 882.4176025390625, 870.3296508789062, NaN, NaN], [772.0146484375, 886.0439453125, 898.937744140625, 854.2124633789062, NaN, NaN], [793.3699340820312, 820.3662719726562, 810.2930297851562, 769.5970458984375, NaN, NaN], [881.2088012695312, 804.2490844726562, 791.7582397460938, 787.7289428710938, NaN, NaN], [862.2710571289062, 866.3003540039062, 874.3589477539062, 862.6740112304688, NaN, NaN], [749.8534545898438, 889.6703491210938, 908.6080322265625, 875.970703125, NaN, NaN], [759.120849609375, 834.8717651367188, 838.09521484375, 809.4871826171875, NaN, NaN], [826.00732421875, 798.6080322265625, 778.8644409179688, 772.8204956054688, NaN, NaN], [860.6593627929688, 846.959716796875, 840.915771484375, 834.8717651367188, NaN, NaN], [811.5018310546875, 894.908447265625, 905.7875366210938, 884.4322509765625, NaN, NaN], [756.7033081054688, 854.6153564453125, 850.1831665039062, 813.5164794921875, NaN, NaN], [846.1538696289062, 813.5164794921875, 793.7728881835938, 762.3442993164062, NaN, NaN], [902.5640869140625, 841.7216186523438, 827.6190185546875, 815.5311279296875, NaN, NaN], [813.113525390625, 890.4761962890625, 896.923095703125, 871.1355590820312, NaN, NaN], [753.4798583984375, 882.0146484375, 886.0439453125, 846.1538696289062, NaN, NaN], [809.89013671875, 820.3662719726562, 794.981689453125, 768.7911987304688, NaN, NaN], [878.3883056640625, 824.3956298828125, 801.8314819335938, 795.3846435546875, NaN, NaN], [855.018310546875, 895.3113403320312, 892.087890625, 888.05859375, NaN, NaN], [817.94873046875, 911.8314819335938, 900.952392578125, 884.029296875, NaN, NaN], [838.4981689453125, 857.4359130859375, 821.97802734375, 821.97802734375, NaN, NaN], [872.7472534179688, 831.2454223632812, 788.5347900390625, 794.1758422851562, NaN, NaN], [865.8974609375, 886.4468994140625, 863.076904296875, 839.3040161132812, NaN, NaN], [794.5787353515625, 922.7106323242188, 912.2344360351562, 873.5531005859375, NaN, NaN], [836.08056640625, 873.9560546875, 842.930419921875, 811.90478515625, NaN, NaN], [927.94873046875, 836.886474609375, 792.5640869140625, 784.5054931640625, NaN, NaN], [860.2564086914062, 875.970703125, 846.5567626953125, 824.3956298828125, NaN, NaN], [773.2234497070312, 929.1575317382812, 910.2197875976562, 877.1795043945312, NaN, NaN], [767.9853515625, 900.1465454101562, 866.3003540039062, 849.3773193359375, NaN, NaN], [855.4212646484375, 842.5274658203125, 790.5494384765625, 775.6410522460938, NaN, NaN], [893.6996459960938, 859.8534545898438, 821.5750732421875, 825.6043701171875, NaN, NaN], [849.3773193359375, 919.084228515625, 912.2344360351562, 917.4725341796875, NaN, NaN], [776.0439453125, 907.8021850585938, 897.3259887695312, 890.0732421875, NaN, NaN], [802.2344360351562, 845.7509155273438, 806.6666870117188, 792.5640869140625, NaN, NaN], [870.7326049804688, 843.7362670898438, 805.054931640625, 786.5201416015625, NaN, NaN], [872.3442993164062, 915.4578857421875, 904.5787353515625, 880.8058471679688, NaN, NaN], [809.4871826171875, 926.7399291992188, 919.4871826171875, 879.5970458984375, NaN, NaN], [784.1025390625, 850.5860595703125, 816.3369750976562, 779.2673950195312, NaN, NaN], [870.7326049804688, 828.4249267578125, 789.3406372070312, 776.8497924804688, NaN, NaN], [882.4176025390625, 883.6264038085938, 869.120849609375, 856.2271118164062, NaN, NaN], [810.2930297851562, 919.084228515625, 916.6666870117188, 875.1648559570312, NaN, NaN], [795.7875366210938, 869.9267578125, 850.5860595703125, 808.6813354492188, NaN, NaN], [856.6300659179688, 825.2014770507812, 796.5933837890625, 772.8204956054688, NaN, NaN], [884.029296875, 858.6447143554688, 849.3773193359375, 821.97802734375, NaN, NaN], [825.6043701171875, 900.5494384765625, 908.6080322265625, 867.5091552734375, NaN, NaN], [778.05859375, 870.3296508789062, 868.3150024414062, 828.8278198242188, NaN, NaN], [815.93408203125, 819.96337890625, 793.3699340820312, 783.2966918945312, NaN, NaN], [878.7911987304688, 837.2893676757812, 818.3516235351562, 819.1575317382812, NaN, NaN], [827.2161254882812, 891.6849975585938, 892.893798828125, 873.5531005859375, NaN, NaN], [749.4505615234375, 886.8497924804688, 889.2673950195312, 854.6153564453125, NaN, NaN], [819.1575317382812, 830.03662109375, 820.7692260742188, 784.1025390625, NaN, NaN], [900.5494384765625, 821.97802734375, 814.7252807617188, 795.7875366210938, NaN, NaN], [846.1538696289062, 873.1502075195312, 884.4322509765625, 873.5531005859375, NaN, NaN], [767.5823974609375, 894.908447265625, 913.8461303710938, 887.2527465820312, NaN, NaN], [779.2673950195312, 840.915771484375, 842.12451171875, 807.87548828125, NaN, NaN], [859.8534545898438, 809.4871826171875, 803.040283203125, 780.879150390625, NaN, NaN], [862.2710571289062, 858.2417602539062, 867.912109375, 838.09521484375, NaN, NaN], [806.6666870117188, 902.1611938476562, 919.4871826171875, 877.5823974609375, NaN, NaN], [810.2930297851562, 867.912109375, 869.120849609375, 834.4688720703125, NaN, NaN], [865.8974609375, 816.3369750976562, 797.8021850585938, 782.893798828125, NaN, NaN], [890.879150390625, 838.4981689453125, 827.2161254882812, 821.1721801757812, NaN, NaN], [826.4102783203125, 898.5347900390625, 910.2197875976562, 888.8644409179688, NaN, NaN], [754.2857055664062, 876.7765502929688, 879.1941528320312, 839.7069702148438, NaN, NaN], [808.6813354492188, 817.94873046875, 794.5787353515625, 766.7765502929688, NaN, NaN], [859.4505615234375, 821.5750732421875, 808.2783813476562, 809.084228515625, NaN, NaN], [813.5164794921875, 881.2088012695312, 895.7142944335938, 894.1025390625, NaN, NaN], [780.4761962890625, 894.908447265625, 908.2051391601562, 874.3589477539062, NaN, NaN], [808.6813354492188, 826.4102783203125, 809.084228515625, 790.952392578125, NaN, NaN], [879.1941528320312, 807.4725341796875, 780.0732421875, 781.6849975585938, NaN, NaN], [873.1502075195312, 867.106201171875, 869.9267578125, 847.7655639648438, NaN, NaN], [781.2820434570312, 892.4908447265625, 904.981689453125, 877.9853515625, NaN, NaN], [784.1025390625, 841.7216186523438, 823.99267578125, 805.8607788085938, NaN, NaN], [865.091552734375, 804.2490844726562, 770.4029541015625, 767.5823974609375, NaN, NaN], [886.0439453125, 854.6153564453125, 842.12451171875, 856.2271118164062, NaN, NaN], [804.6520385742188, 896.5201416015625, 902.1611938476562, 902.1611938476562, NaN, NaN], [762.7472534179688, 847.3626098632812, 836.08056640625, 817.94873046875, NaN, NaN], [826.4102783203125, 797.3992919921875, 769.5970458984375, 790.5494384765625, NaN, NaN], [852.6007080078125, 818.3516235351562, 799.010986328125, 810.6959838867188, NaN, NaN], [803.4432373046875, 876.3735961914062, 880.8058471679688, 858.6447143554688, NaN, NaN], [764.7619018554688, 867.106201171875, 864.6886596679688, 848.1685180664062, NaN, NaN], [817.5457763671875, 803.040283203125, 770.8058471679688, 762.7472534179688, NaN, NaN], [900.5494384765625, 812.7106323242188, 784.908447265625, 795.7875366210938, NaN, NaN], [882.8204956054688, 876.7765502929688, 874.3589477539062, 885.6410522460938, NaN, NaN], [815.5311279296875, 875.970703125, 875.1648559570312, 860.6593627929688, NaN, NaN], [800.2197875976562, 812.3076782226562, 796.5933837890625, 777.6557006835938, NaN, NaN], [830.8424682617188, 792.5640869140625, 782.087890625, 776.8497924804688, NaN, NaN], [849.3773193359375, 854.6153564453125, 866.3003540039062, 845.7509155273438, NaN, NaN], [776.0439453125, 882.8204956054688, 904.1758422851562, 869.120849609375, NaN, NaN], [745.8241577148438, 830.03662109375, 836.08056640625, 791.3552856445312, NaN, NaN], [853.003662109375, 794.981689453125, 788.5347900390625, 758.7179565429688, NaN, NaN], [867.106201171875, 832.8571166992188, 843.3333129882812, 819.1575317382812, NaN, NaN], [760.3296508789062, 879.5970458984375, 913.040283203125, 874.3589477539062, NaN, NaN], [750.2564086914062, 847.7655639648438, 866.3003540039062, 812.7106323242188, NaN, NaN], [818.7545776367188, 792.967041015625, 787.7289428710938, 749.8534545898438, NaN, NaN], [850.989013671875, 811.90478515625, 813.5164794921875, 799.010986328125, NaN, NaN], [789.7435913085938, 868.7179565429688, 889.6703491210938, 845.7509155273438, NaN, NaN], [732.12451171875, 865.8974609375, 890.879150390625, 840.10986328125, NaN, NaN], [790.5494384765625, 809.89013671875, 815.5311279296875, 785.7142944335938, NaN, NaN], [841.7216186523438, 799.8168334960938, 793.3699340820312, 772.8204956054688, NaN, NaN], [825.6043701171875, 860.2564086914062, 877.9853515625, 856.2271118164062, NaN, NaN], [767.1795043945312, 882.4176025390625, 910.6226806640625, 860.6593627929688, NaN, NaN], [772.0146484375, 824.3956298828125, 820.3662719726562, 766.3735961914062, NaN, NaN], [859.047607421875, 802.2344360351562, 786.923095703125, 754.6886596679688, NaN, NaN], [854.2124633789062, 852.1978149414062, 868.7179565429688, 826.8131713867188, NaN, NaN], [789.3406372070312, 886.8497924804688, 925.93408203125, 885.6410522460938, NaN, NaN], [814.7252807617188, 842.930419921875, 862.2710571289062, 813.113525390625, NaN, NaN], [833.6630249023438, 788.5347900390625, 788.5347900390625, 744.6153564453125, NaN, NaN], [826.00732421875, 825.6043701171875, 847.7655639648438, 822.7838745117188, NaN, NaN], [801.025634765625, 877.9853515625, 920.6959838867188, 859.047607421875, NaN, NaN], [768.7911987304688, 853.4066162109375, 884.4322509765625, 800.6226806640625, NaN, NaN], [808.6813354492188, 800.2197875976562, 806.6666870117188, 754.2857055664062, NaN, NaN], [857.8388061523438, 812.7106323242188, 826.4102783203125, 797.8021850585938, NaN, NaN], [828.4249267578125, 868.3150024414062, 909.8168334960938, 877.1795043945312, NaN, NaN], [769.1941528320312, 866.7033081054688, 902.5640869140625, 855.8241577148438, NaN, NaN], [793.3699340820312, 807.4725341796875, 820.7692260742188, 772.0146484375, NaN, NaN], [866.3003540039062, 797.3992919921875, 821.1721801757812, 782.087890625, NaN, NaN], [834.4688720703125, 850.5860595703125, 898.5347900390625, 855.4212646484375, NaN, NaN], [760.7326049804688, 869.5238037109375, 912.6373901367188, 854.2124633789062, NaN, NaN], [780.4761962890625, 812.3076782226562, 828.02197265625, 763.1502075195312, NaN, NaN], [864.6886596679688, 784.1025390625, 796.5933837890625, 754.6886596679688, NaN, NaN], [861.062255859375, 841.7216186523438, 878.7911987304688, 841.7216186523438, NaN, NaN], [760.7326049804688, 874.3589477539062, 918.6813354492188, 861.4652099609375, NaN, NaN], [734.1392211914062, 828.02197265625, 850.5860595703125, 789.7435913085938, NaN, NaN], [812.7106323242188, 782.087890625, 784.5054931640625, 747.8388061523438, NaN, NaN], [857.8388061523438, 814.7252807617188, 828.02197265625, 803.040283203125, NaN, NaN], [794.5787353515625, 871.94140625, 907.8021850585938, 865.091552734375, NaN, NaN], [778.4615478515625, 848.5714111328125, 873.1502075195312, 817.5457763671875, NaN, NaN], [848.1685180664062, 799.4139404296875, 794.5787353515625, 747.032958984375, NaN, NaN], [865.8974609375, 807.069580078125, 805.4578857421875, 761.1355590820312, NaN, NaN], [811.5018310546875, 861.8681030273438, 887.6557006835938, 831.6483764648438, NaN, NaN], [739.3773193359375, 867.106201171875, 901.7582397460938, 837.2893676757812, NaN, NaN], [780.0732421875, 807.87548828125, 815.93408203125, 765.5677490234375, NaN, NaN], [853.003662109375, 796.996337890625, 797.3992919921875, 752.6740112304688, NaN, NaN], [838.4981689453125, 856.2271118164062, 881.6116943359375, 821.1721801757812, NaN, NaN], [802.2344360351562, 886.4468994140625, 916.6666870117188, 853.8095092773438, NaN, NaN], [786.5201416015625, 832.05126953125, 836.886474609375, 780.4761962890625, NaN, NaN], [830.03662109375, 792.5640869140625, 789.3406372070312, 751.8681030273438, NaN, NaN], [853.8095092773438, 838.09521484375, 857.032958984375, 824.3956298828125, NaN, NaN], [786.1171875, 885.2380981445312, 918.2783813476562, 861.8681030273438, NaN, NaN], [755.8974609375, 854.2124633789062, 871.5384521484375, 811.098876953125, NaN, NaN], [821.5750732421875, 796.1904907226562, 797.8021850585938, 763.1502075195312, NaN, NaN], [875.1648559570312, 812.7106323242188, 826.4102783203125, 804.2490844726562, NaN, NaN], [826.4102783203125, 879.1941528320312, 914.6520385742188, 875.1648559570312, NaN, NaN], [772.4176025390625, 870.3296508789062, 892.893798828125, 844.1392211914062, NaN, NaN], [792.1611938476562, 798.2051391601562, 791.7582397460938, 746.6300659179688, NaN, NaN], [843.7362670898438, 795.7875366210938, 798.2051391601562, 762.3442993164062, NaN, NaN], [811.098876953125, 861.062255859375, 884.8351440429688, 852.6007080078125, NaN, NaN], [763.9560546875, 871.94140625, 894.908447265625, 849.3773193359375, NaN, NaN], [783.6996459960938, 811.90478515625, 821.5750732421875, 782.893798828125, NaN, NaN], [873.1502075195312, 793.3699340820312, 800.2197875976562, 778.05859375, NaN, NaN], [884.8351440429688, 854.2124633789062, 880.8058471679688, 850.1831665039062, NaN, NaN], [769.5970458984375, 886.8497924804688, 920.2930297851562, 869.5238037109375, NaN, NaN], [739.3773193359375, 833.6630249023438, 836.4835205078125, 783.6996459960938, NaN, NaN], [838.4981689453125, 799.4139404296875, 786.5201416015625, 747.4359130859375, NaN, NaN], [876.7765502929688, 841.7216186523438, 843.7362670898438, 817.1428833007812, NaN, NaN], [782.893798828125, 887.2527465820312, 907.8021850585938, 869.120849609375, NaN, NaN], [761.1355590820312, 857.8388061523438, 862.6740112304688, 818.3516235351562, NaN, NaN], [863.076904296875, 805.4578857421875, 786.1171875, 760.3296508789062, NaN, NaN], [908.6080322265625, 828.8278198242188, 825.2014770507812, 796.996337890625, NaN, NaN], [800.2197875976562, 882.0146484375, 903.7728881835938, 868.3150024414062, NaN, NaN], [733.7362670898438, 869.5238037109375, 879.5970458984375, 836.886474609375, NaN, NaN], [804.6520385742188, 814.3223266601562, 799.8168334960938, 768.3883056640625, NaN, NaN], [870.3296508789062, 810.2930297851562, 802.2344360351562, 789.7435913085938, NaN, NaN], [842.5274658203125, 872.3442993164062, 895.3113403320312, 876.3735961914062, NaN, NaN], [770.4029541015625, 885.2380981445312, 907.8021850585938, 867.5091552734375, NaN, NaN], [790.1465454101562, 826.8131713867188, 823.5897216796875, 775.2380981445312, NaN, NaN], [886.0439453125, 811.5018310546875, 802.6373901367188, 791.3552856445312, NaN, NaN], [884.8351440429688, 857.4359130859375, 859.8534545898438, 855.4212646484375, NaN, NaN], [794.981689453125, 889.6703491210938, 904.5787353515625, 860.6593627929688, NaN, NaN], [778.4615478515625, 850.1831665039062, 851.7948608398438, 796.1904907226562, NaN, NaN], [851.7948608398438, 805.4578857421875, 787.7289428710938, 761.5384521484375, NaN, NaN], [891.6849975585938, 842.12451171875, 836.4835205078125, 820.7692260742188, NaN, NaN], [812.3076782226562, 891.2820434570312, 913.040283203125, 877.1795043945312, NaN, NaN], [772.0146484375, 868.3150024414062, 881.6116943359375, 830.4395751953125, NaN, NaN], [830.03662109375, 812.7106323242188, 794.1758422851562, 762.7472534179688, NaN, NaN], [880.4029541015625, 827.6190185546875, 812.3076782226562, 793.3699340820312, NaN, NaN], [821.97802734375, 890.0732421875, 895.3113403320312, 865.091552734375, NaN, NaN], [802.6373901367188, 892.087890625, 890.879150390625, 846.1538696289062, NaN, NaN], [847.3626098632812, 828.02197265625, 803.4432373046875, 760.3296508789062, NaN, NaN], [849.3773193359375, 809.4871826171875, 789.3406372070312, 778.4615478515625, NaN, NaN], [837.6923217773438, 872.3442993164062, 871.1355590820312, 876.7765502929688, NaN, NaN], [769.1941528320312, 904.1758422851562, 909.4139404296875, 894.908447265625, NaN, NaN], [763.9560546875, 843.3333129882812, 826.8131713867188, 784.5054931640625, NaN, NaN], [835.6776733398438, 807.87548828125, 772.4176025390625, 732.5274658203125, NaN, NaN], [844.5421142578125, 862.2710571289062, 844.5421142578125, 817.5457763671875, NaN, NaN], [764.3589477539062, 902.5640869140625, 899.7435913085938, 869.120849609375, NaN, NaN], [776.8497924804688, 866.7033081054688, 844.945068359375, 822.3809814453125, NaN, NaN], [861.8681030273438, 821.1721801757812, 784.908447265625, 776.8497924804688, NaN, NaN], [864.2857055664062, 847.3626098632812, 826.00732421875, 817.94873046875, NaN, NaN], [806.2637329101562, 904.981689453125, 896.5201416015625, 883.2234497070312, NaN, NaN], [753.4798583984375, 880.8058471679688, 859.4505615234375, 834.8717651367188, NaN, NaN], [813.113525390625, 819.1575317382812, 774.029296875, 759.9267578125, NaN, NaN], [883.6264038085938, 827.2161254882812, 784.1025390625, 778.05859375, NaN, NaN], [830.8424682617188, 887.6557006835938, 869.120849609375, 845.7509155273438, NaN, NaN], [752.2710571289062, 895.3113403320312, 878.7911987304688, 833.6630249023438, NaN, NaN], [776.8497924804688, 834.06591796875, 790.1465454101562, 757.5091552734375, NaN, NaN], [861.8681030273438, 824.7985229492188, 776.8497924804688, 770.8058471679688, NaN, NaN], [840.915771484375, 880.8058471679688, 857.8388061523438, 843.3333129882812, NaN, NaN], [802.2344360351562, 904.1758422851562, 882.8204956054688, 851.3919677734375, NaN, NaN], [828.8278198242188, 856.6300659179688, 811.5018310546875, 801.025634765625, NaN, NaN], [842.5274658203125, 816.7399291992188, 759.5238037109375, 779.2673950195312, NaN, NaN], [843.3333129882812, 863.076904296875, 823.5897216796875, 819.96337890625, NaN, NaN], [799.010986328125, 907.8021850585938, 883.2234497070312, 846.5567626953125, NaN, NaN], [776.4468994140625, 869.120849609375, 831.2454223632812, 791.3552856445312, NaN, NaN], [838.4981689453125, 828.4249267578125, 776.4468994140625, 758.3150024414062, NaN, NaN], [874.7619018554688, 849.7802124023438, 803.040283203125, 796.996337890625, NaN, NaN], [796.996337890625, 903.7728881835938, 873.1502075195312, 857.032958984375, NaN, NaN], [745.8241577148438, 896.5201416015625, 863.4798583984375, 835.2747192382812, NaN, NaN], [787.7289428710938, 831.6483764648438, 778.4615478515625, 756.3003540039062, NaN, NaN], [878.3883056640625, 840.915771484375, 786.923095703125, 777.6557006835938, NaN, NaN], [871.94140625, 904.1758422851562, 873.9560546875, 861.4652099609375, NaN, NaN], [777.6557006835938, 911.8314819335938, 891.2820434570312, 866.7033081054688, NaN, NaN], [789.7435913085938, 855.4212646484375, 811.90478515625, 796.1904907226562, NaN, NaN], [841.7216186523438, 830.4395751953125, 772.8204956054688, 776.0439453125, NaN, NaN], [832.8571166992188, 881.2088012695312, 841.3186645507812, 827.2161254882812, NaN, NaN], [788.5347900390625, 918.2783813476562, 886.4468994140625, 851.7948608398438, NaN, NaN], [794.1758422851562, 869.5238037109375, 819.1575317382812, 799.010986328125, NaN, NaN], [871.94140625, 833.2600708007812, 780.0732421875, 782.893798828125, NaN, NaN], [904.5787353515625, 875.5677490234375, 836.886474609375, 826.00732421875, NaN, NaN], [831.2454223632812, 926.7399291992188, 899.3406372070312, 872.7472534179688, NaN, NaN], [770.8058471679688, 897.3259887695312, 853.8095092773438, 828.8278198242188, NaN, NaN], [836.08056640625, 840.915771484375, 772.8204956054688, 771.6116943359375, NaN, NaN], [897.3259887695312, 858.6447143554688, 797.8021850585938, 815.1282348632812, NaN, NaN], [833.6630249023438, 921.90478515625, 878.7911987304688, 888.05859375, NaN, NaN], [767.5823974609375, 913.4432373046875, 857.8388061523438, 851.7948608398438, NaN, NaN], [816.3369750976562, 852.1978149414062, 769.5970458984375, 758.7179565429688, NaN, NaN], [884.8351440429688, 848.5714111328125, 768.7911987304688, 784.5054931640625, NaN, NaN], [879.5970458984375, 917.4725341796875, 867.912109375, 882.4176025390625, NaN, NaN], [830.4395751953125, 930.7692260742188, 884.029296875, 867.106201171875, NaN, NaN], [829.6337280273438, 859.8534545898438, 782.893798828125, 782.893798828125, NaN, NaN], [885.2380981445312, 837.2893676757812, 762.3442993164062, 780.879150390625, NaN, NaN], [877.1795043945312, 890.4761962890625, 842.12451171875, 848.1685180664062, NaN, NaN], [799.010986328125, 927.94873046875, 884.4322509765625, 881.6116943359375, NaN, NaN], [800.2197875976562, 882.8204956054688, 818.7545776367188, 809.89013671875, NaN, NaN], [885.2380981445312, 841.3186645507812, 768.3883056640625, 770.4029541015625, NaN, NaN], [892.893798828125, 876.3735961914062, 821.1721801757812, 821.97802734375, NaN, NaN], [804.6520385742188, 917.069580078125, 875.5677490234375, 866.3003540039062, NaN, NaN], [767.9853515625, 888.05859375, 833.6630249023438, 825.6043701171875, NaN, NaN], [826.8131713867188, 839.7069702148438, 765.1648559570312, 778.8644409179688, NaN, NaN], [889.6703491210938, 854.2124633789062, 790.1465454101562, 808.2783813476562, NaN, NaN], [852.6007080078125, 912.2344360351562, 868.7179565429688, 892.087890625, NaN, NaN], [782.4908447265625, 908.6080322265625, 858.6447143554688, 871.5384521484375, NaN, NaN], [826.4102783203125, 852.1978149414062, 786.923095703125, 776.8497924804688, NaN, NaN], [882.0146484375, 847.3626098632812, 785.3113403320312, 781.2820434570312, NaN, NaN], [871.94140625, 900.5494384765625, 852.6007080078125, 835.6776733398438, NaN, NaN], [811.90478515625, 921.5018310546875, 878.7911987304688, 858.6447143554688, NaN, NaN], [801.4285888671875, 865.091552734375, 809.4871826171875, 811.098876953125, NaN, NaN], [870.3296508789062, 838.09521484375, 775.2380981445312, 787.3259887695312, NaN, NaN], [867.912109375, 882.4176025390625, 833.2600708007812, 836.08056640625, NaN, NaN], [795.7875366210938, 917.069580078125, 881.6116943359375, 859.047607421875, NaN, NaN], [789.7435913085938, 887.2527465820312, 842.12451171875, 820.7692260742188, NaN, NaN], [857.032958984375, 842.5274658203125, 781.2820434570312, 796.996337890625, NaN, NaN], [886.0439453125, 863.8828125, 807.069580078125, 822.3809814453125, NaN, NaN], [858.6447143554688, 922.3076782226562, 881.2088012695312, 879.5970458984375, NaN, NaN], [784.1025390625, 900.5494384765625, 854.6153564453125, 836.886474609375, NaN, NaN], [821.1721801757812, 841.7216186523438, 772.0146484375, 764.3589477539062, NaN, NaN], [883.2234497070312, 848.974365234375, 782.4908447265625, 789.3406372070312, NaN, NaN], [839.7069702148438, 905.3846435546875, 874.3589477539062, 860.2564086914062, NaN, NaN], [769.1941528320312, 907.3992919921875, 886.4468994140625, 861.062255859375, NaN, NaN], [798.6080322265625, 842.930419921875, 797.3992919921875, 786.923095703125, NaN, NaN], [869.120849609375, 825.6043701171875, 774.8351440429688, 778.4615478515625, NaN, NaN], [871.5384521484375, 883.6264038085938, 857.032958984375, 850.989013671875, NaN, NaN], [805.4578857421875, 912.2344360351562, 890.4761962890625, 871.5384521484375, NaN, NaN], [773.6264038085938, 855.8241577148438, 810.6959838867188, 809.89013671875, NaN, NaN], [841.7216186523438, 821.5750732421875, 769.5970458984375, 782.893798828125, NaN, NaN], [879.1941528320312, 871.94140625, 842.5274658203125, 845.7509155273438, NaN, NaN], [825.6043701171875, 919.084228515625, 900.5494384765625, 892.4908447265625, NaN, NaN], [775.2380981445312, 874.7619018554688, 835.6776733398438, 791.3552856445312, NaN, NaN], [812.3076782226562, 816.3369750976562, 767.5823974609375, 740.989013671875, NaN, NaN], [855.4212646484375, 843.3333129882812, 807.87548828125, 801.8314819335938, NaN, NaN], [805.8607788085938, 904.5787353515625, 882.0146484375, 865.4945068359375, NaN, NaN], [761.1355590820312, 890.4761962890625, 863.4798583984375, 845.7509155273438, NaN, NaN], [829.6337280273438, 828.8278198242188, 777.6557006835938, 768.7911987304688, NaN, NaN], [906.5933837890625, 840.5128173828125, 793.3699340820312, 794.1758422851562, NaN, NaN], [843.7362670898438, 900.1465454101562, 877.5823974609375, 859.4505615234375, NaN, NaN], [759.120849609375, 900.5494384765625, 869.5238037109375, 833.6630249023438, NaN, NaN], [813.91943359375, 846.5567626953125, 792.1611938476562, 759.120849609375, NaN, NaN], [878.3883056640625, 828.8278198242188, 772.0146484375, 772.4176025390625, NaN, NaN], [844.5421142578125, 878.3883056640625, 842.930419921875, 862.6740112304688, NaN, NaN], [790.952392578125, 909.010986328125, 884.029296875, 880.4029541015625, NaN, NaN], [801.4285888671875, 857.4359130859375, 816.7399291992188, 807.069580078125, NaN, NaN], [853.003662109375, 817.1428833007812, 763.1502075195312, 766.3735961914062, NaN, NaN], [857.8388061523438, 851.7948608398438, 811.098876953125, 820.7692260742188, NaN, NaN], [806.6666870117188, 896.1171875, 877.1795043945312, 877.9853515625, NaN, NaN], [760.7326049804688, 867.5091552734375, 837.2893676757812, 815.5311279296875, NaN, NaN], [818.7545776367188, 819.1575317382812, 766.3735961914062, 753.8828125, NaN, NaN], [890.4761962890625, 840.915771484375, 790.952392578125, 795.3846435546875, NaN, NaN], [832.8571166992188, 897.7289428710938, 861.8681030273438, 866.3003540039062, NaN, NaN], [763.1502075195312, 899.3406372070312, 861.4652099609375, 860.6593627929688, NaN, NaN], [832.4542236328125, 843.3333129882812, 782.893798828125, 787.3259887695312, NaN, NaN], [881.6116943359375, 829.6337280273438, 770.0, 785.7142944335938, NaN, NaN], [809.4871826171875, 886.8497924804688, 856.2271118164062, 855.018310546875, NaN, NaN], [734.1392211914062, 902.1611938476562, 874.3589477539062, 842.5274658203125, NaN, NaN], [774.029296875, 844.945068359375, 794.1758422851562, 758.7179565429688, NaN, NaN], [869.5238037109375, 822.3809814453125, 767.1795043945312, 765.5677490234375, NaN, NaN], [855.8241577148438, 874.7619018554688, 832.4542236328125, 830.4395751953125, NaN, NaN], [777.6557006835938, 913.4432373046875, 884.4322509765625, 866.7033081054688, NaN, NaN], [775.6410522460938, 865.091552734375, 820.7692260742188, 794.981689453125, NaN, NaN], [837.2893676757812, 813.113525390625, 750.6593627929688, 734.1392211914062, NaN, NaN], [900.5494384765625, 849.7802124023438, 806.6666870117188, 810.2930297851562, NaN, NaN], [813.113525390625, 898.5347900390625, 880.0, 888.4615478515625, NaN, NaN], [732.12451171875, 873.5531005859375, 846.1538696289062, 832.8571166992188, NaN, NaN], [793.3699340820312, 819.5604248046875, 766.7765502929688, 728.09521484375, NaN, NaN], [861.062255859375, 832.05126953125, 784.1025390625, 763.5531005859375, NaN, NaN], [834.8717651367188, 890.4761962890625, 865.8974609375, 851.3919677734375, NaN, NaN], [752.2710571289062, 882.4176025390625, 858.2417602539062, 820.3662719726562, NaN, NaN], [777.2527465820312, 824.7985229492188, 782.087890625, 757.106201171875, NaN, NaN], [868.7179565429688, 817.94873046875, 770.0, 784.908447265625, NaN, NaN], [862.2710571289062, 876.7765502929688, 847.3626098632812, 858.6447143554688, NaN, NaN], [770.8058471679688, 898.1318969726562, 875.970703125, 860.6593627929688, NaN, NaN], [779.2673950195312, 839.7069702148438, 792.5640869140625, 775.2380981445312, NaN, NaN], [841.3186645507812, 814.7252807617188, 764.7619018554688, 756.7033081054688, NaN, NaN], [849.7802124023438, 867.5091552734375, 846.959716796875, 841.3186645507812, NaN, NaN], [772.0146484375, 898.1318969726562, 881.2088012695312, 866.3003540039062, NaN, NaN], [760.3296508789062, 854.2124633789062, 813.5164794921875, 792.1611938476562, NaN, NaN], [849.7802124023438, 811.5018310546875, 762.7472534179688, 754.6886596679688, NaN, NaN], [862.6740112304688, 838.4981689453125, 811.098876953125, 821.97802734375, NaN, NaN], [796.5933837890625, 892.893798828125, 884.8351440429688, 882.8204956054688, NaN, NaN], [774.029296875, 877.1795043945312, 855.8241577148438, 831.6483764648438, NaN, NaN], [852.1978149414062, 828.02197265625, 788.1318969726562, 789.3406372070312, NaN, NaN], [899.3406372070312, 831.2454223632812, 798.2051391601562, 805.054931640625, NaN, NaN], [835.6776733398438, 883.6264038085938, 865.091552734375, 846.5567626953125, NaN, NaN], [775.6410522460938, 890.0732421875, 871.1355590820312, 848.5714111328125, NaN, NaN], [813.113525390625, 828.8278198242188, 792.967041015625, 778.8644409179688, NaN, NaN], [875.1648559570312, 811.5018310546875, 775.6410522460938, 763.9560546875, NaN, NaN], [883.6264038085938, 867.106201171875, 854.2124633789062, 835.6776733398438, NaN, NaN], [809.4871826171875, 896.1171875, 890.4761962890625, 872.7472534179688, NaN, NaN], [782.087890625, 845.3479614257812, 820.7692260742188, 813.113525390625, NaN, NaN], [849.7802124023438, 807.069580078125, 771.6116943359375, 772.4176025390625, NaN, NaN], [862.6740112304688, 855.018310546875, 833.2600708007812, 832.05126953125, NaN, NaN], [781.2820434570312, 904.981689453125, 894.908447265625, 881.6116943359375, NaN, NaN], [757.106201171875, 865.8974609375, 843.7362670898438, 832.4542236328125, NaN, NaN], [850.1831665039062, 811.098876953125, 772.4176025390625, 763.9560546875, NaN, NaN], [896.5201416015625, 838.901123046875, 803.4432373046875, 792.1611938476562, NaN, NaN], [820.3662719726562, 903.3699340820312, 887.2527465820312, 870.3296508789062, NaN, NaN], [757.106201171875, 892.893798828125, 879.5970458984375, 848.974365234375, NaN, NaN], [803.8461303710938, 825.2014770507812, 788.1318969726562, 763.1502075195312, NaN, NaN], [866.3003540039062, 829.6337280273438, 794.1758422851562, 795.3846435546875, NaN, NaN], [813.91943359375, 890.0732421875, 875.5677490234375, 877.9853515625, NaN, NaN], [768.7911987304688, 894.908447265625, 877.9853515625, 864.2857055664062, NaN, NaN], [812.7106323242188, 835.2747192382812, 798.6080322265625, 793.7728881835938, NaN, NaN], [871.94140625, 813.91943359375, 773.6264038085938, 770.8058471679688, NaN, NaN], [868.3150024414062, 874.3589477539062, 855.018310546875, 838.901123046875, NaN, NaN], [778.05859375, 901.3552856445312, 888.05859375, 869.120849609375, NaN, NaN], [784.5054931640625, 841.7216186523438, 811.5018310546875, 801.8314819335938, NaN, NaN], [859.8534545898438, 805.8607788085938, 767.5823974609375, 770.8058471679688, NaN, NaN], [864.2857055664062, 849.3773193359375, 826.4102783203125, 818.3516235351562, NaN, NaN], [802.6373901367188, 898.937744140625, 889.6703491210938, 853.4066162109375, NaN, NaN], [773.2234497070312, 870.7326049804688, 844.1392211914062, 816.3369750976562, NaN, NaN], [851.3919677734375, 822.3809814453125, 772.4176025390625, 781.2820434570312, NaN, NaN], [917.87548828125, 850.989013671875, 814.7252807617188, 827.6190185546875, NaN, NaN], [826.4102783203125, 900.5494384765625, 889.2673950195312, 882.0146484375, NaN, NaN], [759.5238037109375, 885.2380981445312, 868.3150024414062, 842.5274658203125, NaN, NaN], [814.7252807617188, 824.3956298828125, 784.908447265625, 772.8204956054688, NaN, NaN], [875.5677490234375, 820.7692260742188, 778.05859375, 786.923095703125, NaN, NaN], [844.1392211914062, 885.2380981445312, 866.3003540039062, 872.3442993164062, NaN, NaN], [753.076904296875, 894.1025390625, 875.970703125, 860.2564086914062, NaN, NaN], [783.2966918945312, 835.2747192382812, 792.5640869140625, 770.4029541015625, NaN, NaN], [885.2380981445312, 821.5750732421875, 781.6849975585938, 774.8351440429688, NaN, NaN], [865.091552734375, 864.6886596679688, 844.945068359375, 840.10986328125, NaN, NaN], [789.3406372070312, 894.5054931640625, 878.3883056640625, 875.1648559570312, NaN, NaN], [779.2673950195312, 857.4359130859375, 822.3809814453125, 814.3223266601562, NaN, NaN], [834.8717651367188, 813.91943359375, 770.0, 765.970703125, NaN, NaN], [868.3150024414062, 846.959716796875, 817.1428833007812, 813.91943359375, NaN, NaN], [809.89013671875, 898.5347900390625, 880.8058471679688, 856.2271118164062, NaN, NaN], [777.2527465820312, 877.1795043945312, 850.1831665039062, 813.113525390625, NaN, NaN], [836.886474609375, 820.7692260742188, 777.2527465820312, 765.5677490234375, NaN, NaN], [888.05859375, 837.2893676757812, 798.6080322265625, 794.5787353515625, NaN, NaN], [834.8717651367188, 895.3113403320312, 876.7765502929688, 852.6007080078125, NaN, NaN], [764.7619018554688, 886.4468994140625, 866.3003540039062, 844.945068359375, NaN, NaN], [817.94873046875, 828.4249267578125, 787.3259887695312, 779.6703491210938, NaN, NaN], [875.5677490234375, 821.5750732421875, 778.8644409179688, 787.3259887695312, NaN, NaN], [823.99267578125, 876.3735961914062, 853.003662109375, 859.4505615234375, NaN, NaN], [774.029296875, 901.7582397460938, 892.087890625, 870.7326049804688, NaN, NaN], [791.7582397460938, 843.3333129882812, 815.5311279296875, 787.7289428710938, NaN, NaN], [864.2857055664062, 807.87548828125, 765.5677490234375, 751.4652099609375, NaN, NaN], [865.8974609375, 861.062255859375, 841.3186645507812, 841.7216186523438, NaN, NaN], [780.879150390625, 898.5347900390625, 893.6996459960938, 889.6703491210938, NaN, NaN], [782.4908447265625, 861.062255859375, 842.12451171875, 819.5604248046875, NaN, NaN], [855.8241577148438, 815.5311279296875, 784.1025390625, 774.029296875, NaN, NaN], [875.1648559570312, 838.901123046875, 820.3662719726562, 823.99267578125, NaN, NaN], [816.7399291992188, 899.3406372070312, 898.937744140625, 875.5677490234375, NaN, NaN], [761.1355590820312, 878.3883056640625, 862.2710571289062, 811.5018310546875, NaN, NaN], [819.96337890625, 815.5311279296875, 775.2380981445312, 747.032958984375, NaN, NaN], [884.4322509765625, 827.2161254882812, 797.3992919921875, 784.908447265625, NaN, NaN], [833.6630249023438, 887.2527465820312, 879.5970458984375, 855.4212646484375, NaN, NaN], [766.7765502929688, 887.6557006835938, 878.7911987304688, 848.974365234375, NaN, NaN], [810.6959838867188, 829.2307739257812, 796.996337890625, 761.94140625, NaN, NaN], [898.1318969726562, 820.3662719726562, 788.1318969726562, 761.5384521484375, NaN, NaN], [854.6153564453125, 875.1648559570312, 867.912109375, 844.5421142578125, NaN, NaN], [774.029296875, 898.1318969726562, 895.3113403320312, 858.6447143554688, NaN, NaN], [789.7435913085938, 848.1685180664062, 822.7838745117188, 794.981689453125, NaN, NaN], [853.003662109375, 813.5164794921875, 779.6703491210938, 776.8497924804688, NaN, NaN], [867.5091552734375, 857.4359130859375, 840.10986328125, 820.3662719726562, NaN, NaN], [787.7289428710938, 897.7289428710938, 893.2966918945312, 851.7948608398438, NaN, NaN], [760.7326049804688, 859.8534545898438, 842.5274658203125, 795.7875366210938, NaN, NaN], [847.3626098632812, 816.3369750976562, 787.7289428710938, 763.1502075195312, NaN, NaN], [890.4761962890625, 835.2747192382812, 820.3662719726562, 811.5018310546875, NaN, NaN], [809.084228515625, 880.0, 880.8058471679688, 857.032958984375, NaN, NaN], [754.2857055664062, 868.7179565429688, 857.032958984375, 832.8571166992188, NaN, NaN], [823.5897216796875, 812.7106323242188, 784.5054931640625, 749.4505615234375, NaN, NaN], [864.2857055664062, 813.5164794921875, 789.3406372070312, 763.5531005859375, NaN, NaN], [807.4725341796875, 875.970703125, 863.8828125, 851.3919677734375, NaN, NaN], [754.6886596679688, 886.8497924804688, 878.7911987304688, 853.003662109375, NaN, NaN], [822.3809814453125, 831.2454223632812, 812.3076782226562, 777.2527465820312, NaN, NaN], [878.7911987304688, 810.2930297851562, 783.6996459960938, 769.5970458984375, NaN, NaN], [840.5128173828125, 859.8534545898438, 846.959716796875, 834.8717651367188, NaN, NaN], [779.2673950195312, 894.1025390625, 889.2673950195312, 852.6007080078125, NaN, NaN], [757.912109375, 844.945068359375, 821.1721801757812, 782.087890625, NaN, NaN], [839.3040161132812, 807.87548828125, 774.8351440429688, 762.7472534179688, NaN, NaN], [867.912109375, 847.7655639648438, 830.4395751953125, 826.00732421875, NaN, NaN], [817.94873046875, 896.5201416015625, 898.1318969726562, 869.120849609375, NaN, NaN], [788.937744140625, 867.5091552734375, 855.4212646484375, 811.90478515625, NaN, NaN], [829.2307739257812, 814.3223266601562, 779.2673950195312, 747.8388061523438, NaN, NaN], [876.3735961914062, 834.4688720703125, 809.084228515625, 787.7289428710938, NaN, NaN], [828.02197265625, 891.2820434570312, 892.893798828125, 865.091552734375, NaN, NaN], [761.5384521484375, 880.4029541015625, 871.94140625, 841.3186645507812, NaN, NaN], [807.4725341796875, 820.7692260742188, 780.0732421875, 769.5970458984375, NaN, NaN], [865.091552734375, 821.97802734375, 788.1318969726562, 792.1611938476562, NaN, NaN], [840.5128173828125, 888.4615478515625, 884.8351440429688, 877.9853515625, NaN, NaN], [774.029296875, 899.7435913085938, 898.1318969726562, 871.94140625, NaN, NaN], [788.1318969726562, 836.08056640625, 811.90478515625, 782.893798828125, NaN, NaN], [867.5091552734375, 815.93408203125, 785.3113403320312, 775.6410522460938, NaN, NaN], [859.8534545898438, 866.7033081054688, 855.018310546875, 852.1978149414062, NaN, NaN], [792.5640869140625, 904.1758422851562, 904.981689453125, 878.7911987304688, NaN, NaN], [774.8351440429688, 856.6300659179688, 844.945068359375, 808.6813354492188, NaN, NaN], [840.915771484375, 811.098876953125, 786.923095703125, 779.6703491210938, NaN, NaN], [877.9853515625, 855.4212646484375, 846.5567626953125, 842.5274658203125, NaN, NaN], [810.6959838867188, 900.952392578125, 902.1611938476562, 869.120849609375, NaN, NaN], [776.8497924804688, 868.3150024414062, 853.003662109375, 795.3846435546875, NaN, NaN], [855.8241577148438, 815.5311279296875, 788.5347900390625, 751.4652099609375, NaN, NaN], [884.4322509765625, 823.5897216796875, 806.2637329101562, 788.1318969726562, NaN, NaN], [834.06591796875, 879.1941528320312, 881.6116943359375, 846.5567626953125, NaN, NaN], [787.3259887695312, 879.1941528320312, 876.7765502929688, 830.4395751953125, NaN, NaN], [819.1575317382812, 823.5897216796875, 799.8168334960938, 767.1795043945312, NaN, NaN], [874.3589477539062, 812.3076782226562, 786.923095703125, 787.3259887695312, NaN, NaN], [830.8424682617188, 868.7179565429688, 858.6447143554688, 847.7655639648438, NaN, NaN], [760.3296508789062, 891.6849975585938, 884.029296875, 838.09521484375, NaN, NaN], [765.5677490234375, 837.6923217773438, 812.3076782226562, 768.3883056640625, NaN, NaN], [839.7069702148438, 813.91943359375, 775.6410522460938, 736.959716796875, NaN, NaN], [829.6337280273438, 861.062255859375, 837.6923217773438, 790.1465454101562, NaN, NaN], [717.6190185546875, 894.908447265625, 882.4176025390625, 823.5897216796875, NaN, NaN], [698.2783813476562, 859.4505615234375, 833.6630249023438, 758.7179565429688, NaN, NaN], [778.8644409179688, 814.3223266601562, 774.029296875, 697.4725341796875, NaN, NaN], [799.8168334960938, 833.6630249023438, 792.5640869140625, 718.4249267578125, NaN, NaN], [732.5274658203125, 891.2820434570312, 861.8681030273438, 776.4468994140625, NaN, NaN], [691.025634765625, 879.5970458984375, 844.1392211914062, 724.06591796875, NaN, NaN], [738.1685180664062, 822.3809814453125, 772.0146484375, 651.1355590820312, NaN, NaN], [795.7875366210938, 825.6043701171875, 786.923095703125, 698.6813354492188, NaN, NaN], [755.4945068359375, 880.4029541015625, 864.6886596679688, 781.2820434570312, NaN, NaN], [697.069580078125, 885.2380981445312, 864.2857055664062, 776.0439453125, NaN, NaN], [740.989013671875, 830.8424682617188, 788.1318969726562, 705.5311279296875, NaN, NaN], [802.6373901367188, 817.5457763671875, 774.4322509765625, 703.91943359375, NaN, NaN], [785.7142944335938, 873.1502075195312, 853.8095092773438, 777.6557006835938, NaN, NaN], [719.6337280273438, 896.1171875, 888.05859375, 812.7106323242188, NaN, NaN], [735.3479614257812, 844.945068359375, 814.7252807617188, 743.003662109375, NaN, NaN], [837.6923217773438, 818.3516235351562, 765.970703125, 709.5604248046875, NaN, NaN], [852.6007080078125, 869.9267578125, 829.2307739257812, 782.087890625, NaN, NaN], [745.8241577148438, 908.2051391601562, 890.4761962890625, 809.89013671875, NaN, NaN], [714.7985229492188, 865.4945068359375, 836.4835205078125, 740.1831665039062, NaN, NaN], [790.5494384765625, 818.7545776367188, 773.2234497070312, 702.7106323242188, NaN, NaN], [839.3040161132812, 838.09521484375, 805.054931640625, 757.106201171875, NaN, NaN], [782.893798828125, 888.4615478515625, 878.7911987304688, 827.6190185546875, NaN, NaN], [734.1392211914062, 877.1795043945312, 863.8828125, 807.069580078125, NaN, NaN], [793.3699340820312, 819.96337890625, 786.1171875, 740.5860595703125, NaN, NaN], [873.9560546875, 820.7692260742188, 794.1758422851562, 772.0146484375, NaN, NaN], [843.7362670898438, 884.029296875, 877.5823974609375, 859.4505615234375, NaN, NaN], [740.5860595703125, 888.8644409179688, 873.5531005859375, 820.7692260742188, NaN, NaN], [764.7619018554688, 828.02197265625, 791.3552856445312, 740.989013671875, NaN, NaN], [835.6776733398438, 811.098876953125, 770.0, 751.8681030273438, NaN, NaN], [813.113525390625, 861.4652099609375, 841.7216186523438, 816.7399291992188, NaN, NaN], [759.120849609375, 893.6996459960938, 883.6264038085938, 854.2124633789062, NaN, NaN], [763.9560546875, 847.3626098632812, 818.3516235351562, 790.1465454101562, NaN, NaN], [844.1392211914062, 811.90478515625, 774.4322509765625, 738.974365234375, NaN, NaN], [859.8534545898438, 847.7655639648438, 825.2014770507812, 788.1318969726562, NaN, NaN], [774.4322509765625, 893.2966918945312, 888.8644409179688, 847.7655639648438, NaN, NaN], [740.1831665039062, 861.8681030273438, 837.6923217773438, 797.8021850585938, NaN, NaN], [813.5164794921875, 806.2637329101562, 764.3589477539062, 737.7655639648438, NaN, NaN], [863.4798583984375, 822.7838745117188, 801.8314819335938, 777.6557006835938, NaN, NaN], [799.010986328125, 876.7765502929688, 877.9853515625, 832.8571166992188, NaN, NaN], [745.8241577148438, 876.7765502929688, 873.5531005859375, 829.6337280273438, NaN, NaN], [805.054931640625, 819.96337890625, 793.3699340820312, 780.4761962890625, NaN, NaN], [874.7619018554688, 807.87548828125, 781.2820434570312, 776.8497924804688, NaN, NaN], [848.1685180664062, 869.120849609375, 869.120849609375, 832.8571166992188, NaN, NaN], [763.9560546875, 883.2234497070312, 887.6557006835938, 821.5750732421875, NaN, NaN], [785.3113403320312, 824.7985229492188, 812.7106323242188, 749.047607421875, NaN, NaN], [855.8241577148438, 801.8314819335938, 780.879150390625, 739.7802124023438, NaN, NaN], [839.3040161132812, 853.003662109375, 845.7509155273438, 815.5311279296875, NaN, NaN], [764.7619018554688, 889.6703491210938, 897.7289428710938, 858.6447143554688, NaN, NaN], [761.94140625, 844.945068359375, 835.6776733398438, 798.6080322265625, NaN, NaN], [824.3956298828125, 797.8021850585938, 768.3883056640625, 743.8095092773438, NaN, NaN], [847.3626098632812, 833.6630249023438, 818.7545776367188, 801.025634765625, NaN, NaN], [805.4578857421875, 884.4322509765625, 889.2673950195312, 858.2417602539062, NaN, NaN], [773.6264038085938, 859.047607421875, 855.8241577148438, 806.2637329101562, NaN, NaN], [821.1721801757812, 805.4578857421875, 779.2673950195312, 743.8095092773438, NaN, NaN], [869.120849609375, 820.7692260742188, 801.4285888671875, 775.6410522460938, NaN, NaN], [807.069580078125, 874.3589477539062, 873.1502075195312, 828.4249267578125, NaN, NaN], [768.3883056640625, 873.5531005859375, 862.2710571289062, 815.5311279296875, NaN, NaN], [832.8571166992188, 820.3662719726562, 785.3113403320312, 772.0146484375, NaN, NaN], [867.5091552734375, 811.098876953125, 780.879150390625, 793.3699340820312, NaN, NaN], [809.4871826171875, 862.2710571289062, 870.3296508789062, 861.8681030273438, NaN, NaN], [751.062255859375, 880.0, 889.6703491210938, 859.047607421875, NaN, NaN], [781.6849975585938, 826.00732421875, 801.8314819335938, 770.4029541015625, NaN, NaN], [859.4505615234375, 802.2344360351562, 773.2234497070312, 757.5091552734375, NaN, NaN], [873.1502075195312, 855.8241577148438, 850.989013671875, 831.6483764648438, NaN, NaN], [789.3406372070312, 883.2234497070312, 889.6703491210938, 840.5128173828125, NaN, NaN], [768.7911987304688, 838.901123046875, 823.1868286132812, 780.4761962890625, NaN, NaN], [855.8241577148438, 801.8314819335938, 771.2088012695312, 755.8974609375, NaN, NaN], [881.2088012695312, 833.2600708007812, 816.7399291992188, 804.2490844726562, NaN, NaN], [791.3552856445312, 877.9853515625, 883.2234497070312, 859.4505615234375, NaN, NaN], [753.8828125, 856.6300659179688, 853.4066162109375, 815.93408203125, NaN, NaN], [832.8571166992188, 815.1282348632812, 787.7289428710938, 761.5384521484375, NaN, NaN], [882.0146484375, 821.5750732421875, 794.1758422851562, 788.937744140625, NaN, NaN], [873.9560546875, 870.7326049804688, 857.4359130859375, 848.1685180664062, NaN, NaN], [792.1611938476562, 875.970703125, 868.3150024414062, 833.6630249023438, NaN, NaN], [773.2234497070312, 815.1282348632812, 792.5640869140625, 748.2417602539062, NaN, NaN], [861.8681030273438, 804.2490844726562, 773.6264038085938, 751.8681030273438, NaN, NaN], [842.5274658203125, 865.091552734375, 851.7948608398438, 838.4981689453125, NaN, NaN], [756.7033081054688, 891.2820434570312, 885.6410522460938, 862.2710571289062, NaN, NaN], [770.0, 840.10986328125, 814.7252807617188, 792.967041015625, NaN, NaN], [847.7655639648438, 808.2783813476562, 767.5823974609375, 751.062255859375, NaN, NaN], [859.4505615234375, 850.989013671875, 820.7692260742188, 797.8021850585938, NaN, NaN], [796.5933837890625, 894.908447265625, 871.1355590820312, 849.7802124023438, NaN, NaN], [785.3113403320312, 864.2857055664062, 830.03662109375, 800.2197875976562, NaN, NaN], [852.6007080078125, 811.90478515625, 764.7619018554688, 745.018310546875, NaN, NaN], [885.6410522460938, 828.8278198242188, 792.1611938476562, 794.981689453125, NaN, NaN], [828.4249267578125, 886.4468994140625, 875.970703125, 854.2124633789062, NaN, NaN], [784.1025390625, 882.8204956054688, 866.3003540039062, 830.03662109375, NaN, NaN], [829.6337280273438, 815.5311279296875, 773.2234497070312, 764.7619018554688, NaN, NaN], [874.3589477539062, 813.5164794921875, 776.0439453125, 771.2088012695312, NaN, NaN], [828.4249267578125, 877.9853515625, 861.062255859375, 825.6043701171875, NaN, NaN], [755.8974609375, 888.05859375, 872.3442993164062, 821.5750732421875, NaN, NaN], [782.4908447265625, 831.2454223632812, 795.3846435546875, 762.3442993164062, NaN, NaN], [848.1685180664062, 811.098876953125, 769.1941528320312, 760.7326049804688, NaN, NaN], [850.5860595703125, 866.7033081054688, 848.1685180664062, 840.915771484375, NaN, NaN], [801.4285888671875, 892.087890625, 884.8351440429688, 862.2710571289062, NaN, NaN], [774.029296875, 839.3040161132812, 810.2930297851562, 778.05859375, NaN, NaN], [833.6630249023438, 803.8461303710938, 767.1795043945312, 753.076904296875, NaN, NaN], [860.6593627929688, 845.3479614257812, 824.7985229492188, 812.3076782226562, NaN, NaN], [790.1465454101562, 890.0732421875, 882.4176025390625, 848.1685180664062, NaN, NaN], [758.7179565429688, 852.6007080078125, 836.886474609375, 806.6666870117188, NaN, NaN], [828.4249267578125, 801.025634765625, 776.0439453125, 756.7033081054688, NaN, NaN], [872.7472534179688, 828.4249267578125, 818.3516235351562, 784.1025390625, NaN, NaN], [795.3846435546875, 873.9560546875, 883.2234497070312, 838.09521484375, NaN, NaN], [735.3479614257812, 857.032958984375, 861.062255859375, 808.6813354492188, NaN, NaN], [777.2527465820312, 804.6520385742188, 786.5201416015625, 730.10986328125, NaN, NaN], [839.7069702148438, 807.069580078125, 782.087890625, 739.7802124023438, NaN, NaN], [821.97802734375, 865.8974609375, 872.3442993164062, 826.00732421875, NaN, NaN], [748.2417602539062, 873.1502075195312, 888.8644409179688, 815.1282348632812, NaN, NaN], [772.4176025390625, 821.1721801757812, 811.90478515625, 743.4066162109375, NaN, NaN], [838.4981689453125, 807.4725341796875, 795.7875366210938, 753.8828125, NaN, NaN], [817.5457763671875, 850.989013671875, 850.5860595703125, 817.5457763671875, NaN, NaN], [755.091552734375, 879.5970458984375, 882.8204956054688, 834.4688720703125, NaN, NaN], [765.1648559570312, 840.915771484375, 831.6483764648438, 783.2966918945312, NaN, NaN], [828.02197265625, 802.2344360351562, 778.4615478515625, 758.3150024414062, NaN, NaN], [840.915771484375, 836.886474609375, 826.4102783203125, 809.084228515625, NaN, NaN], [799.8168334960938, 885.6410522460938, 893.6996459960938, 863.076904296875, NaN, NaN], [772.8204956054688, 862.6740112304688, 861.4652099609375, 817.94873046875, NaN, NaN], [817.94873046875, 813.5164794921875, 789.7435913085938, 762.3442993164062, NaN, NaN], [851.7948608398438, 823.1868286132812, 803.4432373046875, 794.981689453125, NaN, NaN], [782.087890625, 877.1795043945312, 875.5677490234375, 854.6153564453125, NaN, NaN], [736.1538696289062, 875.1648559570312, 866.7033081054688, 823.99267578125, NaN, NaN], [789.3406372070312, 817.1428833007812, 790.1465454101562, 755.8974609375, NaN, NaN], [852.1978149414062, 811.098876953125, 780.879150390625, 769.5970458984375, NaN, NaN], [844.5421142578125, 868.7179565429688, 857.8388061523438, 847.7655639648438, NaN, NaN], [792.967041015625, 896.1171875, 886.8497924804688, 880.4029541015625, NaN, NaN], [790.1465454101562, 838.901123046875, 803.040283203125, 788.937744140625, NaN, NaN], [835.2747192382812, 801.4285888671875, 760.3296508789062, 750.2564086914062, NaN, NaN], [836.4835205078125, 853.003662109375, 838.09521484375, 821.97802734375, NaN, NaN], [784.1025390625, 890.0732421875, 891.2820434570312, 856.2271118164062, NaN, NaN], [794.1758422851562, 850.989013671875, 834.4688720703125, 805.4578857421875, NaN, NaN], [841.3186645507812, 809.89013671875, 774.4322509765625, 763.9560546875, NaN, NaN], [855.8241577148438, 834.8717651367188, 812.7106323242188, 803.040283203125, NaN, NaN], [802.2344360351562, 892.893798828125, 889.6703491210938, 866.7033081054688, NaN, NaN], [756.3003540039062, 873.9560546875, 855.018310546875, 811.098876953125, NaN, NaN], [812.3076782226562, 814.3223266601562, 771.6116943359375, 738.5714111328125, NaN, NaN], [868.7179565429688, 826.00732421875, 790.1465454101562, 788.5347900390625, NaN, NaN], [832.05126953125, 883.6264038085938, 871.5384521484375, 854.6153564453125, NaN, NaN], [796.5933837890625, 886.8497924804688, 871.94140625, 832.4542236328125, NaN, NaN], [819.1575317382812, 827.2161254882812, 792.1611938476562, 773.6264038085938, NaN, NaN], [852.6007080078125, 815.1282348632812, 782.4908447265625, 776.4468994140625, NaN, NaN], [823.5897216796875, 868.7179565429688, 857.8388061523438, 837.2893676757812, NaN, NaN], [759.120849609375, 890.879150390625, 888.4615478515625, 849.3773193359375, NaN, NaN], [783.6996459960938, 840.10986328125, 818.7545776367188, 796.5933837890625, NaN, NaN], [864.6886596679688, 802.2344360351562, 772.0146484375, 761.1355590820312, NaN, NaN], [853.4066162109375, 843.3333129882812, 827.2161254882812, 804.6520385742188, NaN, NaN], [760.3296508789062, 886.8497924804688, 875.1648559570312, 852.1978149414062, NaN, NaN], [764.7619018554688, 855.018310546875, 830.4395751953125, 806.6666870117188, NaN, NaN], [864.6886596679688, 815.93408203125, 782.4908447265625, 777.6557006835938, NaN, NaN], [889.2673950195312, 835.2747192382812, 810.2930297851562, 823.1868286132812, NaN, NaN], [799.010986328125, 881.2088012695312, 870.7326049804688, 855.8241577148438, NaN, NaN], [745.018310546875, 870.3296508789062, 857.8388061523438, 825.2014770507812, NaN, NaN], [825.2014770507812, 811.5018310546875, 782.893798828125, 751.4652099609375, NaN, NaN], [880.0, 813.91943359375, 788.5347900390625, 768.7911987304688, NaN, NaN], [828.8278198242188, 872.3442993164062, 869.9267578125, 857.8388061523438, NaN, NaN], [769.1941528320312, 879.5970458984375, 886.4468994140625, 848.974365234375, NaN, NaN], [778.8644409179688, 821.5750732421875, 807.4725341796875, 772.8204956054688, NaN, NaN], [855.4212646484375, 802.2344360351562, 771.6116943359375, 751.8681030273438, NaN, NaN], [865.091552734375, 853.8095092773438, 842.930419921875, 800.2197875976562, NaN, NaN], [772.8204956054688, 888.4615478515625, 889.2673950195312, 834.06591796875, NaN, NaN], [748.2417602539062, 842.12451171875, 826.00732421875, 784.1025390625, NaN, NaN], [847.7655639648438, 803.8461303710938, 774.029296875, 765.970703125, NaN, NaN], [876.3735961914062, 839.7069702148438, 822.3809814453125, 824.3956298828125, NaN, NaN], [811.90478515625, 891.6849975585938, 890.4761962890625, 867.912109375, NaN, NaN], [766.7765502929688, 864.2857055664062, 849.3773193359375, 813.113525390625, NaN, NaN], [807.4725341796875, 804.2490844726562, 768.7911987304688, 745.8241577148438, NaN, NaN], [859.4505615234375, 826.00732421875, 798.6080322265625, 800.2197875976562, NaN, NaN], [798.6080322265625, 881.2088012695312, 881.2088012695312, 866.7033081054688, NaN, NaN], [752.6740112304688, 867.5091552734375, 864.6886596679688, 819.1575317382812, NaN, NaN], [812.3076782226562, 809.4871826171875, 788.1318969726562, 778.8644409179688, NaN, NaN], [887.2527465820312, 807.87548828125, 794.5787353515625, 812.3076782226562, NaN, NaN], [874.7619018554688, 871.1355590820312, 879.5970458984375, 891.2820434570312, NaN, NaN], [812.3076782226562, 885.6410522460938, 891.6849975585938, 900.5494384765625, NaN, NaN], [826.8131713867188, 819.1575317382812, 809.4871826171875, 809.89013671875, NaN, NaN], [885.6410522460938, 795.3846435546875, 796.5933837890625, 807.87548828125, NaN, NaN], [879.5970458984375, 846.1538696289062, 863.076904296875, 880.0, NaN, NaN], [809.084228515625, 873.1502075195312, 899.3406372070312, 909.010986328125, NaN, NaN], [784.1025390625, 823.1868286132812, 837.2893676757812, 841.7216186523438, NaN, NaN], [863.4798583984375, 792.1611938476562, 785.7142944335938, 791.3552856445312, NaN, NaN], [911.025634765625, 838.901123046875, 843.3333129882812, 859.8534545898438, NaN, NaN], [838.09521484375, 880.8058471679688, 898.937744140625, 906.996337890625, NaN, NaN], [787.7289428710938, 850.5860595703125, 853.8095092773438, 837.2893676757812, NaN, NaN], [853.4066162109375, 801.4285888671875, 784.908447265625, 786.1171875, NaN, NaN], [931.97802734375, 814.3223266601562, 804.6520385742188, 821.5750732421875, NaN, NaN], [873.1502075195312, 873.1502075195312, 882.0146484375, 883.6264038085938, NaN, NaN], [776.8497924804688, 869.9267578125, 875.970703125, 857.8388061523438, NaN, NaN], [826.4102783203125, 815.93408203125, 802.6373901367188, 793.3699340820312, NaN, NaN], [883.6264038085938, 809.4871826171875, 793.7728881835938, 803.040283203125, NaN, NaN], [839.7069702148438, 860.2564086914062, 863.8828125, 863.076904296875, NaN, NaN], [767.5823974609375, 874.3589477539062, 883.6264038085938, 882.8204956054688, NaN, NaN], [790.1465454101562, 821.97802734375, 808.2783813476562, 809.89013671875, NaN, NaN], [893.6996459960938, 802.6373901367188, 778.4615478515625, 787.3259887695312, NaN, NaN], [892.087890625, 848.5714111328125, 838.901123046875, 852.1978149414062, NaN, NaN], [791.3552856445312, 884.029296875, 878.3883056640625, 883.2234497070312, NaN, NaN], [778.4615478515625, 853.8095092773438, 837.2893676757812, 834.06591796875, NaN, NaN], [847.7655639648438, 806.6666870117188, 781.2820434570312, 785.7142944335938, NaN, NaN], [860.2564086914062, 821.97802734375, 806.2637329101562, 813.113525390625, NaN, NaN], [799.010986328125, 876.3735961914062, 876.3735961914062, 882.4176025390625, NaN, NaN], [770.0, 859.4505615234375, 851.3919677734375, 828.8278198242188, NaN, NaN], [838.09521484375, 807.069580078125, 777.2527465820312, 761.5384521484375, NaN, NaN], [877.9853515625, 817.94873046875, 789.3406372070312, 794.1758422851562, NaN, NaN], [829.2307739257812, 873.5531005859375, 869.5238037109375, 867.912109375, NaN, NaN], [789.7435913085938, 878.3883056640625, 874.7619018554688, 856.2271118164062, NaN, NaN], [813.113525390625, 821.1721801757812, 796.5933837890625, 774.029296875, NaN, NaN], [869.9267578125, 802.6373901367188, 777.6557006835938, 780.879150390625, NaN, NaN], [847.7655639648438, 853.4066162109375, 848.974365234375, 854.6153564453125, NaN, NaN], [786.923095703125, 877.9853515625, 880.8058471679688, 863.4798583984375, NaN, NaN], [796.996337890625, 828.4249267578125, 809.4871826171875, 784.1025390625, NaN, NaN], [836.886474609375, 793.7728881835938, 769.5970458984375, 760.7326049804688, NaN, NaN], [863.4798583984375, 842.930419921875, 836.886474609375, 828.4249267578125, NaN, NaN], [813.5164794921875, 890.879150390625, 896.5201416015625, 868.7179565429688, NaN, NaN], [782.893798828125, 848.5714111328125, 835.2747192382812, 799.010986328125, NaN, NaN], [833.2600708007812, 799.8168334960938, 763.1502075195312, 752.2710571289062, NaN, NaN], [842.12451171875, 823.5897216796875, 797.3992919921875, 801.8314819335938, NaN, NaN], [803.4432373046875, 878.3883056640625, 877.5823974609375, 860.2564086914062, NaN, NaN], [769.1941528320312, 867.5091552734375, 863.8828125, 835.6776733398438, NaN, NaN], [796.1904907226562, 807.4725341796875, 785.7142944335938, 764.3589477539062, NaN, NaN], [861.4652099609375, 816.7399291992188, 803.4432373046875, 790.1465454101562, NaN, NaN], [821.1721801757812, 873.9560546875, 880.0, 856.2271118164062, NaN, NaN], [744.6153564453125, 871.1355590820312, 870.3296508789062, 826.00732421875, NaN, NaN], [791.7582397460938, 815.1282348632812, 795.7875366210938, 758.7179565429688, NaN, NaN], [865.4945068359375, 798.2051391601562, 776.4468994140625, 752.2710571289062, NaN, NaN], [850.1831665039062, 846.5567626953125, 848.5714111328125, 828.4249267578125, NaN, NaN], [780.879150390625, 873.1502075195312, 879.5970458984375, 856.6300659179688, NaN, NaN], [756.3003540039062, 833.2600708007812, 811.098876953125, 780.879150390625, NaN, NaN], [838.09521484375, 805.4578857421875, 772.8204956054688, 751.4652099609375, NaN, NaN], [849.3773193359375, 841.3186645507812, 829.2307739257812, 809.89013671875, NaN, NaN], [780.0732421875, 886.0439453125, 890.0732421875, 863.4798583984375, NaN, NaN], [776.4468994140625, 857.8388061523438, 846.959716796875, 811.90478515625, NaN, NaN], [836.08056640625, 808.2783813476562, 776.8497924804688, 770.4029541015625, NaN, NaN], [842.12451171875, 829.6337280273438, 805.4578857421875, 810.6959838867188, NaN, NaN], [770.4029541015625, 881.6116943359375, 874.3589477539062, 833.6630249023438, NaN, NaN], [749.8534545898438, 874.7619018554688, 862.6740112304688, 803.040283203125, NaN, NaN], [816.7399291992188, 824.3956298828125, 797.8021850585938, 757.106201171875, NaN, NaN], [861.062255859375, 814.3223266601562, 789.3406372070312, 755.8974609375, NaN, NaN], [831.6483764648438, 867.912109375, 861.062255859375, 823.1868286132812, NaN, NaN], [764.3589477539062, 886.0439453125, 878.7911987304688, 827.6190185546875, NaN, NaN], [793.7728881835938, 831.6483764648438, 800.6226806640625, 766.7765502929688, NaN, NaN], [889.6703491210938, 814.3223266601562, 777.6557006835938, 770.4029541015625, NaN, NaN], [857.4359130859375, 864.6886596679688, 851.3919677734375, 837.2893676757812, NaN, NaN], [761.1355590820312, 893.2966918945312, 898.937744140625, 871.1355590820312, NaN, NaN], [764.3589477539062, 840.5128173828125, 836.4835205078125, 793.3699340820312, NaN, NaN], [842.930419921875, 799.8168334960938, 773.2234497070312, 755.091552734375, NaN, NaN], [870.7326049804688, 839.3040161132812, 824.7985229492188, 834.06591796875, NaN, NaN], [793.3699340820312, 882.0146484375, 894.5054931640625, 868.3150024414062, NaN, NaN], [759.9267578125, 856.2271118164062, 858.6447143554688, 810.6959838867188, NaN, NaN], [837.6923217773438, 806.6666870117188, 786.1171875, 767.1795043945312, NaN, NaN], [887.2527465820312, 821.97802734375, 803.040283203125, 801.025634765625, NaN, NaN], [823.5897216796875, 875.5677490234375, 875.5677490234375, 871.5384521484375, NaN, NaN], [763.5531005859375, 870.3296508789062, 869.9267578125, 859.4505615234375, NaN, NaN], [809.4871826171875, 815.5311279296875, 792.967041015625, 781.2820434570312, NaN, NaN], [880.4029541015625, 810.6959838867188, 788.937744140625, 781.2820434570312, NaN, NaN], [855.8241577148438, 859.8534545898438, 865.091552734375, 847.7655639648438, NaN, NaN], [780.4761962890625, 879.1941528320312, 882.8204956054688, 861.4652099609375, NaN, NaN], [810.2930297851562, 830.4395751953125, 807.069580078125, 795.7875366210938, NaN, NaN], [875.1648559570312, 807.069580078125, 780.0732421875, 772.4176025390625, NaN, NaN], [859.047607421875, 854.6153564453125, 844.5421142578125, 843.3333129882812, NaN, NaN], [781.2820434570312, 882.0146484375, 882.0146484375, 866.3003540039062, NaN, NaN], [780.879150390625, 848.974365234375, 836.08056640625, 797.8021850585938, NaN, NaN], [851.3919677734375, 810.2930297851562, 785.3113403320312, 765.970703125, NaN, NaN], [877.9853515625, 834.8717651367188, 818.3516235351562, 814.7252807617188, NaN, NaN], [827.6190185546875, 882.4176025390625, 883.2234497070312, 867.912109375, NaN, NaN], [788.5347900390625, 861.4652099609375, 859.8534545898438, 833.2600708007812, NaN, NaN], [830.03662109375, 813.113525390625, 798.2051391601562, 794.5787353515625, NaN, NaN], [882.4176025390625, 818.7545776367188, 807.87548828125, 819.5604248046875, NaN, NaN], [853.003662109375, 869.5238037109375, 869.120849609375, 846.959716796875, NaN, NaN], [783.6996459960938, 875.970703125, 873.5531005859375, 829.2307739257812, NaN, NaN], [801.025634765625, 820.7692260742188, 797.3992919921875, 755.091552734375, NaN, NaN], [870.3296508789062, 811.098876953125, 786.923095703125, 769.1941528320312, NaN, NaN], [829.6337280273438, 863.4798583984375, 863.076904296875, 859.047607421875, NaN, NaN], [747.032958984375, 881.2088012695312, 888.4615478515625, 867.106201171875, NaN, NaN], [766.7765502929688, 832.4542236328125, 819.5604248046875, 796.996337890625, NaN, NaN], [852.6007080078125, 804.6520385742188, 776.0439453125, 776.4468994140625, NaN, NaN], [862.2710571289062, 848.1685180664062, 834.8717651367188, 834.06591796875, NaN, NaN], [790.952392578125, 888.05859375, 889.2673950195312, 869.120849609375, NaN, NaN], [786.5201416015625, 853.8095092773438, 844.945068359375, 823.99267578125, NaN, NaN], [852.1978149414062, 809.084228515625, 786.5201416015625, 767.5823974609375, NaN, NaN], [876.7765502929688, 829.2307739257812, 815.93408203125, 789.7435913085938, NaN, NaN], [822.7838745117188, 882.4176025390625, 882.8204956054688, 848.5714111328125, NaN, NaN], [777.2527465820312, 880.0, 873.9560546875, 833.6630249023438, NaN, NaN], [819.96337890625, 816.3369750976562, 789.7435913085938, 766.7765502929688, NaN, NaN], [869.120849609375, 815.1282348632812, 791.7582397460938, 793.3699340820312, NaN, NaN], [833.2600708007812, 882.8204956054688, 877.9853515625, 867.106201171875, NaN, NaN], [773.2234497070312, 894.908447265625, 885.2380981445312, 845.3479614257812, NaN, NaN], [784.1025390625, 838.901123046875, 805.054931640625, 756.3003540039062, NaN, NaN], [849.3773193359375, 819.5604248046875, 779.6703491210938, 743.003662109375, NaN, NaN], [841.7216186523438, 878.3883056640625, 856.6300659179688, 808.6813354492188, NaN, NaN], [745.8241577148438, 906.996337890625, 888.8644409179688, 823.5897216796875, NaN, NaN], [726.08056640625, 852.6007080078125, 813.5164794921875, 744.6153564453125, NaN, NaN], [795.3846435546875, 819.5604248046875, 765.970703125, 701.90478515625, NaN, NaN], [812.3076782226562, 860.2564086914062, 818.3516235351562, 754.2857055664062, NaN, NaN], [748.6447143554688, 898.1318969726562, 873.9560546875, 798.6080322265625, NaN, NaN], [743.4066162109375, 868.7179565429688, 828.8278198242188, 755.8974609375, NaN, NaN], [802.2344360351562, 817.94873046875, 763.9560546875, 707.94873046875, NaN, NaN], [831.2454223632812, 837.2893676757812, 798.6080322265625, 759.120849609375, NaN, NaN], [778.4615478515625, 892.087890625, 860.2564086914062, 801.8314819335938, NaN, NaN], [713.99267578125, 875.5677490234375, 838.901123046875, 761.5384521484375, NaN, NaN], [771.2088012695312, 823.99267578125, 773.6264038085938, 724.4688720703125, NaN, NaN], [846.1538696289062, 819.96337890625, 784.1025390625, 755.4945068359375, NaN, NaN], [802.2344360351562, 871.94140625, 862.6740112304688, 821.1721801757812, NaN, NaN], [732.930419921875, 888.4615478515625, 868.7179565429688, 801.4285888671875, NaN, NaN], [778.05859375, 839.3040161132812, 799.4139404296875, 736.5567626953125, NaN, NaN], [864.6886596679688, 823.99267578125, 779.6703491210938, 757.106201171875, NaN, NaN], [844.1392211914062, 869.120849609375, 838.09521484375, 808.2783813476562, NaN, NaN], [752.2710571289062, 896.5201416015625, 874.3589477539062, 799.4139404296875, NaN, NaN], [745.018310546875, 855.018310546875, 822.7838745117188, 746.6300659179688, NaN, NaN], [815.1282348632812, 815.5311279296875, 774.029296875, 725.6776733398438, NaN, NaN], [842.5274658203125, 848.1685180664062, 813.113525390625, 792.967041015625, NaN, NaN], [776.0439453125, 891.6849975585938, 867.912109375, 844.945068359375, NaN, NaN], [753.4798583984375, 876.3735961914062, 853.4066162109375, 797.8021850585938, NaN, NaN], [834.8717651367188, 828.8278198242188, 792.967041015625, 757.5091552734375, NaN, NaN], [886.0439453125, 838.901123046875, 805.054931640625, 787.7289428710938, NaN, NaN], [816.3369750976562, 894.1025390625, 879.5970458984375, 832.8571166992188, NaN, NaN], [765.5677490234375, 890.4761962890625, 873.5531005859375, 814.3223266601562, NaN, NaN], [845.7509155273438, 835.2747192382812, 801.8314819335938, 764.7619018554688, NaN, NaN], [888.05859375, 828.02197265625, 790.952392578125, 781.6849975585938, NaN, NaN], [813.113525390625, 880.8058471679688, 859.8534545898438, 841.3186645507812, NaN, NaN], [753.076904296875, 901.3552856445312, 895.7142944335938, 852.1978149414062, NaN, NaN], [767.9853515625, 845.7509155273438, 821.1721801757812, 761.5384521484375, NaN, NaN], [840.5128173828125, 817.5457763671875, 781.2820434570312, 737.7655639648438, NaN, NaN], [857.8388061523438, 864.2857055664062, 850.989013671875, 820.3662719726562, NaN, NaN], [765.970703125, 892.893798828125, 892.4908447265625, 849.7802124023438, NaN, NaN], [745.018310546875, 857.8388061523438, 840.5128173828125, 791.7582397460938, NaN, NaN], [828.8278198242188, 815.93408203125, 784.5054931640625, 749.4505615234375, NaN, NaN], [868.7179565429688, 839.7069702148438, 821.97802734375, 802.6373901367188, NaN, NaN], [819.5604248046875, 893.2966918945312, 900.952392578125, 881.6116943359375, NaN, NaN], [757.5091552734375, 870.7326049804688, 869.120849609375, 832.4542236328125, NaN, NaN], [792.967041015625, 811.90478515625, 781.2820434570312, 750.6593627929688, NaN, NaN], [862.6740112304688, 822.7838745117188, 793.3699340820312, 787.7289428710938, NaN, NaN], [824.3956298828125, 876.7765502929688, 873.9560546875, 838.901123046875, NaN, NaN], [753.076904296875, 876.7765502929688, 881.2088012695312, 799.8168334960938, NaN, NaN], [783.2966918945312, 818.7545776367188, 803.040283203125, 734.1392211914062, NaN, NaN], [872.3442993164062, 810.6959838867188, 791.3552856445312, 752.2710571289062, NaN, NaN], [842.12451171875, 858.2417602539062, 859.4505615234375, 833.6630249023438, NaN, NaN], [736.5567626953125, 874.3589477539062, 880.4029541015625, 843.3333129882812, NaN, NaN], [754.6886596679688, 831.6483764648438, 813.5164794921875, 763.9560546875, NaN, NaN], [841.7216186523438, 803.040283203125, 774.4322509765625, 738.1685180664062, NaN, NaN], [842.5274658203125, 841.7216186523438, 834.4688720703125, 808.2783813476562, NaN, NaN], [782.4908447265625, 883.2234497070312, 889.6703491210938, 863.076904296875, NaN, NaN], [765.5677490234375, 852.1978149414062, 840.5128173828125, 800.6226806640625, NaN, NaN], [828.8278198242188, 813.113525390625, 798.2051391601562, 767.5823974609375, NaN, NaN], [862.2710571289062, 834.8717651367188, 832.05126953125, 805.8607788085938, NaN, NaN], [791.7582397460938, 874.7619018554688, 881.6116943359375, 840.10986328125, NaN, NaN], [759.9267578125, 865.8974609375, 870.3296508789062, 821.1721801757812, NaN, NaN], [819.5604248046875, 814.3223266601562, 796.1904907226562, 762.7472534179688, NaN, NaN], [853.4066162109375, 817.1428833007812, 796.5933837890625, 785.7142944335938, NaN, NaN], [814.3223266601562, 873.1502075195312, 880.4029541015625, 864.6886596679688, NaN, NaN], [758.7179565429688, 877.5823974609375, 892.087890625, 852.1978149414062, NaN, NaN], [788.1318969726562, 821.97802734375, 814.7252807617188, 772.4176025390625, NaN, NaN], [856.6300659179688, 805.054931640625, 788.5347900390625, 765.1648559570312, NaN, NaN], [838.901123046875, 856.6300659179688, 856.6300659179688, 825.6043701171875, NaN, NaN], [762.3442993164062, 886.4468994140625, 889.2673950195312, 849.7802124023438, NaN, NaN], [784.1025390625, 842.5274658203125, 822.3809814453125, 777.2527465820312, NaN, NaN], [862.6740112304688, 809.89013671875, 782.4908447265625, 743.8095092773438, NaN, NaN], [845.3479614257812, 844.1392211914062, 828.02197265625, 799.4139404296875, NaN, NaN], [792.1611938476562, 888.05859375, 882.8204956054688, 849.7802124023438, NaN, NaN], [772.8204956054688, 859.047607421875, 846.5567626953125, 822.3809814453125, NaN, NaN], [818.7545776367188, 806.6666870117188, 778.8644409179688, 742.1978149414062, NaN, NaN], [871.1355590820312, 830.03662109375, 809.89013671875, 755.8974609375, NaN, NaN], [813.113525390625, 884.4322509765625, 879.5970458984375, 827.2161254882812, NaN, NaN], [765.1648559570312, 870.7326049804688, 845.7509155273438, 811.90478515625, NaN, NaN], [809.4871826171875, 815.5311279296875, 767.5823974609375, 761.94140625, NaN, NaN], [843.7362670898438, 813.113525390625, 782.087890625, 769.1941528320312, NaN, NaN], [829.2307739257812, 875.970703125, 871.94140625, 847.3626098632812, NaN, NaN], [770.8058471679688, 887.6557006835938, 887.2527465820312, 849.7802124023438, NaN, NaN], [788.5347900390625, 822.7838745117188, 805.8607788085938, 782.087890625, NaN, NaN], [882.4176025390625, 807.87548828125, 785.3113403320312, 801.8314819335938, NaN, NaN], [867.5091552734375, 858.2417602539062, 854.6153564453125, 851.3919677734375, NaN, NaN], [783.2966918945312, 885.6410522460938, 897.3259887695312, 859.4505615234375, NaN, NaN], [772.4176025390625, 843.7362670898438, 835.6776733398438, 791.3552856445312, NaN, NaN], [849.7802124023438, 809.084228515625, 791.3552856445312, 760.7326049804688, NaN, NaN], [904.981689453125, 848.1685180664062, 845.7509155273438, 821.5750732421875, NaN, NaN], [797.3992919921875, 886.8497924804688, 893.6996459960938, 857.032958984375, NaN, NaN], [732.12451171875, 859.047607421875, 856.2271118164062, 811.90478515625, NaN, NaN], [819.96337890625, 811.90478515625, 789.3406372070312, 762.3442993164062, NaN, NaN], [885.6410522460938, 823.1868286132812, 797.8021850585938, 783.6996459960938, NaN, NaN], [837.2893676757812, 875.1648559570312, 868.3150024414062, 857.032958984375, NaN, NaN], [761.94140625, 876.3735961914062, 872.3442993164062, 837.2893676757812, NaN, NaN], [807.4725341796875, 827.6190185546875, 800.2197875976562, 753.8828125, NaN, NaN], [871.5384521484375, 814.7252807617188, 791.3552856445312, 770.4029541015625, NaN, NaN], [839.7069702148438, 864.6886596679688, 865.091552734375, 840.5128173828125, NaN, NaN], [780.0732421875, 884.029296875, 886.4468994140625, 851.7948608398438, NaN, NaN], [796.5933837890625, 836.08056640625, 820.7692260742188, 789.3406372070312, NaN, NaN], [863.8828125, 815.1282348632812, 790.5494384765625, 777.2527465820312, NaN, NaN], [871.94140625, 855.018310546875, 847.7655639648438, 830.03662109375, NaN, NaN], [813.113525390625, 890.0732421875, 893.2966918945312, 850.1831665039062, NaN, NaN], [805.8607788085938, 860.6593627929688, 853.8095092773438, 802.6373901367188, NaN, NaN], [855.018310546875, 815.1282348632812, 795.7875366210938, 773.2234497070312, NaN, NaN], [857.4359130859375, 829.6337280273438, 815.93408203125, 809.89013671875, NaN, NaN], [795.7875366210938, 880.4029541015625, 890.0732421875, 867.5091552734375, NaN, NaN], [750.2564086914062, 864.2857055664062, 876.3735961914062, 830.4395751953125, NaN, NaN], [819.96337890625, 810.6959838867188, 810.6959838867188, 774.4322509765625, NaN, NaN], [890.0732421875, 825.2014770507812, 820.3662719726562, 807.069580078125, NaN, NaN], [830.4395751953125, 881.2088012695312, 884.029296875, 853.4066162109375, NaN, NaN], [761.94140625, 882.8204956054688, 888.05859375, 834.4688720703125, NaN, NaN], [802.2344360351562, 826.8131713867188, 817.94873046875, 782.4908447265625, NaN, NaN], [874.7619018554688, 814.3223266601562, 799.4139404296875, 792.5640869140625, NaN, NaN], [853.8095092773438, 870.7326049804688, 870.7326049804688, 850.989013671875, NaN, NaN], [776.4468994140625, 894.1025390625, 891.6849975585938, 855.8241577148438, NaN, NaN], [781.6849975585938, 842.12451171875, 819.96337890625, 787.7289428710938, NaN, NaN], [862.6740112304688, 813.91943359375, 790.1465454101562, 766.3735961914062, NaN, NaN], [878.7911987304688, 863.076904296875, 855.8241577148438, 837.6923217773438, NaN, NaN], [794.5787353515625, 900.1465454101562, 900.952392578125, 876.7765502929688, NaN, NaN], [761.5384521484375, 856.2271118164062, 841.7216186523438, 807.069580078125, NaN, NaN], [842.930419921875, 812.7106323242188, 790.952392578125, 763.9560546875, NaN, NaN], [880.8058471679688, 835.2747192382812, 830.4395751953125, 815.93408203125, NaN, NaN], [806.6666870117188, 881.6116943359375, 896.1171875, 873.1502075195312, NaN, NaN], [769.1941528320312, 875.1648559570312, 875.970703125, 842.12451171875, NaN, NaN], [820.7692260742188, 822.3809814453125, 796.1904907226562, 766.7765502929688, NaN, NaN], [879.1941528320312, 827.2161254882812, 815.5311279296875, 794.1758422851562, NaN, NaN], [844.945068359375, 883.2234497070312, 896.923095703125, 857.8388061523438, NaN, NaN], [757.106201171875, 883.2234497070312, 885.2380981445312, 828.4249267578125, NaN, NaN], [787.7289428710938, 828.02197265625, 811.5018310546875, 785.7142944335938, NaN, NaN], [863.4798583984375, 809.89013671875, 792.5640869140625, 783.6996459960938, NaN, NaN], [851.7948608398438, 865.091552734375, 861.4652099609375, 840.10986328125, NaN, NaN], [792.967041015625, 888.05859375, 898.5347900390625, 870.7326049804688, NaN, NaN], [801.025634765625, 842.930419921875, 838.09521484375, 805.4578857421875, NaN, NaN], [876.7765502929688, 814.7252807617188, 791.3552856445312, 777.6557006835938, NaN, NaN], [883.2234497070312, 848.5714111328125, 837.6923217773438, 830.8424682617188, NaN, NaN], [789.7435913085938, 886.4468994140625, 898.5347900390625, 859.4505615234375, NaN, NaN], [751.8681030273438, 853.4066162109375, 862.6740112304688, 798.2051391601562, NaN, NaN], [819.5604248046875, 804.6520385742188, 803.040283203125, 753.4798583984375, NaN, NaN], [862.6740112304688, 819.1575317382812, 824.7985229492188, 786.923095703125, NaN, NaN], [794.5787353515625, 871.5384521484375, 890.879150390625, 837.2893676757812, NaN, NaN], [732.930419921875, 869.5238037109375, 882.8204956054688, 819.5604248046875, NaN, NaN], [824.7985229492188, 817.1428833007812, 817.5457763671875, 763.5531005859375, NaN, NaN], [880.8058471679688, 806.2637329101562, 807.87548828125, 763.1502075195312, NaN, NaN], [799.8168334960938, 859.047607421875, 873.5531005859375, 823.99267578125, NaN, NaN], [740.5860595703125, 877.9853515625, 882.0146484375, 826.8131713867188, NaN, NaN], [771.6116943359375, 823.5897216796875, 810.6959838867188, 759.5238037109375, NaN, NaN], [857.8388061523438, 804.6520385742188, 794.981689453125, 747.032958984375, NaN, NaN], [855.4212646484375, 850.5860595703125, 864.2857055664062, 815.93408203125, NaN, NaN], [767.9853515625, 879.1941528320312, 908.6080322265625, 855.018310546875, NaN, NaN], [764.7619018554688, 840.5128173828125, 842.5274658203125, 789.3406372070312, NaN, NaN], [825.2014770507812, 798.2051391601562, 778.4615478515625, 743.003662109375, NaN, NaN], [849.3773193359375, 836.08056640625, 830.8424682617188, 800.2197875976562, NaN, NaN], [780.879150390625, 882.4176025390625, 894.1025390625, 857.4359130859375, NaN, NaN], [739.7802124023438, 854.2124633789062, 857.4359130859375, 813.5164794921875, NaN, NaN], [811.5018310546875, 807.4725341796875, 790.5494384765625, 749.4505615234375, NaN, NaN], [863.8828125, 820.7692260742188, 805.4578857421875, 777.6557006835938, NaN, NaN], [811.90478515625, 874.3589477539062, 877.1795043945312, 857.8388061523438, NaN, NaN], [753.4798583984375, 868.7179565429688, 873.5531005859375, 827.6190185546875, NaN, NaN], [803.8461303710938, 813.91943359375, 805.4578857421875, 759.9267578125, NaN, NaN], [884.029296875, 812.3076782226562, 801.4285888671875, 783.2966918945312, NaN, NaN], [839.7069702148438, 863.076904296875, 861.8681030273438, 834.4688720703125, NaN, NaN], [745.4212646484375, 876.7765502929688, 882.8204956054688, 829.2307739257812, NaN, NaN], [770.0, 826.00732421875, 818.3516235351562, 766.3735961914062, NaN, NaN], [846.959716796875, 807.87548828125, 792.1611938476562, 774.4322509765625, NaN, NaN], [850.1831665039062, 858.2417602539062, 859.4505615234375, 846.1538696289062, NaN, NaN], [777.2527465820312, 878.3883056640625, 883.6264038085938, 843.7362670898438, NaN, NaN], [759.5238037109375, 840.10986328125, 827.2161254882812, 788.1318969726562, NaN, NaN], [840.5128173828125, 806.6666870117188, 784.908447265625, 762.3442993164062, NaN, NaN], [888.8644409179688, 834.4688720703125, 824.7985229492188, 800.6226806640625, NaN, NaN], [816.3369750976562, 885.2380981445312, 888.8644409179688, 841.3186645507812, NaN, NaN], [742.1978149414062, 865.8974609375, 861.4652099609375, 798.6080322265625, NaN, NaN], [801.8314819335938, 819.96337890625, 805.054931640625, 767.5823974609375, NaN, NaN], [875.5677490234375, 828.4249267578125, 821.97802734375, 801.8314819335938, NaN, NaN], [816.3369750976562, 870.3296508789062, 881.6116943359375, 846.5567626953125, NaN, NaN], [756.7033081054688, 871.5384521484375, 879.5970458984375, 831.2454223632812, NaN, NaN], [806.2637329101562, 818.7545776367188, 800.6226806640625, 769.1941528320312, NaN, NaN], [857.032958984375, 808.2783813476562, 783.2966918945312, 786.923095703125, NaN, NaN], [827.6190185546875, 862.2710571289062, 857.8388061523438, 840.5128173828125, NaN, NaN], [759.5238037109375, 877.9853515625, 884.8351440429688, 833.2600708007812, NaN, NaN], [759.9267578125, 823.5897216796875, 813.91943359375, 758.3150024414062, NaN, NaN], [839.3040161132812, 803.4432373046875, 783.2966918945312, 734.945068359375, NaN, NaN], [849.3773193359375, 847.3626098632812, 844.5421142578125, 813.91943359375, NaN, NaN], [775.6410522460938, 880.4029541015625, 891.2820434570312, 858.2417602539062, NaN, NaN], [761.1355590820312, 847.3626098632812, 848.974365234375, 799.8168334960938, NaN, NaN], [829.2307739257812, 798.6080322265625, 786.923095703125, 758.7179565429688, NaN, NaN], [862.6740112304688, 816.3369750976562, 814.3223266601562, 799.010986328125, NaN, NaN], [792.5640869140625, 868.3150024414062, 873.5531005859375, 848.974365234375, NaN, NaN], [761.94140625, 862.2710571289062, 863.4798583984375, 816.3369750976562, NaN, NaN], [805.054931640625, 803.4432373046875, 792.967041015625, 752.2710571289062, NaN, NaN], [833.2600708007812, 798.6080322265625, 794.5787353515625, 772.8204956054688, NaN, NaN], [811.90478515625, 857.4359130859375, 874.3589477539062, 828.4249267578125, NaN, NaN], [762.7472534179688, 867.106201171875, 878.3883056640625, 812.7106323242188, NaN, NaN], [778.4615478515625, 809.084228515625, 803.8461303710938, 753.8828125, NaN, NaN], [832.8571166992188, 788.937744140625, 786.1171875, 755.091552734375, NaN, NaN], [826.00732421875, 844.945068359375, 858.2417602539062, 825.2014770507812, NaN, NaN], [758.3150024414062, 872.7472534179688, 889.2673950195312, 853.4066162109375, NaN, NaN], [767.5823974609375, 823.99267578125, 813.5164794921875, 784.908447265625, NaN, NaN], [866.3003540039062, 794.981689453125, 763.5531005859375, 771.2088012695312, NaN, NaN], [867.106201171875, 830.03662109375, 821.5750732421875, 829.2307739257812, NaN, NaN], [772.4176025390625, 866.3003540039062, 877.1795043945312, 844.1392211914062, NaN, NaN], [746.2271118164062, 841.3186645507812, 840.915771484375, 788.1318969726562, NaN, NaN], [809.89013671875, 794.5787353515625, 784.1025390625, 748.6447143554688, NaN, NaN], [862.6740112304688, 818.3516235351562, 817.1428833007812, 805.054931640625, NaN, NaN], [801.8314819335938, 872.3442993164062, 882.0146484375, 851.3919677734375, NaN, NaN], [736.1538696289062, 856.6300659179688, 855.8241577148438, 815.1282348632812, NaN, NaN], [793.3699340820312, 804.6520385742188, 785.7142944335938, 769.1941528320312, NaN, NaN], [850.989013671875, 806.6666870117188, 782.893798828125, 773.2234497070312, NaN, NaN], [822.7838745117188, 863.4798583984375, 858.2417602539062, 832.05126953125, NaN, NaN], [765.1648559570312, 867.912109375, 875.970703125, 832.8571166992188, NaN, NaN], [784.1025390625, 812.7106323242188, 806.6666870117188, 767.1795043945312, NaN, NaN], [867.912109375, 801.4285888671875, 788.937744140625, 760.3296508789062, NaN, NaN], [849.7802124023438, 845.7509155273438, 837.2893676757812, 811.90478515625, NaN, NaN], [768.3883056640625, 867.912109375, 868.7179565429688, 832.4542236328125, NaN, NaN], [770.0, 828.4249267578125, 823.5897216796875, 775.2380981445312, NaN, NaN], [830.8424682617188, 792.1611938476562, 775.6410522460938, 747.4359130859375, NaN, NaN], [853.4066162109375, 820.7692260742188, 822.7838745117188, 797.8021850585938, NaN, NaN], [795.3846435546875, 867.5091552734375, 880.4029541015625, 830.03662109375, NaN, NaN], [775.2380981445312, 846.1538696289062, 845.3479614257812, 794.1758422851562, NaN, NaN], [827.6190185546875, 793.3699340820312, 775.6410522460938, 749.8534545898438, NaN, NaN], [855.018310546875, 811.5018310546875, 793.7728881835938, 774.029296875, NaN, NaN], [788.937744140625, 862.2710571289062, 874.3589477539062, 838.4981689453125, NaN, NaN], [752.6740112304688, 858.6447143554688, 869.5238037109375, 828.8278198242188, NaN, NaN], [815.93408203125, 803.4432373046875, 791.3552856445312, 766.3735961914062, NaN, NaN], [858.2417602539062, 801.4285888671875, 785.3113403320312, 755.4945068359375, NaN, NaN], [825.2014770507812, 867.106201171875, 858.6447143554688, 818.3516235351562, NaN, NaN], [770.0, 890.4761962890625, 887.2527465820312, 847.7655639648438, NaN, NaN], [788.5347900390625, 835.6776733398438, 815.5311279296875, 780.0732421875, NaN, NaN], [855.018310546875, 806.2637329101562, 770.0, 755.8974609375, NaN, NaN], [854.2124633789062, 855.018310546875, 833.6630249023438, 831.2454223632812, NaN, NaN], [788.937744140625, 887.6557006835938, 880.0, 858.6447143554688, NaN, NaN], [796.1904907226562, 851.7948608398438, 827.6190185546875, 794.5787353515625, NaN, NaN], [848.974365234375, 810.2930297851562, 773.6264038085938, 761.5384521484375, NaN, NaN], [859.047607421875, 832.4542236328125, 814.7252807617188, 803.4432373046875, NaN, NaN], [800.2197875976562, 880.0, 888.8644409179688, 854.2124633789062, NaN, NaN], [757.912109375, 857.8388061523438, 855.018310546875, 802.6373901367188, NaN, NaN], [824.3956298828125, 804.2490844726562, 778.8644409179688, 743.8095092773438, NaN, NaN], [885.6410522460938, 810.6959838867188, 795.7875366210938, 784.1025390625, NaN, NaN], [837.2893676757812, 866.7033081054688, 868.3150024414062, 851.3919677734375, NaN, NaN], [763.5531005859375, 872.7472534179688, 869.9267578125, 834.06591796875, NaN, NaN], [806.6666870117188, 813.91943359375, 791.3552856445312, 763.9560546875, NaN, NaN], [886.0439453125, 806.2637329101562, 779.6703491210938, 776.4468994140625, NaN, NaN], [839.7069702148438, 864.6886596679688, 850.989013671875, 845.7509155273438, NaN, NaN], [755.091552734375, 884.8351440429688, 877.5823974609375, 855.8241577148438, NaN, NaN], [775.2380981445312, 838.901123046875, 823.1868286132812, 786.923095703125, NaN, NaN], [842.930419921875, 806.6666870117188, 788.1318969726562, 762.7472534179688, NaN, NaN], [857.032958984375, 850.5860595703125, 842.930419921875, 826.4102783203125, NaN, NaN], [815.1282348632812, 895.7142944335938, 882.4176025390625, 858.6447143554688, NaN, NaN], [796.996337890625, 856.6300659179688, 832.4542236328125, 801.8314819335938, NaN, NaN], [853.8095092773438, 809.89013671875, 795.7875366210938, 767.9853515625, NaN, NaN], [863.4798583984375, 823.99267578125, 823.99267578125, 805.4578857421875, NaN, NaN], [789.7435913085938, 863.076904296875, 878.3883056640625, 854.2124633789062, NaN, NaN], [767.9853515625, 850.5860595703125, 871.5384521484375, 847.3626098632812, NaN, NaN], [828.4249267578125, 794.981689453125, 805.8607788085938, 784.5054931640625, NaN, NaN], [886.4468994140625, 795.3846435546875, 813.91943359375, 796.1904907226562, NaN, NaN], [858.2417602539062, 846.1538696289062, 889.6703491210938, 876.7765502929688, NaN, NaN], [795.3846435546875, 852.1978149414062, 897.3259887695312, 871.94140625, NaN, NaN], [823.5897216796875, 801.4285888671875, 830.4395751953125, 809.89013671875, NaN, NaN], [869.5238037109375, 782.087890625, 808.6813354492188, 808.2783813476562, NaN, NaN], [845.3479614257812, 834.8717651367188, 871.1355590820312, 869.9267578125, NaN, NaN], [797.8021850585938, 869.120849609375, 908.2051391601562, 880.8058471679688, NaN, NaN], [792.5640869140625, 826.4102783203125, 841.3186645507812, 811.90478515625, NaN, NaN], [865.8974609375, 796.5933837890625, 802.2344360351562, 802.6373901367188, NaN, NaN], [885.2380981445312, 830.4395751953125, 853.8095092773438, 864.6886596679688, NaN, NaN], [808.2783813476562, 871.94140625, 901.3552856445312, 904.981689453125, NaN, NaN], [784.5054931640625, 848.5714111328125, 866.7033081054688, 858.2417602539062, NaN, NaN], [853.4066162109375, 799.4139404296875, 809.89013671875, 809.89013671875, NaN, NaN], [897.7289428710938, 814.7252807617188, 836.886474609375, 836.08056640625, NaN, NaN], [831.6483764648438, 866.3003540039062, 904.1758422851562, 883.6264038085938, NaN, NaN], [782.4908447265625, 860.2564086914062, 891.2820434570312, 855.018310546875, NaN, NaN], [842.5274658203125, 807.87548828125, 815.5311279296875, 790.1465454101562, NaN, NaN], [903.3699340820312, 804.2490844726562, 806.6666870117188, 795.3846435546875, NaN, NaN], [866.7033081054688, 863.4798583984375, 893.2966918945312, 877.1795043945312, NaN, NaN], [774.8351440429688, 873.5531005859375, 908.6080322265625, 877.1795043945312, NaN, NaN], [795.3846435546875, 812.3076782226562, 812.3076782226562, 777.6557006835938, NaN, NaN], [869.5238037109375, 794.1758422851562, 786.923095703125, 769.5970458984375, NaN, NaN], [850.989013671875, 843.3333129882812, 859.4505615234375, 834.4688720703125, NaN, NaN], [794.1758422851562, 871.1355590820312, 892.4908447265625, 878.3883056640625, NaN, NaN], [783.2966918945312, 827.2161254882812, 832.4542236328125, 816.7399291992188, NaN, NaN], [844.5421142578125, 792.967041015625, 791.3552856445312, 759.120849609375, NaN, NaN], [886.4468994140625, 828.8278198242188, 842.930419921875, 813.5164794921875, NaN, NaN], [808.2783813476562, 865.091552734375, 892.087890625, 855.8241577148438, NaN, NaN], [751.8681030273438, 839.3040161132812, 857.032958984375, 807.069580078125, NaN, NaN], [847.3626098632812, 796.5933837890625, 800.6226806640625, 777.6557006835938, NaN, NaN], [894.1025390625, 809.4871826171875, 816.7399291992188, 825.2014770507812, NaN, NaN], [811.098876953125, 858.2417602539062, 880.8058471679688, 873.5531005859375, NaN, NaN], [749.047607421875, 852.6007080078125, 873.5531005859375, 847.7655639648438, NaN, NaN], [799.8168334960938, 805.8607788085938, 808.6813354492188, 776.4468994140625, NaN, NaN], [873.9560546875, 801.025634765625, 803.8461303710938, 778.4615478515625, NaN, NaN], [830.4395751953125, 846.5567626953125, 864.2857055664062, 837.6923217773438, NaN, NaN], [769.5970458984375, 865.4945068359375, 885.6410522460938, 846.959716796875, NaN, NaN], [809.4871826171875, 817.94873046875, 817.5457763671875, 782.4908447265625, NaN, NaN], [862.6740112304688, 795.3846435546875, 785.3113403320312, 774.029296875, NaN, NaN], [842.12451171875, 838.901123046875, 848.5714111328125, 835.6776733398438, NaN, NaN], [767.9853515625, 870.7326049804688, 886.4468994140625, 859.047607421875, NaN, NaN], [779.6703491210938, 842.5274658203125, 843.7362670898438, 814.3223266601562, NaN, NaN], [862.2710571289062, 801.025634765625, 791.7582397460938, 783.2966918945312, NaN, NaN], [871.5384521484375, 818.3516235351562, 819.1575317382812, 815.5311279296875, NaN, NaN], [800.2197875976562, 867.912109375, 890.4761962890625, 864.6886596679688, NaN, NaN], [767.5823974609375, 850.989013671875, 861.8681030273438, 812.3076782226562, NaN, NaN], [833.2600708007812, 798.2051391601562, 787.7289428710938, 757.912109375, NaN, NaN], [879.1941528320312, 806.2637329101562, 804.6520385742188, 800.2197875976562, NaN, NaN], [826.8131713867188, 863.4798583984375, 880.0, 869.5238037109375, NaN, NaN], [760.3296508789062, 871.1355590820312, 884.029296875, 850.989013671875, NaN, NaN], [793.7728881835938, 816.7399291992188, 809.084228515625, 778.4615478515625, NaN, NaN], [856.2271118164062, 802.2344360351562, 790.5494384765625, 781.2820434570312, NaN, NaN], [833.2600708007812, 854.2124633789062, 854.2124633789062, 845.3479614257812, NaN, NaN], [770.8058471679688, 874.3589477539062, 879.1941528320312, 863.4798583984375, NaN, NaN], [789.3406372070312, 823.99267578125, 819.96337890625, 784.5054931640625, NaN, NaN], [871.5384521484375, 796.1904907226562, 787.7289428710938, 756.7033081054688, NaN, NaN], [872.7472534179688, 839.3040161132812, 848.5714111328125, 844.1392211914062, NaN, NaN], [800.6226806640625, 875.5677490234375, 897.7289428710938, 889.2673950195312, NaN, NaN], [759.9267578125, 836.886474609375, 839.7069702148438, 800.2197875976562, NaN, NaN], [819.96337890625, 794.5787353515625, 780.4761962890625, 753.8828125, NaN, NaN], [858.2417602539062, 817.1428833007812, 811.90478515625, 792.1611938476562, NaN, NaN], [794.1758422851562, 868.7179565429688, 882.4176025390625, 841.3186645507812, NaN, NaN], [760.7326049804688, 860.2564086914062, 873.5531005859375, 824.3956298828125, NaN, NaN], [823.1868286132812, 802.6373901367188, 796.1904907226562, 759.9267578125, NaN, NaN], [898.1318969726562, 807.069580078125, 810.6959838867188, 796.1904907226562, NaN, NaN], [840.5128173828125, 864.6886596679688, 886.8497924804688, 867.106201171875, NaN, NaN], [758.7179565429688, 867.912109375, 877.1795043945312, 825.6043701171875, NaN, NaN], [802.2344360351562, 815.1282348632812, 807.069580078125, 779.2673950195312, NaN, NaN], [876.3735961914062, 802.2344360351562, 790.5494384765625, 778.05859375, NaN, NaN], [851.7948608398438, 854.6153564453125, 861.4652099609375, 821.5750732421875, NaN, NaN], [767.9853515625, 876.3735961914062, 893.2966918945312, 848.5714111328125, NaN, NaN], [777.6557006835938, 830.03662109375, 824.7985229492188, 779.6703491210938, NaN, NaN], [847.7655639648438, 797.8021850585938, 784.1025390625, 756.3003540039062, NaN, NaN], [857.032958984375, 835.2747192382812, 836.886474609375, 813.113525390625, NaN, NaN], [787.3259887695312, 877.9853515625, 890.4761962890625, 853.003662109375, NaN, NaN], [761.5384521484375, 845.7509155273438, 848.974365234375, 804.6520385742188, NaN, NaN], [844.1392211914062, 800.2197875976562, 783.6996459960938, 774.029296875, NaN, NaN], [871.5384521484375, 820.7692260742188, 812.3076782226562, 807.87548828125, NaN, NaN], [792.1611938476562, 869.5238037109375, 882.4176025390625, 838.4981689453125, NaN, NaN], [751.062255859375, 861.062255859375, 871.1355590820312, 816.7399291992188, NaN, NaN], [815.93408203125, 814.7252807617188, 809.084228515625, 768.7911987304688, NaN, NaN], [867.5091552734375, 804.6520385742188, 800.2197875976562, 775.6410522460938, NaN, NaN], [839.7069702148438, 854.2124633789062, 863.4798583984375, 836.886474609375, NaN, NaN], [763.1502075195312, 869.9267578125, 880.0, 843.7362670898438, NaN, NaN], [776.8497924804688, 819.1575317382812, 813.113525390625, 787.3259887695312, NaN, NaN], [859.047607421875, 803.8461303710938, 792.967041015625, 785.7142944335938, NaN, NaN], [844.1392211914062, 850.989013671875, 857.032958984375, 839.7069702148438, NaN, NaN], [793.3699340820312, 882.4176025390625, 896.1171875, 855.8241577148438, NaN, NaN], [789.7435913085938, 836.886474609375, 839.3040161132812, 792.1611938476562, NaN, NaN], [838.4981689453125, 792.1611938476562, 775.2380981445312, 750.2564086914062, NaN, NaN], [864.2857055664062, 829.6337280273438, 815.1282348632812, 802.6373901367188, NaN, NaN], [784.5054931640625, 873.9560546875, 876.7765502929688, 858.2417602539062, NaN, NaN], [743.8095092773438, 852.6007080078125, 850.989013671875, 811.90478515625, NaN, NaN], [836.08056640625, 808.2783813476562, 792.5640869140625, 757.912109375, NaN, NaN], [870.3296508789062, 816.7399291992188, 813.91943359375, 805.054931640625, NaN, NaN], [789.3406372070312, 867.106201171875, 886.4468994140625, 848.5714111328125, NaN, NaN], [748.6447143554688, 863.076904296875, 875.5677490234375, 813.113525390625, NaN, NaN], [815.5311279296875, 807.4725341796875, 801.025634765625, 758.7179565429688, NaN, NaN], [872.3442993164062, 806.6666870117188, 801.025634765625, 789.3406372070312, NaN, NaN], [814.7252807617188, 852.6007080078125, 868.7179565429688, 847.7655639648438, NaN, NaN], [741.3919677734375, 861.4652099609375, 883.6264038085938, 823.5897216796875, NaN, NaN], [779.6703491210938, 814.3223266601562, 814.3223266601562, 762.7472534179688, NaN, NaN], [853.8095092773438, 793.7728881835938, 780.0732421875, 767.1795043945312, NaN, NaN], [853.8095092773438, 846.959716796875, 846.5567626953125, 846.959716796875, NaN, NaN], [782.893798828125, 877.5823974609375, 885.2380981445312, 842.930419921875, NaN, NaN], [769.1941528320312, 837.6923217773438, 834.06591796875, 772.8204956054688, NaN, NaN], [828.4249267578125, 802.2344360351562, 794.1758422851562, 775.2380981445312, NaN, NaN], [883.2234497070312, 829.2307739257812, 832.4542236328125, 816.3369750976562, NaN, NaN], [839.3040161132812, 877.5823974609375, 888.8644409179688, 844.945068359375, NaN, NaN], [745.018310546875, 855.8241577148438, 862.6740112304688, 804.2490844726562, NaN, NaN], [812.3076782226562, 811.098876953125, 803.8461303710938, 775.2380981445312, NaN, NaN], [859.047607421875, 814.7252807617188, 814.3223266601562, 788.937744140625, NaN, NaN], [784.1025390625, 854.6153564453125, 873.5531005859375, 829.6337280273438, NaN, NaN], [751.8681030273438, 859.4505615234375, 877.1795043945312, 838.09521484375, NaN, NaN], [807.4725341796875, 813.113525390625, 806.6666870117188, 766.3735961914062, NaN, NaN], [864.2857055664062, 806.6666870117188, 794.5787353515625, 761.5384521484375, NaN, NaN], [841.3186645507812, 854.6153564453125, 861.8681030273438, 832.05126953125, NaN, NaN], [767.1795043945312, 873.5531005859375, 880.8058471679688, 816.3369750976562, NaN, NaN], [751.062255859375, 828.8278198242188, 814.3223266601562, 729.7069702148438, NaN, NaN], [803.040283203125, 796.1904907226562, 772.4176025390625, 714.3956298828125, NaN, NaN], [788.5347900390625, 834.8717651367188, 819.96337890625, 757.106201171875, NaN, NaN], [732.5274658203125, 880.0, 867.912109375, 775.6410522460938, NaN, NaN], [707.5457763671875, 850.989013671875, 822.7838745117188, 715.2014770507812, NaN, NaN], [776.8497924804688, 808.2783813476562, 765.5677490234375, 693.040283203125, NaN, NaN], [806.6666870117188, 827.6190185546875, 794.1758422851562, 730.10986328125, NaN, NaN], [723.2600708007812, 867.912109375, 860.2564086914062, 785.3113403320312, NaN, NaN], [711.97802734375, 855.8241577148438, 842.5274658203125, 770.4029541015625, NaN, NaN], [770.8058471679688, 805.4578857421875, 761.94140625, 695.054931640625, NaN, NaN], [838.4981689453125, 808.6813354492188, 776.8497924804688, 707.94873046875, NaN, NaN], [799.010986328125, 866.3003540039062, 857.4359130859375, 782.4908447265625, NaN, NaN], [707.94873046875, 870.3296508789062, 859.8534545898438, 771.2088012695312, NaN, NaN], [755.4945068359375, 812.7106323242188, 796.1904907226562, 716.8131713867188, NaN, NaN], [834.4688720703125, 799.010986328125, 779.6703491210938, 732.5274658203125, NaN, NaN], [815.93408203125, 853.8095092773438, 846.959716796875, 801.8314819335938, NaN, NaN], [750.6593627929688, 878.7911987304688, 880.0, 802.2344360351562, NaN, NaN], [735.3479614257812, 827.6190185546875, 813.113525390625, 725.6776733398438, NaN, NaN], [813.113525390625, 799.8168334960938, 774.8351440429688, 721.2454223632812, NaN, NaN], [828.8278198242188, 838.901123046875, 828.8278198242188, 777.2527465820312, NaN, NaN], [760.3296508789062, 878.7911987304688, 884.029296875, 808.2783813476562, NaN, NaN], [733.3333129882812, 849.7802124023438, 844.1392211914062, 747.4359130859375, NaN, NaN], [828.02197265625, 808.2783813476562, 785.7142944335938, 708.3516235351562, NaN, NaN], [877.1795043945312, 829.6337280273438, 817.5457763671875, 778.4615478515625, NaN, NaN], [757.106201171875, 868.3150024414062, 876.7765502929688, 828.02197265625, NaN, NaN], [716.00732421875, 858.6447143554688, 857.4359130859375, 787.3259887695312, NaN, NaN], [788.5347900390625, 805.4578857421875, 784.5054931640625, 726.08056640625, NaN, NaN], [843.7362670898438, 803.040283203125, 785.7142944335938, 742.6007080078125, NaN, NaN], [808.2783813476562, 862.6740112304688, 871.94140625, 825.2014770507812, NaN, NaN], [745.4212646484375, 869.5238037109375, 885.6410522460938, 811.5018310546875, NaN, NaN], [763.9560546875, 816.3369750976562, 807.87548828125, 728.4981689453125, NaN, NaN], [838.901123046875, 805.8607788085938, 790.1465454101562, 740.989013671875, NaN, NaN], [828.4249267578125, 845.7509155273438, 846.1538696289062, 793.3699340820312, NaN, NaN], [757.5091552734375, 866.3003540039062, 875.970703125, 807.4725341796875, NaN, NaN], [771.6116943359375, 834.06591796875, 826.8131713867188, 749.8534545898438, NaN, NaN], [821.97802734375, 796.5933837890625, 782.4908447265625, 726.08056640625, NaN, NaN], [806.2637329101562, 820.7692260742188, 825.2014770507812, 794.1758422851562, NaN, NaN], [747.4359130859375, 858.6447143554688, 877.9853515625, 822.7838745117188, NaN, NaN], [751.8681030273438, 840.10986328125, 847.3626098632812, 771.6116943359375, NaN, NaN], [814.3223266601562, 799.4139404296875, 788.937744140625, 726.4835205078125, NaN, NaN], [832.8571166992188, 809.084228515625, 807.069580078125, 757.5091552734375, NaN, NaN], [765.5677490234375, 851.7948608398438, 864.6886596679688, 811.90478515625, NaN, NaN], [726.08056640625, 850.1831665039062, 860.6593627929688, 791.7582397460938, NaN, NaN], [787.3259887695312, 805.4578857421875, 796.5933837890625, 734.945068359375, NaN, NaN], [830.8424682617188, 796.996337890625, 780.0732421875, 760.3296508789062, NaN, NaN], [801.8314819335938, 844.5421142578125, 848.974365234375, 832.4542236328125, NaN, NaN], [757.5091552734375, 869.5238037109375, 884.029296875, 830.03662109375, NaN, NaN], [771.6116943359375, 819.1575317382812, 821.97802734375, 756.3003540039062, NaN, NaN], [826.00732421875, 782.4908447265625, 782.087890625, 732.5274658203125, NaN, NaN], [823.5897216796875, 823.99267578125, 840.10986328125, 792.5640869140625, NaN, NaN], [736.959716796875, 859.4505615234375, 884.8351440429688, 830.8424682617188, NaN, NaN], [734.5421142578125, 827.2161254882812, 835.6776733398438, 786.5201416015625, NaN, NaN], [811.90478515625, 786.923095703125, 784.1025390625, 743.8095092773438, NaN, NaN], [841.7216186523438, 808.6813354492188, 814.7252807617188, 786.5201416015625, NaN, NaN], [788.5347900390625, 860.6593627929688, 875.1648559570312, 858.2417602539062, NaN, NaN], [747.4359130859375, 838.4981689453125, 843.7362670898438, 786.5201416015625, NaN, NaN], [811.098876953125, 786.1171875, 777.2527465820312, 701.098876953125, NaN, NaN], [858.6447143554688, 797.3992919921875, 794.5787353515625, 757.5091552734375, NaN, NaN], [786.1171875, 840.5128173828125, 854.6153564453125, 821.97802734375, NaN, NaN], [722.8571166992188, 841.3186645507812, 857.032958984375, 810.6959838867188, NaN, NaN], [768.7911987304688, 793.3699340820312, 783.2966918945312, 743.4066162109375, NaN, NaN], [842.12451171875, 786.923095703125, 774.8351440429688, 761.5384521484375, NaN, NaN], [814.3223266601562, 833.2600708007812, 848.974365234375, 823.5897216796875, NaN, NaN], [747.4359130859375, 850.989013671875, 867.5091552734375, 817.5457763671875, NaN, NaN], [764.3589477539062, 802.6373901367188, 809.084228515625, 776.8497924804688, NaN, NaN], [809.084228515625, 767.1795043945312, 767.1795043945312, 741.7948608398438, NaN, NaN], [819.5604248046875, 810.2930297851562, 815.93408203125, 789.7435913085938, NaN, NaN], [759.5238037109375, 850.989013671875, 869.5238037109375, 832.8571166992188, NaN, NaN], [742.6007080078125, 813.113525390625, 827.6190185546875, 771.6116943359375, NaN, NaN], [842.930419921875, 778.4615478515625, 784.1025390625, 736.959716796875, NaN, NaN], [888.4615478515625, 801.4285888671875, 811.90478515625, 782.893798828125, NaN, NaN], [780.0732421875, 840.915771484375, 860.2564086914062, 833.6630249023438, NaN, NaN], [716.8131713867188, 838.4981689453125, 854.2124633789062, 814.3223266601562, NaN, NaN], [793.7728881835938, 786.1171875, 796.1904907226562, 745.4212646484375, NaN, NaN], [857.032958984375, 783.2966918945312, 793.3699340820312, 770.4029541015625, NaN, NaN], [809.084228515625, 835.6776733398438, 857.8388061523438, 859.047607421875, NaN, NaN], [753.8828125, 850.1831665039062, 873.9560546875, 834.4688720703125, NaN, NaN], [806.6666870117188, 810.6959838867188, 809.89013671875, 751.4652099609375, NaN, NaN], [860.6593627929688, 791.7582397460938, 784.908447265625, 737.3626098632812, NaN, NaN], [819.5604248046875, 829.6337280273438, 842.5274658203125, 803.8461303710938, NaN, NaN], [748.2417602539062, 853.4066162109375, 880.4029541015625, 842.12451171875, NaN, NaN], [747.8388061523438, 807.87548828125, 825.2014770507812, 773.2234497070312, NaN, NaN], [819.1575317382812, 778.8644409179688, 787.3259887695312, 748.6447143554688, NaN, NaN], [826.4102783203125, 813.113525390625, 830.03662109375, 815.5311279296875, NaN, NaN], [765.5677490234375, 853.003662109375, 876.3735961914062, 860.6593627929688, NaN, NaN], [747.4359130859375, 835.6776733398438, 846.1538696289062, 793.3699340820312, NaN, NaN], [821.5750732421875, 795.3846435546875, 797.3992919921875, 723.2600708007812, NaN, NaN], [868.7179565429688, 806.2637329101562, 821.5750732421875, 764.3589477539062, NaN, NaN], [794.5787353515625, 848.974365234375, 878.7911987304688, 845.3479614257812, NaN, NaN], [742.6007080078125, 844.945068359375, 866.7033081054688, 826.4102783203125, NaN, NaN], [796.996337890625, 788.1318969726562, 800.6226806640625, 748.2417602539062, NaN, NaN], [849.3773193359375, 780.0732421875, 800.2197875976562, 751.8681030273438, NaN, NaN], [816.7399291992188, 844.945068359375, 869.9267578125, 836.886474609375, NaN, NaN], [755.4945068359375, 862.2710571289062, 882.8204956054688, 848.5714111328125, NaN, NaN], [777.6557006835938, 807.87548828125, 811.098876953125, 754.6886596679688, NaN, NaN], [846.5567626953125, 788.5347900390625, 788.1318969726562, 723.6630249023438, NaN, NaN], [815.5311279296875, 830.4395751953125, 846.959716796875, 795.7875366210938, NaN, NaN], [743.003662109375, 850.5860595703125, 881.2088012695312, 842.930419921875, NaN, NaN], [757.106201171875, 813.5164794921875, 832.4542236328125, 772.8204956054688, NaN, NaN], [821.97802734375, 785.7142944335938, 794.1758422851562, 735.3479614257812, NaN, NaN], [844.1392211914062, 815.93408203125, 834.06591796875, 793.7728881835938, NaN, NaN], [765.5677490234375, 856.6300659179688, 879.1941528320312, 828.8278198242188, NaN, NaN], [729.7069702148438, 836.08056640625, 851.3919677734375, 792.5640869140625, NaN, NaN], [805.4578857421875, 788.5347900390625, 792.5640869140625, 752.2710571289062, NaN, NaN], [853.003662109375, 799.8168334960938, 802.2344360351562, 761.5384521484375, NaN, NaN], [801.8314819335938, 850.989013671875, 862.2710571289062, 826.4102783203125, NaN, NaN], [749.4505615234375, 852.1978149414062, 860.2564086914062, 822.3809814453125, NaN, NaN], [817.94873046875, 809.4871826171875, 795.7875366210938, 742.1978149414062, NaN, NaN], [870.7326049804688, 807.4725341796875, 789.3406372070312, 761.1355590820312, NaN, NaN], [818.3516235351562, 844.1392211914062, 841.7216186523438, 819.96337890625, NaN, NaN], [766.3735961914062, 858.2417602539062, 856.6300659179688, 811.5018310546875, NaN, NaN], [772.0146484375, 819.1575317382812, 809.084228515625, 741.3919677734375, NaN, NaN], [828.8278198242188, 796.1904907226562, 784.1025390625, 738.1685180664062, NaN, NaN], [836.886474609375, 831.6483764648438, 830.4395751953125, 798.6080322265625, NaN, NaN], [778.05859375, 857.4359130859375, 868.7179565429688, 837.6923217773438, NaN, NaN], [784.1025390625, 835.6776733398438, 838.09521484375, 810.2930297851562, NaN, NaN], [843.3333129882812, 800.2197875976562, 792.1611938476562, 757.5091552734375, NaN, NaN], [835.6776733398438, 808.2783813476562, 805.4578857421875, 751.8681030273438, NaN, NaN], [797.3992919921875, 850.1831665039062, 858.6447143554688, 797.8021850585938, NaN, NaN], [767.5823974609375, 839.7069702148438, 845.3479614257812, 790.1465454101562, NaN, NaN], [790.5494384765625, 799.4139404296875, 788.5347900390625, 736.5567626953125, NaN, NaN], [833.2600708007812, 808.2783813476562, 795.7875366210938, 750.2564086914062, NaN, NaN], [791.3552856445312, 851.3919677734375, 855.018310546875, 821.1721801757812, NaN, NaN], [754.2857055664062, 855.018310546875, 859.4505615234375, 811.90478515625, NaN, NaN], [789.3406372070312, 810.2930297851562, 798.2051391601562, 736.5567626953125, NaN, NaN], [854.2124633789062, 796.996337890625, 772.8204956054688, 728.4981689453125, NaN, NaN], [843.7362670898438, 838.09521484375, 829.6337280273438, 805.8607788085938, NaN, NaN], [765.970703125, 857.4359130859375, 863.4798583984375, 844.5421142578125, NaN, NaN], [763.5531005859375, 819.1575317382812, 818.7545776367188, 764.7619018554688, NaN, NaN], [838.09521484375, 794.981689453125, 783.2966918945312, 726.886474609375, NaN, NaN], [874.7619018554688, 832.8571166992188, 821.5750732421875, 792.967041015625, NaN, NaN], [795.7875366210938, 865.8974609375, 867.106201171875, 851.7948608398438, NaN, NaN], [747.4359130859375, 832.4542236328125, 828.8278198242188, 778.8644409179688, NaN, NaN], [804.6520385742188, 794.1758422851562, 775.2380981445312, 699.4871826171875, NaN, NaN], [836.886474609375, 811.90478515625, 803.8461303710938, 750.2564086914062, NaN, NaN], [793.7728881835938, 851.3919677734375, 860.6593627929688, 823.1868286132812, NaN, NaN], [778.8644409179688, 850.1831665039062, 859.4505615234375, 799.8168334960938, NaN, NaN], [809.084228515625, 804.2490844726562, 796.5933837890625, 733.7362670898438, NaN, NaN], [851.7948608398438, 803.8461303710938, 796.5933837890625, 763.1502075195312, NaN, NaN], [814.3223266601562, 849.7802124023438, 853.4066162109375, 843.7362670898438, NaN, NaN], [742.1978149414062, 852.6007080078125, 850.5860595703125, 825.2014770507812, NaN, NaN], [774.029296875, 811.5018310546875, 801.025634765625, 722.8571166992188, NaN, NaN], [841.3186645507812, 794.981689453125, 787.7289428710938, 711.1721801757812, NaN, NaN], [824.7985229492188, 835.6776733398438, 847.3626098632812, 815.1282348632812, NaN, NaN], [758.7179565429688, 860.2564086914062, 882.0146484375, 851.7948608398438, NaN, NaN], [774.029296875, 821.1721801757812, 834.4688720703125, 776.8497924804688, NaN, NaN], [835.6776733398438, 788.1318969726562, 794.1758422851562, 730.10986328125, NaN, NaN], [848.1685180664062, 820.3662719726562, 826.4102783203125, 789.7435913085938, NaN, NaN], [790.5494384765625, 859.4505615234375, 874.3589477539062, 855.8241577148438, NaN, NaN], [750.6593627929688, 836.4835205078125, 848.974365234375, 794.1758422851562, NaN, NaN], [821.1721801757812, 796.5933837890625, 794.981689453125, 719.2307739257812, NaN, NaN], [864.2857055664062, 807.069580078125, 816.3369750976562, 774.4322509765625, NaN, NaN], [779.2673950195312, 847.7655639648438, 867.106201171875, 851.7948608398438, NaN, NaN], [735.3479614257812, 853.8095092773438, 855.4212646484375, 837.6923217773438, NaN, NaN], [815.93408203125, 818.7545776367188, 805.054931640625, 784.908447265625, NaN, NaN], [855.8241577148438, 805.054931640625, 791.7582397460938, 767.9853515625, NaN, NaN], [801.4285888671875, 841.3186645507812, 850.1831665039062, 826.8131713867188, NaN, NaN], [745.018310546875, 856.6300659179688, 873.1502075195312, 829.6337280273438, NaN, NaN], [770.0, 815.93408203125, 817.5457763671875, 749.047607421875, NaN, NaN], [853.8095092773438, 796.5933837890625, 792.967041015625, 731.3186645507812, NaN, NaN], [843.7362670898438, 833.2600708007812, 838.901123046875, 814.3223266601562, NaN, NaN], [756.7033081054688, 869.120849609375, 876.7765502929688, 875.970703125, NaN, NaN], [752.6740112304688, 841.7216186523438, 832.4542236328125, 802.6373901367188, NaN, NaN], [809.89013671875, 794.981689453125, 781.2820434570312, 723.6630249023438, NaN, NaN], [819.96337890625, 814.7252807617188, 818.7545776367188, 776.0439453125, NaN, NaN], [765.1648559570312, 854.6153564453125, 870.3296508789062, 862.6740112304688, NaN, NaN], [768.7911987304688, 836.4835205078125, 851.7948608398438, 834.06591796875, NaN, NaN], [842.5274658203125, 791.3552856445312, 799.010986328125, 755.8974609375, NaN, NaN], [866.7033081054688, 797.8021850585938, 816.7399291992188, 782.4908447265625, NaN, NaN], [805.8607788085938, 841.3186645507812, 880.8058471679688, 873.9560546875, NaN, NaN], [754.6886596679688, 836.4835205078125, 875.970703125, 853.4066162109375, NaN, NaN], [814.3223266601562, 792.1611938476562, 821.1721801757812, 776.8497924804688, NaN, NaN], [884.8351440429688, 789.7435913085938, 816.3369750976562, 790.952392578125, NaN, NaN], [856.6300659179688, 835.2747192382812, 859.4505615234375, 853.8095092773438, NaN, NaN], [774.029296875, 851.3919677734375, 873.5531005859375, 866.3003540039062, NaN, NaN], [772.4176025390625, 805.8607788085938, 824.3956298828125, 793.3699340820312, NaN, NaN], [855.018310546875, 783.2966918945312, 803.8461303710938, 778.8644409179688, NaN, NaN], [857.8388061523438, 827.2161254882812, 859.4505615234375, 866.3003540039062, NaN, NaN], [770.0, 848.974365234375, 887.6557006835938, 889.6703491210938, NaN, NaN], [767.5823974609375, 816.3369750976562, 843.7362670898438, 809.89013671875, NaN, NaN], [845.7509155273438, 787.3259887695312, 798.2051391601562, 749.8534545898438, NaN, NaN], [861.062255859375, 809.4871826171875, 824.3956298828125, 782.4908447265625, NaN, NaN], [791.3552856445312, 850.989013671875, 875.970703125, 854.2124633789062, NaN, NaN], [753.076904296875, 840.5128173828125, 859.047607421875, 822.7838745117188, NaN, NaN], [834.4688720703125, 804.2490844726562, 813.113525390625, 758.3150024414062, NaN, NaN], [871.94140625, 803.4432373046875, 811.90478515625, 782.893798828125, NaN, NaN], [783.6996459960938, 842.12451171875, 860.2564086914062, 846.959716796875, NaN, NaN], [741.7948608398438, 853.003662109375, 871.5384521484375, 842.930419921875, NaN, NaN], [798.2051391601562, 811.90478515625, 816.3369750976562, 757.5091552734375, NaN, NaN], [868.7179565429688, 797.3992919921875, 805.054931640625, 738.5714111328125, NaN, NaN], [842.5274658203125, 840.915771484375, 862.6740112304688, 826.00732421875, NaN, NaN], [763.9560546875, 866.3003540039062, 883.6264038085938, 872.3442993164062, NaN, NaN], [779.2673950195312, 829.2307739257812, 836.08056640625, 798.2051391601562, NaN, NaN], [873.5531005859375, 801.4285888671875, 805.8607788085938, 748.2417602539062, NaN, NaN], [874.3589477539062, 830.8424682617188, 842.930419921875, 809.89013671875, NaN, NaN], [781.2820434570312, 864.2857055664062, 890.4761962890625, 878.3883056640625, NaN, NaN], [765.1648559570312, 840.915771484375, 862.2710571289062, 819.1575317382812, NaN, NaN], [836.08056640625, 800.6226806640625, 808.2783813476562, 745.8241577148438, NaN, NaN], [872.3442993164062, 813.91943359375, 830.4395751953125, 796.5933837890625, NaN, NaN], [783.6996459960938, 857.4359130859375, 886.8497924804688, 863.4798583984375, NaN, NaN], [738.5714111328125, 858.6447143554688, 881.2088012695312, 835.2747192382812, NaN, NaN], [799.4139404296875, 808.6813354492188, 811.90478515625, 740.5860595703125, NaN, NaN], [848.974365234375, 807.069580078125, 810.6959838867188, 751.4652099609375, NaN, NaN], [829.6337280273438, 858.2417602539062, 876.3735961914062, 857.8388061523438, NaN, NaN], [778.8644409179688, 865.4945068359375, 886.4468994140625, 871.5384521484375, NaN, NaN], [789.7435913085938, 821.97802734375, 828.8278198242188, 773.2234497070312, NaN, NaN], [850.989013671875, 803.040283203125, 798.2051391601562, 738.1685180664062, NaN, NaN], [844.5421142578125, 842.930419921875, 857.4359130859375, 828.8278198242188, NaN, NaN], [774.8351440429688, 868.3150024414062, 894.908447265625, 875.5677490234375, NaN, NaN], [765.1648559570312, 831.2454223632812, 840.5128173828125, 776.8497924804688, NaN, NaN], [828.8278198242188, 806.6666870117188, 803.4432373046875, 720.03662109375, NaN, NaN], [857.8388061523438, 834.4688720703125, 841.3186645507812, 792.1611938476562, NaN, NaN], [793.3699340820312, 867.912109375, 886.8497924804688, 879.1941528320312, NaN, NaN], [765.5677490234375, 850.989013671875, 865.091552734375, 826.4102783203125, NaN, NaN], [835.2747192382812, 810.2930297851562, 813.5164794921875, 749.8534545898438, NaN, NaN], [884.8351440429688, 823.99267578125, 836.08056640625, 807.87548828125, NaN, NaN], [828.4249267578125, 862.6740112304688, 887.2527465820312, 875.1648559570312, NaN, NaN], [752.6740112304688, 851.3919677734375, 873.9560546875, 842.5274658203125, NaN, NaN], [794.5787353515625, 808.6813354492188, 821.1721801757812, 763.9560546875, NaN, NaN], [855.018310546875, 803.8461303710938, 808.6813354492188, 742.1978149414062, NaN, NaN], [821.97802734375, 848.1685180664062, 861.8681030273438, 826.4102783203125, NaN, NaN], [761.94140625, 857.4359130859375, 877.1795043945312, 854.2124633789062, NaN, NaN], [788.937744140625, 816.7399291992188, 825.2014770507812, 771.6116943359375, NaN, NaN], [879.5970458984375, 803.4432373046875, 808.2783813476562, 765.970703125, NaN, NaN], [860.6593627929688, 836.08056640625, 847.7655639648438, 834.8717651367188, NaN, NaN], [771.6116943359375, 857.8388061523438, 874.3589477539062, 864.2857055664062, NaN, NaN], [766.7765502929688, 830.4395751953125, 845.7509155273438, 796.996337890625, NaN, NaN], [844.1392211914062, 795.3846435546875, 806.6666870117188, 751.8681030273438, NaN, NaN], [864.2857055664062, 822.3809814453125, 836.886474609375, 813.113525390625, NaN, NaN], [790.1465454101562, 863.8828125, 886.8497924804688, 880.8058471679688, NaN, NaN], [763.1502075195312, 852.1978149414062, 870.3296508789062, 835.6776733398438, NaN, NaN], [836.08056640625, 814.7252807617188, 819.5604248046875, 753.4798583984375, NaN, NaN], [867.912109375, 817.94873046875, 828.02197265625, 766.7765502929688, NaN, NaN], [798.6080322265625, 857.4359130859375, 884.029296875, 849.7802124023438, NaN, NaN], [755.091552734375, 858.6447143554688, 877.1795043945312, 848.974365234375, NaN, NaN], [795.7875366210938, 815.1282348632812, 813.5164794921875, 746.2271118164062, NaN, NaN], [847.3626098632812, 806.6666870117188, 807.87548828125, 740.1831665039062, NaN, NaN], [827.2161254882812, 846.5567626953125, 863.8828125, 827.2161254882812, NaN, NaN], [787.3259887695312, 866.3003540039062, 891.6849975585938, 855.018310546875, NaN, NaN], [803.040283203125, 828.02197265625, 835.2747192382812, 781.6849975585938, NaN, NaN], [838.09521484375, 796.996337890625, 793.7728881835938, 736.959716796875, NaN, NaN], [830.8424682617188, 829.6337280273438, 848.5714111328125, 809.084228515625, NaN, NaN], [765.1648559570312, 857.8388061523438, 885.6410522460938, 861.062255859375, NaN, NaN], [759.5238037109375, 833.6630249023438, 848.974365234375, 794.1758422851562, NaN, NaN], [823.99267578125, 800.2197875976562, 807.4725341796875, 737.3626098632812, NaN, NaN], [842.930419921875, 816.3369750976562, 828.8278198242188, 766.7765502929688, NaN, NaN], [785.7142944335938, 862.2710571289062, 886.4468994140625, 840.10986328125, NaN, NaN], [746.6300659179688, 848.5714111328125, 864.2857055664062, 790.1465454101562, NaN, NaN], [799.4139404296875, 801.8314819335938, 801.025634765625, 707.94873046875, NaN, NaN], [840.10986328125, 807.4725341796875, 810.6959838867188, 745.4212646484375, NaN, NaN], [788.937744140625, 847.7655639648438, 867.106201171875, 847.3626098632812, NaN, NaN], [743.4066162109375, 854.6153564453125, 870.3296508789062, 848.1685180664062, NaN, NaN], [796.1904907226562, 811.90478515625, 809.4871826171875, 747.8388061523438, NaN, NaN], [858.6447143554688, 803.040283203125, 805.054931640625, 753.8828125, NaN, NaN], [840.915771484375, 843.7362670898438, 864.6886596679688, 836.886474609375, NaN, NaN], [772.8204956054688, 860.2564086914062, 877.9853515625, 847.3626098632812, NaN, NaN], [767.9853515625, 828.4249267578125, 826.00732421875, 772.4176025390625, NaN, NaN], [833.6630249023438, 797.8021850585938, 789.7435913085938, 725.6776733398438, NaN, NaN], [834.8717651367188, 827.6190185546875, 835.6776733398438, 777.6557006835938, NaN, NaN], [751.8681030273438, 861.062255859375, 880.4029541015625, 841.3186645507812, NaN, NaN], [740.1831665039062, 836.08056640625, 846.1538696289062, 786.5201416015625, NaN, NaN], [848.1685180664062, 809.084228515625, 810.6959838867188, 717.6190185546875, NaN, NaN], [877.5823974609375, 823.5897216796875, 835.2747192382812, 770.8058471679688, NaN, NaN], [772.0146484375, 851.7948608398438, 871.5384521484375, 841.3186645507812, NaN, NaN], [746.2271118164062, 847.3626098632812, 862.2710571289062, 807.87548828125, NaN, NaN], [808.6813354492188, 805.054931640625, 809.89013671875, 738.5714111328125, NaN, NaN], [860.2564086914062, 803.040283203125, 813.5164794921875, 761.5384521484375, NaN, NaN], [821.1721801757812, 848.974365234375, 871.94140625, 834.4688720703125, NaN, NaN], [751.8681030273438, 860.6593627929688, 877.1795043945312, 822.7838745117188, NaN, NaN], [794.981689453125, 820.3662719726562, 819.1575317382812, 757.106201171875, NaN, NaN], [844.1392211914062, 798.6080322265625, 794.5787353515625, 739.7802124023438, NaN, NaN], [804.2490844726562, 831.6483764648438, 843.3333129882812, 809.89013671875, NaN, NaN], [750.6593627929688, 857.8388061523438, 870.3296508789062, 854.6153564453125, NaN, NaN], [773.6264038085938, 827.6190185546875, 825.6043701171875, 770.8058471679688, NaN, NaN], [837.2893676757812, 799.4139404296875, 794.5787353515625, 726.886474609375, NaN, NaN], [853.8095092773438, 827.2161254882812, 837.2893676757812, 802.6373901367188, NaN, NaN], [799.4139404296875, 866.3003540039062, 891.2820434570312, 869.5238037109375, NaN, NaN], [763.9560546875, 845.7509155273438, 860.6593627929688, 803.040283203125, NaN, NaN], [815.93408203125, 799.8168334960938, 800.6226806640625, 722.05126953125, NaN, NaN], [855.4212646484375, 812.3076782226562, 820.3662719726562, 780.4761962890625, NaN, NaN], [791.7582397460938, 856.2271118164062, 876.3735961914062, 850.5860595703125, NaN, NaN], [741.3919677734375, 848.974365234375, 865.8974609375, 807.4725341796875, NaN, NaN], [806.6666870117188, 804.2490844726562, 808.2783813476562, 739.3773193359375, NaN, NaN], [859.4505615234375, 801.4285888671875, 802.6373901367188, 747.032958984375, NaN, NaN], [815.5311279296875, 853.4066162109375, 867.5091552734375, 835.2747192382812, NaN, NaN], [754.2857055664062, 866.3003540039062, 877.1795043945312, 844.5421142578125, NaN, NaN], [768.7911987304688, 816.3369750976562, 803.4432373046875, 752.6740112304688, NaN, NaN], [841.7216186523438, 796.1904907226562, 785.7142944335938, 749.8534545898438, NaN, NaN], [834.06591796875, 834.4688720703125, 838.901123046875, 819.1575317382812, NaN, NaN], [766.3735961914062, 858.6447143554688, 863.4798583984375, 837.2893676757812, NaN, NaN], [777.6557006835938, 826.00732421875, 820.3662719726562, 763.9560546875, NaN, NaN], [845.3479614257812, 794.5787353515625, 787.7289428710938, 726.886474609375, NaN, NaN], [850.5860595703125, 824.3956298828125, 836.08056640625, 794.1758422851562, NaN, NaN], [754.2857055664062, 859.047607421875, 880.4029541015625, 850.989013671875, NaN, NaN], [726.4835205078125, 838.09521484375, 848.1685180664062, 794.5787353515625, NaN, NaN], [801.8314819335938, 797.8021850585938, 798.2051391601562, 727.6923217773438, NaN, NaN], [838.09521484375, 800.6226806640625, 805.8607788085938, 761.94140625, NaN, NaN], [797.3992919921875, 845.3479614257812, 865.4945068359375, 830.4395751953125, NaN, NaN], [761.1355590820312, 844.945068359375, 869.120849609375, 826.8131713867188, NaN, NaN], [807.069580078125, 806.2637329101562, 814.7252807617188, 761.94140625, NaN, NaN], [845.7509155273438, 798.6080322265625, 797.3992919921875, 748.2417602539062, NaN, NaN], [803.4432373046875, 837.2893676757812, 849.7802124023438, 825.6043701171875, NaN, NaN], [753.4798583984375, 858.6447143554688, 874.3589477539062, 852.6007080078125, NaN, NaN], [780.4761962890625, 817.94873046875, 813.91943359375, 754.6886596679688, NaN, NaN], [841.3186645507812, 796.996337890625, 785.3113403320312, 725.6776733398438, NaN, NaN], [831.2454223632812, 834.8717651367188, 834.4688720703125, 805.8607788085938, NaN, NaN], [765.1648559570312, 860.6593627929688, 863.076904296875, 842.5274658203125, NaN, NaN], [776.4468994140625, 838.901123046875, 832.4542236328125, 794.1758422851562, NaN, NaN], [832.05126953125, 809.4871826171875, 799.8168334960938, 758.7179565429688, NaN, NaN], [825.2014770507812, 818.3516235351562, 814.7252807617188, 778.4615478515625, NaN, NaN], [787.3259887695312, 857.4359130859375, 866.7033081054688, 830.8424682617188, NaN, NaN], [762.3442993164062, 847.3626098632812, 855.4212646484375, 811.90478515625, NaN, NaN], [815.5311279296875, 804.2490844726562, 797.8021850585938, 743.003662109375, NaN, NaN], [855.8241577148438, 809.4871826171875, 803.8461303710938, 757.5091552734375, NaN, NaN], [795.7875366210938, 851.3919677734375, 862.6740112304688, 828.02197265625, NaN, NaN], [744.6153564453125, 852.1978149414062, 868.3150024414062, 830.4395751953125, NaN, NaN], [797.3992919921875, 814.3223266601562, 809.89013671875, 751.8681030273438, NaN, NaN], [851.7948608398438, 803.8461303710938, 792.5640869140625, 732.5274658203125, NaN, NaN], [810.2930297851562, 842.930419921875, 852.6007080078125, 823.5897216796875, NaN, NaN], [743.8095092773438, 867.106201171875, 877.1795043945312, 850.989013671875, NaN, NaN], [764.3589477539062, 828.4249267578125, 819.96337890625, 765.5677490234375, NaN, NaN], [852.6007080078125, 803.8461303710938, 781.6849975585938, 748.2417602539062, NaN, NaN], [867.106201171875, 840.10986328125, 827.2161254882812, 815.5311279296875, NaN, NaN], [792.967041015625, 874.3589477539062, 886.8497924804688, 855.4212646484375, NaN, NaN], [743.4066162109375, 840.5128173828125, 848.5714111328125, 780.4761962890625, NaN, NaN], [817.1428833007812, 797.3992919921875, 792.967041015625, 728.09521484375, NaN, NaN], [866.7033081054688, 819.1575317382812, 815.5311279296875, 776.8497924804688, NaN, NaN], [782.4908447265625, 859.8534545898438, 867.5091552734375, 839.3040161132812, NaN, NaN], [737.7655639648438, 852.1978149414062, 864.6886596679688, 818.7545776367188, NaN, NaN], [802.2344360351562, 806.6666870117188, 803.040283203125, 741.7948608398438, NaN, NaN], [861.4652099609375, 812.3076782226562, 807.87548828125, 764.3589477539062, NaN, NaN], [822.7838745117188, 860.6593627929688, 867.5091552734375, 848.5714111328125, NaN, NaN], [750.2564086914062, 859.4505615234375, 867.106201171875, 845.3479614257812, NaN, NaN], [767.9853515625, 818.3516235351562, 817.94873046875, 753.8828125, NaN, NaN], [842.930419921875, 807.4725341796875, 807.069580078125, 730.5128173828125, NaN, NaN], [833.2600708007812, 843.7362670898438, 855.018310546875, 801.4285888671875, NaN, NaN], [757.106201171875, 861.4652099609375, 878.7911987304688, 844.1392211914062, NaN, NaN], [765.970703125, 828.8278198242188, 823.99267578125, 784.5054931640625, NaN, NaN], [843.3333129882812, 806.6666870117188, 787.3259887695312, 732.5274658203125, NaN, NaN], [841.7216186523438, 831.2454223632812, 829.2307739257812, 788.937744140625, NaN, NaN], [762.3442993164062, 864.2857055664062, 876.3735961914062, 846.1538696289062, NaN, NaN], [738.5714111328125, 846.5567626953125, 849.7802124023438, 799.8168334960938, NaN, NaN], [805.4578857421875, 802.2344360351562, 797.8021850585938, 748.6447143554688, NaN, NaN], [841.7216186523438, 812.7106323242188, 815.5311279296875, 770.0, NaN, NaN], [780.0732421875, 858.2417602539062, 867.912109375, 829.2307739257812, NaN, NaN], [752.6740112304688, 857.4359130859375, 867.5091552734375, 817.94873046875, NaN, NaN], [815.5311279296875, 816.7399291992188, 817.1428833007812, 759.5238037109375, NaN, NaN], [857.4359130859375, 805.4578857421875, 799.010986328125, 747.4359130859375, NaN, NaN], [820.3662719726562, 850.1831665039062, 857.4359130859375, 820.7692260742188, NaN, NaN], [766.7765502929688, 867.106201171875, 882.0146484375, 857.032958984375, NaN, NaN], [796.1904907226562, 822.7838745117188, 825.2014770507812, 781.6849975585938, NaN, NaN], [863.4798583984375, 805.8607788085938, 801.4285888671875, 753.4798583984375, NaN, NaN], [848.974365234375, 842.5274658203125, 844.5421142578125, 817.94873046875, NaN, NaN], [791.3552856445312, 868.7179565429688, 870.7326049804688, 856.2271118164062, NaN, NaN], [773.6264038085938, 838.901123046875, 824.7985229492188, 774.8351440429688, NaN, NaN], [804.6520385742188, 799.4139404296875, 776.4468994140625, 714.7985229492188, NaN, NaN], [831.2454223632812, 819.1575317382812, 816.7399291992188, 768.3883056640625, NaN, NaN], [768.3883056640625, 850.5860595703125, 867.5091552734375, 821.1721801757812, NaN, NaN], [737.7655639648438, 837.2893676757812, 846.959716796875, 784.1025390625, NaN, NaN], [825.2014770507812, 805.4578857421875, 794.981689453125, 738.974365234375, NaN, NaN], [881.6116943359375, 814.7252807617188, 807.069580078125, 777.6557006835938, NaN, NaN], [807.87548828125, 853.8095092773438, 863.8828125, 835.2747192382812, NaN, NaN], [750.6593627929688, 856.6300659179688, 866.3003540039062, 811.5018310546875, NaN, NaN], [767.9853515625, 817.94873046875, 815.93408203125, 747.032958984375, NaN, NaN], [836.886474609375, 809.89013671875, 807.069580078125, 753.4798583984375, NaN, NaN], [834.8717651367188, 850.1831665039062, 855.018310546875, 815.93408203125, NaN, NaN], [771.6116943359375, 863.8828125, 871.5384521484375, 837.2893676757812, NaN, NaN], [789.3406372070312, 824.3956298828125, 825.2014770507812, 767.1795043945312, NaN, NaN], [842.930419921875, 805.054931640625, 798.2051391601562, 749.8534545898438, NaN, NaN], [838.4981689453125, 842.930419921875, 846.959716796875, 822.3809814453125, NaN, NaN], [769.5970458984375, 864.6886596679688, 877.5823974609375, 841.7216186523438, NaN, NaN], [736.1538696289062, 829.6337280273438, 834.06591796875, 769.1941528320312, NaN, NaN], [817.1428833007812, 803.4432373046875, 793.7728881835938, 742.1978149414062, NaN, NaN], [865.091552734375, 823.5897216796875, 819.1575317382812, 799.8168334960938, NaN, NaN], [788.937744140625, 859.4505615234375, 871.94140625, 844.5421142578125, NaN, NaN], [754.2857055664062, 851.3919677734375, 859.4505615234375, 812.3076782226562, NaN, NaN], [821.97802734375, 818.3516235351562, 809.4871826171875, 764.7619018554688, NaN, NaN], [860.2564086914062, 825.6043701171875, 813.113525390625, 764.7619018554688, NaN, NaN], [804.6520385742188, 855.018310546875, 860.6593627929688, 834.4688720703125, NaN, NaN], [754.6886596679688, 857.8388061523438, 866.7033081054688, 842.5274658203125, NaN, NaN], [809.89013671875, 823.1868286132812, 816.7399291992188, 764.3589477539062, NaN, NaN], [877.5823974609375, 811.90478515625, 806.6666870117188, 762.7472534179688, NaN, NaN], [847.7655639648438, 850.5860595703125, 859.8534545898438, 824.7985229492188, NaN, NaN], [759.9267578125, 867.5091552734375, 884.029296875, 849.3773193359375, NaN, NaN], [776.4468994140625, 832.8571166992188, 835.6776733398438, 798.6080322265625, NaN, NaN], [841.7216186523438, 803.8461303710938, 799.8168334960938, 765.970703125, NaN, NaN], [842.5274658203125, 827.2161254882812, 836.4835205078125, 803.4432373046875, NaN, NaN], [794.1758422851562, 861.062255859375, 877.9853515625, 857.4359130859375, NaN, NaN], [756.3003540039062, 836.886474609375, 845.7509155273438, 813.5164794921875, NaN, NaN], [829.6337280273438, 798.6080322265625, 795.7875366210938, 734.1392211914062, NaN, NaN], [863.076904296875, 820.7692260742188, 821.97802734375, 780.0732421875, NaN, NaN], [788.937744140625, 861.4652099609375, 875.5677490234375, 847.3626098632812, NaN, NaN], [763.5531005859375, 858.2417602539062, 875.1648559570312, 823.1868286132812, NaN, NaN], [801.4285888671875, 813.5164794921875, 813.5164794921875, 764.7619018554688, NaN, NaN], [842.930419921875, 808.6813354492188, 801.8314819335938, 773.2234497070312, NaN, NaN], [819.5604248046875, 854.6153564453125, 862.6740112304688, 838.901123046875, NaN, NaN], [777.6557006835938, 861.4652099609375, 873.9560546875, 837.6923217773438, NaN, NaN], [814.3223266601562, 821.1721801757812, 817.94873046875, 769.5970458984375, NaN, NaN], [873.5531005859375, 809.4871826171875, 801.025634765625, 763.5531005859375, NaN, NaN], [842.930419921875, 849.7802124023438, 859.8534545898438, 827.6190185546875, NaN, NaN], [788.5347900390625, 873.5531005859375, 886.8497924804688, 849.3773193359375, NaN, NaN], [797.8021850585938, 839.3040161132812, 836.886474609375, 800.2197875976562, NaN, NaN], [816.7399291992188, 812.7106323242188, 808.2783813476562, 773.2234497070312, NaN, NaN], [824.3956298828125, 838.09521484375, 842.5274658203125, 804.2490844726562, NaN, NaN], [779.2673950195312, 871.1355590820312, 881.2088012695312, 835.6776733398438, NaN, NaN], [763.9560546875, 850.989013671875, 846.5567626953125, 797.8021850585938, NaN, NaN], [832.4542236328125, 814.7252807617188, 799.8168334960938, 758.7179565429688, NaN, NaN], [867.912109375, 833.2600708007812, 833.6630249023438, 803.4432373046875, NaN, NaN], [817.94873046875, 867.912109375, 877.1795043945312, 847.3626098632812, NaN, NaN], [781.6849975585938, 857.8388061523438, 856.2271118164062, 803.040283203125, NaN, NaN], [813.91943359375, 821.1721801757812, 809.4871826171875, 752.6740112304688, NaN, NaN], [847.3626098632812, 819.5604248046875, 810.6959838867188, 766.7765502929688, NaN, NaN], [827.2161254882812, 859.4505615234375, 867.5091552734375, 834.8717651367188, NaN, NaN], [761.5384521484375, 861.8681030273438, 871.5384521484375, 842.930419921875, NaN, NaN], [765.5677490234375, 821.1721801757812, 814.3223266601562, 774.4322509765625, NaN, NaN], [838.901123046875, 813.91943359375, 807.87548828125, 765.1648559570312, NaN, NaN], [826.8131713867188, 847.3626098632812, 854.6153564453125, 823.99267578125, NaN, NaN], [761.1355590820312, 863.076904296875, 880.0, 842.5274658203125, NaN, NaN], [764.3589477539062, 834.06591796875, 842.5274658203125, 784.908447265625, NaN, NaN], [830.8424682617188, 809.4871826171875, 804.2490844726562, 747.032958984375, NaN, NaN], [849.7802124023438, 830.03662109375, 829.6337280273438, 778.05859375, NaN, NaN], [790.952392578125, 859.4505615234375, 867.106201171875, 821.5750732421875, NaN, NaN], [770.4029541015625, 846.959716796875, 854.6153564453125, 803.4432373046875, NaN, NaN], [797.8021850585938, 810.2930297851562, 815.5311279296875, 767.9853515625, NaN, NaN], [820.7692260742188, 813.5164794921875, 822.7838745117188, 789.3406372070312, NaN, NaN], [797.3992919921875, 851.7948608398438, 870.3296508789062, 834.4688720703125, NaN, NaN], [751.062255859375, 849.3773193359375, 865.091552734375, 811.5018310546875, NaN, NaN], [794.1758422851562, 811.5018310546875, 810.2930297851562, 751.8681030273438, NaN, NaN], [839.3040161132812, 806.2637329101562, 800.6226806640625, 755.091552734375, NaN, NaN], [805.8607788085938, 842.5274658203125, 850.5860595703125, 814.7252807617188, NaN, NaN], [770.0, 861.062255859375, 877.1795043945312, 844.945068359375, NaN, NaN], [776.8497924804688, 821.1721801757812, 822.7838745117188, 770.0, NaN, NaN], [815.93408203125, 792.5640869140625, 788.1318969726562, 732.930419921875, NaN, NaN], [855.4212646484375, 829.6337280273438, 842.12451171875, 788.937744140625, NaN, NaN], [794.1758422851562, 855.4212646484375, 873.9560546875, 819.5604248046875, NaN, NaN], [744.2124633789062, 829.6337280273438, 840.5128173828125, 775.2380981445312, NaN, NaN], [807.87548828125, 801.4285888671875, 801.025634765625, 749.4505615234375, NaN, NaN], [823.99267578125, 818.3516235351562, 819.5604248046875, 790.952392578125, NaN, NaN], [773.6264038085938, 855.8241577148438, 875.1648559570312, 834.06591796875, NaN, NaN], [747.8388061523438, 838.09521484375, 861.062255859375, 790.5494384765625, NaN, NaN], [792.5640869140625, 792.1611938476562, 805.4578857421875, 731.7216186523438, NaN, NaN], [863.8828125, 805.8607788085938, 812.7106323242188, 780.0732421875, NaN, NaN], [826.4102783203125, 850.5860595703125, 861.4652099609375, 835.2747192382812, NaN, NaN], [742.1978149414062, 854.2124633789062, 868.7179565429688, 818.7545776367188, NaN, NaN], [763.1502075195312, 814.7252807617188, 816.7399291992188, 761.94140625, NaN, NaN], [837.2893676757812, 805.8607788085938, 809.4871826171875, 762.7472534179688, NaN, NaN], [826.8131713867188, 842.12451171875, 863.076904296875, 824.3956298828125, NaN, NaN], [769.5970458984375, 859.8534545898438, 883.2234497070312, 834.4688720703125, NaN, NaN], [787.7289428710938, 831.6483764648438, 839.3040161132812, 784.908447265625, NaN, NaN], [835.6776733398438, 801.4285888671875, 801.8314819335938, 765.1648559570312, NaN, NaN], [836.4835205078125, 827.6190185546875, 834.4688720703125, 809.89013671875, NaN, NaN], [776.4468994140625, 857.4359130859375, 870.3296508789062, 835.2747192382812, NaN, NaN], [764.7619018554688, 829.2307739257812, 838.4981689453125, 786.923095703125, NaN, NaN], [837.2893676757812, 802.6373901367188, 806.2637329101562, 773.6264038085938, NaN, NaN], [859.8534545898438, 818.3516235351562, 834.06591796875, 812.7106323242188, NaN, NaN], [798.6080322265625, 847.3626098632812, 868.3150024414062, 823.99267578125, NaN, NaN], [756.7033081054688, 845.3479614257812, 857.4359130859375, 805.8607788085938, NaN, NaN], [793.7728881835938, 809.4871826171875, 807.069580078125, 770.0, NaN, NaN], [850.1831665039062, 807.87548828125, 808.6813354492188, 776.0439453125, NaN, NaN], [805.054931640625, 843.3333129882812, 861.062255859375, 817.1428833007812, NaN, NaN], [753.8828125, 853.4066162109375, 873.9560546875, 815.5311279296875, NaN, NaN], [796.1904907226562, 819.5604248046875, 827.2161254882812, 781.2820434570312, NaN, NaN], [856.2271118164062, 801.8314819335938, 801.8314819335938, 772.8204956054688, NaN, NaN], [828.02197265625, 834.8717651367188, 848.974365234375, 813.91943359375, NaN, NaN], [773.2234497070312, 861.062255859375, 877.5823974609375, 830.4395751953125, NaN, NaN], [787.3259887695312, 830.8424682617188, 826.00732421875, 775.6410522460938, NaN, NaN], [820.7692260742188, 803.040283203125, 790.952392578125, 759.5238037109375, NaN, NaN], [840.10986328125, 830.4395751953125, 832.05126953125, 796.996337890625, NaN, NaN], [786.923095703125, 864.2857055664062, 882.0146484375, 835.2747192382812, NaN, NaN], [754.2857055664062, 845.3479614257812, 857.8388061523438, 823.1868286132812, NaN, NaN], [824.3956298828125, 807.4725341796875, 802.6373901367188, 768.3883056640625, NaN, NaN], [865.091552734375, 821.97802734375, 819.96337890625, 785.7142944335938, NaN, NaN], [798.6080322265625, 861.8681030273438, 869.9267578125, 845.3479614257812, NaN, NaN], [730.10986328125, 854.6153564453125, 862.2710571289062, 794.5787353515625, NaN, NaN], [776.8497924804688, 813.91943359375, 813.91943359375, 738.5714111328125, NaN, NaN], [821.5750732421875, 808.6813354492188, 808.6813354492188, 763.9560546875, NaN, NaN], [808.6813354492188, 850.5860595703125, 867.106201171875, 825.2014770507812, NaN, NaN], [774.8351440429688, 862.6740112304688, 886.4468994140625, 834.4688720703125, NaN, NaN], [765.970703125, 817.1428833007812, 823.99267578125, 772.0146484375, NaN, NaN], [830.8424682617188, 803.040283203125, 804.6520385742188, 755.091552734375, NaN, NaN], [832.8571166992188, 838.901123046875, 851.3919677734375, 808.2783813476562, NaN, NaN], [759.9267578125, 858.6447143554688, 878.7911987304688, 838.4981689453125, NaN, NaN], [768.3883056640625, 831.2454223632812, 840.915771484375, 793.7728881835938, NaN, NaN], [843.3333129882812, 805.4578857421875, 803.040283203125, 750.6593627929688, NaN, NaN], [856.2271118164062, 833.2600708007812, 842.930419921875, 790.5494384765625, NaN, NaN], [780.0732421875, 859.047607421875, 875.970703125, 823.99267578125, NaN, NaN], [751.062255859375, 839.3040161132812, 846.5567626953125, 776.0439453125, NaN, NaN], [812.7106323242188, 810.2930297851562, 808.2783813476562, 741.3919677734375, NaN, NaN], [830.8424682617188, 817.5457763671875, 821.1721801757812, 784.908447265625, NaN, NaN], [799.4139404296875, 856.6300659179688, 871.94140625, 829.2307739257812, NaN, NaN], [759.120849609375, 853.8095092773438, 872.3442993164062, 807.069580078125, NaN, NaN], [775.2380981445312, 813.113525390625, 821.97802734375, 774.8351440429688, NaN, NaN], [848.974365234375, 809.89013671875, 812.3076782226562, 784.908447265625, NaN, NaN], [828.8278198242188, 846.1538696289062, 860.6593627929688, 818.3516235351562, NaN, NaN], [753.8828125, 859.047607421875, 878.3883056640625, 806.6666870117188, NaN, NaN], [759.5238037109375, 822.3809814453125, 830.03662109375, 750.6593627929688, NaN, NaN], [816.7399291992188, 806.2637329101562, 809.89013671875, 753.8828125, NaN, NaN], [817.1428833007812, 834.8717651367188, 852.1978149414062, 809.084228515625, NaN, NaN], [761.5384521484375, 856.2271118164062, 880.4029541015625, 829.2307739257812, NaN, NaN], [784.908447265625, 840.915771484375, 854.2124633789062, 787.3259887695312, NaN, NaN], [836.886474609375, 806.2637329101562, 815.5311279296875, 757.5091552734375, NaN, NaN], [829.2307739257812, 813.91943359375, 829.6337280273438, 786.5201416015625, NaN, NaN], [784.5054931640625, 856.2271118164062, 881.2088012695312, 835.2747192382812, NaN, NaN], [767.1795043945312, 844.5421142578125, 865.8974609375, 815.93408203125, NaN, NaN], [826.4102783203125, 808.2783813476562, 808.2783813476562, 766.3735961914062, NaN, NaN], [860.6593627929688, 816.3369750976562, 817.5457763671875, 778.05859375, NaN, NaN], [812.3076782226562, 850.5860595703125, 872.7472534179688, 832.8571166992188, NaN, NaN], [765.1648559570312, 853.8095092773438, 881.6116943359375, 835.6776733398438, NaN, NaN], [800.2197875976562, 815.93408203125, 829.2307739257812, 766.7765502929688, NaN, NaN], [856.6300659179688, 802.2344360351562, 806.6666870117188, 758.3150024414062, NaN, NaN], [818.3516235351562, 840.10986328125, 857.4359130859375, 799.8168334960938, NaN, NaN], [749.4505615234375, 857.8388061523438, 880.0, 803.040283203125, NaN, NaN], [760.7326049804688, 822.7838745117188, 829.2307739257812, 771.2088012695312, NaN, NaN], [826.8131713867188, 800.6226806640625, 800.6226806640625, 760.3296508789062, NaN, NaN], [846.959716796875, 830.03662109375, 843.7362670898438, 803.040283203125, NaN, NaN], [813.91943359375, 863.076904296875, 887.2527465820312, 842.12451171875, NaN, NaN], [796.1904907226562, 834.4688720703125, 848.5714111328125, 796.5933837890625, NaN, NaN], [816.3369750976562, 800.2197875976562, 805.054931640625, 757.5091552734375, NaN, NaN], [822.3809814453125, 820.3662719726562, 831.2454223632812, 785.3113403320312, NaN, NaN], [767.5823974609375, 857.8388061523438, 878.3883056640625, 829.2307739257812, NaN, NaN], [744.6153564453125, 853.8095092773438, 870.7326049804688, 813.5164794921875, NaN, NaN], [801.8314819335938, 815.1282348632812, 809.4871826171875, 753.8828125, NaN, NaN], [843.7362670898438, 818.3516235351562, 817.94873046875, 780.4761962890625, NaN, NaN], [807.87548828125, 859.4505615234375, 880.0, 854.2124633789062, NaN, NaN], [749.8534545898438, 856.6300659179688, 871.1355590820312, 823.99267578125, NaN, NaN], [789.7435913085938, 820.7692260742188, 815.1282348632812, 763.9560546875, NaN, NaN], [843.3333129882812, 808.6813354492188, 804.2490844726562, 776.8497924804688, NaN, NaN], [833.2600708007812, 838.4981689453125, 854.6153564453125, 823.5897216796875, NaN, NaN], [781.2820434570312, 860.2564086914062, 882.8204956054688, 824.3956298828125, NaN, NaN], [762.7472534179688, 832.4542236328125, 839.3040161132812, 761.94140625, NaN, NaN], [812.3076782226562, 806.2637329101562, 798.2051391601562, 732.5274658203125, NaN, NaN], [834.4688720703125, 830.8424682617188, 834.4688720703125, 785.3113403320312, NaN, NaN], [786.1171875, 865.4945068359375, 881.2088012695312, 836.4835205078125, NaN, NaN], [753.076904296875, 846.959716796875, 855.018310546875, 799.8168334960938, NaN, NaN], [820.3662719726562, 808.6813354492188, 807.069580078125, 749.4505615234375, NaN, NaN], [865.8974609375, 819.5604248046875, 817.94873046875, 769.1941528320312, NaN, NaN], [798.6080322265625, 853.8095092773438, 859.4505615234375, 822.3809814453125, NaN, NaN], [773.2234497070312, 851.3919677734375, 858.2417602539062, 812.3076782226562, NaN, NaN], [813.113525390625, 817.94873046875, 819.5604248046875, 759.5238037109375, NaN, NaN], [813.113525390625, 806.6666870117188, 804.6520385742188, 755.091552734375, NaN, NaN], [771.2088012695312, 841.3186645507812, 847.3626098632812, 807.87548828125, NaN, NaN], [739.7802124023438, 853.8095092773438, 869.9267578125, 828.02197265625, NaN, NaN], [763.9560546875, 813.5164794921875, 821.97802734375, 773.2234497070312, NaN, NaN], [825.6043701171875, 801.025634765625, 803.4432373046875, 763.1502075195312, NaN, NaN], [823.1868286132812, 837.2893676757812, 846.959716796875, 811.5018310546875, NaN, NaN], [772.4176025390625, 861.8681030273438, 877.1795043945312, 835.6776733398438, NaN, NaN], [770.0, 832.4542236328125, 838.901123046875, 782.893798828125, NaN, NaN], [816.3369750976562, 799.010986328125, 794.1758422851562, 730.10986328125, NaN, NaN], [831.6483764648438, 823.99267578125, 827.2161254882812, 775.6410522460938, NaN, NaN], [784.908447265625, 860.2564086914062, 864.2857055664062, 828.8278198242188, NaN, NaN], [770.0, 847.3626098632812, 840.5128173828125, 796.5933837890625, NaN, NaN], [819.5604248046875, 812.7106323242188, 805.4578857421875, 753.4798583984375, NaN, NaN], [848.974365234375, 818.7545776367188, 822.7838745117188, 786.5201416015625, NaN, NaN], [811.098876953125, 857.032958984375, 873.1502075195312, 837.6923217773438, NaN, NaN], [772.4176025390625, 857.8388061523438, 869.5238037109375, 818.7545776367188, NaN, NaN], [809.4871826171875, 813.113525390625, 821.1721801757812, 771.6116943359375, NaN, NaN], [857.8388061523438, 806.6666870117188, 816.3369750976562, 780.0732421875, NaN, NaN], [809.084228515625, 847.7655639648438, 858.2417602539062, 825.2014770507812, NaN, NaN], [745.4212646484375, 862.2710571289062, 877.1795043945312, 829.2307739257812, NaN, NaN], [762.3442993164062, 827.6190185546875, 830.03662109375, 768.7911987304688, NaN, NaN], [824.3956298828125, 809.4871826171875, 805.4578857421875, 764.3589477539062, NaN, NaN], [837.6923217773438, 844.5421142578125, 852.6007080078125, 820.3662719726562, NaN, NaN], [784.5054931640625, 865.8974609375, 880.0, 823.5897216796875, NaN, NaN], [790.1465454101562, 841.3186645507812, 841.3186645507812, 773.6264038085938, NaN, NaN], [834.4688720703125, 810.2930297851562, 799.8168334960938, 774.8351440429688, NaN, NaN], [835.2747192382812, 822.3809814453125, 828.8278198242188, 816.3369750976562, NaN, NaN], [773.6264038085938, 860.2564086914062, 883.6264038085938, 840.5128173828125, NaN, NaN], [745.4212646484375, 849.7802124023438, 866.7033081054688, 805.8607788085938, NaN, NaN], [803.8461303710938, 811.90478515625, 821.5750732421875, 784.1025390625, NaN, NaN], [850.5860595703125, 821.1721801757812, 829.2307739257812, 801.4285888671875, NaN, NaN], [810.2930297851562, 859.047607421875, 868.7179565429688, 810.6959838867188, NaN, NaN], [759.9267578125, 865.8974609375, 868.3150024414062, 808.2783813476562, NaN, NaN], [802.2344360351562, 829.6337280273438, 815.1282348632812, 772.0146484375, NaN, NaN], [863.8828125, 820.3662719726562, 803.040283203125, 777.2527465820312, NaN, NaN], [832.8571166992188, 861.062255859375, 854.2124633789062, 832.05126953125, NaN, NaN], [784.908447265625, 878.3883056640625, 873.9560546875, 835.2747192382812, NaN, NaN], [801.025634765625, 846.1538696289062, 824.3956298828125, 776.8497924804688, NaN, NaN], [850.989013671875, 826.00732421875, 791.7582397460938, 768.3883056640625, NaN, NaN], [865.4945068359375, 851.7948608398438, 827.6190185546875, 817.5457763671875, NaN, NaN], [815.93408203125, 880.8058471679688, 863.8828125, 850.989013671875, NaN, NaN], [792.5640869140625, 859.047607421875, 837.6923217773438, 813.5164794921875, NaN, NaN], [830.4395751953125, 821.5750732421875, 794.5787353515625, 788.1318969726562, NaN, NaN], [857.8388061523438, 832.8571166992188, 809.4871826171875, 814.3223266601562, NaN, NaN], [815.1282348632812, 869.120849609375, 858.2417602539062, 844.945068359375, NaN, NaN], [803.4432373046875, 868.7179565429688, 858.2417602539062, 837.6923217773438, NaN, NaN], [827.2161254882812, 828.4249267578125, 802.6373901367188, 782.087890625, NaN, NaN], [845.7509155273438, 819.5604248046875, 795.7875366210938, 778.4615478515625, NaN, NaN], [828.02197265625, 858.6447143554688, 848.974365234375, 830.4395751953125, NaN, NaN], [782.087890625, 869.9267578125, 855.018310546875, 826.4102783203125, NaN, NaN], [803.8461303710938, 829.6337280273438, 808.6813354492188, 772.8204956054688, NaN, NaN], [844.945068359375, 812.3076782226562, 793.7728881835938, 770.0, NaN, NaN], [840.915771484375, 855.018310546875, 851.3919677734375, 836.08056640625, NaN, NaN], [809.89013671875, 875.970703125, 882.0146484375, 860.2564086914062, NaN, NaN], [818.3516235351562, 838.09521484375, 828.02197265625, 799.8168334960938, NaN, NaN], [860.2564086914062, 810.2930297851562, 790.952392578125, 772.4176025390625, NaN, NaN], [851.7948608398438, 835.2747192382812, 830.8424682617188, 812.7106323242188, NaN, NaN], [796.5933837890625, 867.106201171875, 867.5091552734375, 839.3040161132812, NaN, NaN], [768.7911987304688, 844.1392211914062, 837.2893676757812, 792.967041015625, NaN, NaN], [823.1868286132812, 810.6959838867188, 798.6080322265625, 754.2857055664062, NaN, NaN], [873.1502075195312, 828.4249267578125, 828.4249267578125, 810.2930297851562, NaN, NaN], [815.5311279296875, 861.8681030273438, 874.7619018554688, 855.018310546875, NaN, NaN], [765.970703125, 851.3919677734375, 853.8095092773438, 804.2490844726562, NaN, NaN], [816.3369750976562, 816.3369750976562, 805.8607788085938, 749.8534545898438, NaN, NaN], [863.4798583984375, 816.3369750976562, 805.8607788085938, 765.1648559570312, NaN, NaN], [824.7985229492188, 856.6300659179688, 861.062255859375, 828.02197265625, NaN, NaN], [776.0439453125, 863.4798583984375, 866.3003540039062, 829.2307739257812, NaN, NaN], [794.5787353515625, 824.7985229492188, 815.5311279296875, 776.4468994140625, NaN, NaN], [834.06591796875, 812.3076782226562, 810.2930297851562, 767.9853515625, NaN, NaN], [820.3662719726562, 840.915771484375, 846.1538696289062, 806.2637329101562, NaN, NaN], [756.7033081054688, 864.2857055664062, 864.2857055664062, 823.1868286132812, NaN, NaN], [767.5823974609375, 839.3040161132812, 832.8571166992188, 776.4468994140625, NaN, NaN], [818.7545776367188, 807.87548828125, 790.1465454101562, 757.106201171875, NaN, NaN], [829.2307739257812, 828.4249267578125, 814.3223266601562, 798.2051391601562, NaN, NaN], [792.1611938476562, 858.2417602539062, 862.6740112304688, 830.03662109375, NaN, NaN], [783.6996459960938, 847.7655639648438, 849.7802124023438, 794.981689453125, NaN, NaN], [820.3662719726562, 816.7399291992188, 805.8607788085938, 748.2417602539062, NaN, NaN], [821.97802734375, 818.7545776367188, 811.90478515625, 774.029296875, NaN, NaN], [784.5054931640625, 853.003662109375, 859.4505615234375, 830.4395751953125, NaN, NaN], [761.94140625, 852.1978149414062, 856.2271118164062, 824.3956298828125, NaN, NaN], [796.1904907226562, 816.3369750976562, 808.2783813476562, 767.9853515625, NaN, NaN], [845.3479614257812, 813.91943359375, 805.4578857421875, 753.076904296875, NaN, NaN], [833.6630249023438, 853.4066162109375, 854.2124633789062, 819.1575317382812, NaN, NaN], [767.1795043945312, 873.1502075195312, 877.1795043945312, 859.047607421875, NaN, NaN], [780.879150390625, 836.08056640625, 828.4249267578125, 767.9853515625, NaN, NaN], [839.3040161132812, 812.3076782226562, 794.5787353515625, 729.3040161132812, NaN, NaN], [833.2600708007812, 844.1392211914062, 838.901123046875, 797.8021850585938, NaN, NaN], [777.6557006835938, 867.912109375, 868.7179565429688, 829.2307739257812, NaN, NaN], [789.3406372070312, 848.5714111328125, 832.8571166992188, 791.7582397460938, NaN, NaN], [846.5567626953125, 819.96337890625, 796.5933837890625, 758.3150024414062, NaN, NaN], [856.2271118164062, 831.2454223632812, 823.5897216796875, 791.7582397460938, NaN, NaN], [807.87548828125, 872.7472534179688, 872.3442993164062, 850.1831665039062, NaN, NaN], [758.7179565429688, 864.2857055664062, 849.3773193359375, 824.7985229492188, NaN, NaN], [796.996337890625, 820.3662719726562, 798.2051391601562, 764.7619018554688, NaN, NaN], [835.2747192382812, 826.4102783203125, 809.89013671875, 780.0732421875, NaN, NaN], [812.3076782226562, 864.2857055664062, 863.8828125, 846.5567626953125, NaN, NaN], [782.087890625, 867.912109375, 873.9560546875, 845.7509155273438, NaN, NaN], [786.5201416015625, 830.03662109375, 821.1721801757812, 771.2088012695312, NaN, NaN], [835.6776733398438, 823.1868286132812, 815.1282348632812, 772.4176025390625, NaN, NaN], [828.02197265625, 855.018310546875, 864.2857055664062, 834.8717651367188, NaN, NaN], [781.2820434570312, 866.7033081054688, 882.0146484375, 850.5860595703125, NaN, NaN], [785.3113403320312, 839.7069702148438, 837.2893676757812, 790.1465454101562, NaN, NaN], [832.05126953125, 815.93408203125, 798.2051391601562, 760.3296508789062, NaN, NaN], [832.4542236328125, 840.915771484375, 834.06591796875, 811.098876953125, NaN, NaN], [780.879150390625, 869.120849609375, 872.7472534179688, 833.6630249023438, NaN, NaN], [769.5970458984375, 843.7362670898438, 838.09521484375, 791.3552856445312, NaN, NaN], [845.7509155273438, 813.91943359375, 802.2344360351562, 773.2234497070312, NaN, NaN], [886.0439453125, 832.8571166992188, 830.8424682617188, 811.5018310546875, NaN, NaN], [809.084228515625, 859.8534545898438, 862.2710571289062, 832.4542236328125, NaN, NaN], [758.7179565429688, 855.8241577148438, 847.3626098632812, 792.5640869140625, NaN, NaN], [815.1282348632812, 821.5750732421875, 809.084228515625, 759.9267578125, NaN, NaN], [855.4212646484375, 819.5604248046875, 813.5164794921875, 780.0732421875, NaN, NaN], [803.8461303710938, 857.4359130859375, 862.6740112304688, 822.7838745117188, NaN, NaN], [761.5384521484375, 869.120849609375, 878.3883056640625, 831.2454223632812, NaN, NaN], [799.010986328125, 832.05126953125, 830.03662109375, 782.4908447265625, NaN, NaN], [842.12451171875, 811.5018310546875, 803.4432373046875, 766.7765502929688, NaN, NaN], [824.7985229492188, 845.3479614257812, 846.1538696289062, 831.6483764648438, NaN, NaN], [776.0439453125, 866.7033081054688, 877.5823974609375, 856.2271118164062, NaN, NaN], [768.3883056640625, 834.06591796875, 835.6776733398438, 783.2966918945312, NaN, NaN], [832.4542236328125, 810.6959838867188, 799.010986328125, 753.076904296875, NaN, NaN], [838.09521484375, 838.4981689453125, 834.06591796875, 798.6080322265625, NaN, NaN], [778.05859375, 875.1648559570312, 880.8058471679688, 845.3479614257812, NaN, NaN], [776.0439453125, 857.4359130859375, 857.032958984375, 794.1758422851562, NaN, NaN], [821.5750732421875, 814.7252807617188, 803.8461303710938, 744.2124633789062, NaN, NaN], [852.6007080078125, 827.2161254882812, 820.7692260742188, 786.1171875, NaN, NaN], [803.4432373046875, 867.106201171875, 868.3150024414062, 845.3479614257812, NaN, NaN], [751.062255859375, 861.8681030273438, 861.4652099609375, 828.4249267578125, NaN, NaN], [804.6520385742188, 826.4102783203125, 813.5164794921875, 772.4176025390625, NaN, NaN], [875.1648559570312, 820.7692260742188, 805.4578857421875, 777.6557006835938, NaN, NaN], [845.7509155273438, 864.2857055664062, 868.7179565429688, 840.10986328125, NaN, NaN], [763.5531005859375, 876.3735961914062, 886.4468994140625, 832.8571166992188, NaN, NaN], [765.5677490234375, 825.2014770507812, 820.7692260742188, 748.6447143554688, NaN, NaN], [827.2161254882812, 806.6666870117188, 801.8314819335938, 743.8095092773438, NaN, NaN], [830.4395751953125, 841.3186645507812, 845.3479614257812, 813.5164794921875, NaN, NaN], [776.4468994140625, 864.2857055664062, 876.7765502929688, 840.915771484375, NaN, NaN], [786.923095703125, 837.2893676757812, 843.3333129882812, 783.6996459960938, NaN, NaN], [874.7619018554688, 809.89013671875, 805.4578857421875, 747.8388061523438, NaN, NaN], [856.6300659179688, 835.2747192382812, 840.5128173828125, 812.7106323242188, NaN, NaN], [760.3296508789062, 861.062255859375, 872.7472534179688, 848.974365234375, NaN, NaN], [753.4798583984375, 843.3333129882812, 844.945068359375, 783.6996459960938, NaN, NaN], [805.4578857421875, 811.5018310546875, 806.2637329101562, 741.3919677734375, NaN, NaN], [836.886474609375, 817.5457763671875, 819.5604248046875, 771.6116943359375, NaN, NaN], [796.996337890625, 854.2124633789062, 867.912109375, 827.2161254882812, NaN, NaN], [751.4652099609375, 853.8095092773438, 867.106201171875, 819.96337890625, NaN, NaN], [797.8021850585938, 815.5311279296875, 821.5750732421875, 767.9853515625, NaN, NaN], [843.7362670898438, 804.6520385742188, 809.89013671875, 770.0, NaN, NaN], [809.4871826171875, 839.3040161132812, 854.6153564453125, 823.1868286132812, NaN, NaN], [759.5238037109375, 855.8241577148438, 875.1648559570312, 842.930419921875, NaN, NaN], [776.8497924804688, 821.97802734375, 829.2307739257812, 784.1025390625, NaN, NaN], [848.5714111328125, 804.6520385742188, 805.4578857421875, 758.7179565429688, NaN, NaN], [843.3333129882812, 832.4542236328125, 840.10986328125, 803.040283203125, NaN, NaN], [765.1648559570312, 857.8388061523438, 869.5238037109375, 831.6483764648438, NaN, NaN], [771.2088012695312, 842.930419921875, 845.7509155273438, 798.6080322265625, NaN, NaN], [834.4688720703125, 813.91943359375, 801.025634765625, 746.2271118164062, NaN, NaN], [849.7802124023438, 826.4102783203125, 820.7692260742188, 776.4468994140625, NaN, NaN], [792.1611938476562, 862.6740112304688, 874.7619018554688, 835.6776733398438, NaN, NaN], [770.4029541015625, 851.7948608398438, 860.2564086914062, 801.025634765625, NaN, NaN], [827.6190185546875, 815.93408203125, 815.1282348632812, 749.047607421875, NaN, NaN], [866.3003540039062, 821.97802734375, 819.5604248046875, 773.6264038085938, NaN, NaN], [801.8314819335938, 860.2564086914062, 865.091552734375, 826.00732421875, NaN, NaN], [738.5714111328125, 869.5238037109375, 873.5531005859375, 817.94873046875, NaN, NaN], [790.1465454101562, 827.2161254882812, 818.3516235351562, 747.032958984375, NaN, NaN], [843.3333129882812, 810.2930297851562, 801.8314819335938, 757.5091552734375, NaN, NaN], [823.1868286132812, 855.8241577148438, 858.6447143554688, 828.02197265625, NaN, NaN], [768.7911987304688, 871.1355590820312, 877.9853515625, 823.99267578125, NaN, NaN], [782.4908447265625, 838.09521484375, 831.6483764648438, 765.1648559570312, NaN, NaN], [821.1721801757812, 819.1575317382812, 801.025634765625, 744.6153564453125, NaN, NaN], [825.6043701171875, 848.1685180664062, 841.7216186523438, 800.2197875976562, NaN, NaN], [775.6410522460938, 878.7911987304688, 885.6410522460938, 850.989013671875, NaN, NaN], [734.5421142578125, 849.3773193359375, 848.5714111328125, 792.5640869140625, NaN, NaN], [805.4578857421875, 815.5311279296875, 805.8607788085938, 757.912109375, NaN, NaN], [848.974365234375, 834.4688720703125, 827.6190185546875, 797.8021850585938, NaN, NaN], [794.981689453125, 867.5091552734375, 870.7326049804688, 824.7985229492188, NaN, NaN], [752.2710571289062, 861.062255859375, 864.6886596679688, 801.8314819335938, NaN, NaN], [786.923095703125, 819.1575317382812, 809.4871826171875, 761.1355590820312, NaN, NaN], [848.1685180664062, 821.1721801757812, 813.91943359375, 772.0146484375, NaN, NaN], [823.1868286132812, 863.8828125, 863.076904296875, 825.6043701171875, NaN, NaN], [756.7033081054688, 861.8681030273438, 854.2124633789062, 803.8461303710938, NaN, NaN], [782.893798828125, 826.8131713867188, 813.91943359375, 743.003662109375, NaN, NaN], [853.003662109375, 816.3369750976562, 807.4725341796875, 756.7033081054688, NaN, NaN], [844.5421142578125, 849.7802124023438, 853.8095092773438, 811.5018310546875, NaN, NaN], [776.4468994140625, 871.94140625, 876.7765502929688, 830.8424682617188, NaN, NaN], [785.3113403320312, 845.3479614257812, 838.09521484375, 792.967041015625, NaN, NaN], [826.8131713867188, 819.1575317382812, 808.2783813476562, 778.8644409179688, NaN, NaN], [842.5274658203125, 841.3186645507812, 840.915771484375, 820.3662719726562, NaN, NaN], [810.6959838867188, 872.3442993164062, 882.0146484375, 847.3626098632812, NaN, NaN], [781.2820434570312, 852.1978149414062, 849.7802124023438, 788.5347900390625, NaN, NaN], [827.2161254882812, 818.7545776367188, 804.2490844726562, 739.3773193359375, NaN, NaN], [840.915771484375, 825.2014770507812, 819.1575317382812, 767.5823974609375, NaN, NaN], [774.8351440429688, 857.032958984375, 862.6740112304688, 817.1428833007812, NaN, NaN], [738.5714111328125, 854.6153564453125, 861.062255859375, 801.8314819335938, NaN, NaN], [792.1611938476562, 823.1868286132812, 819.5604248046875, 769.5970458984375, NaN, NaN], [836.886474609375, 817.1428833007812, 808.6813354492188, 774.4322509765625, NaN, NaN], [803.040283203125, 853.4066162109375, 853.4066162109375, 817.1428833007812, NaN, NaN], [776.4468994140625, 867.912109375, 871.1355590820312, 826.4102783203125, NaN, NaN], [801.4285888671875, 828.02197265625, 822.3809814453125, 767.5823974609375, NaN, NaN], [833.6630249023438, 814.3223266601562, 797.8021850585938, 777.2527465820312, NaN, NaN], [826.00732421875, 852.1978149414062, 838.4981689453125, 833.6630249023438, NaN, NaN], [780.0732421875, 877.1795043945312, 875.5677490234375, 840.10986328125, NaN, NaN], [763.1502075195312, 844.945068359375, 842.930419921875, 777.2527465820312, NaN, NaN], [811.098876953125, 808.2783813476562, 798.2051391601562, 744.2124633789062, NaN, NaN], [835.6776733398438, 832.05126953125, 828.4249267578125, 787.3259887695312, NaN, NaN], [785.7142944335938, 869.9267578125, 876.3735961914062, 830.8424682617188, NaN, NaN], [763.9560546875, 856.2271118164062, 859.8534545898438, 798.6080322265625, NaN, NaN], [825.2014770507812, 815.93408203125, 811.90478515625, 745.4212646484375, NaN, NaN], [865.091552734375, 820.3662719726562, 817.94873046875, 772.0146484375, NaN, NaN], [827.2161254882812, 860.2564086914062, 869.120849609375, 821.5750732421875, NaN, NaN], [762.3442993164062, 859.4505615234375, 867.106201171875, 802.2344360351562, NaN, NaN], [772.8204956054688, 817.94873046875, 815.5311279296875, 759.5238037109375, NaN, NaN], [830.8424682617188, 814.3223266601562, 813.113525390625, 772.8204956054688, NaN, NaN], [811.90478515625, 851.3919677734375, 859.8534545898438, 828.02197265625, NaN, NaN], [755.4945068359375, 863.8828125, 875.970703125, 838.4981689453125, NaN, NaN], [774.8351440429688, 833.6630249023438, 833.2600708007812, 787.3259887695312, NaN, NaN], [838.09521484375, 813.113525390625, 812.7106323242188, 768.7911987304688, NaN, NaN], [844.945068359375, 848.974365234375, 858.2417602539062, 803.8461303710938, NaN, NaN], [788.5347900390625, 870.7326049804688, 878.7911987304688, 813.113525390625, NaN, NaN], [770.4029541015625, 841.7216186523438, 842.930419921875, 773.6264038085938, NaN, NaN], [826.4102783203125, 815.5311279296875, 812.3076782226562, 755.4945068359375, NaN, NaN], [834.06591796875, 828.8278198242188, 832.4542236328125, 799.4139404296875, NaN, NaN], [780.879150390625, 861.8681030273438, 873.1502075195312, 844.5421142578125, NaN, NaN], [757.912109375, 852.6007080078125, 856.6300659179688, 815.93408203125, NaN, NaN], [830.4395751953125, 820.3662719726562, 816.7399291992188, 778.8644409179688, NaN, NaN], [884.8351440429688, 824.3956298828125, 825.2014770507812, 797.8021850585938, NaN, NaN], [813.5164794921875, 852.6007080078125, 863.8828125, 844.1392211914062, NaN, NaN], [759.5238037109375, 853.8095092773438, 865.8974609375, 833.2600708007812, NaN, NaN], [789.3406372070312, 817.1428833007812, 816.3369750976562, 761.1355590820312, NaN, NaN], [841.3186645507812, 807.069580078125, 806.2637329101562, 742.1978149414062, NaN, NaN], [828.8278198242188, 846.1538696289062, 860.6593627929688, 803.8461303710938, NaN, NaN], [762.3442993164062, 859.8534545898438, 881.6116943359375, 836.08056640625, NaN, NaN], [787.7289428710938, 823.1868286132812, 835.6776733398438, 788.5347900390625, NaN, NaN], [848.1685180664062, 798.6080322265625, 805.054931640625, 749.047607421875, NaN, NaN], [820.7692260742188, 826.4102783203125, 842.12451171875, 790.1465454101562, NaN, NaN], [764.7619018554688, 856.2271118164062, 879.5970458984375, 847.7655639648438, NaN, NaN], [764.3589477539062, 838.901123046875, 853.8095092773438, 810.2930297851562, NaN, NaN], [828.8278198242188, 804.6520385742188, 808.2783813476562, 757.106201171875, NaN, NaN], [853.003662109375, 813.113525390625, 821.5750732421875, 774.4322509765625, NaN, NaN], [793.3699340820312, 852.1978149414062, 872.3442993164062, 821.5750732421875, NaN, NaN], [760.7326049804688, 852.1978149414062, 869.5238037109375, 800.6226806640625, NaN, NaN], [799.010986328125, 809.4871826171875, 812.3076782226562, 746.2271118164062, NaN, NaN], [838.901123046875, 800.6226806640625, 803.040283203125, 766.3735961914062, NaN, NaN], [816.7399291992188, 841.7216186523438, 855.4212646484375, 818.3516235351562, NaN, NaN], [758.3150024414062, 849.7802124023438, 865.091552734375, 801.8314819335938, NaN, NaN], [776.8497924804688, 811.5018310546875, 816.3369750976562, 745.018310546875, NaN, NaN], [828.4249267578125, 796.1904907226562, 802.6373901367188, 733.3333129882812, NaN, NaN], [815.1282348632812, 834.4688720703125, 848.974365234375, 778.8644409179688, NaN, NaN], [770.0, 860.6593627929688, 872.3442993164062, 809.4871826171875, NaN, NaN], [776.4468994140625, 829.2307739257812, 831.6483764648438, 770.0, NaN, NaN], [831.6483764648438, 801.4285888671875, 799.8168334960938, 750.2564086914062, NaN, NaN], [838.901123046875, 827.6190185546875, 832.8571166992188, 793.7728881835938, NaN, NaN], [780.0732421875, 859.4505615234375, 875.1648559570312, 818.7545776367188, NaN, NaN], [759.9267578125, 841.3186645507812, 854.6153564453125, 785.3113403320312, NaN, NaN], [807.87548828125, 806.2637329101562, 805.8607788085938, 728.4981689453125, NaN, NaN], [844.945068359375, 821.1721801757812, 827.6190185546875, 757.106201171875, NaN, NaN], [797.8021850585938, 857.4359130859375, 868.7179565429688, 829.6337280273438, NaN, NaN], [743.003662109375, 848.974365234375, 848.974365234375, 796.1904907226562, NaN, NaN], [789.3406372070312, 813.113525390625, 807.4725341796875, 738.974365234375, NaN, NaN], [842.12451171875, 811.098876953125, 807.4725341796875, 755.4945068359375, NaN, NaN], [824.3956298828125, 853.4066162109375, 862.6740112304688, 821.1721801757812, NaN, NaN], [761.94140625, 862.2710571289062, 872.3442993164062, 821.1721801757812, NaN, NaN], [783.6996459960938, 821.97802734375, 821.1721801757812, 769.1941528320312, NaN, NaN], [859.4505615234375, 813.113525390625, 813.113525390625, 778.05859375, NaN, NaN], [836.886474609375, 844.945068359375, 853.003662109375, 815.93408203125, NaN, NaN], [772.8204956054688, 862.6740112304688, 874.3589477539062, 828.8278198242188, NaN, NaN], [770.4029541015625, 837.2893676757812, 842.12451171875, 782.893798828125, NaN, NaN], [833.2600708007812, 809.89013671875, 805.4578857421875, 739.7802124023438, NaN, NaN], [852.6007080078125, 833.6630249023438, 830.03662109375, 789.3406372070312, NaN, NaN], [777.2527465820312, 863.4798583984375, 868.7179565429688, 834.4688720703125, NaN, NaN], [766.7765502929688, 853.003662109375, 862.6740112304688, 809.4871826171875, NaN, NaN], [836.4835205078125, 819.5604248046875, 820.3662719726562, 768.3883056640625, NaN, NaN], [856.2271118164062, 821.5750732421875, 821.97802734375, 784.5054931640625, NaN, NaN], [815.1282348632812, 856.6300659179688, 868.7179565429688, 842.930419921875, NaN, NaN], [766.3735961914062, 855.018310546875, 869.120849609375, 826.8131713867188, NaN, NaN], [805.8607788085938, 816.7399291992188, 815.5311279296875, 765.1648559570312, NaN, NaN], [873.5531005859375, 810.2930297851562, 805.8607788085938, 778.05859375, NaN, NaN], [807.069580078125, 847.3626098632812, 861.8681030273438, 813.113525390625, NaN, NaN], [741.7948608398438, 868.3150024414062, 888.8644409179688, 805.4578857421875, NaN, NaN], [770.4029541015625, 829.2307739257812, 834.4688720703125, 755.8974609375, NaN, NaN], [826.00732421875, 797.8021850585938, 790.1465454101562, 758.7179565429688, NaN, NaN], [836.4835205078125, 835.6776733398438, 837.2893676757812, 818.3516235351562, NaN, NaN], [774.8351440429688, 864.6886596679688, 875.970703125, 834.4688720703125, NaN, NaN], [794.5787353515625, 843.3333129882812, 842.12451171875, 791.3552856445312, NaN, NaN], [848.1685180664062, 818.3516235351562, 806.6666870117188, 761.94140625, NaN, NaN], [844.5421142578125, 830.8424682617188, 826.8131713867188, 799.8168334960938, NaN, NaN], [811.90478515625, 866.7033081054688, 875.970703125, 846.1538696289062, NaN, NaN], [761.1355590820312, 854.2124633789062, 857.032958984375, 802.6373901367188, NaN, NaN], [800.6226806640625, 814.3223266601562, 807.069580078125, 759.9267578125, NaN, NaN], [847.3626098632812, 821.1721801757812, 817.1428833007812, 785.7142944335938, NaN, NaN], [802.2344360351562, 860.6593627929688, 861.062255859375, 826.00732421875, NaN, NaN], [748.6447143554688, 863.4798583984375, 866.7033081054688, 816.3369750976562, NaN, NaN], [783.2966918945312, 823.99267578125, 821.97802734375, 762.3442993164062, NaN, NaN], [846.959716796875, 813.5164794921875, 812.3076782226562, 770.0, NaN, NaN], [826.00732421875, 850.989013671875, 859.8534545898438, 828.02197265625, NaN, NaN], [780.879150390625, 869.5238037109375, 875.970703125, 844.5421142578125, NaN, NaN], [801.8314819335938, 835.6776733398438, 833.2600708007812, 801.4285888671875, NaN, NaN], [843.3333129882812, 807.4725341796875, 807.87548828125, 768.3883056640625, NaN, NaN], [836.4835205078125, 835.6776733398438, 853.8095092773438, 813.113525390625, NaN, NaN], [771.6116943359375, 863.4798583984375, 893.6996459960938, 852.1978149414062, NaN, NaN], [756.3003540039062, 838.09521484375, 860.6593627929688, 785.3113403320312, NaN, NaN], [813.113525390625, 811.098876953125, 826.8131713867188, 737.3626098632812, NaN, NaN], [817.5457763671875, 819.1575317382812, 850.1831665039062, 768.3883056640625, NaN, NaN], [755.4945068359375, 844.5421142578125, 887.2527465820312, 814.7252807617188, NaN, NaN], [743.003662109375, 842.12451171875, 882.0146484375, 801.4285888671875, NaN, NaN], [806.2637329101562, 802.2344360351562, 836.886474609375, 745.018310546875, NaN, NaN], [846.1538696289062, 803.8461303710938, 833.6630249023438, 753.8828125, NaN, NaN], [801.8314819335938, 850.989013671875, 884.4322509765625, 820.7692260742188, NaN, NaN], [740.1831665039062, 858.2417602539062, 891.6849975585938, 820.7692260742188, NaN, NaN], [777.2527465820312, 820.3662719726562, 843.3333129882812, 756.3003540039062, NaN, NaN], [820.7692260742188, 802.2344360351562, 821.97802734375, 752.2710571289062, NaN, NaN], [794.981689453125, 832.05126953125, 859.4505615234375, 824.3956298828125, NaN, NaN], [748.6447143554688, 855.018310546875, 888.05859375, 858.2417602539062, NaN, NaN], [755.8974609375, 826.4102783203125, 848.5714111328125, 778.8644409179688, NaN, NaN], [827.2161254882812, 803.4432373046875, 819.1575317382812, 753.8828125, NaN, NaN], [841.7216186523438, 826.8131713867188, 850.989013671875, 812.7106323242188, NaN, NaN], [778.4615478515625, 862.2710571289062, 894.1025390625, 851.7948608398438, NaN, NaN], [771.6116943359375, 850.1831665039062, 869.9267578125, 801.4285888671875, NaN, NaN], [818.3516235351562, 811.098876953125, 819.5604248046875, 750.2564086914062, NaN, NaN], [831.6483764648438, 817.5457763671875, 832.05126953125, 799.8168334960938, NaN, NaN], [771.6116943359375, 857.4359130859375, 876.3735961914062, 842.5274658203125, NaN, NaN], [736.959716796875, 857.4359130859375, 874.7619018554688, 818.7545776367188, NaN, NaN], [798.6080322265625, 815.93408203125, 824.3956298828125, 764.3589477539062, NaN, NaN], [834.8717651367188, 808.2783813476562, 815.5311279296875, 763.5531005859375, NaN, NaN], [810.6959838867188, 854.2124633789062, 875.970703125, 833.6630249023438, NaN, NaN], [782.4908447265625, 873.1502075195312, 898.937744140625, 844.945068359375, NaN, NaN], [793.3699340820312, 825.2014770507812, 832.4542236328125, 765.970703125, NaN, NaN], [828.8278198242188, 803.040283203125, 802.2344360351562, 756.7033081054688, NaN, NaN], [823.5897216796875, 842.12451171875, 853.8095092773438, 829.6337280273438, NaN, NaN], [769.5970458984375, 868.3150024414062, 888.4615478515625, 849.3773193359375, NaN, NaN], [765.5677490234375, 841.3186645507812, 851.7948608398438, 781.6849975585938, NaN, NaN], [826.00732421875, 811.5018310546875, 817.1428833007812, 741.7948608398438, NaN, NaN], [875.1648559570312, 839.7069702148438, 853.8095092773438, 809.084228515625, NaN, NaN], [800.2197875976562, 873.1502075195312, 894.1025390625, 859.4505615234375, NaN, NaN], [734.945068359375, 856.6300659179688, 868.7179565429688, 813.91943359375, NaN, NaN], [802.2344360351562, 820.7692260742188, 821.1721801757812, 759.9267578125, NaN, NaN], [846.959716796875, 824.3956298828125, 828.8278198242188, 779.2673950195312, NaN, NaN], [800.2197875976562, 863.4798583984375, 878.3883056640625, 845.7509155273438, NaN, NaN], [740.5860595703125, 865.8974609375, 879.1941528320312, 828.8278198242188, NaN, NaN], [788.1318969726562, 825.6043701171875, 829.6337280273438, 756.3003540039062, NaN, NaN], [863.4798583984375, 818.7545776367188, 821.97802734375, 759.5238037109375, NaN, NaN], [825.2014770507812, 859.4505615234375, 870.7326049804688, 816.3369750976562, NaN, NaN], [750.2564086914062, 871.1355590820312, 888.05859375, 842.12451171875, NaN, NaN], [761.94140625, 834.06591796875, 835.2747192382812, 782.087890625, NaN, NaN], [844.1392211914062, 816.3369750976562, 811.5018310546875, 768.7911987304688, NaN, NaN], [855.4212646484375, 847.7655639648438, 844.945068359375, 819.1575317382812, NaN, NaN], [780.879150390625, 872.7472534179688, 873.1502075195312, 838.901123046875, NaN, NaN], [761.1355590820312, 848.974365234375, 852.1978149414062, 796.5933837890625, NaN, NaN], [827.2161254882812, 817.5457763671875, 814.7252807617188, 758.7179565429688, NaN, NaN], [849.7802124023438, 830.4395751953125, 835.6776733398438, 793.3699340820312, NaN, NaN], [774.029296875, 865.091552734375, 884.4322509765625, 850.1831665039062, NaN, NaN], [751.062255859375, 854.6153564453125, 871.1355590820312, 827.6190185546875, NaN, NaN], [817.5457763671875, 814.3223266601562, 818.3516235351562, 787.3259887695312, NaN, NaN], [853.003662109375, 817.1428833007812, 821.5750732421875, 790.1465454101562, NaN, NaN], [809.89013671875, 857.4359130859375, 871.5384521484375, 823.5897216796875, NaN, NaN], [753.076904296875, 863.4798583984375, 878.3883056640625, 824.7985229492188, NaN, NaN], [794.5787353515625, 824.7985229492188, 828.4249267578125, 772.0146484375, NaN, NaN], [865.091552734375, 801.025634765625, 803.040283203125, 762.3442993164062, NaN, NaN], [825.6043701171875, 836.08056640625, 850.1831665039062, 821.97802734375, NaN, NaN], [755.4945068359375, 864.6886596679688, 880.0, 847.3626098632812, NaN, NaN], [772.0146484375, 829.6337280273438, 838.4981689453125, 785.7142944335938, NaN, NaN], [860.6593627929688, 802.6373901367188, 803.040283203125, 759.9267578125, NaN, NaN], [871.1355590820312, 836.08056640625, 844.945068359375, 824.7985229492188, NaN, NaN], [773.2234497070312, 871.1355590820312, 889.6703491210938, 865.091552734375, NaN, NaN], [757.912109375, 842.5274658203125, 856.2271118164062, 795.3846435546875, NaN, NaN], [832.4542236328125, 805.054931640625, 815.93408203125, 747.4359130859375, NaN, NaN], [857.4359130859375, 823.99267578125, 835.6776733398438, 792.5640869140625, NaN, NaN], [793.7728881835938, 862.6740112304688, 881.2088012695312, 855.4212646484375, NaN, NaN], [758.7179565429688, 855.8241577148438, 871.94140625, 846.5567626953125, NaN, NaN], [799.010986328125, 807.069580078125, 811.5018310546875, 772.4176025390625, NaN, NaN], [868.3150024414062, 809.084228515625, 814.3223266601562, 788.1318969726562, NaN, NaN], [855.8241577148438, 857.8388061523438, 864.6886596679688, 846.959716796875, NaN, NaN], [761.1355590820312, 861.4652099609375, 866.7033081054688, 826.4102783203125, NaN, NaN], [767.5823974609375, 821.5750732421875, 822.3809814453125, 763.5531005859375, NaN, NaN], [843.3333129882812, 808.2783813476562, 805.054931640625, 749.047607421875, NaN, NaN], [828.4249267578125, 844.1392211914062, 849.3773193359375, 812.7106323242188, NaN, NaN], [774.029296875, 865.4945068359375, 876.7765502929688, 857.032958984375, NaN, NaN], [785.3113403320312, 832.05126953125, 833.2600708007812, 789.7435913085938, NaN, NaN], [855.4212646484375, 811.5018310546875, 803.8461303710938, 765.5677490234375, NaN, NaN], [855.018310546875, 832.8571166992188, 831.6483764648438, 807.069580078125, NaN, NaN], [771.2088012695312, 860.6593627929688, 869.9267578125, 838.901123046875, NaN, NaN], [766.3735961914062, 844.1392211914062, 849.7802124023438, 798.6080322265625, NaN, NaN], [831.6483764648438, 806.6666870117188, 803.4432373046875, 738.974365234375, NaN, NaN], [857.032958984375, 817.94873046875, 821.1721801757812, 791.7582397460938, NaN, NaN], [788.937744140625, 854.2124633789062, 867.106201171875, 849.3773193359375, NaN, NaN], [742.6007080078125, 852.1978149414062, 859.4505615234375, 811.5018310546875, NaN, NaN], [813.113525390625, 816.3369750976562, 816.7399291992188, 754.2857055664062, NaN, NaN], [853.4066162109375, 808.6813354492188, 804.6520385742188, 756.3003540039062, NaN, NaN], [797.3992919921875, 850.1831665039062, 849.7802124023438, 826.8131713867188, NaN, NaN], [749.4505615234375, 869.120849609375, 871.1355590820312, 840.10986328125, NaN, NaN], [774.029296875, 828.02197265625, 815.1282348632812, 766.3735961914062, NaN, NaN], [850.5860595703125, 815.1282348632812, 796.5933837890625, 757.5091552734375, NaN, NaN], [831.2454223632812, 855.8241577148438, 840.915771484375, 822.3809814453125, NaN, NaN], [777.2527465820312, 882.4176025390625, 872.7472534179688, 854.6153564453125, NaN, NaN], [808.6813354492188, 853.8095092773438, 838.4981689453125, 792.1611938476562, NaN, NaN], [841.3186645507812, 819.96337890625, 792.967041015625, 729.7069702148438, NaN, NaN], [839.3040161132812, 844.1392211914062, 821.5750732421875, 781.6849975585938, NaN, NaN], [778.8644409179688, 878.3883056640625, 867.912109375, 854.2124633789062, NaN, NaN], [755.8974609375, 866.3003540039062, 855.8241577148438, 807.87548828125, NaN, NaN], [827.6190185546875, 831.6483764648438, 808.2783813476562, 753.8828125, NaN, NaN], [867.106201171875, 838.901123046875, 815.1282348632812, 791.3552856445312, NaN, NaN], [808.2783813476562, 882.4176025390625, 872.7472534179688, 836.886474609375, NaN, NaN], [749.4505615234375, 880.4029541015625, 868.3150024414062, 812.7106323242188, NaN, NaN], [804.2490844726562, 836.08056640625, 811.098876953125, 749.8534545898438, NaN, NaN], [864.2857055664062, 831.2454223632812, 813.5164794921875, 760.7326049804688, NaN, NaN], [808.2783813476562, 869.5238037109375, 860.2564086914062, 828.8278198242188, NaN, NaN], [759.120849609375, 884.029296875, 875.970703125, 840.915771484375, NaN, NaN], [799.010986328125, 848.5714111328125, 832.8571166992188, 780.879150390625, NaN, NaN], [856.6300659179688, 824.3956298828125, 808.6813354492188, 755.4945068359375, NaN, NaN], [860.2564086914062, 861.062255859375, 861.4652099609375, 819.1575317382812, NaN, NaN], [790.1465454101562, 884.4322509765625, 890.0732421875, 854.2124633789062, NaN, NaN], [765.5677490234375, 853.003662109375, 844.945068359375, 794.981689453125, NaN, NaN], [829.2307739257812, 824.7985229492188, 802.2344360351562, 754.2857055664062, NaN, NaN], [855.8241577148438, 841.3186645507812, 817.5457763671875, 790.952392578125, NaN, NaN], [794.5787353515625, 875.1648559570312, 867.912109375, 844.945068359375, NaN, NaN], [757.912109375, 863.4798583984375, 863.076904296875, 805.054931640625, NaN, NaN], [823.1868286132812, 830.4395751953125, 818.7545776367188, 753.8828125, NaN, NaN], [859.047607421875, 834.4688720703125, 821.97802734375, 775.6410522460938, NaN, NaN], [788.937744140625, 865.8974609375, 866.7033081054688, 834.4688720703125, NaN, NaN], [751.062255859375, 873.1502075195312, 873.9560546875, 844.5421142578125, NaN, NaN], [808.2783813476562, 838.901123046875, 824.3956298828125, 763.1502075195312, NaN, NaN], [865.091552734375, 826.8131713867188, 812.3076782226562, 757.5091552734375, NaN, NaN], [828.8278198242188, 859.8534545898438, 864.6886596679688, 844.5421142578125, NaN, NaN], [779.6703491210938, 878.3883056640625, 885.2380981445312, 868.3150024414062, NaN, NaN], [794.1758422851562, 849.7802124023438, 839.7069702148438, 803.040283203125, NaN, NaN], [827.6190185546875, 822.3809814453125, 803.4432373046875, 745.018310546875, NaN, NaN], [821.1721801757812, 849.7802124023438, 838.09521484375, 780.879150390625, NaN, NaN], [768.3883056640625, 880.4029541015625, 879.5970458984375, 848.1685180664062, NaN, NaN], [785.7142944335938, 865.091552734375, 855.018310546875, 809.89013671875, NaN, NaN], [838.4981689453125, 832.05126953125, 811.90478515625, 753.076904296875, NaN, NaN], [847.7655639648438, 838.09521484375, 828.02197265625, 791.7582397460938, NaN, NaN], [801.8314819335938, 875.1648559570312, 877.1795043945312, 857.4359130859375, NaN, NaN], [779.2673950195312, 875.5677490234375, 878.3883056640625, 840.5128173828125, NaN, NaN], [823.1868286132812, 827.6190185546875, 820.3662719726562, 754.2857055664062, NaN, NaN], [851.7948608398438, 820.7692260742188, 809.89013671875, 763.5531005859375, NaN, NaN], [796.1904907226562, 866.3003540039062, 869.5238037109375, 846.1538696289062, NaN, NaN], [754.6886596679688, 875.1648559570312, 879.1941528320312, 834.4688720703125, NaN, NaN], [790.952392578125, 832.4542236328125, 823.5897216796875, 760.7326049804688, NaN, NaN], [853.4066162109375, 815.93408203125, 804.2490844726562, 754.2857055664062, NaN, NaN], [842.5274658203125, 852.6007080078125, 859.8534545898438, 838.4981689453125, NaN, NaN], [779.6703491210938, 873.5531005859375, 892.893798828125, 876.3735961914062, NaN, NaN], [779.6703491210938, 838.09521484375, 838.09521484375, 787.7289428710938, NaN, NaN], [828.02197265625, 812.7106323242188, 807.87548828125, 735.7509155273438, NaN, NaN], [857.032958984375, 840.5128173828125, 843.3333129882812, 790.952392578125, NaN, NaN], [798.6080322265625, 874.3589477539062, 880.4029541015625, 855.8241577148438, NaN, NaN], [759.5238037109375, 856.2271118164062, 859.4505615234375, 810.6959838867188, NaN, NaN], [826.4102783203125, 814.7252807617188, 809.89013671875, 755.8974609375, NaN, NaN], [860.2564086914062, 823.5897216796875, 826.4102783203125, 794.5787353515625, NaN, NaN], [791.7582397460938, 864.2857055664062, 877.1795043945312, 849.7802124023438, NaN, NaN], [750.2564086914062, 865.4945068359375, 871.94140625, 819.5604248046875, NaN, NaN], [807.87548828125, 823.5897216796875, 819.5604248046875, 740.1831665039062, NaN, NaN], [863.076904296875, 818.3516235351562, 815.5311279296875, 755.8974609375, NaN, NaN], [807.87548828125, 861.062255859375, 870.3296508789062, 829.2307739257812, NaN, NaN], [732.930419921875, 871.1355590820312, 877.9853515625, 823.99267578125, NaN, NaN], [762.7472534179688, 829.2307739257812, 821.5750732421875, 755.091552734375, NaN, NaN], [838.901123046875, 813.113525390625, 807.87548828125, 755.4945068359375, NaN, NaN], [832.4542236328125, 842.930419921875, 849.7802124023438, 816.7399291992188, NaN, NaN], [768.7911987304688, 863.4798583984375, 871.5384521484375, 840.915771484375, NaN, NaN], [771.2088012695312, 840.5128173828125, 830.03662109375, 778.05859375, NaN, NaN], [830.8424682617188, 809.4871826171875, 792.1611938476562, 746.2271118164062, NaN, NaN], [847.3626098632812, 827.6190185546875, 828.02197265625, 813.5164794921875, NaN, NaN], [776.4468994140625, 863.4798583984375, 877.1795043945312, 854.2124633789062, NaN, NaN], [760.7326049804688, 857.032958984375, 864.2857055664062, 807.87548828125, NaN, NaN], [821.1721801757812, 818.7545776367188, 813.113525390625, 745.4212646484375, NaN, NaN], [863.8828125, 821.97802734375, 822.7838745117188, 755.8974609375, NaN, NaN], [809.084228515625, 860.6593627929688, 873.1502075195312, 830.8424682617188, NaN, NaN], [753.4798583984375, 861.8681030273438, 870.7326049804688, 829.6337280273438, NaN, NaN], [798.2051391601562, 822.7838745117188, 814.3223266601562, 760.7326049804688, NaN, NaN], [834.8717651367188, 812.7106323242188, 803.040283203125, 765.5677490234375, NaN, NaN], [789.7435913085938, 849.7802124023438, 854.6153564453125, 827.6190185546875, NaN, NaN], [753.8828125, 869.9267578125, 871.1355590820312, 837.6923217773438, NaN, NaN], [798.2051391601562, 834.8717651367188, 817.94873046875, 759.5238037109375, NaN, NaN], [838.09521484375, 803.040283203125, 787.7289428710938, 721.6483764648438, NaN, NaN], [820.7692260742188, 834.8717651367188, 837.6923217773438, 793.7728881835938, NaN, NaN], [751.4652099609375, 863.076904296875, 872.7472534179688, 840.5128173828125, NaN, NaN], [748.2417602539062, 839.7069702148438, 842.5274658203125, 783.2966918945312, NaN, NaN], [846.959716796875, 806.2637329101562, 807.069580078125, 742.6007080078125, NaN, NaN], [869.5238037109375, 819.1575317382812, 826.00732421875, 780.879150390625, NaN, NaN], [780.0732421875, 861.062255859375, 873.1502075195312, 838.4981689453125, NaN, NaN], [739.3773193359375, 851.7948608398438, 857.4359130859375, 824.3956298828125, NaN, NaN], [817.1428833007812, 812.3076782226562, 804.2490844726562, 764.7619018554688, NaN, NaN], [877.9853515625, 823.1868286132812, 818.3516235351562, 774.4322509765625, NaN, NaN], [814.3223266601562, 862.6740112304688, 869.120849609375, 837.6923217773438, NaN, NaN], [755.091552734375, 860.6593627929688, 867.5091552734375, 817.5457763671875, NaN, NaN], [793.3699340820312, 816.7399291992188, 813.113525390625, 754.2857055664062, NaN, NaN], [848.5714111328125, 811.5018310546875, 802.2344360351562, 768.3883056640625, NaN, NaN], [831.6483764648438, 853.003662109375, 855.4212646484375, 837.6923217773438, NaN, NaN], [781.6849975585938, 863.4798583984375, 874.3589477539062, 844.5421142578125, NaN, NaN], [785.3113403320312, 828.8278198242188, 832.4542236328125, 781.6849975585938, NaN, NaN], [838.901123046875, 805.054931640625, 802.6373901367188, 757.912109375, NaN, NaN], [847.3626098632812, 836.08056640625, 838.901123046875, 807.4725341796875, NaN, NaN], [767.9853515625, 865.8974609375, 879.1941528320312, 846.1538696289062, NaN, NaN], [744.2124633789062, 841.7216186523438, 850.989013671875, 794.981689453125, NaN, NaN], [848.974365234375, 817.94873046875, 815.1282348632812, 762.7472534179688, NaN, NaN], [893.6996459960938, 836.886474609375, 829.2307739257812, 803.8461303710938, NaN, NaN], [798.6080322265625, 862.6740112304688, 863.8828125, 835.2747192382812, NaN, NaN], [757.106201171875, 856.2271118164062, 861.8681030273438, 806.6666870117188, NaN, NaN], [821.97802734375, 818.7545776367188, 811.90478515625, 750.2564086914062, NaN, NaN], [859.4505615234375, 814.7252807617188, 808.6813354492188, 766.7765502929688, NaN, NaN], [811.5018310546875, 859.4505615234375, 863.4798583984375, 829.2307739257812, NaN, NaN], [773.2234497070312, 873.9560546875, 871.1355590820312, 830.4395751953125, NaN, NaN], [803.040283203125, 836.4835205078125, 828.02197265625, 786.1171875, NaN, NaN], [850.5860595703125, 815.5311279296875, 813.5164794921875, 779.6703491210938, NaN, NaN], [835.2747192382812, 844.5421142578125, 854.6153564453125, 830.03662109375, NaN, NaN], [764.3589477539062, 867.106201171875, 884.8351440429688, 834.8717651367188, NaN, NaN], [759.120849609375, 835.6776733398438, 835.2747192382812, 767.1795043945312, NaN, NaN], [845.7509155273438, 813.113525390625, 800.6226806640625, 746.6300659179688, NaN, NaN], [856.6300659179688, 838.4981689453125, 838.09521484375, 788.937744140625, NaN, NaN], [780.0732421875, 869.5238037109375, 876.7765502929688, 836.886474609375, NaN, NaN], [760.3296508789062, 853.4066162109375, 851.7948608398438, 802.6373901367188, NaN, NaN], [829.6337280273438, 815.1282348632812, 806.6666870117188, 747.8388061523438, NaN, NaN], [873.9560546875, 826.8131713867188, 826.8131713867188, 790.5494384765625, NaN, NaN], [812.7106323242188, 866.7033081054688, 877.9853515625, 851.3919677734375, NaN, NaN], [765.1648559570312, 859.047607421875, 868.7179565429688, 824.7985229492188, NaN, NaN], [812.7106323242188, 819.1575317382812, 816.7399291992188, 761.94140625, NaN, NaN], [851.7948608398438, 817.94873046875, 811.098876953125, 778.4615478515625, NaN, NaN], [834.8717651367188, 864.6886596679688, 866.7033081054688, 849.3773193359375, NaN, NaN], [788.937744140625, 877.1795043945312, 881.2088012695312, 832.8571166992188, NaN, NaN], [780.4761962890625, 828.02197265625, 819.1575317382812, 752.2710571289062, NaN, NaN], [841.3186645507812, 813.5164794921875, 803.8461303710938, 759.120849609375, NaN, NaN], [846.1538696289062, 853.8095092773438, 856.6300659179688, 819.96337890625, NaN, NaN], [790.5494384765625, 874.3589477539062, 882.4176025390625, 846.1538696289062, NaN, NaN], [765.1648559570312, 839.3040161132812, 836.886474609375, 812.7106323242188, NaN, NaN], [849.7802124023438, 815.93408203125, 804.2490844726562, 792.967041015625, NaN, NaN], [880.0, 842.930419921875, 845.3479614257812, 818.3516235351562, NaN, NaN], [781.2820434570312, 870.7326049804688, 884.029296875, 828.8278198242188, NaN, NaN], [756.7033081054688, 851.3919677734375, 855.4212646484375, 789.3406372070312, NaN, NaN], [821.97802734375, 815.5311279296875, 805.054931640625, 746.2271118164062, NaN, NaN], [857.4359130859375, 820.7692260742188, 816.7399291992188, 777.6557006835938, NaN, NaN], [811.098876953125, 859.8534545898438, 871.5384521484375, 838.901123046875, NaN, NaN], [751.4652099609375, 858.6447143554688, 867.912109375, 807.87548828125, NaN, NaN], [790.1465454101562, 819.5604248046875, 815.93408203125, 766.3735961914062, NaN, NaN], [854.2124633789062, 816.3369750976562, 808.6813354492188, 788.1318969726562, NaN, NaN], [814.7252807617188, 853.003662109375, 854.6153564453125, 819.1575317382812, NaN, NaN], [767.1795043945312, 866.7033081054688, 869.120849609375, 827.2161254882812, NaN, NaN], [794.5787353515625, 830.8424682617188, 818.7545776367188, 779.2673950195312, NaN, NaN], [834.06591796875, 817.1428833007812, 803.040283203125, 764.3589477539062, NaN, NaN], [831.2454223632812, 849.3773193359375, 846.959716796875, 795.3846435546875, NaN, NaN], [782.4908447265625, 868.7179565429688, 875.970703125, 827.6190185546875, NaN, NaN], [778.8644409179688, 848.1685180664062, 846.959716796875, 802.6373901367188, NaN, NaN], [831.6483764648438, 821.1721801757812, 804.2490844726562, 760.7326049804688, NaN, NaN], [834.06591796875, 826.4102783203125, 818.3516235351562, 782.4908447265625, NaN, NaN], [774.8351440429688, 858.6447143554688, 867.106201171875, 824.3956298828125, NaN, NaN], [765.5677490234375, 853.003662109375, 857.032958984375, 805.054931640625, NaN, NaN], [824.3956298828125, 816.3369750976562, 808.2783813476562, 757.106201171875, NaN, NaN], [854.6153564453125, 819.1575317382812, 814.3223266601562, 781.6849975585938, NaN, NaN], [813.113525390625, 860.6593627929688, 867.912109375, 838.901123046875, NaN, NaN], [760.3296508789062, 863.076904296875, 868.7179565429688, 816.3369750976562, NaN, NaN], [790.952392578125, 817.94873046875, 815.5311279296875, 757.106201171875, NaN, NaN], [859.4505615234375, 806.6666870117188, 803.040283203125, 755.4945068359375, NaN, NaN], [821.5750732421875, 846.959716796875, 853.4066162109375, 807.4725341796875, NaN, NaN], [751.062255859375, 863.8828125, 876.3735961914062, 824.7985229492188, NaN, NaN], [771.2088012695312, 827.2161254882812, 829.2307739257812, 780.4761962890625, NaN, NaN], [836.886474609375, 806.6666870117188, 792.5640869140625, 756.3003540039062, NaN, NaN], [832.05126953125, 839.3040161132812, 832.05126953125, 793.7728881835938, NaN, NaN], [772.4176025390625, 874.7619018554688, 884.4322509765625, 836.08056640625, NaN, NaN], [768.7911987304688, 846.5567626953125, 845.3479614257812, 782.4908447265625, NaN, NaN], [812.3076782226562, 807.4725341796875, 794.5787353515625, 735.7509155273438, NaN, NaN], [836.886474609375, 827.2161254882812, 822.7838745117188, 773.2234497070312, NaN, NaN], [800.2197875976562, 866.7033081054688, 871.1355590820312, 828.8278198242188, NaN, NaN], [778.8644409179688, 861.8681030273438, 859.4505615234375, 808.6813354492188, NaN, NaN], [805.4578857421875, 819.96337890625, 803.8461303710938, 749.8534545898438, NaN, NaN], [848.1685180664062, 822.7838745117188, 812.7106323242188, 780.879150390625, NaN, NaN], [817.94873046875, 865.8974609375, 868.3150024414062, 828.8278198242188, NaN, NaN], [751.062255859375, 867.5091552734375, 863.076904296875, 807.069580078125, NaN, NaN], [791.3552856445312, 824.7985229492188, 808.2783813476562, 760.7326049804688, NaN, NaN], [836.4835205078125, 809.4871826171875, 795.7875366210938, 767.9853515625, NaN, NaN], [817.1428833007812, 850.989013671875, 853.003662109375, 826.4102783203125, NaN, NaN], [780.4761962890625, 875.5677490234375, 882.0146484375, 835.2747192382812, NaN, NaN], [779.2673950195312, 840.5128173828125, 836.08056640625, 776.8497924804688, NaN, NaN], [834.8717651367188, 812.7106323242188, 803.4432373046875, 757.106201171875, NaN, NaN], [837.6923217773438, 838.4981689453125, 835.6776733398438, 801.8314819335938, NaN, NaN], [774.4322509765625, 869.9267578125, 878.3883056640625, 839.3040161132812, NaN, NaN], [770.0, 846.1538696289062, 858.2417602539062, 819.5604248046875, NaN, NaN], [825.6043701171875, 805.8607788085938, 808.2783813476562, 778.8644409179688, NaN, NaN], [866.7033081054688, 823.5897216796875, 828.8278198242188, 795.3846435546875, NaN, NaN], [807.4725341796875, 866.3003540039062, 883.6264038085938, 839.7069702148438, NaN, NaN], [754.6886596679688, 859.8534545898438, 873.5531005859375, 822.7838745117188, NaN, NaN], [813.5164794921875, 820.3662719726562, 826.8131713867188, 772.0146484375, NaN, NaN], [854.2124633789062, 812.7106323242188, 815.93408203125, 776.4468994140625, NaN, NaN], [799.8168334960938, 854.2124633789062, 859.4505615234375, 830.8424682617188, NaN, NaN], [740.5860595703125, 866.3003540039062, 875.5677490234375, 828.4249267578125, NaN, NaN], [790.1465454101562, 823.99267578125, 823.1868286132812, 770.8058471679688, NaN, NaN], [875.1648559570312, 812.3076782226562, 807.4725341796875, 775.6410522460938, NaN, NaN], [844.5421142578125, 848.5714111328125, 857.4359130859375, 823.99267578125, NaN, NaN], [776.4468994140625, 871.5384521484375, 888.05859375, 831.6483764648438, NaN, NaN], [777.6557006835938, 845.7509155273438, 847.3626098632812, 783.6996459960938, NaN, NaN], [825.6043701171875, 808.2783813476562, 793.7728881835938, 752.2710571289062, NaN, NaN], [840.915771484375, 830.8424682617188, 825.6043701171875, 781.2820434570312, NaN, NaN], [795.3846435546875, 872.3442993164062, 883.6264038085938, 830.8424682617188, NaN, NaN], [772.0146484375, 853.8095092773438, 864.6886596679688, 813.113525390625, NaN, NaN], [800.2197875976562, 809.084228515625, 811.90478515625, 775.6410522460938, NaN, NaN], [828.8278198242188, 818.3516235351562, 824.7985229492188, 798.6080322265625, NaN, NaN], [790.1465454101562, 866.3003540039062, 883.6264038085938, 838.09521484375, NaN, NaN], [751.8681030273438, 863.076904296875, 873.5531005859375, 819.5604248046875, NaN, NaN], [802.6373901367188, 818.3516235351562, 816.3369750976562, 771.6116943359375, NaN, NaN], [857.8388061523438, 811.098876953125, 814.3223266601562, 796.5933837890625, NaN, NaN], [827.2161254882812, 849.7802124023438, 864.2857055664062, 838.4981689453125, NaN, NaN], [765.1648559570312, 862.6740112304688, 882.4176025390625, 832.05126953125, NaN, NaN], [778.4615478515625, 822.3809814453125, 828.02197265625, 780.879150390625, NaN, NaN], [851.7948608398438, 804.2490844726562, 796.996337890625, 763.9560546875, NaN, NaN], [861.4652099609375, 849.3773193359375, 855.4212646484375, 831.2454223632812, NaN, NaN], [788.5347900390625, 875.970703125, 888.05859375, 835.6776733398438, NaN, NaN], [774.8351440429688, 835.2747192382812, 840.10986328125, 776.0439453125, NaN, NaN], [827.2161254882812, 804.2490844726562, 795.7875366210938, 778.8644409179688, NaN, NaN], [842.12451171875, 830.03662109375, 824.7985229492188, 806.6666870117188, NaN, NaN], [780.4761962890625, 869.9267578125, 882.4176025390625, 840.915771484375, NaN, NaN], [758.3150024414062, 853.4066162109375, 863.076904296875, 828.02197265625, NaN, NaN], [829.6337280273438, 812.3076782226562, 812.3076782226562, 776.8497924804688, NaN, NaN], [856.2271118164062, 818.7545776367188, 821.1721801757812, 780.0732421875, NaN, NaN], [793.3699340820312, 858.2417602539062, 873.5531005859375, 821.5750732421875, NaN, NaN], [748.6447143554688, 861.8681030273438, 877.5823974609375, 803.8461303710938, NaN, NaN], [792.967041015625, 818.7545776367188, 818.7545776367188, 756.7033081054688, NaN, NaN], [843.7362670898438, 808.2783813476562, 805.8607788085938, 777.6557006835938, NaN, NaN], [808.6813354492188, 852.6007080078125, 864.6886596679688, 830.03662109375, NaN, NaN], [754.6886596679688, 870.7326049804688, 888.05859375, 834.8717651367188, NaN, NaN], [780.879150390625, 831.2454223632812, 835.6776733398438, 801.8314819335938, NaN, NaN], [848.5714111328125, 808.6813354492188, 798.6080322265625, 787.3259887695312, NaN, NaN], [850.1831665039062, 841.3186645507812, 840.5128173828125, 822.7838745117188, NaN, NaN], [793.3699340820312, 876.7765502929688, 890.4761962890625, 867.106201171875, NaN, NaN], [786.923095703125, 850.989013671875, 854.2124633789062, 823.1868286132812, NaN, NaN], [837.2893676757812, 811.5018310546875, 799.010986328125, 770.4029541015625, NaN, NaN], [844.1392211914062, 830.03662109375, 819.1575317382812, 785.7142944335938, NaN, NaN], [795.7875366210938, 875.1648559570312, 880.8058471679688, 823.1868286132812, NaN, NaN], [778.05859375, 868.7179565429688, 876.7765502929688, 801.8314819335938, NaN, NaN], [821.5750732421875, 815.93408203125, 809.084228515625, 750.6593627929688, NaN, NaN], [854.2124633789062, 813.113525390625, 809.084228515625, 775.2380981445312, NaN, NaN], [812.3076782226562, 865.4945068359375, 880.8058471679688, 839.3040161132812, NaN, NaN], [777.6557006835938, 873.9560546875, 886.8497924804688, 826.4102783203125, NaN, NaN], [818.3516235351562, 827.2161254882812, 824.3956298828125, 787.7289428710938, NaN, NaN], [867.912109375, 807.4725341796875, 807.069580078125, 793.3699340820312, NaN, NaN], [848.1685180664062, 853.8095092773438, 871.94140625, 839.7069702148438, NaN, NaN], [780.0732421875, 881.2088012695312, 908.6080322265625, 859.4505615234375, NaN, NaN], [777.6557006835938, 834.4688720703125, 839.7069702148438, 788.937744140625, NaN, NaN], [832.4542236328125, 801.8314819335938, 799.8168334960938, 774.029296875, NaN, NaN], [845.7509155273438, 835.2747192382812, 853.003662109375, 821.1721801757812, NaN, NaN], [788.5347900390625, 873.9560546875, 895.7142944335938, 848.5714111328125, NaN, NaN], [755.4945068359375, 850.5860595703125, 857.032958984375, 807.069580078125, NaN, NaN], [814.7252807617188, 809.89013671875, 808.2783813476562, 769.5970458984375, NaN, NaN], [852.6007080078125, 828.02197265625, 833.6630249023438, 803.4432373046875, NaN, NaN], [821.5750732421875, 871.94140625, 886.4468994140625, 834.4688720703125, NaN, NaN], [776.4468994140625, 865.8974609375, 877.9853515625, 813.5164794921875, NaN, NaN], [792.1611938476562, 818.7545776367188, 817.94873046875, 780.4761962890625, NaN, NaN], [841.7216186523438, 815.1282348632812, 818.7545776367188, 797.8021850585938, NaN, NaN], [829.2307739257812, 865.8974609375, 887.2527465820312, 845.3479614257812, NaN, NaN], [770.8058471679688, 868.3150024414062, 890.879150390625, 828.8278198242188, NaN, NaN], [790.1465454101562, 820.7692260742188, 820.7692260742188, 761.1355590820312, NaN, NaN], [870.7326049804688, 818.3516235351562, 809.89013671875, 765.1648559570312, NaN, NaN], [840.5128173828125, 859.8534545898438, 860.6593627929688, 827.6190185546875, NaN, NaN], [765.970703125, 877.9853515625, 878.3883056640625, 839.7069702148438, NaN, NaN], [790.1465454101562, 841.7216186523438, 836.08056640625, 787.3259887695312, NaN, NaN], [863.4798583984375, 808.6813354492188, 805.8607788085938, 762.3442993164062, NaN, NaN], [862.6740112304688, 836.886474609375, 846.5567626953125, 801.8314819335938, NaN, NaN], [782.893798828125, 876.3735961914062, 894.1025390625, 839.3040161132812, NaN, NaN], [758.7179565429688, 861.062255859375, 869.9267578125, 819.1575317382812, NaN, NaN], [811.90478515625, 818.3516235351562, 811.90478515625, 781.6849975585938, NaN, NaN], [853.003662109375, 826.00732421875, 823.1868286132812, 799.010986328125, NaN, NaN], [826.8131713867188, 870.7326049804688, 882.8204956054688, 844.1392211914062, NaN, NaN], [775.6410522460938, 868.3150024414062, 877.1795043945312, 820.7692260742188, NaN, NaN], [800.2197875976562, 819.96337890625, 816.3369750976562, 770.4029541015625, NaN, NaN], [857.4359130859375, 817.94873046875, 813.91943359375, 784.1025390625, NaN, NaN], [839.7069702148438, 865.4945068359375, 871.5384521484375, 833.2600708007812, NaN, NaN], [787.3259887695312, 882.4176025390625, 890.879150390625, 839.7069702148438, NaN, NaN], [778.05859375, 837.6923217773438, 833.6630249023438, 775.6410522460938, NaN, NaN], [836.886474609375, 806.6666870117188, 800.2197875976562, 757.5091552734375, NaN, NaN], [854.6153564453125, 846.5567626953125, 853.003662109375, 824.7985229492188, NaN, NaN], [779.2673950195312, 878.7911987304688, 885.2380981445312, 852.6007080078125, NaN, NaN], [773.2234497070312, 846.1538696289062, 844.1392211914062, 806.6666870117188, NaN, NaN], [839.3040161132812, 809.89013671875, 808.2783813476562, 778.4615478515625, NaN, NaN], [840.5128173828125, 832.8571166992188, 837.6923217773438, 804.2490844726562, NaN, NaN], [792.5640869140625, 877.1795043945312, 890.879150390625, 835.6776733398438, NaN, NaN], [783.6996459960938, 859.4505615234375, 862.6740112304688, 794.1758422851562, NaN, NaN], [818.7545776367188, 811.5018310546875, 796.996337890625, 748.6447143554688, NaN, NaN], [850.1831665039062, 819.5604248046875, 816.3369750976562, 777.2527465820312, NaN, NaN], [801.4285888671875, 864.6886596679688, 876.7765502929688, 827.2161254882812, NaN, NaN], [750.2564086914062, 861.8681030273438, 875.5677490234375, 825.6043701171875, NaN, NaN], [792.1611938476562, 811.098876953125, 814.3223266601562, 781.6849975585938, NaN, NaN], [860.6593627929688, 807.87548828125, 808.2783813476562, 787.3259887695312, NaN, NaN], [830.4395751953125, 856.2271118164062, 870.7326049804688, 828.4249267578125, NaN, NaN], [738.1685180664062, 871.1355590820312, 885.2380981445312, 816.3369750976562, NaN, NaN], [755.091552734375, 832.05126953125, 832.05126953125, 768.3883056640625, NaN, NaN], [851.7948608398438, 806.6666870117188, 797.8021850585938, 753.8828125, NaN, NaN], [868.7179565429688, 840.10986328125, 839.3040161132812, 802.2344360351562, NaN, NaN], [790.1465454101562, 869.9267578125, 885.2380981445312, 840.5128173828125, NaN, NaN], [774.029296875, 840.10986328125, 850.989013671875, 784.1025390625, NaN, NaN], [817.94873046875, 812.3076782226562, 815.93408203125, 762.3442993164062, NaN, NaN], [840.10986328125, 833.6630249023438, 845.7509155273438, 812.7106323242188, NaN, NaN], [769.5970458984375, 863.4798583984375, 882.4176025390625, 843.3333129882812, NaN, NaN], [769.5970458984375, 855.018310546875, 869.5238037109375, 803.040283203125, NaN, NaN], [824.7985229492188, 813.113525390625, 817.94873046875, 760.3296508789062, NaN, NaN], [843.7362670898438, 813.5164794921875, 823.5897216796875, 782.893798828125, NaN, NaN], [817.1428833007812, 862.2710571289062, 886.8497924804688, 831.6483764648438, NaN, NaN], [757.106201171875, 871.94140625, 895.3113403320312, 838.901123046875, NaN, NaN], [791.3552856445312, 831.2454223632812, 838.4981689453125, 789.7435913085938, NaN, NaN], [840.915771484375, 813.91943359375, 821.97802734375, 782.4908447265625, NaN, NaN], [823.5897216796875, 855.018310546875, 874.7619018554688, 839.7069702148438, NaN, NaN], [770.8058471679688, 882.8204956054688, 904.1758422851562, 844.5421142578125, NaN, NaN], [785.3113403320312, 844.1392211914062, 856.6300659179688, 781.2820434570312, NaN, NaN], [847.3626098632812, 813.5164794921875, 819.96337890625, 767.9853515625, NaN, NaN], [852.6007080078125, 840.5128173828125, 854.6153564453125, 803.8461303710938, NaN, NaN], [798.6080322265625, 877.9853515625, 900.952392578125, 829.2307739257812, NaN, NaN], [772.4176025390625, 852.6007080078125, 866.7033081054688, 797.3992919921875, NaN, NaN], [812.7106323242188, 806.6666870117188, 812.7106323242188, 765.5677490234375, NaN, NaN], [857.032958984375, 826.4102783203125, 837.6923217773438, 807.069580078125, NaN, NaN], [818.7545776367188, 875.970703125, 892.087890625, 859.8534545898438, NaN, NaN], [774.4322509765625, 867.912109375, 879.5970458984375, 836.4835205078125, NaN, NaN], [815.1282348632812, 820.7692260742188, 823.5897216796875, 774.8351440429688, NaN, NaN], [842.5274658203125, 814.7252807617188, 821.97802734375, 771.2088012695312, NaN, NaN], [820.3662719726562, 864.2857055664062, 889.2673950195312, 840.915771484375, NaN, NaN], [781.6849975585938, 874.3589477539062, 900.1465454101562, 845.3479614257812, NaN, NaN], [787.7289428710938, 821.5750732421875, 829.6337280273438, 784.908447265625, NaN, NaN], [836.08056640625, 805.8607788085938, 813.113525390625, 783.2966918945312, NaN, NaN], [829.6337280273438, 847.3626098632812, 865.091552734375, 821.5750732421875, NaN, NaN], [771.2088012695312, 871.94140625, 893.2966918945312, 837.6923217773438, NaN, NaN], [778.4615478515625, 839.3040161132812, 846.959716796875, 787.7289428710938, NaN, NaN], [836.4835205078125, 810.2930297851562, 804.2490844726562, 766.3735961914062, NaN, NaN], [848.1685180664062, 841.3186645507812, 842.5274658203125, 814.7252807617188, NaN, NaN], [780.4761962890625, 873.1502075195312, 884.8351440429688, 830.4395751953125, NaN, NaN], [732.12451171875, 844.1392211914062, 846.1538696289062, 776.8497924804688, NaN, NaN], [805.4578857421875, 809.084228515625, 796.1904907226562, 757.5091552734375, NaN, NaN], [862.6740112304688, 824.3956298828125, 815.5311279296875, 782.893798828125, NaN, NaN], [819.1575317382812, 869.120849609375, 878.3883056640625, 820.3662719726562, NaN, NaN], [763.9560546875, 869.5238037109375, 877.1795043945312, 809.084228515625, NaN, NaN], [805.054931640625, 824.7985229492188, 820.7692260742188, 778.4615478515625, NaN, NaN], [856.2271118164062, 815.1282348632812, 813.5164794921875, 790.1465454101562, NaN, NaN], [808.2783813476562, 860.2564086914062, 866.7033081054688, 819.5604248046875, NaN, NaN], [754.6886596679688, 876.3735961914062, 882.0146484375, 815.93408203125, NaN, NaN], [784.1025390625, 832.05126953125, 826.8131713867188, 769.1941528320312, NaN, NaN], [842.930419921875, 815.93408203125, 807.069580078125, 767.5823974609375, NaN, NaN], [830.4395751953125, 853.4066162109375, 857.032958984375, 824.7985229492188, NaN, NaN], [757.912109375, 870.7326049804688, 888.05859375, 843.3333129882812, NaN, NaN], [754.6886596679688, 837.6923217773438, 844.5421142578125, 799.8168334960938, NaN, NaN], [812.7106323242188, 809.4871826171875, 804.2490844726562, 768.3883056640625, NaN, NaN], [828.02197265625, 826.8131713867188, 823.5897216796875, 771.6116943359375, NaN, NaN], [788.1318969726562, 863.8828125, 865.8974609375, 800.2197875976562, NaN, NaN], [757.5091552734375, 850.989013671875, 847.7655639648438, 770.0, NaN, NaN], [813.113525390625, 809.89013671875, 799.8168334960938, 738.5714111328125, NaN, NaN], [865.091552734375, 813.5164794921875, 813.113525390625, 769.5970458984375, NaN, NaN], [801.8314819335938, 859.4505615234375, 871.5384521484375, 813.5164794921875, NaN, NaN], [752.6740112304688, 865.8974609375, 871.1355590820312, 807.87548828125, NaN, NaN], [802.6373901367188, 819.96337890625, 811.5018310546875, 770.4029541015625, NaN, NaN], [834.06591796875, 809.4871826171875, 797.3992919921875, 779.2673950195312, NaN, NaN], [811.90478515625, 855.018310546875, 854.6153564453125, 823.1868286132812, NaN, NaN], [767.9853515625, 874.7619018554688, 882.4176025390625, 827.6190185546875, NaN, NaN], [778.8644409179688, 832.8571166992188, 823.5897216796875, 762.3442993164062, NaN, NaN], [842.12451171875, 804.2490844726562, 790.952392578125, 752.6740112304688, NaN, NaN], [835.6776733398438, 842.12451171875, 840.10986328125, 816.3369750976562, NaN, NaN], [764.3589477539062, 878.3883056640625, 886.0439453125, 846.959716796875, NaN, NaN], [738.974365234375, 846.1538696289062, 844.1392211914062, 786.923095703125, NaN, NaN], [828.02197265625, 807.4725341796875, 799.010986328125, 760.7326049804688, NaN, NaN], [865.4945068359375, 829.2307739257812, 833.6630249023438, 812.7106323242188, NaN, NaN], [791.7582397460938, 872.7472534179688, 884.8351440429688, 844.1392211914062, NaN, NaN], [754.6886596679688, 866.7033081054688, 872.7472534179688, 818.7545776367188, NaN, NaN], [793.3699340820312, 821.5750732421875, 813.5164794921875, 771.2088012695312, NaN, NaN], [871.5384521484375, 824.7985229492188, 823.99267578125, 778.4615478515625, NaN, NaN], [833.6630249023438, 869.9267578125, 883.6264038085938, 824.3956298828125, NaN, NaN], [755.4945068359375, 866.3003540039062, 875.1648559570312, 792.1611938476562, NaN, NaN], [786.1171875, 821.97802734375, 815.5311279296875, 747.032958984375, NaN, NaN], [839.3040161132812, 811.90478515625, 802.6373901367188, 778.05859375, NaN, NaN], [832.8571166992188, 856.2271118164062, 859.4505615234375, 827.6190185546875, NaN, NaN], [786.5201416015625, 877.5823974609375, 887.2527465820312, 836.4835205078125, NaN, NaN], [764.7619018554688, 834.8717651367188, 834.06591796875, 780.879150390625, NaN, NaN], [856.6300659179688, 813.91943359375, 801.025634765625, 755.4945068359375, NaN, NaN], [886.0439453125, 848.5714111328125, 848.5714111328125, 799.8168334960938, NaN, NaN], [764.7619018554688, 879.1941528320312, 893.6996459960938, 838.901123046875, NaN, NaN], [761.5384521484375, 856.6300659179688, 849.7802124023438, 811.90478515625, NaN, NaN], [828.02197265625, 819.1575317382812, 798.6080322265625, 768.3883056640625, NaN, NaN], [836.886474609375, 832.8571166992188, 832.05126953125, 784.5054931640625, NaN, NaN], [811.098876953125, 877.5823974609375, 889.6703491210938, 830.8424682617188, NaN, NaN], [781.2820434570312, 873.5531005859375, 877.9853515625, 813.91943359375, NaN, NaN], [810.6959838867188, 831.6483764648438, 825.6043701171875, 784.5054931640625, NaN, NaN], [857.032958984375, 825.6043701171875, 820.3662719726562, 794.981689453125, NaN, NaN], [834.4688720703125, 867.912109375, 875.5677490234375, 851.7948608398438, NaN, NaN], [790.1465454101562, 882.0146484375, 887.6557006835938, 848.974365234375, NaN, NaN], [796.1904907226562, 836.08056640625, 823.5897216796875, 774.029296875, NaN, NaN], [828.4249267578125, 818.7545776367188, 805.4578857421875, 774.8351440429688, NaN, NaN], [826.00732421875, 861.062255859375, 861.062255859375, 810.2930297851562, NaN, NaN], [775.2380981445312, 883.2234497070312, 884.8351440429688, 823.1868286132812, NaN, NaN], [791.7582397460938, 848.5714111328125, 831.6483764648438, 786.5201416015625, NaN, NaN], [837.6923217773438, 813.5164794921875, 786.1171875, 750.6593627929688, NaN, NaN], [839.7069702148438, 837.6923217773438, 826.00732421875, 782.893798828125, NaN, NaN], [780.879150390625, 874.7619018554688, 880.4029541015625, 834.8717651367188, NaN, NaN], [748.2417602539062, 854.2124633789062, 852.6007080078125, 796.996337890625, NaN, NaN], [808.6813354492188, 813.5164794921875, 796.1904907226562, 741.7948608398438, NaN, NaN], [861.062255859375, 823.5897216796875, 810.6959838867188, 780.0732421875, NaN, NaN], [824.7985229492188, 868.7179565429688, 865.8974609375, 824.7985229492188, NaN, NaN], [767.5823974609375, 867.106201171875, 859.8534545898438, 796.1904907226562, NaN, NaN], [803.8461303710938, 823.99267578125, 806.2637329101562, 758.3150024414062, NaN, NaN], [860.2564086914062, 821.1721801757812, 802.6373901367188, 783.6996459960938, NaN, NaN], [821.97802734375, 859.8534545898438, 857.4359130859375, 824.7985229492188, NaN, NaN], [761.94140625, 871.94140625, 875.1648559570312, 814.3223266601562, NaN, NaN], [780.4761962890625, 835.2747192382812, 810.6959838867188, 759.9267578125, NaN, NaN], [846.959716796875, 813.91943359375, 787.7289428710938, 759.120849609375, NaN, NaN], [853.4066162109375, 851.3919677734375, 856.2271118164062, 818.7545776367188, NaN, NaN], [769.1941528320312, 878.3883056640625, 888.05859375, 823.1868286132812, NaN, NaN], [762.3442993164062, 842.5274658203125, 840.10986328125, 769.1941528320312, NaN, NaN], [834.8717651367188, 812.7106323242188, 805.054931640625, 750.6593627929688, NaN, NaN], [846.959716796875, 838.901123046875, 837.6923217773438, 787.7289428710938, NaN, NaN], [783.6996459960938, 873.9560546875, 887.2527465820312, 826.00732421875, NaN, NaN], [750.2564086914062, 859.4505615234375, 868.7179565429688, 802.2344360351562, NaN, NaN], [823.1868286132812, 823.1868286132812, 815.93408203125, 769.5970458984375, NaN, NaN], [877.5823974609375, 825.6043701171875, 820.7692260742188, 774.4322509765625, NaN, NaN], [834.8717651367188, 865.4945068359375, 871.94140625, 811.90478515625, NaN, NaN], [766.3735961914062, 867.5091552734375, 873.5531005859375, 793.7728881835938, NaN, NaN], [782.087890625, 818.3516235351562, 816.3369750976562, 736.1538696289062, NaN, NaN], [882.0146484375, 811.5018310546875, 809.084228515625, 776.8497924804688, NaN, NaN], [856.2271118164062, 859.047607421875, 862.2710571289062, 823.5897216796875, NaN, NaN], [741.3919677734375, 878.3883056640625, 878.3883056640625, 801.025634765625, NaN, NaN], [758.3150024414062, 845.7509155273438, 828.4249267578125, 758.3150024414062, NaN, NaN], [836.886474609375, 823.1868286132812, 796.5933837890625, 757.106201171875, NaN, NaN], [857.4359130859375, 852.6007080078125, 835.6776733398438, 807.069580078125, NaN, NaN], [801.8314819335938, 885.6410522460938, 871.1355590820312, 835.2747192382812, NaN, NaN], [775.2380981445312, 864.2857055664062, 838.4981689453125, 815.1282348632812, NaN, NaN], [826.8131713867188, 830.8424682617188, 790.1465454101562, 773.2234497070312, NaN, NaN], [863.4798583984375, 850.5860595703125, 807.069580078125, 787.3259887695312, NaN, NaN], [821.5750732421875, 888.05859375, 861.8681030273438, 828.8278198242188, NaN, NaN], [795.3846435546875, 881.2088012695312, 862.2710571289062, 809.89013671875, NaN, NaN], [822.7838745117188, 833.2600708007812, 801.4285888671875, 775.2380981445312, NaN, NaN], [853.003662109375, 826.4102783203125, 792.1611938476562, 790.5494384765625, NaN, NaN], [834.4688720703125, 875.5677490234375, 855.8241577148438, 832.8571166992188, NaN, NaN], [789.3406372070312, 882.0146484375, 865.4945068359375, 817.5457763671875, NaN, NaN], [814.7252807617188, 836.4835205078125, 809.89013671875, 761.94140625, NaN, NaN], [862.2710571289062, 821.97802734375, 796.996337890625, 773.6264038085938, NaN, NaN], [838.4981689453125, 863.8828125, 854.2124633789062, 834.8717651367188, NaN, NaN], [771.2088012695312, 884.8351440429688, 879.5970458984375, 823.5897216796875, NaN, NaN], [778.8644409179688, 843.3333129882812, 824.7985229492188, 771.2088012695312, NaN, NaN], [855.018310546875, 817.94873046875, 790.5494384765625, 768.3883056640625, NaN, NaN], [878.7911987304688, 847.3626098632812, 829.6337280273438, 812.7106323242188, NaN, NaN], [813.91943359375, 876.7765502929688, 876.3735961914062, 846.5567626953125, NaN, NaN], [776.8497924804688, 854.6153564453125, 846.5567626953125, 799.010986328125, NaN, NaN], [830.8424682617188, 819.5604248046875, 800.6226806640625, 765.5677490234375, NaN, NaN], [863.8828125, 838.09521484375, 829.6337280273438, 809.89013671875, NaN, NaN], [797.3992919921875, 877.5823974609375, 880.0, 848.1685180664062, NaN, NaN], [766.3735961914062, 864.6886596679688, 858.2417602539062, 803.8461303710938, NaN, NaN], [827.6190185546875, 826.4102783203125, 804.2490844726562, 767.1795043945312, NaN, NaN], [856.2271118164062, 827.6190185546875, 809.89013671875, 786.1171875, NaN, NaN], [817.5457763671875, 871.94140625, 865.4945068359375, 827.6190185546875, NaN, NaN], [764.3589477539062, 880.4029541015625, 866.7033081054688, 833.6630249023438, NaN, NaN], [795.7875366210938, 831.2454223632812, 810.2930297851562, 787.3259887695312, NaN, NaN], [885.6410522460938, 816.3369750976562, 801.8314819335938, 795.7875366210938, NaN, NaN], [874.3589477539062, 855.4212646484375, 855.018310546875, 855.8241577148438, NaN, NaN], [788.1318969726562, 873.9560546875, 882.0146484375, 855.8241577148438, NaN, NaN], [778.8644409179688, 838.4981689453125, 836.4835205078125, 790.1465454101562, NaN, NaN], [868.3150024414062, 807.87548828125, 794.981689453125, 771.6116943359375, NaN, NaN], [870.7326049804688, 831.6483764648438, 830.8424682617188, 801.4285888671875, NaN, NaN], [763.5531005859375, 869.5238037109375, 883.6264038085938, 823.1868286132812, NaN, NaN], [757.106201171875, 854.6153564453125, 859.4505615234375, 795.3846435546875, NaN, NaN], [818.7545776367188, 812.3076782226562, 806.2637329101562, 763.9560546875, NaN, NaN], [846.1538696289062, 820.3662719726562, 820.3662719726562, 803.8461303710938, NaN, NaN], [803.4432373046875, 863.4798583984375, 875.1648559570312, 838.4981689453125, NaN, NaN], [762.7472534179688, 866.3003540039062, 870.7326049804688, 801.4285888671875, NaN, NaN], [801.025634765625, 822.3809814453125, 806.6666870117188, 752.2710571289062, NaN, NaN], [852.6007080078125, 818.3516235351562, 796.5933837890625, 774.029296875, NaN, NaN], [839.3040161132812, 865.4945068359375, 856.2271118164062, 831.6483764648438, NaN, NaN], [768.7911987304688, 881.6116943359375, 884.4322509765625, 858.6447143554688, NaN, NaN], [780.4761962890625, 838.901123046875, 825.6043701171875, 810.2930297851562, NaN, NaN], [858.2417602539062, 812.7106323242188, 789.3406372070312, 761.94140625, NaN, NaN], [857.8388061523438, 848.1685180664062, 845.3479614257812, 802.2344360351562, NaN, NaN], [789.7435913085938, 875.5677490234375, 883.2234497070312, 826.00732421875, NaN, NaN], [774.029296875, 847.3626098632812, 840.5128173828125, 769.5970458984375, NaN, NaN], [844.1392211914062, 817.1428833007812, 803.8461303710938, 776.4468994140625, NaN, NaN], [853.4066162109375, 836.886474609375, 826.8131713867188, 819.5604248046875, NaN, NaN], [799.010986328125, 880.0, 873.9560546875, 833.2600708007812, NaN, NaN], [767.1795043945312, 863.8828125, 857.032958984375, 800.2197875976562, NaN, NaN], [823.1868286132812, 811.90478515625, 796.5933837890625, 766.3735961914062, NaN, NaN], [874.7619018554688, 820.3662719726562, 807.069580078125, 809.89013671875, NaN, NaN], [801.4285888671875, 864.2857055664062, 868.7179565429688, 849.7802124023438, NaN, NaN], [756.7033081054688, 863.4798583984375, 869.120849609375, 821.1721801757812, NaN, NaN], [803.8461303710938, 818.7545776367188, 808.6813354492188, 771.2088012695312, NaN, NaN], [857.8388061523438, 813.91943359375, 803.4432373046875, 788.1318969726562, NaN, NaN], [825.2014770507812, 857.032958984375, 858.6447143554688, 847.3626098632812, NaN, NaN], [785.3113403320312, 871.5384521484375, 873.9560546875, 846.1538696289062, NaN, NaN], [814.3223266601562, 834.8717651367188, 825.2014770507812, 782.4908447265625, NaN, NaN], [833.2600708007812, 807.87548828125, 793.7728881835938, 769.1941528320312, NaN, NaN], [838.09521484375, 839.7069702148438, 836.4835205078125, 823.1868286132812, NaN, NaN], [789.7435913085938, 869.9267578125, 874.3589477539062, 854.6153564453125, NaN, NaN], [761.1355590820312, 840.915771484375, 835.2747192382812, 794.981689453125, NaN, NaN], [827.2161254882812, 813.91943359375, 801.8314819335938, 763.9560546875, NaN, NaN], [854.6153564453125, 833.6630249023438, 829.2307739257812, 797.3992919921875, NaN, NaN], [780.0732421875, 868.7179565429688, 870.7326049804688, 815.5311279296875, NaN, NaN], [745.8241577148438, 863.076904296875, 851.3919677734375, 787.3259887695312, NaN, NaN], [810.6959838867188, 820.3662719726562, 794.5787353515625, 775.6410522460938, NaN, NaN], [866.7033081054688, 821.97802734375, 809.89013671875, 807.87548828125, NaN, NaN], [824.7985229492188, 869.120849609375, 869.120849609375, 822.7838745117188, NaN, NaN], [772.0146484375, 877.1795043945312, 874.3589477539062, 803.4432373046875, NaN, NaN], [806.6666870117188, 834.06591796875, 820.7692260742188, 757.5091552734375, NaN, NaN], [842.930419921875, 816.3369750976562, 801.4285888671875, 761.94140625, NaN, NaN], [817.5457763671875, 854.6153564453125, 854.6153564453125, 813.113525390625, NaN, NaN], [771.6116943359375, 881.6116943359375, 888.05859375, 828.4249267578125, NaN, NaN], [779.6703491210938, 844.945068359375, 836.4835205078125, 787.7289428710938, NaN, NaN], [844.5421142578125, 813.113525390625, 802.6373901367188, 802.2344360351562, NaN, NaN], [861.062255859375, 841.7216186523438, 845.7509155273438, 852.1978149414062, NaN, NaN], [786.1171875, 876.7765502929688, 888.4615478515625, 840.915771484375, NaN, NaN], [743.8095092773438, 856.6300659179688, 856.6300659179688, 775.6410522460938, NaN, NaN], [798.6080322265625, 816.7399291992188, 801.4285888671875, 746.2271118164062, NaN, NaN], [856.2271118164062, 831.2454223632812, 828.8278198242188, 783.6996459960938, NaN, NaN], [827.6190185546875, 874.7619018554688, 886.0439453125, 806.2637329101562, NaN, NaN], [777.6557006835938, 867.5091552734375, 868.7179565429688, 799.4139404296875, NaN, NaN], [803.8461303710938, 822.7838745117188, 811.5018310546875, 775.6410522460938, NaN, NaN], [857.8388061523438, 815.93408203125, 807.87548828125, 766.7765502929688, NaN, NaN], [844.945068359375, 864.6886596679688, 866.3003540039062, 819.5604248046875, NaN, NaN], [788.1318969726562, 879.5970458984375, 873.1502075195312, 819.1575317382812, NaN, NaN], [788.5347900390625, 827.6190185546875, 808.6813354492188, 753.4798583984375, NaN, NaN], [857.8388061523438, 808.2783813476562, 799.010986328125, 753.8828125, NaN, NaN], [843.3333129882812, 848.974365234375, 856.6300659179688, 807.069580078125, NaN, NaN], [763.9560546875, 874.7619018554688, 878.3883056640625, 815.93408203125, NaN, NaN], [756.3003540039062, 839.7069702148438, 832.4542236328125, 780.879150390625, NaN, NaN], [811.098876953125, 808.6813354492188, 798.2051391601562, 781.6849975585938, NaN, NaN], [848.1685180664062, 838.901123046875, 841.3186645507812, 798.6080322265625, NaN, NaN], [794.981689453125, 873.9560546875, 882.4176025390625, 811.098876953125, NaN, NaN], [743.003662109375, 851.3919677734375, 842.930419921875, 785.3113403320312, NaN, NaN], [826.00732421875, 807.87548828125, 792.967041015625, 756.7033081054688, NaN, NaN], [880.8058471679688, 816.7399291992188, 810.6959838867188, 788.937744140625, NaN, NaN], [804.2490844726562, 863.4798583984375, 868.7179565429688, 828.4249267578125, NaN, NaN], [740.989013671875, 859.8534545898438, 867.5091552734375, 803.4432373046875, NaN, NaN], [785.7142944335938, 814.3223266601562, 807.87548828125, 756.3003540039062, NaN, NaN], [844.1392211914062, 813.5164794921875, 799.010986328125, 774.029296875, NaN, NaN], [821.1721801757812, 858.6447143554688, 859.4505615234375, 828.4249267578125, NaN, NaN], [767.9853515625, 871.94140625, 881.2088012695312, 826.8131713867188, NaN, NaN], [786.923095703125, 830.8424682617188, 828.4249267578125, 772.4176025390625, NaN, NaN], [853.4066162109375, 810.6959838867188, 800.2197875976562, 762.7472534179688, NaN, NaN], [838.901123046875, 845.3479614257812, 846.959716796875, 812.3076782226562, NaN, NaN], [767.1795043945312, 871.5384521484375, 882.8204956054688, 823.1868286132812, NaN, NaN], [756.7033081054688, 846.1538696289062, 846.5567626953125, 784.908447265625, NaN, NaN], [816.7399291992188, 814.3223266601562, 807.87548828125, 771.2088012695312, NaN, NaN], [832.8571166992188, 826.4102783203125, 824.7985229492188, 780.0732421875, NaN, NaN], [781.2820434570312, 863.076904296875, 873.9560546875, 809.89013671875, NaN, NaN], [753.4798583984375, 849.7802124023438, 859.4505615234375, 792.1611938476562, NaN, NaN], [826.8131713867188, 804.6520385742188, 804.2490844726562, 770.0, NaN, NaN], [872.3442993164062, 809.4871826171875, 810.2930297851562, 801.8314819335938, NaN, NaN], [803.4432373046875, 858.6447143554688, 864.6886596679688, 835.6776733398438, NaN, NaN], [753.8828125, 868.3150024414062, 871.5384521484375, 807.069580078125, NaN, NaN], [779.2673950195312, 823.99267578125, 817.94873046875, 765.970703125, NaN, NaN], [839.7069702148438, 811.90478515625, 806.6666870117188, 776.4468994140625, NaN, NaN], [819.5604248046875, 851.7948608398438, 861.062255859375, 812.3076782226562, NaN, NaN], [746.6300659179688, 866.7033081054688, 880.0, 805.8607788085938, NaN, NaN], [770.8058471679688, 824.7985229492188, 822.7838745117188, 765.5677490234375, NaN, NaN], [828.4249267578125, 800.6226806640625, 793.7728881835938, 764.3589477539062, NaN, NaN], [832.05126953125, 838.09521484375, 844.945068359375, 800.2197875976562, NaN, NaN], [807.4725341796875, 877.5823974609375, 892.893798828125, 833.2600708007812, NaN, NaN], [782.893798828125, 845.3479614257812, 848.974365234375, 790.5494384765625, NaN, NaN], [811.5018310546875, 802.2344360351562, 791.7582397460938, 764.7619018554688, NaN, NaN], [845.7509155273438, 824.7985229492188, 819.96337890625, 809.084228515625, NaN, NaN], [782.893798828125, 865.091552734375, 877.9853515625, 845.7509155273438, NaN, NaN], [745.8241577148438, 855.018310546875, 869.120849609375, 797.3992919921875, NaN, NaN], [804.2490844726562, 806.2637329101562, 811.5018310546875, 754.2857055664062, NaN, NaN], [856.6300659179688, 810.6959838867188, 826.4102783203125, 789.3406372070312, NaN, NaN], [791.7582397460938, 857.4359130859375, 888.4615478515625, 808.2783813476562, NaN, NaN], [715.2014770507812, 854.6153564453125, 886.8497924804688, 776.8497924804688, NaN, NaN], [751.062255859375, 811.5018310546875, 836.08056640625, 743.8095092773438, NaN, NaN], [819.5604248046875, 797.8021850585938, 826.4102783203125, 764.7619018554688, NaN, NaN], [804.2490844726562, 836.886474609375, 874.7619018554688, 817.94873046875, NaN, NaN], [726.886474609375, 855.8241577148438, 896.923095703125, 818.7545776367188, NaN, NaN], [745.018310546875, 817.94873046875, 851.3919677734375, 773.6264038085938, NaN, NaN], [834.4688720703125, 795.7875366210938, 816.3369750976562, 767.9853515625, NaN, NaN], [830.4395751953125, 826.8131713867188, 853.8095092773438, 799.8168334960938, NaN, NaN], [743.003662109375, 860.2564086914062, 901.3552856445312, 815.1282348632812, NaN, NaN], [722.05126953125, 836.4835205078125, 869.5238037109375, 767.5823974609375, NaN, NaN], [779.2673950195312, 792.1611938476562, 814.7252807617188, 745.4212646484375, NaN, NaN], [819.5604248046875, 808.6813354492188, 833.6630249023438, 787.7289428710938, NaN, NaN], [782.893798828125, 853.4066162109375, 887.2527465820312, 825.2014770507812, NaN, NaN], [740.5860595703125, 846.959716796875, 880.4029541015625, 794.5787353515625, NaN, NaN], [787.3259887695312, 810.6959838867188, 830.4395751953125, 758.7179565429688, NaN, NaN], [826.8131713867188, 807.069580078125, 825.2014770507812, 780.879150390625, NaN, NaN], [794.5787353515625, 847.3626098632812, 873.5531005859375, 811.90478515625, NaN, NaN], [742.6007080078125, 861.8681030273438, 889.2673950195312, 793.7728881835938, NaN, NaN], [778.4615478515625, 816.7399291992188, 826.8131713867188, 749.047607421875, NaN, NaN], [849.7802124023438, 803.4432373046875, 803.4432373046875, 756.3003540039062, NaN, NaN], [833.2600708007812, 846.1538696289062, 866.3003540039062, 810.6959838867188, NaN, NaN], [784.1025390625, 869.9267578125, 902.1611938476562, 825.2014770507812, NaN, NaN], [771.2088012695312, 835.6776733398438, 844.1392211914062, 778.4615478515625, NaN, NaN], [809.4871826171875, 799.010986328125, 795.3846435546875, 757.912109375, NaN, NaN], [848.5714111328125, 822.7838745117188, 838.4981689453125, 803.040283203125, NaN, NaN], [784.5054931640625, 862.2710571289062, 888.4615478515625, 842.12451171875, NaN, NaN], [742.6007080078125, 845.3479614257812, 865.4945068359375, 796.1904907226562, NaN, NaN], [807.069580078125, 805.054931640625, 817.1428833007812, 765.5677490234375, NaN, NaN], [839.3040161132812, 817.5457763671875, 831.6483764648438, 813.5164794921875, NaN, NaN], [797.3992919921875, 866.3003540039062, 888.05859375, 836.4835205078125, NaN, NaN], [755.8974609375, 857.4359130859375, 876.3735961914062, 795.7875366210938, NaN, NaN], [809.084228515625, 813.113525390625, 816.3369750976562, 761.5384521484375, NaN, NaN], [857.4359130859375, 815.1282348632812, 818.7545776367188, 792.967041015625, NaN, NaN], [813.91943359375, 854.2124633789062, 872.3442993164062, 830.4395751953125, NaN, NaN], [761.94140625, 868.7179565429688, 882.4176025390625, 830.03662109375, NaN, NaN], [773.6264038085938, 826.4102783203125, 822.7838745117188, 802.2344360351562, NaN, NaN], [835.2747192382812, 803.040283203125, 803.040283203125, 793.7728881835938, NaN, NaN], [840.5128173828125, 843.3333129882812, 861.4652099609375, 819.5604248046875, NaN, NaN], [761.1355590820312, 865.4945068359375, 888.4615478515625, 815.1282348632812, NaN, NaN], [754.2857055664062, 830.4395751953125, 841.7216186523438, 765.1648559570312, NaN, NaN], [819.96337890625, 801.4285888671875, 806.2637329101562, 753.4798583984375, NaN, NaN], [850.1831665039062, 823.1868286132812, 831.2454223632812, 795.7875366210938, NaN, NaN], [803.4432373046875, 864.2857055664062, 877.5823974609375, 826.8131713867188, NaN, NaN], [768.7911987304688, 855.4212646484375, 866.3003540039062, 806.2637329101562, NaN, NaN], [815.1282348632812, 813.5164794921875, 815.93408203125, 772.0146484375, NaN, NaN], [854.2124633789062, 821.5750732421875, 827.6190185546875, 795.3846435546875, NaN, NaN], [796.996337890625, 860.2564086914062, 875.5677490234375, 821.97802734375, NaN, NaN], [738.1685180664062, 859.4505615234375, 874.3589477539062, 794.5787353515625, NaN, NaN], [787.3259887695312, 816.3369750976562, 821.1721801757812, 772.4176025390625, NaN, NaN], [865.091552734375, 806.6666870117188, 810.6959838867188, 793.3699340820312, NaN, NaN], [849.7802124023438, 850.5860595703125, 862.2710571289062, 830.03662109375, NaN, NaN], [770.0, 870.3296508789062, 876.3735961914062, 832.8571166992188, NaN, NaN], [765.970703125, 832.4542236328125, 825.6043701171875, 781.2820434570312, NaN, NaN], [837.2893676757812, 810.6959838867188, 802.6373901367188, 778.4615478515625, NaN, NaN], [852.6007080078125, 841.7216186523438, 848.5714111328125, 824.7985229492188, NaN, NaN], [794.5787353515625, 869.9267578125, 890.879150390625, 835.2747192382812, NaN, NaN], [778.8644409179688, 845.7509155273438, 857.4359130859375, 788.5347900390625, NaN, NaN], [834.06591796875, 813.91943359375, 811.90478515625, 765.970703125, NaN, NaN], [871.94140625, 832.05126953125, 835.2747192382812, 817.5457763671875, NaN, NaN], [796.1904907226562, 867.912109375, 882.8204956054688, 846.959716796875, NaN, NaN], [750.2564086914062, 863.076904296875, 877.1795043945312, 830.4395751953125, NaN, NaN], [796.996337890625, 817.5457763671875, 814.3223266601562, 794.981689453125, NaN, NaN], [827.2161254882812, 812.3076782226562, 809.89013671875, 797.3992919921875, NaN, NaN], [809.89013671875, 857.8388061523438, 869.9267578125, 840.915771484375, NaN, NaN], [765.1648559570312, 865.8974609375, 870.3296508789062, 825.2014770507812, NaN, NaN], [775.6410522460938, 825.2014770507812, 818.7545776367188, 782.087890625, NaN, NaN], [855.4212646484375, 812.7106323242188, 809.4871826171875, 799.010986328125, NaN, NaN], [866.7033081054688, 857.032958984375, 865.091552734375, 846.1538696289062, NaN, NaN], [776.4468994140625, 879.1941528320312, 892.4908447265625, 853.4066162109375, NaN, NaN], [757.5091552734375, 837.2893676757812, 834.8717651367188, 795.7875366210938, NaN, NaN], [820.7692260742188, 809.89013671875, 799.8168334960938, 774.4322509765625, NaN, NaN], [853.4066162109375, 841.3186645507812, 842.930419921875, 827.6190185546875, NaN, NaN], [804.6520385742188, 876.3735961914062, 886.4468994140625, 846.959716796875, NaN, NaN], [764.7619018554688, 854.6153564453125, 860.2564086914062, 809.084228515625, NaN, NaN], [820.7692260742188, 816.3369750976562, 812.3076782226562, 781.2820434570312, NaN, NaN], [866.3003540039062, 832.8571166992188, 831.2454223632812, 816.3369750976562, NaN, NaN], [834.8717651367188, 877.9853515625, 888.4615478515625, 849.3773193359375, NaN, NaN], [774.029296875, 864.2857055664062, 869.120849609375, 795.3846435546875, NaN, NaN], [802.6373901367188, 819.1575317382812, 810.6959838867188, 754.2857055664062, NaN, NaN], [866.7033081054688, 818.7545776367188, 815.93408203125, 786.923095703125, NaN, NaN], [836.08056640625, 863.076904296875, 874.3589477539062, 843.3333129882812, NaN, NaN], [764.3589477539062, 871.94140625, 876.7765502929688, 842.12451171875, NaN, NaN], [783.2966918945312, 828.8278198242188, 823.1868286132812, 795.3846435546875, NaN, NaN], [845.3479614257812, 815.1282348632812, 816.3369750976562, 786.5201416015625, NaN, NaN], [838.09521484375, 848.5714111328125, 857.8388061523438, 809.4871826171875, NaN, NaN], [778.05859375, 869.5238037109375, 880.4029541015625, 820.7692260742188, NaN, NaN], [778.4615478515625, 840.5128173828125, 850.5860595703125, 781.6849975585938, NaN, NaN], [827.6190185546875, 811.5018310546875, 814.3223266601562, 766.3735961914062, NaN, NaN], [842.930419921875, 835.2747192382812, 839.3040161132812, 827.2161254882812, NaN, NaN], [792.967041015625, 871.94140625, 888.05859375, 857.8388061523438, NaN, NaN], [768.7911987304688, 856.2271118164062, 865.091552734375, 807.87548828125, NaN, NaN], [821.97802734375, 818.3516235351562, 817.1428833007812, 763.5531005859375, NaN, NaN], [851.7948608398438, 822.3809814453125, 827.6190185546875, 790.952392578125, NaN, NaN], [810.6959838867188, 861.8681030273438, 878.3883056640625, 833.2600708007812, NaN, NaN], [774.8351440429688, 861.8681030273438, 875.1648559570312, 817.5457763671875, NaN, NaN], [804.6520385742188, 817.5457763671875, 819.96337890625, 789.3406372070312, NaN, NaN], [851.7948608398438, 809.4871826171875, 817.5457763671875, 799.4139404296875, NaN, NaN], [817.94873046875, 853.003662109375, 867.106201171875, 846.5567626953125, NaN, NaN], [763.1502075195312, 870.3296508789062, 883.2234497070312, 852.6007080078125, NaN, NaN], [795.3846435546875, 828.4249267578125, 836.08056640625, 784.908447265625, NaN, NaN], [852.1978149414062, 805.054931640625, 807.069580078125, 754.2857055664062, NaN, NaN], [857.4359130859375, 846.1538696289062, 861.8681030273438, 805.054931640625, NaN, NaN], [799.8168334960938, 874.7619018554688, 896.5201416015625, 834.8717651367188, NaN, NaN], [774.029296875, 845.3479614257812, 855.4212646484375, 799.010986328125, NaN, NaN], [819.96337890625, 814.7252807617188, 815.93408203125, 784.908447265625, NaN, NaN], [844.1392211914062, 834.4688720703125, 842.5274658203125, 821.97802734375, NaN, NaN], [803.4432373046875, 876.3735961914062, 901.7582397460938, 850.989013671875, NaN, NaN], [771.6116943359375, 865.091552734375, 884.029296875, 815.5311279296875, NaN, NaN], [821.97802734375, 813.91943359375, 817.5457763671875, 760.7326049804688, NaN, NaN], [884.8351440429688, 819.5604248046875, 827.6190185546875, 783.2966918945312, NaN, NaN], [836.4835205078125, 865.091552734375, 884.029296875, 831.2454223632812, NaN, NaN], [771.2088012695312, 870.7326049804688, 884.029296875, 822.3809814453125, NaN, NaN], [796.5933837890625, 829.2307739257812, 818.3516235351562, 790.1465454101562, NaN, NaN], [861.062255859375, 819.5604248046875, 805.054931640625, 812.7106323242188, NaN, NaN], [852.1978149414062, 861.062255859375, 871.1355590820312, 855.8241577148438, NaN, NaN], [782.893798828125, 876.7765502929688, 899.3406372070312, 851.7948608398438, NaN, NaN], [787.7289428710938, 841.7216186523438, 855.4212646484375, 794.5787353515625, NaN, NaN], [863.4798583984375, 817.5457763671875, 821.5750732421875, 764.3589477539062, NaN, NaN], [865.4945068359375, 843.3333129882812, 861.8681030273438, 818.3516235351562, NaN, NaN], [788.1318969726562, 874.3589477539062, 900.952392578125, 850.5860595703125, NaN, NaN], [760.3296508789062, 852.6007080078125, 864.2857055664062, 803.8461303710938, NaN, NaN], [827.6190185546875, 823.99267578125, 827.6190185546875, 791.7582397460938, NaN, NaN], [851.7948608398438, 842.5274658203125, 849.3773193359375, 827.2161254882812, NaN, NaN], [789.7435913085938, 873.5531005859375, 883.6264038085938, 853.8095092773438, NaN, NaN], [768.3883056640625, 864.6886596679688, 871.5384521484375, 826.00732421875, NaN, NaN], [810.6959838867188, 824.7985229492188, 817.94873046875, 772.4176025390625, NaN, NaN], [848.5714111328125, 824.3956298828125, 812.7106323242188, 788.5347900390625, NaN, NaN], [816.7399291992188, 869.9267578125, 870.7326049804688, 837.6923217773438, NaN, NaN], [770.0, 880.0, 886.4468994140625, 828.4249267578125, NaN, NaN], [807.069580078125, 837.2893676757812, 835.6776733398438, 781.6849975585938, NaN, NaN], [857.4359130859375, 823.5897216796875, 821.1721801757812, 790.952392578125, NaN, NaN], [831.2454223632812, 857.032958984375, 861.8681030273438, 839.3040161132812, NaN, NaN], [779.6703491210938, 877.1795043945312, 887.6557006835938, 839.3040161132812, NaN, NaN], [792.1611938476562, 846.1538696289062, 845.7509155273438, 790.5494384765625, NaN, NaN], [848.1685180664062, 819.5604248046875, 812.7106323242188, 780.4761962890625, NaN, NaN], [847.7655639648438, 844.945068359375, 850.5860595703125, 821.1721801757812, NaN, NaN], [795.7875366210938, 876.7765502929688, 891.6849975585938, 853.003662109375, NaN, NaN], [782.4908447265625, 856.6300659179688, 859.047607421875, 823.5897216796875, NaN, NaN], [830.4395751953125, 817.1428833007812, 807.4725341796875, 793.7728881835938, NaN, NaN], [844.945068359375, 831.2454223632812, 829.6337280273438, 804.6520385742188, NaN, NaN], [796.1904907226562, 874.7619018554688, 876.7765502929688, 827.6190185546875, NaN, NaN], [770.8058471679688, 864.6886596679688, 857.032958984375, 807.87548828125, NaN, NaN], [810.2930297851562, 818.3516235351562, 806.2637329101562, 777.6557006835938, NaN, NaN], [854.2124633789062, 817.94873046875, 814.3223266601562, 809.084228515625, NaN, NaN], [840.915771484375, 867.106201171875, 880.4029541015625, 851.3919677734375, NaN, NaN], [791.7582397460938, 878.7911987304688, 896.1171875, 836.4835205078125, NaN, NaN], [798.6080322265625, 826.00732421875, 830.03662109375, 782.893798828125, NaN, NaN], [854.6153564453125, 808.6813354492188, 809.89013671875, 791.7582397460938, NaN, NaN], [839.3040161132812, 852.6007080078125, 862.6740112304688, 829.2307739257812, NaN, NaN], [758.7179565429688, 878.3883056640625, 892.087890625, 827.2161254882812, NaN, NaN], [759.120849609375, 845.7509155273438, 848.5714111328125, 786.923095703125, NaN, NaN], [826.8131713867188, 812.7106323242188, 811.90478515625, 789.7435913085938, NaN, NaN], [857.032958984375, 843.7362670898438, 852.1978149414062, 836.886474609375, NaN, NaN], [795.3846435546875, 876.3735961914062, 890.879150390625, 840.10986328125, NaN, NaN], [762.7472534179688, 851.7948608398438, 857.8388061523438, 801.4285888671875, NaN, NaN], [832.05126953125, 815.93408203125, 807.87548828125, 776.0439453125, NaN, NaN], [858.6447143554688, 826.00732421875, 819.1575317382812, 788.1318969726562, NaN, NaN], [801.4285888671875, 868.7179565429688, 877.5823974609375, 829.2307739257812, NaN, NaN], [752.2710571289062, 867.912109375, 878.7911987304688, 831.6483764648438, NaN, NaN], [798.6080322265625, 828.02197265625, 824.7985229492188, 775.2380981445312, NaN, NaN], [851.3919677734375, 818.3516235351562, 817.94873046875, 769.1941528320312, NaN, NaN], [813.113525390625, 854.6153564453125, 869.5238037109375, 814.3223266601562, NaN, NaN], [757.5091552734375, 869.5238037109375, 883.6264038085938, 823.1868286132812, NaN, NaN], [792.1611938476562, 829.2307739257812, 831.6483764648438, 781.2820434570312, NaN, NaN], [859.8534545898438, 811.90478515625, 809.084228515625, 765.1648559570312, NaN, NaN], [847.7655639648438, 844.1392211914062, 846.5567626953125, 803.8461303710938, NaN, NaN], [773.2234497070312, 870.7326049804688, 881.2088012695312, 815.93408203125, NaN, NaN], [774.8351440429688, 846.5567626953125, 851.3919677734375, 788.937744140625, NaN, NaN], [861.4652099609375, 813.91943359375, 807.069580078125, 778.4615478515625, NaN, NaN], [856.6300659179688, 828.02197265625, 823.5897216796875, 796.1904907226562, NaN, NaN], [765.5677490234375, 864.2857055664062, 875.5677490234375, 828.02197265625, NaN, NaN], [728.901123046875, 849.7802124023438, 859.8534545898438, 805.4578857421875, NaN, NaN], [783.6996459960938, 807.87548828125, 801.4285888671875, 762.7472534179688, NaN, NaN], [832.05126953125, 812.3076782226562, 812.7106323242188, 785.3113403320312, NaN, NaN], [797.3992919921875, 857.032958984375, 872.7472534179688, 835.2747192382812, NaN, NaN], [756.3003540039062, 863.4798583984375, 875.1648559570312, 830.4395751953125, NaN, NaN], [787.3259887695312, 816.7399291992188, 819.5604248046875, 774.029296875, NaN, NaN], [854.6153564453125, 805.8607788085938, 806.2637329101562, 765.5677490234375, NaN, NaN], [844.945068359375, 848.1685180664062, 856.2271118164062, 819.96337890625, NaN, NaN], [765.5677490234375, 867.5091552734375, 874.7619018554688, 815.1282348632812, NaN, NaN], [771.2088012695312, 830.03662109375, 826.4102783203125, 771.2088012695312, NaN, NaN], [840.10986328125, 806.6666870117188, 800.2197875976562, 774.8351440429688, NaN, NaN], [839.7069702148438, 840.915771484375, 848.5714111328125, 823.99267578125, NaN, NaN], [778.05859375, 873.9560546875, 892.893798828125, 831.6483764648438, NaN, NaN], [764.7619018554688, 842.5274658203125, 848.1685180664062, 759.5238037109375, NaN, NaN], [826.00732421875, 804.6520385742188, 795.3846435546875, 740.989013671875, NaN, NaN], [861.8681030273438, 827.6190185546875, 824.7985229492188, 795.7875366210938, NaN, NaN], [792.5640869140625, 865.091552734375, 877.5823974609375, 836.4835205078125, NaN, NaN], [744.6153564453125, 851.7948608398438, 869.9267578125, 818.7545776367188, NaN, NaN], [797.3992919921875, 809.4871826171875, 812.7106323242188, 776.4468994140625, NaN, NaN], [861.062255859375, 815.5311279296875, 818.7545776367188, 791.7582397460938, NaN, NaN], [826.00732421875, 864.2857055664062, 879.1941528320312, 838.09521484375, NaN, NaN], [749.047607421875, 864.2857055664062, 873.5531005859375, 817.94873046875, NaN, NaN], [779.2673950195312, 812.3076782226562, 813.91943359375, 767.5823974609375, NaN, NaN], [837.2893676757812, 804.2490844726562, 802.2344360351562, 764.3589477539062, NaN, NaN], [821.5750732421875, 847.3626098632812, 853.003662109375, 796.1904907226562, NaN, NaN], [781.2820434570312, 865.091552734375, 878.7911987304688, 800.6226806640625, NaN, NaN], [785.3113403320312, 826.00732421875, 835.2747192382812, 768.3883056640625, NaN, NaN], [828.02197265625, 801.025634765625, 798.2051391601562, 761.5384521484375, NaN, NaN], [844.5421142578125, 832.4542236328125, 832.4542236328125, 796.5933837890625, NaN, NaN], [792.1611938476562, 865.4945068359375, 884.029296875, 823.1868286132812, NaN, NaN], [772.0146484375, 843.3333129882812, 854.6153564453125, 786.5201416015625, NaN, NaN], [823.5897216796875, 805.4578857421875, 803.040283203125, 755.091552734375, NaN, NaN], [838.09521484375, 821.1721801757812, 828.02197265625, 782.4908447265625, NaN, NaN], [785.7142944335938, 864.2857055664062, 880.0, 826.00732421875, NaN, NaN], [761.94140625, 856.6300659179688, 872.3442993164062, 812.3076782226562, NaN, NaN], [825.2014770507812, 818.3516235351562, 825.2014770507812, 763.9560546875, NaN, NaN], [857.8388061523438, 817.1428833007812, 817.1428833007812, 777.2527465820312, NaN, NaN], [811.90478515625, 855.018310546875, 862.6740112304688, 828.4249267578125, NaN, NaN], [767.1795043945312, 865.8974609375, 880.4029541015625, 817.5457763671875, NaN, NaN], [781.6849975585938, 826.8131713867188, 828.4249267578125, 767.9853515625, NaN, NaN], [836.08056640625, 812.7106323242188, 809.084228515625, 775.2380981445312, NaN, NaN], [829.2307739257812, 854.6153564453125, 861.4652099609375, 815.1282348632812, NaN, NaN], [782.087890625, 879.5970458984375, 890.4761962890625, 821.97802734375, NaN, NaN], [780.0732421875, 844.1392211914062, 840.10986328125, 777.2527465820312, NaN, NaN], [833.6630249023438, 809.89013671875, 796.1904907226562, 759.9267578125, NaN, NaN], [853.003662109375, 834.06591796875, 834.06591796875, 809.89013671875, NaN, NaN], [799.8168334960938, 872.3442993164062, 887.2527465820312, 857.4359130859375, NaN, NaN], [775.2380981445312, 855.8241577148438, 867.106201171875, 823.5897216796875, NaN, NaN], [811.5018310546875, 810.2930297851562, 809.4871826171875, 764.7619018554688, NaN, NaN], [853.4066162109375, 817.94873046875, 819.1575317382812, 771.6116943359375, NaN, NaN], [806.2637329101562, 865.091552734375, 875.5677490234375, 812.3076782226562, NaN, NaN], [753.076904296875, 861.062255859375, 865.4945068359375, 801.025634765625, NaN, NaN], [802.6373901367188, 816.7399291992188, 806.6666870117188, 754.6886596679688, NaN, NaN], [864.6886596679688, 811.5018310546875, 806.6666870117188, 769.1941528320312, NaN, NaN], [821.97802734375, 849.7802124023438, 862.2710571289062, 815.5311279296875, NaN, NaN], [753.4798583984375, 866.7033081054688, 883.6264038085938, 813.91943359375, NaN, NaN], [780.879150390625, 828.8278198242188, 831.2454223632812, 770.4029541015625, NaN, NaN], [851.7948608398438, 806.2637329101562, 798.6080322265625, 781.2820434570312, NaN, NaN], [848.5714111328125, 844.5421142578125, 851.7948608398438, 833.2600708007812, NaN, NaN], [787.7289428710938, 867.912109375, 889.2673950195312, 840.5128173828125, NaN, NaN], [769.5970458984375, 838.901123046875, 846.1538696289062, 803.040283203125, NaN, NaN], [816.3369750976562, 811.5018310546875, 807.87548828125, 770.0, NaN, NaN], [847.3626098632812, 831.2454223632812, 834.8717651367188, 798.6080322265625, NaN, NaN], [801.025634765625, 867.912109375, 882.4176025390625, 837.6923217773438, NaN, NaN], [767.9853515625, 854.2124633789062, 861.4652099609375, 803.4432373046875, NaN, NaN], [819.1575317382812, 815.93408203125, 810.2930297851562, 766.3735961914062, NaN, NaN], [871.5384521484375, 823.99267578125, 828.8278198242188, 789.7435913085938, NaN, NaN], [806.6666870117188, 858.6447143554688, 876.7765502929688, 818.7545776367188, NaN, NaN], [743.003662109375, 855.4212646484375, 869.9267578125, 799.4139404296875, NaN, NaN], [778.8644409179688, 813.91943359375, 815.93408203125, 768.3883056640625, NaN, NaN], [834.4688720703125, 807.069580078125, 807.87548828125, 782.087890625, NaN, NaN], [832.05126953125, 848.974365234375, 856.2271118164062, 825.2014770507812, NaN, NaN], [772.4176025390625, 863.8828125, 872.7472534179688, 838.901123046875, NaN, NaN], [769.5970458984375, 825.6043701171875, 832.8571166992188, 790.1465454101562, NaN, NaN], [833.6630249023438, 803.8461303710938, 804.6520385742188, 757.5091552734375, NaN, NaN], [855.018310546875, 836.08056640625, 845.7509155273438, 803.8461303710938, NaN, NaN], [790.5494384765625, 868.3150024414062, 884.4322509765625, 827.2161254882812, NaN, NaN], [759.120849609375, 844.5421142578125, 849.7802124023438, 788.937744140625, NaN, NaN], [812.3076782226562, 809.084228515625, 803.040283203125, 772.0146484375, NaN, NaN], [846.959716796875, 825.2014770507812, 829.2307739257812, 796.996337890625, NaN, NaN], [801.025634765625, 866.3003540039062, 880.0, 828.4249267578125, NaN, NaN], [775.6410522460938, 861.4652099609375, 867.5091552734375, 831.2454223632812, NaN, NaN], [824.3956298828125, 816.3369750976562, 811.90478515625, 783.2966918945312, NaN, NaN], [852.1978149414062, 813.5164794921875, 813.91943359375, 790.1465454101562, NaN, NaN], [814.3223266601562, 857.032958984375, 876.7765502929688, 842.5274658203125, NaN, NaN], [772.8204956054688, 863.8828125, 882.8204956054688, 817.1428833007812, NaN, NaN], [812.7106323242188, 823.5897216796875, 827.2161254882812, 774.8351440429688, NaN, NaN], [863.076904296875, 808.6813354492188, 805.8607788085938, 783.6996459960938, NaN, NaN], [837.2893676757812, 847.7655639648438, 860.6593627929688, 832.8571166992188, NaN, NaN], [791.3552856445312, 869.9267578125, 892.4908447265625, 839.3040161132812, NaN, NaN], [785.3113403320312, 834.4688720703125, 842.930419921875, 782.4908447265625, NaN, NaN], [826.00732421875, 809.084228515625, 809.4871826171875, 763.9560546875, NaN, NaN], [835.2747192382812, 835.6776733398438, 839.7069702148438, 803.040283203125, NaN, NaN], [782.087890625, 870.7326049804688, 883.2234497070312, 828.02197265625, NaN, NaN], [767.9853515625, 853.4066162109375, 858.2417602539062, 787.3259887695312, NaN, NaN], [821.97802734375, 812.7106323242188, 808.6813354492188, 774.8351440429688, NaN, NaN], [877.9853515625, 831.6483764648438, 839.7069702148438, 817.5457763671875, NaN, NaN], [822.3809814453125, 876.3735961914062, 893.6996459960938, 832.8571166992188, NaN, NaN], [754.2857055664062, 862.2710571289062, 872.3442993164062, 787.7289428710938, NaN, NaN], [811.098876953125, 817.1428833007812, 816.7399291992188, 758.3150024414062, NaN, NaN], [854.2124633789062, 816.3369750976562, 816.3369750976562, 794.981689453125, NaN, NaN], [820.7692260742188, 864.2857055664062, 870.7326049804688, 849.7802124023438, NaN, NaN], [765.1648559570312, 871.94140625, 882.0146484375, 818.7545776367188, NaN, NaN], [775.6410522460938, 826.00732421875, 827.2161254882812, 759.5238037109375, NaN, NaN], [843.3333129882812, 814.3223266601562, 815.5311279296875, 772.8204956054688, NaN, NaN], [821.97802734375, 848.974365234375, 861.4652099609375, 815.1282348632812, NaN, NaN], [759.9267578125, 867.106201171875, 882.0146484375, 825.6043701171875, NaN, NaN], [763.9560546875, 838.4981689453125, 844.1392211914062, 778.05859375, NaN, NaN], [827.2161254882812, 810.6959838867188, 808.6813354492188, 762.7472534179688, NaN, NaN], [860.2564086914062, 836.08056640625, 841.7216186523438, 816.7399291992188, NaN, NaN], [792.967041015625, 866.7033081054688, 879.5970458984375, 836.886474609375, NaN, NaN], [759.9267578125, 849.3773193359375, 863.076904296875, 805.4578857421875, NaN, NaN], [820.7692260742188, 815.93408203125, 819.5604248046875, 777.6557006835938, NaN, NaN], [862.2710571289062, 826.00732421875, 824.3956298828125, 796.1904907226562, NaN, NaN], [804.2490844726562, 867.5091552734375, 873.1502075195312, 827.2161254882812, NaN, NaN], [763.9560546875, 867.912109375, 871.5384521484375, 810.6959838867188, NaN, NaN], [819.1575317382812, 826.8131713867188, 821.97802734375, 776.8497924804688, NaN, NaN], [849.3773193359375, 817.1428833007812, 807.87548828125, 794.1758422851562, NaN, NaN], [815.93408203125, 856.6300659179688, 859.4505615234375, 832.8571166992188, NaN, NaN], [774.8351440429688, 873.1502075195312, 884.8351440429688, 831.6483764648438, NaN, NaN], [797.8021850585938, 834.4688720703125, 834.4688720703125, 787.3259887695312, NaN, NaN], [848.974365234375, 810.2930297851562, 801.025634765625, 767.1795043945312, NaN, NaN], [844.5421142578125, 841.7216186523438, 844.5421142578125, 809.4871826171875, NaN, NaN], [785.7142944335938, 869.5238037109375, 882.0146484375, 826.8131713867188, NaN, NaN], [782.893798828125, 847.7655639648438, 846.1538696289062, 790.5494384765625, NaN, NaN], [832.8571166992188, 817.94873046875, 803.040283203125, 782.087890625, NaN, NaN], [851.3919677734375, 836.08056640625, 824.3956298828125, 804.6520385742188, NaN, NaN], [800.2197875976562, 875.1648559570312, 871.1355590820312, 832.4542236328125, NaN, NaN], [769.5970458984375, 863.076904296875, 855.8241577148438, 801.8314819335938, NaN, NaN], [823.99267578125, 822.3809814453125, 807.87548828125, 762.7472534179688, NaN, NaN], [850.5860595703125, 828.02197265625, 817.94873046875, 802.6373901367188, NaN, NaN], [796.996337890625, 870.7326049804688, 870.3296508789062, 847.3626098632812, NaN, NaN], [750.6593627929688, 870.7326049804688, 863.4798583984375, 839.3040161132812, NaN, NaN], [801.4285888671875, 827.6190185546875, 808.6813354492188, 782.893798828125, NaN, NaN], [874.7619018554688, 819.1575317382812, 807.87548828125, 776.4468994140625, NaN, NaN], [844.5421142578125, 860.2564086914062, 867.106201171875, 837.6923217773438, NaN, NaN], [759.9267578125, 874.7619018554688, 882.8204956054688, 842.12451171875, NaN, NaN], [773.6264038085938, 835.2747192382812, 827.2161254882812, 780.0732421875, NaN, NaN], [841.7216186523438, 812.7106323242188, 797.8021850585938, 763.5531005859375, NaN, NaN], [850.1831665039062, 843.3333129882812, 836.886474609375, 820.7692260742188, NaN, NaN], [794.5787353515625, 874.3589477539062, 875.1648559570312, 853.003662109375, NaN, NaN], [778.8644409179688, 850.1831665039062, 842.5274658203125, 807.87548828125, NaN, NaN], [846.1538696289062, 822.3809814453125, 802.6373901367188, 774.4322509765625, NaN, NaN], [863.4798583984375, 838.901123046875, 826.4102783203125, 790.952392578125, NaN, NaN], [789.3406372070312, 867.912109375, 870.3296508789062, 823.99267578125, NaN, NaN], [756.3003540039062, 859.4505615234375, 859.4505615234375, 813.5164794921875, NaN, NaN], [804.6520385742188, 823.99267578125, 807.87548828125, 763.1502075195312, NaN, NaN], [862.2710571289062, 827.6190185546875, 809.4871826171875, 782.087890625, NaN, NaN], [828.02197265625, 869.120849609375, 863.4798583984375, 840.915771484375, NaN, NaN], [777.6557006835938, 876.3735961914062, 869.5238037109375, 838.901123046875, NaN, NaN], [821.1721801757812, 842.12451171875, 815.5311279296875, 805.8607788085938, NaN, NaN], [863.4798583984375, 829.2307739257812, 793.3699340820312, 792.1611938476562, NaN, NaN], [841.7216186523438, 859.047607421875, 833.6630249023438, 814.7252807617188, NaN, NaN], [795.3846435546875, 879.1941528320312, 857.4359130859375, 829.2307739257812, NaN, NaN], [799.8168334960938, 844.1392211914062, 811.5018310546875, 806.2637329101562, NaN, NaN], [857.4359130859375, 814.7252807617188, 784.908447265625, 813.113525390625, NaN, NaN], [870.7326049804688, 843.3333129882812, 824.3956298828125, 834.8717651367188, NaN, NaN], [807.4725341796875, 880.4029541015625, 867.106201171875, 846.959716796875, NaN, NaN], [788.1318969726562, 857.8388061523438, 844.5421142578125, 819.1575317382812, NaN, NaN], [837.2893676757812, 815.93408203125, 795.3846435546875, 785.7142944335938, NaN, NaN], [894.1025390625, 832.8571166992188, 811.90478515625, 815.1282348632812, NaN, NaN], [864.2857055664062, 875.970703125, 863.4798583984375, 854.6153564453125, NaN, NaN], [770.8058471679688, 863.8828125, 850.5860595703125, 813.91943359375, NaN, NaN], [790.5494384765625, 818.7545776367188, 794.981689453125, 762.3442993164062, NaN, NaN], [851.3919677734375, 817.1428833007812, 791.7582397460938, 781.6849975585938, NaN, NaN], [824.7985229492188, 865.091552734375, 853.4066162109375, 840.5128173828125, NaN, NaN], [774.8351440429688, 876.7765502929688, 869.120849609375, 837.2893676757812, NaN, NaN], [803.8461303710938, 826.00732421875, 805.054931640625, 770.0, NaN, NaN], [858.2417602539062, 807.87548828125, 784.5054931640625, 765.970703125, NaN, NaN], [837.6923217773438, 850.5860595703125, 839.7069702148438, 824.3956298828125, NaN, NaN], [775.2380981445312, 877.9853515625, 871.1355590820312, 844.1392211914062, NaN, NaN], [767.5823974609375, 845.3479614257812, 828.4249267578125, 790.1465454101562, NaN, NaN], [843.3333129882812, 816.3369750976562, 789.7435913085938, 768.7911987304688, NaN, NaN], [885.2380981445312, 842.12451171875, 818.7545776367188, 819.5604248046875, NaN, NaN], [799.4139404296875, 871.5384521484375, 864.6886596679688, 848.5714111328125, NaN, NaN], [756.7033081054688, 851.7948608398438, 846.959716796875, 813.91943359375, NaN, NaN], [830.4395751953125, 817.5457763671875, 801.8314819335938, 780.879150390625, NaN, NaN], [874.3589477539062, 828.02197265625, 820.3662719726562, 808.2783813476562, NaN, NaN], [811.5018310546875, 865.8974609375, 871.5384521484375, 839.3040161132812, NaN, NaN], [759.120849609375, 860.2564086914062, 863.4798583984375, 798.2051391601562, NaN, NaN], [803.8461303710938, 815.5311279296875, 809.084228515625, 755.091552734375, NaN, NaN], [856.2271118164062, 810.6959838867188, 809.4871826171875, 781.2820434570312, NaN, NaN], [817.5457763671875, 850.989013671875, 855.4212646484375, 819.5604248046875, NaN, NaN], [747.4359130859375, 863.8828125, 866.3003540039062, 814.7252807617188, NaN, NaN], [775.6410522460938, 828.8278198242188, 822.3809814453125, 786.1171875, NaN, NaN], [853.003662109375, 809.084228515625, 801.8314819335938, 778.05859375, NaN, NaN], [850.989013671875, 841.7216186523438, 842.930419921875, 805.4578857421875, NaN, NaN], [787.7289428710938, 868.7179565429688, 869.9267578125, 823.1868286132812, NaN, NaN], [783.2966918945312, 845.7509155273438, 838.4981689453125, 788.5347900390625, NaN, NaN], [834.8717651367188, 811.5018310546875, 797.8021850585938, 761.5384521484375, NaN, NaN], [844.945068359375, 826.00732421875, 815.93408203125, 796.1904907226562, NaN, NaN], [792.1611938476562, 866.7033081054688, 869.9267578125, 836.4835205078125, NaN, NaN], [755.091552734375, 853.4066162109375, 852.1978149414062, 798.2051391601562, NaN, NaN], [807.069580078125, 813.5164794921875, 797.8021850585938, 762.7472534179688, NaN, NaN], [844.5421142578125, 818.7545776367188, 810.2930297851562, 793.3699340820312, NaN, NaN], [802.2344360351562, 859.8534545898438, 866.3003540039062, 832.8571166992188, NaN, NaN], [759.9267578125, 864.6886596679688, 868.7179565429688, 825.2014770507812, NaN, NaN], [788.937744140625, 819.1575317382812, 810.2930297851562, 778.05859375, NaN, NaN], [839.3040161132812, 807.069580078125, 796.5933837890625, 756.7033081054688, NaN, NaN], [817.1428833007812, 849.3773193359375, 848.5714111328125, 792.1611938476562, NaN, NaN], [760.7326049804688, 866.7033081054688, 869.120849609375, 815.5311279296875, NaN, NaN], [773.6264038085938, 834.06591796875, 826.8131713867188, 772.8204956054688, NaN, NaN], [841.7216186523438, 815.93408203125, 803.040283203125, 763.1502075195312, NaN, NaN], [855.8241577148438, 847.7655639648438, 844.1392211914062, 812.3076782226562, NaN, NaN], [797.3992919921875, 877.9853515625, 884.8351440429688, 843.7362670898438, NaN, NaN], [766.7765502929688, 850.5860595703125, 844.1392211914062, 797.8021850585938, NaN, NaN], [817.5457763671875, 815.5311279296875, 800.2197875976562, 754.2857055664062, NaN, NaN], [847.7655639648438, 832.4542236328125, 827.6190185546875, 780.879150390625, NaN, NaN], [793.7728881835938, 869.5238037109375, 867.912109375, 811.90478515625, NaN, NaN], [759.5238037109375, 864.2857055664062, 854.6153564453125, 802.6373901367188, NaN, NaN], [817.5457763671875, 818.3516235351562, 801.4285888671875, 762.7472534179688, NaN, NaN], [867.912109375, 819.1575317382812, 812.7106323242188, 783.6996459960938, NaN, NaN], [820.7692260742188, 866.3003540039062, 873.9560546875, 835.2747192382812, NaN, NaN], [755.4945068359375, 863.8828125, 868.3150024414062, 830.8424682617188, NaN, NaN], [797.3992919921875, 818.7545776367188, 812.3076782226562, 776.8497924804688, NaN, NaN], [857.8388061523438, 811.5018310546875, 801.4285888671875, 762.7472534179688, NaN, NaN], [813.91943359375, 850.5860595703125, 851.7948608398438, 828.02197265625, NaN, NaN], [754.6886596679688, 868.7179565429688, 877.9853515625, 864.2857055664062, NaN, NaN], [779.6703491210938, 836.08056640625, 835.6776733398438, 808.6813354492188, NaN, NaN], [847.3626098632812, 812.3076782226562, 805.8607788085938, 780.0732421875, NaN, NaN], [848.1685180664062, 840.5128173828125, 842.5274658203125, 813.91943359375, NaN, NaN], [793.7728881835938, 874.3589477539062, 884.029296875, 845.3479614257812, NaN, NaN], [786.5201416015625, 850.5860595703125, 849.7802124023438, 804.2490844726562, NaN, NaN], [834.4688720703125, 813.91943359375, 799.8168334960938, 762.3442993164062, NaN, NaN], [852.1978149414062, 832.4542236328125, 818.7545776367188, 782.087890625, NaN, NaN], [805.054931640625, 873.1502075195312, 865.091552734375, 822.3809814453125, NaN, NaN], [772.8204956054688, 867.912109375, 858.2417602539062, 823.5897216796875, NaN, NaN], [821.5750732421875, 828.8278198242188, 817.94873046875, 780.879150390625, NaN, NaN], [863.076904296875, 823.1868286132812, 817.5457763671875, 782.087890625, NaN, NaN], [840.915771484375, 860.2564086914062, 861.4652099609375, 828.02197265625, NaN, NaN], [795.3846435546875, 877.1795043945312, 875.970703125, 830.03662109375, NaN, NaN], [796.996337890625, 836.886474609375, 826.00732421875, 770.0, NaN, NaN], [856.2271118164062, 817.94873046875, 807.87548828125, 774.4322509765625, NaN, NaN], [851.7948608398438, 854.6153564453125, 851.3919677734375, 837.6923217773438, NaN, NaN], [778.4615478515625, 875.1648559570312, 877.5823974609375, 850.1831665039062, NaN, NaN], [765.1648559570312, 846.1538696289062, 840.10986328125, 798.2051391601562, NaN, NaN], [830.8424682617188, 814.3223266601562, 798.6080322265625, 771.2088012695312, NaN, NaN], [857.8388061523438, 831.6483764648438, 829.2307739257812, 813.5164794921875, NaN, NaN], [807.87548828125, 863.076904296875, 877.1795043945312, 844.945068359375, NaN, NaN], [787.3259887695312, 846.959716796875, 853.4066162109375, 803.4432373046875, NaN, NaN], [830.4395751953125, 813.5164794921875, 799.010986328125, 772.0146484375, NaN, NaN], [841.3186645507812, 821.5750732421875, 808.6813354492188, 797.3992919921875, NaN, NaN], [790.1465454101562, 859.047607421875, 871.1355590820312, 839.3040161132812, NaN, NaN], [757.106201171875, 859.047607421875, 869.120849609375, 826.8131713867188, NaN, NaN], [800.6226806640625, 821.1721801757812, 813.91943359375, 780.879150390625, NaN, NaN], [854.2124633789062, 816.3369750976562, 811.5018310546875, 793.7728881835938, NaN, NaN], [836.886474609375, 853.4066162109375, 855.8241577148438, 834.4688720703125, NaN, NaN], [787.3259887695312, 867.912109375, 869.120849609375, 830.8424682617188, NaN, NaN], [784.908447265625, 832.05126953125, 822.7838745117188, 773.6264038085938, NaN, NaN], [842.930419921875, 813.91943359375, 802.6373901367188, 764.7619018554688, NaN, NaN], [852.1978149414062, 853.8095092773438, 855.8241577148438, 816.7399291992188, NaN, NaN], [770.8058471679688, 875.970703125, 882.4176025390625, 826.00732421875, NaN, NaN], [746.2271118164062, 840.10986328125, 836.4835205078125, 773.2234497070312, NaN, NaN], [822.7838745117188, 813.5164794921875, 800.2197875976562, 750.2564086914062, NaN, NaN], [853.4066162109375, 836.4835205078125, 831.2454223632812, 794.5787353515625, NaN, NaN], [805.8607788085938, 872.7472534179688, 882.0146484375, 838.901123046875, NaN, NaN], [780.4761962890625, 861.062255859375, 865.091552734375, 818.7545776367188, NaN, NaN], [853.8095092773438, 828.4249267578125, 817.94873046875, 788.937744140625, NaN, NaN], [879.1941528320312, 826.00732421875, 815.93408203125, 803.040283203125, NaN, NaN], [798.2051391601562, 855.018310546875, 863.076904296875, 835.6776733398438, NaN, NaN], [757.5091552734375, 858.2417602539062, 875.970703125, 832.05126953125, NaN, NaN], [792.967041015625, 816.7399291992188, 822.7838745117188, 786.1171875, NaN, NaN], [844.5421142578125, 807.069580078125, 811.098876953125, 785.3113403320312, NaN, NaN], [830.8424682617188, 848.974365234375, 859.047607421875, 823.1868286132812, NaN, NaN], [780.0732421875, 866.7033081054688, 876.3735961914062, 813.91943359375, NaN, NaN], [786.5201416015625, 832.8571166992188, 832.4542236328125, 767.9853515625, NaN, NaN], [821.97802734375, 810.6959838867188, 800.2197875976562, 767.5823974609375, NaN, NaN], [830.4395751953125, 841.3186645507812, 837.2893676757812, 819.1575317382812, NaN, NaN], [788.1318969726562, 873.5531005859375, 877.1795043945312, 834.8717651367188, NaN, NaN], [759.5238037109375, 850.1831665039062, 844.1392211914062, 784.1025390625, NaN, NaN], [814.7252807617188, 813.5164794921875, 794.1758422851562, 748.2417602539062, NaN, NaN], [854.2124633789062, 827.6190185546875, 815.5311279296875, 786.1171875, NaN, NaN], [809.084228515625, 864.2857055664062, 866.3003540039062, 819.5604248046875, NaN, NaN], [772.4176025390625, 861.4652099609375, 860.6593627929688, 808.6813354492188, NaN, NaN], [810.6959838867188, 819.5604248046875, 805.4578857421875, 782.087890625, NaN, NaN], [853.8095092773438, 817.5457763671875, 796.5933837890625, 775.6410522460938, NaN, NaN], [812.7106323242188, 859.8534545898438, 856.2271118164062, 815.5311279296875, NaN, NaN], [752.2710571289062, 864.2857055664062, 873.1502075195312, 812.7106323242188, NaN, NaN], [795.7875366210938, 829.2307739257812, 824.3956298828125, 761.94140625, NaN, NaN], [865.8974609375, 813.5164794921875, 806.6666870117188, 780.4761962890625, NaN, NaN], [844.5421142578125, 848.974365234375, 855.018310546875, 841.3186645507812, NaN, NaN], [775.6410522460938, 874.3589477539062, 885.2380981445312, 836.886474609375, NaN, NaN], [776.8497924804688, 836.4835205078125, 830.03662109375, 772.4176025390625, NaN, NaN], [827.2161254882812, 806.6666870117188, 790.952392578125, 755.091552734375, NaN, NaN], [832.8571166992188, 833.2600708007812, 825.6043701171875, 799.4139404296875, NaN, NaN], [791.7582397460938, 862.6740112304688, 866.3003540039062, 830.4395751953125, NaN, NaN], [761.94140625, 843.7362670898438, 846.959716796875, 805.4578857421875, NaN, NaN], [804.6520385742188, 809.084228515625, 802.2344360351562, 770.0, NaN, NaN], [846.5567626953125, 824.7985229492188, 820.3662719726562, 793.3699340820312, NaN, NaN], [785.7142944335938, 863.4798583984375, 868.7179565429688, 836.08056640625, NaN, NaN], [751.4652099609375, 857.032958984375, 858.2417602539062, 815.5311279296875, NaN, NaN], [810.2930297851562, 813.91943359375, 795.3846435546875, 767.1795043945312, NaN, NaN], [855.4212646484375, 811.5018310546875, 792.1611938476562, 776.4468994140625, NaN, NaN], [817.5457763671875, 857.8388061523438, 858.2417602539062, 830.4395751953125, NaN, NaN], [748.6447143554688, 866.3003540039062, 871.5384521484375, 828.4249267578125, NaN, NaN], [773.2234497070312, 824.7985229492188, 818.3516235351562, 758.7179565429688, NaN, NaN], [856.2271118164062, 813.5164794921875, 806.2637329101562, 752.2710571289062, NaN, NaN], [845.3479614257812, 847.7655639648438, 847.7655639648438, 808.6813354492188, NaN, NaN], [765.970703125, 870.3296508789062, 867.912109375, 828.02197265625, NaN, NaN], [755.4945068359375, 844.1392211914062, 834.8717651367188, 796.5933837890625, NaN, NaN], [819.96337890625, 815.1282348632812, 806.2637329101562, 768.3883056640625, NaN, NaN], [831.6483764648438, 838.901123046875, 836.886474609375, 794.1758422851562, NaN, NaN], [770.0, 872.3442993164062, 874.3589477539062, 832.8571166992188, NaN, NaN], [765.970703125, 861.8681030273438, 856.2271118164062, 794.1758422851562, NaN, NaN], [827.6190185546875, 828.8278198242188, 813.113525390625, 754.2857055664062, NaN, NaN], [857.8388061523438, 833.6630249023438, 822.7838745117188, 779.6703491210938, NaN, NaN], [797.8021850585938, 869.5238037109375, 872.7472534179688, 822.3809814453125, NaN, NaN], [751.062255859375, 865.4945068359375, 865.4945068359375, 816.3369750976562, NaN, NaN], [801.025634765625, 828.4249267578125, 811.5018310546875, 776.4468994140625, NaN, NaN], [851.3919677734375, 823.1868286132812, 805.8607788085938, 786.1171875, NaN, NaN], [823.1868286132812, 857.4359130859375, 856.2271118164062, 839.3040161132812, NaN, NaN], [774.029296875, 871.5384521484375, 882.0146484375, 840.5128173828125, NaN, NaN], [779.6703491210938, 836.08056640625, 840.5128173828125, 775.2380981445312, NaN, NaN], [853.003662109375, 816.3369750976562, 805.4578857421875, 761.5384521484375, NaN, NaN], [850.5860595703125, 850.989013671875, 845.3479614257812, 814.3223266601562, NaN, NaN], [772.0146484375, 875.5677490234375, 880.0, 838.901123046875, NaN, NaN], [770.8058471679688, 846.5567626953125, 847.7655639648438, 793.3699340820312, NaN, NaN], [828.4249267578125, 815.1282348632812, 814.3223266601562, 771.6116943359375, NaN, NaN], [855.018310546875, 832.05126953125, 832.8571166992188, 804.6520385742188, NaN, NaN], [800.6226806640625, 871.94140625, 878.3883056640625, 837.2893676757812, NaN, NaN], [765.5677490234375, 858.2417602539062, 860.2564086914062, 801.8314819335938, NaN, NaN], [807.4725341796875, 811.098876953125, 805.4578857421875, 758.3150024414062, NaN, NaN], [851.7948608398438, 819.96337890625, 818.3516235351562, 782.087890625, NaN, NaN], [809.89013671875, 864.2857055664062, 871.94140625, 818.7545776367188, NaN, NaN], [753.076904296875, 864.6886596679688, 870.3296508789062, 812.7106323242188, NaN, NaN], [787.3259887695312, 823.5897216796875, 817.5457763671875, 772.0146484375, NaN, NaN], [854.2124633789062, 817.1428833007812, 812.3076782226562, 777.2527465820312, NaN, NaN], [832.05126953125, 850.989013671875, 862.2710571289062, 833.2600708007812, NaN, NaN], [762.3442993164062, 864.6886596679688, 876.7765502929688, 840.10986328125, NaN, NaN], [778.4615478515625, 834.8717651367188, 831.6483764648438, 795.7875366210938, NaN, NaN], [847.3626098632812, 809.89013671875, 800.6226806640625, 773.6264038085938, NaN, NaN], [843.7362670898438, 840.915771484375, 831.2454223632812, 805.4578857421875, NaN, NaN], [761.1355590820312, 867.5091552734375, 864.6886596679688, 834.06591796875, NaN, NaN], [753.8828125, 839.7069702148438, 842.930419921875, 799.010986328125, NaN, NaN], [832.05126953125, 813.5164794921875, 814.7252807617188, 770.4029541015625, NaN, NaN], [851.7948608398438, 833.2600708007812, 840.5128173828125, 799.8168334960938, NaN, NaN], [776.0439453125, 864.6886596679688, 875.5677490234375, 824.7985229492188, NaN, NaN], [775.2380981445312, 860.6593627929688, 863.4798583984375, 805.054931640625, NaN, NaN], [831.2454223632812, 822.3809814453125, 817.1428833007812, 764.3589477539062, NaN, NaN], [853.003662109375, 820.3662719726562, 819.96337890625, 782.893798828125, NaN, NaN], [821.1721801757812, 862.2710571289062, 873.1502075195312, 842.930419921875, NaN, NaN], [763.9560546875, 867.5091552734375, 879.5970458984375, 840.915771484375, NaN, NaN], [786.923095703125, 828.8278198242188, 832.05126953125, 786.923095703125, NaN, NaN], [851.3919677734375, 812.3076782226562, 813.113525390625, 769.5970458984375, NaN, NaN], [822.7838745117188, 842.930419921875, 851.3919677734375, 818.7545776367188, NaN, NaN], [755.8974609375, 866.3003540039062, 880.4029541015625, 850.5860595703125, NaN, NaN], [771.2088012695312, 836.886474609375, 837.6923217773438, 787.3259887695312, NaN, NaN], [837.2893676757812, 814.3223266601562, 802.2344360351562, 757.912109375, NaN, NaN], [853.003662109375, 838.4981689453125, 835.6776733398438, 812.3076782226562, NaN, NaN], [790.952392578125, 869.5238037109375, 884.029296875, 855.4212646484375, NaN, NaN], [758.7179565429688, 850.1831665039062, 861.062255859375, 818.3516235351562, NaN, NaN], [823.99267578125, 809.4871826171875, 806.2637329101562, 777.2527465820312, NaN, NaN], [877.9853515625, 825.6043701171875, 829.6337280273438, 820.7692260742188, NaN, NaN], [828.8278198242188, 873.1502075195312, 888.4615478515625, 870.3296508789062, NaN, NaN], [770.0, 869.120849609375, 875.5677490234375, 823.99267578125, NaN, NaN], [818.3516235351562, 828.02197265625, 825.2014770507812, 778.05859375, NaN, NaN], [867.912109375, 823.99267578125, 825.2014770507812, 796.5933837890625, NaN, NaN], [830.4395751953125, 869.120849609375, 881.2088012695312, 840.915771484375, NaN, NaN], [782.087890625, 882.4176025390625, 896.1171875, 842.5274658203125, NaN, NaN], [803.040283203125, 833.6630249023438, 833.6630249023438, 780.0732421875, NaN, NaN], [864.2857055664062, 817.5457763671875, 814.7252807617188, 774.8351440429688, NaN, NaN], [857.8388061523438, 855.4212646484375, 861.062255859375, 819.96337890625, NaN, NaN], [786.1171875, 878.3883056640625, 884.4322509765625, 844.1392211914062, NaN, NaN], [779.2673950195312, 847.3626098632812, 843.3333129882812, 821.1721801757812, NaN, NaN], [848.974365234375, 821.97802734375, 810.6959838867188, 792.967041015625, NaN, NaN], [871.5384521484375, 848.974365234375, 853.4066162109375, 825.2014770507812, NaN, NaN], [813.91943359375, 878.3883056640625, 896.1171875, 863.4798583984375, NaN, NaN], [775.6410522460938, 854.2124633789062, 867.106201171875, 818.3516235351562, NaN, NaN], [830.8424682617188, 818.3516235351562, 820.3662719726562, 776.4468994140625, NaN, NaN], [869.5238037109375, 827.2161254882812, 831.2454223632812, 809.084228515625, NaN, NaN], [807.87548828125, 861.4652099609375, 875.970703125, 846.5567626953125, NaN, NaN], [765.970703125, 862.6740112304688, 873.1502075195312, 821.1721801757812, NaN, NaN], [823.1868286132812, 827.6190185546875, 823.99267578125, 773.6264038085938, NaN, NaN], [884.4322509765625, 820.7692260742188, 814.3223266601562, 782.4908447265625, NaN, NaN], [819.1575317382812, 857.032958984375, 858.6447143554688, 828.4249267578125, NaN, NaN], [753.076904296875, 867.912109375, 870.7326049804688, 829.6337280273438, NaN, NaN], [783.6996459960938, 830.8424682617188, 828.4249267578125, 786.1171875, NaN, NaN], [846.1538696289062, 813.91943359375, 809.4871826171875, 796.1904907226562, NaN, NaN], [840.915771484375, 846.5567626953125, 846.959716796875, 832.05126953125, NaN, NaN], [786.923095703125, 869.5238037109375, 873.9560546875, 825.2014770507812, NaN, NaN], [805.054931640625, 846.5567626953125, 845.3479614257812, 787.7289428710938, NaN, NaN], [861.8681030273438, 821.5750732421875, 815.93408203125, 778.05859375, NaN, NaN], [839.7069702148438, 831.2454223632812, 823.1868286132812, 796.1904907226562, NaN, NaN], [773.2234497070312, 861.4652099609375, 863.8828125, 833.2600708007812, NaN, NaN], [755.091552734375, 849.7802124023438, 859.047607421875, 814.7252807617188, NaN, NaN], [792.1611938476562, 809.084228515625, 813.91943359375, 770.0, NaN, NaN], [830.8424682617188, 812.7106323242188, 822.7838745117188, 793.3699340820312, NaN, NaN], [797.3992919921875, 854.6153564453125, 873.5531005859375, 842.12451171875, NaN, NaN], [758.3150024414062, 861.062255859375, 877.1795043945312, 842.5274658203125, NaN, NaN], [795.7875366210938, 818.3516235351562, 823.99267578125, 790.1465454101562, NaN, NaN], [846.1538696289062, 807.87548828125, 804.6520385742188, 781.6849975585938, NaN, NaN], [832.05126953125, 848.974365234375, 853.003662109375, 835.6776733398438, NaN, NaN], [774.029296875, 861.8681030273438, 874.7619018554688, 839.3040161132812, NaN, NaN], [760.3296508789062, 824.3956298828125, 830.8424682617188, 780.0732421875, NaN, NaN], [821.5750732421875, 803.8461303710938, 807.87548828125, 771.2088012695312, NaN, NaN], [839.3040161132812, 832.8571166992188, 840.10986328125, 805.054931640625, NaN, NaN], [798.2051391601562, 868.3150024414062, 881.2088012695312, 827.6190185546875, NaN, NaN], [773.6264038085938, 838.901123046875, 842.930419921875, 785.7142944335938, NaN, NaN], [814.3223266601562, 798.6080322265625, 788.937744140625, 754.2857055664062, NaN, NaN], [847.7655639648438, 817.1428833007812, 819.96337890625, 804.2490844726562, NaN, NaN], [808.2783813476562, 855.4212646484375, 867.912109375, 839.7069702148438, NaN, NaN], [761.5384521484375, 850.989013671875, 859.8534545898438, 799.4139404296875, NaN, NaN], [796.5933837890625, 811.098876953125, 809.4871826171875, 740.1831665039062, NaN, NaN], [858.2417602539062, 818.7545776367188, 815.1282348632812, 774.029296875, NaN, NaN], [815.1282348632812, 862.2710571289062, 867.106201171875, 845.7509155273438, NaN, NaN], [749.047607421875, 863.8828125, 866.7033081054688, 823.99267578125, NaN, NaN], [776.0439453125, 825.2014770507812, 818.7545776367188, 771.2088012695312, NaN, NaN], [849.3773193359375, 815.5311279296875, 809.084228515625, 777.2527465820312, NaN, NaN], [840.915771484375, 849.7802124023438, 854.6153564453125, 831.6483764648438, NaN, NaN], [767.5823974609375, 862.6740112304688, 875.970703125, 856.6300659179688, NaN, NaN], [771.6116943359375, 830.8424682617188, 834.4688720703125, 801.8314819335938, NaN, NaN], [828.8278198242188, 811.098876953125, 805.054931640625, 773.2234497070312, NaN, NaN], [823.5897216796875, 835.2747192382812, 832.8571166992188, 810.6959838867188, NaN, NaN], [770.4029541015625, 863.8828125, 869.120849609375, 847.7655639648438, NaN, NaN], [749.8534545898438, 839.3040161132812, 844.945068359375, 797.3992919921875, NaN, NaN], [815.1282348632812, 802.6373901367188, 802.2344360351562, 751.8681030273438, NaN, NaN], [856.2271118164062, 817.94873046875, 820.7692260742188, 790.952392578125, NaN, NaN], [805.8607788085938, 855.4212646484375, 859.4505615234375, 823.99267578125, NaN, NaN], [761.94140625, 851.7948608398438, 848.974365234375, 806.2637329101562, NaN, NaN], [801.8314819335938, 817.5457763671875, 812.7106323242188, 781.2820434570312, NaN, NaN], [845.7509155273438, 813.113525390625, 809.4871826171875, 774.8351440429688, NaN, NaN], [805.8607788085938, 850.1831665039062, 859.047607421875, 822.3809814453125, NaN, NaN], [755.8974609375, 863.4798583984375, 871.94140625, 840.10986328125, NaN, NaN], [790.1465454101562, 827.6190185546875, 819.1575317382812, 774.029296875, NaN, NaN], [850.5860595703125, 810.2930297851562, 799.8168334960938, 756.7033081054688, NaN, NaN], [832.8571166992188, 837.2893676757812, 841.3186645507812, 809.89013671875, NaN, NaN], [769.5970458984375, 853.003662109375, 867.912109375, 823.1868286132812, NaN, NaN], [762.3442993164062, 823.5897216796875, 834.06591796875, 775.6410522460938, NaN, NaN], [815.1282348632812, 795.7875366210938, 794.1758422851562, 745.8241577148438, NaN, NaN], [828.8278198242188, 816.7399291992188, 822.3809814453125, 786.923095703125, NaN, NaN], [772.0146484375, 848.5714111328125, 863.4798583984375, 831.2454223632812, NaN, NaN], [754.6886596679688, 832.05126953125, 841.7216186523438, 808.2783813476562, NaN, NaN], [804.2490844726562, 801.025634765625, 803.8461303710938, 784.1025390625, NaN, NaN], [835.6776733398438, 814.3223266601562, 819.5604248046875, 805.054931640625, NaN, NaN], [804.2490844726562, 856.2271118164062, 871.1355590820312, 836.886474609375, NaN, NaN], [758.7179565429688, 853.003662109375, 869.5238037109375, 819.96337890625, NaN, NaN], [807.87548828125, 819.96337890625, 826.8131713867188, 779.6703491210938, NaN, NaN], [865.091552734375, 823.1868286132812, 818.7545776367188, 804.2490844726562, NaN, NaN], [826.8131713867188, 858.6447143554688, 861.4652099609375, 844.5421142578125, NaN, NaN], [780.0732421875, 869.5238037109375, 885.6410522460938, 842.5274658203125, NaN, NaN], [803.4432373046875, 830.8424682617188, 838.901123046875, 789.7435913085938, NaN, NaN], [845.7509155273438, 811.098876953125, 814.7252807617188, 778.4615478515625, NaN, NaN], [835.2747192382812, 850.989013671875, 863.8828125, 836.08056640625, NaN, NaN], [782.4908447265625, 874.3589477539062, 888.8644409179688, 849.7802124023438, NaN, NaN], [762.7472534179688, 840.10986328125, 844.945068359375, 791.3552856445312, NaN, NaN], [822.7838745117188, 813.91943359375, 812.7106323242188, 769.1941528320312, NaN, NaN], [846.1538696289062, 834.8717651367188, 838.09521484375, 809.4871826171875, NaN, NaN], [789.7435913085938, 867.912109375, 878.7911987304688, 836.886474609375, NaN, NaN], [765.5677490234375, 854.6153564453125, 863.4798583984375, 808.6813354492188, NaN, NaN], [809.084228515625, 819.96337890625, 821.1721801757812, 775.6410522460938, NaN, NaN], [837.6923217773438, 828.4249267578125, 826.8131713867188, 795.7875366210938, NaN, NaN], [799.4139404296875, 862.2710571289062, 865.8974609375, 834.06591796875, NaN, NaN], [746.2271118164062, 860.6593627929688, 865.8974609375, 817.94873046875, NaN, NaN], [797.3992919921875, 823.1868286132812, 818.7545776367188, 765.5677490234375, NaN, NaN], [857.8388061523438, 815.5311279296875, 806.6666870117188, 775.2380981445312, NaN, NaN], [797.8021850585938, 849.3773193359375, 850.5860595703125, 822.3809814453125, NaN, NaN], [745.018310546875, 859.4505615234375, 870.7326049804688, 825.6043701171875, NaN, NaN], [782.087890625, 826.00732421875, 836.08056640625, 789.3406372070312, NaN, NaN], [840.5128173828125, 807.069580078125, 813.5164794921875, 767.5823974609375, NaN, NaN], [832.8571166992188, 833.6630249023438, 846.5567626953125, 803.4432373046875, NaN, NaN], [771.6116943359375, 865.091552734375, 882.4176025390625, 846.1538696289062, NaN, NaN], [760.3296508789062, 845.3479614257812, 853.4066162109375, 807.87548828125, NaN, NaN], [817.5457763671875, 805.8607788085938, 807.4725341796875, 767.5823974609375, NaN, NaN], [850.5860595703125, 816.7399291992188, 820.3662719726562, 794.981689453125, NaN, NaN], [790.952392578125, 859.4505615234375, 865.091552734375, 838.901123046875, NaN, NaN], [748.6447143554688, 861.062255859375, 857.4359130859375, 813.5164794921875, NaN, NaN], [811.90478515625, 821.1721801757812, 799.4139404296875, 769.5970458984375, NaN, NaN], [856.6300659179688, 816.7399291992188, 794.981689453125, 776.4468994140625, NaN, NaN], [815.1282348632812, 855.8241577148438, 857.032958984375, 829.6337280273438, NaN, NaN], [762.7472534179688, 861.062255859375, 868.3150024414062, 830.03662109375, NaN, NaN], [793.3699340820312, 824.3956298828125, 818.7545776367188, 767.9853515625, NaN, NaN], [863.076904296875, 815.5311279296875, 805.054931640625, 775.6410522460938, NaN, NaN], [868.3150024414062, 854.2124633789062, 857.8388061523438, 848.1685180664062, NaN, NaN], [802.6373901367188, 876.3735961914062, 889.6703491210938, 867.912109375, NaN, NaN], [782.087890625, 839.3040161132812, 840.5128173828125, 794.1758422851562, NaN, NaN], [847.3626098632812, 808.2783813476562, 811.098876953125, 776.4468994140625, NaN, NaN], [857.4359130859375, 832.4542236328125, 853.8095092773438, 847.7655639648438, NaN, NaN], [780.879150390625, 860.2564086914062, 893.2966918945312, 874.3589477539062, NaN, NaN], [758.3150024414062, 838.09521484375, 874.7619018554688, 817.1428833007812, NaN, NaN], [821.5750732421875, 802.2344360351562, 837.6923217773438, 776.0439453125, NaN, NaN], [851.3919677734375, 813.5164794921875, 853.4066162109375, 807.069580078125, NaN, NaN], [787.7289428710938, 848.974365234375, 895.3113403320312, 844.945068359375, NaN, NaN], [750.2564086914062, 845.7509155273438, 888.8644409179688, 815.1282348632812, NaN, NaN], [803.040283203125, 804.6520385742188, 840.915771484375, 763.1502075195312, NaN, NaN], [845.3479614257812, 805.8607788085938, 832.8571166992188, 786.5201416015625, NaN, NaN], [812.3076782226562, 851.3919677734375, 877.9853515625, 854.6153564453125, NaN, NaN], [752.2710571289062, 856.6300659179688, 886.4468994140625, 840.915771484375, NaN, NaN], [781.2820434570312, 819.1575317382812, 840.5128173828125, 768.3883056640625, NaN, NaN], [858.6447143554688, 810.2930297851562, 834.06591796875, 782.4908447265625, NaN, NaN], [846.1538696289062, 842.930419921875, 873.9560546875, 830.4395751953125, NaN, NaN], [757.912109375, 859.8534545898438, 884.029296875, 833.6630249023438, NaN, NaN], [753.8828125, 830.8424682617188, 845.3479614257812, 785.7142944335938, NaN, NaN], [821.5750732421875, 802.2344360351562, 816.7399291992188, 752.6740112304688, NaN, NaN], [841.7216186523438, 823.99267578125, 847.7655639648438, 800.2197875976562, NaN, NaN], [788.1318969726562, 858.6447143554688, 887.6557006835938, 829.2307739257812, NaN, NaN], [754.2857055664062, 845.3479614257812, 868.7179565429688, 780.879150390625, NaN, NaN], [808.6813354492188, 809.89013671875, 828.4249267578125, 744.6153564453125, NaN, NaN], [838.09521484375, 818.3516235351562, 836.886474609375, 777.6557006835938, NaN, NaN], [778.05859375, 854.6153564453125, 872.3442993164062, 830.4395751953125, NaN, NaN], [723.6630249023438, 851.7948608398438, 867.5091552734375, 817.1428833007812, NaN, NaN], [765.5677490234375, 815.1282348632812, 822.3809814453125, 755.4945068359375, NaN, NaN], [832.4542236328125, 813.5164794921875, 817.94873046875, 761.94140625, NaN, NaN], [811.5018310546875, 852.6007080078125, 866.3003540039062, 817.5457763671875, NaN, NaN], [780.879150390625, 868.3150024414062, 886.0439453125, 825.2014770507812, NaN, NaN], [815.1282348632812, 832.8571166992188, 843.3333129882812, 784.5054931640625, NaN, NaN], [847.7655639648438, 805.054931640625, 808.6813354492188, 768.7911987304688, NaN, NaN], [812.7106323242188, 834.4688720703125, 845.3479614257812, 821.97802734375, NaN, NaN], [739.7802124023438, 860.6593627929688, 874.3589477539062, 841.3186645507812, NaN, NaN], [741.3919677734375, 838.09521484375, 839.7069702148438, 780.4761962890625, NaN, NaN], [813.113525390625, 813.113525390625, 809.084228515625, 757.912109375, NaN, NaN], [836.886474609375, 828.4249267578125, 831.2454223632812, 780.879150390625, NaN, NaN], [788.5347900390625, 871.5384521484375, 880.8058471679688, 821.97802734375, NaN, NaN], [770.0, 863.4798583984375, 862.2710571289062, 807.4725341796875, NaN, NaN], [819.96337890625, 820.7692260742188, 809.4871826171875, 762.7472534179688, NaN, NaN], [839.7069702148438, 825.2014770507812, 824.7985229492188, 796.1904907226562, NaN, NaN], [805.054931640625, 862.6740112304688, 873.1502075195312, 846.959716796875, NaN, NaN], [769.5970458984375, 864.2857055664062, 873.1502075195312, 834.06591796875, NaN, NaN], [795.3846435546875, 819.5604248046875, 820.7692260742188, 776.8497924804688, NaN, NaN], [842.5274658203125, 808.2783813476562, 811.098876953125, 755.091552734375, NaN, NaN], [826.8131713867188, 847.7655639648438, 857.032958984375, 799.4139404296875, NaN, NaN], [759.120849609375, 861.062255859375, 869.5238037109375, 828.4249267578125, NaN, NaN], [758.7179565429688, 829.2307739257812, 827.6190185546875, 783.6996459960938, NaN, NaN], [815.5311279296875, 807.069580078125, 802.2344360351562, 755.4945068359375, NaN, NaN], [826.4102783203125, 834.8717651367188, 839.7069702148438, 817.94873046875, NaN, NaN], [782.087890625, 862.6740112304688, 872.3442993164062, 856.6300659179688, NaN, NaN], [759.9267578125, 837.2893676757812, 841.7216186523438, 794.1758422851562, NaN, NaN], [825.6043701171875, 811.90478515625, 807.87548828125, 745.8241577148438, NaN, NaN], [851.3919677734375, 830.8424682617188, 827.6190185546875, 776.8497924804688, NaN, NaN], [795.3846435546875, 856.6300659179688, 863.076904296875, 817.94873046875, NaN, NaN], [768.3883056640625, 849.3773193359375, 855.4212646484375, 801.025634765625, NaN, NaN], [800.2197875976562, 814.7252807617188, 813.5164794921875, 769.1941528320312, NaN, NaN], [853.4066162109375, 815.1282348632812, 817.94873046875, 783.2966918945312, NaN, NaN], [817.94873046875, 847.3626098632812, 867.106201171875, 820.3662719726562, NaN, NaN], [759.9267578125, 850.5860595703125, 871.5384521484375, 827.6190185546875, NaN, NaN], [786.1171875, 821.97802734375, 823.99267578125, 789.7435913085938, NaN, NaN], [837.6923217773438, 812.3076782226562, 805.8607788085938, 775.6410522460938, NaN, NaN], [830.03662109375, 842.5274658203125, 848.974365234375, 811.90478515625, NaN, NaN], [768.3883056640625, 863.076904296875, 874.3589477539062, 826.8131713867188, NaN, NaN], [769.5970458984375, 832.8571166992188, 834.06591796875, 781.2820434570312, NaN, NaN], [842.12451171875, 805.054931640625, 806.2637329101562, 761.5384521484375, NaN, NaN], [841.7216186523438, 825.6043701171875, 834.4688720703125, 801.025634765625, NaN, NaN], [764.7619018554688, 860.6593627929688, 870.7326049804688, 844.5421142578125, NaN, NaN], [759.120849609375, 840.915771484375, 845.3479614257812, 802.6373901367188, NaN, NaN], [815.93408203125, 800.2197875976562, 798.6080322265625, 753.4798583984375, NaN, NaN], [846.5567626953125, 808.2783813476562, 814.3223266601562, 775.6410522460938, NaN, NaN], [803.040283203125, 847.3626098632812, 859.047607421875, 815.93408203125, NaN, NaN], [756.7033081054688, 844.945068359375, 838.4981689453125, 789.7435913085938, NaN, NaN], [794.5787353515625, 806.6666870117188, 786.5201416015625, 752.2710571289062, NaN, NaN], [825.2014770507812, 804.6520385742188, 788.5347900390625, 771.2088012695312, NaN, NaN], [812.3076782226562, 848.1685180664062, 840.5128173828125, 812.3076782226562, NaN, NaN], [786.1171875, 863.076904296875, 850.5860595703125, 817.5457763671875, NaN, NaN], [815.1282348632812, 822.3809814453125, 790.952392578125, 762.7472534179688, NaN, NaN], [846.5567626953125, 809.4871826171875, 771.2088012695312, 747.4359130859375, NaN, NaN], [812.3076782226562, 847.7655639648438, 817.5457763671875, 795.3846435546875, NaN, NaN], [774.029296875, 868.7179565429688, 846.5567626953125, 822.7838745117188, NaN, NaN], [772.4176025390625, 835.2747192382812, 810.2930297851562, 781.6849975585938, NaN, NaN], [826.8131713867188, 802.6373901367188, 776.8497924804688, 752.2710571289062, NaN, NaN], [858.6447143554688, 831.2454223632812, 812.7106323242188, 790.5494384765625, NaN, NaN], [794.1758422851562, 869.5238037109375, 854.6153564453125, 823.99267578125, NaN, NaN], [754.2857055664062, 845.3479614257812, 822.7838745117188, 788.1318969726562, NaN, NaN], [809.4871826171875, 809.4871826171875, 776.0439453125, 748.2417602539062, NaN, NaN], [836.4835205078125, 818.7545776367188, 790.952392578125, 774.029296875, NaN, NaN], [796.1904907226562, 853.8095092773438, 846.5567626953125, 816.7399291992188, NaN, NaN], [758.3150024414062, 854.2124633789062, 847.7655639648438, 805.8607788085938, NaN, NaN], [805.054931640625, 816.7399291992188, 795.3846435546875, 765.1648559570312, NaN, NaN], [853.003662109375, 811.098876953125, 790.952392578125, 757.912109375, NaN, NaN], [816.3369750976562, 849.3773193359375, 831.2454223632812, 802.6373901367188, NaN, NaN], [771.6116943359375, 863.4798583984375, 840.915771484375, 815.5311279296875, NaN, NaN], [793.7728881835938, 830.8424682617188, 807.87548828125, 774.8351440429688, NaN, NaN], [856.2271118164062, 818.3516235351562, 794.5787353515625, 761.1355590820312, NaN, NaN], [855.4212646484375, 845.3479614257812, 833.6630249023438, 801.4285888671875, NaN, NaN], [768.7911987304688, 862.2710571289062, 859.047607421875, 832.05126953125, NaN, NaN], [759.120849609375, 837.6923217773438, 830.03662109375, 799.010986328125, NaN, NaN], [838.09521484375, 810.6959838867188, 800.2197875976562, 774.8351440429688, NaN, NaN], [846.1538696289062, 826.00732421875, 813.5164794921875, 789.3406372070312, NaN, NaN], [784.908447265625, 857.8388061523438, 852.1978149414062, 828.02197265625, NaN, NaN], [763.1502075195312, 846.959716796875, 843.3333129882812, 814.3223266601562, NaN, NaN], [800.6226806640625, 811.5018310546875, 801.025634765625, 763.5531005859375, NaN, NaN], [833.2600708007812, 815.1282348632812, 809.084228515625, 767.9853515625, NaN, NaN], [808.6813354492188, 855.4212646484375, 860.2564086914062, 816.3369750976562, NaN, NaN], [767.9853515625, 861.8681030273438, 864.2857055664062, 820.3662719726562, NaN, NaN], [802.6373901367188, 819.96337890625, 814.3223266601562, 767.5823974609375, NaN, NaN], [854.2124633789062, 809.084228515625, 803.4432373046875, 770.8058471679688, NaN, NaN], [823.99267578125, 848.1685180664062, 847.7655639648438, 827.2161254882812, NaN, NaN], [777.6557006835938, 867.106201171875, 867.5091552734375, 829.2307739257812, NaN, NaN], [781.2820434570312, 832.05126953125, 826.8131713867188, 787.7289428710938, NaN, NaN], [839.7069702148438, 809.084228515625, 799.8168334960938, 781.2820434570312, NaN, NaN], [856.2271118164062, 841.7216186523438, 838.4981689453125, 807.87548828125, NaN, NaN], [804.6520385742188, 878.3883056640625, 878.3883056640625, 830.8424682617188, NaN, NaN], [808.6813354492188, 857.8388061523438, 843.7362670898438, 794.5787353515625, NaN, NaN], [862.2710571289062, 818.3516235351562, 796.1904907226562, 773.2234497070312, NaN, NaN], [872.3442993164062, 830.8424682617188, 820.7692260742188, 809.4871826171875, NaN, NaN], [812.7106323242188, 865.4945068359375, 869.9267578125, 842.5274658203125, NaN, NaN], [772.0146484375, 861.062255859375, 865.8974609375, 820.7692260742188, NaN, NaN], [813.91943359375, 821.1721801757812, 813.91943359375, 759.9267578125, NaN, NaN], [870.3296508789062, 823.5897216796875, 819.96337890625, 785.3113403320312, NaN, NaN], [825.2014770507812, 865.091552734375, 873.9560546875, 854.6153564453125, NaN, NaN], [756.3003540039062, 862.2710571289062, 868.7179565429688, 837.6923217773438, NaN, NaN], [801.8314819335938, 821.5750732421875, 819.5604248046875, 774.8351440429688, NaN, NaN], [864.2857055664062, 814.7252807617188, 811.5018310546875, 790.5494384765625, NaN, NaN], [832.8571166992188, 849.7802124023438, 852.1978149414062, 850.1831665039062, NaN, NaN], [770.0, 865.091552734375, 867.5091552734375, 844.1392211914062, NaN, NaN], [786.5201416015625, 835.6776733398438, 830.03662109375, 794.1758422851562, NaN, NaN], [860.6593627929688, 817.94873046875, 807.069580078125, 775.6410522460938, NaN, NaN], [874.3589477539062, 842.930419921875, 839.7069702148438, 818.3516235351562, NaN, NaN], [828.8278198242188, 868.3150024414062, 877.5823974609375, 872.7472534179688, NaN, NaN], [800.2197875976562, 846.1538696289062, 850.989013671875, 828.02197265625, NaN, NaN], [843.7362670898438, 811.098876953125, 805.4578857421875, 765.5677490234375, NaN, NaN], [886.8497924804688, 826.00732421875, 823.1868286132812, 794.5787353515625, NaN, NaN], [832.05126953125, 859.047607421875, 867.912109375, 844.5421142578125, NaN, NaN], [780.879150390625, 850.989013671875, 857.8388061523438, 828.02197265625, NaN, NaN], [834.06591796875, 822.7838745117188, 813.5164794921875, 783.6996459960938, NaN, NaN], [870.3296508789062, 820.3662719726562, 809.89013671875, 791.7582397460938, NaN, NaN], [826.8131713867188, 855.4212646484375, 858.2417602539062, 838.4981689453125, NaN, NaN], [784.908447265625, 869.5238037109375, 865.091552734375, 844.1392211914062, NaN, NaN], [790.1465454101562, 832.05126953125, 810.6959838867188, 786.5201416015625, NaN, NaN], [848.974365234375, 817.1428833007812, 805.054931640625, 783.6996459960938, NaN, NaN], [845.3479614257812, 850.989013671875, 854.2124633789062, 843.7362670898438, NaN, NaN], [796.1904907226562, 871.94140625, 874.3589477539062, 853.8095092773438, NaN, NaN], [801.8314819335938, 845.7509155273438, 836.886474609375, 788.5347900390625, NaN, NaN], [833.6630249023438, 815.5311279296875, 800.2197875976562, 759.120849609375, NaN, NaN], [853.8095092773438, 832.4542236328125, 825.6043701171875, 802.2344360351562, NaN, NaN], [805.054931640625, 867.106201171875, 869.120849609375, 846.1538696289062, NaN, NaN], [766.7765502929688, 853.003662109375, 850.989013671875, 811.90478515625, NaN, NaN], [827.2161254882812, 817.94873046875, 808.6813354492188, 773.6264038085938, NaN, NaN], [859.4505615234375, 823.5897216796875, 818.3516235351562, 798.6080322265625, NaN, NaN], [808.2783813476562, 862.2710571289062, 866.7033081054688, 834.06591796875, NaN, NaN], [769.5970458984375, 858.2417602539062, 862.6740112304688, 816.7399291992188, NaN, NaN], [804.6520385742188, 813.113525390625, 812.7106323242188, 760.3296508789062, NaN, NaN], [848.5714111328125, 811.098876953125, 809.084228515625, 768.3883056640625, NaN, NaN], [815.1282348632812, 852.6007080078125, 857.4359130859375, 831.2454223632812, NaN, NaN], [754.6886596679688, 862.2710571289062, 871.5384521484375, 832.8571166992188, NaN, NaN], [782.4908447265625, 823.99267578125, 826.8131713867188, 777.2527465820312, NaN, NaN], [837.2893676757812, 807.069580078125, 805.8607788085938, 773.2234497070312, NaN, NaN], [844.5421142578125, 845.3479614257812, 851.3919677734375, 830.03662109375, NaN, NaN], [790.952392578125, 866.3003540039062, 873.9560546875, 849.3773193359375, NaN, NaN], [771.2088012695312, 831.2454223632812, 833.6630249023438, 794.981689453125, NaN, NaN], [831.2454223632812, 806.2637329101562, 807.87548828125, 767.1795043945312, NaN, NaN], [847.7655639648438, 830.03662109375, 835.6776733398438, 805.4578857421875, NaN, NaN], [788.937744140625, 863.4798583984375, 875.1648559570312, 843.7362670898438, NaN, NaN], [762.3442993164062, 851.3919677734375, 859.047607421875, 807.4725341796875, NaN, NaN], [819.5604248046875, 819.96337890625, 815.5311279296875, 767.5823974609375, NaN, NaN], [855.4212646484375, 823.99267578125, 821.5750732421875, 809.89013671875, NaN, NaN], [804.6520385742188, 860.2564086914062, 866.3003540039062, 855.4212646484375, NaN, NaN], [769.1941528320312, 863.076904296875, 868.3150024414062, 838.09521484375, NaN, NaN], [799.010986328125, 819.96337890625, 813.91943359375, 768.3883056640625, NaN, NaN], [840.915771484375, 813.5164794921875, 801.025634765625, 758.3150024414062, NaN, NaN], [817.1428833007812, 853.4066162109375, 853.4066162109375, 821.5750732421875, NaN, NaN], [769.5970458984375, 866.7033081054688, 874.7619018554688, 843.3333129882812, NaN, NaN], [799.4139404296875, 836.886474609375, 837.6923217773438, 798.2051391601562, NaN, NaN], [848.1685180664062, 816.3369750976562, 810.6959838867188, 776.8497924804688, NaN, NaN], [842.5274658203125, 842.5274658203125, 840.5128173828125, 823.99267578125, NaN, NaN], [785.7142944335938, 868.7179565429688, 875.5677490234375, 844.5421142578125, NaN, NaN], [770.0, 845.3479614257812, 848.5714111328125, 800.6226806640625, NaN, NaN], [828.4249267578125, 815.1282348632812, 807.4725341796875, 770.8058471679688, NaN, NaN], [853.8095092773438, 827.6190185546875, 822.3809814453125, 801.025634765625, NaN, NaN], [799.8168334960938, 864.6886596679688, 868.7179565429688, 842.930419921875, NaN, NaN], [778.4615478515625, 862.6740112304688, 867.912109375, 817.5457763671875, NaN, NaN], [821.1721801757812, 821.5750732421875, 813.5164794921875, 762.7472534179688, NaN, NaN], [843.3333129882812, 815.1282348632812, 806.6666870117188, 801.025634765625, NaN, NaN], [805.8607788085938, 853.003662109375, 861.062255859375, 839.7069702148438, NaN, NaN], [765.970703125, 855.4212646484375, 868.3150024414062, 820.3662719726562, NaN, NaN], [793.7728881835938, 813.113525390625, 823.1868286132812, 782.893798828125, NaN, NaN], [847.3626098632812, 808.2783813476562, 808.2783813476562, 763.5531005859375, NaN, NaN], [845.7509155273438, 852.1978149414062, 853.8095092773438, 828.8278198242188, NaN, NaN], [800.6226806640625, 877.1795043945312, 887.6557006835938, 863.8828125, NaN, NaN], [797.8021850585938, 842.12451171875, 841.3186645507812, 785.7142944335938, NaN, NaN], [834.8717651367188, 811.90478515625, 800.2197875976562, 782.087890625, NaN, NaN], [853.8095092773438, 840.5128173828125, 832.05126953125, 835.2747192382812, NaN, NaN], [812.3076782226562, 870.7326049804688, 873.9560546875, 843.7362670898438, NaN, NaN], [780.0732421875, 852.1978149414062, 856.2271118164062, 817.1428833007812, NaN, NaN], [825.2014770507812, 815.93408203125, 814.7252807617188, 769.5970458984375, NaN, NaN], [862.2710571289062, 828.02197265625, 834.06591796875, 790.1465454101562, NaN, NaN], [807.069580078125, 864.2857055664062, 875.5677490234375, 844.945068359375, NaN, NaN], [763.1502075195312, 857.4359130859375, 861.8681030273438, 816.3369750976562, NaN, NaN], [818.3516235351562, 819.96337890625, 819.5604248046875, 778.8644409179688, NaN, NaN], [860.2564086914062, 817.5457763671875, 819.5604248046875, 792.5640869140625, NaN, NaN], [836.08056640625, 854.2124633789062, 869.120849609375, 842.5274658203125, NaN, NaN], [781.2820434570312, 857.8388061523438, 875.5677490234375, 837.6923217773438, NaN, NaN], [788.937744140625, 817.5457763671875, 826.8131713867188, 793.3699340820312, NaN, NaN], [852.1978149414062, 807.069580078125, 813.91943359375, 790.5494384765625, NaN, NaN], [843.3333129882812, 843.7362670898438, 847.3626098632812, 808.2783813476562, NaN, NaN], [782.893798828125, 862.6740112304688, 860.6593627929688, 826.8131713867188, NaN, NaN], [778.8644409179688, 835.6776733398438, 830.8424682617188, 801.025634765625, NaN, NaN], [847.7655639648438, 811.098876953125, 805.4578857421875, 772.4176025390625, NaN, NaN], [873.1502075195312, 832.8571166992188, 837.2893676757812, 805.4578857421875, NaN, NaN], [794.981689453125, 865.091552734375, 880.8058471679688, 850.1831665039062, NaN, NaN], [764.7619018554688, 846.959716796875, 863.076904296875, 833.6630249023438, NaN, NaN], [845.3479614257812, 811.90478515625, 819.1575317382812, 801.025634765625, NaN, NaN], [883.6264038085938, 826.8131713867188, 829.6337280273438, 807.87548828125, NaN, NaN], [829.2307739257812, 863.8828125, 870.7326049804688, 831.6483764648438, NaN, NaN], [790.5494384765625, 858.6447143554688, 863.4798583984375, 819.5604248046875, NaN, NaN], [812.7106323242188, 816.7399291992188, 813.113525390625, 771.6116943359375, NaN, NaN], [856.6300659179688, 808.2783813476562, 805.8607788085938, 770.4029541015625, NaN, NaN], [822.7838745117188, 847.3626098632812, 852.6007080078125, 817.1428833007812, NaN, NaN], [767.5823974609375, 863.8828125, 875.5677490234375, 836.08056640625, NaN, NaN], [802.2344360351562, 824.7985229492188, 831.6483764648438, 783.2966918945312, NaN, NaN], [853.4066162109375, 799.4139404296875, 799.8168334960938, 766.3735961914062, NaN, NaN], [842.930419921875, 833.2600708007812, 838.4981689453125, 825.2014770507812, NaN, NaN], [785.7142944335938, 858.2417602539062, 869.120849609375, 845.3479614257812, NaN, NaN], [774.029296875, 834.06591796875, 832.8571166992188, 807.4725341796875, NaN, NaN], [829.6337280273438, 808.2783813476562, 796.996337890625, 796.1904907226562, NaN, NaN], [846.1538696289062, 826.4102783203125, 825.6043701171875, 813.5164794921875, NaN, NaN], [798.6080322265625, 862.2710571289062, 872.7472534179688, 833.2600708007812, NaN, NaN], [772.0146484375, 850.1831665039062, 852.6007080078125, 811.5018310546875, NaN, NaN], [816.7399291992188, 814.7252807617188, 796.996337890625, 756.3003540039062, NaN, NaN], [884.4322509765625, 822.3809814453125, 809.084228515625, 766.7765502929688, NaN, NaN], [843.7362670898438, 855.4212646484375, 859.8534545898438, 837.6923217773438, NaN, NaN]], "channel_names": ["ch1", "ch2", "ch3", "ch4", "ch5", "ch6"]}, "drlref": {"name": "drlref", "fs": 32.0, "emp_fs": 28.88282816876197, "timestamps": [1571759075.666876, 1571759075.7014987, 1571759075.7361214, 1571759075.770744, 1571759075.8053668, 1571759075.8399894, 1571759075.8746119, 1571759075.9092345, 1571759075.9438572, 1571759075.9784799, 1571759076.0131025, 1571759076.0477252, 1571759076.0823479, 1571759076.1169705, 1571759076.1515932, 1571759076.1862159, 1571759076.2208385, 1571759076.2554612, 1571759076.2900836, 1571759076.3247063, 1571759076.359329, 1571759076.3939517, 1571759076.4285743, 1571759076.463197, 1571759076.4978197, 1571759076.5324423, 1571759076.567065, 1571759076.6016877, 1571759076.6363103, 1571759076.6709328, 1571759076.7055554, 1571759076.740178, 1571759076.7748008, 1571759076.8094234, 1571759076.844046, 1571759076.8786688, 1571759076.9132915, 1571759076.9479141, 1571759076.9825368, 1571759077.0171595, 1571759077.051782, 1571759077.0864046, 1571759077.1210272, 1571759077.15565, 1571759077.1902726, 1571759077.2248952, 1571759077.259518, 1571759077.2941406, 1571759077.3287632, 1571759077.363386, 1571759077.3980086, 1571759077.4326313, 1571759077.4672537, 1571759077.5018764, 1571759077.536499, 1571759077.5711217, 1571759077.6057444, 1571759077.640367, 1571759077.6749897, 1571759077.7096124, 1571759077.744235, 1571759077.7788577, 1571759077.8134804, 1571759077.8481028, 1571759077.8827255, 1571759077.9173481, 1571759077.9519708, 1571759077.9865935, 1571759078.0212162, 1571759078.0558388, 1571759078.0904615, 1571759078.1250842, 1571759078.1597068, 1571759078.1943295, 1571759078.228952, 1571759078.2635746, 1571759078.2981973, 1571759078.33282, 1571759078.3674426, 1571759078.4020653, 1571759078.436688, 1571759078.4713106, 1571759078.5059333, 1571759078.540556, 1571759078.5751786, 1571759078.6098013, 1571759078.6444237, 1571759078.6790464, 1571759078.713669, 1571759078.7482917, 1571759078.7829144, 1571759078.817537, 1571759078.8521597, 1571759078.8867824, 1571759078.921405, 1571759078.9560277, 1571759078.9906504, 1571759079.0252728, 1571759079.0598955, 1571759079.0945182, 1571759079.1291409, 1571759079.1637635, 1571759079.1983862, 1571759079.2330089, 1571759079.2676315, 1571759079.3022542, 1571759079.3368769, 1571759079.3714995, 1571759079.4061222, 1571759079.4407446, 1571759079.4753673, 1571759079.50999, 1571759079.5446126, 1571759079.5792353, 1571759079.613858, 1571759079.6484807, 1571759079.6831033, 1571759079.717726, 1571759079.7523487, 1571759079.7869713, 1571759079.8215938, 1571759079.8562164, 1571759079.890839, 1571759079.9254618, 1571759079.9600844, 1571759079.994707, 1571759080.0293298, 1571759080.0639524, 1571759080.098575, 1571759080.1331978, 1571759080.1678205, 1571759080.202443, 1571759080.2370656, 1571759080.2716882, 1571759080.306311, 1571759080.3409336, 1571759080.3755562, 1571759080.410179, 1571759080.4448016, 1571759080.4794242, 1571759080.514047, 1571759080.5486696, 1571759080.5832922, 1571759080.6179147, 1571759080.6525373, 1571759080.68716, 1571759080.7217827, 1571759080.7564054, 1571759080.791028, 1571759080.8256507, 1571759080.8602734, 1571759080.894896, 1571759080.9295187, 1571759080.9641414, 1571759080.9987638, 1571759081.0333865, 1571759081.0680091, 1571759081.1026318, 1571759081.1372545, 1571759081.1718771, 1571759081.2064998, 1571759081.2411225, 1571759081.2757452, 1571759081.3103678, 1571759081.3449905, 1571759081.379613, 1571759081.4142356, 1571759081.4488583, 1571759081.483481, 1571759081.5181036, 1571759081.5527263, 1571759081.587349, 1571759081.6219716, 1571759081.6565943, 1571759081.691217, 1571759081.7258396, 1571759081.7604623, 1571759081.7950847, 1571759081.8297074, 1571759081.86433, 1571759081.8989527, 1571759081.9335754, 1571759081.968198, 1571759082.0028207, 1571759082.0374434, 1571759082.072066, 1571759082.1066887, 1571759082.1413114, 1571759082.1759338, 1571759082.2105565, 1571759082.2451792, 1571759082.2798018, 1571759082.3144245, 1571759082.3490472, 1571759082.3836699, 1571759082.4182925, 1571759082.4529152, 1571759082.4875379, 1571759082.5221605, 1571759082.5567832, 1571759082.5914056, 1571759082.6260283, 1571759082.660651, 1571759082.6952736, 1571759082.7298963, 1571759082.764519, 1571759082.7991416, 1571759082.8337643, 1571759082.868387, 1571759082.9030097, 1571759082.9376323, 1571759082.9722548, 1571759083.0068774, 1571759083.0415, 1571759083.0761228, 1571759083.1107454, 1571759083.145368, 1571759083.1799908, 1571759083.2146134, 1571759083.249236, 1571759083.2838588, 1571759083.3184814, 1571759083.3531039, 1571759083.3877265, 1571759083.4223492, 1571759083.456972, 1571759083.4915946, 1571759083.5262172, 1571759083.56084, 1571759083.5954626, 1571759083.6300852, 1571759083.664708, 1571759083.6993306, 1571759083.7339532, 1571759083.7685757, 1571759083.8031983, 1571759083.837821, 1571759083.8724437, 1571759083.9070663, 1571759083.941689, 1571759083.9763117, 1571759084.0109344, 1571759084.045557, 1571759084.0801797, 1571759084.1148024, 1571759084.1494248, 1571759084.1840475, 1571759084.2186701, 1571759084.2532928, 1571759084.2879155, 1571759084.3225381, 1571759084.3571608, 1571759084.3917835, 1571759084.4264061, 1571759084.4610288, 1571759084.4956515, 1571759084.530274, 1571759084.5648966, 1571759084.5995193, 1571759084.634142, 1571759084.6687646, 1571759084.7033873, 1571759084.73801, 1571759084.7726326, 1571759084.8072553, 1571759084.841878, 1571759084.8765006, 1571759084.9111233, 1571759084.9457457, 1571759084.9803684, 1571759085.014991, 1571759085.0496137, 1571759085.0842364, 1571759085.118859, 1571759085.1534817, 1571759085.1881044, 1571759085.222727, 1571759085.2573497, 1571759085.2919724, 1571759085.3265948, 1571759085.3612175, 1571759085.3958402, 1571759085.4304628, 1571759085.4650855, 1571759085.4997082, 1571759085.5343308, 1571759085.5689535, 1571759085.6035762, 1571759085.6381989, 1571759085.6728215, 1571759085.7074442, 1571759085.7420666, 1571759085.7766893, 1571759085.811312, 1571759085.8459346, 1571759085.8805573, 1571759085.91518, 1571759085.9498026, 1571759085.9844253, 1571759086.019048, 1571759086.0536706, 1571759086.0882933, 1571759086.1229157, 1571759086.1575384, 1571759086.192161, 1571759086.2267838, 1571759086.2614064, 1571759086.296029, 1571759086.3306518, 1571759086.3652744, 1571759086.399897, 1571759086.4345198, 1571759086.4691424, 1571759086.5037649, 1571759086.5383875, 1571759086.5730102, 1571759086.6076329, 1571759086.6422555, 1571759086.6768782, 1571759086.711501, 1571759086.7461236, 1571759086.7807462, 1571759086.815369, 1571759086.8499916, 1571759086.8846142, 1571759086.9192367, 1571759086.9538593, 1571759086.988482, 1571759087.0231047, 1571759087.0577273, 1571759087.09235, 1571759087.1269727, 1571759087.1615953, 1571759087.196218, 1571759087.2308407, 1571759087.2654634, 1571759087.3000858, 1571759087.3347085, 1571759087.3693311, 1571759087.4039538, 1571759087.4385765, 1571759087.4731991, 1571759087.5078218, 1571759087.5424445, 1571759087.5770671, 1571759087.6116898, 1571759087.6463125, 1571759087.680935, 1571759087.7155576, 1571759087.7501802, 1571759087.784803, 1571759087.8194256, 1571759087.8540483, 1571759087.888671, 1571759087.9232936, 1571759087.9579163, 1571759087.992539, 1571759088.0271616, 1571759088.0617843, 1571759088.0964067, 1571759088.1310294, 1571759088.165652, 1571759088.2002747, 1571759088.2348974, 1571759088.26952, 1571759088.3041427, 1571759088.3387654, 1571759088.373388, 1571759088.4080107, 1571759088.4426334, 1571759088.4772558, 1571759088.5118785, 1571759088.5465012, 1571759088.5811238, 1571759088.6157465, 1571759088.6503692, 1571759088.6849918, 1571759088.7196145, 1571759088.7542372, 1571759088.7888598, 1571759088.8234825, 1571759088.8581052, 1571759088.8927276, 1571759088.9273503, 1571759088.961973, 1571759088.9965956, 1571759089.0312183, 1571759089.065841, 1571759089.1004636, 1571759089.1350863, 1571759089.169709, 1571759089.2043316, 1571759089.2389543, 1571759089.2735767, 1571759089.3081994, 1571759089.342822, 1571759089.3774447, 1571759089.4120674, 1571759089.44669, 1571759089.4813128, 1571759089.5159354, 1571759089.550558, 1571759089.5851808, 1571759089.6198034, 1571759089.6544259, 1571759089.6890485, 1571759089.7236712, 1571759089.7582939, 1571759089.7929165, 1571759089.8275392, 1571759089.8621619, 1571759089.8967845, 1571759089.9314072, 1571759089.96603, 1571759090.0006526, 1571759090.0352752, 1571759090.0698977, 1571759090.1045203, 1571759090.139143, 1571759090.1737657, 1571759090.2083883, 1571759090.243011, 1571759090.2776337, 1571759090.3122563, 1571759090.346879, 1571759090.3815017, 1571759090.4161243, 1571759090.4507468, 1571759090.4853694, 1571759090.519992, 1571759090.5546148, 1571759090.5892375, 1571759090.6238601, 1571759090.6584828, 1571759090.6931055, 1571759090.7277281, 1571759090.7623508, 1571759090.7969735, 1571759090.831596, 1571759090.8662186, 1571759090.9008412, 1571759090.935464, 1571759090.9700866, 1571759091.0047092, 1571759091.039332, 1571759091.0739546, 1571759091.1085773, 1571759091.1432, 1571759091.1778226, 1571759091.2124453, 1571759091.2470677, 1571759091.2816904, 1571759091.316313, 1571759091.3509357, 1571759091.3855584, 1571759091.420181], "samples": [[1715677.625, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1714871.75, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1714871.75, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1715677.625, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1715677.625, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1715677.625, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1715677.625, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714871.75, 1700366.25], [1714065.875, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714871.75, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714871.75, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1713260.125, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1713260.125, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1713260.125, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1714065.875, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1714065.875, 1700366.25], [1713260.125, 1700366.25], [1714065.875, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1714065.875, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1714065.875, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1714065.875, 1700366.25], [1713260.125, 1700366.25], [1714065.875, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1712454.25, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1712454.25, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1713260.125, 1700366.25], [1712454.25, 1700366.25], [1713260.125, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1713260.125, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1711648.375, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1712454.25, 1700366.25], [1711648.375, 1700366.25], [1712454.25, 1700366.25], [1711648.375, 1700366.25], [1712454.25, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1712454.25, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25], [1711648.375, 1700366.25]], "channel_names": ["drl", "ref"]}, "gyro": {"name": "gyro", "fs": 52.0, "emp_fs": 52.84561455045465, "timestamps": [1571759075.4870481, 1571759075.5059712, 1571759075.5248942, 1571759075.5438173, 1571759075.5627403, 1571759075.5816634, 1571759075.6005864, 1571759075.6195095, 1571759075.6384325, 1571759075.6573555, 1571759075.6762786, 1571759075.6952016, 1571759075.7141247, 1571759075.7330477, 1571759075.7519708, 1571759075.7708938, 1571759075.7898169, 1571759075.80874, 1571759075.827663, 1571759075.846586, 1571759075.865509, 1571759075.884432, 1571759075.9033551, 1571759075.9222782, 1571759075.9412012, 1571759075.9601243, 1571759075.9790473, 1571759075.9979703, 1571759076.0168934, 1571759076.0358164, 1571759076.0547395, 1571759076.0736625, 1571759076.0925856, 1571759076.1115086, 1571759076.1304317, 1571759076.1493547, 1571759076.1682777, 1571759076.1872008, 1571759076.2061238, 1571759076.2250469, 1571759076.24397, 1571759076.262893, 1571759076.281816, 1571759076.300739, 1571759076.319662, 1571759076.3385851, 1571759076.3575082, 1571759076.3764312, 1571759076.3953543, 1571759076.4142773, 1571759076.4332004, 1571759076.4521234, 1571759076.4710464, 1571759076.4899695, 1571759076.5088925, 1571759076.5278156, 1571759076.5467386, 1571759076.5656617, 1571759076.5845847, 1571759076.6035078, 1571759076.6224308, 1571759076.641354, 1571759076.6602771, 1571759076.6792002, 1571759076.6981232, 1571759076.7170463, 1571759076.7359693, 1571759076.7548923, 1571759076.7738154, 1571759076.7927384, 1571759076.8116615, 1571759076.8305845, 1571759076.8495076, 1571759076.8684306, 1571759076.8873537, 1571759076.9062767, 1571759076.9251997, 1571759076.9441228, 1571759076.9630458, 1571759076.9819689, 1571759077.000892, 1571759077.019815, 1571759077.038738, 1571759077.057661, 1571759077.076584, 1571759077.0955071, 1571759077.1144302, 1571759077.1333532, 1571759077.1522763, 1571759077.1711993, 1571759077.1901224, 1571759077.2090454, 1571759077.2279685, 1571759077.2468915, 1571759077.2658145, 1571759077.2847376, 1571759077.3036606, 1571759077.3225837, 1571759077.3415067, 1571759077.3604298, 1571759077.3793528, 1571759077.3982759, 1571759077.417199, 1571759077.436122, 1571759077.455045, 1571759077.473968, 1571759077.492891, 1571759077.511814, 1571759077.5307372, 1571759077.5496602, 1571759077.5685833, 1571759077.5875063, 1571759077.6064293, 1571759077.6253524, 1571759077.6442754, 1571759077.6631985, 1571759077.6821215, 1571759077.7010446, 1571759077.7199676, 1571759077.7388906, 1571759077.7578137, 1571759077.7767367, 1571759077.7956598, 1571759077.8145828, 1571759077.8335059, 1571759077.852429, 1571759077.871352, 1571759077.890275, 1571759077.909198, 1571759077.928121, 1571759077.9470441, 1571759077.9659672, 1571759077.9848902, 1571759078.0038133, 1571759078.0227363, 1571759078.0416594, 1571759078.0605824, 1571759078.0795054, 1571759078.0984285, 1571759078.1173515, 1571759078.1362746, 1571759078.1551976, 1571759078.1741207, 1571759078.1930437, 1571759078.2119668, 1571759078.2308898, 1571759078.2498128, 1571759078.268736, 1571759078.287659, 1571759078.306582, 1571759078.325505, 1571759078.344428, 1571759078.363351, 1571759078.3822742, 1571759078.4011972, 1571759078.4201202, 1571759078.4390433, 1571759078.4579663, 1571759078.4768894, 1571759078.4958124, 1571759078.5147355, 1571759078.5336585, 1571759078.5525815, 1571759078.5715046, 1571759078.5904276, 1571759078.6093507, 1571759078.6282737, 1571759078.6471968, 1571759078.6661198, 1571759078.6850429, 1571759078.703966, 1571759078.722889, 1571759078.741812, 1571759078.760735, 1571759078.779658, 1571759078.7985811, 1571759078.8175042, 1571759078.8364272, 1571759078.8553503, 1571759078.8742733, 1571759078.8931963, 1571759078.9121196, 1571759078.9310427, 1571759078.9499657, 1571759078.9688888, 1571759078.9878118, 1571759079.0067348, 1571759079.025658, 1571759079.044581, 1571759079.063504, 1571759079.082427, 1571759079.10135, 1571759079.120273, 1571759079.1391962, 1571759079.1581192, 1571759079.1770422, 1571759079.1959653, 1571759079.2148883, 1571759079.2338114, 1571759079.2527344, 1571759079.2716575, 1571759079.2905805, 1571759079.3095036, 1571759079.3284266, 1571759079.3473496, 1571759079.3662727, 1571759079.3851957, 1571759079.4041188, 1571759079.4230418, 1571759079.4419649, 1571759079.460888, 1571759079.479811, 1571759079.498734, 1571759079.517657, 1571759079.53658, 1571759079.5555031, 1571759079.5744262, 1571759079.5933492, 1571759079.6122723, 1571759079.6311953, 1571759079.6501184, 1571759079.6690414, 1571759079.6879644, 1571759079.7068875, 1571759079.7258105, 1571759079.7447336, 1571759079.7636566, 1571759079.7825797, 1571759079.8015027, 1571759079.8204257, 1571759079.8393488, 1571759079.8582718, 1571759079.877195, 1571759079.896118, 1571759079.915041, 1571759079.933964, 1571759079.952887, 1571759079.97181, 1571759079.9907331, 1571759080.0096562, 1571759080.0285792, 1571759080.0475023, 1571759080.0664253, 1571759080.0853484, 1571759080.1042714, 1571759080.1231945, 1571759080.1421175, 1571759080.1610405, 1571759080.1799636, 1571759080.1988866, 1571759080.2178097, 1571759080.2367327, 1571759080.2556558, 1571759080.2745788, 1571759080.2935019, 1571759080.312425, 1571759080.331348, 1571759080.350271, 1571759080.369194, 1571759080.388117, 1571759080.40704, 1571759080.4259632, 1571759080.4448862, 1571759080.4638093, 1571759080.4827323, 1571759080.5016553, 1571759080.5205784, 1571759080.5395014, 1571759080.5584245, 1571759080.5773475, 1571759080.5962706, 1571759080.6151936, 1571759080.6341166, 1571759080.6530397, 1571759080.6719627, 1571759080.6908858, 1571759080.7098088, 1571759080.7287319, 1571759080.747655, 1571759080.766578, 1571759080.785501, 1571759080.804424, 1571759080.823347, 1571759080.8422701, 1571759080.8611932, 1571759080.8801162, 1571759080.8990393, 1571759080.9179623, 1571759080.9368854, 1571759080.9558084, 1571759080.9747314, 1571759080.9936545, 1571759081.0125775, 1571759081.0315006, 1571759081.0504236, 1571759081.0693467, 1571759081.0882697, 1571759081.1071928, 1571759081.1261158, 1571759081.1450388, 1571759081.163962, 1571759081.1828852, 1571759081.2018082, 1571759081.2207313, 1571759081.2396543, 1571759081.2585773, 1571759081.2775004, 1571759081.2964234, 1571759081.3153465, 1571759081.3342695, 1571759081.3531926, 1571759081.3721156, 1571759081.3910387, 1571759081.4099617, 1571759081.4288847, 1571759081.4478078, 1571759081.4667308, 1571759081.4856539, 1571759081.504577, 1571759081.5235, 1571759081.542423, 1571759081.561346, 1571759081.580269, 1571759081.5991921, 1571759081.6181152, 1571759081.6370382, 1571759081.6559613, 1571759081.6748843, 1571759081.6938074, 1571759081.7127304, 1571759081.7316535, 1571759081.7505765, 1571759081.7694995, 1571759081.7884226, 1571759081.8073456, 1571759081.8262687, 1571759081.8451917, 1571759081.8641148, 1571759081.8830378, 1571759081.9019608, 1571759081.920884, 1571759081.939807, 1571759081.95873, 1571759081.977653, 1571759081.996576, 1571759082.015499, 1571759082.0344222, 1571759082.0533452, 1571759082.0722682, 1571759082.0911913, 1571759082.1101143, 1571759082.1290374, 1571759082.1479604, 1571759082.1668835, 1571759082.1858065, 1571759082.2047296, 1571759082.2236526, 1571759082.2425756, 1571759082.2614987, 1571759082.2804217, 1571759082.2993448, 1571759082.3182678, 1571759082.3371909, 1571759082.356114, 1571759082.375037, 1571759082.39396, 1571759082.412883, 1571759082.431806, 1571759082.4507291, 1571759082.4696522, 1571759082.4885752, 1571759082.5074983, 1571759082.5264213, 1571759082.5453444, 1571759082.5642674, 1571759082.5831904, 1571759082.6021135, 1571759082.6210365, 1571759082.6399596, 1571759082.6588826, 1571759082.6778057, 1571759082.6967287, 1571759082.7156518, 1571759082.7345748, 1571759082.7534978, 1571759082.772421, 1571759082.791344, 1571759082.810267, 1571759082.82919, 1571759082.848113, 1571759082.867036, 1571759082.8859591, 1571759082.9048822, 1571759082.9238052, 1571759082.9427283, 1571759082.9616513, 1571759082.9805744, 1571759082.9994974, 1571759083.0184205, 1571759083.0373435, 1571759083.0562665, 1571759083.0751896, 1571759083.0941126, 1571759083.1130357, 1571759083.1319587, 1571759083.1508818, 1571759083.1698048, 1571759083.1887279, 1571759083.207651, 1571759083.226574, 1571759083.245497, 1571759083.26442, 1571759083.283343, 1571759083.3022661, 1571759083.3211892, 1571759083.3401122, 1571759083.3590353, 1571759083.3779583, 1571759083.3968813, 1571759083.4158044, 1571759083.4347274, 1571759083.4536505, 1571759083.4725738, 1571759083.4914968, 1571759083.5104198, 1571759083.529343, 1571759083.548266, 1571759083.567189, 1571759083.586112, 1571759083.605035, 1571759083.623958, 1571759083.6428812, 1571759083.6618042, 1571759083.6807272, 1571759083.6996503, 1571759083.7185733, 1571759083.7374964, 1571759083.7564194, 1571759083.7753425, 1571759083.7942655, 1571759083.8131886, 1571759083.8321116, 1571759083.8510346, 1571759083.8699577, 1571759083.8888807, 1571759083.9078038, 1571759083.9267268, 1571759083.9456499, 1571759083.964573, 1571759083.983496, 1571759084.002419, 1571759084.021342, 1571759084.040265, 1571759084.0591881, 1571759084.0781112, 1571759084.0970342, 1571759084.1159573, 1571759084.1348803, 1571759084.1538033, 1571759084.1727264, 1571759084.1916494, 1571759084.2105725, 1571759084.2294955, 1571759084.2484186, 1571759084.2673416, 1571759084.2862647, 1571759084.3051877, 1571759084.3241107, 1571759084.3430338, 1571759084.3619568, 1571759084.3808799, 1571759084.399803, 1571759084.418726, 1571759084.437649, 1571759084.456572, 1571759084.475495, 1571759084.4944181, 1571759084.5133412, 1571759084.5322642, 1571759084.5511873, 1571759084.5701103, 1571759084.5890334, 1571759084.6079564, 1571759084.6268795, 1571759084.6458025, 1571759084.6647255, 1571759084.6836486, 1571759084.7025716, 1571759084.7214947, 1571759084.7404177, 1571759084.7593408, 1571759084.7782638, 1571759084.7971869, 1571759084.81611, 1571759084.835033, 1571759084.853956, 1571759084.872879, 1571759084.891802, 1571759084.910725, 1571759084.9296482, 1571759084.9485712, 1571759084.9674942, 1571759084.9864173, 1571759085.0053403, 1571759085.0242634, 1571759085.0431864, 1571759085.0621095, 1571759085.0810325, 1571759085.0999556, 1571759085.1188786, 1571759085.1378016, 1571759085.1567247, 1571759085.1756477, 1571759085.1945708, 1571759085.2134938, 1571759085.2324169, 1571759085.25134, 1571759085.270263, 1571759085.289186, 1571759085.308109, 1571759085.327032, 1571759085.3459551, 1571759085.3648782, 1571759085.3838012, 1571759085.4027243, 1571759085.4216473, 1571759085.4405704, 1571759085.4594934, 1571759085.4784164, 1571759085.4973395, 1571759085.5162625, 1571759085.5351856, 1571759085.5541086, 1571759085.5730317, 1571759085.5919547, 1571759085.6108778, 1571759085.6298008, 1571759085.6487238, 1571759085.667647, 1571759085.68657, 1571759085.705493, 1571759085.724416, 1571759085.7433393, 1571759085.7622623, 1571759085.7811854, 1571759085.8001084, 1571759085.8190315, 1571759085.8379545, 1571759085.8568776, 1571759085.8758006, 1571759085.8947237, 1571759085.9136467, 1571759085.9325697, 1571759085.9514928, 1571759085.9704158, 1571759085.9893389, 1571759086.008262, 1571759086.027185, 1571759086.046108, 1571759086.065031, 1571759086.083954, 1571759086.1028771, 1571759086.1218002, 1571759086.1407232, 1571759086.1596463, 1571759086.1785693, 1571759086.1974924, 1571759086.2164154, 1571759086.2353384, 1571759086.2542615, 1571759086.2731845, 1571759086.2921076, 1571759086.3110306, 1571759086.3299537, 1571759086.3488767, 1571759086.3677998, 1571759086.3867228, 1571759086.4056458, 1571759086.424569, 1571759086.443492, 1571759086.462415, 1571759086.481338, 1571759086.500261, 1571759086.519184, 1571759086.5381072, 1571759086.5570302, 1571759086.5759532, 1571759086.5948763, 1571759086.6137993, 1571759086.6327224, 1571759086.6516454, 1571759086.6705685, 1571759086.6894915, 1571759086.7084146, 1571759086.7273376, 1571759086.7462606, 1571759086.7651837, 1571759086.7841067, 1571759086.8030298, 1571759086.8219528, 1571759086.8408759, 1571759086.859799, 1571759086.878722, 1571759086.897645, 1571759086.916568, 1571759086.935491, 1571759086.9544141, 1571759086.9733372, 1571759086.9922602, 1571759087.0111833, 1571759087.0301063, 1571759087.0490294, 1571759087.0679524, 1571759087.0868754, 1571759087.1057985, 1571759087.1247215, 1571759087.1436446, 1571759087.1625676, 1571759087.1814907, 1571759087.2004137, 1571759087.2193367, 1571759087.2382598, 1571759087.2571828, 1571759087.2761059, 1571759087.295029, 1571759087.313952, 1571759087.332875, 1571759087.351798, 1571759087.370721, 1571759087.3896441, 1571759087.4085672, 1571759087.4274902, 1571759087.4464133, 1571759087.4653363, 1571759087.4842594, 1571759087.5031824, 1571759087.5221055, 1571759087.5410285, 1571759087.5599515, 1571759087.5788746, 1571759087.5977976, 1571759087.6167207, 1571759087.6356437, 1571759087.6545668, 1571759087.6734898, 1571759087.6924129, 1571759087.711336, 1571759087.730259, 1571759087.749182, 1571759087.768105, 1571759087.787028, 1571759087.805951, 1571759087.8248742, 1571759087.8437972, 1571759087.8627203, 1571759087.8816433, 1571759087.9005663, 1571759087.9194894, 1571759087.9384124, 1571759087.9573355, 1571759087.9762585, 1571759087.9951816, 1571759088.0141048, 1571759088.033028, 1571759088.051951, 1571759088.070874, 1571759088.089797, 1571759088.10872, 1571759088.127643, 1571759088.1465662, 1571759088.1654892, 1571759088.1844122, 1571759088.2033353, 1571759088.2222583, 1571759088.2411814, 1571759088.2601044, 1571759088.2790275, 1571759088.2979505, 1571759088.3168736, 1571759088.3357966, 1571759088.3547196, 1571759088.3736427, 1571759088.3925657, 1571759088.4114888, 1571759088.4304118, 1571759088.4493349, 1571759088.468258, 1571759088.487181, 1571759088.506104, 1571759088.525027, 1571759088.54395, 1571759088.5628731, 1571759088.5817962, 1571759088.6007192, 1571759088.6196423, 1571759088.6385653, 1571759088.6574883, 1571759088.6764114, 1571759088.6953344, 1571759088.7142575, 1571759088.7331805, 1571759088.7521036, 1571759088.7710266, 1571759088.7899497, 1571759088.8088727, 1571759088.8277957, 1571759088.8467188, 1571759088.8656418, 1571759088.8845649, 1571759088.903488, 1571759088.922411, 1571759088.941334, 1571759088.960257, 1571759088.97918, 1571759088.9981031, 1571759089.0170262, 1571759089.0359492, 1571759089.0548723, 1571759089.0737953, 1571759089.0927184, 1571759089.1116414, 1571759089.1305645, 1571759089.1494875, 1571759089.1684105, 1571759089.1873336, 1571759089.2062566, 1571759089.2251797, 1571759089.2441027, 1571759089.2630258, 1571759089.2819488, 1571759089.3008718, 1571759089.319795, 1571759089.338718, 1571759089.357641, 1571759089.376564, 1571759089.395487, 1571759089.41441, 1571759089.4333332, 1571759089.4522562, 1571759089.4711792, 1571759089.4901023, 1571759089.5090253, 1571759089.5279484, 1571759089.5468714, 1571759089.5657945, 1571759089.5847175, 1571759089.6036406, 1571759089.6225636, 1571759089.6414866, 1571759089.6604097, 1571759089.6793327, 1571759089.6982558, 1571759089.7171788, 1571759089.7361019, 1571759089.755025, 1571759089.773948, 1571759089.792871, 1571759089.811794, 1571759089.830717, 1571759089.8496401, 1571759089.8685632, 1571759089.8874862, 1571759089.9064093, 1571759089.9253323, 1571759089.9442554, 1571759089.9631784, 1571759089.9821014, 1571759090.0010245, 1571759090.0199475, 1571759090.0388706, 1571759090.0577936, 1571759090.0767167, 1571759090.0956397, 1571759090.1145627, 1571759090.1334858, 1571759090.1524088, 1571759090.171332, 1571759090.190255, 1571759090.209178, 1571759090.228101, 1571759090.247024, 1571759090.265947, 1571759090.2848704, 1571759090.3037934, 1571759090.3227165, 1571759090.3416395, 1571759090.3605626, 1571759090.3794856, 1571759090.3984087, 1571759090.4173317, 1571759090.4362547, 1571759090.4551778, 1571759090.4741008, 1571759090.4930239, 1571759090.511947, 1571759090.53087, 1571759090.549793, 1571759090.568716, 1571759090.587639, 1571759090.6065621, 1571759090.6254852, 1571759090.6444082, 1571759090.6633313, 1571759090.6822543, 1571759090.7011774, 1571759090.7201004, 1571759090.7390234, 1571759090.7579465, 1571759090.7768695, 1571759090.7957926, 1571759090.8147156, 1571759090.8336387, 1571759090.8525617, 1571759090.8714848, 1571759090.8904078, 1571759090.9093308, 1571759090.928254, 1571759090.947177, 1571759090.9661, 1571759090.985023, 1571759091.003946, 1571759091.022869, 1571759091.0417922, 1571759091.0607152, 1571759091.0796382, 1571759091.0985613, 1571759091.1174843, 1571759091.1364074, 1571759091.1553304, 1571759091.1742535, 1571759091.1931765, 1571759091.2120996, 1571759091.2310226, 1571759091.2499456, 1571759091.2688687, 1571759091.2877917, 1571759091.3067148, 1571759091.3256378, 1571759091.3445609, 1571759091.363484, 1571759091.382407, 1571759091.40133, 1571759091.420253], "samples": [[-0.261688232421875, 4.269256591796875, 0.037384033203125], [-0.620574951171875, 4.523468017578125, -0.299072265625], [-1.203765869140625, 4.7552490234375, -0.67291259765625], [-1.682281494140625, 5.719757080078125, -0.657958984375], [-1.86920166015625, 7.095489501953125, -0.620574951171875], [-1.2860107421875, 7.70111083984375, -0.949554443359375], [-0.897216796875, 7.28240966796875, -1.996307373046875], [-0.7476806640625, 5.211334228515625, -2.64678955078125], [-0.396270751953125, 2.758941650390625, -2.190704345703125], [-0.37384033203125, 1.1962890625, -1.24114990234375], [-0.575714111328125, 0.964508056640625, -0.8074951171875], [-0.934600830078125, 2.51220703125, -0.73272705078125], [-1.3458251953125, 4.246826171875, -0.575714111328125], [-1.98883056640625, 4.673004150390625, -0.082244873046875], [-2.1234130859375, 4.56085205078125, 0.650482177734375], [-1.9140625, 4.478607177734375, 1.48040771484375], [-1.472930908203125, 3.730926513671875, 1.906585693359375], [-1.158905029296875, 2.788848876953125, 2.086029052734375], [-0.859832763671875, 2.549591064453125, 2.205657958984375], [-0.2093505859375, 3.39447021484375, 1.846771240234375], [0.13458251953125, 4.62066650390625, 0.8673095703125], [0.0299072265625, 5.166473388671875, -0.0299072265625], [0.25421142578125, 5.316009521484375, -0.396270751953125], [1.18133544921875, 5.27862548828125, -0.4486083984375], [1.80938720703125, 5.480499267578125, -0.6878662109375], [1.592559814453125, 4.77020263671875, -0.91217041015625], [0.76263427734375, 3.3795166015625, -0.59814453125], [-0.07476806640625, 2.026214599609375, 0.6878662109375], [-0.88226318359375, 1.218719482421875, 1.973876953125], [-1.757049560546875, 2.250518798828125, 1.973876953125], [-2.37762451171875, 4.9945068359375, 0.964508056640625], [-2.4224853515625, 8.08990478515625, -0.680389404296875], [-1.95892333984375, 9.97406005859375, -2.385101318359375], [-1.263580322265625, 10.235748291015625, -3.775787353515625], [-0.3289794921875, 10.086212158203125, -4.568328857421875], [0.3289794921875, 9.607696533203125, -4.852447509765625], [0.964508056640625, 8.49365234375, -4.747772216796875], [1.517791748046875, 7.177734375, -4.299163818359375], [1.652374267578125, 5.944061279296875, -4.3365478515625], [1.31591796875, 5.39825439453125, -4.792633056640625], [1.308441162109375, 5.15899658203125, -4.523468017578125], [1.4056396484375, 4.7552490234375, -3.282318115234375], [0.725250244140625, 3.5589599609375, -1.95892333984375], [-0.366363525390625, 2.026214599609375, -1.31591796875], [-0.85235595703125, 1.00189208984375, -1.054229736328125], [-0.635528564453125, 1.15142822265625, -0.829925537109375], [-0.2093505859375, 1.71966552734375, -0.426177978515625], [0.157012939453125, 2.250518798828125, -0.11962890625], [0.43365478515625, 2.34771728515625, 0.35888671875], [0.59814453125, 2.579498291015625, 1.218719482421875], [0.590667724609375, 3.289794921875, 1.77947998046875], [0.418701171875, 4.17205810546875, 1.667327880859375], [0.22430419921875, 4.844970703125, 1.353302001953125], [0.112152099609375, 5.33843994140625, 1.2261962890625], [-0.142059326171875, 5.465545654296875, 1.024322509765625], [-0.411224365234375, 5.450592041015625, 0.6878662109375], [-0.64300537109375, 5.42816162109375, 0.321502685546875], [-0.785064697265625, 5.27862548828125, 0.10467529296875], [-0.83740234375, 4.927215576171875, 0.067291259765625], [-0.949554443359375, 4.41131591796875, 0.366363525390625], [-1.1663818359375, 3.70849609375, 0.381317138671875], [-1.2261962890625, 3.282318115234375, 0.059814453125], [-1.0467529296875, 3.192596435546875, -0.112152099609375], [-0.770111083984375, 3.12530517578125, 0.10467529296875], [-0.411224365234375, 2.788848876953125, 0.43365478515625], [-0.381317138671875, 2.489776611328125, 0.10467529296875], [-0.216827392578125, 2.310333251953125, -0.58319091796875], [0.299072265625, 2.40753173828125, -0.897216796875], [0.82244873046875, 2.370147705078125, -0.61309814453125], [1.099090576171875, 2.340240478515625, -0.007476806640625], [0.755157470703125, 2.489776611328125, 0.10467529296875], [0.157012939453125, 2.6019287109375, 0.1495361328125], [-0.07476806640625, 3.00567626953125, 0.396270751953125], [-0.0299072265625, 3.207550048828125, 0.4486083984375], [-0.01495361328125, 3.09539794921875, -0.0897216796875], [0.082244873046875, 2.848663330078125, -0.657958984375], [0.246734619140625, 2.729034423828125, -0.844879150390625], [0.37384033203125, 2.684173583984375, -0.55328369140625], [0.28411865234375, 2.64678955078125, -0.231781005859375], [-0.112152099609375, 2.489776611328125, -0.381317138671875], [-0.418701171875, 2.624359130859375, -0.70281982421875], [0.04486083984375, 3.0804443359375, -0.500946044921875], [0.456085205078125, 3.521575927734375, -0.246734619140625], [0.059814453125, 3.4393310546875, -0.49346923828125], [-0.49346923828125, 3.043060302734375, -0.934600830078125], [-0.515899658203125, 3.028106689453125, -1.016845703125], [0.052337646484375, 3.24493408203125, -0.725250244140625], [0.485992431640625, 2.983245849609375, -0.411224365234375], [0.545806884765625, 2.564544677734375, -0.478515625], [0.52337646484375, 2.4224853515625, -0.889739990234375], [0.478515625, 2.94586181640625, -1.143951416015625], [0.3289794921875, 3.641204833984375, -1.054229736328125], [-0.082244873046875, 4.02252197265625, -0.73272705078125], [-0.590667724609375, 3.925323486328125, -0.64300537109375], [-0.7476806640625, 3.768310546875, -0.545806884765625], [-0.575714111328125, 3.940277099609375, -0.61309814453125], [-0.46356201171875, 3.887939453125, -0.740203857421875], [-0.396270751953125, 3.6187744140625, -0.949554443359375], [-0.3887939453125, 3.42437744140625, -0.964508056640625], [-0.261688232421875, 3.312225341796875, -0.680389404296875], [-0.186920166015625, 3.342132568359375, -0.127105712890625], [-0.231781005859375, 3.12530517578125, 0.3289794921875], [-0.291595458984375, 2.88604736328125, 0.40374755859375], [-0.2093505859375, 2.91595458984375, 0.530853271484375], [-0.216827392578125, 3.312225341796875, 0.64300537109375], [-0.418701171875, 3.312225341796875, 0.52337646484375], [-0.515899658203125, 3.1103515625, 0.1495361328125], [-0.545806884765625, 3.102874755859375, -0.291595458984375], [-0.40374755859375, 3.491668701171875, -0.478515625], [-0.3887939453125, 3.96270751953125, -0.485992431640625], [-0.6280517578125, 3.850555419921875, -0.276641845703125], [-0.635528564453125, 3.342132568359375, -0.157012939453125], [-0.725250244140625, 2.94586181640625, -0.37384033203125], [-0.478515625, 2.938385009765625, -0.485992431640625], [-0.216827392578125, 2.87109375, -0.2392578125], [-0.037384033203125, 2.87109375, 0.022430419921875], [-0.022430419921875, 2.953338623046875, 0.22430419921875], [-0.10467529296875, 3.282318115234375, 0.351409912109375], [-0.142059326171875, 3.596343994140625, 0.299072265625], [-0.246734619140625, 3.887939453125, 0.127105712890625], [-0.246734619140625, 3.90289306640625, -0.2691650390625], [-0.186920166015625, 3.820648193359375, -0.710296630859375], [0.059814453125, 3.880462646484375, -0.97198486328125], [0.70281982421875, 4.134674072265625, -0.34393310546875], [1.203765869140625, 4.246826171875, 0.485992431640625], [0.83740234375, 3.925323486328125, 0.620574951171875], [0.179443359375, 3.611297607421875, 0.186920166015625], [-0.1495361328125, 3.39447021484375, -0.142059326171875], [-0.097198486328125, 3.506622314453125, -0.082244873046875], [-0.112152099609375, 3.48419189453125, 0.43365478515625], [-0.276641845703125, 3.3197021484375, 0.70281982421875], [-0.605621337890625, 3.6187744140625, 0.59814453125], [-0.97198486328125, 3.760833740234375, 0.814971923828125], [-0.964508056640625, 3.75335693359375, 1.248626708984375], [-0.82244873046875, 4.134674072265625, 1.263580322265625], [-0.725250244140625, 4.85992431640625, 0.575714111328125], [-0.381317138671875, 5.345916748046875, -0.478515625], [0.179443359375, 5.4730224609375, -1.218719482421875], [0.994415283203125, 5.24871826171875, -1.637420654296875], [1.592559814453125, 4.97955322265625, -1.4654541015625], [1.667327880859375, 4.68048095703125, -0.800018310546875], [1.203765869140625, 4.35150146484375, -0.0], [0.46356201171875, 3.93280029296875, 0.620574951171875], [-0.500946044921875, 3.521575927734375, 0.97198486328125], [-1.27105712890625, 3.5589599609375, 0.7177734375], [-1.697235107421875, 4.044952392578125, 0.186920166015625], [-1.667327880859375, 4.418792724609375, -0.11962890625], [-1.248626708984375, 4.53094482421875, -0.11962890625], [-1.099090576171875, 4.568328857421875, -0.605621337890625], [-1.06170654296875, 4.74029541015625, -1.353302001953125], [-0.88226318359375, 5.00946044921875, -1.727142333984375], [-0.500946044921875, 4.837493896484375, -1.51031494140625], [-0.059814453125, 4.029998779296875, -0.979461669921875], [-0.112152099609375, 3.18511962890625, -0.785064697265625], [-0.127105712890625, 2.953338623046875, -0.67291259765625], [-0.059814453125, 3.087921142578125, -0.276641845703125], [-0.13458251953125, 3.03558349609375, 0.179443359375], [-0.2392578125, 2.82623291015625, 0.55328369140625], [-0.411224365234375, 2.983245849609375, 0.411224365234375], [-0.2691650390625, 3.60382080078125, 0.0897216796875], [0.037384033203125, 3.99261474609375, 0.0897216796875], [0.35888671875, 3.7384033203125, 0.3887939453125], [0.0897216796875, 3.252410888671875, 0.5084228515625], [-0.5682373046875, 3.51409912109375, 0.142059326171875], [-0.59814453125, 4.0673828125, -0.01495361328125], [-0.306549072265625, 4.373931884765625, 0.052337646484375], [-0.291595458984375, 3.790740966796875, -0.16448974609375], [-0.2691650390625, 2.953338623046875, -0.680389404296875], [-0.10467529296875, 2.9010009765625, -1.39068603515625], [0.2093505859375, 3.177642822265625, -1.547698974609375], [0.34393310546875, 3.072967529296875, -1.143951416015625], [0.291595458984375, 2.52716064453125, -0.40374755859375], [0.112152099609375, 1.996307373046875, 0.067291259765625], [-0.022430419921875, 2.340240478515625, 0.157012939453125], [0.067291259765625, 3.192596435546875, 0.231781005859375], [0.299072265625, 3.70849609375, 0.366363525390625], [0.43365478515625, 3.6785888671875, 0.34393310546875], [0.52337646484375, 3.4991455078125, -0.052337646484375], [0.396270751953125, 3.656158447265625, -0.64300537109375], [0.49346923828125, 3.686065673828125, -1.016845703125], [0.538330078125, 3.461761474609375, -0.73272705078125], [0.515899658203125, 3.03558349609375, -0.142059326171875], [0.31402587890625, 2.953338623046875, 0.157012939453125], [0.097198486328125, 3.222503662109375, -0.28411865234375], [-0.022430419921875, 3.327178955078125, -0.770111083984375], [-0.052337646484375, 3.072967529296875, -0.9271240234375], [-0.186920166015625, 2.953338623046875, -0.9271240234375], [-0.40374755859375, 3.5589599609375, -0.829925537109375], [-0.605621337890625, 4.32159423828125, -0.740203857421875], [-0.777587890625, 4.358978271484375, -0.7476806640625], [-0.83740234375, 3.87298583984375, -0.829925537109375], [-0.55328369140625, 3.63372802734375, -0.897216796875], [-0.201873779296875, 4.059906005859375, -0.95703125], [0.246734619140625, 4.149627685546875, -1.016845703125], [0.321502685546875, 3.805694580078125, -0.844879150390625], [-0.007476806640625, 3.147735595703125, -0.6280517578125], [-0.16448974609375, 2.75146484375, -0.171966552734375], [-0.171966552734375, 2.908477783203125, -0.1495361328125], [-0.097198486328125, 3.349609375, -0.605621337890625], [-0.022430419921875, 3.46923828125, -0.800018310546875], [-0.04486083984375, 3.36456298828125, -0.650482177734375], [-0.11962890625, 3.252410888671875, -0.31402587890625], [-0.336456298828125, 3.6785888671875, -0.04486083984375], [-0.3887939453125, 4.059906005859375, 0.037384033203125], [-0.3887939453125, 4.119720458984375, -0.142059326171875], [-0.3887939453125, 3.775787353515625, -0.59814453125], [0.16448974609375, 3.3795166015625, -0.740203857421875], [0.590667724609375, 3.33465576171875, -0.85235595703125], [0.43365478515625, 3.536529541015625, -0.9271240234375], [-0.059814453125, 3.66363525390625, -0.471038818359375], [-0.43365478515625, 3.24493408203125, -0.112152099609375], [-0.366363525390625, 2.82623291015625, -0.538330078125], [-0.059814453125, 3.0206298828125, -1.2261962890625], [0.246734619140625, 3.54400634765625, -1.48040771484375], [0.31402587890625, 3.850555419921875, -1.248626708984375], [-0.022430419921875, 3.805694580078125, -1.263580322265625], [-0.22430419921875, 3.75335693359375, -1.712188720703125], [0.366363525390625, 4.246826171875, -1.8243408203125], [1.727142333984375, 5.1141357421875, -1.024322509765625], [2.385101318359375, 5.5328369140625, -1.084136962890625], [2.190704345703125, 5.51788330078125, -2.31781005859375], [1.562652587890625, 5.33843994140625, -3.60382080078125], [0.814971923828125, 5.263671875, -4.269256591796875], [0.16448974609375, 5.15899658203125, -3.99261474609375], [-0.55328369140625, 4.867401123046875, -2.968292236328125], [-0.934600830078125, 4.42626953125, -2.093505859375], [-0.904693603515625, 3.84307861328125, -1.712188720703125], [-0.46356201171875, 3.42437744140625, -1.48040771484375], [0.112152099609375, 3.27484130859375, -0.8673095703125], [0.441131591796875, 3.170166015625, 0.059814453125], [0.59814453125, 2.99072265625, 1.084136962890625], [1.891632080078125, 2.49725341796875, 1.734619140625], [3.446807861328125, 2.011260986328125, 1.86920166015625], [3.641204833984375, 1.86920166015625, 1.876678466796875], [3.252410888671875, 2.28790283203125, 1.54022216796875], [2.549591064453125, 2.489776611328125, 1.016845703125], [1.8243408203125, 2.071075439453125, 0.844879150390625], [1.15142822265625, 1.51031494140625, 0.70281982421875], [0.261688232421875, 1.1065673828125, 0.201873779296875], [-0.3289794921875, 1.12152099609375, -0.70281982421875], [-0.680389404296875, 1.614990234375, -1.263580322265625], [-0.560760498046875, 2.2430419921875, -1.30096435546875], [-0.411224365234375, 2.833709716796875, -0.8074951171875], [-0.441131591796875, 3.297271728515625, -0.426177978515625], [-0.411224365234375, 3.701019287109375, -0.381317138671875], [-0.37384033203125, 3.887939453125, -0.5084228515625], [-0.157012939453125, 3.94775390625, -0.478515625], [-0.28411865234375, 3.850555419921875, -0.456085205078125], [-0.590667724609375, 3.880462646484375, -0.7476806640625], [-0.43365478515625, 3.940277099609375, -1.039276123046875], [-0.04486083984375, 3.96270751953125, -0.949554443359375], [-0.142059326171875, 3.66363525390625, -0.88226318359375], [-0.11962890625, 3.36456298828125, -0.76263427734375], [-0.142059326171875, 3.0206298828125, -0.538330078125], [-0.31402587890625, 2.9010009765625, -0.336456298828125], [-0.299072265625, 2.930908203125, -0.22430419921875], [0.022430419921875, 3.147735595703125, -0.037384033203125], [0.231781005859375, 3.222503662109375, 0.396270751953125], [0.186920166015625, 2.893524169921875, 0.67291259765625], [0.07476806640625, 2.61688232421875, 0.620574951171875], [0.179443359375, 3.03558349609375, 0.276641845703125], [0.306549072265625, 3.730926513671875, -0.07476806640625], [0.321502685546875, 3.985137939453125, -0.25421142578125], [0.10467529296875, 3.701019287109375, -0.396270751953125], [-0.179443359375, 3.177642822265625, -0.515899658203125], [-0.299072265625, 2.99072265625, -0.76263427734375], [-0.2691650390625, 3.297271728515625, -1.024322509765625], [-0.31402587890625, 3.476715087890625, -0.994415283203125], [-0.306549072265625, 3.252410888671875, -0.740203857421875], [-0.201873779296875, 2.9010009765625, -0.64300537109375], [-0.007476806640625, 3.087921142578125, -0.964508056640625], [0.112152099609375, 3.289794921875, -1.18133544921875], [0.157012939453125, 2.998199462890625, -1.06170654296875], [0.01495361328125, 2.52716064453125, -0.59814453125], [-0.25421142578125, 2.64678955078125, -0.2093505859375], [-0.381317138671875, 3.267364501953125, -0.186920166015625], [-0.201873779296875, 3.75335693359375, -0.411224365234375], [0.022430419921875, 3.730926513671875, -0.605621337890625], [0.321502685546875, 3.416900634765625, -0.5682373046875], [0.530853271484375, 3.289794921875, -0.55328369140625], [0.67291259765625, 3.013153076171875, -0.37384033203125], [0.79254150390625, 2.75146484375, -0.127105712890625], [0.381317138671875, 2.51220703125, -0.127105712890625], [-0.07476806640625, 2.392578125, -0.13458251953125], [-0.25421142578125, 2.61688232421875, -0.179443359375], [-0.291595458984375, 3.132781982421875, -0.6280517578125], [-0.276641845703125, 3.596343994140625, -1.173858642578125], [-0.25421142578125, 3.7384033203125, -1.27105712890625], [-0.216827392578125, 3.551483154296875, -0.770111083984375], [-0.142059326171875, 3.566436767578125, -0.246734619140625], [-0.157012939453125, 3.768310546875, -0.11962890625], [-0.291595458984375, 3.7982177734375, -0.22430419921875], [-0.64300537109375, 3.596343994140625, -0.538330078125], [-0.635528564453125, 3.297271728515625, -0.6280517578125], [-0.216827392578125, 3.12530517578125, -0.52337646484375], [-0.31402587890625, 3.09539794921875, -0.9271240234375], [-0.538330078125, 3.21502685546875, -1.4056396484375], [-0.5084228515625, 3.177642822265625, -1.31591796875], [-0.3887939453125, 3.00567626953125, -0.785064697265625], [-0.11962890625, 3.21502685546875, -0.28411865234375], [-0.0, 3.90289306640625, -0.11962890625], [0.13458251953125, 4.62066650390625, -0.127105712890625], [0.201873779296875, 4.77020263671875, 0.059814453125], [0.112152099609375, 4.433746337890625, 0.201873779296875], [-0.04486083984375, 3.87298583984375, 0.022430419921875], [-0.16448974609375, 3.57391357421875, -0.441131591796875], [-0.097198486328125, 3.506622314453125, -0.874786376953125], [-0.0, 3.431854248046875, -0.904693603515625], [0.022430419921875, 3.132781982421875, -0.73272705078125], [-0.13458251953125, 2.833709716796875, -0.777587890625], [-0.2093505859375, 2.953338623046875, -0.897216796875], [-0.216827392578125, 3.431854248046875, -0.725250244140625], [-0.261688232421875, 3.820648193359375, -0.2691650390625], [-0.396270751953125, 3.84307861328125, 0.112152099609375], [-0.418701171875, 3.671112060546875, 0.097198486328125], [-0.411224365234375, 3.401947021484375, -0.34393310546875], [-0.291595458984375, 3.297271728515625, -0.785064697265625], [-0.082244873046875, 3.401947021484375, -0.889739990234375], [0.01495361328125, 3.506622314453125, -0.665435791015625], [-0.201873779296875, 3.521575927734375, -0.777587890625], [-0.530853271484375, 3.54400634765625, -0.88226318359375], [-0.52337646484375, 3.81317138671875, -0.79254150390625], [-0.276641845703125, 3.925323486328125, -0.291595458984375], [0.179443359375, 3.7982177734375, 0.13458251953125], [0.097198486328125, 3.641204833984375, -0.16448974609375], [-0.10467529296875, 3.431854248046875, -0.7476806640625], [0.059814453125, 3.297271728515625, -1.07666015625], [0.28411865234375, 3.177642822265625, -0.94207763671875], [0.2691650390625, 3.177642822265625, -0.785064697265625], [0.142059326171875, 3.36456298828125, -0.478515625], [-0.0299072265625, 3.75335693359375, 0.179443359375], [0.022430419921875, 4.08233642578125, 0.55328369140625], [0.127105712890625, 4.164581298828125, 0.530853271484375], [0.1495361328125, 3.887939453125, 0.216827392578125], [-0.082244873046875, 3.596343994140625, -0.35888671875], [-0.16448974609375, 3.54400634765625, -0.79254150390625], [0.186920166015625, 3.790740966796875, -0.7177734375], [0.34393310546875, 3.78326416015625, -0.500946044921875], [0.2392578125, 3.289794921875, -0.418701171875], [0.1495361328125, 2.85614013671875, -0.28411865234375], [0.10467529296875, 2.51220703125, -0.022430419921875], [0.01495361328125, 2.459869384765625, 0.0299072265625], [-0.179443359375, 2.654266357421875, 0.10467529296875], [-0.291595458984375, 2.788848876953125, 0.28411865234375], [-0.0299072265625, 2.87109375, 0.441131591796875], [0.291595458984375, 3.0206298828125, 0.64300537109375], [0.456085205078125, 3.043060302734375, 0.73272705078125], [0.456085205078125, 3.050537109375, 0.620574951171875], [0.25421142578125, 3.282318115234375, 0.515899658203125], [-0.231781005859375, 3.790740966796875, 0.299072265625], [-0.844879150390625, 4.246826171875, 0.321502685546875], [-1.71966552734375, 4.732818603515625, 0.43365478515625], [-3.09539794921875, 5.196380615234375, 0.299072265625], [-4.179534912109375, 5.420684814453125, 0.01495361328125], [-4.284210205078125, 5.854339599609375, -0.0299072265625], [-3.81317138671875, 6.0113525390625, -0.067291259765625], [-1.951446533203125, 6.512298583984375, -0.396270751953125], [0.785064697265625, 7.3870849609375, -1.51031494140625], [1.772003173828125, 6.71417236328125, -2.6318359375], [2.3028564453125, 5.81695556640625, -2.729034423828125], [2.459869384765625, 5.525360107421875, -2.19818115234375], [2.474822998046875, 5.7421875, -1.12152099609375], [2.325286865234375, 6.05621337890625, -0.059814453125], [1.65985107421875, 5.899200439453125, 0.740203857421875], [0.7177734375, 4.964599609375, 0.829925537109375], [0.34393310546875, 3.342132568359375, 0.246734619140625], [0.9271240234375, 1.861724853515625, -0.800018310546875], [2.03369140625, 0.83740234375, -2.026214599609375], [2.983245849609375, -0.01495361328125, -2.88604736328125], [3.671112060546875, -0.590667724609375, -2.758941650390625], [3.828125, -0.755157470703125, -2.041168212890625], [3.551483154296875, 0.059814453125, -1.09161376953125], [3.15521240234375, 1.383209228515625, 0.19439697265625], [2.803802490234375, 2.325286865234375, 2.086029052734375], [2.04864501953125, 2.773895263671875, 3.7982177734375], [0.657958984375, 3.3795166015625, 4.1571044921875], [-0.58319091796875, 4.358978271484375, 3.84307861328125], [-0.560760498046875, 5.390777587890625, 4.284210205078125], [0.201873779296875, 5.555267333984375, 5.375823974609375], [0.186920166015625, 4.942169189453125, 5.084228515625], [-0.1495361328125, 4.007568359375, 3.312225341796875], [0.276641845703125, 3.043060302734375, 1.248626708984375], [1.21124267578125, 2.205657958984375, -0.5084228515625], [2.213134765625, 1.42059326171875, -1.854248046875], [2.474822998046875, 0.800018310546875, -2.415008544921875], [1.5252685546875, 0.695343017578125, -2.235565185546875], [-0.052337646484375, 1.143951416015625, -1.60003662109375], [-1.495361328125, 1.7645263671875, -0.59814453125], [-2.385101318359375, 2.205657958984375, 0.186920166015625], [-2.459869384765625, 2.1533203125, 0.635528564453125], [-1.712188720703125, 1.973876953125, 0.55328369140625], [-0.725250244140625, 1.786956787109375, -0.179443359375], [0.157012939453125, 1.7047119140625, -0.897216796875], [0.88226318359375, 1.734619140625, -1.12152099609375], [1.36077880859375, 2.10845947265625, -0.575714111328125], [1.233673095703125, 2.549591064453125, 0.10467529296875], [0.844879150390625, 2.811279296875, 0.64300537109375], [0.5682373046875, 2.7215576171875, 0.994415283203125], [0.49346923828125, 2.6019287109375, 1.03179931640625], [0.46356201171875, 2.504730224609375, 0.710296630859375], [0.40374755859375, 2.639312744140625, 0.418701171875], [0.306549072265625, 2.9010009765625, 0.49346923828125], [0.142059326171875, 3.15521240234375, 0.814971923828125], [-0.112152099609375, 3.36456298828125, 0.949554443359375], [-0.3887939453125, 3.46923828125, 0.897216796875], [-0.366363525390625, 3.357086181640625, 0.680389404296875], [-0.28411865234375, 3.327178955078125, 0.4486083984375], [-0.067291259765625, 3.401947021484375, -0.13458251953125], [0.321502685546875, 3.54400634765625, -0.70281982421875], [0.500946044921875, 3.551483154296875, -1.054229736328125], [0.276641845703125, 3.461761474609375, -1.42059326171875], [0.07476806640625, 3.289794921875, -1.457977294921875], [-0.291595458984375, 3.386993408203125, -1.18133544921875], [-0.55328369140625, 3.12530517578125, -0.538330078125], [-0.76263427734375, 2.55706787109375, -0.201873779296875], [-1.39068603515625, 2.235565185546875, -0.530853271484375], [-1.435546875, 2.19818115234375, -1.07666015625], [-1.09161376953125, 2.504730224609375, -1.39068603515625], [-0.299072265625, 2.94586181640625, -1.368255615234375], [0.605621337890625, 3.3197021484375, -1.188812255859375], [0.85235595703125, 3.641204833984375, -0.8673095703125], [0.485992431640625, 3.940277099609375, -0.67291259765625], [0.201873779296875, 4.2169189453125, -0.418701171875], [0.201873779296875, 4.74029541015625, -0.336456298828125], [0.2392578125, 4.972076416015625, -0.3887939453125], [0.067291259765625, 4.88983154296875, -0.964508056640625], [-0.01495361328125, 4.56085205078125, -1.577606201171875], [0.441131591796875, 4.59075927734375, -1.891632080078125], [0.471038818359375, 4.747772216796875, -2.19818115234375], [0.13458251953125, 4.85992431640625, -2.729034423828125], [-0.411224365234375, 4.8150634765625, -3.2000732421875], [-0.695343017578125, 4.77020263671875, -3.611297607421875], [-0.710296630859375, 5.06927490234375, -4.089813232421875], [-0.560760498046875, 5.570220947265625, -4.486083984375], [-0.530853271484375, 5.794525146484375, -4.77020263671875], [-0.657958984375, 5.4132080078125, -4.9945068359375], [-0.829925537109375, 4.553375244140625, -5.0543212890625], [-1.03179931640625, 3.671112060546875, -5.226287841796875], [-1.069183349609375, 3.24493408203125, -5.4730224609375], [-1.21124267578125, 3.3795166015625, -5.39825439453125], [-1.592559814453125, 3.4393310546875, -5.061798095703125], [-2.0635986328125, 3.282318115234375, -4.523468017578125], [-2.444915771484375, 3.252410888671875, -3.78326416015625], [-2.564544677734375, 3.461761474609375, -3.00567626953125], [-2.452392578125, 3.7982177734375, -2.27294921875], [-2.19818115234375, 3.865509033203125, -2.01873779296875], [-1.861724853515625, 3.75335693359375, -1.854248046875], [-1.435546875, 3.70849609375, -1.443023681640625], [-0.897216796875, 3.820648193359375, -0.770111083984375], [-0.530853271484375, 3.955230712890625, 0.067291259765625], [-0.49346923828125, 3.880462646484375, 0.73272705078125], [-0.590667724609375, 3.760833740234375, 0.919647216796875], [-0.58319091796875, 3.70849609375, 0.695343017578125], [-0.261688232421875, 4.015045166015625, 0.500946044921875], [0.31402587890625, 4.119720458984375, 0.34393310546875], [0.5084228515625, 4.059906005859375, 0.31402587890625], [0.456085205078125, 4.104766845703125, 0.40374755859375], [0.19439697265625, 4.373931884765625, 0.46356201171875], [0.291595458984375, 4.366455078125, 0.650482177734375], [0.59814453125, 4.0972900390625, 0.7177734375], [0.665435791015625, 3.865509033203125, 0.55328369140625], [0.73272705078125, 3.5589599609375, 0.2392578125], [0.70281982421875, 3.289794921875, -0.01495361328125], [0.874786376953125, 2.923431396484375, 0.142059326171875], [1.09161376953125, 2.833709716796875, 0.545806884765625], [1.084136962890625, 3.117828369140625, 0.91217041015625], [0.814971923828125, 3.289794921875, 0.91217041015625], [0.49346923828125, 3.22998046875, 0.70281982421875], [0.28411865234375, 2.938385009765625, 0.530853271484375], [-0.007476806640625, 2.549591064453125, 0.0299072265625], [-0.538330078125, 2.76641845703125, -0.8673095703125], [-0.49346923828125, 3.27484130859375, -1.31591796875], [-0.022430419921875, 3.46923828125, -1.016845703125], [0.11962890625, 3.028106689453125, -0.740203857421875], [-0.022430419921875, 2.31781005859375, -0.64300537109375], [-0.07476806640625, 2.160797119140625, -0.680389404296875], [0.097198486328125, 2.489776611328125, -0.530853271484375], [0.426177978515625, 2.7215576171875, -0.381317138671875], [0.695343017578125, 2.878570556640625, 0.007476806640625], [0.58319091796875, 2.99072265625, 0.321502685546875], [0.3289794921875, 3.12530517578125, 0.157012939453125], [0.07476806640625, 3.521575927734375, -0.2093505859375], [-0.037384033203125, 3.63372802734375, -0.456085205078125], [-0.052337646484375, 3.4991455078125, -0.37384033203125], [-0.112152099609375, 3.147735595703125, -0.34393310546875], [-0.306549072265625, 2.94586181640625, -0.52337646484375], [-0.411224365234375, 3.147735595703125, -0.740203857421875], [-0.37384033203125, 3.48419189453125, -0.79254150390625], [-0.28411865234375, 3.835601806640625, -0.55328369140625], [-0.299072265625, 3.850555419921875, -0.19439697265625], [-0.381317138671875, 3.9178466796875, -0.186920166015625], [-0.5084228515625, 4.074859619140625, -0.605621337890625], [-0.49346923828125, 4.08233642578125, -0.897216796875], [-0.306549072265625, 3.87298583984375, -0.79254150390625], [-0.179443359375, 3.5888671875, -0.605621337890625], [-0.34393310546875, 3.4393310546875, -0.478515625], [-0.560760498046875, 3.409423828125, -0.478515625], [-0.411224365234375, 3.5888671875, -0.291595458984375], [-0.097198486328125, 3.835601806640625, -0.067291259765625], [-0.037384033203125, 4.0972900390625, -0.16448974609375], [-0.0897216796875, 4.254302978515625, -0.471038818359375], [-0.112152099609375, 4.329071044921875, -0.620574951171875], [0.16448974609375, 4.20196533203125, -0.2691650390625], [0.530853271484375, 3.910369873046875, 0.396270751953125], [0.426177978515625, 3.57391357421875, 0.73272705078125], [0.1495361328125, 3.282318115234375, 0.4486083984375], [-0.007476806640625, 3.24493408203125, -0.067291259765625], [0.067291259765625, 3.357086181640625, -0.55328369140625], [0.276641845703125, 3.3795166015625, -0.889739990234375], [0.157012939453125, 3.312225341796875, -0.94207763671875], [-0.11962890625, 3.177642822265625, -0.8673095703125], [-0.2691650390625, 3.18511962890625, -0.59814453125], [-0.276641845703125, 3.431854248046875, -0.31402587890625], [-0.49346923828125, 3.54400634765625, -0.067291259765625], [-1.03179931640625, 3.30474853515625, -0.3289794921875], [-1.45050048828125, 3.050537109375, -0.657958984375], [-0.88226318359375, 3.192596435546875, -0.874786376953125], [-0.478515625, 3.476715087890625, -1.143951416015625], [-0.299072265625, 3.372039794921875, -1.248626708984375], [-0.186920166015625, 3.03558349609375, -0.94207763671875], [-0.231781005859375, 2.811279296875, -0.351409912109375], [-0.07476806640625, 3.147735595703125, 0.2093505859375], [0.40374755859375, 3.7982177734375, 0.695343017578125], [0.829925537109375, 4.299163818359375, 0.94207763671875], [1.203765869140625, 4.553375244140625, 0.94207763671875], [1.09161376953125, 4.59075927734375, 0.485992431640625], [0.61309814453125, 4.71038818359375, -0.10467529296875], [-0.0, 4.583282470703125, 0.007476806640625], [-0.0, 4.1571044921875, 1.1962890625], [0.3289794921875, 3.701019287109375, 2.474822998046875], [0.037384033203125, 3.671112060546875, 2.385101318359375], [-0.605621337890625, 3.9178466796875, 1.353302001953125], [-0.897216796875, 4.1571044921875, 0.201873779296875], [-0.785064697265625, 4.23187255859375, -0.411224365234375], [-0.201873779296875, 4.044952392578125, -0.471038818359375], [0.22430419921875, 3.87298583984375, -0.2392578125], [0.0299072265625, 3.7982177734375, 0.0897216796875], [-0.25421142578125, 3.4393310546875, 0.418701171875], [-0.31402587890625, 3.09539794921875, 0.695343017578125], [-0.657958984375, 2.863616943359375, 0.6878662109375], [-0.9271240234375, 2.332763671875, 0.5084228515625], [-0.575714111328125, 2.04864501953125, 0.46356201171875], [0.4486083984375, 2.519683837890625, 0.657958984375], [1.4654541015625, 3.476715087890625, 0.59814453125], [1.48040771484375, 4.254302978515625, -0.022430419921875], [0.7177734375, 4.493560791015625, -0.635528564453125], [0.0299072265625, 4.246826171875, -0.79254150390625], [-0.179443359375, 3.78326416015625, -0.441131591796875], [-0.127105712890625, 3.087921142578125, -0.157012939453125], [-0.538330078125, 2.340240478515625, -0.19439697265625], [-0.88226318359375, 1.614990234375, -0.35888671875], [-1.24114990234375, 1.18133544921875, -0.680389404296875], [-1.65985107421875, 1.24114990234375, -1.203765869140625], [-1.854248046875, 1.233673095703125, -1.682281494140625], [-1.614990234375, 1.368255615234375, -1.7047119140625], [-0.785064697265625, 1.876678466796875, -1.532745361328125], [0.500946044921875, 2.489776611328125, -1.203765869140625], [1.60003662109375, 3.0804443359375, -0.94207763671875], [2.190704345703125, 3.27484130859375, -0.500946044921875], [2.0635986328125, 3.297271728515625, -0.04486083984375], [1.278533935546875, 3.33465576171875, 0.31402587890625], [0.725250244140625, 3.27484130859375, 0.680389404296875], [0.40374755859375, 3.102874755859375, 0.814971923828125], [0.261688232421875, 2.938385009765625, 0.6280517578125], [0.299072265625, 2.97576904296875, 0.35888671875], [0.059814453125, 3.087921142578125, -0.10467529296875], [-0.381317138671875, 3.18511962890625, -0.73272705078125], [-0.777587890625, 3.349609375, -1.1663818359375], [-0.97198486328125, 3.566436767578125, -1.2261962890625], [-0.829925537109375, 3.536529541015625, -0.934600830078125], [-0.58319091796875, 3.102874755859375, -0.530853271484375], [-0.58319091796875, 2.878570556640625, -0.299072265625], [-0.755157470703125, 3.147735595703125, -0.306549072265625], [-1.009368896484375, 3.745880126953125, -0.441131591796875], [-1.15142822265625, 4.269256591796875, -0.500946044921875], [-1.054229736328125, 4.47113037109375, -0.201873779296875], [-0.800018310546875, 4.306640625, 0.40374755859375], [-0.650482177734375, 3.760833740234375, 1.016845703125], [-0.40374755859375, 3.446807861328125, 1.18133544921875], [-0.11962890625, 4.2767333984375, 0.740203857421875], [0.037384033203125, 5.301055908203125, 0.351409912109375], [-0.186920166015625, 5.5328369140625, -0.04486083984375], [-0.70281982421875, 4.8150634765625, -0.441131591796875], [-0.994415283203125, 3.835601806640625, -0.76263427734375], [-0.76263427734375, 3.237457275390625, -0.82244873046875], [0.052337646484375, 2.474822998046875, -0.43365478515625], [0.874786376953125, 1.614990234375, 0.426177978515625], [1.158905029296875, 0.545806884765625, 0.9271240234375], [0.7476806640625, -0.351409912109375, 0.82244873046875], [0.2392578125, -0.67291259765625, 0.426177978515625], [-0.142059326171875, -0.1495361328125, 0.04486083984375], [-0.216827392578125, 0.8074951171875, -0.11962890625], [0.22430419921875, 1.652374267578125, -0.85235595703125], [1.158905029296875, 2.579498291015625, -1.263580322265625], [1.876678466796875, 4.254302978515625, -0.500946044921875], [1.18133544921875, 6.17584228515625, 0.7476806640625], [-0.112152099609375, 6.9683837890625, 1.51031494140625], [-1.054229736328125, 6.878662109375, 1.637420654296875], [-1.39068603515625, 6.213226318359375, 1.31591796875], [-1.069183349609375, 5.69732666015625, 0.8074951171875], [-0.366363525390625, 5.21881103515625, 0.25421142578125], [0.336456298828125, 4.762725830078125, -0.19439697265625], [0.777587890625, 4.14215087890625, -0.49346923828125], [0.889739990234375, 3.45428466796875, -0.560760498046875], [0.725250244140625, 2.788848876953125, -0.5084228515625], [0.35888671875, 2.504730224609375, -0.59814453125], [0.059814453125, 2.743988037109375, -0.94207763671875], [0.35888671875, 3.028106689453125, -0.979461669921875], [0.186920166015625, 2.61688232421875, -1.054229736328125], [-0.082244873046875, 1.77947998046875, -1.039276123046875], [-0.2093505859375, 1.435546875, -0.800018310546875], [-0.067291259765625, 1.816864013671875, -0.61309814453125], [0.216827392578125, 2.400054931640625, -0.545806884765625], [0.58319091796875, 2.968292236328125, -0.2093505859375], [0.657958984375, 3.237457275390625, 0.157012939453125], [0.575714111328125, 3.252410888671875, 0.0897216796875], [0.70281982421875, 3.461761474609375, -0.216827392578125], [1.143951416015625, 4.059906005859375, -0.216827392578125], [1.18133544921875, 4.20196533203125, -0.127105712890625], [0.904693603515625, 3.768310546875, -0.276641845703125], [0.725250244140625, 3.0206298828125, -0.52337646484375], [0.82244873046875, 2.392578125, -0.800018310546875], [0.8673095703125, 2.37762451171875, -0.800018310546875], [0.545806884765625, 2.743988037109375, -0.67291259765625], [0.052337646484375, 2.8411865234375, -0.777587890625], [-0.336456298828125, 2.58697509765625, -0.919647216796875], [-0.216827392578125, 2.519683837890625, -0.710296630859375], [0.022430419921875, 2.848663330078125, -0.55328369140625], [-0.07476806640625, 3.050537109375, -0.889739990234375], [-0.186920166015625, 2.9010009765625, -1.31591796875], [-0.157012939453125, 2.97576904296875, -1.353302001953125], [-0.0299072265625, 3.30474853515625, -1.00189208984375], [-0.22430419921875, 3.820648193359375, -0.545806884765625], [-0.67291259765625, 4.074859619140625, -0.500946044921875], [-1.03179931640625, 3.887939453125, -0.829925537109375], [-0.904693603515625, 3.90289306640625, -0.70281982421875], [-0.560760498046875, 3.581390380859375, -0.6280517578125], [-0.336456298828125, 2.85614013671875, -0.381317138671875], [-0.112152099609375, 2.392578125, -0.336456298828125], [-0.261688232421875, 2.429962158203125, -0.560760498046875], [-0.35888671875, 2.691650390625, -0.6878662109375], [-0.725250244140625, 2.639312744140625, -0.67291259765625], [-1.173858642578125, 2.43743896484375, -0.396270751953125], [-1.31591796875, 2.489776611328125, 0.2392578125], [-1.1962890625, 2.94586181640625, 0.635528564453125], [-0.650482177734375, 3.69354248046875, 0.73272705078125], [0.022430419921875, 4.306640625, 0.64300537109375], [0.246734619140625, 4.149627685546875, 0.725250244140625], [0.231781005859375, 3.775787353515625, 0.471038818359375], [0.321502685546875, 3.880462646484375, -0.35888671875], [1.09161376953125, 4.478607177734375, -0.43365478515625], [1.936492919921875, 5.241241455078125, 0.216827392578125], [2.1832275390625, 5.7421875, 0.994415283203125], [2.0635986328125, 5.57769775390625, 1.36077880859375], [2.056121826171875, 5.345916748046875, 1.1663818359375], [2.10845947265625, 4.852447509765625, 0.6280517578125], [2.130889892578125, 4.074859619140625, 0.04486083984375], [1.906585693359375, 3.372039794921875, -0.306549072265625], [1.57012939453125, 2.85614013671875, -0.3289794921875], [1.173858642578125, 2.519683837890625, -0.082244873046875], [0.829925537109375, 2.34771728515625, 0.34393310546875], [0.3887939453125, 2.16827392578125, 0.7476806640625], [-0.485992431640625, 2.093505859375, 0.7177734375], [-1.1962890625, 2.474822998046875, 0.411224365234375], [-1.472930908203125, 3.386993408203125, 0.3887939453125], [-1.36077880859375, 3.93280029296875, 0.515899658203125], [-1.173858642578125, 3.5589599609375, 0.650482177734375], [-0.889739990234375, 3.2000732421875, 0.560760498046875], [-0.605621337890625, 3.349609375, 0.13458251953125], [-0.396270751953125, 3.94775390625, -0.179443359375], [-0.19439697265625, 4.18701171875, 0.007476806640625], [-0.10467529296875, 3.81317138671875, 0.620574951171875], [-0.471038818359375, 3.349609375, 1.27105712890625], [-1.1663818359375, 3.536529541015625, 1.15142822265625], [-1.30096435546875, 4.613189697265625, 0.411224365234375], [-0.665435791015625, 5.9515380859375, -0.261688232421875], [-0.35888671875, 6.063690185546875, -0.351409912109375], [-0.261688232421875, 5.42816162109375, 0.336456298828125], [-0.07476806640625, 5.031890869140625, 0.949554443359375], [0.46356201171875, 5.181427001953125, 0.8074951171875], [1.099090576171875, 4.94964599609375, -0.231781005859375], [1.31591796875, 4.127197265625, -1.68975830078125], [1.15142822265625, 3.013153076171875, -2.51220703125], [0.770111083984375, 1.86920166015625, -2.40753173828125], [-0.052337646484375, 0.897216796875, -1.428070068359375], [-1.016845703125, 0.112152099609375, -0.13458251953125], [-2.10845947265625, -0.635528564453125, 0.64300537109375], [-2.6318359375, -1.27105712890625, 0.777587890625], [-1.996307373046875, -0.934600830078125, 0.620574951171875], [-0.411224365234375, 0.49346923828125, 0.49346923828125], [1.368255615234375, 2.579498291015625, 0.299072265625], [1.9439697265625, 4.2169189453125, -0.321502685546875], [1.577606201171875, 4.583282470703125, -0.859832763671875], [1.18133544921875, 4.179534912109375, -0.590667724609375], [0.635528564453125, 3.521575927734375, 0.321502685546875], [-0.426177978515625, 2.58697509765625, 1.016845703125], [-1.413116455078125, 2.07855224609375, 0.964508056640625], [-1.854248046875, 1.966400146484375, 0.7177734375], [-1.906585693359375, 1.95892333984375, 0.3887939453125], [-1.906585693359375, 2.190704345703125, -0.022430419921875], [-1.861724853515625, 2.400054931640625, -0.46356201171875], [-1.457977294921875, 2.938385009765625, -0.7476806640625], [-0.83740234375, 3.69354248046875, -0.7177734375], [-0.2093505859375, 4.29168701171875, -0.8673095703125], [0.13458251953125, 4.493560791015625, -1.233673095703125], [0.37384033203125, 4.059906005859375, -1.801910400390625], [0.889739990234375, 3.715972900390625, -2.03369140625], [1.03179931640625, 3.78326416015625, -2.205657958984375], [0.515899658203125, 4.127197265625, -2.519683837890625], [-0.37384033203125, 4.418792724609375, -2.549591064453125], [-1.009368896484375, 4.553375244140625, -2.026214599609375], [-1.1065673828125, 4.329071044921875, -1.233673095703125], [-0.829925537109375, 3.75335693359375, -0.73272705078125], [-0.2392578125, 3.222503662109375, -0.530853271484375], [0.186920166015625, 3.3197021484375, -0.426177978515625], [0.31402587890625, 3.69354248046875, -0.142059326171875], [-0.022430419921875, 3.93280029296875, 0.336456298828125], [-0.426177978515625, 3.925323486328125, 0.83740234375], [-0.560760498046875, 3.7982177734375, 0.904693603515625], [-0.538330078125, 3.8580322265625, 0.1495361328125], [-0.471038818359375, 4.224395751953125, -0.695343017578125], [-0.28411865234375, 4.583282470703125, -1.158905029296875], [-0.43365478515625, 4.314117431640625, -1.039276123046875], [-0.351409912109375, 3.60382080078125, -0.91217041015625], [-0.25421142578125, 3.072967529296875, -0.82244873046875], [-0.07476806640625, 2.893524169921875, -0.52337646484375], [0.142059326171875, 2.968292236328125, 0.052337646484375], [0.201873779296875, 3.0804443359375, 0.3289794921875], [0.231781005859375, 3.087921142578125, 0.381317138671875], [0.351409912109375, 3.09539794921875, 0.418701171875], [0.22430419921875, 3.18511962890625, 0.58319091796875], [-0.127105712890625, 3.312225341796875, 0.538330078125], [-0.336456298828125, 3.3197021484375, 0.261688232421875], [-0.216827392578125, 3.207550048828125, 0.201873779296875], [-0.231781005859375, 3.431854248046875, 0.291595458984375], [-0.770111083984375, 3.72344970703125, 0.179443359375], [-1.054229736328125, 3.78326416015625, 0.059814453125], [-0.755157470703125, 3.551483154296875, 0.052337646484375], [-0.306549072265625, 3.222503662109375, 0.231781005859375], [0.0299072265625, 3.207550048828125, 0.2392578125], [-0.059814453125, 3.349609375, -0.201873779296875], [-0.059814453125, 3.431854248046875, -0.829925537109375], [0.07476806640625, 3.521575927734375, -0.949554443359375], [0.31402587890625, 3.57391357421875, -0.560760498046875], [0.396270751953125, 3.342132568359375, -0.04486083984375], [0.351409912109375, 3.058013916015625, 0.097198486328125], [0.55328369140625, 3.043060302734375, 0.19439697265625], [1.143951416015625, 3.372039794921875, 0.299072265625], [1.622467041015625, 3.6785888671875, -0.0], [1.60003662109375, 3.45428466796875, -0.88226318359375], [1.7047119140625, 3.357086181640625, -1.7047119140625], [2.026214599609375, 3.93280029296875, -1.981353759765625], [1.996307373046875, 4.53094482421875, -1.502838134765625], [1.1065673828125, 4.119720458984375, -0.0897216796875], [0.10467529296875, 2.76641845703125, 1.8841552734375], [-0.49346923828125, 1.951446533203125, 2.953338623046875], [-0.59814453125, 1.973876953125, 2.624359130859375], [-0.04486083984375, 2.429962158203125, 1.338348388671875], [0.64300537109375, 2.729034423828125, -0.3289794921875], [0.897216796875, 2.504730224609375, -2.071075439453125], [0.740203857421875, 1.891632080078125, -3.312225341796875], [0.665435791015625, 1.891632080078125, -3.790740966796875], [0.3887939453125, 2.355194091796875, -3.730926513671875], [-0.04486083984375, 2.61688232421875, -3.386993408203125], [-0.3887939453125, 2.70660400390625, -2.7215576171875], [-0.785064697265625, 2.878570556640625, -2.03369140625], [-0.859832763671875, 2.818756103515625, -1.435546875], [-1.009368896484375, 2.07855224609375, -1.03179931640625], [-1.51031494140625, 0.8074951171875, -0.79254150390625], [-1.966400146484375, -0.0299072265625, -0.366363525390625], [-2.041168212890625, 0.082244873046875, 0.58319091796875], [-1.614990234375, 0.9869384765625, 1.4654541015625], [-1.03179931640625, 2.19818115234375, 1.6748046875], [-0.441131591796875, 3.207550048828125, 1.1065673828125], [0.022430419921875, 3.45428466796875, 0.5084228515625], [0.186920166015625, 3.222503662109375, -0.067291259765625], [0.216827392578125, 2.968292236328125, -0.897216796875], [0.097198486328125, 2.79632568359375, -1.338348388671875], [-0.291595458984375, 2.833709716796875, -1.353302001953125], [-0.6878662109375, 2.97576904296875, -1.084136962890625], [-0.5682373046875, 3.18511962890625, -0.76263427734375], [-0.64300537109375, 3.529052734375, -0.680389404296875], [-0.82244873046875, 3.54400634765625, -0.94207763671875], [-0.8673095703125, 3.207550048828125, -1.054229736328125], [-0.680389404296875, 2.6318359375, -0.64300537109375], [-0.22430419921875, 2.2430419921875, -0.246734619140625], [0.216827392578125, 2.415008544921875, 0.01495361328125], [0.381317138671875, 2.9010009765625, 0.07476806640625], [0.142059326171875, 3.24493408203125, 0.04486083984375], [-0.1495361328125, 2.773895263671875, -0.10467529296875], [-0.201873779296875, 2.49725341796875, -0.6280517578125], [-0.04486083984375, 2.235565185546875, -1.0467529296875], [0.067291259765625, 2.280426025390625, -1.248626708984375], [0.082244873046875, 2.79632568359375, -1.06170654296875], [-0.142059326171875, 3.09539794921875, -0.67291259765625], [-0.396270751953125, 3.132781982421875, -0.500946044921875], [-0.545806884765625, 3.058013916015625, -0.55328369140625], [-0.530853271484375, 2.82623291015625, -0.560760498046875], [-0.515899658203125, 2.669219970703125, -0.231781005859375], [-0.43365478515625, 2.94586181640625, 0.07476806640625], [-0.680389404296875, 3.491668701171875, 0.112152099609375], [-0.949554443359375, 4.3365478515625, -0.157012939453125], [-0.8673095703125, 4.47113037109375, -0.35888671875], [-0.695343017578125, 3.760833740234375, -0.441131591796875], [-0.478515625, 3.297271728515625, -0.6280517578125], [-0.25421142578125, 3.506622314453125, -0.889739990234375], [-0.396270751953125, 3.730926513671875, -1.27105712890625], [-0.171966552734375, 3.2598876953125, -1.48040771484375], [0.082244873046875, 2.400054931640625, -1.353302001953125], [0.11962890625, 2.115936279296875, -1.36077880859375], [0.2093505859375, 2.1533203125, -1.443023681640625], [0.321502685546875, 2.452392578125, -1.173858642578125], [0.31402587890625, 3.0206298828125, -0.695343017578125], [0.11962890625, 3.581390380859375, -0.216827392578125], [-0.179443359375, 4.1571044921875, -0.10467529296875], [-0.31402587890625, 4.26177978515625, -0.127105712890625], [-0.321502685546875, 4.209442138671875, 0.037384033203125], [-0.35888671875, 3.895416259765625, 0.082244873046875], [-0.695343017578125, 3.8580322265625, -0.11962890625], [-1.1962890625, 4.209442138671875, -0.43365478515625], [-1.06170654296875, 4.568328857421875, -0.456085205078125], [-0.605621337890625, 4.7552490234375, -0.3289794921875], [-0.471038818359375, 4.23187255859375, -0.418701171875], [-0.456085205078125, 3.4991455078125, -0.590667724609375], [-0.471038818359375, 3.237457275390625, -0.58319091796875], [-0.396270751953125, 3.656158447265625, -0.40374755859375], [-0.538330078125, 4.4561767578125, -0.306549072265625], [-0.755157470703125, 4.80010986328125, -0.485992431640625], [-0.897216796875, 4.373931884765625, -0.650482177734375], [-0.605621337890625, 3.42437744140625, -0.58319091796875], [-0.171966552734375, 2.893524169921875, -0.55328369140625], [-0.0897216796875, 2.82623291015625, -0.6878662109375], [-0.1495361328125, 3.18511962890625, -0.85235595703125], [-0.171966552734375, 3.701019287109375, -1.06170654296875], [-0.171966552734375, 3.760833740234375, -1.114044189453125], [-0.299072265625, 3.4393310546875, -0.919647216796875], [-0.321502685546875, 3.03558349609375, -0.6878662109375], [-0.216827392578125, 2.51220703125, -0.657958984375], [-0.2392578125, 2.205657958984375, -0.657958984375], [-0.2093505859375, 1.891632080078125, -0.396270751953125], [-0.306549072265625, 1.682281494140625, 0.1495361328125], [-0.814971923828125, 1.413116455078125, 0.800018310546875], [-1.2261962890625, 1.6448974609375, 1.136474609375]], "channel_names": ["gyro1", "gyro2", "gyro3"]}, "acc": {"name": "acc", "fs": 52.0, "emp_fs": 52.84539401769333, "timestamps": [1571759075.4870915, 1571759075.5060146, 1571759075.5249379, 1571759075.543861, 1571759075.562784, 1571759075.5817072, 1571759075.6006303, 1571759075.6195533, 1571759075.6384766, 1571759075.6573997, 1571759075.6763227, 1571759075.695246, 1571759075.714169, 1571759075.733092, 1571759075.7520154, 1571759075.7709384, 1571759075.7898614, 1571759075.8087847, 1571759075.8277078, 1571759075.8466308, 1571759075.865554, 1571759075.8844771, 1571759075.9034002, 1571759075.9223235, 1571759075.9412465, 1571759075.9601696, 1571759075.9790928, 1571759075.9980159, 1571759076.0169392, 1571759076.0358622, 1571759076.0547853, 1571759076.0737085, 1571759076.0926316, 1571759076.1115546, 1571759076.130478, 1571759076.149401, 1571759076.168324, 1571759076.1872473, 1571759076.2061703, 1571759076.2250934, 1571759076.2440166, 1571759076.2629397, 1571759076.2818627, 1571759076.300786, 1571759076.319709, 1571759076.338632, 1571759076.3575554, 1571759076.3764784, 1571759076.3954015, 1571759076.4143248, 1571759076.4332478, 1571759076.4521708, 1571759076.4710941, 1571759076.4900172, 1571759076.5089402, 1571759076.5278635, 1571759076.5467865, 1571759076.5657096, 1571759076.5846329, 1571759076.603556, 1571759076.622479, 1571759076.6414022, 1571759076.6603253, 1571759076.6792483, 1571759076.6981716, 1571759076.7170947, 1571759076.7360177, 1571759076.754941, 1571759076.773864, 1571759076.792787, 1571759076.8117104, 1571759076.8306334, 1571759076.8495564, 1571759076.8684797, 1571759076.8874028, 1571759076.9063258, 1571759076.925249, 1571759076.9441721, 1571759076.9630952, 1571759076.9820185, 1571759077.0009415, 1571759077.0198648, 1571759077.0387878, 1571759077.057711, 1571759077.0766342, 1571759077.0955572, 1571759077.1144803, 1571759077.1334035, 1571759077.1523266, 1571759077.1712496, 1571759077.190173, 1571759077.209096, 1571759077.228019, 1571759077.2469423, 1571759077.2658653, 1571759077.2847884, 1571759077.3037117, 1571759077.3226347, 1571759077.3415577, 1571759077.360481, 1571759077.379404, 1571759077.398327, 1571759077.4172504, 1571759077.4361734, 1571759077.4550965, 1571759077.4740198, 1571759077.4929428, 1571759077.5118659, 1571759077.5307891, 1571759077.5497122, 1571759077.5686352, 1571759077.5875585, 1571759077.6064816, 1571759077.6254046, 1571759077.6443279, 1571759077.663251, 1571759077.682174, 1571759077.7010972, 1571759077.7200203, 1571759077.7389433, 1571759077.7578666, 1571759077.7767897, 1571759077.7957127, 1571759077.814636, 1571759077.833559, 1571759077.852482, 1571759077.8714054, 1571759077.8903284, 1571759077.9092515, 1571759077.9281747, 1571759077.9470978, 1571759077.9660208, 1571759077.984944, 1571759078.0038671, 1571759078.0227904, 1571759078.0417135, 1571759078.0606365, 1571759078.0795598, 1571759078.0984828, 1571759078.117406, 1571759078.1363292, 1571759078.1552522, 1571759078.1741753, 1571759078.1930985, 1571759078.2120216, 1571759078.2309446, 1571759078.249868, 1571759078.268791, 1571759078.287714, 1571759078.3066373, 1571759078.3255603, 1571759078.3444834, 1571759078.3634067, 1571759078.3823297, 1571759078.4012527, 1571759078.420176, 1571759078.439099, 1571759078.458022, 1571759078.4769454, 1571759078.4958684, 1571759078.5147915, 1571759078.5337148, 1571759078.5526378, 1571759078.5715609, 1571759078.5904841, 1571759078.6094072, 1571759078.6283302, 1571759078.6472535, 1571759078.6661766, 1571759078.6850996, 1571759078.704023, 1571759078.722946, 1571759078.741869, 1571759078.7607923, 1571759078.7797153, 1571759078.7986383, 1571759078.8175616, 1571759078.8364847, 1571759078.8554077, 1571759078.874331, 1571759078.893254, 1571759078.912177, 1571759078.9311004, 1571759078.9500234, 1571759078.9689465, 1571759078.9878697, 1571759079.0067928, 1571759079.025716, 1571759079.044639, 1571759079.0635622, 1571759079.0824854, 1571759079.1014085, 1571759079.1203315, 1571759079.1392548, 1571759079.1581779, 1571759079.177101, 1571759079.1960242, 1571759079.2149472, 1571759079.2338703, 1571759079.2527936, 1571759079.2717166, 1571759079.2906396, 1571759079.309563, 1571759079.328486, 1571759079.347409, 1571759079.3663323, 1571759079.3852553, 1571759079.4041784, 1571759079.4231017, 1571759079.4420247, 1571759079.4609478, 1571759079.479871, 1571759079.498794, 1571759079.5177171, 1571759079.5366404, 1571759079.5555634, 1571759079.5744865, 1571759079.5934098, 1571759079.6123328, 1571759079.6312559, 1571759079.6501791, 1571759079.6691022, 1571759079.6880252, 1571759079.7069485, 1571759079.7258716, 1571759079.7447946, 1571759079.763718, 1571759079.782641, 1571759079.801564, 1571759079.8204873, 1571759079.8394103, 1571759079.8583333, 1571759079.8772566, 1571759079.8961797, 1571759079.9151027, 1571759079.934026, 1571759079.952949, 1571759079.9718723, 1571759079.9907954, 1571759080.0097184, 1571759080.0286417, 1571759080.0475647, 1571759080.0664878, 1571759080.085411, 1571759080.104334, 1571759080.1232572, 1571759080.1421804, 1571759080.1611035, 1571759080.1800265, 1571759080.1989498, 1571759080.2178729, 1571759080.236796, 1571759080.2557192, 1571759080.2746422, 1571759080.2935653, 1571759080.3124886, 1571759080.3314116, 1571759080.3503346, 1571759080.369258, 1571759080.388181, 1571759080.407104, 1571759080.4260273, 1571759080.4449503, 1571759080.4638734, 1571759080.4827967, 1571759080.5017197, 1571759080.5206428, 1571759080.539566, 1571759080.558489, 1571759080.5774121, 1571759080.5963354, 1571759080.6152585, 1571759080.6341815, 1571759080.6531048, 1571759080.6720278, 1571759080.6909509, 1571759080.7098742, 1571759080.7287972, 1571759080.7477202, 1571759080.7666435, 1571759080.7855666, 1571759080.8044896, 1571759080.823413, 1571759080.842336, 1571759080.861259, 1571759080.8801823, 1571759080.8991053, 1571759080.9180284, 1571759080.9369516, 1571759080.9558747, 1571759080.974798, 1571759080.993721, 1571759081.012644, 1571759081.0315673, 1571759081.0504904, 1571759081.0694134, 1571759081.0883367, 1571759081.1072598, 1571759081.1261828, 1571759081.145106, 1571759081.1640291, 1571759081.1829522, 1571759081.2018754, 1571759081.2207985, 1571759081.2397215, 1571759081.2586448, 1571759081.2775679, 1571759081.296491, 1571759081.3154142, 1571759081.3343372, 1571759081.3532603, 1571759081.3721836, 1571759081.3911066, 1571759081.4100296, 1571759081.428953, 1571759081.447876, 1571759081.466799, 1571759081.4857223, 1571759081.5046453, 1571759081.5235684, 1571759081.5424917, 1571759081.5614147, 1571759081.5803378, 1571759081.599261, 1571759081.618184, 1571759081.6371071, 1571759081.6560304, 1571759081.6749535, 1571759081.6938765, 1571759081.7127998, 1571759081.7317228, 1571759081.7506459, 1571759081.7695692, 1571759081.7884922, 1571759081.8074152, 1571759081.8263385, 1571759081.8452616, 1571759081.8641846, 1571759081.883108, 1571759081.902031, 1571759081.920954, 1571759081.9398773, 1571759081.9588003, 1571759081.9777236, 1571759081.9966466, 1571759082.0155697, 1571759082.034493, 1571759082.053416, 1571759082.072339, 1571759082.0912623, 1571759082.1101854, 1571759082.1291084, 1571759082.1480317, 1571759082.1669548, 1571759082.1858778, 1571759082.204801, 1571759082.2237241, 1571759082.2426472, 1571759082.2615705, 1571759082.2804935, 1571759082.2994165, 1571759082.3183398, 1571759082.3372629, 1571759082.356186, 1571759082.3751092, 1571759082.3940322, 1571759082.4129553, 1571759082.4318786, 1571759082.4508016, 1571759082.4697247, 1571759082.488648, 1571759082.507571, 1571759082.526494, 1571759082.5454173, 1571759082.5643404, 1571759082.5832634, 1571759082.6021867, 1571759082.6211097, 1571759082.6400328, 1571759082.658956, 1571759082.677879, 1571759082.6968021, 1571759082.7157254, 1571759082.7346485, 1571759082.7535715, 1571759082.7724948, 1571759082.7914178, 1571759082.810341, 1571759082.8292642, 1571759082.8481872, 1571759082.8671103, 1571759082.8860335, 1571759082.9049566, 1571759082.9238796, 1571759082.942803, 1571759082.961726, 1571759082.9806492, 1571759082.9995723, 1571759083.0184953, 1571759083.0374186, 1571759083.0563416, 1571759083.0752647, 1571759083.094188, 1571759083.113111, 1571759083.132034, 1571759083.1509573, 1571759083.1698804, 1571759083.1888034, 1571759083.2077267, 1571759083.2266498, 1571759083.2455728, 1571759083.264496, 1571759083.2834191, 1571759083.3023422, 1571759083.3212655, 1571759083.3401885, 1571759083.3591115, 1571759083.3780348, 1571759083.3969579, 1571759083.415881, 1571759083.4348042, 1571759083.4537272, 1571759083.4726503, 1571759083.4915736, 1571759083.5104966, 1571759083.5294197, 1571759083.548343, 1571759083.567266, 1571759083.586189, 1571759083.6051123, 1571759083.6240354, 1571759083.6429584, 1571759083.6618817, 1571759083.6808047, 1571759083.6997278, 1571759083.718651, 1571759083.737574, 1571759083.7564971, 1571759083.7754204, 1571759083.7943435, 1571759083.8132665, 1571759083.8321898, 1571759083.8511128, 1571759083.870036, 1571759083.8889592, 1571759083.9078822, 1571759083.9268053, 1571759083.9457285, 1571759083.9646516, 1571759083.9835749, 1571759084.002498, 1571759084.021421, 1571759084.0403442, 1571759084.0592673, 1571759084.0781903, 1571759084.0971136, 1571759084.1160367, 1571759084.1349597, 1571759084.153883, 1571759084.172806, 1571759084.191729, 1571759084.2106524, 1571759084.2295754, 1571759084.2484984, 1571759084.2674217, 1571759084.2863448, 1571759084.3052678, 1571759084.324191, 1571759084.3431141, 1571759084.3620372, 1571759084.3809605, 1571759084.3998835, 1571759084.4188066, 1571759084.4377298, 1571759084.4566529, 1571759084.475576, 1571759084.4944992, 1571759084.5134223, 1571759084.5323453, 1571759084.5512686, 1571759084.5701916, 1571759084.5891147, 1571759084.608038, 1571759084.626961, 1571759084.645884, 1571759084.6648073, 1571759084.6837304, 1571759084.7026534, 1571759084.7215767, 1571759084.7404997, 1571759084.7594228, 1571759084.778346, 1571759084.797269, 1571759084.8161922, 1571759084.8351154, 1571759084.8540385, 1571759084.8729615, 1571759084.8918848, 1571759084.9108078, 1571759084.929731, 1571759084.9486542, 1571759084.9675772, 1571759084.9865005, 1571759085.0054235, 1571759085.0243466, 1571759085.0432699, 1571759085.062193, 1571759085.081116, 1571759085.1000392, 1571759085.1189623, 1571759085.1378853, 1571759085.1568086, 1571759085.1757317, 1571759085.1946547, 1571759085.213578, 1571759085.232501, 1571759085.251424, 1571759085.2703474, 1571759085.2892704, 1571759085.3081934, 1571759085.3271167, 1571759085.3460398, 1571759085.3649628, 1571759085.383886, 1571759085.4028091, 1571759085.4217322, 1571759085.4406555, 1571759085.4595785, 1571759085.4785016, 1571759085.4974248, 1571759085.516348, 1571759085.535271, 1571759085.5541942, 1571759085.5731173, 1571759085.5920403, 1571759085.6109636, 1571759085.6298866, 1571759085.6488097, 1571759085.667733, 1571759085.686656, 1571759085.705579, 1571759085.7245023, 1571759085.7434254, 1571759085.7623484, 1571759085.7812717, 1571759085.8001947, 1571759085.8191178, 1571759085.838041, 1571759085.856964, 1571759085.8758872, 1571759085.8948104, 1571759085.9137335, 1571759085.9326565, 1571759085.9515798, 1571759085.9705029, 1571759085.9894261, 1571759086.0083492, 1571759086.0272722, 1571759086.0461955, 1571759086.0651186, 1571759086.0840416, 1571759086.1029649, 1571759086.121888, 1571759086.140811, 1571759086.1597342, 1571759086.1786573, 1571759086.1975803, 1571759086.2165036, 1571759086.2354267, 1571759086.2543497, 1571759086.273273, 1571759086.292196, 1571759086.311119, 1571759086.3300424, 1571759086.3489654, 1571759086.3678885, 1571759086.3868117, 1571759086.4057348, 1571759086.4246578, 1571759086.443581, 1571759086.4625041, 1571759086.4814272, 1571759086.5003505, 1571759086.5192735, 1571759086.5381966, 1571759086.5571198, 1571759086.576043, 1571759086.594966, 1571759086.6138892, 1571759086.6328123, 1571759086.6517353, 1571759086.6706586, 1571759086.6895816, 1571759086.7085047, 1571759086.727428, 1571759086.746351, 1571759086.765274, 1571759086.7841973, 1571759086.8031204, 1571759086.8220434, 1571759086.8409667, 1571759086.8598897, 1571759086.8788128, 1571759086.897736, 1571759086.916659, 1571759086.9355822, 1571759086.9545054, 1571759086.9734285, 1571759086.9923518, 1571759087.0112748, 1571759087.0301979, 1571759087.0491211, 1571759087.0680442, 1571759087.0869672, 1571759087.1058905, 1571759087.1248136, 1571759087.1437366, 1571759087.16266, 1571759087.181583, 1571759087.200506, 1571759087.2194293, 1571759087.2383523, 1571759087.2572753, 1571759087.2761986, 1571759087.2951217, 1571759087.3140447, 1571759087.332968, 1571759087.351891, 1571759087.370814, 1571759087.3897374, 1571759087.4086604, 1571759087.4275835, 1571759087.4465067, 1571759087.4654298, 1571759087.4843528, 1571759087.503276, 1571759087.5221992, 1571759087.5411222, 1571759087.5600455, 1571759087.5789685, 1571759087.5978916, 1571759087.6168149, 1571759087.635738, 1571759087.654661, 1571759087.6735842, 1571759087.6925073, 1571759087.7114303, 1571759087.7303536, 1571759087.7492766, 1571759087.7681997, 1571759087.787123, 1571759087.806046, 1571759087.824969, 1571759087.8438923, 1571759087.8628154, 1571759087.8817384, 1571759087.9006617, 1571759087.9195848, 1571759087.938508, 1571759087.957431, 1571759087.9763541, 1571759087.9952774, 1571759088.0142004, 1571759088.0331235, 1571759088.0520468, 1571759088.0709698, 1571759088.0898929, 1571759088.1088161, 1571759088.1277392, 1571759088.1466622, 1571759088.1655855, 1571759088.1845086, 1571759088.2034316, 1571759088.222355, 1571759088.241278, 1571759088.260201, 1571759088.2791243, 1571759088.2980473, 1571759088.3169703, 1571759088.3358936, 1571759088.3548167, 1571759088.3737397, 1571759088.392663, 1571759088.411586, 1571759088.430509, 1571759088.4494324, 1571759088.4683554, 1571759088.4872785, 1571759088.5062017, 1571759088.5251248, 1571759088.5440478, 1571759088.562971, 1571759088.5818942, 1571759088.6008172, 1571759088.6197405, 1571759088.6386635, 1571759088.6575866, 1571759088.6765099, 1571759088.695433, 1571759088.714356, 1571759088.7332792, 1571759088.7522023, 1571759088.7711253, 1571759088.7900486, 1571759088.8089716, 1571759088.8278947, 1571759088.846818, 1571759088.865741, 1571759088.884664, 1571759088.9035873, 1571759088.9225104, 1571759088.9414337, 1571759088.9603567, 1571759088.9792798, 1571759088.998203, 1571759089.017126, 1571759089.0360491, 1571759089.0549724, 1571759089.0738955, 1571759089.0928185, 1571759089.1117418, 1571759089.1306648, 1571759089.1495879, 1571759089.1685112, 1571759089.1874342, 1571759089.2063572, 1571759089.2252805, 1571759089.2442036, 1571759089.2631266, 1571759089.28205, 1571759089.300973, 1571759089.319896, 1571759089.3388193, 1571759089.3577423, 1571759089.3766654, 1571759089.3955886, 1571759089.4145117, 1571759089.4334347, 1571759089.452358, 1571759089.471281, 1571759089.490204, 1571759089.5091274, 1571759089.5280504, 1571759089.5469735, 1571759089.5658967, 1571759089.5848198, 1571759089.6037428, 1571759089.6226661, 1571759089.6415892, 1571759089.6605122, 1571759089.6794355, 1571759089.6983585, 1571759089.7172816, 1571759089.7362049, 1571759089.755128, 1571759089.774051, 1571759089.7929742, 1571759089.8118973, 1571759089.8308203, 1571759089.8497436, 1571759089.8686666, 1571759089.8875897, 1571759089.906513, 1571759089.925436, 1571759089.9443593, 1571759089.9632823, 1571759089.9822054, 1571759090.0011287, 1571759090.0200517, 1571759090.0389748, 1571759090.057898, 1571759090.076821, 1571759090.0957441, 1571759090.1146674, 1571759090.1335905, 1571759090.1525135, 1571759090.1714368, 1571759090.1903598, 1571759090.2092829, 1571759090.2282062, 1571759090.2471292, 1571759090.2660522, 1571759090.2849755, 1571759090.3038986, 1571759090.3228216, 1571759090.341745, 1571759090.360668, 1571759090.379591, 1571759090.3985143, 1571759090.4174373, 1571759090.4363604, 1571759090.4552836, 1571759090.4742067, 1571759090.4931297, 1571759090.512053, 1571759090.530976, 1571759090.549899, 1571759090.5688224, 1571759090.5877454, 1571759090.6066685, 1571759090.6255918, 1571759090.6445148, 1571759090.6634378, 1571759090.6823611, 1571759090.7012842, 1571759090.7202072, 1571759090.7391305, 1571759090.7580535, 1571759090.7769766, 1571759090.7958999, 1571759090.814823, 1571759090.833746, 1571759090.8526692, 1571759090.8715923, 1571759090.8905153, 1571759090.9094386, 1571759090.9283617, 1571759090.947285, 1571759090.966208, 1571759090.985131, 1571759091.0040543, 1571759091.0229774, 1571759091.0419004, 1571759091.0608237, 1571759091.0797467, 1571759091.0986698, 1571759091.117593, 1571759091.136516, 1571759091.1554391, 1571759091.1743624, 1571759091.1932855, 1571759091.2122085, 1571759091.2311318, 1571759091.2500548, 1571759091.2689779, 1571759091.2879012, 1571759091.3068242, 1571759091.3257473, 1571759091.3446705, 1571759091.3635936, 1571759091.3825166, 1571759091.40144, 1571759091.420363], "samples": [[-0.0294189453125, 0.11553955078125, 0.99334716796875], [-0.03460693359375, 0.12066650390625, 1.00006103515625], [-0.03485107421875, 0.1202392578125, 0.98822021484375], [-0.0361328125, 0.1116943359375, 0.97430419921875], [-0.05206298828125, 0.10418701171875, 0.9705810546875], [-0.06561279296875, 0.08978271484375, 0.9803466796875], [-0.05694580078125, 0.08551025390625, 0.99755859375], [-0.04241943359375, 0.09356689453125, 1.00164794921875], [-0.03515625, 0.096435546875, 1.0030517578125], [-0.0283203125, 0.09747314453125, 1.00030517578125], [-0.03240966796875, 0.09747314453125, 0.98101806640625], [-0.02789306640625, 0.09564208984375, 0.98419189453125], [-0.0196533203125, 0.09228515625, 0.99755859375], [-0.01324462890625, 0.09423828125, 0.989990234375], [-0.0111083984375, 0.09735107421875, 0.98126220703125], [-0.01519775390625, 0.0965576171875, 0.9857177734375], [-0.02227783203125, 0.09588623046875, 0.99407958984375], [-0.02239990234375, 0.09576416015625, 0.98931884765625], [-0.033203125, 0.09527587890625, 0.974853515625], [-0.04376220703125, 0.0946044921875, 0.98388671875], [-0.044677734375, 0.0926513671875, 0.99334716796875], [-0.03607177734375, 0.0931396484375, 0.9757080078125], [-0.03125, 0.0936279296875, 0.9703369140625], [-0.0537109375, 0.09344482421875, 0.9801025390625], [-0.05419921875, 0.096435546875, 1.011962890625], [-0.04925537109375, 0.1019287109375, 1.0302734375], [-0.03155517578125, 0.11688232421875, 1.041748046875], [-0.018310546875, 0.12310791015625, 1.0435791015625], [-0.0213623046875, 0.11749267578125, 1.02288818359375], [-0.031494140625, 0.10833740234375, 0.998291015625], [-0.04595947265625, 0.1016845703125, 0.98187255859375], [-0.05267333984375, 0.09765625, 0.97564697265625], [-0.0595703125, 0.09674072265625, 0.9736328125], [-0.0655517578125, 0.0977783203125, 0.966064453125], [-0.07171630859375, 0.10174560546875, 0.9686279296875], [-0.0709228515625, 0.1026611328125, 0.96942138671875], [-0.07379150390625, 0.10601806640625, 0.97479248046875], [-0.08349609375, 0.10009765625, 0.976318359375], [-0.0902099609375, 0.09625244140625, 0.97943115234375], [-0.07720947265625, 0.10443115234375, 0.968994140625], [-0.06219482421875, 0.10504150390625, 0.9700927734375], [-0.05718994140625, 0.0994873046875, 0.983642578125], [-0.06103515625, 0.0943603515625, 0.99163818359375], [-0.05487060546875, 0.0919189453125, 0.98773193359375], [-0.05450439453125, 0.09112548828125, 0.98052978515625], [-0.04644775390625, 0.089599609375, 0.988037109375], [-0.0439453125, 0.09136962890625, 0.9962158203125], [-0.03466796875, 0.09539794921875, 1.00274658203125], [-0.03057861328125, 0.0970458984375, 0.9981689453125], [-0.0328369140625, 0.09857177734375, 0.99896240234375], [-0.04058837890625, 0.0980224609375, 1.0], [-0.0445556640625, 0.10101318359375, 0.9967041015625], [-0.04693603515625, 0.09991455078125, 0.99334716796875], [-0.0552978515625, 0.09912109375, 0.991943359375], [-0.06097412109375, 0.0960693359375, 0.98712158203125], [-0.06591796875, 0.0960693359375, 0.98583984375], [-0.06622314453125, 0.09588623046875, 0.98272705078125], [-0.06414794921875, 0.09564208984375, 0.98516845703125], [-0.06378173828125, 0.09417724609375, 0.98919677734375], [-0.06854248046875, 0.090576171875, 0.99176025390625], [-0.07244873046875, 0.0888671875, 0.98828125], [-0.06646728515625, 0.0928955078125, 0.986083984375], [-0.06298828125, 0.08941650390625, 0.9866943359375], [-0.05853271484375, 0.0927734375, 0.98980712890625], [-0.06976318359375, 0.0869140625, 0.99517822265625], [-0.06732177734375, 0.08642578125, 0.9884033203125], [-0.0621337890625, 0.0894775390625, 0.9814453125], [-0.05767822265625, 0.0916748046875, 0.9857177734375], [-0.0562744140625, 0.09686279296875, 0.9886474609375], [-0.06011962890625, 0.0947265625, 0.995361328125], [-0.05523681640625, 0.09588623046875, 0.99615478515625], [-0.05364990234375, 0.09674072265625, 0.9896240234375], [-0.05499267578125, 0.09564208984375, 0.99127197265625], [-0.06121826171875, 0.0933837890625, 0.99188232421875], [-0.05859375, 0.094970703125, 0.989990234375], [-0.0550537109375, 0.095458984375, 0.98638916015625], [-0.05303955078125, 0.09674072265625, 0.9884033203125], [-0.05413818359375, 0.09857177734375, 0.99200439453125], [-0.05810546875, 0.0963134765625, 0.9930419921875], [-0.05810546875, 0.0958251953125, 0.99066162109375], [-0.05029296875, 0.1004638671875, 0.97674560546875], [-0.05230712890625, 0.10028076171875, 0.98419189453125], [-0.060791015625, 0.095947265625, 0.99609375], [-0.06207275390625, 0.09588623046875, 0.99310302734375], [-0.05426025390625, 0.09820556640625, 0.9873046875], [-0.04833984375, 0.09967041015625, 0.9852294921875], [-0.04803466796875, 0.09716796875, 0.99169921875], [-0.05548095703125, 0.0950927734375, 0.9951171875], [-0.053955078125, 0.09552001953125, 0.99212646484375], [-0.05328369140625, 0.09820556640625, 0.989990234375], [-0.0472412109375, 0.10052490234375, 0.98968505859375], [-0.04656982421875, 0.0994873046875, 0.996337890625], [-0.050537109375, 0.09893798828125, 0.99786376953125], [-0.05047607421875, 0.1005859375, 0.990234375], [-0.0546875, 0.09735107421875, 0.9849853515625], [-0.054931640625, 0.09515380859375, 0.98944091796875], [-0.05535888671875, 0.0938720703125, 0.98773193359375], [-0.05316162109375, 0.09423828125, 0.9881591796875], [-0.0477294921875, 0.0975341796875, 0.98583984375], [-0.0487060546875, 0.09796142578125, 0.98785400390625], [-0.05108642578125, 0.09716796875, 0.99139404296875], [-0.0533447265625, 0.096435546875, 0.9913330078125], [-0.05133056640625, 0.09796142578125, 0.98492431640625], [-0.0538330078125, 0.09515380859375, 0.9891357421875], [-0.0555419921875, 0.093994140625, 0.99151611328125], [-0.05535888671875, 0.09552001953125, 0.99114990234375], [-0.0577392578125, 0.09332275390625, 0.99053955078125], [-0.05096435546875, 0.0943603515625, 0.98077392578125], [-0.05401611328125, 0.0931396484375, 0.98736572265625], [-0.05487060546875, 0.095458984375, 0.9935302734375], [-0.0582275390625, 0.094482421875, 0.9952392578125], [-0.0625, 0.08905029296875, 0.99652099609375], [-0.05731201171875, 0.09002685546875, 0.98785400390625], [-0.05084228515625, 0.09027099609375, 0.99029541015625], [-0.0498046875, 0.0919189453125, 0.98974609375], [-0.0511474609375, 0.0921630859375, 0.99169921875], [-0.04736328125, 0.090576171875, 0.990478515625], [-0.04791259765625, 0.0889892578125, 0.9918212890625], [-0.0509033203125, 0.088623046875, 0.99139404296875], [-0.05572509765625, 0.08905029296875, 0.9947509765625], [-0.05291748046875, 0.0855712890625, 0.9930419921875], [-0.0499267578125, 0.08575439453125, 0.99078369140625], [-0.04254150390625, 0.091796875, 0.98480224609375], [-0.05120849609375, 0.09405517578125, 0.98486328125], [-0.05938720703125, 0.09100341796875, 0.99554443359375], [-0.0654296875, 0.091796875, 0.99420166015625], [-0.05950927734375, 0.0938720703125, 0.9881591796875], [-0.0548095703125, 0.0953369140625, 0.983154296875], [-0.04913330078125, 0.09710693359375, 0.98870849609375], [-0.0533447265625, 0.09429931640625, 0.98846435546875], [-0.05389404296875, 0.0946044921875, 0.9913330078125], [-0.05133056640625, 0.0987548828125, 0.9947509765625], [-0.0455322265625, 0.0966796875, 0.991943359375], [-0.04840087890625, 0.0931396484375, 0.98712158203125], [-0.0615234375, 0.092529296875, 0.9879150390625], [-0.06707763671875, 0.09149169921875, 0.9869384765625], [-0.063720703125, 0.09161376953125, 0.98480224609375], [-0.0650634765625, 0.091552734375, 0.98004150390625], [-0.062744140625, 0.09613037109375, 0.98455810546875], [-0.05694580078125, 0.09820556640625, 0.987548828125], [-0.0523681640625, 0.1014404296875, 0.9930419921875], [-0.0550537109375, 0.10162353515625, 0.99822998046875], [-0.0543212890625, 0.0992431640625, 1.00006103515625], [-0.05889892578125, 0.09564208984375, 0.998291015625], [-0.056884765625, 0.09393310546875, 0.99468994140625], [-0.05633544921875, 0.09320068359375, 0.9925537109375], [-0.05682373046875, 0.093017578125, 0.98712158203125], [-0.064208984375, 0.0855712890625, 0.98846435546875], [-0.0634765625, 0.084228515625, 0.98223876953125], [-0.06072998046875, 0.08514404296875, 0.98358154296875], [-0.0579833984375, 0.08795166015625, 0.9876708984375], [-0.0574951171875, 0.08795166015625, 0.99090576171875], [-0.06634521484375, 0.08148193359375, 0.9947509765625], [-0.06146240234375, 0.0833740234375, 0.9884033203125], [-0.0565185546875, 0.086669921875, 0.99432373046875], [-0.05584716796875, 0.08587646484375, 0.99945068359375], [-0.05792236328125, 0.08587646484375, 0.9998779296875], [-0.06475830078125, 0.08099365234375, 0.9947509765625], [-0.06463623046875, 0.08306884765625, 0.98492431640625], [-0.061279296875, 0.08721923828125, 0.987060546875], [-0.05828857421875, 0.09075927734375, 0.991455078125], [-0.0662841796875, 0.08447265625, 0.9912109375], [-0.07244873046875, 0.08245849609375, 0.98565673828125], [-0.06085205078125, 0.0894775390625, 0.9775390625], [-0.06396484375, 0.0899658203125, 0.98345947265625], [-0.0667724609375, 0.08489990234375, 0.994384765625], [-0.0689697265625, 0.08319091796875, 0.99139404296875], [-0.0689697265625, 0.0838623046875, 0.98590087890625], [-0.06103515625, 0.08697509765625, 0.989013671875], [-0.055908203125, 0.08935546875, 0.993408203125], [-0.05548095703125, 0.09033203125, 0.99658203125], [-0.0572509765625, 0.0892333984375, 0.9951171875], [-0.05987548828125, 0.088134765625, 0.9913330078125], [-0.05584716796875, 0.0914306640625, 0.989990234375], [-0.05657958984375, 0.090087890625, 0.99212646484375], [-0.06024169921875, 0.089599609375, 0.99267578125], [-0.06549072265625, 0.086181640625, 0.9881591796875], [-0.0689697265625, 0.0875244140625, 0.9873046875], [-0.06396484375, 0.09088134765625, 0.98583984375], [-0.0576171875, 0.09295654296875, 0.99053955078125], [-0.05316162109375, 0.09393310546875, 0.99102783203125], [-0.0587158203125, 0.0899658203125, 0.986083984375], [-0.06341552734375, 0.08837890625, 0.98944091796875], [-0.06060791015625, 0.09210205078125, 0.99176025390625], [-0.0587158203125, 0.0933837890625, 0.99407958984375], [-0.05517578125, 0.09124755859375, 0.99310302734375], [-0.054443359375, 0.08990478515625, 0.9906005859375], [-0.055908203125, 0.091552734375, 0.99371337890625], [-0.05780029296875, 0.0902099609375, 0.99700927734375], [-0.06109619140625, 0.08837890625, 0.99542236328125], [-0.06256103515625, 0.08538818359375, 0.98260498046875], [-0.06549072265625, 0.083984375, 0.976806640625], [-0.0604248046875, 0.0897216796875, 0.98565673828125], [-0.06451416015625, 0.090576171875, 0.996337890625], [-0.06005859375, 0.08966064453125, 0.99859619140625], [-0.058837890625, 0.08917236328125, 0.9920654296875], [-0.06158447265625, 0.08538818359375, 0.9864501953125], [-0.0655517578125, 0.08575439453125, 0.985595703125], [-0.05975341796875, 0.08837890625, 0.99151611328125], [-0.05816650390625, 0.08880615234375, 0.99053955078125], [-0.05743408203125, 0.08795166015625, 0.9901123046875], [-0.06005859375, 0.08551025390625, 0.98583984375], [-0.0615234375, 0.087646484375, 0.98944091796875], [-0.0648193359375, 0.08416748046875, 0.9913330078125], [-0.06610107421875, 0.08203125, 0.99395751953125], [-0.062255859375, 0.08575439453125, 0.97955322265625], [-0.06622314453125, 0.0859375, 0.98394775390625], [-0.06256103515625, 0.08795166015625, 0.98956298828125], [-0.05938720703125, 0.090576171875, 0.9952392578125], [-0.0594482421875, 0.0882568359375, 0.9969482421875], [-0.0655517578125, 0.08319091796875, 0.99029541015625], [-0.06689453125, 0.08404541015625, 0.9857177734375], [-0.06195068359375, 0.0870361328125, 0.98858642578125], [-0.0572509765625, 0.089599609375, 0.99383544921875], [-0.06329345703125, 0.087158203125, 0.9970703125], [-0.0670166015625, 0.087890625, 0.992919921875], [-0.0618896484375, 0.092041015625, 0.9794921875], [-0.04949951171875, 0.093994140625, 0.970703125], [-0.06243896484375, 0.0799560546875, 0.98577880859375], [-0.07501220703125, 0.07855224609375, 0.9913330078125], [-0.07635498046875, 0.08441162109375, 0.9954833984375], [-0.07000732421875, 0.091552734375, 0.99609375], [-0.0626220703125, 0.0936279296875, 0.99639892578125], [-0.05810546875, 0.09442138671875, 0.99822998046875], [-0.0640869140625, 0.09136962890625, 0.9937744140625], [-0.06951904296875, 0.0887451171875, 0.9896240234375], [-0.06878662109375, 0.089111328125, 0.98614501953125], [-0.06365966796875, 0.0904541015625, 0.9859619140625], [-0.0611572265625, 0.09185791015625, 0.989990234375], [-0.060546875, 0.09222412109375, 0.989013671875], [-0.06072998046875, 0.0924072265625, 0.9769287109375], [-0.06414794921875, 0.08697509765625, 0.97900390625], [-0.072265625, 0.083740234375, 0.9876708984375], [-0.073486328125, 0.0828857421875, 0.9814453125], [-0.07135009765625, 0.0880126953125, 0.98876953125], [-0.06689453125, 0.09832763671875, 0.99578857421875], [-0.0684814453125, 0.1005859375, 0.998291015625], [-0.0703125, 0.0966796875, 0.99993896484375], [-0.06817626953125, 0.090087890625, 0.99749755859375], [-0.06414794921875, 0.095703125, 0.99261474609375], [-0.05609130859375, 0.09716796875, 0.9874267578125], [-0.0517578125, 0.09698486328125, 0.99114990234375], [-0.052490234375, 0.0943603515625, 0.9920654296875], [-0.056640625, 0.0919189453125, 0.9901123046875], [-0.05841064453125, 0.09661865234375, 0.99017333984375], [-0.05889892578125, 0.099365234375, 0.9881591796875], [-0.05816650390625, 0.09429931640625, 0.9925537109375], [-0.06512451171875, 0.088134765625, 0.99127197265625], [-0.06182861328125, 0.091552734375, 0.98187255859375], [-0.06097412109375, 0.09564208984375, 0.9813232421875], [-0.06298828125, 0.09332275390625, 0.9920654296875], [-0.0595703125, 0.0931396484375, 0.99078369140625], [-0.0614013671875, 0.09283447265625, 0.9937744140625], [-0.0623779296875, 0.09228515625, 0.99072265625], [-0.0609130859375, 0.093505859375, 0.98834228515625], [-0.0584716796875, 0.095947265625, 0.987060546875], [-0.05694580078125, 0.09405517578125, 0.9920654296875], [-0.05828857421875, 0.09332275390625, 0.99383544921875], [-0.0614013671875, 0.09149169921875, 0.99285888671875], [-0.0626220703125, 0.0927734375, 0.98577880859375], [-0.06060791015625, 0.09600830078125, 0.98748779296875], [-0.05987548828125, 0.09600830078125, 0.992919921875], [-0.06201171875, 0.09527587890625, 0.994140625], [-0.0626220703125, 0.093994140625, 0.9912109375], [-0.06378173828125, 0.09283447265625, 0.98614501953125], [-0.0634765625, 0.0943603515625, 0.9849853515625], [-0.058837890625, 0.09417724609375, 0.9888916015625], [-0.0594482421875, 0.09466552734375, 0.99200439453125], [-0.06134033203125, 0.092041015625, 0.9896240234375], [-0.0662841796875, 0.09197998046875, 0.983642578125], [-0.064208984375, 0.092529296875, 0.987060546875], [-0.05859375, 0.09552001953125, 0.99200439453125], [-0.0560302734375, 0.0941162109375, 0.9945068359375], [-0.05804443359375, 0.0933837890625, 0.98809814453125], [-0.0609130859375, 0.09326171875, 0.98785400390625], [-0.0599365234375, 0.0936279296875, 0.98565673828125], [-0.06170654296875, 0.092041015625, 0.9912109375], [-0.0572509765625, 0.09149169921875, 0.98406982421875], [-0.0623779296875, 0.089599609375, 0.9854736328125], [-0.05987548828125, 0.09429931640625, 0.99005126953125], [-0.062744140625, 0.097412109375, 0.9951171875], [-0.06085205078125, 0.0970458984375, 0.99932861328125], [-0.05694580078125, 0.09423828125, 0.9945068359375], [-0.05535888671875, 0.09417724609375, 0.98828125], [-0.05780029296875, 0.0931396484375, 0.98590087890625], [-0.0587158203125, 0.0933837890625, 0.9879150390625], [-0.05364990234375, 0.0948486328125, 0.98895263671875], [-0.051513671875, 0.095458984375, 0.990234375], [-0.05322265625, 0.093505859375, 0.98748779296875], [-0.058349609375, 0.09375, 0.98974609375], [-0.0574951171875, 0.09405517578125, 0.99359130859375], [-0.05987548828125, 0.0908203125, 0.99560546875], [-0.0579833984375, 0.09259033203125, 0.98919677734375], [-0.05889892578125, 0.09259033203125, 0.9830322265625], [-0.0643310546875, 0.0887451171875, 0.994384765625], [-0.061279296875, 0.08935546875, 0.99566650390625], [-0.054931640625, 0.0931396484375, 0.99420166015625], [-0.0540771484375, 0.09283447265625, 0.99261474609375], [-0.0546875, 0.0902099609375, 0.98590087890625], [-0.05859375, 0.08868408203125, 0.984130859375], [-0.05853271484375, 0.09100341796875, 0.98583984375], [-0.05657958984375, 0.092041015625, 0.990966796875], [-0.05926513671875, 0.09161376953125, 0.99237060546875], [-0.0628662109375, 0.09124755859375, 0.99078369140625], [-0.0672607421875, 0.09075927734375, 0.9915771484375], [-0.065673828125, 0.09307861328125, 0.98681640625], [-0.06256103515625, 0.0928955078125, 0.98773193359375], [-0.06060791015625, 0.09271240234375, 0.98980712890625], [-0.062255859375, 0.09124755859375, 0.98883056640625], [-0.0606689453125, 0.0921630859375, 0.9884033203125], [-0.05706787109375, 0.09381103515625, 0.98681640625], [-0.05548095703125, 0.093994140625, 0.990966796875], [-0.055908203125, 0.092529296875, 0.99114990234375], [-0.06005859375, 0.091064453125, 0.99365234375], [-0.064453125, 0.08843994140625, 0.993896484375], [-0.0626220703125, 0.08917236328125, 0.9906005859375], [-0.0592041015625, 0.09063720703125, 0.98968505859375], [-0.05572509765625, 0.09326171875, 0.99090576171875], [-0.06103515625, 0.0888671875, 0.99432373046875], [-0.05865478515625, 0.08770751953125, 0.9876708984375], [-0.0574951171875, 0.088623046875, 0.98370361328125], [-0.0577392578125, 0.09039306640625, 0.9881591796875], [-0.05816650390625, 0.091796875, 0.98785400390625], [-0.0655517578125, 0.0865478515625, 0.99658203125], [-0.06658935546875, 0.086669921875, 0.9970703125], [-0.0623779296875, 0.0888671875, 0.99053955078125], [-0.05926513671875, 0.090087890625, 0.9898681640625], [-0.05859375, 0.087890625, 0.9891357421875], [-0.05462646484375, 0.08966064453125, 0.9888916015625], [-0.05096435546875, 0.0914306640625, 0.98968505859375], [-0.05438232421875, 0.0899658203125, 0.987548828125], [-0.0623779296875, 0.0894775390625, 0.98895263671875], [-0.064697265625, 0.087646484375, 0.989990234375], [-0.0714111328125, 0.08447265625, 0.99322509765625], [-0.06634521484375, 0.0882568359375, 0.9869384765625], [-0.0628662109375, 0.09173583984375, 0.98065185546875], [-0.0623779296875, 0.0902099609375, 0.99163818359375], [-0.063720703125, 0.08795166015625, 0.994384765625], [-0.0621337890625, 0.08917236328125, 0.99261474609375], [-0.06060791015625, 0.08990478515625, 0.991455078125], [-0.06121826171875, 0.08966064453125, 0.990966796875], [-0.0596923828125, 0.09124755859375, 0.99078369140625], [-0.0576171875, 0.0908203125, 0.99334716796875], [-0.058349609375, 0.0889892578125, 0.98858642578125], [-0.0589599609375, 0.089599609375, 0.98760986328125], [-0.0579833984375, 0.08843994140625, 0.989501953125], [-0.05987548828125, 0.0880126953125, 0.9892578125], [-0.05963134765625, 0.0872802734375, 0.99102783203125], [-0.0606689453125, 0.084716796875, 0.99395751953125], [-0.056396484375, 0.08447265625, 0.99371337890625], [-0.05712890625, 0.08087158203125, 0.99249267578125], [-0.06494140625, 0.074951171875, 0.99896240234375], [-0.0665283203125, 0.072265625, 0.9984130859375], [-0.06646728515625, 0.074462890625, 0.986328125], [-0.06549072265625, 0.07525634765625, 0.98193359375], [-0.07452392578125, 0.0806884765625, 0.97247314453125], [-0.0736083984375, 0.07330322265625, 0.96337890625], [-0.077880859375, 0.0760498046875, 0.99444580078125], [-0.0743408203125, 0.09075927734375, 0.9908447265625], [-0.071044921875, 0.0941162109375, 0.99078369140625], [-0.06866455078125, 0.10076904296875, 0.98394775390625], [-0.06671142578125, 0.1009521484375, 0.98480224609375], [-0.06842041015625, 0.09808349609375, 0.99322509765625], [-0.07757568359375, 0.0902099609375, 1.00274658203125], [-0.07568359375, 0.08697509765625, 0.99847412109375], [-0.07672119140625, 0.0794677734375, 0.9876708984375], [-0.07928466796875, 0.073974609375, 0.98638916015625], [-0.0771484375, 0.07373046875, 0.98834228515625], [-0.06787109375, 0.07708740234375, 0.99090576171875], [-0.0648193359375, 0.07598876953125, 0.9903564453125], [-0.0596923828125, 0.0787353515625, 0.98309326171875], [-0.054443359375, 0.087890625, 0.98529052734375], [-0.04461669921875, 0.09814453125, 0.9888916015625], [-0.04583740234375, 0.09808349609375, 0.99053955078125], [-0.065673828125, 0.08966064453125, 0.99566650390625], [-0.07513427734375, 0.09228515625, 0.9935302734375], [-0.06683349609375, 0.112060546875, 0.98095703125], [-0.05767822265625, 0.1199951171875, 0.97735595703125], [-0.07171630859375, 0.104248046875, 0.9896240234375], [-0.08294677734375, 0.09539794921875, 0.99676513671875], [-0.08050537109375, 0.09930419921875, 0.986083984375], [-0.07562255859375, 0.0987548828125, 0.983154296875], [-0.06842041015625, 0.1015625, 0.980224609375], [-0.06005859375, 0.10345458984375, 0.9886474609375], [-0.05413818359375, 0.10430908203125, 0.9962158203125], [-0.0478515625, 0.10870361328125, 0.998779296875], [-0.04522705078125, 0.1103515625, 0.99981689453125], [-0.0489501953125, 0.10748291015625, 0.9981689453125], [-0.04840087890625, 0.10308837890625, 0.9947509765625], [-0.0537109375, 0.09600830078125, 0.98651123046875], [-0.06024169921875, 0.09124755859375, 0.9840087890625], [-0.05987548828125, 0.091064453125, 0.983642578125], [-0.0531005859375, 0.095703125, 0.98455810546875], [-0.0443115234375, 0.10101318359375, 0.9852294921875], [-0.044189453125, 0.10260009765625, 0.9910888671875], [-0.0462646484375, 0.10345458984375, 0.99658203125], [-0.0513916015625, 0.10406494140625, 0.99365234375], [-0.05340576171875, 0.10284423828125, 0.99188232421875], [-0.05706787109375, 0.1009521484375, 0.9912109375], [-0.0562744140625, 0.10089111328125, 0.98846435546875], [-0.05328369140625, 0.102294921875, 0.9906005859375], [-0.0504150390625, 0.10321044921875, 0.98980712890625], [-0.05291748046875, 0.10101318359375, 0.9908447265625], [-0.05450439453125, 0.09906005859375, 0.9901123046875], [-0.0546875, 0.09918212890625, 0.9906005859375], [-0.05291748046875, 0.09967041015625, 0.98663330078125], [-0.0556640625, 0.09649658203125, 0.9864501953125], [-0.056396484375, 0.09844970703125, 0.98675537109375], [-0.0555419921875, 0.098876953125, 0.98675537109375], [-0.05340576171875, 0.09912109375, 0.99249267578125], [-0.051513671875, 0.0970458984375, 0.98687744140625], [-0.05133056640625, 0.0965576171875, 0.9886474609375], [-0.0494384765625, 0.09918212890625, 0.99505615234375], [-0.05413818359375, 0.0938720703125, 0.9974365234375], [-0.06201171875, 0.087646484375, 1.00054931640625], [-0.05792236328125, 0.0870361328125, 0.9923095703125], [-0.053955078125, 0.088134765625, 0.9881591796875], [-0.0509033203125, 0.09228515625, 0.98126220703125], [-0.0445556640625, 0.0960693359375, 0.97894287109375], [-0.04534912109375, 0.09967041015625, 0.98504638671875], [-0.04754638671875, 0.1051025390625, 0.991943359375], [-0.046142578125, 0.1090087890625, 0.990966796875], [-0.05010986328125, 0.11285400390625, 0.99114990234375], [-0.0509033203125, 0.11529541015625, 0.9942626953125], [-0.059326171875, 0.11029052734375, 0.99493408203125], [-0.05755615234375, 0.1107177734375, 0.989990234375], [-0.05560302734375, 0.11346435546875, 0.98028564453125], [-0.05523681640625, 0.113037109375, 0.98931884765625], [-0.05792236328125, 0.111083984375, 0.9952392578125], [-0.055908203125, 0.111083984375, 0.99505615234375], [-0.056640625, 0.1094970703125, 0.98956298828125], [-0.0594482421875, 0.1063232421875, 0.98345947265625], [-0.0579833984375, 0.10687255859375, 0.97979736328125], [-0.0587158203125, 0.1046142578125, 0.9901123046875], [-0.0592041015625, 0.10089111328125, 0.99371337890625], [-0.0582275390625, 0.09820556640625, 0.99542236328125], [-0.05792236328125, 0.09423828125, 0.9952392578125], [-0.0574951171875, 0.09332275390625, 0.989013671875], [-0.05572509765625, 0.09210205078125, 0.990966796875], [-0.05499267578125, 0.0897216796875, 0.99285888671875], [-0.05511474609375, 0.08612060546875, 0.99554443359375], [-0.0574951171875, 0.08331298828125, 0.98974609375], [-0.0552978515625, 0.08111572265625, 0.98779296875], [-0.05908203125, 0.076904296875, 0.98651123046875], [-0.0633544921875, 0.072021484375, 0.98724365234375], [-0.065185546875, 0.07110595703125, 0.9898681640625], [-0.065185546875, 0.07110595703125, 0.987060546875], [-0.06146240234375, 0.0728759765625, 0.984619140625], [-0.0623779296875, 0.07244873046875, 0.98876953125], [-0.0648193359375, 0.0712890625, 0.9949951171875], [-0.0692138671875, 0.06890869140625, 0.9976806640625], [-0.0712890625, 0.06787109375, 0.9951171875], [-0.0738525390625, 0.07080078125, 0.9886474609375], [-0.0732421875, 0.072998046875, 0.98455810546875], [-0.07318115234375, 0.072998046875, 0.98760986328125], [-0.06951904296875, 0.073974609375, 0.98199462890625], [-0.07366943359375, 0.07635498046875, 0.9857177734375], [-0.07098388671875, 0.08319091796875, 0.988525390625], [-0.0728759765625, 0.0811767578125, 0.99102783203125], [-0.074951171875, 0.07958984375, 0.99151611328125], [-0.07403564453125, 0.07952880859375, 0.99005126953125], [-0.07159423828125, 0.082763671875, 0.989990234375], [-0.06671142578125, 0.08660888671875, 0.98712158203125], [-0.061767578125, 0.0887451171875, 0.98455810546875], [-0.06182861328125, 0.09002685546875, 0.98529052734375], [-0.06402587890625, 0.0904541015625, 0.990478515625], [-0.0657958984375, 0.09283447265625, 0.99237060546875], [-0.06622314453125, 0.09442138671875, 0.9942626953125], [-0.06573486328125, 0.08831787109375, 0.99224853515625], [-0.072265625, 0.08514404296875, 0.99267578125], [-0.06475830078125, 0.0921630859375, 0.9854736328125], [-0.060302734375, 0.09442138671875, 0.98455810546875], [-0.06298828125, 0.089599609375, 0.99462890625], [-0.06365966796875, 0.085205078125, 0.99566650390625], [-0.06378173828125, 0.0872802734375, 0.98828125], [-0.0595703125, 0.0908203125, 0.9866943359375], [-0.059326171875, 0.091796875, 0.98870849609375], [-0.0565185546875, 0.09320068359375, 0.98828125], [-0.05859375, 0.0916748046875, 0.99346923828125], [-0.0618896484375, 0.091796875, 0.99298095703125], [-0.06317138671875, 0.09173583984375, 0.99127197265625], [-0.0609130859375, 0.093994140625, 0.992431640625], [-0.0595703125, 0.0921630859375, 0.9931640625], [-0.06158447265625, 0.09002685546875, 0.99346923828125], [-0.06396484375, 0.08648681640625, 0.99029541015625], [-0.06488037109375, 0.08807373046875, 0.98858642578125], [-0.0606689453125, 0.08984375, 0.986328125], [-0.0562744140625, 0.08966064453125, 0.989501953125], [-0.05682373046875, 0.08880615234375, 0.99163818359375], [-0.06170654296875, 0.08587646484375, 0.98931884765625], [-0.067626953125, 0.0836181640625, 0.990478515625], [-0.064453125, 0.0863037109375, 0.99066162109375], [-0.0621337890625, 0.08709716796875, 0.9901123046875], [-0.0606689453125, 0.08587646484375, 0.9918212890625], [-0.06341552734375, 0.08441162109375, 0.99371337890625], [-0.06414794921875, 0.08526611328125, 0.99249267578125], [-0.0604248046875, 0.08599853515625, 0.98748779296875], [-0.062255859375, 0.08575439453125, 0.98760986328125], [-0.06671142578125, 0.080810546875, 0.98907470703125], [-0.0703125, 0.0802001953125, 0.98541259765625], [-0.06927490234375, 0.0828857421875, 0.98614501953125], [-0.06500244140625, 0.08935546875, 0.98736572265625], [-0.0640869140625, 0.0888671875, 0.990478515625], [-0.06829833984375, 0.08502197265625, 0.99505615234375], [-0.0693359375, 0.08447265625, 0.992919921875], [-0.06982421875, 0.08465576171875, 0.9915771484375], [-0.06732177734375, 0.086669921875, 0.986572265625], [-0.06396484375, 0.08697509765625, 0.9874267578125], [-0.06390380859375, 0.08636474609375, 0.9910888671875], [-0.06463623046875, 0.08807373046875, 0.9886474609375], [-0.06097412109375, 0.0906982421875, 0.98681640625], [-0.06201171875, 0.09051513671875, 0.98687744140625], [-0.06396484375, 0.0889892578125, 0.9931640625], [-0.07000732421875, 0.08282470703125, 0.9976806640625], [-0.06976318359375, 0.08203125, 0.99383544921875], [-0.064697265625, 0.086181640625, 0.979736328125], [-0.06842041015625, 0.0814208984375, 0.98876953125], [-0.0634765625, 0.082763671875, 0.99188232421875], [-0.06048583984375, 0.08416748046875, 0.99420166015625], [-0.05657958984375, 0.083984375, 0.99224853515625], [-0.05712890625, 0.08575439453125, 0.98602294921875], [-0.0572509765625, 0.08709716796875, 0.98529052734375], [-0.0594482421875, 0.08966064453125, 0.98846435546875], [-0.06182861328125, 0.08905029296875, 0.99200439453125], [-0.0657958984375, 0.08697509765625, 0.99249267578125], [-0.071533203125, 0.0845947265625, 0.9951171875], [-0.06585693359375, 0.08392333984375, 0.996826171875], [-0.05621337890625, 0.08984375, 0.98883056640625], [-0.052490234375, 0.08990478515625, 0.9822998046875], [-0.0684814453125, 0.08197021484375, 0.9881591796875], [-0.078857421875, 0.079345703125, 0.9930419921875], [-0.0762939453125, 0.07891845703125, 0.99005126953125], [-0.07598876953125, 0.07952880859375, 0.98699951171875], [-0.0692138671875, 0.08221435546875, 0.98095703125], [-0.068603515625, 0.0792236328125, 0.98492431640625], [-0.06982421875, 0.080810546875, 0.99383544921875], [-0.06793212890625, 0.08062744140625, 0.99859619140625], [-0.062744140625, 0.0782470703125, 0.98956298828125], [-0.0677490234375, 0.0738525390625, 0.99365234375], [-0.06884765625, 0.07354736328125, 0.99896240234375], [-0.06427001953125, 0.07733154296875, 0.99224853515625], [-0.06134033203125, 0.084228515625, 0.97955322265625], [-0.06451416015625, 0.08465576171875, 0.97772216796875], [-0.071533203125, 0.081787109375, 0.9857177734375], [-0.07183837890625, 0.08673095703125, 0.9930419921875], [-0.07232666015625, 0.0927734375, 0.99224853515625], [-0.06964111328125, 0.0977783203125, 0.98883056640625], [-0.0731201171875, 0.0958251953125, 0.99017333984375], [-0.0780029296875, 0.090087890625, 0.99835205078125], [-0.074462890625, 0.08795166015625, 0.9954833984375], [-0.07159423828125, 0.0841064453125, 0.9913330078125], [-0.072021484375, 0.07904052734375, 0.98968505859375], [-0.068115234375, 0.0743408203125, 0.99285888671875], [-0.06219482421875, 0.07550048828125, 0.98883056640625], [-0.05908203125, 0.0738525390625, 0.98321533203125], [-0.0572509765625, 0.07635498046875, 0.9757080078125], [-0.05841064453125, 0.0799560546875, 0.98004150390625], [-0.05718994140625, 0.08538818359375, 0.988525390625], [-0.0557861328125, 0.087646484375, 0.99127197265625], [-0.0572509765625, 0.0882568359375, 0.9979248046875], [-0.05419921875, 0.09619140625, 0.99359130859375], [-0.0584716796875, 0.09674072265625, 0.994873046875], [-0.05908203125, 0.095703125, 0.9913330078125], [-0.061767578125, 0.094970703125, 0.9891357421875], [-0.06451416015625, 0.09136962890625, 0.99139404296875], [-0.064208984375, 0.08984375, 0.992919921875], [-0.06219482421875, 0.08984375, 0.9923095703125], [-0.059814453125, 0.08892822265625, 0.990966796875], [-0.05670166015625, 0.08807373046875, 0.99102783203125], [-0.05450439453125, 0.0850830078125, 0.99163818359375], [-0.05902099609375, 0.08154296875, 0.99237060546875], [-0.0618896484375, 0.0791015625, 0.9886474609375], [-0.06024169921875, 0.0780029296875, 0.98724365234375], [-0.0609130859375, 0.080078125, 0.9886474609375], [-0.0567626953125, 0.083251953125, 0.9886474609375], [-0.05816650390625, 0.08416748046875, 0.990478515625], [-0.0625, 0.0830078125, 0.9901123046875], [-0.062744140625, 0.08294677734375, 0.98382568359375], [-0.06854248046875, 0.084228515625, 0.9752197265625], [-0.06634521484375, 0.0889892578125, 0.9835205078125], [-0.069091796875, 0.0836181640625, 0.99456787109375], [-0.0704345703125, 0.08038330078125, 0.99810791015625], [-0.0697021484375, 0.07568359375, 0.99432373046875], [-0.0675048828125, 0.0758056640625, 0.98455810546875], [-0.0560302734375, 0.078369140625, 0.981201171875], [-0.050048828125, 0.08380126953125, 0.9871826171875], [-0.048828125, 0.08221435546875, 0.99310302734375], [-0.05377197265625, 0.08056640625, 1.00103759765625], [-0.05181884765625, 0.08135986328125, 0.99945068359375], [-0.0509033203125, 0.07916259765625, 0.9976806640625], [-0.03936767578125, 0.07952880859375, 0.99444580078125], [-0.04754638671875, 0.07763671875, 0.989501953125], [-0.03955078125, 0.08380126953125, 0.98785400390625], [-0.03302001953125, 0.08404541015625, 0.99273681640625], [-0.03997802734375, 0.081787109375, 1.0023193359375], [-0.045166015625, 0.07733154296875, 1.0106201171875], [-0.05657958984375, 0.07781982421875, 1.0052490234375], [-0.0654296875, 0.07562255859375, 0.99951171875], [-0.0723876953125, 0.0751953125, 0.9871826171875], [-0.07305908203125, 0.07537841796875, 0.98138427734375], [-0.0732421875, 0.07623291015625, 0.9798583984375], [-0.07293701171875, 0.078125, 0.98333740234375], [-0.067626953125, 0.07977294921875, 0.9864501953125], [-0.068115234375, 0.081298828125, 0.99114990234375], [-0.07086181640625, 0.0771484375, 0.98443603515625], [-0.06707763671875, 0.07781982421875, 0.98486328125], [-0.0631103515625, 0.08343505859375, 0.9791259765625], [-0.06591796875, 0.08172607421875, 0.9967041015625], [-0.0638427734375, 0.08135986328125, 0.99835205078125], [-0.06170654296875, 0.0816650390625, 0.99481201171875], [-0.06048583984375, 0.08087158203125, 0.9901123046875], [-0.05810546875, 0.08209228515625, 0.99114990234375], [-0.05523681640625, 0.08306884765625, 0.9910888671875], [-0.05712890625, 0.081787109375, 0.996826171875], [-0.06292724609375, 0.0804443359375, 0.99432373046875], [-0.0626220703125, 0.08294677734375, 0.98822021484375], [-0.05792236328125, 0.0849609375, 0.9818115234375], [-0.05828857421875, 0.0838623046875, 0.99090576171875], [-0.0604248046875, 0.083740234375, 0.99468994140625], [-0.0623779296875, 0.08465576171875, 0.992431640625], [-0.06011962890625, 0.085693359375, 0.98724365234375], [-0.05792236328125, 0.0875244140625, 0.98602294921875], [-0.0582275390625, 0.08740234375, 0.9910888671875], [-0.05865478515625, 0.0858154296875, 0.995849609375], [-0.0552978515625, 0.087646484375, 0.99365234375], [-0.05206298828125, 0.0889892578125, 0.98638916015625], [-0.05499267578125, 0.08563232421875, 0.98431396484375], [-0.056884765625, 0.0841064453125, 0.9893798828125], [-0.05572509765625, 0.08575439453125, 0.9932861328125], [-0.05279541015625, 0.08758544921875, 0.991943359375], [-0.04571533203125, 0.08770751953125, 0.98760986328125], [-0.0504150390625, 0.08685302734375, 0.9932861328125], [-0.0557861328125, 0.08306884765625, 0.9957275390625], [-0.0584716796875, 0.0814208984375, 0.99749755859375], [-0.0550537109375, 0.08294677734375, 0.98358154296875], [-0.0560302734375, 0.08184814453125, 0.9871826171875], [-0.05706787109375, 0.08380126953125, 0.9940185546875], [-0.0601806640625, 0.08172607421875, 0.99322509765625], [-0.0601806640625, 0.0811767578125, 0.993896484375], [-0.05511474609375, 0.0841064453125, 0.99139404296875], [-0.0528564453125, 0.0828857421875, 0.99774169921875], [-0.0489501953125, 0.08270263671875, 1.00006103515625], [-0.044921875, 0.0831298828125, 0.9920654296875], [-0.0491943359375, 0.081787109375, 0.98651123046875], [-0.05120849609375, 0.08184814453125, 0.97802734375], [-0.0543212890625, 0.08258056640625, 0.98101806640625], [-0.053466796875, 0.08135986328125, 0.99334716796875], [-0.0577392578125, 0.07745361328125, 0.98681640625], [-0.06207275390625, 0.07659912109375, 0.97882080078125], [-0.05126953125, 0.07965087890625, 0.9713134765625], [-0.0469970703125, 0.0791015625, 0.98236083984375], [-0.05096435546875, 0.0791015625, 0.99639892578125], [-0.05615234375, 0.07794189453125, 1.0001220703125], [-0.06439208984375, 0.0802001953125, 0.99114990234375], [-0.06671142578125, 0.08251953125, 0.99407958984375], [-0.066650390625, 0.0823974609375, 0.995361328125], [-0.06256103515625, 0.08551025390625, 0.997314453125], [-0.05975341796875, 0.08978271484375, 0.99639892578125], [-0.05621337890625, 0.09271240234375, 0.99658203125], [-0.053955078125, 0.0941162109375, 0.99676513671875], [-0.0537109375, 0.0938720703125, 0.99591064453125], [-0.0555419921875, 0.09161376953125, 0.9998779296875], [-0.05389404296875, 0.09228515625, 0.9921875], [-0.0509033203125, 0.09088134765625, 0.98681640625], [-0.0523681640625, 0.08746337890625, 0.98956298828125], [-0.049560546875, 0.0872802734375, 0.994873046875], [-0.0513916015625, 0.0853271484375, 0.98760986328125], [-0.05853271484375, 0.08343505859375, 0.98486328125], [-0.05670166015625, 0.08441162109375, 0.985107421875], [-0.05377197265625, 0.08929443359375, 0.99359130859375], [-0.049560546875, 0.0938720703125, 1.00030517578125], [-0.0487060546875, 0.0916748046875, 1.00341796875], [-0.056640625, 0.08526611328125, 0.99798583984375], [-0.06451416015625, 0.0821533203125, 0.97857666015625], [-0.07208251953125, 0.0853271484375, 0.97381591796875], [-0.06842041015625, 0.08599853515625, 0.99041748046875], [-0.06072998046875, 0.09002685546875, 0.98175048828125], [-0.06396484375, 0.08709716796875, 0.97259521484375], [-0.0777587890625, 0.08343505859375, 0.96636962890625], [-0.0880126953125, 0.078857421875, 0.97503662109375], [-0.089599609375, 0.0712890625, 0.9903564453125], [-0.07781982421875, 0.07177734375, 0.99407958984375], [-0.0633544921875, 0.07391357421875, 1.00384521484375], [-0.048828125, 0.07977294921875, 1.00897216796875], [-0.041259765625, 0.0845947265625, 1.0098876953125], [-0.04345703125, 0.08197021484375, 1.014404296875], [-0.0423583984375, 0.078369140625, 1.00604248046875], [-0.03985595703125, 0.07647705078125, 0.98797607421875], [-0.03839111328125, 0.07501220703125, 0.96942138671875], [-0.04486083984375, 0.0784912109375, 0.9664306640625], [-0.05731201171875, 0.0767822265625, 0.9801025390625], [-0.05670166015625, 0.0823974609375, 0.99102783203125], [-0.050537109375, 0.09222412109375, 0.98870849609375], [-0.0540771484375, 0.09521484375, 0.99517822265625], [-0.05615234375, 0.0911865234375, 1.00189208984375], [-0.06146240234375, 0.090087890625, 0.99951171875], [-0.0576171875, 0.09088134765625, 0.994873046875], [-0.05438232421875, 0.08795166015625, 0.99383544921875], [-0.05279541015625, 0.08428955078125, 0.9931640625], [-0.05096435546875, 0.08056640625, 0.9945068359375], [-0.0460205078125, 0.0804443359375, 0.98699951171875], [-0.0439453125, 0.077392578125, 0.98370361328125], [-0.0467529296875, 0.075439453125, 0.985595703125], [-0.05230712890625, 0.076171875, 0.98895263671875], [-0.05615234375, 0.07513427734375, 0.99169921875], [-0.05419921875, 0.08233642578125, 0.98809814453125], [-0.05517578125, 0.0810546875, 0.9874267578125], [-0.05560302734375, 0.08306884765625, 0.990966796875], [-0.05108642578125, 0.08575439453125, 1.00006103515625], [-0.04803466796875, 0.0869140625, 0.99822998046875], [-0.0477294921875, 0.0859375, 0.9952392578125], [-0.05145263671875, 0.0819091796875, 0.99029541015625], [-0.0537109375, 0.07781982421875, 0.98663330078125], [-0.052978515625, 0.078369140625, 0.9840087890625], [-0.050048828125, 0.07861328125, 0.9910888671875], [-0.04547119140625, 0.08343505859375, 0.9979248046875], [-0.04632568359375, 0.08123779296875, 0.99737548828125], [-0.0506591796875, 0.0787353515625, 0.9937744140625], [-0.06085205078125, 0.07440185546875, 0.989013671875], [-0.0595703125, 0.0733642578125, 0.98785400390625], [-0.0556640625, 0.07440185546875, 0.98291015625], [-0.05419921875, 0.07550048828125, 0.9925537109375], [-0.0567626953125, 0.07635498046875, 0.99200439453125], [-0.0577392578125, 0.0771484375, 0.99298095703125], [-0.05169677734375, 0.07574462890625, 0.9923095703125], [-0.04974365234375, 0.0760498046875, 0.989990234375], [-0.05194091796875, 0.0751953125, 0.9927978515625], [-0.0526123046875, 0.0782470703125, 0.9927978515625], [-0.0535888671875, 0.0814208984375, 0.991455078125], [-0.052001953125, 0.08172607421875, 0.9915771484375], [-0.05633544921875, 0.0794677734375, 0.9927978515625], [-0.057861328125, 0.080078125, 0.9927978515625], [-0.055908203125, 0.0811767578125, 0.9898681640625], [-0.05279541015625, 0.07904052734375, 0.989013671875], [-0.05621337890625, 0.0762939453125, 0.9967041015625], [-0.05487060546875, 0.07867431640625, 0.99090576171875], [-0.0540771484375, 0.0792236328125, 0.98809814453125], [-0.05145263671875, 0.078369140625, 0.9874267578125], [-0.05670166015625, 0.0753173828125, 0.98779296875], [-0.05828857421875, 0.07318115234375, 0.99267578125], [-0.056884765625, 0.073974609375, 0.99163818359375], [-0.0491943359375, 0.07733154296875, 0.99066162109375], [-0.0474853515625, 0.07843017578125, 0.99298095703125], [-0.048828125, 0.07843017578125, 0.9970703125], [-0.0516357421875, 0.07720947265625, 0.99322509765625], [-0.0491943359375, 0.0810546875, 0.99017333984375], [-0.052001953125, 0.08349609375, 0.9820556640625], [-0.06085205078125, 0.07861328125, 0.9871826171875], [-0.0655517578125, 0.07470703125, 0.98699951171875], [-0.05816650390625, 0.0794677734375, 0.97906494140625], [-0.0567626953125, 0.0826416015625, 0.97283935546875], [-0.05609130859375, 0.08544921875, 0.9808349609375], [-0.0452880859375, 0.08984375, 1.00738525390625], [-0.0361328125, 0.09454345703125, 1.00927734375], [-0.0491943359375, 0.091064453125, 1.00201416015625], [-0.06048583984375, 0.084716796875, 0.9945068359375], [-0.0667724609375, 0.08135986328125, 0.98419189453125], [-0.0703125, 0.0804443359375, 0.983642578125], [-0.0714111328125, 0.07672119140625, 0.99322509765625], [-0.0621337890625, 0.08001708984375, 0.99298095703125], [-0.05670166015625, 0.08062744140625, 0.98529052734375], [-0.05462646484375, 0.07916259765625, 0.9852294921875], [-0.05255126953125, 0.0810546875, 0.990478515625], [-0.04718017578125, 0.0859375, 0.98907470703125], [-0.05120849609375, 0.08428955078125, 0.9864501953125], [-0.053955078125, 0.08197021484375, 0.98980712890625], [-0.05438232421875, 0.0775146484375, 1.00299072265625], [-0.04864501953125, 0.0728759765625, 1.0126953125], [-0.03216552734375, 0.072265625, 1.001708984375], [-0.0216064453125, 0.0748291015625, 0.99713134765625], [-0.01873779296875, 0.07403564453125, 0.9884033203125], [-0.03045654296875, 0.06951904296875, 0.98822021484375], [-0.0408935546875, 0.0675048828125, 0.9866943359375], [-0.04168701171875, 0.070556640625, 0.99224853515625], [-0.04852294921875, 0.0721435546875, 0.99298095703125], [-0.0518798828125, 0.07501220703125, 0.99407958984375], [-0.04937744140625, 0.08160400390625, 0.996826171875], [-0.045166015625, 0.0809326171875, 0.99029541015625], [-0.04522705078125, 0.0802001953125, 0.9901123046875], [-0.04547119140625, 0.08526611328125, 0.98199462890625], [-0.04888916015625, 0.0823974609375, 0.99151611328125], [-0.0528564453125, 0.0784912109375, 0.9927978515625], [-0.05126953125, 0.07666015625, 0.995849609375], [-0.044677734375, 0.0777587890625, 0.99169921875], [-0.042724609375, 0.07684326171875, 0.98590087890625], [-0.043701171875, 0.07470703125, 0.981689453125], [-0.0439453125, 0.0743408203125, 0.98681640625], [-0.04461669921875, 0.0732421875, 0.989013671875], [-0.04302978515625, 0.0731201171875, 0.99786376953125], [-0.049072265625, 0.07208251953125, 0.99090576171875], [-0.04437255859375, 0.074462890625, 0.991455078125], [-0.04205322265625, 0.074462890625, 0.9915771484375], [-0.03765869140625, 0.07513427734375, 0.988525390625], [-0.0321044921875, 0.0751953125, 0.9970703125], [-0.036376953125, 0.0758056640625, 0.998291015625], [-0.03887939453125, 0.0736083984375, 0.99896240234375], [-0.0364990234375, 0.07330322265625, 0.99658203125], [-0.031982421875, 0.07476806640625, 0.99627685546875], [-0.03472900390625, 0.07293701171875, 0.99481201171875], [-0.0360107421875, 0.073486328125, 0.9952392578125], [-0.038818359375, 0.0718994140625, 0.988525390625], [-0.03515625, 0.075439453125, 0.9920654296875], [-0.0413818359375, 0.07415771484375, 0.99273681640625], [-0.04107666015625, 0.07183837890625, 0.98699951171875], [-0.04461669921875, 0.0697021484375, 0.97882080078125], [-0.04656982421875, 0.07012939453125, 0.98980712890625], [-0.0419921875, 0.0772705078125, 0.99212646484375], [-0.04052734375, 0.07672119140625, 0.9979248046875], [-0.04229736328125, 0.0732421875, 0.99560546875], [-0.03704833984375, 0.074951171875, 0.994873046875], [-0.03271484375, 0.0782470703125, 0.99298095703125], [-0.0306396484375, 0.0771484375, 0.9921875], [-0.03167724609375, 0.0765380859375, 0.99591064453125], [-0.03277587890625, 0.07611083984375, 0.99676513671875], [-0.03118896484375, 0.07891845703125, 0.99835205078125], [-0.03192138671875, 0.0787353515625, 0.99755859375], [-0.033935546875, 0.077880859375, 0.996826171875], [-0.0416259765625, 0.072509765625, 0.993896484375], [-0.04449462890625, 0.06976318359375, 0.9906005859375], [-0.0389404296875, 0.0736083984375, 0.9847412109375], [-0.04107666015625, 0.07305908203125, 0.9842529296875], [-0.043212890625, 0.06890869140625, 0.9942626953125], [-0.04656982421875, 0.06793212890625, 0.99383544921875], [-0.04296875, 0.06939697265625, 0.99017333984375], [-0.042724609375, 0.07000732421875, 0.9876708984375], [-0.04296875, 0.0687255859375, 0.9884033203125], [-0.044921875, 0.06781005859375, 0.99493408203125], [-0.04736328125, 0.067138671875, 0.99853515625], [-0.042236328125, 0.06988525390625, 0.99505615234375], [-0.042236328125, 0.068359375, 0.99102783203125], [-0.0443115234375, 0.06854248046875, 0.99072265625], [-0.044189453125, 0.0706787109375, 0.9913330078125], [-0.0439453125, 0.0694580078125, 0.9908447265625], [-0.0421142578125, 0.07000732421875, 0.98974609375], [-0.043212890625, 0.06756591796875, 0.99407958984375], [-0.046875, 0.0667724609375, 0.9906005859375], [-0.0460205078125, 0.0640869140625, 0.99224853515625], [-0.04412841796875, 0.063232421875, 0.9920654296875], [-0.04058837890625, 0.066650390625, 0.99786376953125], [-0.03326416015625, 0.06976318359375, 1.004638671875], [-0.0250244140625, 0.0711669921875, 1.013671875], [-0.0191650390625, 0.0711669921875, 1.00909423828125], [-0.02423095703125, 0.0657958984375, 0.99365234375]], "channel_names": ["acc1", "acc2", "acc3"]}, "batt": {"name": "batt", "fs": 0.1, "emp_fs": 0.0, "timestamps": [1571759075.645049, 1571759085.634152], "samples": [[3775.0, 70.0, 27.0], [3775.0, 69.0, 27.0]], "channel_names": ["battery_fuel_gauge_millivolts", "percent_remaining", "temperature_celsius"]}, "notch_filtered_eeg": {"name": "notch_filtered_eeg", "fs": 256.429203966412, "emp_fs": 256.429203966412, "timestamps": [1571759075.46624, 1571759075.4701397, 1571759075.4740393, 1571759075.4779391, 1571759075.4818387, 1571759075.4857385, 1571759075.489638, 1571759075.493538, 1571759075.4974377, 1571759075.5013373, 1571759075.505237, 1571759075.5091367, 1571759075.5130365, 1571759075.516936, 1571759075.5208359, 1571759075.5247357, 1571759075.5286353, 1571759075.532535, 1571759075.5364347, 1571759075.5403345, 1571759075.5442343, 1571759075.5481339, 1571759075.5520337, 1571759075.5559332, 1571759075.559833, 1571759075.5637326, 1571759075.5676324, 1571759075.5715322, 1571759075.5754318, 1571759075.5793316, 1571759075.5832312, 1571759075.587131, 1571759075.5910306, 1571759075.5949304, 1571759075.5988302, 1571759075.6027298, 1571759075.6066296, 1571759075.6105292, 1571759075.614429, 1571759075.6183286, 1571759075.6222284, 1571759075.6261282, 1571759075.6300278, 1571759075.6339276, 1571759075.6378272, 1571759075.641727, 1571759075.6456268, 1571759075.6495264, 1571759075.6534262, 1571759075.6573257, 1571759075.6612256, 1571759075.6651251, 1571759075.669025, 1571759075.6729248, 1571759075.6768243, 1571759075.6807241, 1571759075.6846237, 1571759075.6885235, 1571759075.692423, 1571759075.696323, 1571759075.7002227, 1571759075.7041223, 1571759075.708022, 1571759075.7119217, 1571759075.7158215, 1571759075.719721, 1571759075.723621, 1571759075.7275207, 1571759075.7314203, 1571759075.73532, 1571759075.7392197, 1571759075.7431195, 1571759075.7470193, 1571759075.7509189, 1571759075.7548187, 1571759075.7587183, 1571759075.762618, 1571759075.7665176, 1571759075.7704175, 1571759075.7743173, 1571759075.7782168, 1571759075.7821167, 1571759075.7860162, 1571759075.789916, 1571759075.7938156, 1571759075.7977154, 1571759075.8016152, 1571759075.8055148, 1571759075.8094146, 1571759075.8133142, 1571759075.817214, 1571759075.8211136, 1571759075.8250134, 1571759075.8289132, 1571759075.8328128, 1571759075.8367126, 1571759075.8406122, 1571759075.844512, 1571759075.8484118, 1571759075.8523114, 1571759075.8562112, 1571759075.8601108, 1571759075.8640106, 1571759075.8679101, 1571759075.87181, 1571759075.8757098, 1571759075.8796093, 1571759075.8835092, 1571759075.8874087, 1571759075.8913085, 1571759075.8952081, 1571759075.899108, 1571759075.9030077, 1571759075.9069073, 1571759075.9108071, 1571759075.9147067, 1571759075.9186065, 1571759075.922506, 1571759075.926406, 1571759075.9303057, 1571759075.9342053, 1571759075.938105, 1571759075.9420047, 1571759075.9459045, 1571759075.9498043, 1571759075.9537039, 1571759075.9576037, 1571759075.9615033, 1571759075.965403, 1571759075.9693027, 1571759075.9732025, 1571759075.9771023, 1571759075.9810019, 1571759075.9849017, 1571759075.9888012, 1571759075.992701, 1571759075.9966006, 1571759076.0005004, 1571759076.0044003, 1571759076.0082998, 1571759076.0121996, 1571759076.0160992, 1571759076.019999, 1571759076.0238986, 1571759076.0277984, 1571759076.0316982, 1571759076.0355978, 1571759076.0394976, 1571759076.0433972, 1571759076.047297, 1571759076.0511968, 1571759076.0550964, 1571759076.0589962, 1571759076.0628958, 1571759076.0667956, 1571759076.0706952, 1571759076.074595, 1571759076.0784948, 1571759076.0823944, 1571759076.0862942, 1571759076.0901937, 1571759076.0940936, 1571759076.0979931, 1571759076.101893, 1571759076.1057928, 1571759076.1096923, 1571759076.1135921, 1571759076.1174917, 1571759076.1213915, 1571759076.125291, 1571759076.129191, 1571759076.1330907, 1571759076.1369903, 1571759076.1408901, 1571759076.1447897, 1571759076.1486895, 1571759076.1525893, 1571759076.156489, 1571759076.1603887, 1571759076.1642883, 1571759076.168188, 1571759076.1720877, 1571759076.1759875, 1571759076.1798873, 1571759076.1837869, 1571759076.1876867, 1571759076.1915863, 1571759076.195486, 1571759076.1993856, 1571759076.2032855, 1571759076.2071853, 1571759076.2110848, 1571759076.2149847, 1571759076.2188842, 1571759076.222784, 1571759076.2266836, 1571759076.2305834, 1571759076.2344832, 1571759076.2383828, 1571759076.2422826, 1571759076.2461822, 1571759076.250082, 1571759076.2539818, 1571759076.2578814, 1571759076.2617812, 1571759076.2656808, 1571759076.2695806, 1571759076.2734802, 1571759076.27738, 1571759076.2812798, 1571759076.2851794, 1571759076.2890792, 1571759076.2929788, 1571759076.2968786, 1571759076.3007782, 1571759076.304678, 1571759076.3085778, 1571759076.3124774, 1571759076.3163772, 1571759076.3202767, 1571759076.3241765, 1571759076.3280761, 1571759076.331976, 1571759076.3358757, 1571759076.3397753, 1571759076.3436751, 1571759076.3475747, 1571759076.3514745, 1571759076.3553743, 1571759076.359274, 1571759076.3631737, 1571759076.3670733, 1571759076.370973, 1571759076.3748727, 1571759076.3787725, 1571759076.3826723, 1571759076.386572, 1571759076.3904717, 1571759076.3943713, 1571759076.398271, 1571759076.4021707, 1571759076.4060705, 1571759076.4099703, 1571759076.4138699, 1571759076.4177697, 1571759076.4216692, 1571759076.425569, 1571759076.4294686, 1571759076.4333684, 1571759076.4372683, 1571759076.4411678, 1571759076.4450676, 1571759076.4489672, 1571759076.452867, 1571759076.4567668, 1571759076.4606664, 1571759076.4645662, 1571759076.4684658, 1571759076.4723656, 1571759076.4762652, 1571759076.480165, 1571759076.4840648, 1571759076.4879644, 1571759076.4918642, 1571759076.4957638, 1571759076.4996636, 1571759076.5035632, 1571759076.507463, 1571759076.5113628, 1571759076.5152624, 1571759076.5191622, 1571759076.5230618, 1571759076.5269616, 1571759076.5308611, 1571759076.534761, 1571759076.5386608, 1571759076.5425603, 1571759076.5464602, 1571759076.5503597, 1571759076.5542595, 1571759076.5581594, 1571759076.562059, 1571759076.5659587, 1571759076.5698583, 1571759076.5737581, 1571759076.5776577, 1571759076.5815575, 1571759076.5854573, 1571759076.589357, 1571759076.5932567, 1571759076.5971563, 1571759076.601056, 1571759076.6049557, 1571759076.6088555, 1571759076.6127553, 1571759076.6166549, 1571759076.6205547, 1571759076.6244543, 1571759076.628354, 1571759076.6322536, 1571759076.6361535, 1571759076.6400533, 1571759076.6439528, 1571759076.6478527, 1571759076.6517522, 1571759076.655652, 1571759076.6595519, 1571759076.6634514, 1571759076.6673512, 1571759076.6712508, 1571759076.6751506, 1571759076.6790502, 1571759076.68295, 1571759076.6868498, 1571759076.6907494, 1571759076.6946492, 1571759076.6985488, 1571759076.7024486, 1571759076.7063482, 1571759076.710248, 1571759076.7141478, 1571759076.7180474, 1571759076.7219472, 1571759076.7258468, 1571759076.7297466, 1571759076.7336462, 1571759076.737546, 1571759076.7414458, 1571759076.7453454, 1571759076.7492452, 1571759076.7531447, 1571759076.7570446, 1571759076.7609444, 1571759076.764844, 1571759076.7687438, 1571759076.7726433, 1571759076.7765431, 1571759076.7804427, 1571759076.7843425, 1571759076.7882423, 1571759076.792142, 1571759076.7960417, 1571759076.7999413, 1571759076.803841, 1571759076.8077407, 1571759076.8116405, 1571759076.8155403, 1571759076.81944, 1571759076.8233397, 1571759076.8272393, 1571759076.831139, 1571759076.8350387, 1571759076.8389385, 1571759076.8428383, 1571759076.8467379, 1571759076.8506377, 1571759076.8545372, 1571759076.858437, 1571759076.8623369, 1571759076.8662364, 1571759076.8701363, 1571759076.8740358, 1571759076.8779356, 1571759076.8818352, 1571759076.885735, 1571759076.8896348, 1571759076.8935344, 1571759076.8974342, 1571759076.9013338, 1571759076.9052336, 1571759076.9091332, 1571759076.913033, 1571759076.9169328, 1571759076.9208324, 1571759076.9247322, 1571759076.9286318, 1571759076.9325316, 1571759076.9364312, 1571759076.940331, 1571759076.9442308, 1571759076.9481304, 1571759076.9520302, 1571759076.9559298, 1571759076.9598296, 1571759076.9637294, 1571759076.967629, 1571759076.9715288, 1571759076.9754283, 1571759076.9793282, 1571759076.9832277, 1571759076.9871275, 1571759076.9910274, 1571759076.994927, 1571759076.9988267, 1571759077.0027263, 1571759077.0066261, 1571759077.0105257, 1571759077.0144255, 1571759077.0183253, 1571759077.022225, 1571759077.0261247, 1571759077.0300243, 1571759077.033924, 1571759077.0378237, 1571759077.0417235, 1571759077.0456233, 1571759077.0495229, 1571759077.0534227, 1571759077.0573223, 1571759077.061222, 1571759077.065122, 1571759077.0690215, 1571759077.0729213, 1571759077.0768209, 1571759077.0807207, 1571759077.0846202, 1571759077.08852, 1571759077.0924199, 1571759077.0963194, 1571759077.1002192, 1571759077.1041188, 1571759077.1080186, 1571759077.1119182, 1571759077.115818, 1571759077.1197178, 1571759077.1236174, 1571759077.1275172, 1571759077.1314168, 1571759077.1353166, 1571759077.1392162, 1571759077.143116, 1571759077.1470158, 1571759077.1509154, 1571759077.1548152, 1571759077.1587148, 1571759077.1626146, 1571759077.1665144, 1571759077.170414, 1571759077.1743138, 1571759077.1782134, 1571759077.1821132, 1571759077.1860127, 1571759077.1899126, 1571759077.1938124, 1571759077.197712, 1571759077.2016118, 1571759077.2055113, 1571759077.2094111, 1571759077.2133107, 1571759077.2172105, 1571759077.2211103, 1571759077.22501, 1571759077.2289097, 1571759077.2328093, 1571759077.236709, 1571759077.2406087, 1571759077.2445085, 1571759077.2484083, 1571759077.252308, 1571759077.2562077, 1571759077.2601073, 1571759077.264007, 1571759077.267907, 1571759077.2718065, 1571759077.2757063, 1571759077.2796059, 1571759077.2835057, 1571759077.2874053, 1571759077.291305, 1571759077.2952049, 1571759077.2991045, 1571759077.3030043, 1571759077.3069038, 1571759077.3108037, 1571759077.3147032, 1571759077.318603, 1571759077.3225029, 1571759077.3264024, 1571759077.3303022, 1571759077.3342018, 1571759077.3381016, 1571759077.3420012, 1571759077.345901, 1571759077.3498008, 1571759077.3537004, 1571759077.3576002, 1571759077.3614998, 1571759077.3653996, 1571759077.3692994, 1571759077.373199, 1571759077.3770988, 1571759077.3809984, 1571759077.3848982, 1571759077.3887978, 1571759077.3926976, 1571759077.3965974, 1571759077.400497, 1571759077.4043968, 1571759077.4082963, 1571759077.4121962, 1571759077.4160957, 1571759077.4199955, 1571759077.4238954, 1571759077.427795, 1571759077.4316947, 1571759077.4355943, 1571759077.4394941, 1571759077.4433937, 1571759077.4472935, 1571759077.4511933, 1571759077.455093, 1571759077.4589927, 1571759077.4628923, 1571759077.466792, 1571759077.470692, 1571759077.4745915, 1571759077.4784913, 1571759077.4823909, 1571759077.4862907, 1571759077.4901903, 1571759077.49409, 1571759077.49799, 1571759077.5018895, 1571759077.5057893, 1571759077.5096889, 1571759077.5135887, 1571759077.5174882, 1571759077.521388, 1571759077.5252879, 1571759077.5291874, 1571759077.5330873, 1571759077.5369868, 1571759077.5408866, 1571759077.5447862, 1571759077.548686, 1571759077.5525858, 1571759077.5564854, 1571759077.5603852, 1571759077.5642848, 1571759077.5681846, 1571759077.5720844, 1571759077.575984, 1571759077.5798838, 1571759077.5837834, 1571759077.5876832, 1571759077.5915828, 1571759077.5954826, 1571759077.5993824, 1571759077.603282, 1571759077.6071818, 1571759077.6110814, 1571759077.6149812, 1571759077.6188807, 1571759077.6227806, 1571759077.6266804, 1571759077.63058, 1571759077.6344798, 1571759077.6383793, 1571759077.6422791, 1571759077.6461787, 1571759077.6500785, 1571759077.6539783, 1571759077.657878, 1571759077.6617777, 1571759077.6656773, 1571759077.6695771, 1571759077.673477, 1571759077.6773765, 1571759077.6812763, 1571759077.685176, 1571759077.6890757, 1571759077.6929753, 1571759077.696875, 1571759077.700775, 1571759077.7046745, 1571759077.7085743, 1571759077.7124739, 1571759077.7163737, 1571759077.7202733, 1571759077.724173, 1571759077.728073, 1571759077.7319725, 1571759077.7358723, 1571759077.7397718, 1571759077.7436717, 1571759077.7475712, 1571759077.751471, 1571759077.7553709, 1571759077.7592704, 1571759077.7631702, 1571759077.7670698, 1571759077.7709696, 1571759077.7748694, 1571759077.778769, 1571759077.7826688, 1571759077.7865684, 1571759077.7904682, 1571759077.7943678, 1571759077.7982676, 1571759077.8021674, 1571759077.806067, 1571759077.8099668, 1571759077.8138664, 1571759077.8177662, 1571759077.8216658, 1571759077.8255656, 1571759077.8294654, 1571759077.833365, 1571759077.8372648, 1571759077.8411644, 1571759077.8450642, 1571759077.8489637, 1571759077.8528636, 1571759077.8567634, 1571759077.860663, 1571759077.8645627, 1571759077.8684623, 1571759077.8723621, 1571759077.876262, 1571759077.8801615, 1571759077.8840613, 1571759077.887961, 1571759077.8918607, 1571759077.8957603, 1571759077.89966, 1571759077.90356, 1571759077.9074595, 1571759077.9113593, 1571759077.915259, 1571759077.9191587, 1571759077.9230583, 1571759077.926958, 1571759077.930858, 1571759077.9347575, 1571759077.9386573, 1571759077.9425569, 1571759077.9464567, 1571759077.9503562, 1571759077.954256, 1571759077.9581559, 1571759077.9620554, 1571759077.9659553, 1571759077.9698548, 1571759077.9737546, 1571759077.9776545, 1571759077.981554, 1571759077.9854538, 1571759077.9893534, 1571759077.9932532, 1571759077.9971528, 1571759078.0010526, 1571759078.0049524, 1571759078.008852, 1571759078.0127518, 1571759078.0166514, 1571759078.0205512, 1571759078.0244508, 1571759078.0283506, 1571759078.0322504, 1571759078.03615, 1571759078.0400498, 1571759078.0439494, 1571759078.0478492, 1571759078.0517488, 1571759078.0556486, 1571759078.0595484, 1571759078.063448, 1571759078.0673478, 1571759078.0712473, 1571759078.0751472, 1571759078.079047, 1571759078.0829465, 1571759078.0868464, 1571759078.090746, 1571759078.0946457, 1571759078.0985453, 1571759078.1024451, 1571759078.106345, 1571759078.1102445, 1571759078.1141443, 1571759078.118044, 1571759078.1219437, 1571759078.1258433, 1571759078.129743, 1571759078.133643, 1571759078.1375425, 1571759078.1414423, 1571759078.1453419, 1571759078.1492417, 1571759078.1531413, 1571759078.157041, 1571759078.160941, 1571759078.1648405, 1571759078.1687403, 1571759078.1726398, 1571759078.1765397, 1571759078.1804395, 1571759078.184339, 1571759078.1882389, 1571759078.1921384, 1571759078.1960382, 1571759078.1999378, 1571759078.2038376, 1571759078.2077374, 1571759078.211637, 1571759078.2155368, 1571759078.2194364, 1571759078.2233362, 1571759078.2272358, 1571759078.2311356, 1571759078.2350354, 1571759078.238935, 1571759078.2428348, 1571759078.2467344, 1571759078.2506342, 1571759078.2545338, 1571759078.2584336, 1571759078.2623334, 1571759078.266233, 1571759078.2701328, 1571759078.2740324, 1571759078.2779322, 1571759078.281832, 1571759078.2857316, 1571759078.2896314, 1571759078.293531, 1571759078.2974308, 1571759078.3013303, 1571759078.3052301, 1571759078.30913, 1571759078.3130295, 1571759078.3169293, 1571759078.320829, 1571759078.3247287, 1571759078.3286283, 1571759078.332528, 1571759078.336428, 1571759078.3403275, 1571759078.3442273, 1571759078.348127, 1571759078.3520267, 1571759078.3559263, 1571759078.359826, 1571759078.363726, 1571759078.3676255, 1571759078.3715253, 1571759078.3754249, 1571759078.3793247, 1571759078.3832245, 1571759078.387124, 1571759078.3910239, 1571759078.3949234, 1571759078.3988233, 1571759078.4027228, 1571759078.4066226, 1571759078.4105225, 1571759078.414422, 1571759078.4183218, 1571759078.4222214, 1571759078.4261212, 1571759078.4300208, 1571759078.4339206, 1571759078.4378204, 1571759078.44172, 1571759078.4456198, 1571759078.4495194, 1571759078.4534192, 1571759078.4573188, 1571759078.4612186, 1571759078.4651184, 1571759078.469018, 1571759078.4729178, 1571759078.4768174, 1571759078.4807172, 1571759078.484617, 1571759078.4885166, 1571759078.4924164, 1571759078.496316, 1571759078.5002158, 1571759078.5041153, 1571759078.5080152, 1571759078.511915, 1571759078.5158145, 1571759078.5197144, 1571759078.523614, 1571759078.5275137, 1571759078.5314133, 1571759078.5353131, 1571759078.539213, 1571759078.5431125, 1571759078.5470123, 1571759078.550912, 1571759078.5548117, 1571759078.5587113, 1571759078.562611, 1571759078.566511, 1571759078.5704105, 1571759078.5743103, 1571759078.5782099, 1571759078.5821097, 1571759078.5860095, 1571759078.589909, 1571759078.593809, 1571759078.5977085, 1571759078.6016083, 1571759078.6055079, 1571759078.6094077, 1571759078.6133075, 1571759078.617207, 1571759078.6211069, 1571759078.6250064, 1571759078.6289062, 1571759078.6328058, 1571759078.6367056, 1571759078.6406054, 1571759078.644505, 1571759078.6484048, 1571759078.6523044, 1571759078.6562042, 1571759078.6601038, 1571759078.6640036, 1571759078.6679034, 1571759078.671803, 1571759078.6757028, 1571759078.6796024, 1571759078.6835022, 1571759078.6874018, 1571759078.6913016, 1571759078.6952014, 1571759078.699101, 1571759078.7030008, 1571759078.7069004, 1571759078.7108002, 1571759078.7147, 1571759078.7185996, 1571759078.7224994, 1571759078.726399, 1571759078.7302988, 1571759078.7341983, 1571759078.7380981, 1571759078.741998, 1571759078.7458975, 1571759078.7497973, 1571759078.753697, 1571759078.7575967, 1571759078.7614963, 1571759078.765396, 1571759078.769296, 1571759078.7731955, 1571759078.7770953, 1571759078.780995, 1571759078.7848947, 1571759078.7887943, 1571759078.792694, 1571759078.796594, 1571759078.8004935, 1571759078.8043933, 1571759078.8082929, 1571759078.8121927, 1571759078.8160925, 1571759078.819992, 1571759078.8238919, 1571759078.8277915, 1571759078.8316913, 1571759078.8355908, 1571759078.8394907, 1571759078.8433905, 1571759078.84729, 1571759078.8511899, 1571759078.8550894, 1571759078.8589892, 1571759078.8628888, 1571759078.8667886, 1571759078.8706884, 1571759078.874588, 1571759078.8784878, 1571759078.8823874, 1571759078.8862872, 1571759078.8901868, 1571759078.8940866, 1571759078.8979864, 1571759078.901886, 1571759078.9057858, 1571759078.9096854, 1571759078.9135852, 1571759078.917485, 1571759078.9213846, 1571759078.9252844, 1571759078.929184, 1571759078.9330838, 1571759078.9369833, 1571759078.9408832, 1571759078.944783, 1571759078.9486825, 1571759078.9525824, 1571759078.956482, 1571759078.9603817, 1571759078.9642813, 1571759078.9681811, 1571759078.972081, 1571759078.9759805, 1571759078.9798803, 1571759078.98378, 1571759078.9876797, 1571759078.9915793, 1571759078.995479, 1571759078.999379, 1571759079.0032785, 1571759079.0071783, 1571759079.011078, 1571759079.0149777, 1571759079.0188775, 1571759079.022777, 1571759079.026677, 1571759079.0305765, 1571759079.0344763, 1571759079.0383759, 1571759079.0422757, 1571759079.0461755, 1571759079.050075, 1571759079.0539749, 1571759079.0578744, 1571759079.0617743, 1571759079.0656738, 1571759079.0695736, 1571759079.0734735, 1571759079.077373, 1571759079.0812728, 1571759079.0851724, 1571759079.0890722, 1571759079.0929718, 1571759079.0968716, 1571759079.1007714, 1571759079.104671, 1571759079.1085708, 1571759079.1124704, 1571759079.1163702, 1571759079.12027, 1571759079.1241696, 1571759079.1280694, 1571759079.131969, 1571759079.1358688, 1571759079.1397684, 1571759079.1436682, 1571759079.147568, 1571759079.1514676, 1571759079.1553674, 1571759079.159267, 1571759079.1631668, 1571759079.1670663, 1571759079.1709661, 1571759079.174866, 1571759079.1787655, 1571759079.1826653, 1571759079.186565, 1571759079.1904647, 1571759079.1943643, 1571759079.1982641, 1571759079.202164, 1571759079.2060635, 1571759079.2099633, 1571759079.213863, 1571759079.2177627, 1571759079.2216625, 1571759079.225562, 1571759079.229462, 1571759079.2333615, 1571759079.2372613, 1571759079.2411609, 1571759079.2450607, 1571759079.2489605, 1571759079.25286, 1571759079.25676, 1571759079.2606595, 1571759079.2645593, 1571759079.2684588, 1571759079.2723587, 1571759079.2762585, 1571759079.280158, 1571759079.2840579, 1571759079.2879574, 1571759079.2918572, 1571759079.2957568, 1571759079.2996566, 1571759079.3035564, 1571759079.307456, 1571759079.3113558, 1571759079.3152554, 1571759079.3191552, 1571759079.323055, 1571759079.3269546, 1571759079.3308544, 1571759079.334754, 1571759079.3386538, 1571759079.3425534, 1571759079.3464532, 1571759079.350353, 1571759079.3542526, 1571759079.3581524, 1571759079.362052, 1571759079.3659518, 1571759079.3698514, 1571759079.3737512, 1571759079.377651, 1571759079.3815506, 1571759079.3854504, 1571759079.38935, 1571759079.3932498, 1571759079.3971493, 1571759079.4010491, 1571759079.404949, 1571759079.4088485, 1571759079.4127483, 1571759079.416648, 1571759079.4205477, 1571759079.4244475, 1571759079.428347, 1571759079.432247, 1571759079.4361465, 1571759079.4400463, 1571759079.443946, 1571759079.4478457, 1571759079.4517455, 1571759079.455645, 1571759079.459545, 1571759079.4634445, 1571759079.4673443, 1571759079.4712439, 1571759079.4751437, 1571759079.4790435, 1571759079.482943, 1571759079.4868429, 1571759079.4907424, 1571759079.4946423, 1571759079.4985418, 1571759079.5024416, 1571759079.5063415, 1571759079.510241, 1571759079.5141408, 1571759079.5180404, 1571759079.5219402, 1571759079.52584, 1571759079.5297396, 1571759079.5336394, 1571759079.537539, 1571759079.5414388, 1571759079.5453384, 1571759079.5492382, 1571759079.553138, 1571759079.5570376, 1571759079.5609374, 1571759079.564837, 1571759079.5687368, 1571759079.5726364, 1571759079.5765362, 1571759079.580436, 1571759079.5843356, 1571759079.5882354, 1571759079.592135, 1571759079.5960348, 1571759079.5999343, 1571759079.6038342, 1571759079.607734, 1571759079.6116335, 1571759079.6155334, 1571759079.619433, 1571759079.6233327, 1571759079.6272326, 1571759079.6311321, 1571759079.635032, 1571759079.6389315, 1571759079.6428313, 1571759079.646731, 1571759079.6506307, 1571759079.6545305, 1571759079.65843, 1571759079.66233, 1571759079.6662295, 1571759079.6701293, 1571759079.6740289, 1571759079.6779287, 1571759079.6818285, 1571759079.685728, 1571759079.689628, 1571759079.6935275, 1571759079.6974273, 1571759079.7013268, 1571759079.7052267, 1571759079.7091265, 1571759079.713026, 1571759079.7169259, 1571759079.7208254, 1571759079.7247252, 1571759079.728625, 1571759079.7325246, 1571759079.7364244, 1571759079.740324, 1571759079.7442238, 1571759079.7481234, 1571759079.7520232, 1571759079.755923, 1571759079.7598226, 1571759079.7637224, 1571759079.767622, 1571759079.7715218, 1571759079.7754214, 1571759079.7793212, 1571759079.783221, 1571759079.7871206, 1571759079.7910204, 1571759079.79492, 1571759079.7988198, 1571759079.8027194, 1571759079.8066192, 1571759079.810519, 1571759079.8144186, 1571759079.8183184, 1571759079.822218, 1571759079.8261178, 1571759079.8300176, 1571759079.8339171, 1571759079.837817, 1571759079.8417165, 1571759079.8456163, 1571759079.849516, 1571759079.8534157, 1571759079.8573155, 1571759079.861215, 1571759079.865115, 1571759079.8690145, 1571759079.8729143, 1571759079.876814, 1571759079.8807137, 1571759079.8846135, 1571759079.888513, 1571759079.892413, 1571759079.8963125, 1571759079.9002123, 1571759079.9041119, 1571759079.9080117, 1571759079.9119115, 1571759079.915811, 1571759079.9197109, 1571759079.9236104, 1571759079.9275103, 1571759079.93141, 1571759079.9353096, 1571759079.9392095, 1571759079.943109, 1571759079.9470088, 1571759079.9509084, 1571759079.9548082, 1571759079.958708, 1571759079.9626076, 1571759079.9665074, 1571759079.970407, 1571759079.9743068, 1571759079.9782064, 1571759079.9821062, 1571759079.986006, 1571759079.9899056, 1571759079.9938054, 1571759079.997705, 1571759080.0016048, 1571759080.0055044, 1571759080.0094042, 1571759080.013304, 1571759080.0172036, 1571759080.0211034, 1571759080.025003, 1571759080.0289028, 1571759080.0328026, 1571759080.0367022, 1571759080.040602, 1571759080.0445015, 1571759080.0484014, 1571759080.052301, 1571759080.0562007, 1571759080.0601006, 1571759080.0640001, 1571759080.0679, 1571759080.0717995, 1571759080.0756993, 1571759080.079599, 1571759080.0834987, 1571759080.0873985, 1571759080.091298, 1571759080.095198, 1571759080.0990975, 1571759080.1029973, 1571759080.1068969, 1571759080.1107967, 1571759080.1146965, 1571759080.118596, 1571759080.122496, 1571759080.1263955, 1571759080.1302953, 1571759080.134195, 1571759080.1380947, 1571759080.1419945, 1571759080.145894, 1571759080.1497939, 1571759080.1536934, 1571759080.1575933, 1571759080.161493, 1571759080.1653926, 1571759080.1692924, 1571759080.173192, 1571759080.1770918, 1571759080.1809914, 1571759080.1848912, 1571759080.188791, 1571759080.1926906, 1571759080.1965904, 1571759080.20049, 1571759080.2043898, 1571759080.2082894, 1571759080.2121892, 1571759080.216089, 1571759080.2199886, 1571759080.2238884, 1571759080.227788, 1571759080.2316878, 1571759080.2355876, 1571759080.2394872, 1571759080.243387, 1571759080.2472866, 1571759080.2511864, 1571759080.255086, 1571759080.2589858, 1571759080.2628856, 1571759080.2667851, 1571759080.270685, 1571759080.2745845, 1571759080.2784843, 1571759080.282384, 1571759080.2862837, 1571759080.2901835, 1571759080.294083, 1571759080.297983, 1571759080.3018825, 1571759080.3057823, 1571759080.309682, 1571759080.3135817, 1571759080.3174815, 1571759080.321381, 1571759080.325281, 1571759080.3291805, 1571759080.3330803, 1571759080.33698, 1571759080.3408797, 1571759080.3447795, 1571759080.348679, 1571759080.3525789, 1571759080.3564785, 1571759080.3603783, 1571759080.364278, 1571759080.3681777, 1571759080.3720775, 1571759080.375977, 1571759080.3798769, 1571759080.3837764, 1571759080.3876762, 1571759080.391576, 1571759080.3954756, 1571759080.3993754, 1571759080.403275, 1571759080.4071748, 1571759080.4110744, 1571759080.4149742, 1571759080.418874, 1571759080.4227736, 1571759080.4266734, 1571759080.430573, 1571759080.4344728, 1571759080.4383726, 1571759080.4422722, 1571759080.446172, 1571759080.4500716, 1571759080.4539714, 1571759080.457871, 1571759080.4617708, 1571759080.4656706, 1571759080.4695702, 1571759080.47347, 1571759080.4773695, 1571759080.4812694, 1571759080.485169, 1571759080.4890687, 1571759080.4929686, 1571759080.4968681, 1571759080.500768, 1571759080.5046675, 1571759080.5085673, 1571759080.512467, 1571759080.5163667, 1571759080.5202665, 1571759080.524166, 1571759080.528066, 1571759080.5319655, 1571759080.5358653, 1571759080.5397651, 1571759080.5436647, 1571759080.5475645, 1571759080.551464, 1571759080.555364, 1571759080.5592635, 1571759080.5631633, 1571759080.567063, 1571759080.5709627, 1571759080.5748625, 1571759080.578762, 1571759080.5826619, 1571759080.5865614, 1571759080.5904613, 1571759080.594361, 1571759080.5982606, 1571759080.6021605, 1571759080.60606, 1571759080.6099598, 1571759080.6138594, 1571759080.6177592, 1571759080.621659, 1571759080.6255586, 1571759080.6294584, 1571759080.633358, 1571759080.6372578, 1571759080.6411576, 1571759080.6450572, 1571759080.648957, 1571759080.6528566, 1571759080.6567564, 1571759080.660656, 1571759080.6645558, 1571759080.6684556, 1571759080.6723552, 1571759080.676255, 1571759080.6801546, 1571759080.6840544, 1571759080.687954, 1571759080.6918538, 1571759080.6957536, 1571759080.6996531, 1571759080.703553, 1571759080.7074525, 1571759080.7113523, 1571759080.715252, 1571759080.7191517, 1571759080.7230515, 1571759080.7269511, 1571759080.730851, 1571759080.7347505, 1571759080.7386503, 1571759080.7425501, 1571759080.7464497, 1571759080.7503495, 1571759080.754249, 1571759080.758149, 1571759080.7620485, 1571759080.7659483, 1571759080.769848, 1571759080.7737477, 1571759080.7776475, 1571759080.781547, 1571759080.785447, 1571759080.7893465, 1571759080.7932463, 1571759080.797146, 1571759080.8010457, 1571759080.8049455, 1571759080.808845, 1571759080.8127449, 1571759080.8166444, 1571759080.8205442, 1571759080.824444, 1571759080.8283436, 1571759080.8322434, 1571759080.836143, 1571759080.8400428, 1571759080.8439426, 1571759080.8478422, 1571759080.851742, 1571759080.8556416, 1571759080.8595414, 1571759080.863441, 1571759080.8673408, 1571759080.8712406, 1571759080.8751402, 1571759080.87904, 1571759080.8829396, 1571759080.8868394, 1571759080.890739, 1571759080.8946388, 1571759080.8985386, 1571759080.9024382, 1571759080.906338, 1571759080.9102376, 1571759080.9141374, 1571759080.918037, 1571759080.9219368, 1571759080.9258366, 1571759080.9297361, 1571759080.933636, 1571759080.9375355, 1571759080.9414353, 1571759080.9453351, 1571759080.9492347, 1571759080.9531345, 1571759080.957034, 1571759080.960934, 1571759080.9648335, 1571759080.9687333, 1571759080.9726331, 1571759080.9765327, 1571759080.9804325, 1571759080.984332, 1571759080.988232, 1571759080.9921315, 1571759080.9960313, 1571759080.999931, 1571759081.0038307, 1571759081.0077305, 1571759081.01163, 1571759081.0155299, 1571759081.0194294, 1571759081.0233293, 1571759081.027229, 1571759081.0311286, 1571759081.0350285, 1571759081.038928, 1571759081.0428278, 1571759081.0467277, 1571759081.0506272, 1571759081.054527, 1571759081.0584266, 1571759081.0623264, 1571759081.066226, 1571759081.0701258, 1571759081.0740256, 1571759081.0779252, 1571759081.081825, 1571759081.0857246, 1571759081.0896244, 1571759081.093524, 1571759081.0974238, 1571759081.1013236, 1571759081.1052232, 1571759081.109123, 1571759081.1130226, 1571759081.1169224, 1571759081.120822, 1571759081.1247218, 1571759081.1286216, 1571759081.1325212, 1571759081.136421, 1571759081.1403205, 1571759081.1442204, 1571759081.1481202, 1571759081.1520197, 1571759081.1559196, 1571759081.1598191, 1571759081.163719, 1571759081.1676185, 1571759081.1715183, 1571759081.1754181, 1571759081.1793177, 1571759081.1832175, 1571759081.187117, 1571759081.191017, 1571759081.1949165, 1571759081.1988163, 1571759081.202716, 1571759081.2066157, 1571759081.2105155, 1571759081.214415, 1571759081.218315, 1571759081.2222145, 1571759081.2261143, 1571759081.230014, 1571759081.2339137, 1571759081.2378135, 1571759081.241713, 1571759081.2456129, 1571759081.2495127, 1571759081.2534122, 1571759081.257312, 1571759081.2612116, 1571759081.2651114, 1571759081.269011, 1571759081.2729108, 1571759081.2768106, 1571759081.2807102, 1571759081.28461, 1571759081.2885096, 1571759081.2924094, 1571759081.296309, 1571759081.3002088, 1571759081.3041086, 1571759081.3080082, 1571759081.311908, 1571759081.3158076, 1571759081.3197074, 1571759081.323607, 1571759081.3275068, 1571759081.3314066, 1571759081.3353062, 1571759081.339206, 1571759081.3431056, 1571759081.3470054, 1571759081.3509052, 1571759081.3548048, 1571759081.3587046, 1571759081.3626041, 1571759081.366504, 1571759081.3704035, 1571759081.3743033, 1571759081.3782032, 1571759081.3821027, 1571759081.3860025, 1571759081.389902, 1571759081.393802, 1571759081.3977015, 1571759081.4016013, 1571759081.4055011, 1571759081.4094007, 1571759081.4133005, 1571759081.4172, 1571759081.4211, 1571759081.4249995, 1571759081.4288993, 1571759081.432799, 1571759081.4366987, 1571759081.4405985, 1571759081.444498, 1571759081.4483979, 1571759081.4522977, 1571759081.4561973, 1571759081.460097, 1571759081.4639966, 1571759081.4678965, 1571759081.471796, 1571759081.4756958, 1571759081.4795957, 1571759081.4834952, 1571759081.487395, 1571759081.4912946, 1571759081.4951944, 1571759081.499094, 1571759081.5029938, 1571759081.5068936, 1571759081.5107932, 1571759081.514693, 1571759081.5185926, 1571759081.5224924, 1571759081.526392, 1571759081.5302918, 1571759081.5341916, 1571759081.5380912, 1571759081.541991, 1571759081.5458906, 1571759081.5497904, 1571759081.5536902, 1571759081.5575898, 1571759081.5614896, 1571759081.5653892, 1571759081.569289, 1571759081.5731885, 1571759081.5770884, 1571759081.5809882, 1571759081.5848877, 1571759081.5887876, 1571759081.5926871, 1571759081.596587, 1571759081.6004865, 1571759081.6043863, 1571759081.6082861, 1571759081.6121857, 1571759081.6160855, 1571759081.619985, 1571759081.623885, 1571759081.6277845, 1571759081.6316843, 1571759081.635584, 1571759081.6394837, 1571759081.6433835, 1571759081.647283, 1571759081.651183, 1571759081.6550827, 1571759081.6589823, 1571759081.662882, 1571759081.6667817, 1571759081.6706815, 1571759081.674581, 1571759081.6784809, 1571759081.6823807, 1571759081.6862803, 1571759081.69018, 1571759081.6940796, 1571759081.6979795, 1571759081.701879, 1571759081.7057788, 1571759081.7096786, 1571759081.7135782, 1571759081.717478, 1571759081.7213776, 1571759081.7252774, 1571759081.729177, 1571759081.7330768, 1571759081.7369766, 1571759081.7408762, 1571759081.744776, 1571759081.7486756, 1571759081.7525754, 1571759081.7564752, 1571759081.7603748, 1571759081.7642746, 1571759081.7681742, 1571759081.772074, 1571759081.7759736, 1571759081.7798734, 1571759081.7837732, 1571759081.7876728, 1571759081.7915726, 1571759081.7954721, 1571759081.799372, 1571759081.8032715, 1571759081.8071713, 1571759081.8110712, 1571759081.8149707, 1571759081.8188705, 1571759081.82277, 1571759081.82667, 1571759081.8305695, 1571759081.8344693, 1571759081.8383691, 1571759081.8422687, 1571759081.8461685, 1571759081.850068, 1571759081.853968, 1571759081.8578675, 1571759081.8617673, 1571759081.865667, 1571759081.8695667, 1571759081.8734665, 1571759081.877366, 1571759081.8812659, 1571759081.8851657, 1571759081.8890653, 1571759081.892965, 1571759081.8968647, 1571759081.9007645, 1571759081.904664, 1571759081.9085639, 1571759081.9124637, 1571759081.9163632, 1571759081.920263, 1571759081.9241626, 1571759081.9280624, 1571759081.931962, 1571759081.9358618, 1571759081.9397616, 1571759081.9436612, 1571759081.947561, 1571759081.9514606, 1571759081.9553604, 1571759081.95926, 1571759081.9631598, 1571759081.9670596, 1571759081.9709592, 1571759081.974859, 1571759081.9787586, 1571759081.9826584, 1571759081.9865582, 1571759081.9904578, 1571759081.9943576, 1571759081.9982572, 1571759082.002157, 1571759082.0060565, 1571759082.0099564, 1571759082.0138562, 1571759082.0177557, 1571759082.0216556, 1571759082.0255551, 1571759082.029455, 1571759082.0333545, 1571759082.0372543, 1571759082.0411541, 1571759082.0450537, 1571759082.0489535, 1571759082.052853, 1571759082.056753, 1571759082.0606525, 1571759082.0645523, 1571759082.0684521, 1571759082.0723517, 1571759082.0762515, 1571759082.080151, 1571759082.084051, 1571759082.0879507, 1571759082.0918503, 1571759082.09575, 1571759082.0996497, 1571759082.1035495, 1571759082.107449, 1571759082.1113489, 1571759082.1152487, 1571759082.1191483, 1571759082.123048, 1571759082.1269476, 1571759082.1308475, 1571759082.134747, 1571759082.1386468, 1571759082.1425467, 1571759082.1464462, 1571759082.150346, 1571759082.1542456, 1571759082.1581454, 1571759082.162045, 1571759082.1659448, 1571759082.1698446, 1571759082.1737442, 1571759082.177644, 1571759082.1815436, 1571759082.1854434, 1571759082.1893432, 1571759082.1932428, 1571759082.1971426, 1571759082.2010422, 1571759082.204942, 1571759082.2088416, 1571759082.2127414, 1571759082.2166412, 1571759082.2205408, 1571759082.2244406, 1571759082.2283401, 1571759082.23224, 1571759082.2361395, 1571759082.2400393, 1571759082.2439392, 1571759082.2478387, 1571759082.2517385, 1571759082.2556381, 1571759082.259538, 1571759082.2634375, 1571759082.2673373, 1571759082.2712371, 1571759082.2751367, 1571759082.2790365, 1571759082.282936, 1571759082.286836, 1571759082.2907357, 1571759082.2946353, 1571759082.298535, 1571759082.3024347, 1571759082.3063345, 1571759082.310234, 1571759082.314134, 1571759082.3180337, 1571759082.3219333, 1571759082.325833, 1571759082.3297327, 1571759082.3336325, 1571759082.337532, 1571759082.3414319, 1571759082.3453317, 1571759082.3492312, 1571759082.353131, 1571759082.3570306, 1571759082.3609304, 1571759082.36483, 1571759082.3687298, 1571759082.3726296, 1571759082.3765292, 1571759082.380429, 1571759082.3843286, 1571759082.3882284, 1571759082.3921282, 1571759082.3960278, 1571759082.3999276, 1571759082.4038272, 1571759082.407727, 1571759082.4116266, 1571759082.4155264, 1571759082.4194262, 1571759082.4233258, 1571759082.4272256, 1571759082.4311252, 1571759082.435025, 1571759082.4389246, 1571759082.4428244, 1571759082.4467242, 1571759082.4506238, 1571759082.4545236, 1571759082.4584231, 1571759082.462323, 1571759082.4662225, 1571759082.4701223, 1571759082.4740222, 1571759082.4779217, 1571759082.4818215, 1571759082.485721, 1571759082.489621, 1571759082.4935207, 1571759082.4974203, 1571759082.5013201, 1571759082.5052197, 1571759082.5091195, 1571759082.513019, 1571759082.516919, 1571759082.5208187, 1571759082.5247183, 1571759082.528618, 1571759082.5325177, 1571759082.5364175, 1571759082.540317, 1571759082.5442169, 1571759082.5481167, 1571759082.5520163, 1571759082.555916, 1571759082.5598156, 1571759082.5637155, 1571759082.567615, 1571759082.5715148, 1571759082.5754147, 1571759082.5793142, 1571759082.583214, 1571759082.5871136, 1571759082.5910134, 1571759082.5949132, 1571759082.5988128, 1571759082.6027126, 1571759082.6066122, 1571759082.610512, 1571759082.6144116, 1571759082.6183114, 1571759082.6222112, 1571759082.6261108, 1571759082.6300106, 1571759082.6339102, 1571759082.63781, 1571759082.6417096, 1571759082.6456094, 1571759082.6495092, 1571759082.6534088, 1571759082.6573086, 1571759082.6612082, 1571759082.665108, 1571759082.6690075, 1571759082.6729074, 1571759082.6768072, 1571759082.6807067, 1571759082.6846066, 1571759082.6885061, 1571759082.692406, 1571759082.6963058, 1571759082.7002053, 1571759082.7041051, 1571759082.7080047, 1571759082.7119045, 1571759082.715804, 1571759082.719704, 1571759082.7236037, 1571759082.7275033, 1571759082.731403, 1571759082.7353027, 1571759082.7392025, 1571759082.743102, 1571759082.747002, 1571759082.7509017, 1571759082.7548013, 1571759082.758701, 1571759082.7626007, 1571759082.7665005, 1571759082.7704, 1571759082.7742999, 1571759082.7781997, 1571759082.7820992, 1571759082.785999, 1571759082.7898986, 1571759082.7937984, 1571759082.7976983, 1571759082.8015978, 1571759082.8054976, 1571759082.8093972, 1571759082.813297, 1571759082.8171966, 1571759082.8210964, 1571759082.8249962, 1571759082.8288958, 1571759082.8327956, 1571759082.8366952, 1571759082.840595, 1571759082.8444946, 1571759082.8483944, 1571759082.8522942, 1571759082.8561938, 1571759082.8600936, 1571759082.8639932, 1571759082.867893, 1571759082.8717926, 1571759082.8756924, 1571759082.8795922, 1571759082.8834918, 1571759082.8873916, 1571759082.8912911, 1571759082.895191, 1571759082.8990908, 1571759082.9029903, 1571759082.9068902, 1571759082.9107897, 1571759082.9146895, 1571759082.918589, 1571759082.922489, 1571759082.9263887, 1571759082.9302883, 1571759082.9341881, 1571759082.9380877, 1571759082.9419875, 1571759082.945887, 1571759082.949787, 1571759082.9536867, 1571759082.9575863, 1571759082.961486, 1571759082.9653857, 1571759082.9692855, 1571759082.973185, 1571759082.9770849, 1571759082.9809847, 1571759082.9848843, 1571759082.988784, 1571759082.9926836, 1571759082.9965835, 1571759083.0004833, 1571759083.0043828, 1571759083.0082827, 1571759083.0121822, 1571759083.016082, 1571759083.0199816, 1571759083.0238814, 1571759083.0277812, 1571759083.0316808, 1571759083.0355806, 1571759083.0394802, 1571759083.04338, 1571759083.0472796, 1571759083.0511794, 1571759083.0550792, 1571759083.0589788, 1571759083.0628786, 1571759083.0667782, 1571759083.070678, 1571759083.0745776, 1571759083.0784774, 1571759083.0823772, 1571759083.0862768, 1571759083.0901766, 1571759083.0940762, 1571759083.097976, 1571759083.1018758, 1571759083.1057754, 1571759083.1096752, 1571759083.1135747, 1571759083.1174746, 1571759083.1213741, 1571759083.125274, 1571759083.1291738, 1571759083.1330733, 1571759083.1369731, 1571759083.1408727, 1571759083.1447725, 1571759083.148672, 1571759083.152572, 1571759083.1564717, 1571759083.1603713, 1571759083.164271, 1571759083.1681707, 1571759083.1720705, 1571759083.17597, 1571759083.17987, 1571759083.1837697, 1571759083.1876693, 1571759083.191569, 1571759083.1954687, 1571759083.1993685, 1571759083.2032683, 1571759083.2071679, 1571759083.2110677, 1571759083.2149673, 1571759083.218867, 1571759083.2227666, 1571759083.2266665, 1571759083.2305663, 1571759083.2344658, 1571759083.2383657, 1571759083.2422652, 1571759083.246165, 1571759083.2500646, 1571759083.2539644, 1571759083.2578642, 1571759083.2617638, 1571759083.2656636, 1571759083.2695632, 1571759083.273463, 1571759083.2773626, 1571759083.2812624, 1571759083.2851622, 1571759083.2890618, 1571759083.2929616, 1571759083.2968612, 1571759083.300761, 1571759083.3046608, 1571759083.3085604, 1571759083.3124602, 1571759083.3163598, 1571759083.3202596, 1571759083.3241591, 1571759083.328059, 1571759083.3319588, 1571759083.3358583, 1571759083.3397582, 1571759083.3436577, 1571759083.3475575, 1571759083.351457, 1571759083.355357, 1571759083.3592567, 1571759083.3631563, 1571759083.3670561, 1571759083.3709557, 1571759083.3748555, 1571759083.378755, 1571759083.382655, 1571759083.3865547, 1571759083.3904543, 1571759083.394354, 1571759083.3982537, 1571759083.4021535, 1571759083.4060533, 1571759083.4099529, 1571759083.4138527, 1571759083.4177523, 1571759083.421652, 1571759083.4255517, 1571759083.4294515, 1571759083.4333513, 1571759083.4372509, 1571759083.4411507, 1571759083.4450502, 1571759083.44895, 1571759083.4528496, 1571759083.4567494, 1571759083.4606493, 1571759083.4645488, 1571759083.4684486, 1571759083.4723482, 1571759083.476248, 1571759083.4801476, 1571759083.4840474, 1571759083.4879472, 1571759083.4918468, 1571759083.4957466, 1571759083.4996462, 1571759083.503546, 1571759083.5074458, 1571759083.5113454, 1571759083.5152452, 1571759083.5191448, 1571759083.5230446, 1571759083.5269442, 1571759083.530844, 1571759083.5347438, 1571759083.5386434, 1571759083.5425432, 1571759083.5464427, 1571759083.5503426, 1571759083.5542421, 1571759083.558142, 1571759083.5620418, 1571759083.5659413, 1571759083.5698411, 1571759083.5737407, 1571759083.5776405, 1571759083.58154, 1571759083.58544, 1571759083.5893397, 1571759083.5932393, 1571759083.5971391, 1571759083.6010387, 1571759083.6049385, 1571759083.6088383, 1571759083.612738, 1571759083.6166377, 1571759083.6205373, 1571759083.624437, 1571759083.6283367, 1571759083.6322365, 1571759083.6361363, 1571759083.6400359, 1571759083.6439357, 1571759083.6478353, 1571759083.651735, 1571759083.6556346, 1571759083.6595345, 1571759083.6634343, 1571759083.6673338, 1571759083.6712337, 1571759083.6751332, 1571759083.679033, 1571759083.6829326, 1571759083.6868324, 1571759083.6907322, 1571759083.6946318, 1571759083.6985316, 1571759083.7024312, 1571759083.706331, 1571759083.7102308, 1571759083.7141304, 1571759083.7180302, 1571759083.7219298, 1571759083.7258296, 1571759083.7297292, 1571759083.733629, 1571759083.7375288, 1571759083.7414284, 1571759083.7453282, 1571759083.7492278, 1571759083.7531276, 1571759083.7570271, 1571759083.760927, 1571759083.7648268, 1571759083.7687263, 1571759083.7726262, 1571759083.7765257, 1571759083.7804255, 1571759083.7843251, 1571759083.788225, 1571759083.7921247, 1571759083.7960243, 1571759083.7999241, 1571759083.8038237, 1571759083.8077235, 1571759083.8116233, 1571759083.815523, 1571759083.8194227, 1571759083.8233223, 1571759083.827222, 1571759083.8311217, 1571759083.8350215, 1571759083.8389213, 1571759083.842821, 1571759083.8467207, 1571759083.8506203, 1571759083.85452, 1571759083.8584197, 1571759083.8623195, 1571759083.8662193, 1571759083.8701189, 1571759083.8740187, 1571759083.8779182, 1571759083.881818, 1571759083.8857176, 1571759083.8896174, 1571759083.8935173, 1571759083.8974168, 1571759083.9013166, 1571759083.9052162, 1571759083.909116, 1571759083.9130158, 1571759083.9169154, 1571759083.9208152, 1571759083.9247148, 1571759083.9286146, 1571759083.9325142, 1571759083.936414, 1571759083.9403138, 1571759083.9442134, 1571759083.9481132, 1571759083.9520128, 1571759083.9559126, 1571759083.9598122, 1571759083.963712, 1571759083.9676118, 1571759083.9715114, 1571759083.9754112, 1571759083.9793108, 1571759083.9832106, 1571759083.9871101, 1571759083.99101, 1571759083.9949098, 1571759083.9988093, 1571759084.0027092, 1571759084.0066087, 1571759084.0105085, 1571759084.0144083, 1571759084.018308, 1571759084.0222077, 1571759084.0261073, 1571759084.0300071, 1571759084.0339067, 1571759084.0378065, 1571759084.0417063, 1571759084.045606, 1571759084.0495057, 1571759084.0534053, 1571759084.057305, 1571759084.0612047, 1571759084.0651045, 1571759084.0690043, 1571759084.0729039, 1571759084.0768037, 1571759084.0807033, 1571759084.084603, 1571759084.0885026, 1571759084.0924025, 1571759084.0963023, 1571759084.1002018, 1571759084.1041017, 1571759084.1080012, 1571759084.111901, 1571759084.1158009, 1571759084.1197004, 1571759084.1236002, 1571759084.1274998, 1571759084.1313996, 1571759084.1352992, 1571759084.139199, 1571759084.1430988, 1571759084.1469984, 1571759084.1508982, 1571759084.1547978, 1571759084.1586976, 1571759084.1625972, 1571759084.166497, 1571759084.1703968, 1571759084.1742964, 1571759084.1781962, 1571759084.1820958, 1571759084.1859956, 1571759084.1898952, 1571759084.193795, 1571759084.1976948, 1571759084.2015944, 1571759084.2054942, 1571759084.2093937, 1571759084.2132936, 1571759084.2171934, 1571759084.221093, 1571759084.2249928, 1571759084.2288923, 1571759084.2327921, 1571759084.2366917, 1571759084.2405915, 1571759084.2444913, 1571759084.248391, 1571759084.2522907, 1571759084.2561903, 1571759084.26009, 1571759084.2639897, 1571759084.2678895, 1571759084.2717893, 1571759084.275689, 1571759084.2795887, 1571759084.2834883, 1571759084.287388, 1571759084.2912877, 1571759084.2951875, 1571759084.2990873, 1571759084.3029869, 1571759084.3068867, 1571759084.3107862, 1571759084.314686, 1571759084.3185859, 1571759084.3224854, 1571759084.3263853, 1571759084.3302848, 1571759084.3341846, 1571759084.3380842, 1571759084.341984, 1571759084.3458838, 1571759084.3497834, 1571759084.3536832, 1571759084.3575828, 1571759084.3614826, 1571759084.3653822, 1571759084.369282, 1571759084.3731818, 1571759084.3770814, 1571759084.3809812, 1571759084.3848808, 1571759084.3887806, 1571759084.3926802, 1571759084.39658, 1571759084.4004798, 1571759084.4043794, 1571759084.4082792, 1571759084.4121788, 1571759084.4160786, 1571759084.4199784, 1571759084.423878, 1571759084.4277778, 1571759084.4316773, 1571759084.4355772, 1571759084.4394767, 1571759084.4433765, 1571759084.4472764, 1571759084.451176, 1571759084.4550757, 1571759084.4589753, 1571759084.4628751, 1571759084.4667747, 1571759084.4706745, 1571759084.4745743, 1571759084.478474, 1571759084.4823737, 1571759084.4862733, 1571759084.490173, 1571759084.4940727, 1571759084.4979725, 1571759084.5018723, 1571759084.5057719, 1571759084.5096717, 1571759084.5135713, 1571759084.517471, 1571759084.521371, 1571759084.5252705, 1571759084.5291703, 1571759084.5330698, 1571759084.5369697, 1571759084.5408692, 1571759084.544769, 1571759084.5486689, 1571759084.5525684, 1571759084.5564682, 1571759084.5603678, 1571759084.5642676, 1571759084.5681672, 1571759084.572067, 1571759084.5759668, 1571759084.5798664, 1571759084.5837662, 1571759084.5876658, 1571759084.5915656, 1571759084.5954652, 1571759084.599365, 1571759084.6032648, 1571759084.6071644, 1571759084.6110642, 1571759084.6149638, 1571759084.6188636, 1571759084.6227634, 1571759084.626663, 1571759084.6305628, 1571759084.6344624, 1571759084.6383622, 1571759084.6422617, 1571759084.6461616, 1571759084.6500614, 1571759084.653961, 1571759084.6578608, 1571759084.6617603, 1571759084.6656601, 1571759084.6695597, 1571759084.6734595, 1571759084.6773593, 1571759084.681259, 1571759084.6851587, 1571759084.6890583, 1571759084.692958, 1571759084.6968577, 1571759084.7007575, 1571759084.7046573, 1571759084.708557, 1571759084.7124567, 1571759084.7163563, 1571759084.720256, 1571759084.724156, 1571759084.7280555, 1571759084.7319553, 1571759084.7358549, 1571759084.7397547, 1571759084.7436543, 1571759084.747554, 1571759084.7514539, 1571759084.7553535, 1571759084.7592533, 1571759084.7631528, 1571759084.7670527, 1571759084.7709522, 1571759084.774852, 1571759084.7787519, 1571759084.7826514, 1571759084.7865512, 1571759084.7904508, 1571759084.7943506, 1571759084.7982502, 1571759084.80215, 1571759084.8060498, 1571759084.8099494, 1571759084.8138492, 1571759084.8177488, 1571759084.8216486, 1571759084.8255484, 1571759084.829448, 1571759084.8333478, 1571759084.8372474, 1571759084.8411472, 1571759084.8450468, 1571759084.8489466, 1571759084.8528464, 1571759084.856746, 1571759084.8606458, 1571759084.8645453, 1571759084.8684452, 1571759084.8723447, 1571759084.8762445, 1571759084.8801444, 1571759084.884044, 1571759084.8879437, 1571759084.8918433, 1571759084.8957431, 1571759084.8996427, 1571759084.9035425, 1571759084.9074423, 1571759084.911342, 1571759084.9152417, 1571759084.9191413, 1571759084.923041, 1571759084.926941, 1571759084.9308405, 1571759084.9347403, 1571759084.9386399, 1571759084.9425397, 1571759084.9464393, 1571759084.950339, 1571759084.954239, 1571759084.9581385, 1571759084.9620383, 1571759084.9659379, 1571759084.9698377, 1571759084.9737372, 1571759084.977637, 1571759084.9815369, 1571759084.9854364, 1571759084.9893363, 1571759084.9932358, 1571759084.9971356, 1571759085.0010352, 1571759085.004935, 1571759085.0088348, 1571759085.0127344, 1571759085.0166342, 1571759085.0205338, 1571759085.0244336, 1571759085.0283334, 1571759085.032233, 1571759085.0361328, 1571759085.0400324, 1571759085.0439322, 1571759085.0478318, 1571759085.0517316, 1571759085.0556314, 1571759085.059531, 1571759085.0634308, 1571759085.0673304, 1571759085.0712302, 1571759085.0751297, 1571759085.0790296, 1571759085.0829294, 1571759085.086829, 1571759085.0907288, 1571759085.0946283, 1571759085.0985281, 1571759085.1024277, 1571759085.1063275, 1571759085.1102273, 1571759085.114127, 1571759085.1180267, 1571759085.1219263, 1571759085.1258261, 1571759085.1297257, 1571759085.1336255, 1571759085.1375253, 1571759085.141425, 1571759085.1453247, 1571759085.1492243, 1571759085.153124, 1571759085.157024, 1571759085.1609235, 1571759085.1648233, 1571759085.1687229, 1571759085.1726227, 1571759085.1765223, 1571759085.180422, 1571759085.1843219, 1571759085.1882215, 1571759085.1921213, 1571759085.1960208, 1571759085.1999207, 1571759085.2038202, 1571759085.20772, 1571759085.2116199, 1571759085.2155194, 1571759085.2194192, 1571759085.2233188, 1571759085.2272186, 1571759085.2311182, 1571759085.235018, 1571759085.2389178, 1571759085.2428174, 1571759085.2467172, 1571759085.2506168, 1571759085.2545166, 1571759085.2584164, 1571759085.262316, 1571759085.2662158, 1571759085.2701154, 1571759085.2740152, 1571759085.2779148, 1571759085.2818146, 1571759085.2857144, 1571759085.289614, 1571759085.2935138, 1571759085.2974133, 1571759085.3013132, 1571759085.3052127, 1571759085.3091125, 1571759085.3130124, 1571759085.316912, 1571759085.3208117, 1571759085.3247113, 1571759085.3286111, 1571759085.3325107, 1571759085.3364105, 1571759085.3403103, 1571759085.34421, 1571759085.3481097, 1571759085.3520093, 1571759085.355909, 1571759085.359809, 1571759085.3637085, 1571759085.3676083, 1571759085.371508, 1571759085.3754077, 1571759085.3793073, 1571759085.383207, 1571759085.387107, 1571759085.3910065, 1571759085.3949063, 1571759085.3988059, 1571759085.4027057, 1571759085.4066052, 1571759085.410505, 1571759085.4144049, 1571759085.4183044, 1571759085.4222043, 1571759085.4261038, 1571759085.4300036, 1571759085.4339032, 1571759085.437803, 1571759085.4417028, 1571759085.4456024, 1571759085.4495022, 1571759085.4534018, 1571759085.4573016, 1571759085.4612014, 1571759085.465101, 1571759085.4690008, 1571759085.4729004, 1571759085.4768002, 1571759085.4806998, 1571759085.4845996, 1571759085.4884994, 1571759085.492399, 1571759085.4962988, 1571759085.5001984, 1571759085.5040982, 1571759085.5079978, 1571759085.5118976, 1571759085.5157974, 1571759085.519697, 1571759085.5235968, 1571759085.5274963, 1571759085.5313962, 1571759085.5352957, 1571759085.5391955, 1571759085.5430954, 1571759085.546995, 1571759085.5508947, 1571759085.5547943, 1571759085.5586941, 1571759085.562594, 1571759085.5664935, 1571759085.5703933, 1571759085.574293, 1571759085.5781927, 1571759085.5820923, 1571759085.585992, 1571759085.589892, 1571759085.5937915, 1571759085.5976913, 1571759085.6015909, 1571759085.6054907, 1571759085.6093903, 1571759085.61329, 1571759085.61719, 1571759085.6210895, 1571759085.6249893, 1571759085.6288888, 1571759085.6327887, 1571759085.6366882, 1571759085.640588, 1571759085.6444879, 1571759085.6483874, 1571759085.6522872, 1571759085.6561868, 1571759085.6600866, 1571759085.6639864, 1571759085.667886, 1571759085.6717858, 1571759085.6756854, 1571759085.6795852, 1571759085.6834848, 1571759085.6873846, 1571759085.6912844, 1571759085.695184, 1571759085.6990838, 1571759085.7029834, 1571759085.7068832, 1571759085.7107828, 1571759085.7146826, 1571759085.7185824, 1571759085.722482, 1571759085.7263818, 1571759085.7302814, 1571759085.7341812, 1571759085.7380807, 1571759085.7419806, 1571759085.7458804, 1571759085.74978, 1571759085.7536798, 1571759085.7575793, 1571759085.7614791, 1571759085.765379, 1571759085.7692785, 1571759085.7731783, 1571759085.777078, 1571759085.7809777, 1571759085.7848773, 1571759085.788777, 1571759085.792677, 1571759085.7965765, 1571759085.8004763, 1571759085.804376, 1571759085.8082757, 1571759085.8121753, 1571759085.816075, 1571759085.819975, 1571759085.8238745, 1571759085.8277743, 1571759085.8316739, 1571759085.8355737, 1571759085.8394732, 1571759085.843373, 1571759085.8472729, 1571759085.8511724, 1571759085.8550723, 1571759085.8589718, 1571759085.8628716, 1571759085.8667715, 1571759085.870671, 1571759085.8745708, 1571759085.8784704, 1571759085.8823702, 1571759085.8862698, 1571759085.8901696, 1571759085.8940694, 1571759085.897969, 1571759085.9018688, 1571759085.9057684, 1571759085.9096682, 1571759085.9135678, 1571759085.9174676, 1571759085.9213674, 1571759085.925267, 1571759085.9291668, 1571759085.9330664, 1571759085.9369662, 1571759085.9408658, 1571759085.9447656, 1571759085.9486654, 1571759085.952565, 1571759085.9564648, 1571759085.9603643, 1571759085.9642642, 1571759085.968164, 1571759085.9720635, 1571759085.9759634, 1571759085.979863, 1571759085.9837627, 1571759085.9876623, 1571759085.9915621, 1571759085.995462, 1571759085.9993615, 1571759086.0032613, 1571759086.007161, 1571759086.0110607, 1571759086.0149603, 1571759086.01886, 1571759086.02276, 1571759086.0266595, 1571759086.0305593, 1571759086.0344589, 1571759086.0383587, 1571759086.0422583, 1571759086.046158, 1571759086.050058, 1571759086.0539575, 1571759086.0578573, 1571759086.0617568, 1571759086.0656567, 1571759086.0695565, 1571759086.073456, 1571759086.0773559, 1571759086.0812554, 1571759086.0851552, 1571759086.0890548, 1571759086.0929546, 1571759086.0968544, 1571759086.100754, 1571759086.1046538, 1571759086.1085534, 1571759086.1124532, 1571759086.1163528, 1571759086.1202526, 1571759086.1241524, 1571759086.128052, 1571759086.1319518, 1571759086.1358514, 1571759086.1397512, 1571759086.1436508, 1571759086.1475506, 1571759086.1514504, 1571759086.15535, 1571759086.1592498, 1571759086.1631494, 1571759086.1670492, 1571759086.170949, 1571759086.1748486, 1571759086.1787484, 1571759086.182648, 1571759086.1865478, 1571759086.1904473, 1571759086.1943471, 1571759086.198247, 1571759086.2021465, 1571759086.2060463, 1571759086.209946, 1571759086.2138457, 1571759086.2177453, 1571759086.221645, 1571759086.225545, 1571759086.2294445, 1571759086.2333443, 1571759086.237244, 1571759086.2411437, 1571759086.2450433, 1571759086.248943, 1571759086.252843, 1571759086.2567425, 1571759086.2606423, 1571759086.2645419, 1571759086.2684417, 1571759086.2723415, 1571759086.276241, 1571759086.2801409, 1571759086.2840405, 1571759086.2879403, 1571759086.2918398, 1571759086.2957397, 1571759086.2996395, 1571759086.303539, 1571759086.3074389, 1571759086.3113384, 1571759086.3152382, 1571759086.3191378, 1571759086.3230376, 1571759086.3269374, 1571759086.330837, 1571759086.3347368, 1571759086.3386364, 1571759086.3425362, 1571759086.3464358, 1571759086.3503356, 1571759086.3542354, 1571759086.358135, 1571759086.3620348, 1571759086.3659344, 1571759086.3698342, 1571759086.373734, 1571759086.3776336, 1571759086.3815334, 1571759086.385433, 1571759086.3893328, 1571759086.3932323, 1571759086.3971322, 1571759086.401032, 1571759086.4049315, 1571759086.4088314, 1571759086.412731, 1571759086.4166307, 1571759086.4205303, 1571759086.4244301, 1571759086.42833, 1571759086.4322295, 1571759086.4361293, 1571759086.440029, 1571759086.4439287, 1571759086.4478283, 1571759086.451728, 1571759086.455628, 1571759086.4595275, 1571759086.4634273, 1571759086.4673269, 1571759086.4712267, 1571759086.4751265, 1571759086.479026, 1571759086.482926, 1571759086.4868255, 1571759086.4907253, 1571759086.4946249, 1571759086.4985247, 1571759086.5024245, 1571759086.506324, 1571759086.5102239, 1571759086.5141234, 1571759086.5180233, 1571759086.5219228, 1571759086.5258226, 1571759086.5297225, 1571759086.533622, 1571759086.5375218, 1571759086.5414214, 1571759086.5453212, 1571759086.5492208, 1571759086.5531206, 1571759086.5570204, 1571759086.56092, 1571759086.5648198, 1571759086.5687194, 1571759086.5726192, 1571759086.576519, 1571759086.5804186, 1571759086.5843184, 1571759086.588218, 1571759086.5921178, 1571759086.5960174, 1571759086.5999172, 1571759086.603817, 1571759086.6077166, 1571759086.6116164, 1571759086.615516, 1571759086.6194158, 1571759086.6233153, 1571759086.6272151, 1571759086.631115, 1571759086.6350145, 1571759086.6389143, 1571759086.642814, 1571759086.6467137, 1571759086.6506133, 1571759086.6545131, 1571759086.658413, 1571759086.6623125, 1571759086.6662123, 1571759086.670112, 1571759086.6740117, 1571759086.6779115, 1571759086.681811, 1571759086.685711, 1571759086.6896105, 1571759086.6935103, 1571759086.6974099, 1571759086.7013097, 1571759086.7052095, 1571759086.709109, 1571759086.7130089, 1571759086.7169085, 1571759086.7208083, 1571759086.7247078, 1571759086.7286077, 1571759086.7325075, 1571759086.736407, 1571759086.7403069, 1571759086.7442064, 1571759086.7481062, 1571759086.7520058, 1571759086.7559056, 1571759086.7598054, 1571759086.763705, 1571759086.7676048, 1571759086.7715044, 1571759086.7754042, 1571759086.779304, 1571759086.7832036, 1571759086.7871034, 1571759086.791003, 1571759086.7949028, 1571759086.7988024, 1571759086.8027022, 1571759086.806602, 1571759086.8105016, 1571759086.8144014, 1571759086.818301, 1571759086.8222008, 1571759086.8261003, 1571759086.8300002, 1571759086.8339, 1571759086.8377995, 1571759086.8416994, 1571759086.845599, 1571759086.8494987, 1571759086.8533983, 1571759086.8572981, 1571759086.861198, 1571759086.8650975, 1571759086.8689973, 1571759086.872897, 1571759086.8767967, 1571759086.8806965, 1571759086.884596, 1571759086.888496, 1571759086.8923955, 1571759086.8962953, 1571759086.900195, 1571759086.9040947, 1571759086.9079945, 1571759086.911894, 1571759086.915794, 1571759086.9196935, 1571759086.9235933, 1571759086.9274929, 1571759086.9313927, 1571759086.9352925, 1571759086.939192, 1571759086.9430919, 1571759086.9469914, 1571759086.9508913, 1571759086.9547908, 1571759086.9586906, 1571759086.9625905, 1571759086.96649, 1571759086.9703898, 1571759086.9742894, 1571759086.9781892, 1571759086.982089, 1571759086.9859886, 1571759086.9898884, 1571759086.993788, 1571759086.9976878, 1571759087.0015874, 1571759087.0054872, 1571759087.009387, 1571759087.0132866, 1571759087.0171864, 1571759087.021086, 1571759087.0249858, 1571759087.0288854, 1571759087.0327852, 1571759087.036685, 1571759087.0405846, 1571759087.0444844, 1571759087.048384, 1571759087.0522838, 1571759087.0561833, 1571759087.0600832, 1571759087.063983, 1571759087.0678825, 1571759087.0717824, 1571759087.075682, 1571759087.0795817, 1571759087.0834816, 1571759087.0873811, 1571759087.091281, 1571759087.0951805, 1571759087.0990803, 1571759087.10298, 1571759087.1068797, 1571759087.1107795, 1571759087.114679, 1571759087.118579, 1571759087.1224785, 1571759087.1263783, 1571759087.1302779, 1571759087.1341777, 1571759087.1380775, 1571759087.141977, 1571759087.145877, 1571759087.1497765, 1571759087.1536763, 1571759087.1575758, 1571759087.1614757, 1571759087.1653755, 1571759087.169275, 1571759087.1731749, 1571759087.1770744, 1571759087.1809742, 1571759087.184874, 1571759087.1887736, 1571759087.1926734, 1571759087.196573, 1571759087.2004728, 1571759087.2043724, 1571759087.2082722, 1571759087.212172, 1571759087.2160716, 1571759087.2199714, 1571759087.223871, 1571759087.2277708, 1571759087.2316704, 1571759087.2355702, 1571759087.23947, 1571759087.2433696, 1571759087.2472694, 1571759087.251169, 1571759087.2550688, 1571759087.2589684, 1571759087.2628682, 1571759087.266768, 1571759087.2706676, 1571759087.2745674, 1571759087.278467, 1571759087.2823668, 1571759087.2862666, 1571759087.2901661, 1571759087.294066, 1571759087.2979655, 1571759087.3018653, 1571759087.305765, 1571759087.3096647, 1571759087.3135645, 1571759087.317464, 1571759087.321364, 1571759087.3252635, 1571759087.3291633, 1571759087.333063, 1571759087.3369627, 1571759087.3408625, 1571759087.344762, 1571759087.348662, 1571759087.3525615, 1571759087.3564613, 1571759087.3603609, 1571759087.3642607, 1571759087.3681605, 1571759087.37206, 1571759087.3759599, 1571759087.3798594, 1571759087.3837593, 1571759087.387659, 1571759087.3915586, 1571759087.3954585, 1571759087.399358, 1571759087.4032578, 1571759087.4071574, 1571759087.4110572, 1571759087.414957, 1571759087.4188566, 1571759087.4227564, 1571759087.426656, 1571759087.4305558, 1571759087.4344554, 1571759087.4383552, 1571759087.442255, 1571759087.4461546, 1571759087.4500544, 1571759087.453954, 1571759087.4578538, 1571759087.4617534, 1571759087.4656532, 1571759087.469553, 1571759087.4734526, 1571759087.4773524, 1571759087.481252, 1571759087.4851518, 1571759087.4890516, 1571759087.4929512, 1571759087.496851, 1571759087.5007505, 1571759087.5046504, 1571759087.50855, 1571759087.5124497, 1571759087.5163496, 1571759087.5202491, 1571759087.524149, 1571759087.5280485, 1571759087.5319483, 1571759087.535848, 1571759087.5397477, 1571759087.5436475, 1571759087.547547, 1571759087.551447, 1571759087.5553465, 1571759087.5592463, 1571759087.5631459, 1571759087.5670457, 1571759087.5709455, 1571759087.574845, 1571759087.578745, 1571759087.5826445, 1571759087.5865443, 1571759087.590444, 1571759087.5943437, 1571759087.5982435, 1571759087.602143, 1571759087.6060429, 1571759087.6099424, 1571759087.6138422, 1571759087.617742, 1571759087.6216416, 1571759087.6255414, 1571759087.629441, 1571759087.6333408, 1571759087.6372404, 1571759087.6411402, 1571759087.64504, 1571759087.6489396, 1571759087.6528394, 1571759087.656739, 1571759087.6606388, 1571759087.6645384, 1571759087.6684382, 1571759087.672338, 1571759087.6762376, 1571759087.6801374, 1571759087.684037, 1571759087.6879368, 1571759087.6918366, 1571759087.6957362, 1571759087.699636, 1571759087.7035356, 1571759087.7074354, 1571759087.711335, 1571759087.7152348, 1571759087.7191346, 1571759087.7230341, 1571759087.726934, 1571759087.7308335, 1571759087.7347333, 1571759087.738633, 1571759087.7425327, 1571759087.7464325, 1571759087.750332, 1571759087.754232, 1571759087.7581315, 1571759087.7620313, 1571759087.765931, 1571759087.7698307, 1571759087.7737305, 1571759087.77763, 1571759087.78153, 1571759087.7854295, 1571759087.7893293, 1571759087.793229, 1571759087.7971287, 1571759087.8010285, 1571759087.804928, 1571759087.8088279, 1571759087.8127275, 1571759087.8166273, 1571759087.820527, 1571759087.8244267, 1571759087.8283265, 1571759087.832226, 1571759087.8361259, 1571759087.8400254, 1571759087.8439252, 1571759087.847825, 1571759087.8517246, 1571759087.8556244, 1571759087.859524, 1571759087.8634238, 1571759087.8673234, 1571759087.8712232, 1571759087.875123, 1571759087.8790226, 1571759087.8829224, 1571759087.886822, 1571759087.8907218, 1571759087.8946216, 1571759087.8985212, 1571759087.902421, 1571759087.9063206, 1571759087.9102204, 1571759087.91412, 1571759087.9180198, 1571759087.9219196, 1571759087.9258192, 1571759087.929719, 1571759087.9336185, 1571759087.9375184, 1571759087.941418, 1571759087.9453177, 1571759087.9492176, 1571759087.9531171, 1571759087.957017, 1571759087.9609165, 1571759087.9648163, 1571759087.968716, 1571759087.9726157, 1571759087.9765155, 1571759087.980415, 1571759087.984315, 1571759087.9882145, 1571759087.9921143, 1571759087.996014, 1571759087.9999137, 1571759088.0038135, 1571759088.007713, 1571759088.011613, 1571759088.0155125, 1571759088.0194123, 1571759088.023312, 1571759088.0272117, 1571759088.0311115, 1571759088.035011, 1571759088.0389109, 1571759088.0428104, 1571759088.0467103, 1571759088.05061, 1571759088.0545096, 1571759088.0584095, 1571759088.062309, 1571759088.0662088, 1571759088.0701084, 1571759088.0740082, 1571759088.077908, 1571759088.0818076, 1571759088.0857074, 1571759088.089607, 1571759088.0935068, 1571759088.0974066, 1571759088.1013062, 1571759088.105206, 1571759088.1091056, 1571759088.1130054, 1571759088.116905, 1571759088.1208048, 1571759088.1247046, 1571759088.1286042, 1571759088.132504, 1571759088.1364036, 1571759088.1403034, 1571759088.144203, 1571759088.1481028, 1571759088.1520026, 1571759088.1559021, 1571759088.159802, 1571759088.1637015, 1571759088.1676013, 1571759088.171501, 1571759088.1754007, 1571759088.1793005, 1571759088.1832001, 1571759088.1871, 1571759088.1909995, 1571759088.1948993, 1571759088.1987991, 1571759088.2026987, 1571759088.2065985, 1571759088.210498, 1571759088.214398, 1571759088.2182975, 1571759088.2221973, 1571759088.226097, 1571759088.2299967, 1571759088.2338965, 1571759088.237796, 1571759088.241696, 1571759088.2455955, 1571759088.2494953, 1571759088.253395, 1571759088.2572947, 1571759088.2611945, 1571759088.265094, 1571759088.2689939, 1571759088.2728934, 1571759088.2767932, 1571759088.280693, 1571759088.2845926, 1571759088.2884924, 1571759088.292392, 1571759088.2962918, 1571759088.3001914, 1571759088.3040912, 1571759088.307991, 1571759088.3118906, 1571759088.3157904, 1571759088.31969, 1571759088.3235898, 1571759088.3274896, 1571759088.3313892, 1571759088.335289, 1571759088.3391886, 1571759088.3430884, 1571759088.346988, 1571759088.3508878, 1571759088.3547876, 1571759088.3586872, 1571759088.362587, 1571759088.3664865, 1571759088.3703864, 1571759088.374286, 1571759088.3781857, 1571759088.3820856, 1571759088.3859851, 1571759088.389885, 1571759088.3937845, 1571759088.3976843, 1571759088.401584, 1571759088.4054837, 1571759088.4093835, 1571759088.413283, 1571759088.417183, 1571759088.4210825, 1571759088.4249823, 1571759088.4288821, 1571759088.4327817, 1571759088.4366815, 1571759088.440581, 1571759088.444481, 1571759088.4483805, 1571759088.4522803, 1571759088.45618, 1571759088.4600797, 1571759088.4639795, 1571759088.467879, 1571759088.4717789, 1571759088.4756784, 1571759088.4795783, 1571759088.483478, 1571759088.4873776, 1571759088.4912775, 1571759088.495177, 1571759088.4990768, 1571759088.5029764, 1571759088.5068762, 1571759088.510776, 1571759088.5146756, 1571759088.5185754, 1571759088.522475, 1571759088.5263748, 1571759088.5302746, 1571759088.5341742, 1571759088.538074, 1571759088.5419736, 1571759088.5458734, 1571759088.549773, 1571759088.5536728, 1571759088.5575726, 1571759088.5614722, 1571759088.565372, 1571759088.5692716, 1571759088.5731714, 1571759088.577071, 1571759088.5809708, 1571759088.5848706, 1571759088.5887702, 1571759088.59267, 1571759088.5965695, 1571759088.6004694, 1571759088.604369, 1571759088.6082687, 1571759088.6121686, 1571759088.6160681, 1571759088.619968, 1571759088.6238675, 1571759088.6277673, 1571759088.6316671, 1571759088.6355667, 1571759088.6394665, 1571759088.643366, 1571759088.647266, 1571759088.6511655, 1571759088.6550653, 1571759088.658965, 1571759088.6628647, 1571759088.6667645, 1571759088.670664, 1571759088.674564, 1571759088.6784635, 1571759088.6823633, 1571759088.686263, 1571759088.6901627, 1571759088.6940625, 1571759088.697962, 1571759088.7018619, 1571759088.7057614, 1571759088.7096612, 1571759088.713561, 1571759088.7174606, 1571759088.7213604, 1571759088.72526, 1571759088.7291598, 1571759088.7330596, 1571759088.7369592, 1571759088.740859, 1571759088.7447586, 1571759088.7486584, 1571759088.752558, 1571759088.7564578, 1571759088.7603576, 1571759088.7642572, 1571759088.768157, 1571759088.7720566, 1571759088.7759564, 1571759088.779856, 1571759088.7837558, 1571759088.7876556, 1571759088.7915552, 1571759088.795455, 1571759088.7993546, 1571759088.8032544, 1571759088.807154, 1571759088.8110538, 1571759088.8149536, 1571759088.8188531, 1571759088.822753, 1571759088.8266525, 1571759088.8305523, 1571759088.8344522, 1571759088.8383517, 1571759088.8422515, 1571759088.846151, 1571759088.850051, 1571759088.8539505, 1571759088.8578503, 1571759088.8617501, 1571759088.8656497, 1571759088.8695495, 1571759088.873449, 1571759088.877349, 1571759088.8812485, 1571759088.8851483, 1571759088.889048, 1571759088.8929477, 1571759088.8968475, 1571759088.900747, 1571759088.9046469, 1571759088.9085464, 1571759088.9124463, 1571759088.916346, 1571759088.9202456, 1571759088.9241455, 1571759088.928045, 1571759088.9319448, 1571759088.9358447, 1571759088.9397442, 1571759088.943644, 1571759088.9475436, 1571759088.9514434, 1571759088.955343, 1571759088.9592428, 1571759088.9631426, 1571759088.9670422, 1571759088.970942, 1571759088.9748416, 1571759088.9787414, 1571759088.982641, 1571759088.9865408, 1571759088.9904406, 1571759088.9943402, 1571759088.99824, 1571759089.0021396, 1571759089.0060394, 1571759089.009939, 1571759089.0138388, 1571759089.0177386, 1571759089.0216382, 1571759089.025538, 1571759089.0294375, 1571759089.0333374, 1571759089.0372372, 1571759089.0411367, 1571759089.0450366, 1571759089.0489361, 1571759089.052836, 1571759089.0567355, 1571759089.0606353, 1571759089.0645351, 1571759089.0684347, 1571759089.0723345, 1571759089.076234, 1571759089.080134, 1571759089.0840335, 1571759089.0879333, 1571759089.091833, 1571759089.0957327, 1571759089.0996325, 1571759089.103532, 1571759089.107432, 1571759089.1113315, 1571759089.1152313, 1571759089.119131, 1571759089.1230307, 1571759089.1269305, 1571759089.13083, 1571759089.1347299, 1571759089.1386297, 1571759089.1425292, 1571759089.146429, 1571759089.1503286, 1571759089.1542284, 1571759089.158128, 1571759089.1620278, 1571759089.1659276, 1571759089.1698272, 1571759089.173727, 1571759089.1776266, 1571759089.1815264, 1571759089.185426, 1571759089.1893258, 1571759089.1932256, 1571759089.1971252, 1571759089.201025, 1571759089.2049246, 1571759089.2088244, 1571759089.212724, 1571759089.2166238, 1571759089.2205236, 1571759089.2244232, 1571759089.228323, 1571759089.2322226, 1571759089.2361224, 1571759089.2400222, 1571759089.2439218, 1571759089.2478216, 1571759089.2517211, 1571759089.255621, 1571759089.2595205, 1571759089.2634203, 1571759089.2673202, 1571759089.2712197, 1571759089.2751195, 1571759089.279019, 1571759089.282919, 1571759089.2868185, 1571759089.2907183, 1571759089.2946181, 1571759089.2985177, 1571759089.3024175, 1571759089.306317, 1571759089.310217, 1571759089.3141165, 1571759089.3180163, 1571759089.321916, 1571759089.3258157, 1571759089.3297155, 1571759089.333615, 1571759089.3375149, 1571759089.3414147, 1571759089.3453143, 1571759089.349214, 1571759089.3531137, 1571759089.3570135, 1571759089.360913, 1571759089.3648129, 1571759089.3687127, 1571759089.3726122, 1571759089.376512, 1571759089.3804116, 1571759089.3843114, 1571759089.388211, 1571759089.3921108, 1571759089.3960106, 1571759089.3999102, 1571759089.40381, 1571759089.4077096, 1571759089.4116094, 1571759089.415509, 1571759089.4194088, 1571759089.4233086, 1571759089.4272082, 1571759089.431108, 1571759089.4350076, 1571759089.4389074, 1571759089.4428072, 1571759089.4467068, 1571759089.4506066, 1571759089.4545062, 1571759089.458406, 1571759089.4623055, 1571759089.4662054, 1571759089.4701052, 1571759089.4740047, 1571759089.4779046, 1571759089.4818041, 1571759089.485704, 1571759089.4896035, 1571759089.4935033, 1571759089.4974031, 1571759089.5013027, 1571759089.5052025, 1571759089.509102, 1571759089.513002, 1571759089.5169015, 1571759089.5208013, 1571759089.524701, 1571759089.5286007, 1571759089.5325005, 1571759089.5364, 1571759089.5403, 1571759089.5441997, 1571759089.5480993, 1571759089.551999, 1571759089.5558987, 1571759089.5597985, 1571759089.563698, 1571759089.5675979, 1571759089.5714977, 1571759089.5753973, 1571759089.579297, 1571759089.5831966, 1571759089.5870965, 1571759089.590996, 1571759089.5948958, 1571759089.5987957, 1571759089.6026952, 1571759089.606595, 1571759089.6104946, 1571759089.6143944, 1571759089.618294, 1571759089.6221938, 1571759089.6260936, 1571759089.6299932, 1571759089.633893, 1571759089.6377926, 1571759089.6416924, 1571759089.6455922, 1571759089.6494918, 1571759089.6533916, 1571759089.6572912, 1571759089.661191, 1571759089.6650906, 1571759089.6689904, 1571759089.6728902, 1571759089.6767898, 1571759089.6806896, 1571759089.6845891, 1571759089.688489, 1571759089.6923885, 1571759089.6962883, 1571759089.7001882, 1571759089.7040877, 1571759089.7079875, 1571759089.7118871, 1571759089.715787, 1571759089.7196865, 1571759089.7235863, 1571759089.7274861, 1571759089.7313857, 1571759089.7352855, 1571759089.739185, 1571759089.743085, 1571759089.7469847, 1571759089.7508843, 1571759089.754784, 1571759089.7586837, 1571759089.7625835, 1571759089.766483, 1571759089.770383, 1571759089.7742827, 1571759089.7781823, 1571759089.782082, 1571759089.7859817, 1571759089.7898815, 1571759089.793781, 1571759089.7976809, 1571759089.8015807, 1571759089.8054802, 1571759089.80938, 1571759089.8132796, 1571759089.8171794, 1571759089.821079, 1571759089.8249788, 1571759089.8288786, 1571759089.8327782, 1571759089.836678, 1571759089.8405776, 1571759089.8444774, 1571759089.8483772, 1571759089.8522768, 1571759089.8561766, 1571759089.8600762, 1571759089.863976, 1571759089.8678756, 1571759089.8717754, 1571759089.8756752, 1571759089.8795748, 1571759089.8834746, 1571759089.8873742, 1571759089.891274, 1571759089.8951735, 1571759089.8990734, 1571759089.9029732, 1571759089.9068727, 1571759089.9107726, 1571759089.9146721, 1571759089.918572, 1571759089.9224715, 1571759089.9263713, 1571759089.9302711, 1571759089.9341707, 1571759089.9380705, 1571759089.94197, 1571759089.94587, 1571759089.9497697, 1571759089.9536693, 1571759089.9575691, 1571759089.9614687, 1571759089.9653685, 1571759089.969268, 1571759089.973168, 1571759089.9770677, 1571759089.9809673, 1571759089.984867, 1571759089.9887667, 1571759089.9926665, 1571759089.996566, 1571759090.0004659, 1571759090.0043657, 1571759090.0082653, 1571759090.012165, 1571759090.0160646, 1571759090.0199645, 1571759090.023864, 1571759090.0277638, 1571759090.0316637, 1571759090.0355632, 1571759090.039463, 1571759090.0433626, 1571759090.0472624, 1571759090.0511622, 1571759090.0550618, 1571759090.0589616, 1571759090.0628612, 1571759090.066761, 1571759090.0706606, 1571759090.0745604, 1571759090.0784602, 1571759090.0823598, 1571759090.0862596, 1571759090.0901592, 1571759090.094059, 1571759090.0979586, 1571759090.1018584, 1571759090.1057582, 1571759090.1096578, 1571759090.1135576, 1571759090.1174572, 1571759090.121357, 1571759090.1252565, 1571759090.1291564, 1571759090.1330562, 1571759090.1369557, 1571759090.1408556, 1571759090.1447551, 1571759090.148655, 1571759090.1525548, 1571759090.1564543, 1571759090.1603541, 1571759090.1642537, 1571759090.1681535, 1571759090.172053, 1571759090.175953, 1571759090.1798527, 1571759090.1837523, 1571759090.187652, 1571759090.1915517, 1571759090.1954515, 1571759090.199351, 1571759090.203251, 1571759090.2071507, 1571759090.2110503, 1571759090.21495, 1571759090.2188497, 1571759090.2227495, 1571759090.226649, 1571759090.2305489, 1571759090.2344487, 1571759090.2383482, 1571759090.242248, 1571759090.2461476, 1571759090.2500474, 1571759090.2539473, 1571759090.2578468, 1571759090.2617466, 1571759090.2656462, 1571759090.269546, 1571759090.2734456, 1571759090.2773454, 1571759090.2812452, 1571759090.2851448, 1571759090.2890446, 1571759090.2929442, 1571759090.296844, 1571759090.3007436, 1571759090.3046434, 1571759090.3085432, 1571759090.3124428, 1571759090.3163426, 1571759090.3202422, 1571759090.324142, 1571759090.3280416, 1571759090.3319414, 1571759090.3358412, 1571759090.3397408, 1571759090.3436406, 1571759090.3475401, 1571759090.35144, 1571759090.3553398, 1571759090.3592393, 1571759090.3631392, 1571759090.3670387, 1571759090.3709385, 1571759090.374838, 1571759090.378738, 1571759090.3826377, 1571759090.3865373, 1571759090.3904371, 1571759090.3943367, 1571759090.3982365, 1571759090.402136, 1571759090.406036, 1571759090.4099357, 1571759090.4138353, 1571759090.417735, 1571759090.4216347, 1571759090.4255345, 1571759090.429434, 1571759090.4333339, 1571759090.4372337, 1571759090.4411333, 1571759090.445033, 1571759090.4489326, 1571759090.4528325, 1571759090.4567323, 1571759090.4606318, 1571759090.4645317, 1571759090.4684312, 1571759090.472331, 1571759090.4762306, 1571759090.4801304, 1571759090.4840302, 1571759090.4879298, 1571759090.4918296, 1571759090.4957292, 1571759090.499629, 1571759090.5035286, 1571759090.5074284, 1571759090.5113282, 1571759090.5152278, 1571759090.5191276, 1571759090.5230272, 1571759090.526927, 1571759090.5308266, 1571759090.5347264, 1571759090.5386262, 1571759090.5425258, 1571759090.5464256, 1571759090.5503252, 1571759090.554225, 1571759090.5581248, 1571759090.5620244, 1571759090.5659242, 1571759090.5698237, 1571759090.5737236, 1571759090.5776231, 1571759090.581523, 1571759090.5854228, 1571759090.5893223, 1571759090.5932221, 1571759090.5971217, 1571759090.6010215, 1571759090.604921, 1571759090.608821, 1571759090.6127207, 1571759090.6166203, 1571759090.62052, 1571759090.6244197, 1571759090.6283195, 1571759090.632219, 1571759090.636119, 1571759090.6400187, 1571759090.6439183, 1571759090.647818, 1571759090.6517177, 1571759090.6556175, 1571759090.6595173, 1571759090.6634169, 1571759090.6673167, 1571759090.6712162, 1571759090.675116, 1571759090.6790156, 1571759090.6829154, 1571759090.6868153, 1571759090.6907148, 1571759090.6946146, 1571759090.6985142, 1571759090.702414, 1571759090.7063136, 1571759090.7102134, 1571759090.7141132, 1571759090.7180128, 1571759090.7219126, 1571759090.7258122, 1571759090.729712, 1571759090.7336116, 1571759090.7375114, 1571759090.7414112, 1571759090.7453108, 1571759090.7492106, 1571759090.7531102, 1571759090.75701, 1571759090.7609098, 1571759090.7648094, 1571759090.7687092, 1571759090.7726088, 1571759090.7765086, 1571759090.7804081, 1571759090.784308, 1571759090.7882078, 1571759090.7921073, 1571759090.7960072, 1571759090.7999067, 1571759090.8038065, 1571759090.807706, 1571759090.811606, 1571759090.8155057, 1571759090.8194053, 1571759090.8233051, 1571759090.8272047, 1571759090.8311045, 1571759090.835004, 1571759090.838904, 1571759090.8428037, 1571759090.8467033, 1571759090.850603, 1571759090.8545027, 1571759090.8584025, 1571759090.8623023, 1571759090.8662019, 1571759090.8701017, 1571759090.8740013, 1571759090.877901, 1571759090.8818007, 1571759090.8857005, 1571759090.8896003, 1571759090.8934999, 1571759090.8973997, 1571759090.9012992, 1571759090.905199, 1571759090.9090986, 1571759090.9129984, 1571759090.9168983, 1571759090.9207978, 1571759090.9246976, 1571759090.9285972, 1571759090.932497, 1571759090.9363966, 1571759090.9402964, 1571759090.9441962, 1571759090.9480958, 1571759090.9519956, 1571759090.9558952, 1571759090.959795, 1571759090.9636948, 1571759090.9675944, 1571759090.9714942, 1571759090.9753938, 1571759090.9792936, 1571759090.9831932, 1571759090.987093, 1571759090.9909928, 1571759090.9948924, 1571759090.9987922, 1571759091.0026917, 1571759091.0065916, 1571759091.0104911, 1571759091.014391, 1571759091.0182908, 1571759091.0221903, 1571759091.0260901, 1571759091.0299897, 1571759091.0338895, 1571759091.037789, 1571759091.041689, 1571759091.0455887, 1571759091.0494883, 1571759091.053388, 1571759091.0572877, 1571759091.0611875, 1571759091.0650873, 1571759091.068987, 1571759091.0728867, 1571759091.0767863, 1571759091.080686, 1571759091.0845857, 1571759091.0884855, 1571759091.0923853, 1571759091.0962849, 1571759091.1001847, 1571759091.1040843, 1571759091.107984, 1571759091.1118836, 1571759091.1157835, 1571759091.1196833, 1571759091.1235828, 1571759091.1274827, 1571759091.1313822, 1571759091.135282, 1571759091.1391816, 1571759091.1430814, 1571759091.1469812, 1571759091.1508808, 1571759091.1547806, 1571759091.1586802, 1571759091.16258, 1571759091.1664798, 1571759091.1703794, 1571759091.1742792, 1571759091.1781788, 1571759091.1820786, 1571759091.1859782, 1571759091.189878, 1571759091.1937778, 1571759091.1976774, 1571759091.2015772, 1571759091.2054768, 1571759091.2093766, 1571759091.2132761, 1571759091.217176, 1571759091.2210758, 1571759091.2249753, 1571759091.2288752, 1571759091.2327747, 1571759091.2366745, 1571759091.2405741, 1571759091.244474, 1571759091.2483737, 1571759091.2522733, 1571759091.2561731, 1571759091.2600727, 1571759091.2639725, 1571759091.2678723, 1571759091.271772, 1571759091.2756717, 1571759091.2795713, 1571759091.283471, 1571759091.2873707, 1571759091.2912705, 1571759091.2951703, 1571759091.29907, 1571759091.3029697, 1571759091.3068693, 1571759091.310769, 1571759091.3146687, 1571759091.3185685, 1571759091.3224683, 1571759091.3263679, 1571759091.3302677, 1571759091.3341672, 1571759091.338067, 1571759091.3419666, 1571759091.3458664, 1571759091.3497663, 1571759091.3536658, 1571759091.3575656, 1571759091.3614652, 1571759091.365365, 1571759091.3692648, 1571759091.3731644, 1571759091.3770642, 1571759091.3809638, 1571759091.3848636, 1571759091.3887632, 1571759091.392663, 1571759091.3965628, 1571759091.4004624, 1571759091.4043622, 1571759091.4082618, 1571759091.4121616, 1571759091.4160612, 1571759091.419961], "samples": [[836.0117797851562, 851.1760864257812, 845.0648193359375, 816.3929443359375], [864.9393310546875, 856.245361328125, 853.74462890625, 831.4955444335938], [864.7921752929688, 859.8077392578125, 865.0594482421875, 852.9431762695312], [850.9783325195312, 856.76708984375, 858.5049438476562, 838.303955078125], [828.18017578125, 851.3104858398438, 848.6962280273438, 831.2891845703125], [837.929931640625, 853.4555053710938, 858.015380859375, 849.5145263671875], [853.2662353515625, 853.480712890625, 860.7721557617188, 860.5654296875], [845.5474853515625, 854.263671875, 858.8431396484375, 852.5828857421875], [865.4691772460938, 861.2442626953125, 863.1608276367188, 858.5355834960938], [867.4100341796875, 858.7039794921875, 859.672119140625, 854.8153076171875], [854.8529663085938, 855.970703125, 858.3285522460938, 839.48291015625], [849.386474609375, 862.53369140625, 862.2665405273438, 847.0126953125], [842.2328491210938, 857.1049194335938, 849.8238525390625, 838.8093872070312], [859.813232421875, 860.832763671875, 861.0437622070312, 858.111572265625], [869.8440551757812, 863.9586181640625, 868.4303588867188, 873.6668701171875], [853.51953125, 857.92236328125, 854.4788208007812, 856.662353515625], [843.9512939453125, 859.6029663085938, 858.57861328125, 849.8284912109375], [839.342041015625, 859.3568725585938, 866.0768432617188, 858.2195434570312], [829.19873046875, 861.073974609375, 862.6565551757812, 841.2896728515625], [822.27587890625, 863.9953002929688, 861.23779296875, 830.0035400390625], [824.2718505859375, 861.0200805664062, 856.2714233398438, 817.7325439453125], [838.3014526367188, 864.8449096679688, 856.3751831054688, 824.4984741210938], [839.0374755859375, 859.7838745117188, 849.1007080078125, 820.5176391601562], [834.8211669921875, 852.364990234375, 842.9366455078125, 809.3898315429688], [855.7538452148438, 857.458984375, 855.3640747070312, 829.2225952148438], [853.3323974609375, 857.503173828125, 863.7896118164062, 850.8385620117188], [845.496826171875, 855.3671264648438, 867.3626098632812, 847.61279296875], [821.78369140625, 848.8099975585938, 853.748046875, 822.494140625], [807.2577514648438, 848.4805297851562, 849.703857421875, 817.564697265625], [832.2442016601562, 851.206787109375, 849.6659545898438, 811.955810546875], [831.096923828125, 844.6412353515625, 841.0510864257812, 801.83740234375], [843.3305053710938, 848.1688842773438, 847.2823486328125, 807.2058715820312], [872.5700073242188, 855.5686645507812, 856.1448974609375, 830.5542602539062], [851.6126098632812, 849.5157470703125, 851.5101928710938, 836.9396362304688], [828.4153442382812, 855.8344116210938, 857.2425537109375, 847.49755859375], [818.4934692382812, 853.6329956054688, 844.1935424804688, 817.2481079101562], [809.4644775390625, 848.8270874023438, 836.8145751953125, 805.1763305664062], [828.7979125976562, 856.09423828125, 851.3284912109375, 837.7451782226562], [828.7706909179688, 853.7691650390625, 851.7469482421875, 827.6355590820312], [822.9571533203125, 850.42138671875, 846.8944702148438, 820.0506591796875], [841.27880859375, 851.56201171875, 849.2167358398438, 838.8506469726562], [852.5491943359375, 853.7139282226562, 855.128173828125, 836.2787475585938], [836.3922729492188, 854.2665405273438, 849.2507934570312, 814.2653198242188], [837.5233154296875, 849.4254760742188, 844.0096435546875, 812.7772216796875], [854.285400390625, 848.4017944335938, 843.808837890625, 829.9586791992188], [836.5816040039062, 852.4979858398438, 849.9485473632812, 840.7293701171875], [828.38330078125, 850.4591064453125, 845.8737182617188, 844.4972534179688], [848.889404296875, 851.8812866210938, 840.57568359375, 838.511962890625], [849.4555053710938, 851.558837890625, 843.2660522460938, 823.7705078125], [852.6581420898438, 856.367919921875, 849.8876953125, 836.890869140625], [856.7443237304688, 853.7761840820312, 845.5632934570312, 836.3278198242188], [824.7308349609375, 846.3623657226562, 838.6594848632812, 821.6331787109375], [834.9924926757812, 852.2245483398438, 849.3900756835938, 845.3171997070312], [837.4118041992188, 855.317626953125, 850.7452392578125, 855.8861694335938], [827.9527587890625, 853.7958984375, 845.6218872070312, 832.2896118164062], [843.376708984375, 862.4566040039062, 860.0792236328125, 842.0847778320312], [848.67529296875, 862.3099365234375, 860.4228515625, 852.9959106445312], [849.250732421875, 862.27734375, 856.9613647460938, 856.6845703125], [823.3336791992188, 855.4223022460938, 850.8250122070312, 843.2288208007812], [834.2814331054688, 850.0703125, 848.0292358398438, 840.904541015625], [838.5172119140625, 853.8877563476562, 850.5060424804688, 861.2116088867188], [827.8914184570312, 850.0828247070312, 844.7081298828125, 843.2867431640625], [853.497314453125, 849.8287963867188, 850.9330444335938, 842.4122314453125], [844.9223022460938, 853.5900268554688, 853.382568359375, 849.5258178710938], [831.9364624023438, 857.0084838867188, 853.30517578125, 842.9334106445312], [835.8671875, 851.3821411132812, 849.604248046875, 821.3736572265625], [812.4265747070312, 845.7484130859375, 840.83056640625, 808.2907104492188], [816.0491333007812, 850.3034057617188, 845.8525390625, 828.0575561523438], [831.8395385742188, 849.8646240234375, 846.7857055664062, 827.6287841796875], [833.9970092773438, 843.3541870117188, 840.4932861328125, 821.9710083007812], [837.8699951171875, 843.8379516601562, 840.3548583984375, 833.2033081054688], [826.2031860351562, 844.2124633789062, 840.4700927734375, 828.2815551757812], [840.3558349609375, 848.9205322265625, 847.976318359375, 833.1904296875], [828.8021240234375, 847.4552001953125, 846.0087890625, 833.920654296875], [819.2638549804688, 843.72705078125, 841.8358154296875, 831.4310913085938], [847.2525024414062, 851.4346313476562, 854.4280395507812, 837.2316284179688], [838.3990478515625, 851.2264404296875, 853.0755615234375, 833.3443603515625], [822.6431274414062, 843.8238525390625, 845.7526245117188, 823.4492797851562], [832.6658325195312, 844.0220336914062, 845.4345703125, 814.423583984375], [837.2835693359375, 850.613037109375, 852.614501953125, 836.6256713867188], [851.67431640625, 848.4546508789062, 853.6996459960938, 853.0040283203125], [837.2247924804688, 841.2438354492188, 841.9478759765625, 835.0423583984375], [834.7396850585938, 842.4144287109375, 841.3826904296875, 845.5620727539062], [845.2655029296875, 844.2801513671875, 845.302490234375, 853.383544921875], [826.2213134765625, 840.0469970703125, 840.1539306640625, 839.2106323242188], [826.4896240234375, 845.6187133789062, 849.1067504882812, 838.1943969726562], [841.261962890625, 848.3533325195312, 854.0155639648438, 846.4907836914062], [849.60009765625, 844.5916748046875, 853.1090087890625, 852.9078979492188], [839.3987426757812, 844.6458129882812, 851.86572265625, 832.7835083007812], [827.6103515625, 842.685546875, 842.9696655273438, 831.4164428710938], [835.46240234375, 841.2023315429688, 840.9679565429688, 841.5108032226562], [838.2247314453125, 844.975341796875, 843.260986328125, 840.026123046875], [835.6239013671875, 846.92724609375, 846.2534790039062, 848.9912719726562], [842.4715576171875, 849.0839233398438, 849.3712158203125, 859.323486328125], [840.2489624023438, 847.765625, 847.1552124023438, 867.8893432617188], [846.0042114257812, 849.9354858398438, 848.5230712890625, 860.9497680664062], [847.6456298828125, 852.7417602539062, 845.13671875, 850.18115234375], [841.645263671875, 847.4877319335938, 836.6404418945312, 843.4853515625], [848.064697265625, 856.525634765625, 851.3533325195312, 850.0087280273438], [851.2412109375, 853.9119873046875, 847.7898559570312, 826.6531982421875], [845.0217895507812, 848.5468139648438, 847.5135498046875, 830.6766967773438], [854.2146606445312, 853.8571166992188, 858.1008911132812, 842.0105590820312], [864.9512329101562, 851.9092407226562, 853.232666015625, 843.6228637695312], [864.999755859375, 853.3348388671875, 858.4193725585938, 846.9876708984375], [857.9398803710938, 846.36279296875, 846.4971313476562, 850.8529052734375], [821.0961303710938, 840.5276489257812, 836.5881958007812, 843.8114624023438], [821.99609375, 847.56787109375, 849.283447265625, 843.6785278320312], [823.5963134765625, 842.4998779296875, 845.6944580078125, 837.873291015625], [825.908203125, 841.134521484375, 839.7774047851562, 845.2344970703125], [849.6195678710938, 846.438720703125, 848.8680419921875, 852.482421875], [873.5795288085938, 853.5790405273438, 859.4163208007812, 866.6064453125], [860.8450927734375, 847.8600463867188, 847.3042602539062, 872.5225219726562], [834.1422119140625, 842.3992309570312, 836.2557373046875, 832.13818359375], [842.94970703125, 851.6030883789062, 847.024169921875, 832.5847778320312], [849.616943359375, 851.216552734375, 844.3753662109375, 823.729248046875], [848.4623413085938, 850.3910522460938, 838.5138549804688, 813.6337280273438], [871.7024536132812, 852.5582275390625, 840.9728393554688, 831.7923583984375], [862.7301635742188, 849.1988525390625, 837.107421875, 842.5554809570312], [869.2291259765625, 849.8367919921875, 842.101806640625, 858.078857421875], [857.4537963867188, 854.6729736328125, 848.4107666015625, 857.2581787109375], [827.2658081054688, 846.7015991210938, 834.1040649414062, 822.5068359375], [852.3551025390625, 850.9739379882812, 842.0100708007812, 844.080810546875], [863.0110473632812, 859.6989135742188, 849.5240478515625, 846.6844482421875], [856.7429809570312, 858.1566772460938, 842.0912475585938, 838.297119140625], [846.5659790039062, 854.3357543945312, 840.9371948242188, 859.584228515625], [871.9317626953125, 862.4689331054688, 855.0482788085938, 855.6727905273438], [879.8810424804688, 868.490478515625, 861.6172485351562, 850.8085327148438], [854.5023803710938, 861.4059448242188, 848.478515625, 847.8624267578125], [869.9183349609375, 860.9295654296875, 844.7117309570312, 841.9766235351562], [880.21826171875, 863.0704345703125, 843.9623413085938, 853.5780639648438], [867.8234252929688, 861.1940307617188, 839.4871215820312, 866.8367919921875], [861.0751342773438, 856.388427734375, 835.3606567382812, 860.37451171875], [853.3428955078125, 860.3786010742188, 845.3704833984375, 861.789306640625], [870.3594360351562, 861.3436889648438, 852.2247314453125, 853.8260498046875], [875.18701171875, 861.0027465820312, 850.7095947265625, 856.1380004882812], [844.9651489257812, 853.8446655273438, 835.8123779296875, 832.5533447265625], [853.7496948242188, 854.14794921875, 842.878662109375, 836.9515991210938], [860.9373779296875, 856.2583618164062, 844.2094116210938, 840.0777587890625], [837.6282958984375, 850.393798828125, 828.2831420898438, 827.5415649414062], [839.5607299804688, 856.4581298828125, 840.3472900390625, 834.9461059570312], [850.3595581054688, 857.9109497070312, 839.5474853515625, 841.2881469726562], [855.5631103515625, 859.3057861328125, 837.1858520507812, 850.9426879882812], [853.1620483398438, 857.5162353515625, 833.541259765625, 847.0084838867188], [840.7808837890625, 846.222900390625, 818.9686279296875, 833.5762329101562], [859.7224731445312, 849.5446166992188, 830.6768798828125, 840.9780883789062], [847.3211059570312, 852.6987915039062, 830.7312622070312, 845.710693359375], [843.0314331054688, 850.1651611328125, 825.9044799804688, 832.21435546875], [846.1646118164062, 854.2977905273438, 834.4789428710938, 847.97021484375], [837.1080322265625, 859.9978637695312, 841.49658203125, 855.6468505859375], [845.2073974609375, 863.5350952148438, 843.7739868164062, 842.4395141601562], [833.4730224609375, 854.0618896484375, 827.7352905273438, 824.6314086914062], [837.8502197265625, 853.7174682617188, 828.2009887695312, 831.3878784179688], [841.6557006835938, 858.169189453125, 835.9046020507812, 834.0509643554688], [843.5294799804688, 860.5607299804688, 835.4036865234375, 831.76513671875], [844.748046875, 859.7638549804688, 836.6647338867188, 843.093994140625], [840.9025268554688, 855.80029296875, 840.2902221679688, 842.5257568359375], [848.5053100585938, 861.0208129882812, 846.7530517578125, 833.6051025390625], [856.8546752929688, 862.6580810546875, 847.7747192382812, 837.4896240234375], [834.1853637695312, 849.6992797851562, 831.7138061523438, 828.8075561523438], [843.1270751953125, 853.6762084960938, 834.9984130859375, 829.2305297851562], [841.4578857421875, 859.7903442382812, 840.28759765625, 835.0250854492188], [834.5303955078125, 854.688720703125, 829.2435913085938, 824.5518798828125], [839.5179443359375, 855.9154052734375, 830.7325439453125, 839.6001586914062], [832.4000854492188, 858.6398315429688, 836.1593017578125, 838.68310546875], [836.1633911132812, 858.781494140625, 835.7801513671875, 841.8047485351562], [843.223876953125, 853.2691040039062, 827.6005249023438, 848.4839477539062], [824.7969970703125, 847.073486328125, 817.1378784179688, 826.86083984375], [829.5076904296875, 846.3931274414062, 816.6162719726562, 819.6591796875], [843.169189453125, 840.9092407226562, 807.1790161132812, 811.082763671875], [837.7769165039062, 841.3944702148438, 807.7554321289062, 816.04443359375], [831.7337646484375, 846.0857543945312, 825.0169067382812, 831.6343994140625], [828.2897338867188, 844.811767578125, 829.060546875, 841.5867919921875], [834.6024780273438, 845.459716796875, 829.531982421875, 845.0346069335938], [833.0069580078125, 845.9385375976562, 831.7333984375, 835.8380126953125], [833.8671875, 841.9763793945312, 826.844482421875, 835.8120727539062], [844.1119384765625, 844.6192626953125, 828.5374755859375, 846.88916015625], [855.9977416992188, 844.3521728515625, 826.0494995117188, 839.7849731445312], [852.7338256835938, 843.0930786132812, 832.7322998046875, 852.7247314453125], [841.2212524414062, 844.6832275390625, 834.709228515625, 849.6583251953125], [845.4854736328125, 846.8563842773438, 832.6801147460938, 834.7849731445312], [859.4534301757812, 849.7281494140625, 838.4345092773438, 823.3790283203125], [844.3607177734375, 842.4078369140625, 825.4244384765625, 821.19091796875], [840.5725708007812, 841.9675903320312, 826.8075561523438, 833.03076171875], [851.9934692382812, 846.2477416992188, 831.725830078125, 846.2991943359375], [839.30078125, 837.7749633789062, 821.1849365234375, 849.7364501953125], [834.3093872070312, 836.6683349609375, 820.5452880859375, 847.3297729492188], [841.3583984375, 840.9847412109375, 826.552978515625, 841.9954833984375], [867.6486206054688, 848.3165893554688, 836.6805419921875, 846.4039916992188], [859.711669921875, 840.0150146484375, 831.1671752929688, 828.9415893554688], [833.2993774414062, 829.1591796875, 823.6846313476562, 823.6829833984375], [860.1862182617188, 837.9447631835938, 832.2177124023438, 847.4074096679688], [846.8070068359375, 836.3899536132812, 827.935791015625, 834.9307250976562], [823.1113891601562, 831.989013671875, 821.2869262695312, 829.9263305664062], [849.069580078125, 842.2949829101562, 834.9255981445312, 844.295166015625], [858.2566528320312, 845.98876953125, 831.808349609375, 845.739990234375], [847.9525756835938, 841.4642944335938, 834.7603759765625, 843.8856811523438], [848.0166625976562, 840.9503784179688, 837.2001953125, 858.280029296875], [843.21728515625, 836.940673828125, 826.3368530273438, 854.1477661132812], [850.7831420898438, 839.575927734375, 836.5928344726562, 858.0470581054688], [853.6028442382812, 843.409912109375, 841.6155395507812, 853.5526123046875], [843.6006469726562, 844.4619140625, 845.7218627929688, 845.2615356445312], [845.8320922851562, 842.4689331054688, 840.55810546875, 842.0079956054688], [859.5617065429688, 843.3063354492188, 842.617919921875, 845.7333984375], [862.130859375, 851.00341796875, 855.3221435546875, 858.1112060546875], [845.3718872070312, 846.2418823242188, 838.359130859375, 849.4430541992188], [858.2139892578125, 843.7269897460938, 842.3134765625, 852.0599975585938], [867.2129516601562, 848.2643432617188, 854.4476928710938, 845.5933837890625], [837.3870239257812, 843.7172241210938, 847.1131591796875, 826.2506103515625], [836.6925048828125, 831.6156616210938, 844.9612426757812, 808.5357055664062], [826.1689453125, 832.683837890625, 858.895263671875, 821.4111328125], [822.0357666015625, 833.9788818359375, 865.2976684570312, 823.7594604492188], [821.5482788085938, 827.8966064453125, 861.3033447265625, 822.3789672851562], [805.8889770507812, 821.5797119140625, 858.316650390625, 829.8272705078125], [820.855712890625, 826.5850830078125, 865.2495727539062, 834.731201171875], [833.736572265625, 832.0178833007812, 865.688720703125, 829.9506225585938], [833.8175048828125, 828.158447265625, 858.1181030273438, 824.8619384765625], [826.03759765625, 833.528564453125, 868.7872924804688, 830.956787109375], [822.8543090820312, 840.3045043945312, 873.4860229492188, 847.5286254882812], [825.8663940429688, 837.620361328125, 866.5892944335938, 859.0215454101562], [832.5159301757812, 827.8872680664062, 855.4747924804688, 847.0327758789062], [811.3851318359375, 823.9784545898438, 845.1937866210938, 850.2133178710938], [853.396484375, 831.3699340820312, 854.1561889648438, 863.8031005859375], [871.0960693359375, 828.8970336914062, 849.8916015625, 835.0670166015625], [814.3621826171875, 830.6806640625, 853.186767578125, 828.7816772460938], [821.9197387695312, 835.63330078125, 862.1683959960938, 841.0810546875], [835.86767578125, 836.54833984375, 862.5970458984375, 831.9329833984375], [811.775634765625, 839.6343994140625, 864.831787109375, 838.4599609375], [816.1525268554688, 833.5501098632812, 846.5205688476562, 829.4653930664062], [852.1304931640625, 832.0469360351562, 841.2282104492188, 828.7105102539062], [855.987060546875, 840.0951538085938, 852.3184814453125, 831.4309692382812], [843.092529296875, 844.008056640625, 847.6375122070312, 831.0654907226562], [842.8334350585938, 839.5899047851562, 846.1634521484375, 825.1865844726562], [845.3311157226562, 840.0512084960938, 852.3324584960938, 830.7401733398438], [846.68896484375, 847.5744018554688, 854.651123046875, 854.9451293945312], [829.6563110351562, 843.4614868164062, 851.487060546875, 846.0458984375], [826.9534301757812, 834.7298583984375, 843.3184814453125, 837.5758666992188], [832.74365234375, 837.6143188476562, 844.7635498046875, 850.4879760742188], [842.026611328125, 840.2442626953125, 849.2875366210938, 843.4598388671875], [838.55712890625, 839.8770141601562, 847.4022216796875, 836.3743896484375], [845.0119018554688, 838.97509765625, 846.8497924804688, 846.0177001953125], [855.4844360351562, 836.7007446289062, 842.5015258789062, 837.947021484375], [839.9386596679688, 844.67138671875, 848.9459838867188, 841.3775024414062], [831.1138916015625, 839.8201293945312, 847.107177734375, 832.6168212890625], [827.2020874023438, 832.1373901367188, 835.615234375, 812.147216796875], [837.6533813476562, 838.7362670898438, 843.29931640625, 822.9675903320312], [828.884765625, 837.1044921875, 844.5150756835938, 823.7355346679688], [827.6376953125, 831.754638671875, 843.993896484375, 821.8197021484375], [829.1710815429688, 835.3663330078125, 852.198974609375, 838.5487670898438], [819.1766967773438, 832.6838989257812, 846.4423217773438, 824.3165283203125], [845.0634765625, 835.1071166992188, 849.274169921875, 821.62353515625], [831.1630859375, 832.633056640625, 842.9036865234375, 812.2266235351562], [835.7590942382812, 828.4921264648438, 832.5661010742188, 809.2252807617188], [844.8695678710938, 833.8079223632812, 842.1610717773438, 824.8723754882812], [810.5542602539062, 829.4301147460938, 842.9080810546875, 821.7310180664062], [814.9840698242188, 828.9815063476562, 847.9190673828125, 835.9308471679688], [821.5589599609375, 831.4445190429688, 847.7308349609375, 835.7488403320312], [820.3820190429688, 833.4757690429688, 849.76416015625, 825.2247924804688], [826.708740234375, 832.5773315429688, 845.281494140625, 825.5185546875], [816.793701171875, 826.91259765625, 836.2728881835938, 823.05029296875], [825.4183959960938, 825.9817504882812, 836.05126953125, 820.52880859375], [816.2020874023438, 828.92529296875, 841.41455078125, 830.43798828125], [805.6243286132812, 825.7078247070312, 841.5853271484375, 831.0714721679688], [842.5858154296875, 827.5415649414062, 839.8822631835938, 833.6815185546875], [840.97607421875, 831.9563598632812, 840.1767578125, 818.3458251953125], [828.2908325195312, 840.0674438476562, 849.440673828125, 825.9443359375], [842.910888671875, 839.7607421875, 845.1621704101562, 820.217041015625], [814.6405639648438, 829.58740234375, 827.2785034179688, 794.8714599609375], [814.4613647460938, 838.4601440429688, 840.3511962890625, 818.6712036132812], [816.779052734375, 839.6511840820312, 846.7059326171875, 824.33349609375], [812.7028198242188, 832.0861206054688, 840.2841186523438, 817.7985229492188], [826.65185546875, 836.59814453125, 847.6671142578125, 823.2318725585938], [845.745849609375, 845.6663818359375, 859.6395874023438, 833.183837890625], [843.3502197265625, 845.1220703125, 859.8305053710938, 840.1795043945312], [829.2151489257812, 840.193359375, 843.4461059570312, 828.4981689453125], [835.7797241210938, 842.7755126953125, 838.704833984375, 828.8812866210938], [834.4197387695312, 846.8324584960938, 846.3739624023438, 839.657958984375], [824.491943359375, 841.6049194335938, 838.5528564453125, 823.2579345703125], [822.3534545898438, 848.3701171875, 844.75341796875, 817.801513671875], [832.0217895507812, 848.3306274414062, 849.633056640625, 816.7392578125], [841.7568969726562, 846.6564331054688, 849.70849609375, 827.9348754882812], [831.4624633789062, 848.6937866210938, 846.3181762695312, 830.4521484375], [821.4848022460938, 847.632080078125, 843.68603515625, 820.5137939453125], [849.1073608398438, 851.1802978515625, 848.6065063476562, 834.065185546875], [853.6924438476562, 850.20361328125, 853.4774780273438, 836.1714477539062], [831.7185668945312, 851.8264770507812, 853.088134765625, 817.77197265625], [841.8486938476562, 853.316162109375, 856.2023315429688, 826.0347900390625], [836.4275512695312, 845.1661376953125, 852.934814453125, 836.3629760742188], [825.7923583984375, 849.6561279296875, 849.9116821289062, 837.3909301757812], [822.77685546875, 850.910400390625, 850.2135620117188, 836.7035522460938], [827.7880249023438, 844.2028198242188, 846.1229248046875, 827.1716918945312], [854.3715209960938, 852.7131958007812, 860.8101196289062, 837.1354370117188], [848.4676513671875, 849.56982421875, 858.4564819335938, 819.0396118164062], [851.3836059570312, 845.80322265625, 853.099609375, 811.1098022460938], [858.2941284179688, 850.7581176757812, 864.0462036132812, 829.6504516601562], [849.4038696289062, 854.669189453125, 865.9132690429688, 840.1065063476562], [856.4736938476562, 857.71484375, 863.0219116210938, 845.478271484375], [838.207275390625, 852.4877319335938, 858.1738891601562, 840.8272094726562], [829.8113403320312, 848.4053955078125, 853.1194458007812, 831.1546020507812], [841.952880859375, 852.5001831054688, 858.4419555664062, 839.1318969726562], [837.8392944335938, 844.711669921875, 852.4026489257812, 826.5669555664062], [817.5571899414062, 839.7145385742188, 849.4977416992188, 815.67138671875], [831.4619140625, 846.6868286132812, 862.7041625976562, 835.351318359375], [856.3285522460938, 852.791259765625, 868.802978515625, 840.822998046875], [810.7869873046875, 846.4862060546875, 854.830078125, 823.69970703125], [818.3527221679688, 845.8427124023438, 847.3722534179688, 817.3389282226562], [841.4042358398438, 852.51904296875, 850.791748046875, 823.1275024414062], [817.999755859375, 849.4835815429688, 844.7046508789062, 817.9027099609375], [819.4444580078125, 849.6613159179688, 846.693359375, 821.2942504882812], [830.279052734375, 848.3848876953125, 848.683349609375, 818.154052734375], [825.837890625, 843.208251953125, 844.1220703125, 823.0850830078125], [831.2872924804688, 844.3580322265625, 845.5850219726562, 841.5493774414062], [837.997802734375, 847.52685546875, 845.6583862304688, 834.269287109375], [831.9216918945312, 838.8275146484375, 825.6829833984375, 822.4527587890625], [843.0780639648438, 844.587158203125, 831.8607788085938, 839.2965698242188], [838.70361328125, 851.8890380859375, 839.9156494140625, 820.8214721679688], [830.50048828125, 849.0804443359375, 829.2916259765625, 806.4285888671875], [818.4259033203125, 846.5715942382812, 829.7864379882812, 797.2518310546875], [819.2841186523438, 853.6721801757812, 843.4479370117188, 807.0296630859375], [838.2825927734375, 858.9421997070312, 845.7864379882812, 821.5614013671875], [830.0491943359375, 851.0155639648438, 837.8076782226562, 817.8063354492188], [831.1527099609375, 851.0650634765625, 842.4059448242188, 833.9860229492188], [849.684326171875, 852.8659057617188, 844.6018676757812, 843.3684692382812], [847.7039184570312, 854.0459594726562, 840.2250366210938, 832.9550170898438], [832.7439575195312, 858.1658935546875, 841.63232421875, 825.2647094726562], [836.6492309570312, 866.4370727539062, 846.3899536132812, 838.8211059570312], [849.0488891601562, 873.7368774414062, 838.9505615234375, 822.2279663085938], [851.5135498046875, 880.1625366210938, 841.2703857421875, 836.6049194335938], [850.83740234375, 871.69970703125, 824.9234008789062, 827.1484985351562], [849.1422119140625, 872.9905395507812, 821.32275390625, 814.7964477539062], [856.027099609375, 879.6448974609375, 825.8029174804688, 833.8964233398438], [850.5391235351562, 872.64892578125, 811.862548828125, 822.85498046875], [844.5518188476562, 875.8466186523438, 820.544189453125, 829.6776733398438], [846.9105224609375, 876.6350708007812, 820.9425048828125, 835.6370849609375], [855.2864379882812, 875.3674926757812, 825.659423828125, 840.494384765625], [849.1539916992188, 869.2323608398438, 828.4944458007812, 829.6973266601562], [835.6752319335938, 861.130859375, 814.9863891601562, 810.2897338867188], [841.5421752929688, 867.79443359375, 820.6885986328125, 818.0670166015625], [835.6404418945312, 868.6181030273438, 820.9708251953125, 820.673095703125], [845.425537109375, 868.5574951171875, 815.2844848632812, 817.0130004882812], [844.5433349609375, 870.6187744140625, 820.0944213867188, 824.6290893554688], [850.0481567382812, 874.6831665039062, 833.1283569335938, 829.7954711914062], [862.3043212890625, 880.7432861328125, 841.7249145507812, 838.7789916992188], [837.870361328125, 869.931884765625, 828.2462158203125, 823.5257568359375], [837.0419311523438, 867.307373046875, 825.8624267578125, 823.031494140625], [841.2008056640625, 869.5690307617188, 830.8202514648438, 826.9906005859375], [833.6409301757812, 868.3965454101562, 828.591796875, 831.656005859375], [843.548095703125, 866.5156860351562, 826.6553955078125, 830.420166015625], [830.7484130859375, 864.6851806640625, 827.44580078125, 826.9136352539062], [838.3612670898438, 870.9502563476562, 827.6144409179688, 844.3009033203125], [848.1231689453125, 871.09765625, 831.0847778320312, 846.1723022460938], [822.27734375, 857.3822021484375, 819.4171142578125, 823.3838500976562], [832.8020629882812, 854.1277465820312, 817.4404296875, 822.65966796875], [855.69970703125, 860.732177734375, 833.3930053710938, 827.1748657226562], [847.1338500976562, 856.9503784179688, 829.4572143554688, 824.8738403320312], [844.24267578125, 860.0848388671875, 826.8349609375, 833.8004760742188], [861.75732421875, 865.8619995117188, 832.4293823242188, 835.1842651367188], [858.3529052734375, 869.2509155273438, 834.3058471679688, 831.9591064453125], [853.5359497070312, 866.1583251953125, 832.8739013671875, 822.1255493164062], [837.6500854492188, 857.008056640625, 825.4190673828125, 804.5403442382812], [831.5740966796875, 857.8695678710938, 826.7427368164062, 801.037353515625], [841.6611938476562, 858.7945556640625, 829.2330932617188, 818.7410278320312], [833.3909912109375, 856.548095703125, 823.4976806640625, 824.375244140625], [834.5460205078125, 859.789306640625, 828.3822021484375, 821.3894653320312], [847.1862182617188, 860.7343139648438, 833.9658813476562, 822.8714599609375], [845.643798828125, 857.2723388671875, 828.7828979492188, 815.1088256835938], [822.161376953125, 849.7474365234375, 824.0849609375, 810.671630859375], [821.4418334960938, 847.315185546875, 824.0604858398438, 820.0721435546875], [823.7393798828125, 855.963134765625, 829.2638549804688, 831.9718017578125], [823.98876953125, 853.847900390625, 827.2501831054688, 828.3883666992188], [837.763916015625, 856.9712524414062, 833.4046630859375, 836.5183715820312], [837.5043334960938, 862.0961303710938, 835.7984619140625, 825.1370239257812], [824.7039184570312, 859.2344970703125, 834.953857421875, 825.3671875], [826.5353393554688, 858.4299926757812, 835.57373046875, 832.3758544921875], [813.2091674804688, 852.426513671875, 830.5123291015625, 831.67822265625], [814.28125, 854.7312622070312, 835.6897583007812, 819.3456420898438], [821.7557983398438, 860.3027954101562, 844.8228759765625, 819.36865234375], [823.8411254882812, 852.407470703125, 833.7434692382812, 816.2432861328125], [841.8367919921875, 854.713134765625, 831.8082885742188, 797.4879760742188], [818.52734375, 857.5934448242188, 831.9309692382812, 808.8190307617188], [827.2005004882812, 862.9500122070312, 833.5762329101562, 819.6890869140625], [843.8251342773438, 863.7103881835938, 831.8139038085938, 810.17529296875], [812.0220336914062, 855.0382690429688, 819.8673706054688, 795.1539306640625], [820.3704833984375, 858.6488647460938, 827.7317504882812, 804.4606323242188], [838.2921752929688, 857.098876953125, 826.9266967773438, 814.5990600585938], [816.796630859375, 847.9580078125, 818.2506103515625, 813.9567260742188], [807.8208618164062, 849.9853515625, 825.917236328125, 819.5595703125], [833.95361328125, 859.3715209960938, 843.4285888671875, 838.4482421875], [827.7335205078125, 855.941162109375, 840.262939453125, 832.2575073242188], [823.7990112304688, 854.9281616210938, 836.1173095703125, 823.3109741210938], [838.3927612304688, 854.026611328125, 836.0448608398438, 822.8031005859375], [835.205078125, 850.2977905273438, 827.9627685546875, 839.9147338867188], [846.6072387695312, 855.0951538085938, 828.024658203125, 829.911376953125], [829.6768188476562, 856.8668212890625, 836.3993530273438, 824.3450317382812], [819.3712768554688, 856.203369140625, 836.87646484375, 830.0850830078125], [832.852294921875, 855.565673828125, 833.0328979492188, 820.7108154296875], [841.2349243164062, 858.7640380859375, 840.9705810546875, 829.8233642578125], [824.7145385742188, 851.3949584960938, 828.0977172851562, 833.8572387695312], [831.6604614257812, 846.31884765625, 819.8551635742188, 830.5768432617188], [852.3167114257812, 851.0398559570312, 827.3057861328125, 829.9476928710938], [829.0549926757812, 851.2366943359375, 827.7272338867188, 818.352294921875], [818.726318359375, 848.2832641601562, 821.1519775390625, 801.3309326171875], [827.871826171875, 848.89990234375, 824.2868041992188, 817.0534057617188], [839.2457885742188, 853.535888671875, 830.9050903320312, 815.64306640625], [832.774169921875, 853.0396118164062, 825.3746337890625, 822.9482421875], [821.0322265625, 847.7339477539062, 821.2318115234375, 823.197021484375], [824.9418334960938, 853.6957397460938, 828.1384887695312, 817.1604614257812], [828.5413208007812, 855.4306640625, 831.2315673828125, 819.2652587890625], [822.6192016601562, 851.8123168945312, 820.5491333007812, 812.2570190429688], [826.6865844726562, 856.6852416992188, 825.6581420898438, 825.2341918945312], [842.7431030273438, 858.4581909179688, 833.3538208007812, 825.21875], [845.7817993164062, 863.07373046875, 829.7876586914062, 819.9641723632812], [826.5037231445312, 860.7872314453125, 828.3091430664062, 823.6265869140625], [801.7296142578125, 853.683837890625, 824.0745239257812, 809.2628784179688], [823.7564086914062, 860.9027709960938, 833.5515747070312, 816.0949096679688], [817.4973754882812, 857.3693237304688, 832.470703125, 824.1611328125], [813.8151245117188, 853.9998779296875, 832.706298828125, 825.272216796875], [831.583251953125, 857.5916748046875, 840.6063232421875, 816.2581787109375], [833.5515747070312, 857.4567260742188, 841.8684692382812, 813.493896484375], [833.1415405273438, 864.7568969726562, 849.5243530273438, 838.2974243164062], [806.8876953125, 855.8058471679688, 831.6593627929688, 820.4315795898438], [814.2886352539062, 852.323974609375, 828.2257690429688, 821.1680297851562], [839.046630859375, 857.9351196289062, 836.0032348632812, 842.6832885742188], [821.202880859375, 854.5457153320312, 826.8297119140625, 827.7047729492188], [828.0910034179688, 848.2070922851562, 823.2244262695312, 802.9994506835938], [847.0991821289062, 845.0830688476562, 824.7249755859375, 804.4357299804688], [857.265380859375, 855.7116088867188, 832.8201293945312, 818.7695922851562], [832.624267578125, 855.282958984375, 830.8859252929688, 820.4876098632812], [823.7747192382812, 848.7085571289062, 821.8168334960938, 813.9552001953125], [843.149658203125, 854.5154418945312, 829.1553344726562, 826.3876953125], [814.491943359375, 855.7743530273438, 831.6448974609375, 823.5525512695312], [818.6290893554688, 850.5427856445312, 828.4395141601562, 808.6957397460938], [841.4960327148438, 850.97900390625, 837.9777221679688, 809.0692749023438], [840.2632446289062, 852.9595336914062, 842.6027221679688, 818.6237182617188], [845.272216796875, 863.3277587890625, 851.6663818359375, 836.3526611328125], [847.9036865234375, 863.0155029296875, 853.061279296875, 835.51513671875], [827.22216796875, 855.3753051757812, 841.3465576171875, 834.6786499023438], [839.1179809570312, 859.6064453125, 842.416748046875, 842.243408203125], [842.0565795898438, 853.3153076171875, 837.1820068359375, 829.1644287109375], [835.2447509765625, 848.6119384765625, 834.832275390625, 814.86474609375], [854.8765869140625, 859.4356079101562, 849.6879272460938, 831.274169921875], [839.9692993164062, 858.0233154296875, 844.0969848632812, 836.3141479492188], [838.8914794921875, 859.1009521484375, 843.3787231445312, 833.79736328125], [837.8668823242188, 856.7911987304688, 837.939697265625, 830.8734130859375], [822.4689331054688, 849.1927490234375, 822.5054321289062, 843.3936157226562], [822.4034423828125, 848.6410522460938, 822.5767211914062, 818.9991455078125], [825.5310668945312, 852.48046875, 822.1016235351562, 800.2518920898438], [823.585205078125, 856.7349243164062, 824.2311401367188, 809.32470703125], [825.5853881835938, 860.7791137695312, 827.0647583007812, 803.2911987304688], [834.3657836914062, 867.8870849609375, 831.4381713867188, 806.6978149414062], [840.1212158203125, 863.4051513671875, 831.1985473632812, 818.7828369140625], [835.1008911132812, 858.1563110351562, 832.6987915039062, 832.278564453125], [827.95947265625, 857.968994140625, 835.3488159179688, 833.8948364257812], [827.2130126953125, 859.8953247070312, 837.5233154296875, 828.2363891601562], [817.4407348632812, 855.9974365234375, 830.449462890625, 824.37158203125], [834.47998046875, 860.0830078125, 828.3603515625, 826.4048461914062], [839.9896240234375, 861.4486083984375, 824.1642456054688, 821.9603271484375], [826.8239135742188, 865.4258422851562, 838.2749633789062, 838.19677734375], [839.2957153320312, 867.08447265625, 841.8703002929688, 831.9979858398438], [813.1621704101562, 854.493896484375, 823.72998046875, 814.9642944335938], [804.3223266601562, 856.5209350585938, 830.0914306640625, 805.5921630859375], [816.1414794921875, 857.271240234375, 825.1212768554688, 799.7467041015625], [825.5596313476562, 849.6447143554688, 808.7786865234375, 798.850830078125], [830.3638305664062, 851.4326782226562, 817.0184936523438, 807.247314453125], [835.3707885742188, 861.2264404296875, 831.1559448242188, 824.2838745117188], [835.7376708984375, 864.5236206054688, 836.078857421875, 832.4846801757812], [806.4688720703125, 860.8180541992188, 833.48876953125, 816.5308227539062], [808.5108642578125, 860.2030639648438, 827.2447509765625, 799.9769287109375], [829.612060546875, 868.0571899414062, 837.1136474609375, 826.1549682617188], [831.4403076171875, 865.1668701171875, 836.241455078125, 823.0899658203125], [851.8595581054688, 867.5359497070312, 840.3300170898438, 828.7321166992188], [867.3665161132812, 870.7013549804688, 844.6970825195312, 836.0040283203125], [858.6466064453125, 868.4280395507812, 842.9736328125, 846.7377319335938], [851.5807495117188, 865.59326171875, 837.9088745117188, 824.833984375], [836.1398315429688, 863.85107421875, 830.3502807617188, 813.8526611328125], [818.2028198242188, 858.5653686523438, 827.556884765625, 829.4921875], [830.7327270507812, 859.1062622070312, 834.8674926757812, 825.730224609375], [817.6879272460938, 857.21826171875, 832.3616333007812, 824.1485595703125], [826.6832275390625, 856.3155517578125, 834.8291625976562, 831.0934448242188], [845.1465454101562, 855.5087890625, 835.8568115234375, 838.7908325195312], [840.9780883789062, 859.6506958007812, 836.3316040039062, 847.4784545898438], [845.4288330078125, 859.6647338867188, 837.2146606445312, 828.7332153320312], [825.4312744140625, 854.6621704101562, 831.1953735351562, 812.5427856445312], [815.8645629882812, 858.8720703125, 837.4744262695312, 816.4873046875], [819.0125732421875, 855.7985229492188, 833.6692504882812, 795.4332275390625], [804.6378784179688, 851.0755004882812, 830.3828125, 794.62744140625], [809.7403564453125, 850.6134643554688, 828.9054565429688, 811.878662109375], [831.6875610351562, 857.1036987304688, 836.3121948242188, 833.362548828125], [830.678955078125, 855.5186767578125, 840.7499389648438, 836.092529296875], [815.951171875, 846.5491333007812, 827.6353759765625, 812.345947265625], [833.1748046875, 852.7071533203125, 828.9921264648438, 814.3117065429688], [832.5610961914062, 861.1951293945312, 840.1412353515625, 834.5250244140625], [811.222900390625, 856.365234375, 828.2910766601562, 815.5572509765625], [822.6412963867188, 857.4456787109375, 822.0031127929688, 817.529541015625], [827.1312255859375, 866.3787841796875, 837.8466796875, 838.314697265625], [835.2086791992188, 861.2735595703125, 837.2960815429688, 830.959228515625], [844.9049682617188, 856.5599975585938, 836.9937133789062, 819.2903442382812], [845.2359008789062, 853.4229125976562, 831.6456909179688, 805.9501342773438], [862.1751708984375, 858.2207641601562, 838.1412963867188, 827.1375122070312], [838.5545654296875, 858.0261840820312, 839.4537963867188, 830.11474609375], [819.2203369140625, 859.123779296875, 830.4808349609375, 817.5364379882812], [825.176025390625, 860.7294311523438, 829.1581420898438, 818.6054077148438], [824.5211791992188, 857.8084716796875, 827.929931640625, 833.93701171875], [837.9825439453125, 863.5075073242188, 831.1845703125, 835.3961181640625], [859.8124389648438, 864.7955322265625, 829.4736938476562, 828.105224609375], [854.9649658203125, 857.294677734375, 819.0831298828125, 836.0125122070312], [853.5090942382812, 865.1931762695312, 830.091796875, 836.86962890625], [846.293701171875, 865.9721069335938, 829.7538452148438, 822.3195190429688], [834.44482421875, 861.2682495117188, 824.1648559570312, 815.0987548828125], [835.3966064453125, 862.7175903320312, 826.4342651367188, 824.1613159179688], [852.4658203125, 864.5809326171875, 829.299560546875, 835.2548828125], [868.2215576171875, 866.3287963867188, 831.4718627929688, 843.44189453125], [870.3379516601562, 860.7313842773438, 819.9957885742188, 839.0330810546875], [857.2049560546875, 860.3063354492188, 816.0882568359375, 834.2854614257812], [858.8464965820312, 859.8637084960938, 817.1749877929688, 822.5335083007812], [847.4273071289062, 854.6322021484375, 811.1371459960938, 809.6277465820312], [835.8352661132812, 855.5189208984375, 811.2406616210938, 814.10693359375], [835.5869140625, 853.8065185546875, 818.406982421875, 827.4179077148438], [834.71728515625, 853.683349609375, 825.2646484375, 826.3359985351562], [844.7738037109375, 855.58935546875, 827.9556274414062, 839.4003295898438], [831.4205932617188, 847.5653686523438, 817.2393188476562, 826.3017578125], [833.230712890625, 853.5982666015625, 826.7025146484375, 820.5707397460938], [849.82861328125, 855.0350952148438, 828.939453125, 834.2387084960938], [850.5413818359375, 850.1541748046875, 816.3267822265625, 824.8639526367188], [852.1522216796875, 857.2899780273438, 828.5929565429688, 838.7868041992188], [843.105712890625, 857.3777465820312, 832.186767578125, 838.0523071289062], [831.480224609375, 853.0455932617188, 824.2313232421875, 824.6392211914062], [830.8816528320312, 856.0350341796875, 824.9873657226562, 824.5110473632812], [804.1897583007812, 848.2146606445312, 814.9254760742188, 799.6866455078125], [817.3035278320312, 850.9940185546875, 818.0980224609375, 813.0639038085938], [838.211669921875, 858.307861328125, 824.05615234375, 839.7569580078125], [840.8094482421875, 854.5066528320312, 821.5253295898438, 830.1307373046875], [854.8463134765625, 855.8436889648438, 822.6676025390625, 833.9037475585938], [849.5900268554688, 858.4808959960938, 829.6132202148438, 846.53857421875], [849.927490234375, 857.961669921875, 833.0847778320312, 829.1720581054688], [834.4498291015625, 850.6737670898438, 817.355712890625, 796.711669921875], [810.4810791015625, 853.1539916992188, 823.4559326171875, 805.3720703125], [819.4619750976562, 854.9401245117188, 830.3507690429688, 806.040283203125], [827.9286499023438, 858.4052734375, 827.9034423828125, 798.101806640625], [823.5639038085938, 860.7603149414062, 832.0205688476562, 819.869140625], [842.41748046875, 857.3663330078125, 834.3941040039062, 831.7499389648438], [844.447265625, 860.185791015625, 835.4905395507812, 840.4979248046875], [849.1070556640625, 869.6198120117188, 847.4403076171875, 858.7055053710938], [830.6463623046875, 861.9171752929688, 837.8446655273438, 832.751708984375], [809.328369140625, 857.542236328125, 831.2312622070312, 817.2323608398438], [825.2384033203125, 868.4977416992188, 844.8396606445312, 822.5499267578125], [825.1748657226562, 864.48681640625, 834.6444091796875, 806.8163452148438], [825.9517822265625, 861.1337280273438, 830.9448852539062, 815.77490234375], [832.4334106445312, 863.9676513671875, 835.4295043945312, 834.1495361328125], [851.0692749023438, 869.6006469726562, 837.5786743164062, 848.7219848632812], [853.3450317382812, 863.87646484375, 834.306640625, 837.9768676757812], [805.779296875, 853.2891845703125, 822.7144165039062, 827.7146606445312], [826.6602172851562, 857.5653076171875, 825.2449340820312, 818.8007202148438], [836.9893188476562, 855.3964233398438, 830.2562255859375, 821.2252197265625], [815.6392822265625, 853.5741577148438, 828.333251953125, 814.4967651367188], [824.9774169921875, 862.2368774414062, 839.8863525390625, 814.448486328125], [834.23876953125, 862.6533813476562, 845.8729248046875, 826.4131469726562], [828.2642822265625, 858.5927734375, 841.6301879882812, 815.6112060546875], [815.4236450195312, 854.1682739257812, 832.73193359375, 809.9912109375], [827.6279296875, 854.8770751953125, 826.6707153320312, 817.7832641601562], [824.9675903320312, 856.9088745117188, 831.9270629882812, 834.853759765625], [842.2626342773438, 856.9873657226562, 830.1765747070312, 834.2815551757812], [842.2964477539062, 864.0986328125, 834.3960571289062, 830.004150390625], [837.1222534179688, 862.8912353515625, 836.3721313476562, 825.399169921875], [837.8590698242188, 861.4288330078125, 836.97314453125, 828.341552734375], [838.1283569335938, 864.5691528320312, 833.226318359375, 812.9417724609375], [841.5070190429688, 857.2026977539062, 818.8202514648438, 808.3648071289062], [835.9012451171875, 858.0247802734375, 826.9306030273438, 836.6884155273438], [833.4249267578125, 863.9307250976562, 831.7283325195312, 840.9679565429688], [839.605224609375, 857.101318359375, 823.709716796875, 828.9702758789062], [839.564453125, 859.6782836914062, 827.3583374023438, 844.4057006835938], [829.0042114257812, 865.2655029296875, 831.6704711914062, 841.7108154296875], [854.4747314453125, 868.4479370117188, 839.8003540039062, 840.5889282226562], [855.9514770507812, 865.3071899414062, 839.5208740234375, 834.6718139648438], [834.7998046875, 852.666015625, 826.1876220703125, 816.5663452148438], [841.27880859375, 854.1367797851562, 834.7905883789062, 837.0847778320312], [832.279052734375, 852.5542602539062, 833.7575073242188, 825.8670654296875], [828.2633056640625, 850.4368896484375, 822.5275268554688, 818.9586181640625], [834.5059814453125, 855.617919921875, 826.9580078125, 829.7172241210938], [841.3377685546875, 864.3062133789062, 845.2730102539062, 825.5974731445312], [852.7340087890625, 860.6294555664062, 840.6112060546875, 808.9509887695312], [836.3932495117188, 852.66748046875, 834.0026245117188, 803.2692260742188], [826.917724609375, 856.9055786132812, 836.4579467773438, 810.5164794921875], [830.718994140625, 856.4556274414062, 830.705322265625, 817.2020874023438], [821.7147216796875, 857.4735717773438, 831.5535278320312, 825.1988525390625], [821.5422973632812, 863.50244140625, 837.7625122070312, 836.9603881835938], [830.783935546875, 858.2476806640625, 840.2290649414062, 827.9457397460938], [847.8740234375, 853.7529296875, 840.1656494140625, 823.673583984375], [849.7214965820312, 856.3712158203125, 846.0579223632812, 836.9927978515625], [836.8754272460938, 852.733154296875, 836.8685913085938, 830.4547729492188], [838.8623657226562, 852.1973876953125, 832.2005615234375, 837.5946655273438], [824.4902954101562, 853.2316284179688, 830.8719482421875, 834.8230590820312], [823.1209106445312, 852.881591796875, 828.919189453125, 826.3462524414062], [823.6851806640625, 848.159912109375, 825.32421875, 804.064208984375], [815.7772827148438, 850.7028198242188, 825.9973754882812, 812.9741821289062], [843.3812255859375, 857.1708984375, 833.283935546875, 822.8837890625], [840.6697998046875, 854.1954956054688, 832.60302734375, 828.152587890625], [809.9664306640625, 848.92529296875, 821.721923828125, 839.4191284179688], [851.2135620117188, 850.8290405273438, 820.920654296875, 814.8218994140625], [829.9028930664062, 845.3603515625, 820.8258666992188, 810.0397338867188], [813.7665405273438, 840.7891845703125, 816.455078125, 807.897216796875], [835.2530517578125, 849.6919555664062, 827.4680786132812, 807.1652221679688], [815.0623779296875, 852.6203002929688, 835.1109008789062, 824.657470703125], [821.6324462890625, 852.200927734375, 839.67529296875, 846.1461181640625], [828.3563842773438, 848.2091674804688, 829.0750732421875, 839.5814819335938], [829.0243530273438, 843.0386962890625, 813.3154296875, 796.2659301757812], [826.6812133789062, 847.6907348632812, 823.74169921875, 799.955322265625], [819.3056030273438, 843.8826293945312, 822.5213012695312, 796.0648803710938], [834.2837524414062, 847.5581665039062, 825.0053100585938, 787.0761108398438], [818.7453002929688, 850.9475708007812, 837.1995849609375, 813.3941650390625], [824.0723266601562, 845.3478393554688, 836.2815551757812, 816.60009765625], [846.4585571289062, 849.2706909179688, 837.1749877929688, 838.3102416992188], [817.9815673828125, 840.0252685546875, 826.0524291992188, 812.03955078125], [797.8746337890625, 829.8426513671875, 817.1586303710938, 786.4235229492188], [810.4415283203125, 834.4013671875, 824.277587890625, 811.8377075195312], [807.4454956054688, 832.02685546875, 826.8709716796875, 812.65771484375], [805.9379272460938, 824.2709350585938, 815.6992797851562, 796.2794189453125], [814.5034790039062, 827.6141967773438, 818.4849243164062, 811.5092163085938], [827.8770751953125, 836.729736328125, 838.2673950195312, 833.8908081054688], [816.9299926757812, 835.0354614257812, 835.8848876953125, 818.0838623046875], [804.6151123046875, 833.4148559570312, 832.698974609375, 806.7413940429688], [812.737060546875, 836.0347900390625, 837.7708129882812, 818.0438842773438], [833.6802978515625, 834.2698364257812, 832.5956420898438, 815.767578125], [834.51904296875, 836.4790649414062, 829.4049682617188, 817.9180908203125], [823.2960815429688, 838.23388671875, 829.51416015625, 825.3348999023438], [828.0204467773438, 836.4490966796875, 831.156005859375, 817.3594970703125], [822.973876953125, 845.1939697265625, 846.0845336914062, 835.7833251953125], [813.56494140625, 845.097900390625, 845.4260864257812, 831.7229614257812], [796.5282592773438, 834.8331909179688, 828.6956787109375, 801.5247192382812], [809.4020385742188, 837.1351318359375, 832.3954467773438, 810.0455932617188], [815.3133544921875, 839.0194091796875, 834.5634765625, 813.7041625976562], [809.7740478515625, 837.04248046875, 829.3449096679688, 803.8299560546875], [814.3535766601562, 843.7003784179688, 838.3046875, 818.0318603515625], [820.3084106445312, 845.650146484375, 843.5147705078125, 819.4603271484375], [830.53076171875, 848.476318359375, 841.2753295898438, 824.6724853515625], [809.9850463867188, 842.5811157226562, 825.957275390625, 815.43408203125], [801.3124389648438, 840.8014526367188, 826.94091796875, 806.2376708984375], [815.9746704101562, 846.8673706054688, 835.5807495117188, 814.5928344726562], [813.41650390625, 844.7489624023438, 834.841796875, 818.8009033203125], [823.1071166992188, 848.4879150390625, 847.9873046875, 825.258056640625], [823.2391357421875, 851.18603515625, 854.5048217773438, 819.4086303710938], [824.586181640625, 847.2678833007812, 853.431640625, 832.7291870117188], [826.5641479492188, 844.8138427734375, 849.242919921875, 830.2533569335938], [787.6821899414062, 841.698974609375, 840.0725708007812, 817.8860473632812], [803.0223999023438, 844.5440063476562, 846.5690307617188, 830.2252807617188], [808.7394409179688, 848.99365234375, 846.37255859375, 837.1083984375], [797.3074340820312, 846.998046875, 839.83349609375, 819.495361328125], [832.1495971679688, 850.8109741210938, 846.3267822265625, 821.4693603515625], [831.9968872070312, 848.9263916015625, 840.539306640625, 818.4356689453125], [830.7169189453125, 854.5755615234375, 847.6661987304688, 815.6372680664062], [839.69482421875, 860.2774658203125, 853.1957397460938, 824.7357177734375], [815.472900390625, 851.1796875, 841.1317749023438, 816.396240234375], [810.6781616210938, 858.3682861328125, 853.3240356445312, 828.8272094726562], [825.9570922851562, 863.1902465820312, 851.3228759765625, 832.6317138671875], [833.34912109375, 858.0943603515625, 840.973876953125, 826.2738647460938], [835.35546875, 864.7811889648438, 846.9074096679688, 843.08203125], [858.9521484375, 874.98828125, 849.510986328125, 843.2197265625], [871.7286376953125, 882.3915405273438, 853.5736694335938, 848.2831420898438], [832.493896484375, 878.106201171875, 850.9872436523438, 845.3468627929688], [844.7823486328125, 874.5588989257812, 844.31005859375, 818.79443359375], [851.7454833984375, 879.0336303710938, 850.2689819335938, 822.454833984375], [836.651123046875, 876.3842163085938, 848.2951049804688, 817.1723022460938], [861.9344482421875, 880.720947265625, 851.6074829101562, 826.6806030273438], [835.7254638671875, 884.421142578125, 854.0407104492188, 830.8308715820312], [828.8165283203125, 887.4955444335938, 852.12109375, 831.0509643554688], [825.4008178710938, 886.463623046875, 850.361083984375, 850.7721557617188], [817.13232421875, 882.5255737304688, 850.3629760742188, 837.7572021484375], [810.7109375, 879.1731567382812, 848.0404663085938, 835.8824462890625], [852.25537109375, 880.258544921875, 854.8983154296875, 857.9066772460938], [859.2874755859375, 879.3554077148438, 860.5967407226562, 858.9678344726562], [831.6326293945312, 882.2650756835938, 862.478271484375, 846.6368408203125], [817.3723754882812, 880.2110595703125, 856.3934936523438, 829.9906005859375], [825.3134765625, 880.8056030273438, 855.4749755859375, 828.9476928710938], [842.0020141601562, 883.74853515625, 859.14892578125, 824.769775390625], [822.1129760742188, 872.4094848632812, 847.1581420898438, 806.746826171875], [849.0762939453125, 874.4054565429688, 853.77197265625, 828.4810180664062], [864.965576171875, 872.8463745117188, 856.3356323242188, 844.2954711914062], [828.7954711914062, 866.6943359375, 849.8831176757812, 821.67822265625], [814.5265502929688, 866.1723022460938, 850.3206787109375, 811.5731811523438], [835.3187255859375, 870.470703125, 859.580810546875, 826.8672485351562], [846.2440185546875, 867.2191162109375, 860.09375, 822.9675903320312], [835.4411010742188, 857.0923461914062, 847.4043579101562, 813.0928955078125], [830.8704833984375, 853.5848999023438, 847.8916015625, 825.535888671875], [814.1715698242188, 857.613037109375, 849.123779296875, 839.5787963867188], [809.9053344726562, 857.0845947265625, 845.7183837890625, 833.5130004882812], [819.7078247070312, 854.96435546875, 844.0984497070312, 818.1317749023438], [814.6111450195312, 860.628662109375, 854.745361328125, 832.3814697265625], [836.9761962890625, 862.3237915039062, 865.021240234375, 840.3485717773438], [850.5476684570312, 856.0186767578125, 863.0960693359375, 831.335693359375], [812.0760498046875, 846.088134765625, 851.6150512695312, 825.9065551757812], [808.1732788085938, 852.4882202148438, 860.7398071289062, 841.301025390625], [823.9320068359375, 858.3046264648438, 866.062744140625, 839.1090698242188], [827.7033081054688, 854.9131469726562, 858.2807006835938, 830.6585693359375], [821.576171875, 854.8972778320312, 858.2782592773438, 826.2920532226562], [835.3783569335938, 858.4819946289062, 860.97216796875, 825.6155395507812], [862.1068115234375, 860.0596313476562, 860.6383056640625, 832.1162109375], [845.3966064453125, 859.0211181640625, 855.9850463867188, 834.0479736328125], [823.9577026367188, 852.7119750976562, 842.8865356445312, 824.7944946289062], [839.3590087890625, 859.579833984375, 852.2894897460938, 838.6719360351562], [814.4725952148438, 854.9370727539062, 852.273681640625, 836.5068969726562], [792.1150512695312, 848.8858642578125, 842.971923828125, 818.6232299804688], [803.8275756835938, 851.9932250976562, 849.1881713867188, 824.2670288085938], [810.1726684570312, 851.0570068359375, 851.5344848632812, 842.6677856445312], [837.3117065429688, 857.4114990234375, 854.2001342773438, 839.9566040039062], [839.02197265625, 851.494384765625, 845.3872680664062, 831.9387817382812], [825.7197265625, 847.1304931640625, 837.8776245117188, 834.5521850585938], [841.5225219726562, 851.5721435546875, 843.736083984375, 817.1494750976562], [830.4302368164062, 847.7245483398438, 838.353271484375, 812.3678588867188], [821.527587890625, 848.4784545898438, 833.4934692382812, 828.7532958984375], [825.8761596679688, 850.8885498046875, 837.4735717773438, 832.3712158203125], [834.2666015625, 852.3367919921875, 841.1272583007812, 841.5875854492188], [827.4281005859375, 849.4265747070312, 835.8092041015625, 855.6115112304688], [808.1873168945312, 835.3963012695312, 817.9783935546875, 814.0430908203125], [813.1531982421875, 840.1066284179688, 830.9530029296875, 829.1304321289062], [806.3535766601562, 839.5413208007812, 829.73779296875, 829.938720703125], [804.9060668945312, 831.3229370117188, 815.6499633789062, 798.7576293945312], [823.9645385742188, 840.3387451171875, 827.2853393554688, 826.8121948242188], [836.9058837890625, 844.8834838867188, 830.2674560546875, 829.4039306640625], [853.841552734375, 843.8728637695312, 827.72412109375, 816.1346435546875], [857.1903686523438, 843.099609375, 829.2665405273438, 828.7998657226562], [847.2833862304688, 837.556884765625, 827.6124877929688, 829.33642578125], [834.4468994140625, 838.4074096679688, 835.6793823242188, 820.70947265625], [793.6748657226562, 835.367919921875, 842.00146484375, 823.3173828125], [793.5619506835938, 834.3526000976562, 841.8396606445312, 809.5624389648438], [810.5157470703125, 836.8845825195312, 843.9921264648438, 809.3280639648438], [787.3274536132812, 838.1798706054688, 850.7403564453125, 811.3031005859375], [811.5424194335938, 843.0720825195312, 856.9597778320312, 820.0082397460938], [834.982666015625, 835.9494018554688, 843.995849609375, 811.040283203125], [789.3228759765625, 830.9510498046875, 843.8416137695312, 812.0584716796875], [790.3301391601562, 834.6533203125, 851.199951171875, 812.724853515625], [804.2157592773438, 835.7330932617188, 847.2158813476562, 798.9214477539062], [787.3370971679688, 833.3507080078125, 843.8946533203125, 814.1517333984375], [789.235595703125, 832.7127685546875, 841.5103149414062, 806.301513671875], [796.4912719726562, 837.2958374023438, 846.7421264648438, 808.4194946289062], [811.1861572265625, 841.7606811523438, 856.5576782226562, 832.7225952148438], [789.3265380859375, 835.9375610351562, 845.4485473632812, 810.0530395507812], [790.9048461914062, 835.361572265625, 842.5633544921875, 805.2330932617188], [823.8888549804688, 846.7261352539062, 859.7208862304688, 823.0989379882812], [813.076416015625, 842.8900756835938, 848.4386596679688, 802.9811401367188], [816.6817626953125, 840.8837890625, 843.150634765625, 805.9675903320312], [834.3526611328125, 843.9594116210938, 857.3987426757812, 805.5150756835938], [813.7515869140625, 841.51025390625, 863.4390258789062, 819.20166015625], [829.7124633789062, 841.6748046875, 864.0487670898438, 829.7312622070312], [819.3895874023438, 833.06884765625, 855.299072265625, 803.2970581054688], [791.9798583984375, 833.4266967773438, 862.4026489257812, 818.0040893554688], [815.6836547851562, 836.3313598632812, 859.9529418945312, 810.4776611328125], [812.5838623046875, 834.25146484375, 853.2784423828125, 786.21240234375], [792.4105834960938, 836.828125, 861.4259643554688, 806.0380249023438], [809.0296630859375, 840.2959594726562, 867.35205078125, 824.5665283203125], [836.1729736328125, 836.6934204101562, 863.7491455078125, 824.707275390625], [825.1930541992188, 833.570556640625, 860.28515625, 828.2758178710938], [798.1729125976562, 831.8121948242188, 859.8841552734375, 825.1060180664062], [814.26025390625, 832.0371704101562, 866.610107421875, 817.6380004882812], [817.6438598632812, 828.3395385742188, 862.1869506835938, 801.0968017578125], [803.0595703125, 829.1874389648438, 858.5342407226562, 803.563232421875], [808.9354248046875, 830.6832275390625, 860.2894287109375, 806.6884765625], [823.6708374023438, 826.1350708007812, 855.4533081054688, 807.2394409179688], [816.4088134765625, 830.422119140625, 854.8803100585938, 811.5551147460938], [788.5181274414062, 828.9779663085938, 848.6986083984375, 802.8310546875], [785.9871215820312, 826.828857421875, 851.6913452148438, 803.2315673828125], [795.6214599609375, 830.8753662109375, 857.724853515625, 813.1264038085938], [809.4409790039062, 826.7478637695312, 841.8158569335938, 801.7975463867188], [810.4591064453125, 828.15625, 838.1175537109375, 797.8479614257812], [826.3944091796875, 827.7161254882812, 842.4576416015625, 799.8787231445312], [848.9011840820312, 836.8049926757812, 850.2070922851562, 802.522705078125], [811.0396728515625, 838.4512939453125, 850.5877685546875, 792.1356811523438], [798.5372924804688, 830.6148681640625, 843.9906005859375, 784.0325317382812], [798.115966796875, 833.938720703125, 854.8137817382812, 798.4879760742188], [795.1839599609375, 835.46630859375, 854.1632690429688, 802.3551635742188], [804.7468872070312, 835.3993530273438, 847.6944580078125, 796.9126586914062], [807.6716918945312, 836.3217163085938, 852.7022094726562, 794.2080078125], [840.85205078125, 844.2613525390625, 862.5770874023438, 812.1624755859375], [837.083984375, 845.6293334960938, 856.9300537109375, 806.7587890625], [797.8124389648438, 839.0620727539062, 849.5474243164062, 794.9907836914062], [802.5403442382812, 837.6068115234375, 853.1685180664062, 811.7830200195312], [808.5985107421875, 836.9716186523438, 854.023681640625, 817.851318359375], [801.2564697265625, 839.49951171875, 857.02880859375, 813.3568725585938], [809.2750854492188, 842.5779418945312, 864.021728515625, 819.3267822265625], [833.94140625, 837.1333618164062, 855.2515869140625, 817.5244140625], [828.1897583007812, 836.3411865234375, 849.996337890625, 810.1876831054688], [812.49951171875, 838.4201049804688, 852.1759033203125, 814.9703979492188], [795.7425537109375, 830.992919921875, 840.2694091796875, 804.3486328125], [801.6041870117188, 829.8516845703125, 842.3037109375, 798.8164672851562], [796.00732421875, 835.9411010742188, 850.777587890625, 812.0294799804688], [809.5626831054688, 834.4270629882812, 845.8405151367188, 807.7182006835938], [820.4422607421875, 832.0499877929688, 850.1285400390625, 812.5499267578125], [822.5610961914062, 836.947265625, 858.32177734375, 828.3054809570312], [837.0197143554688, 841.8211059570312, 857.3887329101562, 825.2279052734375], [817.591064453125, 843.7711181640625, 859.823486328125, 816.53125], [796.4179077148438, 840.6151123046875, 849.175537109375, 803.1910400390625], [802.0748291015625, 846.3637084960938, 848.6127319335938, 801.6436767578125], [815.3534545898438, 847.0835571289062, 843.6228637695312, 805.3536376953125], [808.49267578125, 839.979736328125, 837.7764282226562, 807.7122192382812], [828.946044921875, 844.8234252929688, 848.9560546875, 816.4532470703125], [850.9750366210938, 850.309326171875, 853.2532958984375, 827.745849609375], [839.3338012695312, 849.0043334960938, 851.0625610351562, 815.1815795898438], [800.871826171875, 843.224853515625, 847.0057373046875, 808.1771240234375], [798.9641723632812, 841.1612548828125, 842.0278930664062, 810.8798828125], [819.7885131835938, 848.7067260742188, 851.014404296875, 823.6978759765625], [799.6846923828125, 844.1309204101562, 849.5879516601562, 825.133056640625], [808.639404296875, 842.4432373046875, 852.5087280273438, 826.1754760742188], [849.412353515625, 851.1783447265625, 859.5660400390625, 837.1051635742188], [844.460693359375, 848.5294799804688, 851.21923828125, 816.759765625], [824.0166625976562, 850.2384643554688, 856.9009399414062, 824.3546752929688], [828.8019409179688, 847.190673828125, 846.7865600585938, 823.4247436523438], [838.9647827148438, 845.9111938476562, 840.451171875, 809.135498046875], [838.7163696289062, 853.6942138671875, 854.380126953125, 818.017578125], [818.3482666015625, 850.2365112304688, 853.1928100585938, 823.5075073242188], [830.1322631835938, 847.6416625976562, 845.7945556640625, 809.5650024414062], [833.3645629882812, 849.3197021484375, 850.6168823242188, 811.1098022460938], [827.4505615234375, 854.1814575195312, 860.5684204101562, 826.8632202148438], [816.746337890625, 853.7258911132812, 850.1116943359375, 825.2603759765625], [837.5354614257812, 852.8233642578125, 843.2125244140625, 811.0916748046875], [834.2760620117188, 855.1514282226562, 846.125, 806.64892578125], [830.1117553710938, 857.7203979492188, 846.1534423828125, 819.6713256835938], [849.1528930664062, 856.5245361328125, 840.0596923828125, 815.629150390625], [807.3548583984375, 851.92919921875, 843.70263671875, 819.8626708984375], [813.6959228515625, 851.616455078125, 843.9813232421875, 828.9219360351562], [817.8829956054688, 858.9114990234375, 846.1765747070312, 835.8757934570312], [783.3275756835938, 855.5321044921875, 843.131591796875, 818.1305541992188], [779.1965942382812, 852.523681640625, 834.3993530273438, 794.9161987304688], [822.378662109375, 863.5903930664062, 840.5051879882812, 805.7202758789062], [818.3787841796875, 861.8240356445312, 840.4229125976562, 809.0052490234375], [808.4124755859375, 856.68310546875, 834.768798828125, 813.2022705078125], [835.477783203125, 864.3681640625, 842.5965576171875, 837.9647827148438], [820.5575561523438, 863.1527709960938, 844.0372314453125, 838.4226684570312], [817.1265869140625, 861.6075439453125, 836.7369384765625, 829.9901123046875], [812.3970947265625, 858.2880249023438, 828.1983032226562, 810.42333984375], [808.4653930664062, 857.109130859375, 826.7154541015625, 800.1388549804688], [820.7203369140625, 857.9398193359375, 824.494873046875, 798.2950439453125], [816.4951782226562, 853.5748901367188, 817.96923828125, 796.3663330078125], [808.9976196289062, 859.0977172851562, 828.8062133789062, 805.7157592773438], [803.1170043945312, 862.1691284179688, 832.3964233398438, 805.3701171875], [827.1825561523438, 866.410400390625, 832.15087890625, 809.8461303710938], [821.9974975585938, 865.5020141601562, 831.6724243164062, 813.7132568359375], [816.108154296875, 858.8316040039062, 820.267333984375, 807.2636108398438], [854.8818969726562, 864.7581176757812, 822.9470825195312, 818.277099609375], [832.805908203125, 863.5226440429688, 822.759765625, 827.0928955078125], [808.731689453125, 860.3303833007812, 819.7183837890625, 806.0199584960938], [821.374755859375, 865.9539794921875, 825.3456420898438, 798.451416015625], [813.5057373046875, 863.1099243164062, 821.98486328125, 796.0143432617188], [800.0794067382812, 869.3792114257812, 831.704345703125, 803.934326171875], [822.0498657226562, 868.585205078125, 828.4661254882812, 801.7703247070312], [818.1007690429688, 862.2329711914062, 817.5101928710938, 804.4937744140625], [814.382568359375, 874.5842895507812, 832.7042236328125, 826.6209106445312], [804.5075073242188, 872.3469848632812, 832.5475463867188, 815.8247680664062], [807.9223022460938, 869.8448486328125, 828.010009765625, 803.752197265625], [837.569091796875, 874.3194580078125, 833.342529296875, 816.5515747070312], [824.2975463867188, 874.7090454101562, 839.7939453125, 827.6915893554688], [827.7968139648438, 875.996826171875, 839.851318359375, 822.861328125], [826.0333862304688, 874.8084106445312, 830.136962890625, 820.576416015625], [798.5178833007812, 868.8402099609375, 823.2841796875, 814.2003173828125], [802.9089965820312, 874.1068725585938, 831.2843017578125, 812.2328491210938], [832.8455810546875, 874.70751953125, 825.6898803710938, 802.4442138671875], [855.1456909179688, 878.0112915039062, 834.8467407226562, 820.93017578125], [863.0949096679688, 882.5266723632812, 844.021728515625, 827.8264770507812], [859.4613037109375, 885.0238037109375, 842.1386108398438, 831.7384643554688], [830.4025268554688, 884.3377685546875, 837.3872680664062, 833.594482421875], [811.9719848632812, 883.3633422851562, 829.3058471679688, 824.5322265625], [821.3793334960938, 879.9769897460938, 819.0471801757812, 818.0431518554688], [829.3109130859375, 882.9197387695312, 818.5003051757812, 823.5393676757812], [836.9813842773438, 884.5374755859375, 818.4214477539062, 832.0935668945312], [854.525634765625, 888.1458740234375, 823.168701171875, 824.0874633789062], [844.5426635742188, 886.3720092773438, 821.0165405273438, 819.4322509765625], [835.9476318359375, 886.2828979492188, 820.9783325195312, 830.1920776367188], [860.8269653320312, 888.3915405273438, 827.4226684570312, 819.7960205078125], [868.8798828125, 879.1209716796875, 815.3729248046875, 813.6700439453125], [854.5181274414062, 882.5330810546875, 823.6597900390625, 840.3523559570312], [846.9132080078125, 882.499755859375, 828.2606201171875, 831.6348876953125], [835.2811279296875, 879.892578125, 820.5850219726562, 819.9901733398438], [825.4119873046875, 881.2142333984375, 820.8626098632812, 817.3109741210938], [836.0245971679688, 884.9187622070312, 829.5582275390625, 823.5364990234375], [845.9389038085938, 884.1815185546875, 828.1373291015625, 820.4611206054688], [839.5800170898438, 876.0787353515625, 815.2687377929688, 815.726806640625], [836.3175048828125, 872.0239868164062, 815.9138793945312, 821.2616577148438], [817.6572265625, 878.3685302734375, 823.4445190429688, 839.9793090820312], [810.2607421875, 875.3372192382812, 815.438720703125, 825.6748046875], [841.7342529296875, 875.0827026367188, 815.6566772460938, 826.2434692382812], [849.5004272460938, 883.3314819335938, 827.1096801757812, 845.5239868164062], [858.9666137695312, 885.5034790039062, 832.4727783203125, 824.8525390625], [843.8464965820312, 882.2431640625, 830.916015625, 818.5323486328125], [831.36279296875, 874.2971801757812, 819.18115234375, 806.62109375], [840.202392578125, 880.7346801757812, 827.3246459960938, 809.2130737304688], [829.4346923828125, 881.005126953125, 831.731689453125, 825.9069213867188], [836.1590576171875, 878.2933959960938, 827.6932983398438, 830.5753173828125], [844.84375, 879.5656127929688, 827.711669921875, 833.8075561523438], [829.6018676757812, 877.123779296875, 830.2277221679688, 831.5443115234375], [821.5619506835938, 879.853271484375, 834.7064208984375, 820.6735229492188], [838.6905517578125, 884.01220703125, 833.3610229492188, 829.5538330078125], [833.3651733398438, 876.0633544921875, 821.0121459960938, 817.3975219726562], [864.6424560546875, 882.8304443359375, 828.4854125976562, 830.7770385742188], [849.9219970703125, 883.3968505859375, 831.453125, 837.9697265625], [821.1992797851562, 874.50341796875, 820.7784423828125, 815.0211791992188], [820.8538818359375, 871.8743896484375, 818.851318359375, 805.7227783203125], [818.953857421875, 872.4776000976562, 831.9154663085938, 810.2699584960938], [812.5225219726562, 872.6383056640625, 840.5443725585938, 823.428955078125], [831.8124389648438, 867.6912231445312, 832.1397094726562, 827.1014404296875], [841.1441650390625, 865.570556640625, 830.4042358398438, 828.8428344726562], [828.269775390625, 864.9942626953125, 834.5861206054688, 832.4275512695312], [828.2476806640625, 867.1111450195312, 830.65576171875, 823.97021484375], [822.0057373046875, 865.5805053710938, 821.4952392578125, 818.6531372070312], [825.834716796875, 869.5850830078125, 831.6072998046875, 831.7368774414062], [829.1232299804688, 872.3445434570312, 841.8867797851562, 826.991943359375], [826.7938232421875, 869.5675659179688, 837.3483276367188, 838.0322875976562], [819.1951293945312, 863.2295532226562, 824.4616088867188, 803.6517944335938], [809.83544921875, 862.4329223632812, 829.1329956054688, 792.0592041015625], [810.402099609375, 863.3148193359375, 832.9888916015625, 809.6216430664062], [811.8565673828125, 861.3078002929688, 819.021728515625, 802.4143676757812], [816.5045776367188, 864.8643798828125, 827.9603881835938, 821.9653930664062], [829.031494140625, 867.2486572265625, 836.521728515625, 833.15283203125], [846.4365844726562, 871.9605712890625, 833.4971923828125, 826.994384765625], [841.6598510742188, 871.6902465820312, 830.728271484375, 807.285888671875], [820.0173950195312, 863.9298706054688, 820.1982421875, 793.1913452148438], [832.5843505859375, 867.6810913085938, 824.8072509765625, 803.1044921875], [827.9802856445312, 870.7777099609375, 829.3770751953125, 819.6318969726562], [803.2764892578125, 860.318603515625, 817.6607055664062, 829.2416381835938], [825.6436767578125, 861.51513671875, 820.3252563476562, 829.6727905273438], [850.9476928710938, 864.4163818359375, 827.9754638671875, 832.878662109375], [828.7841796875, 861.673583984375, 826.898193359375, 829.4168701171875], [800.6002197265625, 852.9029541015625, 812.86767578125, 802.6416625976562], [824.6087646484375, 851.8344116210938, 814.9588623046875, 807.07958984375], [824.0645751953125, 857.454345703125, 822.6539916992188, 815.1510009765625], [799.216796875, 860.4993896484375, 819.271484375, 815.7257080078125], [826.9189453125, 863.6271362304688, 818.6622924804688, 818.5509643554688], [856.0162353515625, 865.1942138671875, 816.49267578125, 816.291259765625], [822.5812377929688, 871.0386352539062, 823.7738647460938, 828.94775390625], [814.133544921875, 873.2423095703125, 825.7113647460938, 831.0531616210938], [818.34765625, 862.1096801757812, 812.5250244140625, 813.80419921875], [799.9210815429688, 861.4063720703125, 820.1930541992188, 811.251220703125], [795.8341674804688, 866.8097534179688, 829.46337890625, 812.8427124023438], [801.3527221679688, 861.7710571289062, 817.5004272460938, 789.006591796875], [813.1250610351562, 861.6851196289062, 820.7122802734375, 802.3411254882812], [816.5194702148438, 865.5121459960938, 821.0703735351562, 804.3299560546875], [820.36376953125, 868.3351440429688, 820.42724609375, 808.457763671875], [845.683837890625, 865.425537109375, 821.7262573242188, 820.4950561523438], [812.2055053710938, 856.8716430664062, 814.7955932617188, 809.0231323242188], [815.6797485351562, 857.9104614257812, 819.7857666015625, 804.05078125], [822.0376586914062, 855.577392578125, 820.4112548828125, 806.0494384765625], [797.5308837890625, 852.1200561523438, 817.5735473632812, 811.8382568359375], [801.9267578125, 857.4369506835938, 820.4786987304688, 797.5598754882812], [803.0614013671875, 858.5101318359375, 821.7344970703125, 793.4553833007812], [810.6906127929688, 857.49365234375, 821.8716430664062, 803.1156005859375], [808.0733642578125, 851.3412475585938, 813.52978515625, 787.2909545898438], [810.4036254882812, 852.0219116210938, 816.7940063476562, 793.049560546875], [822.6439819335938, 854.8386840820312, 821.53271484375, 827.201416015625], [831.2108154296875, 852.9104614257812, 815.4130249023438, 827.1925048828125], [806.9231567382812, 858.1605834960938, 823.1680297851562, 817.9732055664062], [813.6146850585938, 859.3870849609375, 823.4815673828125, 815.9380493164062], [808.33837890625, 857.251220703125, 819.5216674804688, 805.4376220703125], [803.0621337890625, 857.367919921875, 827.15771484375, 801.0521240234375], [806.2555541992188, 852.6638793945312, 822.1539916992188, 804.7106323242188], [808.4812622070312, 850.4912109375, 817.330322265625, 818.1568603515625], [825.5963745117188, 857.3757934570312, 829.8748779296875, 829.5662841796875], [816.7456665039062, 852.6931762695312, 825.5514526367188, 819.4584350585938], [819.666015625, 851.7777099609375, 822.2824096679688, 820.8770141601562], [836.9529418945312, 856.1387329101562, 829.5380249023438, 816.7691650390625], [842.6329345703125, 863.1803588867188, 841.26611328125, 834.359130859375], [835.0357055664062, 859.9036865234375, 837.4132080078125, 835.42578125], [832.048583984375, 852.4052734375, 820.746826171875, 804.0213623046875], [838.3452758789062, 856.5479736328125, 826.0167236328125, 810.4678955078125], [841.60986328125, 853.1400756835938, 829.2349243164062, 815.1929321289062], [818.736328125, 846.5394897460938, 822.6016845703125, 800.0855712890625], [835.1406860351562, 848.4620971679688, 826.8340454101562, 806.7681274414062], [854.4623413085938, 855.7894897460938, 840.189453125, 836.7523193359375], [825.9116821289062, 857.4488525390625, 840.8712158203125, 840.5437622070312], [808.774658203125, 853.4459838867188, 829.6107177734375, 818.5230102539062], [817.7208251953125, 853.8536987304688, 826.330322265625, 819.4722290039062], [814.154296875, 858.6843872070312, 833.3228149414062, 829.3328857421875], [803.3150634765625, 856.961669921875, 832.6361694335938, 824.0740356445312], [824.3139038085938, 857.4868774414062, 832.7968139648438, 815.9473266601562], [844.220458984375, 861.75537109375, 834.1712646484375, 812.9835205078125], [832.2047729492188, 861.8007202148438, 832.2747802734375, 818.076904296875], [816.2577514648438, 863.6467895507812, 841.0233764648438, 823.7760620117188], [802.8432006835938, 860.2208251953125, 833.9632568359375, 809.7525024414062], [808.0596923828125, 863.0049438476562, 835.232666015625, 827.2713012695312], [800.8555297851562, 862.8135375976562, 841.3689575195312, 847.5274047851562], [816.7908935546875, 854.5634155273438, 829.1647338867188, 820.8059692382812], [847.9654541015625, 855.9743041992188, 824.6239013671875, 815.77734375], [828.5447387695312, 856.1793823242188, 825.438720703125, 822.5075073242188], [832.6693115234375, 855.108642578125, 830.6314697265625, 816.6705322265625], [824.0343017578125, 855.5383911132812, 831.2804565429688, 813.9771728515625], [817.2232055664062, 850.94580078125, 824.8248291015625, 811.6183471679688], [822.5858154296875, 854.5287475585938, 831.4034423828125, 820.9439086914062], [818.99853515625, 853.1128540039062, 828.1959228515625, 819.3252563476562], [835.2855224609375, 851.3780517578125, 821.935791015625, 807.4222412109375], [841.6538696289062, 861.7254028320312, 832.5380249023438, 816.0353393554688], [824.655029296875, 868.2611694335938, 838.2882080078125, 832.8137817382812], [845.5454711914062, 870.002197265625, 840.6742553710938, 833.0957641601562], [838.0607299804688, 860.647705078125, 832.1663208007812, 828.47265625], [821.5759887695312, 856.794921875, 826.9044799804688, 827.8853149414062], [824.4454956054688, 859.8923950195312, 834.1893920898438, 831.715576171875], [807.3577880859375, 851.1669311523438, 823.3494262695312, 811.5213623046875], [813.38232421875, 852.1742553710938, 821.501708984375, 808.7781982421875], [819.0119018554688, 860.9425659179688, 830.5433959960938, 823.0701904296875], [818.719482421875, 857.1760864257812, 822.64306640625, 814.4524536132812], [837.9376220703125, 859.6544189453125, 830.490234375, 826.7262573242188], [825.7322998046875, 854.9649047851562, 828.9486083984375, 818.5846557617188], [818.0150756835938, 850.8502197265625, 822.0343627929688, 814.4179077148438], [829.5933227539062, 859.022216796875, 829.4566040039062, 822.4043579101562], [813.6602172851562, 858.4017333984375, 829.7850952148438, 818.06640625], [814.0316162109375, 853.6185302734375, 821.1588134765625, 811.6669921875], [828.3889770507812, 857.2528686523438, 821.2394409179688, 810.2542114257812], [833.6201171875, 864.8215942382812, 834.8563842773438, 806.4489135742188], [827.8440551757812, 859.6510620117188, 834.46875, 806.6421508789062], [829.552001953125, 855.8356323242188, 824.6672973632812, 809.0747680664062], [840.4869384765625, 861.7186889648438, 827.7884521484375, 811.0718383789062], [820.8677978515625, 859.7216796875, 829.8717651367188, 827.66064453125], [813.3473510742188, 854.5139770507812, 824.3286743164062, 827.7525024414062], [824.1688232421875, 857.2229614257812, 828.0092163085938, 818.6510620117188], [808.2719116210938, 854.7877197265625, 825.866455078125, 815.3092041015625], [821.0436401367188, 858.1300659179688, 834.8120727539062, 821.934326171875], [826.532470703125, 858.3458251953125, 837.3592529296875, 824.91796875], [815.8179321289062, 851.8496704101562, 824.3224487304688, 811.093994140625], [828.8214721679688, 857.2130126953125, 835.3626708984375, 820.8939208984375], [824.621337890625, 855.7156982421875, 840.0621948242188, 833.4031372070312], [824.842041015625, 851.4967651367188, 833.13232421875, 821.7935791015625], [829.5368041992188, 859.6907958984375, 841.8319091796875, 826.9696044921875], [819.6712036132812, 856.2021484375, 839.2281494140625, 828.5689086914062], [830.559326171875, 856.3140258789062, 839.4053955078125, 820.5638427734375], [823.92431640625, 857.0570068359375, 836.3994140625, 795.8776245117188], [813.533935546875, 852.5006713867188, 827.3648681640625, 793.218994140625], [823.861328125, 854.0795288085938, 832.7593994140625, 808.96875], [830.1575317382812, 855.7958374023438, 833.5900268554688, 801.8999633789062], [829.467041015625, 854.865478515625, 832.9324340820312, 812.9906005859375], [824.6497802734375, 855.02490234375, 836.64404296875, 818.0729370117188], [841.3975219726562, 859.7387084960938, 844.1287231445312, 809.1629028320312], [830.80224609375, 857.6597290039062, 841.5061645507812, 805.9177856445312], [815.3516235351562, 854.118896484375, 834.7054443359375, 807.7914428710938], [828.5554809570312, 858.1041259765625, 836.9867553710938, 812.943359375], [814.07177734375, 858.8423461914062, 841.15625, 828.2509155273438], [811.5436401367188, 854.42919921875, 835.9628295898438, 811.7796630859375], [823.293701171875, 853.7483520507812, 834.562744140625, 803.5662841796875], [822.6253662109375, 851.2476196289062, 835.2999877929688, 801.8992919921875], [821.4884033203125, 853.8696899414062, 841.0902099609375, 805.2067260742188], [827.2425537109375, 850.5201416015625, 836.0694580078125, 812.6864013671875], [824.0303955078125, 841.5613403320312, 827.3592529296875, 804.04541015625], [810.2127685546875, 844.9720458984375, 830.1528930664062, 820.1871948242188], [816.4932250976562, 848.5224609375, 832.3291625976562, 811.3977661132812], [808.2807006835938, 842.2968139648438, 825.1050415039062, 787.6194458007812], [807.8818969726562, 846.31494140625, 824.3283081054688, 797.1813354492188], [811.5520629882812, 854.1378173828125, 834.8009033203125, 816.5545043945312], [831.7903442382812, 853.5582275390625, 842.499755859375, 815.02490234375], [828.2025146484375, 850.6416625976562, 836.2452392578125, 815.1959228515625], [806.3847045898438, 846.29833984375, 826.305908203125, 812.5824584960938], [830.7393798828125, 851.47607421875, 835.627197265625, 808.5587158203125], [809.3914184570312, 849.8226318359375, 830.9661865234375, 795.7996215820312], [797.6509399414062, 850.60546875, 829.2686767578125, 806.247314453125], [817.287109375, 853.900146484375, 834.22607421875, 817.9267578125], [839.1028442382812, 855.7385864257812, 842.6362915039062, 817.6607055664062], [843.9258422851562, 854.9382934570312, 842.5112915039062, 813.2879638671875], [825.5213012695312, 853.80322265625, 836.2886962890625, 808.0227661132812], [824.4401245117188, 854.1902465820312, 833.1856079101562, 799.6300048828125], [827.2796020507812, 854.6201171875, 836.4481811523438, 805.2228393554688], [800.8109741210938, 854.1375122070312, 835.8511352539062, 819.0244140625], [808.3199462890625, 855.836181640625, 831.4601440429688, 829.1759033203125], [826.2759399414062, 856.3146362304688, 836.7747802734375, 832.4493408203125], [828.7770385742188, 858.8352661132812, 845.5928344726562, 831.68115234375], [820.4119873046875, 860.9935302734375, 842.833251953125, 827.4535522460938], [812.3428955078125, 856.5797119140625, 837.7578125, 817.6868286132812], [826.7705688476562, 861.3887939453125, 850.2693481445312, 824.4696655273438], [822.289794921875, 856.7271118164062, 845.8140869140625, 827.14892578125], [821.3045043945312, 853.97998046875, 837.9183959960938, 827.24169921875], [827.4528198242188, 859.2902221679688, 847.337890625, 827.5199584960938], [822.4730224609375, 858.4595336914062, 849.224853515625, 828.875244140625], [825.0045166015625, 860.590576171875, 850.4664306640625, 823.4931030273438], [828.2626953125, 857.3386840820312, 845.1935424804688, 813.3767700195312], [825.201171875, 849.4779052734375, 834.0008544921875, 795.75390625], [851.5777587890625, 853.2850952148438, 841.4908447265625, 803.225830078125], [842.4187622070312, 848.4074096679688, 834.52978515625, 799.1940307617188], [826.2394409179688, 842.8430786132812, 827.3848266601562, 789.1260375976562], [833.6654052734375, 847.3356323242188, 836.8553466796875, 812.0697631835938], [824.7728881835938, 853.4840087890625, 844.3533325195312, 822.3538818359375], [815.2315673828125, 849.6896362304688, 835.0491333007812, 814.4579467773438], [805.3583374023438, 846.2403564453125, 824.3433227539062, 803.1123657226562], [810.3694458007812, 854.7272338867188, 830.1105346679688, 794.0111694335938], [794.1519165039062, 854.1304931640625, 832.4911499023438, 792.3234252929688], [771.9732666015625, 852.561767578125, 827.4677734375, 777.2835083007812], [775.0579833984375, 855.8350830078125, 829.6066284179688, 762.0857543945312], [760.5328369140625, 854.76416015625, 830.11328125, 766.8882446289062], [746.791259765625, 853.1629638671875, 823.0982055664062, 756.9404907226562], [747.3092041015625, 856.4893798828125, 822.8093872070312, 740.4067993164062], [738.1923217773438, 849.18505859375, 809.4722900390625, 713.0320434570312], [737.3771362304688, 850.9434204101562, 811.25537109375, 718.6436767578125], [751.6207275390625, 857.736328125, 821.7998046875, 717.7146606445312], [745.4207153320312, 855.636474609375, 817.9151611328125, 700.81298828125], [741.0736083984375, 852.9312133789062, 816.9989624023438, 720.931640625], [749.6117553710938, 854.5494384765625, 826.9371948242188, 743.7247924804688], [748.05859375, 854.2303466796875, 828.159912109375, 747.208251953125], [755.6459350585938, 851.7102661132812, 823.0825805664062, 747.4063720703125], [758.6961669921875, 851.79638671875, 823.6475830078125, 758.5435791015625], [769.0527954101562, 857.1062622070312, 828.134033203125, 753.3027954101562], [781.7748413085938, 860.9400634765625, 830.3070068359375, 756.2012329101562], [776.4158325195312, 859.3779296875, 828.8267211914062, 762.9051513671875], [779.8115234375, 860.187255859375, 829.5236206054688, 761.9219970703125], [799.865478515625, 864.4591674804688, 829.2132568359375, 769.5294799804688], [787.806884765625, 863.8897094726562, 829.1192626953125, 762.519287109375], [779.0234985351562, 857.1036987304688, 821.13427734375, 743.6325073242188], [775.5240478515625, 860.9269409179688, 828.919921875, 757.2021484375], [772.6229248046875, 856.5198364257812, 833.9797973632812, 771.2664184570312], [781.443603515625, 845.9822387695312, 828.249755859375, 774.0863647460938], [804.1005859375, 848.2360229492188, 830.489990234375, 795.4050903320312], [818.8493041992188, 856.2962036132812, 834.7174072265625, 810.4570922851562], [813.57275390625, 852.7288818359375, 830.4654541015625, 795.76025390625], [818.3680419921875, 854.0255737304688, 833.165283203125, 799.8372802734375], [790.94677734375, 855.0031127929688, 828.0869140625, 788.8120727539062], [782.490234375, 848.8359375, 824.0198974609375, 781.290283203125], [794.3419799804688, 849.1951904296875, 825.2326049804688, 802.7493896484375], [783.541259765625, 847.4743041992188, 817.86572265625, 789.4320068359375], [799.205810546875, 851.8462524414062, 822.5659790039062, 790.315185546875], [810.140380859375, 853.6600952148438, 829.141357421875, 806.7604370117188], [805.3131713867188, 855.6773071289062, 839.1414794921875, 803.5928955078125], [807.2988891601562, 850.7452392578125, 828.3274536132812, 782.8621826171875], [807.8621215820312, 847.7316284179688, 824.5651245117188, 788.3433837890625], [802.1759033203125, 848.0452270507812, 825.42529296875, 793.082275390625], [792.8633422851562, 845.614990234375, 821.2355346679688, 783.1602783203125], [796.3829345703125, 845.0714721679688, 828.2894897460938, 796.2525634765625], [805.0975341796875, 841.95361328125, 828.3968505859375, 802.0309448242188], [813.9629516601562, 844.8296508789062, 834.7431640625, 806.883056640625], [823.9111938476562, 850.1658935546875, 842.1951293945312, 814.1353759765625], [816.2050170898438, 842.9911499023438, 829.431884765625, 798.6939697265625], [822.36572265625, 844.5565795898438, 831.9674682617188, 792.906005859375], [815.078857421875, 846.9485473632812, 836.6959838867188, 791.528076171875], [809.9813842773438, 840.6094970703125, 834.9768676757812, 783.2523803710938], [809.9041137695312, 841.2752685546875, 838.2301025390625, 782.5354614257812], [804.93115234375, 844.694091796875, 834.9950561523438, 790.9879760742188], [798.3885498046875, 845.5841064453125, 835.2396850585938, 804.8629760742188], [801.0673217773438, 845.4442138671875, 835.9715576171875, 814.99267578125], [802.2846069335938, 843.15771484375, 828.6534423828125, 806.6934204101562], [803.8333129882812, 842.177978515625, 829.3303833007812, 801.6522827148438], [823.8562622070312, 840.9049072265625, 831.3613891601562, 800.4790649414062], [828.2496948242188, 840.8615112304688, 832.8969116210938, 787.4566040039062], [807.354248046875, 843.5890502929688, 830.1145629882812, 783.6261596679688], [819.7365112304688, 847.4574584960938, 831.93115234375, 800.3351440429688], [823.1143188476562, 843.5725708007812, 828.156982421875, 800.6823120117188], [810.2177734375, 841.9171142578125, 822.439208984375, 796.4260864257812], [820.662109375, 845.5052490234375, 827.833984375, 809.9816284179688], [819.9449462890625, 845.4826049804688, 828.5663452148438, 821.4257202148438], [803.937255859375, 840.4295654296875, 831.5050048828125, 818.1246948242188], [804.8367309570312, 843.1646728515625, 838.0375366210938, 824.603759765625], [811.5189208984375, 844.7661743164062, 833.7054443359375, 815.19140625], [805.5147094726562, 839.6142578125, 830.9804077148438, 795.494384765625], [828.0216064453125, 842.9473876953125, 832.1027221679688, 793.6177978515625], [841.8297729492188, 843.53271484375, 826.26220703125, 787.4400024414062], [825.3827514648438, 841.3123168945312, 823.4048461914062, 794.3493041992188], [818.8591918945312, 843.690673828125, 834.9120483398438, 818.834716796875], [822.47998046875, 840.7244262695312, 831.6185302734375, 808.9208984375], [810.4413452148438, 839.0831909179688, 825.0339965820312, 803.1069946289062], [808.0614624023438, 839.7129516601562, 826.366943359375, 805.2711791992188], [845.8260498046875, 849.8980102539062, 834.7236938476562, 808.873046875], [830.9683837890625, 848.14794921875, 830.4530639648438, 806.5869750976562], [836.9763793945312, 837.970703125, 814.8721923828125, 797.7472534179688], [849.4888305664062, 845.6911010742188, 825.8657836914062, 807.1727905273438], [804.156005859375, 844.739501953125, 830.4097900390625, 797.7326049804688], [803.6216430664062, 838.4337768554688, 818.8088989257812, 787.7197875976562], [810.28369140625, 844.4888305664062, 822.5779418945312, 800.28759765625], [792.1911010742188, 854.7313842773438, 836.1483154296875, 814.2623291015625], [804.0675659179688, 853.1151123046875, 831.0277099609375, 813.7899169921875], [825.5707397460938, 851.0706176757812, 818.698974609375, 808.3920288085938], [826.4535522460938, 852.0004272460938, 817.6133422851562, 792.1551513671875], [823.5078125, 851.4476928710938, 815.2808227539062, 790.7047119140625], [834.395263671875, 851.2108154296875, 815.2339477539062, 794.6778564453125], [837.8670043945312, 852.6318969726562, 821.085693359375, 794.1740112304688], [832.1040649414062, 851.993408203125, 821.3201293945312, 812.0115966796875], [834.1369018554688, 848.0783081054688, 823.0567626953125, 815.6566772460938], [837.909912109375, 852.96630859375, 831.050537109375, 806.5465698242188], [829.9957275390625, 848.4347534179688, 819.3355712890625, 798.2965087890625], [812.5016479492188, 845.7592163085938, 817.5901489257812, 795.2918090820312], [809.9476318359375, 853.6549072265625, 827.201416015625, 790.626953125], [806.3323974609375, 852.3660888671875, 823.0131225585938, 790.1738891601562], [809.1378173828125, 849.2918701171875, 821.0675659179688, 799.9470825195312], [811.1181030273438, 850.3536987304688, 824.8021240234375, 803.16796875], [811.2383422851562, 853.3963012695312, 829.6041259765625, 805.8098754882812], [832.1803588867188, 849.5001831054688, 828.4165649414062, 817.5390014648438], [820.8970336914062, 843.8740234375, 818.849609375, 804.4447631835938], [805.1112060546875, 848.0979614257812, 826.120849609375, 802.4495239257812], [815.7674560546875, 846.6581420898438, 828.2545166015625, 804.313232421875], [813.0039672851562, 842.40283203125, 822.5133056640625, 791.7177734375], [802.2877807617188, 842.6822509765625, 827.1636352539062, 795.2947387695312], [805.4901733398438, 842.8665771484375, 835.4271850585938, 808.4908447265625], [818.8892211914062, 844.3084716796875, 840.6749267578125, 800.1990356445312], [800.6558227539062, 834.8564453125, 829.4170532226562, 783.8419799804688], [788.0034790039062, 830.5952758789062, 824.4138793945312, 781.47607421875], [790.6689453125, 839.8034057617188, 839.2472534179688, 778.2567749023438], [781.5325317382812, 838.29443359375, 829.1953735351562, 763.4165649414062], [793.5446166992188, 836.261962890625, 827.7664794921875, 779.5543823242188], [798.9354248046875, 841.0132446289062, 843.0257568359375, 791.003173828125], [803.6452026367188, 843.7003784179688, 841.092041015625, 782.7796020507812], [803.377197265625, 845.1358032226562, 845.0408325195312, 793.64111328125], [787.3802490234375, 838.15380859375, 837.5521240234375, 795.7549438476562], [783.3522338867188, 838.349609375, 827.5582275390625, 789.9288940429688], [798.9635009765625, 847.0533447265625, 835.4237670898438, 800.3027954101562], [808.5081176757812, 845.5533447265625, 834.8472900390625, 815.7868041992188], [804.89990234375, 840.3302612304688, 830.171142578125, 805.4795532226562], [821.41064453125, 846.444580078125, 839.5115356445312, 808.3545532226562], [820.5906982421875, 850.8167114257812, 847.1182250976562, 815.9553833007812], [792.198974609375, 849.73095703125, 840.8098754882812, 813.384521484375], [794.4862670898438, 843.77001953125, 827.55615234375, 803.9876098632812], [795.7398071289062, 844.3364868164062, 827.5372314453125, 804.6602172851562], [791.5311279296875, 848.7324829101562, 829.0510864257812, 803.9583129882812], [800.1724853515625, 844.31103515625, 826.6234741210938, 801.6961669921875], [807.6751708984375, 845.9249877929688, 827.2505493164062, 810.5695190429688], [821.7068481445312, 849.0610961914062, 826.9630126953125, 806.5169677734375], [832.1516723632812, 855.2056884765625, 832.280029296875, 827.8937377929688], [822.2803344726562, 852.8939208984375, 826.27392578125, 823.1360473632812], [807.75439453125, 843.4749145507812, 818.39013671875, 802.7496948242188], [811.5806884765625, 848.885986328125, 829.54541015625, 807.6912841796875], [802.913818359375, 849.4513549804688, 833.2282104492188, 804.229736328125], [814.0416259765625, 841.9525146484375, 826.8759155273438, 798.8287963867188], [823.2139282226562, 851.7507934570312, 835.7691040039062, 815.8058471679688], [823.842529296875, 853.4199829101562, 832.9814453125, 811.5453491210938], [825.0260620117188, 852.8115234375, 829.071533203125, 812.7714233398438], [803.106689453125, 852.9513549804688, 825.6204833984375, 805.7503662109375], [797.767333984375, 850.479736328125, 823.244140625, 787.3299560546875], [823.6084594726562, 853.9761352539062, 827.7371826171875, 800.95703125], [830.803466796875, 852.3323364257812, 827.0805053710938, 810.0040893554688], [836.5386962890625, 852.1080322265625, 827.413818359375, 804.5009765625], [835.5629272460938, 852.4094848632812, 829.9210205078125, 816.8359985351562], [812.6319580078125, 854.0875854492188, 836.3394775390625, 821.2893676757812], [799.8349609375, 850.6195678710938, 831.9631958007812, 806.524169921875], [796.6018676757812, 845.3336181640625, 828.4434204101562, 795.6602172851562], [803.4510498046875, 847.327392578125, 832.204833984375, 810.5449829101562], [818.778564453125, 847.625244140625, 829.98291015625, 814.863525390625], [828.3865966796875, 843.7413940429688, 823.304931640625, 797.2275390625], [815.2327270507812, 845.7671508789062, 821.0799560546875, 810.1944580078125], [812.56591796875, 846.4060668945312, 821.3937377929688, 815.995849609375], [821.738037109375, 853.2518920898438, 832.1199951171875, 812.2300415039062], [819.6849365234375, 852.3477172851562, 830.5717163085938, 821.8231201171875], [823.386474609375, 844.0940551757812, 821.6756591796875, 812.6224365234375], [822.2656860351562, 847.8788452148438, 832.4615478515625, 815.1009521484375], [825.4112548828125, 845.8253173828125, 832.674560546875, 806.3442993164062], [810.4052734375, 839.0704345703125, 823.9952392578125, 785.479248046875], [797.4458618164062, 840.6943359375, 827.5885009765625, 802.3729858398438], [826.762939453125, 846.3662109375, 839.354736328125, 811.5731811523438], [826.3504028320312, 845.220458984375, 839.1455688476562, 803.912841796875], [802.926513671875, 843.5089111328125, 827.5159301757812, 802.5633544921875], [813.34521484375, 840.5659790039062, 825.3724365234375, 786.6074829101562], [820.0201416015625, 844.576171875, 831.3031005859375, 785.9512329101562], [797.1630859375, 845.193359375, 826.5857543945312, 790.6627197265625], [816.418212890625, 849.044921875, 830.6734008789062, 810.1702270507812], [829.16259765625, 848.4921875, 834.3137817382812, 825.9681396484375], [823.4859008789062, 847.8468627929688, 834.1209106445312, 825.5487670898438], [819.2528076171875, 850.014892578125, 830.1529541015625, 819.1897583007812], [799.4116821289062, 842.8621215820312, 821.9553833007812, 796.0542602539062], [804.2139282226562, 843.43994140625, 824.14990234375, 793.37548828125], [802.3111572265625, 846.0443725585938, 833.2307739257812, 818.2600708007812], [808.7434692382812, 840.9422607421875, 831.7850952148438, 814.2687377929688], [833.0200805664062, 841.4476928710938, 834.83056640625, 837.7716064453125], [845.61279296875, 842.447998046875, 841.8273315429688, 857.1707153320312], [856.1325073242188, 840.7007446289062, 841.7583618164062, 841.3131103515625], [859.7380981445312, 844.1685791015625, 842.998291015625, 854.348876953125], [858.8118896484375, 839.7025146484375, 838.5612182617188, 854.6822509765625], [845.8267211914062, 837.19921875, 852.3397827148438, 862.1275024414062], [832.5646362304688, 832.6775512695312, 847.7528076171875, 855.8121948242188], [839.5562744140625, 828.2872314453125, 837.05419921875, 846.8387451171875], [838.1581420898438, 828.1647338867188, 844.9706420898438, 855.6361083984375], [837.74365234375, 836.23193359375, 847.458251953125, 849.1504516601562], [855.581298828125, 843.9923706054688, 843.644775390625, 846.0968017578125], [857.9915161132812, 839.672607421875, 837.6416625976562, 852.3873901367188], [855.6654663085938, 837.5831909179688, 837.093017578125, 835.5441284179688], [852.1099853515625, 844.5824584960938, 842.3073120117188, 835.5953369140625], [858.0717163085938, 836.3019409179688, 832.1306762695312, 832.4847412109375], [861.3101196289062, 833.5905151367188, 829.6820068359375, 829.1326904296875], [833.0534057617188, 842.0159301757812, 839.10791015625, 834.626708984375], [838.88330078125, 847.3408813476562, 844.384765625, 841.082275390625], [830.6435546875, 842.488525390625, 837.4592895507812, 842.4210815429688], [805.7738037109375, 836.2743530273438, 829.7622680664062, 822.5938720703125], [820.512451171875, 839.8347778320312, 835.47998046875, 834.886962890625], [834.7298583984375, 838.4080200195312, 829.8599853515625, 841.819091796875], [840.4343872070312, 839.2605590820312, 824.4735717773438, 834.0482177734375], [843.8837280273438, 843.5245971679688, 830.0687255859375, 836.3784790039062], [834.024658203125, 845.4226684570312, 828.5621337890625, 836.1608276367188], [829.4794921875, 848.7913818359375, 831.25341796875, 831.9620971679688], [817.1465454101562, 847.562255859375, 834.5926513671875, 834.7868041992188], [797.9866333007812, 833.2608032226562, 820.1192626953125, 812.9739990234375], [815.0889892578125, 837.3118286132812, 823.0950317382812, 827.9541015625], [831.353271484375, 842.37548828125, 828.9164428710938, 822.5217895507812], [832.2314453125, 838.9920654296875, 823.9857177734375, 807.6226196289062], [828.5576782226562, 843.0107421875, 822.2676391601562, 813.03466796875], [828.1459350585938, 848.3509521484375, 830.7565307617188, 820.3968505859375], [840.8796997070312, 847.451171875, 834.14453125, 826.36181640625], [821.5365600585938, 840.9556274414062, 826.7984008789062, 817.99462890625], [815.5, 836.9292602539062, 825.6221313476562, 821.365966796875], [832.5723266601562, 837.3941040039062, 826.921875, 818.8343505859375], [826.941650390625, 837.3260498046875, 827.58203125, 811.5210571289062], [824.5191650390625, 837.4580688476562, 823.3784790039062, 806.6466064453125], [807.3297729492188, 839.1486206054688, 828.2364501953125, 815.7869262695312], [825.1802978515625, 842.2042236328125, 833.0525512695312, 812.9097290039062], [838.2547607421875, 847.0628051757812, 834.0548706054688, 810.1442260742188], [810.6255493164062, 839.7153930664062, 824.3776245117188, 803.1165771484375], [815.5144653320312, 841.7809448242188, 824.5, 808.6400146484375], [814.5097045898438, 844.4931640625, 824.5892944335938, 813.6279296875], [804.3358154296875, 838.0411987304688, 820.4227905273438, 803.7086181640625], [804.1686401367188, 840.9324340820312, 830.2014770507812, 816.8350830078125], [793.7435302734375, 842.9967651367188, 836.7254028320312, 818.8904418945312], [813.3485107421875, 845.3538208007812, 842.3671264648438, 808.4349975585938], [825.0919799804688, 845.142822265625, 841.9273071289062, 807.24267578125], [795.3429565429688, 835.9833374023438, 824.61181640625, 793.0880126953125], [805.7288208007812, 834.8836669921875, 824.5884399414062, 797.8757934570312], [825.1504516601562, 836.3642578125, 825.935302734375, 797.0775756835938], [809.157470703125, 832.02099609375, 820.2591552734375, 790.4462280273438], [815.173583984375, 833.4627075195312, 824.2686767578125, 806.4033813476562], [806.932861328125, 841.8896484375, 830.0518188476562, 808.6354370117188], [811.0891723632812, 850.2449340820312, 836.1393432617188, 810.1827392578125], [806.3287353515625, 844.1638793945312, 827.4048461914062, 801.6261596679688], [792.7044677734375, 843.6377563476562, 825.4092407226562, 810.5818481445312], [810.9351196289062, 850.61767578125, 835.7025146484375, 812.1599731445312], [822.167236328125, 848.6253051757812, 835.459716796875, 807.1530151367188], [804.5670776367188, 845.639404296875, 829.3313598632812, 815.9602661132812], [787.483154296875, 847.6411743164062, 827.5358276367188, 798.8362426757812], [797.6986083984375, 849.2521362304688, 827.6473999023438, 781.19287109375], [811.7828979492188, 853.1021728515625, 835.52001953125, 792.4965209960938], [799.7030639648438, 846.9680786132812, 830.0733032226562, 777.840087890625], [825.0501098632812, 843.8973999023438, 826.529052734375, 781.3825073242188], [847.879638671875, 853.2103881835938, 837.4359741210938, 808.1927490234375], [818.8414306640625, 850.1972045898438, 830.8261108398438, 811.0467529296875], [813.132568359375, 848.91357421875, 826.38916015625, 811.848388671875], [815.992919921875, 851.543212890625, 832.8375244140625, 806.046630859375], [810.393798828125, 853.714111328125, 841.691162109375, 821.8226318359375], [817.7560424804688, 845.6055908203125, 844.008056640625, 822.1463012695312], [810.8718872070312, 838.8806762695312, 836.3012084960938, 804.99462890625], [812.4321899414062, 842.4003295898438, 833.9929809570312, 820.9439086914062], [817.9760131835938, 840.3169555664062, 835.0247802734375, 821.3176879882812], [819.32470703125, 840.6906127929688, 831.8271484375, 803.27197265625], [825.3800048828125, 846.465576171875, 834.9822387695312, 818.559814453125], [831.3482055664062, 846.5218505859375, 839.1289672851562, 827.077392578125], [827.89501953125, 841.7022705078125, 834.4547119140625, 821.0020141601562], [822.8831787109375, 840.586181640625, 829.737548828125, 826.9354248046875], [819.5146484375, 840.9595336914062, 827.239013671875, 824.50830078125], [820.2947998046875, 844.21240234375, 830.8258056640625, 819.4421997070312], [838.6532592773438, 840.7965087890625, 834.3646850585938, 814.1409912109375], [836.435791015625, 843.8251953125, 836.9949951171875, 816.5164794921875], [836.8286743164062, 846.6683959960938, 832.09228515625, 822.6620483398438], [827.7645874023438, 843.0303344726562, 830.8748168945312, 816.6573486328125], [820.6836547851562, 847.193115234375, 832.5828857421875, 820.458740234375], [817.7835083007812, 845.6033935546875, 825.9990844726562, 822.2474365234375], [825.5010375976562, 847.51953125, 832.8306274414062, 809.1124267578125], [829.331298828125, 849.9856567382812, 844.837158203125, 814.988037109375], [829.6961669921875, 842.7314453125, 834.878173828125, 816.448974609375], [840.22119140625, 843.6703491210938, 831.2184448242188, 821.830078125], [842.87548828125, 844.7515869140625, 836.13427734375, 826.0394897460938], [832.0507202148438, 846.0283813476562, 840.0048217773438, 832.4696655273438], [828.48486328125, 844.0220336914062, 838.6145629882812, 835.3457641601562], [839.0, 840.3648681640625, 830.3890380859375, 801.8163452148438], [830.6903686523438, 846.484130859375, 838.1365966796875, 802.5345458984375], [807.13037109375, 844.8488159179688, 833.60400390625, 804.3104858398438], [816.85302734375, 842.521240234375, 825.6760864257812, 797.196044921875], [812.3401489257812, 846.468505859375, 833.5367431640625, 816.1890869140625], [791.8440551757812, 846.858154296875, 840.5792236328125, 833.3745727539062], [796.8345947265625, 843.1023559570312, 838.4619750976562, 831.981201171875], [815.0868530273438, 843.4036254882812, 832.17724609375, 826.9937133789062], [826.364501953125, 845.5282592773438, 830.8601684570312, 819.7991943359375], [825.3731079101562, 847.72412109375, 832.4956665039062, 810.2258911132812], [838.39013671875, 846.937744140625, 833.0093994140625, 813.21240234375], [839.731201171875, 850.19482421875, 839.6355590820312, 817.3558959960938], [821.0294189453125, 850.0918579101562, 844.2056274414062, 808.7603149414062], [821.4705200195312, 842.7507934570312, 833.666259765625, 803.8771362304688], [828.9057006835938, 851.3460693359375, 837.99755859375, 815.754638671875], [825.2428588867188, 853.847900390625, 835.4929809570312, 809.12109375], [818.4102783203125, 849.7979736328125, 829.7363891601562, 809.3258056640625], [815.1407470703125, 857.5980224609375, 839.474853515625, 823.0165405273438], [817.3721313476562, 859.8409423828125, 840.2726440429688, 815.1665649414062], [805.2959594726562, 859.0835571289062, 835.0361328125, 789.494873046875], [793.5333862304688, 860.4908447265625, 830.9547729492188, 776.7464599609375], [800.7230834960938, 865.4821166992188, 832.2139892578125, 768.4827270507812], [783.9619140625, 866.4487915039062, 829.3763427734375, 761.3530883789062], [762.180419921875, 858.0319213867188, 820.2410888671875, 756.8593139648438], [762.21728515625, 859.7509765625, 824.1396484375, 759.5032958984375], [772.3400268554688, 863.3372802734375, 821.6663818359375, 754.832275390625], [768.7462158203125, 853.8477783203125, 812.4608764648438, 743.0509643554688], [787.3524780273438, 855.02734375, 813.5599365234375, 748.6441650390625], [797.3659057617188, 861.4616088867188, 817.6215209960938, 753.7037353515625], [779.7006225585938, 855.0387573242188, 820.2684326171875, 767.30712890625], [782.2239990234375, 852.5007934570312, 812.8297119140625, 769.1937255859375], [774.8883056640625, 848.7667236328125, 810.8172607421875, 756.5436401367188], [770.9896240234375, 854.427490234375, 820.9703369140625, 768.5599365234375], [785.8905639648438, 853.8556518554688, 820.8966674804688, 769.7667846679688], [796.0867309570312, 847.5300903320312, 822.5509033203125, 771.4588012695312], [799.4784545898438, 854.7344360351562, 828.3206176757812, 786.3471069335938], [807.9193115234375, 858.8341064453125, 831.4769287109375, 785.9830322265625], [808.2098388671875, 859.9772338867188, 829.6422119140625, 783.5546875], [799.31396484375, 858.1326293945312, 818.70654296875, 768.7877807617188], [792.6279907226562, 858.41552734375, 818.47119140625, 754.31640625], [798.0445556640625, 859.4652709960938, 827.6154174804688, 776.4261474609375], [786.119140625, 853.8709106445312, 826.9083251953125, 784.9205322265625], [786.7532958984375, 852.9570922851562, 824.5618896484375, 778.9944458007812], [803.3541259765625, 854.4545288085938, 822.7720947265625, 797.228271484375], [817.2216186523438, 862.9750366210938, 835.066650390625, 805.1846923828125], [821.9763793945312, 866.7894287109375, 839.1182861328125, 802.3746948242188], [831.6362915039062, 860.7607421875, 829.7821044921875, 796.7000732421875], [838.3408203125, 862.431640625, 840.9549560546875, 795.5669555664062], [823.4569702148438, 864.1444091796875, 845.3255004882812, 801.9591674804688], [827.3927612304688, 859.7328491210938, 833.8587646484375, 800.4071655273438], [824.55615234375, 859.6488647460938, 831.795166015625, 803.6266479492188], [797.9932861328125, 860.5944213867188, 832.474853515625, 800.3074340820312], [810.8340454101562, 864.5110473632812, 845.5908203125, 818.141357421875], [807.1242065429688, 859.1963500976562, 842.7115478515625, 803.7366943359375], [776.0787353515625, 853.338623046875, 833.371337890625, 777.6092529296875], [801.363037109375, 858.952880859375, 844.9841918945312, 792.2460327148438], [818.0125122070312, 853.8146362304688, 839.8133544921875, 799.3273315429688], [806.716552734375, 850.7485961914062, 829.8043212890625, 799.572021484375], [810.7003784179688, 856.9335327148438, 841.80908203125, 816.772216796875], [811.130859375, 851.9784545898438, 843.0103759765625, 816.703857421875], [816.3875122070312, 850.9908447265625, 841.9268188476562, 819.198974609375], [811.7199096679688, 851.6821899414062, 838.58251953125, 812.5470581054688], [800.9784545898438, 847.1520385742188, 831.61962890625, 792.9503784179688], [814.1350708007812, 847.21875, 833.5624389648438, 802.8689575195312], [813.9711303710938, 844.8665771484375, 831.5216064453125, 797.56494140625], [801.140380859375, 844.6992797851562, 833.2787475585938, 770.8200073242188], [796.36865234375, 841.6571044921875, 834.67529296875, 773.61328125], [814.5772705078125, 844.0492553710938, 841.3775024414062, 789.9578857421875], [818.9349975585938, 842.7491455078125, 837.708251953125, 791.6821899414062], [788.8766479492188, 836.3187866210938, 825.820068359375, 795.8035888671875], [790.6491088867188, 839.6483154296875, 826.4085083007812, 803.9076538085938], [806.4876708984375, 844.4271240234375, 831.9789428710938, 806.1176147460938], [790.865478515625, 840.5632934570312, 828.409423828125, 786.7715454101562], [803.00048828125, 844.7462768554688, 837.138671875, 798.8982543945312], [829.4395751953125, 848.7365112304688, 840.5151977539062, 805.3296508789062], [819.2862548828125, 848.7808227539062, 849.4900512695312, 819.336669921875], [807.0633544921875, 847.9544677734375, 851.0264282226562, 823.4049072265625], [798.9984130859375, 840.4031372070312, 829.9730834960938, 795.6982421875], [804.1921997070312, 845.3161010742188, 839.0361328125, 800.8603515625], [816.7809448242188, 847.3616943359375, 847.8656005859375, 810.5101928710938], [805.1506958007812, 841.1453247070312, 833.1760864257812, 803.2542724609375], [809.8557739257812, 843.7158203125, 836.3953857421875, 816.8548583984375], [816.6521606445312, 847.7365112304688, 849.5042724609375, 830.6724243164062], [801.2655639648438, 844.622314453125, 846.3792114257812, 814.1114501953125], [794.8009033203125, 841.720703125, 835.7094116210938, 799.3848876953125], [818.6358642578125, 843.1107788085938, 834.6100463867188, 786.5194091796875], [822.6818237304688, 847.7650756835938, 838.8123168945312, 796.4197998046875], [812.295166015625, 846.9092407226562, 828.0020141601562, 797.424072265625], [822.7571411132812, 850.5899047851562, 830.9828491210938, 798.922119140625], [806.9409790039062, 849.8677978515625, 833.0902099609375, 804.20458984375], [812.1011352539062, 847.4129028320312, 830.2965698242188, 791.6129760742188], [826.5825805664062, 847.8295288085938, 834.6365966796875, 798.3640747070312], [804.1729736328125, 844.7052001953125, 830.7429809570312, 792.0326538085938], [816.2845458984375, 845.9127807617188, 823.1297607421875, 779.5977172851562], [823.1021118164062, 849.4795532226562, 826.069091796875, 792.911865234375], [805.308349609375, 846.1767578125, 820.5399780273438, 787.7532958984375], [813.0787963867188, 848.8753051757812, 818.2415771484375, 794.029541015625], [805.7711181640625, 846.5768432617188, 824.3071899414062, 801.2550048828125], [815.3965454101562, 844.8007202148438, 829.894775390625, 820.5921630859375], [823.5491943359375, 850.2156982421875, 838.20751953125, 834.7884521484375], [808.7940063476562, 844.2634887695312, 839.2957153320312, 812.9877319335938], [832.6801147460938, 848.0797729492188, 846.7391357421875, 828.68798828125], [840.6779174804688, 848.9269409179688, 840.832275390625, 823.7958374023438], [824.7845458984375, 842.9671020507812, 837.4794921875, 811.0972900390625], [827.6246337890625, 846.1369018554688, 840.0956420898438, 813.0054321289062], [812.1281127929688, 851.0859985351562, 845.1382446289062, 813.58154296875], [827.1085205078125, 852.9340209960938, 851.7110595703125, 810.0382080078125], [818.7959594726562, 847.2678833007812, 841.8842163085938, 799.0343627929688], [804.4158935546875, 845.382080078125, 835.5567626953125, 800.7462158203125], [827.1068115234375, 849.3768920898438, 837.5205078125, 821.1090087890625], [820.6314697265625, 844.0716552734375, 824.7264404296875, 807.3668823242188], [812.7630615234375, 841.3599853515625, 819.267822265625, 799.760498046875], [817.39892578125, 848.5313110351562, 836.9757690429688, 811.3636474609375], [837.15673828125, 855.8648071289062, 843.25048828125, 798.3400268554688], [830.9630737304688, 848.2028198242188, 834.9456787109375, 801.6245727539062], [809.0454711914062, 843.8221435546875, 836.5175170898438, 809.7920532226562], [818.76123046875, 851.1892700195312, 841.6914672851562, 817.9052124023438], [833.7395629882812, 848.8118896484375, 838.2506103515625, 815.4627685546875], [827.7686157226562, 849.4149780273438, 839.1098022460938, 815.2406005859375], [835.8421630859375, 852.9485473632812, 845.265625, 813.0594482421875], [849.9490356445312, 854.1677856445312, 844.2105102539062, 809.2520141601562], [844.4051513671875, 853.4152221679688, 842.749755859375, 810.5148315429688], [820.1719970703125, 851.05859375, 847.246337890625, 822.1405029296875], [799.5400390625, 840.9879150390625, 837.4277954101562, 810.2274780273438], [817.343505859375, 843.4967651367188, 844.4677734375, 817.0138549804688], [816.3046264648438, 848.3929443359375, 852.6956787109375, 827.8493041992188], [804.3147583007812, 843.1559448242188, 848.4041748046875, 818.305419921875], [824.5872192382812, 848.4702758789062, 851.5728149414062, 819.1154174804688], [833.183349609375, 855.2200927734375, 853.1669921875, 816.57568359375], [824.6675415039062, 853.7982788085938, 850.0900268554688, 812.86279296875], [821.3577270507812, 850.8272705078125, 845.5523681640625, 815.5699462890625], [820.8143310546875, 851.1464233398438, 839.1657104492188, 820.1323852539062], [820.609619140625, 853.0255126953125, 843.190673828125, 818.4469604492188], [820.946533203125, 853.9213256835938, 845.5579833984375, 820.577392578125], [823.76953125, 853.720458984375, 839.3494262695312, 819.8949584960938], [825.5047607421875, 857.4166259765625, 843.1813354492188, 811.7098388671875], [830.3301391601562, 859.8837280273438, 846.8364868164062, 810.4841918945312], [827.0771484375, 856.7560424804688, 844.6845092773438, 824.7037963867188], [813.4996948242188, 847.7676391601562, 837.4728393554688, 820.9893188476562], [816.5225830078125, 851.6755981445312, 848.456787109375, 820.22314453125], [827.089111328125, 853.6781616210938, 851.5857543945312, 824.0711059570312], [817.2199096679688, 843.2627563476562, 838.3684692382812, 814.9302368164062], [826.7344360351562, 850.677001953125, 847.7386474609375, 820.675048828125], [830.4711303710938, 858.8980712890625, 851.80810546875, 816.6424560546875], [813.431884765625, 854.3502807617188, 847.4693603515625, 814.40087890625], [823.1029663085938, 852.9317016601562, 851.8251953125, 823.5931396484375], [816.8959350585938, 850.970947265625, 843.0128784179688, 800.3397827148438], [815.2207641601562, 851.9574584960938, 844.0782470703125, 810.6834716796875], [820.8759155273438, 845.2568969726562, 844.57568359375, 826.1099243164062], [820.8234252929688, 846.3759765625, 837.0914306640625, 814.00439453125], [833.1754760742188, 850.6065063476562, 840.7904052734375, 828.1915893554688], [842.0030517578125, 851.2003784179688, 849.2910766601562, 832.065185546875], [837.520263671875, 854.6708984375, 851.4740600585938, 819.5254516601562], [832.6765747070312, 848.5152587890625, 841.4650268554688, 808.1401977539062], [817.6055297851562, 843.759521484375, 844.1616821289062, 808.0932006835938], [801.795654296875, 841.7503051757812, 849.0717163085938, 799.8627319335938], [791.759033203125, 841.71484375, 850.9866333007812, 798.3010864257812], [793.8563842773438, 837.783203125, 848.677490234375, 796.8598022460938], [815.1583862304688, 837.5106201171875, 850.8804321289062, 791.861572265625], [804.163818359375, 842.4954223632812, 852.0049438476562, 794.5464477539062], [812.9273071289062, 845.0567626953125, 851.07080078125, 802.576904296875], [819.0197143554688, 838.9212646484375, 840.0552368164062, 793.4102783203125], [786.9024047851562, 836.7162475585938, 839.5337524414062, 788.6915893554688], [801.0602416992188, 845.0421142578125, 845.2125854492188, 793.1793212890625], [808.4794311523438, 838.8413696289062, 838.4534301757812, 788.2039184570312], [796.51708984375, 837.6100463867188, 841.8865966796875, 788.2261962890625], [810.3130493164062, 843.7932739257812, 845.6856079101562, 794.75146484375], [814.3095703125, 842.00146484375, 850.0958251953125, 808.6373901367188], [815.8441162109375, 842.3427124023438, 850.0610961914062, 805.6932983398438], [794.52001953125, 838.7003784179688, 839.1213989257812, 797.1493530273438], [790.4370727539062, 840.3325805664062, 837.5906372070312, 799.4503173828125], [802.540283203125, 843.7603759765625, 836.0891723632812, 801.8599853515625], [795.4622802734375, 839.9039916992188, 830.1171264648438, 797.978271484375], [798.6309204101562, 844.3533935546875, 838.383056640625, 805.2992553710938], [812.853515625, 844.4772338867188, 842.4763793945312, 802.4909057617188], [821.2776489257812, 840.8722534179688, 839.4312744140625, 810.1334838867188], [816.4093627929688, 840.377197265625, 836.2994384765625, 802.736328125], [807.8162841796875, 840.5507202148438, 834.1786499023438, 793.2601318359375], [816.5593872070312, 844.404296875, 840.7303466796875, 812.7420043945312], [820.07177734375, 842.3616943359375, 837.0249633789062, 804.611328125], [801.3831787109375, 842.6968994140625, 840.4644165039062, 797.0342407226562], [805.0343017578125, 844.231689453125, 844.5855102539062, 802.6168823242188], [804.0101928710938, 842.2498779296875, 835.390380859375, 807.864990234375], [799.1513671875, 846.7681274414062, 838.4159545898438, 814.8475341796875], [810.7255249023438, 841.8739013671875, 834.486572265625, 802.09326171875], [824.138427734375, 841.9271850585938, 832.3585815429688, 806.6637573242188], [823.9437866210938, 849.7347412109375, 841.9633178710938, 814.6956176757812], [821.6395874023438, 842.2091674804688, 834.4930419921875, 787.9949951171875], [822.4156494140625, 844.341796875, 835.4163208007812, 787.56982421875], [807.0934448242188, 851.9306030273438, 843.7649536132812, 802.2412109375], [798.8721923828125, 853.8980102539062, 851.956787109375, 815.431640625], [816.3134765625, 850.6605834960938, 852.2032470703125, 813.9039916992188], [810.9662475585938, 840.7489624023438, 839.4639282226562, 803.9734497070312], [803.9209594726562, 842.331787109375, 839.3579711914062, 818.7210083007812], [823.0318603515625, 842.7750244140625, 834.5005493164062, 809.1782836914062], [811.8128051757812, 836.4264526367188, 822.8213500976562, 799.0133056640625], [793.9199829101562, 839.803466796875, 826.7426147460938, 796.8167114257812], [805.4622192382812, 848.0355224609375, 840.8709106445312, 801.016357421875], [800.8770141601562, 839.9231567382812, 836.262939453125, 797.2859497070312], [793.6180419921875, 837.9442138671875, 834.120849609375, 780.3424682617188], [803.7062377929688, 841.4462280273438, 840.05712890625, 786.739990234375], [812.3698120117188, 838.5291137695312, 836.9037475585938, 809.3011474609375], [815.6780395507812, 839.5439453125, 838.52490234375, 809.8159790039062], [805.8212280273438, 840.195556640625, 838.132080078125, 810.889404296875], [810.4825439453125, 834.512939453125, 836.6201171875, 810.5628662109375], [802.2991943359375, 828.8677368164062, 826.2628784179688, 800.3784790039062], [802.377197265625, 833.1644897460938, 830.0081176757812, 792.61279296875], [808.1941528320312, 834.5381469726562, 836.0169677734375, 786.6290893554688], [791.0982055664062, 830.1362915039062, 830.8526611328125, 792.3917236328125], [798.7566528320312, 833.0891723632812, 838.6865844726562, 796.6822509765625], [805.1163940429688, 833.0333862304688, 840.3178100585938, 788.2832641601562], [793.0540161132812, 826.7255249023438, 833.0203247070312, 786.94384765625], [788.5479736328125, 824.6696166992188, 831.1965942382812, 793.1636352539062], [809.0507202148438, 832.4049072265625, 832.4066772460938, 795.0610961914062], [814.5189208984375, 836.6784057617188, 832.5667114257812, 815.873046875], [796.4987182617188, 829.081298828125, 825.6104125976562, 815.0997924804688], [814.6036987304688, 832.9651489257812, 821.3784790039062, 812.6421508789062], [826.560546875, 835.2410278320312, 824.4324951171875, 812.5657348632812], [804.065673828125, 825.4473876953125, 820.9185791015625, 794.7221069335938], [802.3593139648438, 829.7078857421875, 826.5422973632812, 792.9874877929688], [796.25, 836.7516479492188, 839.001220703125, 798.0172729492188], [792.4168090820312, 835.5430908203125, 840.8386840820312, 807.117431640625], [798.0763549804688, 835.6131591796875, 834.7459106445312, 806.8859252929688], [795.8338623046875, 833.9977416992188, 822.8494873046875, 798.3232421875], [812.717529296875, 838.0368041992188, 826.1265258789062, 812.7737426757812], [809.1201782226562, 835.6239013671875, 822.4764404296875, 801.629638671875], [797.966552734375, 833.9607543945312, 820.4430541992188, 787.7207641601562], [811.3477783203125, 835.7109985351562, 833.8134765625, 799.1766967773438], [811.6650390625, 833.3375854492188, 832.7799072265625, 798.15185546875], [820.908203125, 836.0654907226562, 834.6502075195312, 794.0549926757812], [821.9921875, 833.1103515625, 825.392578125, 787.9093627929688], [807.696044921875, 827.7333984375, 817.1939086914062, 794.0814208984375], [809.5419311523438, 831.1399536132812, 827.7344970703125, 792.5739135742188], [799.4324951171875, 833.7565307617188, 827.3814086914062, 784.4265747070312], [803.3607177734375, 825.2244262695312, 825.0258178710938, 789.1233520507812], [817.2968139648438, 825.3088989257812, 829.410400390625, 790.4232788085938], [826.8350830078125, 835.974365234375, 832.4611206054688, 791.186279296875], [812.782958984375, 831.5337524414062, 828.1458129882812, 796.4859008789062], [804.3345947265625, 829.5225219726562, 819.1834106445312, 791.4739379882812], [800.3285522460938, 830.146240234375, 825.90966796875, 795.7704467773438], [797.8609008789062, 834.551513671875, 834.0909423828125, 800.305908203125], [813.21875, 835.9658203125, 830.0081176757812, 801.1958618164062], [812.4171752929688, 836.9381713867188, 833.4205932617188, 797.4689331054688], [816.8596801757812, 845.3546752929688, 833.6937866210938, 792.4235229492188], [824.1649780273438, 853.5341186523438, 831.37646484375, 804.80419921875], [813.015625, 852.237060546875, 829.2401733398438, 803.7262573242188], [806.2420043945312, 847.7637329101562, 823.78955078125, 797.6641235351562], [826.5344848632812, 851.2421264648438, 828.2347412109375, 817.475341796875], [827.7704467773438, 846.5525512695312, 827.4322509765625, 821.3118286132812], [829.241455078125, 842.2835693359375, 821.9459228515625, 798.3097534179688], [822.8587036132812, 848.17919921875, 829.5062866210938, 804.6231079101562], [813.9069213867188, 845.3668212890625, 829.7760009765625, 802.845947265625], [820.4530639648438, 842.0145263671875, 833.268310546875, 799.1278076171875], [810.96923828125, 838.1160278320312, 832.4331665039062, 794.7948608398438], [812.0592041015625, 837.136962890625, 829.2526245117188, 798.977294921875], [828.7119750976562, 835.77587890625, 830.6065673828125, 806.7864990234375], [839.1368408203125, 834.643310546875, 822.4977416992188, 800.2963256835938], [825.6415405273438, 843.096923828125, 823.5911254882812, 802.7094116210938], [815.8419189453125, 843.7720947265625, 827.0439453125, 811.42578125], [826.1268920898438, 842.9755249023438, 830.7648315429688, 820.30126953125], [812.4374389648438, 847.466796875, 831.5031127929688, 811.0831298828125], [795.042724609375, 844.9775390625, 827.3492431640625, 806.4119873046875], [815.4801025390625, 848.3120727539062, 835.6968383789062, 813.0471801757812], [823.041015625, 852.7678833007812, 838.9595947265625, 812.7688598632812], [813.9974975585938, 849.798095703125, 836.2201538085938, 807.7474365234375], [835.0784912109375, 851.6986694335938, 838.447265625, 810.947021484375], [840.9534301757812, 845.3312377929688, 831.51904296875, 809.6234741210938], [830.6952514648438, 843.128173828125, 839.8711547851562, 815.5228881835938], [823.1690673828125, 838.785888671875, 839.1644897460938, 816.732421875], [809.0698852539062, 825.84423828125, 831.3803100585938, 807.0985107421875], [815.32666015625, 824.5747680664062, 851.6119384765625, 830.7154541015625], [823.1566772460938, 823.3194580078125, 858.2755737304688, 840.380126953125], [831.4129028320312, 819.2822875976562, 845.8978271484375, 822.089599609375], [857.3522338867188, 819.3465576171875, 850.2506103515625, 835.9830932617188], [853.3140258789062, 821.5111083984375, 859.3013916015625, 847.65673828125], [838.4083251953125, 824.2850341796875, 858.8016967773438, 842.5703735351562], [824.90673828125, 821.2846069335938, 855.4682006835938, 840.801025390625], [811.0403442382812, 821.1272583007812, 851.8790893554688, 842.983642578125], [831.0919799804688, 831.4529418945312, 859.9234619140625, 847.6241455078125], [833.0626220703125, 833.1486206054688, 850.145751953125, 835.0765380859375], [833.7516479492188, 837.2352905273438, 846.779541015625, 844.4630126953125], [849.2587280273438, 838.2042236328125, 857.1810913085938, 855.279296875], [839.358642578125, 833.8867797851562, 856.7581787109375, 858.4641723632812], [828.4332885742188, 834.0702514648438, 855.3912353515625, 857.8656616210938], [830.9024047851562, 834.1188354492188, 857.9345092773438, 857.49462890625], [845.9114379882812, 833.6498413085938, 858.3446044921875, 844.3987426757812], [845.619140625, 835.4133911132812, 856.7760620117188, 831.0765380859375], [840.66650390625, 836.553466796875, 857.0205078125, 827.7713012695312], [849.124755859375, 837.690185546875, 861.4398193359375, 835.7102661132812], [839.1465454101562, 833.48681640625, 850.507080078125, 826.8795776367188], [839.3638305664062, 835.354248046875, 847.4012451171875, 826.2011108398438], [829.5101318359375, 839.6568603515625, 855.54248046875, 838.8992919921875], [823.9432983398438, 832.1239013671875, 840.3401489257812, 812.2207641601562], [827.9893798828125, 831.5737915039062, 838.6954345703125, 816.3831787109375], [808.5039672851562, 831.913330078125, 846.1534423828125, 815.6577758789062], [818.7620849609375, 829.076171875, 837.3858642578125, 815.5331420898438], [838.3206787109375, 828.940185546875, 832.8171997070312, 822.6096801757812], [821.9171142578125, 833.0031127929688, 844.9085083007812, 814.8056030273438], [825.737060546875, 835.2261962890625, 852.8502197265625, 814.8245239257812], [838.6819458007812, 827.7150268554688, 842.7178344726562, 814.3492431640625], [811.2225952148438, 824.6080932617188, 839.0320434570312, 802.4561767578125], [819.2268676757812, 831.25244140625, 849.1063232421875, 816.8707885742188], [831.3713989257812, 828.318359375, 840.8302612304688, 838.898193359375], [814.525634765625, 826.4412231445312, 833.2950439453125, 829.8324584960938], [814.3052368164062, 829.9169311523438, 842.377685546875, 825.98779296875], [812.6326293945312, 833.0188598632812, 848.341064453125, 821.8861694335938], [811.6848754882812, 830.7183227539062, 843.143310546875, 806.9762573242188], [809.4713745117188, 824.2514038085938, 830.7861938476562, 790.2286987304688], [819.3284301757812, 832.185302734375, 838.3517456054688, 804.8037109375], [839.9313354492188, 835.3674926757812, 842.29052734375, 818.109375], [818.9241943359375, 831.3040771484375, 832.40087890625, 821.1503295898438], [807.8261108398438, 833.8858032226562, 837.7110595703125, 821.6671752929688], [815.407470703125, 834.7737426757812, 839.0768432617188, 818.014404296875], [817.5088500976562, 836.9036865234375, 839.0066528320312, 817.722900390625], [817.9523315429688, 838.029296875, 843.6448364257812, 825.455810546875], [823.3094482421875, 829.9830932617188, 832.4375610351562, 809.9158935546875], [837.8663330078125, 832.1078491210938, 838.621826171875, 817.7234497070312], [830.001708984375, 833.6549072265625, 842.4312744140625, 817.1032104492188], [811.989013671875, 829.3912353515625, 832.9297485351562, 805.9373779296875], [809.3624267578125, 831.2771606445312, 835.1092529296875, 808.06494140625], [823.9735717773438, 838.2804565429688, 842.060546875, 819.8626098632812], [820.1361083984375, 842.041259765625, 843.5235595703125, 828.63525390625], [807.6543579101562, 838.639892578125, 837.5184326171875, 824.3397216796875], [807.46044921875, 836.402099609375, 835.4710083007812, 821.9421997070312], [813.1305541992188, 838.2779541015625, 834.6656494140625, 806.78759765625], [816.2188720703125, 836.6239013671875, 830.6137084960938, 808.8582763671875], [818.0142211914062, 831.6483154296875, 831.9937133789062, 815.0527954101562], [836.283447265625, 835.0794067382812, 840.1895141601562, 815.1988525390625], [834.9447631835938, 837.65869140625, 843.1260375976562, 821.748046875], [826.4596557617188, 834.9326782226562, 843.968505859375, 833.7210083007812], [804.295654296875, 829.0521850585938, 833.9611206054688, 802.3710327148438], [793.7303466796875, 834.8896484375, 834.724365234375, 799.9920043945312], [807.6210327148438, 835.5597534179688, 833.8088989257812, 807.02490234375], [808.1438598632812, 828.82666015625, 827.0971069335938, 788.2586669921875], [821.1118774414062, 835.6820068359375, 843.817626953125, 804.5200805664062], [827.2571411132812, 839.4747314453125, 848.4102172851562, 815.6394653320312], [838.4384765625, 836.3280029296875, 845.4564208984375, 812.515869140625], [832.4306640625, 836.5682983398438, 848.8297119140625, 827.7727661132812], [814.9955444335938, 835.736083984375, 835.72314453125, 804.1459350585938], [822.990966796875, 836.987548828125, 834.6887817382812, 806.5718994140625], [821.8731079101562, 838.0164184570312, 838.1937866210938, 815.4325561523438], [813.236572265625, 839.009521484375, 836.281494140625, 785.658935546875], [809.5335083007812, 837.9284057617188, 840.3612060546875, 800.1614379882812], [822.8146362304688, 838.2421875, 840.4810180664062, 810.6497192382812], [816.2305908203125, 839.7274169921875, 840.9175415039062, 805.5257568359375], [803.9170532226562, 834.2318725585938, 834.7577514648438, 797.7427978515625], [816.7671508789062, 835.0916748046875, 830.2988891601562, 809.6097412109375], [815.9493408203125, 838.0964965820312, 836.999267578125, 810.0980834960938], [815.772216796875, 839.8035278320312, 840.110107421875, 809.9271850585938], [815.8147583007812, 837.9825439453125, 836.5466918945312, 813.7960205078125], [810.8084106445312, 836.4400634765625, 837.694091796875, 803.8873291015625], [810.3896484375, 834.6675415039062, 837.63525390625, 801.3587036132812], [817.48095703125, 841.2341918945312, 844.095458984375, 804.3837280273438], [802.177978515625, 835.8468017578125, 839.654296875, 795.9070434570312], [817.1585693359375, 831.0750122070312, 833.528076171875, 802.7138061523438], [829.862548828125, 839.5213623046875, 840.3565063476562, 824.2903442382812], [807.5354614257812, 837.5836181640625, 837.8701171875, 820.8972778320312], [812.9339599609375, 837.5155639648438, 836.2315673828125, 815.5059814453125], [811.202392578125, 839.5113525390625, 840.67626953125, 813.6651611328125], [819.265869140625, 843.236328125, 842.9471435546875, 812.0347290039062], [830.55517578125, 842.1856689453125, 842.7217407226562, 805.0806884765625], [811.6106567382812, 832.2915649414062, 829.4657592773438, 798.114013671875], [817.2544555664062, 834.0642700195312, 822.6712036132812, 797.6002807617188], [819.0057983398438, 836.2393798828125, 825.6161499023438, 808.4264526367188], [786.9243774414062, 835.2850952148438, 830.600830078125, 809.939697265625], [798.9635009765625, 842.692626953125, 840.2573852539062, 800.8890380859375], [821.378173828125, 841.9556274414062, 845.4885864257812, 815.6681518554688], [811.672119140625, 836.5742797851562, 848.1994018554688, 811.5973510742188], [809.2195434570312, 836.1671752929688, 843.8126220703125, 796.529052734375], [812.810302734375, 829.7039184570312, 833.5, 795.2883911132812], [804.4848022460938, 831.8162231445312, 836.6724853515625, 805.9022216796875], [797.1858520507812, 833.1270751953125, 838.64404296875, 808.1799926757812], [802.26708984375, 830.3091430664062, 835.8524780273438, 797.9312133789062], [817.0076293945312, 833.2345581054688, 837.94873046875, 808.5884399414062], [807.437255859375, 831.5120849609375, 832.8588256835938, 803.1796875], [806.9336547851562, 835.0405883789062, 833.0164184570312, 802.7908935546875], [817.0619506835938, 838.914794921875, 833.506103515625, 804.6569213867188], [829.40185546875, 840.0186767578125, 834.2263793945312, 799.062744140625], [817.662841796875, 846.000732421875, 847.7904052734375, 822.613525390625], [813.2710571289062, 839.0767211914062, 847.1705322265625, 807.406005859375], [847.7027587890625, 837.6740112304688, 840.757080078125, 795.4215698242188], [801.5245971679688, 836.1622924804688, 841.1939086914062, 800.4015502929688], [791.2944946289062, 839.387939453125, 845.4962768554688, 816.5576782226562], [818.0761108398438, 839.3944091796875, 842.5352783203125, 806.8495483398438], [791.5490112304688, 830.4481201171875, 833.4364624023438, 785.4050903320312], [789.93310546875, 833.280517578125, 841.9750366210938, 815.153076171875], [819.1718139648438, 834.4088134765625, 841.6316528320312, 809.3981323242188], [818.4075317382812, 833.6156616210938, 831.2142944335938, 772.0139770507812], [808.9142456054688, 837.4216918945312, 831.7803344726562, 783.0559692382812], [807.631103515625, 842.2222900390625, 833.464599609375, 790.1289672851562], [779.2410888671875, 841.9266357421875, 827.7360229492188, 750.1057739257812], [758.3319091796875, 835.5809326171875, 820.6947631835938, 736.3853759765625], [736.7626953125, 831.3433227539062, 813.525390625, 732.2306518554688], [752.8917846679688, 839.8560180664062, 813.7721557617188, 733.9509887695312], [755.4497680664062, 844.1864624023438, 812.9984130859375, 720.608154296875], [750.353271484375, 843.5365600585938, 814.9864501953125, 738.2473754882812], [770.0614624023438, 844.5597534179688, 814.3031005859375, 746.2201538085938], [747.6238403320312, 837.095703125, 810.8198852539062, 735.9935302734375], [761.5797119140625, 831.6151123046875, 816.25, 747.9144897460938], [769.3931884765625, 832.5169067382812, 808.3477783203125, 744.2789916992188], [772.8173217773438, 833.6318969726562, 809.5392456054688, 733.4888305664062], [798.108642578125, 840.1676025390625, 824.0233764648438, 748.4725341796875], [780.848388671875, 842.468505859375, 821.73779296875, 749.5406494140625], [775.9533081054688, 836.6205444335938, 824.7421264648438, 748.3563232421875], [781.2164916992188, 834.2804565429688, 830.88623046875, 763.6005859375], [771.0953979492188, 835.5034790039062, 826.8681640625, 773.7462768554688], [789.8301391601562, 838.7346801757812, 827.0433959960938, 771.84716796875], [789.5731811523438, 836.1940307617188, 824.523193359375, 752.1948852539062], [785.9611206054688, 843.1294555664062, 830.2654418945312, 762.1378173828125], [780.0006103515625, 843.426513671875, 831.024169921875, 755.6215209960938], [788.6083374023438, 837.7830810546875, 829.8807373046875, 751.7001953125], [790.2603759765625, 838.5491333007812, 834.4828491210938, 766.2533569335938], [790.9127807617188, 843.3676147460938, 837.2411499023438, 772.5709228515625], [819.9607543945312, 846.620361328125, 836.8291625976562, 780.2041625976562], [785.2991333007812, 834.6177368164062, 827.503173828125, 770.5499267578125], [774.716064453125, 833.8557739257812, 825.9966430664062, 767.62939453125], [788.864501953125, 838.2449951171875, 832.4081420898438, 785.7177734375], [775.60791015625, 828.9669189453125, 825.8853759765625, 773.5868530273438], [781.695068359375, 832.1631469726562, 830.2832641601562, 769.1713256835938], [813.4244384765625, 841.8414306640625, 843.1257934570312, 780.3587036132812], [807.2139892578125, 837.8348388671875, 836.344970703125, 765.5553588867188], [787.6063232421875, 838.0377197265625, 837.21142578125, 774.7875366210938], [791.460693359375, 835.7559204101562, 833.1832885742188, 767.7416381835938], [790.280029296875, 827.5297241210938, 823.5354614257812, 764.96337890625], [794.199462890625, 832.6390380859375, 827.7955932617188, 776.8167724609375], [790.8988647460938, 832.7349853515625, 832.71875, 771.14208984375], [783.546142578125, 826.0786743164062, 831.286376953125, 774.0074462890625], [781.9339599609375, 825.4185180664062, 831.2920532226562, 776.0830078125], [782.197021484375, 828.28515625, 834.7919921875, 777.6113891601562], [774.1473388671875, 827.5211791992188, 831.8687744140625, 777.3475952148438], [783.9556884765625, 824.91259765625, 827.3480834960938, 764.5526123046875], [800.0988159179688, 826.7003173828125, 824.0288696289062, 761.3184204101562], [786.031982421875, 829.656494140625, 827.033935546875, 777.9950561523438], [776.75244140625, 828.422119140625, 831.8369140625, 785.4151611328125], [775.5940551757812, 825.89501953125, 824.6742553710938, 788.324951171875], [788.7190551757812, 825.041748046875, 823.357177734375, 794.5818481445312], [805.78173828125, 832.6792602539062, 836.4979858398438, 794.118408203125], [800.4204711914062, 830.8638916015625, 838.8829956054688, 783.5880737304688], [782.052734375, 819.588134765625, 831.306640625, 775.1288452148438], [791.6544189453125, 821.428466796875, 836.033935546875, 777.0548095703125], [771.9152221679688, 822.3084106445312, 838.6198120117188, 784.3626708984375], [764.4273071289062, 816.8300170898438, 826.5880737304688, 791.583984375], [790.4729614257812, 822.64404296875, 827.0029296875, 799.7665405273438], [807.1930541992188, 824.3152465820312, 827.634765625, 783.4843139648438], [810.9096069335938, 827.1703491210938, 829.143310546875, 795.3199462890625], [797.2174682617188, 820.3292236328125, 823.3789672851562, 785.219970703125], [794.0560302734375, 811.9378051757812, 816.3615112304688, 749.8992919921875], [801.5308227539062, 818.885498046875, 823.0546875, 773.4174194335938], [784.1121215820312, 815.61181640625, 814.853271484375, 778.0004272460938], [776.9968872070312, 812.7838745117188, 817.3588256835938, 779.9277954101562], [785.85302734375, 815.7755126953125, 820.7782592773438, 787.270751953125], [790.6716918945312, 820.1621704101562, 819.7197265625, 802.5369262695312], [784.95068359375, 814.5345458984375, 824.197509765625, 802.0255126953125], [783.2761840820312, 809.373291015625, 815.8228759765625, 768.62646484375], [805.7703857421875, 813.77978515625, 819.0567016601562, 786.9619140625], [784.421142578125, 810.8881225585938, 823.91748046875, 794.4710083007812], [772.0264282226562, 804.8756713867188, 815.7803955078125, 772.3692626953125], [795.5242919921875, 810.14501953125, 819.513427734375, 784.5621337890625], [800.50244140625, 808.3040161132812, 820.0084228515625, 785.7938842773438], [804.6285400390625, 814.061767578125, 826.5753784179688, 783.0275268554688], [826.1773071289062, 820.6299438476562, 832.950439453125, 786.2531127929688], [809.7681274414062, 808.4561767578125, 823.4655151367188, 784.114501953125], [784.2081909179688, 813.4365234375, 828.303955078125, 804.156494140625], [786.69384765625, 816.8692016601562, 833.962158203125, 807.52001953125], [788.1947631835938, 811.1604614257812, 824.9563598632812, 790.4005737304688], [797.01171875, 814.7471923828125, 823.8125, 803.8894653320312], [816.1514282226562, 822.564453125, 837.1879272460938, 798.0971069335938], [832.9861450195312, 826.58642578125, 836.9535522460938, 785.5724487304688], [811.1473388671875, 823.0114135742188, 828.8236083984375, 787.8632202148438], [780.6248168945312, 816.6699829101562, 825.870361328125, 779.0565795898438], [787.0886840820312, 820.2877807617188, 834.83837890625, 789.1439208984375], [782.6134033203125, 814.0686645507812, 830.5459594726562, 791.506103515625], [776.48388671875, 811.58349609375, 831.0439453125, 802.4352416992188], [785.994873046875, 816.8998413085938, 837.6500244140625, 809.1708984375], [807.9432373046875, 820.716552734375, 836.9442138671875, 803.8646850585938], [806.2777709960938, 825.1634521484375, 833.5045166015625, 789.0812377929688], [790.9904174804688, 828.2366333007812, 836.7686767578125, 781.348388671875], [808.0562744140625, 825.6868896484375, 841.2939453125, 779.4619750976562], [813.22412109375, 817.1434936523438, 839.929931640625, 784.75244140625], [799.9713134765625, 816.7283325195312, 840.4708251953125, 794.8568725585938], [797.8101196289062, 817.0573120117188, 839.4694213867188, 805.642822265625], [795.301513671875, 811.646240234375, 834.571044921875, 801.7921752929688], [799.3168334960938, 821.9952392578125, 833.5703735351562, 790.0951538085938], [804.330810546875, 830.766845703125, 839.3829956054688, 788.373779296875], [795.5194091796875, 822.662353515625, 836.1162109375, 780.7678833007812], [800.5447998046875, 821.4926147460938, 836.2282104492188, 782.2473754882812], [794.613525390625, 824.4676513671875, 835.7675170898438, 779.6548461914062], [779.0924682617188, 815.6753540039062, 832.3640747070312, 787.266357421875], [788.9706420898438, 811.0343627929688, 832.52392578125, 781.8284301757812], [785.1622924804688, 821.52490234375, 840.368408203125, 782.5665893554688], [795.4647216796875, 824.3002319335938, 843.7647705078125, 797.1696166992188], [800.876953125, 819.9711303710938, 834.67578125, 787.9611206054688], [788.4473266601562, 823.3311157226562, 832.0962524414062, 776.8720092773438], [789.8523559570312, 826.0761108398438, 833.0020141601562, 798.3208618164062], [795.0216064453125, 821.1243286132812, 824.5405883789062, 785.7246704101562], [810.2564086914062, 820.79345703125, 821.1401977539062, 771.5339965820312], [809.2828979492188, 828.3572998046875, 830.2577514648438, 800.4242553710938], [822.7152709960938, 832.2656860351562, 827.017822265625, 790.5433349609375], [826.1309204101562, 836.6651000976562, 822.0347290039062, 783.1366577148438], [796.388916015625, 830.268310546875, 819.7405395507812, 779.3787841796875], [801.654296875, 827.3189086914062, 818.7183837890625, 777.883056640625], [803.1417236328125, 828.6219482421875, 822.8375244140625, 771.1866455078125], [790.3914794921875, 824.6105346679688, 825.708984375, 782.566650390625], [807.104736328125, 827.3511962890625, 828.116455078125, 790.9600830078125], [816.0374755859375, 828.2273559570312, 829.15673828125, 790.2501220703125], [811.1023559570312, 830.3004150390625, 830.2172241210938, 798.7908325195312], [820.3271484375, 830.8523559570312, 831.4039916992188, 799.8870849609375], [803.5475463867188, 817.743408203125, 819.5158081054688, 768.2455444335938], [804.1350708007812, 820.0078125, 819.7219848632812, 757.5227661132812], [805.95361328125, 827.2469482421875, 825.7305297851562, 770.4329223632812], [777.9486083984375, 824.9475708007812, 821.3890380859375, 768.3139038085938], [788.6290283203125, 827.020751953125, 820.4817504882812, 765.205322265625], [798.8480834960938, 831.4061889648438, 826.8060913085938, 790.124755859375], [800.9327392578125, 831.9368896484375, 825.2402954101562, 795.725341796875], [802.1487426757812, 826.889892578125, 819.4746704101562, 772.512939453125], [809.6223754882812, 823.735107421875, 813.1607055664062, 766.11572265625], [821.0032348632812, 825.5902709960938, 816.6100463867188, 772.7252197265625], [808.639892578125, 827.169921875, 821.1605224609375, 790.9142456054688], [805.9691772460938, 826.7634887695312, 821.6246337890625, 785.875244140625], [807.3067016601562, 828.4866943359375, 827.6546630859375, 792.5108642578125], [818.5479736328125, 831.6735229492188, 827.5941162109375, 791.0224609375], [808.5807495117188, 832.3247680664062, 823.891845703125, 779.1516723632812], [793.887939453125, 825.3235473632812, 817.2865600585938, 761.0550537109375], [805.2321166992188, 824.9791870117188, 814.7600708007812, 757.18408203125], [804.6001586914062, 828.7650756835938, 825.9551391601562, 777.872802734375], [782.5599975585938, 821.3819580078125, 823.7642211914062, 776.3163452148438], [809.0328369140625, 826.8204345703125, 831.1709594726562, 771.35693359375], [821.5257568359375, 831.8594970703125, 832.6331787109375, 784.955078125], [808.933349609375, 828.7142333984375, 826.4838256835938, 798.3456420898438], [805.9369506835938, 829.4612426757812, 826.0380859375, 789.6548461914062], [791.401611328125, 825.0167846679688, 815.6456909179688, 778.8047485351562], [785.5502319335938, 825.4730834960938, 822.0966186523438, 777.7251586914062], [787.8603515625, 825.6077270507812, 831.83544921875, 771.9623413085938], [797.8870849609375, 824.0963134765625, 834.4020385742188, 772.473876953125], [806.05078125, 825.8507080078125, 838.5350952148438, 779.449951171875], [820.8004760742188, 826.7745971679688, 840.9674682617188, 798.8540649414062], [809.244140625, 824.4589233398438, 841.3184204101562, 814.4606323242188], [790.8303833007812, 822.92333984375, 831.4627075195312, 790.9572143554688], [809.3911743164062, 824.397705078125, 826.8489990234375, 776.8046875], [808.6581420898438, 824.3706665039062, 835.0343017578125, 782.4165649414062], [798.0052490234375, 827.1961059570312, 834.8272094726562, 783.25830078125], [809.7601928710938, 829.85107421875, 834.6477661132812, 798.957275390625], [801.2791748046875, 826.450927734375, 835.2394409179688, 811.8692626953125], [784.1040649414062, 827.4609985351562, 827.5410766601562, 807.161376953125], [803.3410034179688, 835.1620483398438, 832.4022827148438, 822.2846069335938], [801.8880004882812, 832.0125732421875, 826.4332275390625, 801.8953247070312], [791.9500122070312, 827.2151489257812, 824.3339233398438, 780.1044921875], [810.93359375, 830.8902587890625, 836.7254028320312, 788.5855712890625], [800.3592529296875, 826.788330078125, 836.1309204101562, 788.8656005859375], [786.6746826171875, 825.4218139648438, 833.9276733398438, 784.6198120117188], [800.2989501953125, 828.9778442382812, 830.743896484375, 785.2581787109375], [801.7128295898438, 834.6458129882812, 830.6810302734375, 808.9553833007812], [796.924560546875, 839.1929931640625, 831.2842407226562, 816.9642333984375], [781.9990234375, 829.5511474609375, 824.7210083007812, 799.3818359375], [781.6600341796875, 822.8839111328125, 829.8580932617188, 790.8064575195312], [792.2830810546875, 820.8025512695312, 832.088623046875, 798.0848999023438], [808.896484375, 815.851806640625, 834.848388671875, 803.0884399414062], [824.1932373046875, 815.412841796875, 839.5656127929688, 810.5211791992188], [825.9531860351562, 818.8493041992188, 843.5599975585938, 822.5945434570312], [830.0633544921875, 820.1131591796875, 850.4002685546875, 840.1290283203125], [815.887451171875, 813.68896484375, 848.3848266601562, 824.6265869140625], [807.2916259765625, 810.7933959960938, 843.9278564453125, 803.1847534179688], [815.343994140625, 816.8714599609375, 848.0797119140625, 823.7908935546875], [834.017333984375, 818.1428833007812, 839.8709716796875, 824.5717163085938], [838.2913208007812, 819.781982421875, 836.2262573242188, 825.1329956054688], [813.7201538085938, 822.0250244140625, 842.7511596679688, 834.8898315429688], [802.7950439453125, 817.6989135742188, 843.009521484375, 832.1494750976562], [810.070556640625, 818.5986938476562, 847.0859985351562, 830.8778686523438], [799.5877075195312, 813.4195556640625, 845.0411987304688, 819.9100341796875], [808.54150390625, 813.3182373046875, 844.0087280273438, 812.6656494140625], [829.5899047851562, 824.6674194335938, 843.4815673828125, 820.5506591796875], [819.832763671875, 823.1124267578125, 834.0416870117188, 794.3956298828125], [811.2490234375, 819.9025268554688, 833.641845703125, 783.99267578125], [799.3866577148438, 822.8191528320312, 836.3707885742188, 796.4780883789062], [804.9200439453125, 830.6685180664062, 845.4896850585938, 808.78515625], [817.0048828125, 827.567138671875, 843.2546997070312, 817.70703125], [797.9179077148438, 820.87939453125, 834.1713256835938, 807.020263671875], [806.8767700195312, 828.1349487304688, 841.0403442382812, 803.3023071289062], [812.015380859375, 831.0420532226562, 839.8168334960938, 795.4828491210938], [798.6993408203125, 825.17578125, 834.9365844726562, 783.5585327148438], [810.821533203125, 828.1389770507812, 845.8389282226562, 791.9358520507812], [834.798095703125, 838.7803955078125, 852.6679077148438, 820.22900390625], [829.7985229492188, 837.16259765625, 847.0266723632812, 824.1817626953125], [819.995361328125, 831.8807373046875, 846.4481201171875, 814.9212646484375], [820.5115966796875, 831.45068359375, 843.3592529296875, 804.1531372070312], [813.1818237304688, 832.0108032226562, 845.2390747070312, 809.6095581054688], [817.8590087890625, 830.6754760742188, 852.486083984375, 809.8844604492188], [807.9326782226562, 830.4025268554688, 852.0997924804688, 803.1725463867188], [812.9500732421875, 833.16064453125, 853.2036743164062, 819.1989135742188], [799.8217163085938, 830.327392578125, 847.509521484375, 808.2217407226562], [789.9013671875, 835.3010864257812, 849.47705078125, 796.7359619140625], [801.4542846679688, 834.2487182617188, 844.6015625, 795.9608764648438], [800.5452880859375, 832.8798828125, 844.2879028320312, 799.6249389648438], [814.603271484375, 840.5701904296875, 852.6281127929688, 808.8944702148438], [831.6900634765625, 837.2724609375, 845.9213256835938, 812.5551147460938], [816.9159545898438, 833.368896484375, 845.3283081054688, 812.298095703125], [804.4894409179688, 834.80126953125, 844.003173828125, 808.1751708984375], [810.7852172851562, 835.3760986328125, 845.1934204101562, 798.1528930664062], [808.4610595703125, 836.395263671875, 849.7271728515625, 798.1244506835938], [802.4586791992188, 833.230712890625, 843.1043090820312, 786.7037963867188], [802.1285400390625, 839.2548217773438, 847.948486328125, 798.3049926757812], [818.3777465820312, 841.7459106445312, 852.2449951171875, 802.2241821289062], [818.8638916015625, 835.1243896484375, 843.4647827148438, 806.8441772460938], [814.4280395507812, 839.3180541992188, 849.384765625, 816.54345703125], [825.2611694335938, 841.4439697265625, 855.4255981445312, 817.53662109375], [829.4142456054688, 837.47509765625, 856.3968505859375, 832.06787109375], [824.838623046875, 833.4524536132812, 851.682373046875, 818.5758666992188], [804.0657348632812, 829.6400756835938, 843.5130615234375, 793.6234130859375], [804.0556030273438, 832.1728515625, 849.3936157226562, 810.7011108398438], [806.7651977539062, 828.197021484375, 841.97412109375, 796.87353515625], [799.264404296875, 827.0610961914062, 834.4078979492188, 777.3779296875], [812.7487182617188, 830.9164428710938, 841.7781372070312, 804.6181640625], [822.2565307617188, 830.6859130859375, 842.3082275390625, 810.603515625], [832.8763427734375, 832.1025390625, 843.3198852539062, 817.29736328125], [823.7344970703125, 829.9100952148438, 842.2261962890625, 814.2569580078125], [811.765380859375, 825.2462768554688, 837.652587890625, 811.4600830078125], [813.94580078125, 831.3406372070312, 846.6099243164062, 813.2679443359375], [809.4295043945312, 829.9308471679688, 847.3097534179688, 812.09033203125], [806.034423828125, 829.21435546875, 843.9339599609375, 807.4581909179688], [814.8436279296875, 835.1965942382812, 850.4699096679688, 814.2926635742188], [823.1469116210938, 839.8921508789062, 858.2471923828125, 821.2598876953125], [821.2715454101562, 841.3682250976562, 856.0657958984375, 816.265625], [809.4860229492188, 837.1332397460938, 846.7927856445312, 797.7279663085938], [797.6835327148438, 834.4246215820312, 848.2083129882812, 786.3524169921875], [807.4359130859375, 835.5113525390625, 849.856201171875, 801.5191650390625], [807.2552490234375, 831.852783203125, 839.8306274414062, 790.7407836914062], [801.2381591796875, 831.9673461914062, 843.0775146484375, 790.1763305664062], [812.634033203125, 834.1114501953125, 844.54833984375, 802.58935546875], [827.4041748046875, 835.6715698242188, 846.3007202148438, 800.958740234375], [822.9982299804688, 834.78759765625, 848.2850341796875, 797.3406982421875], [796.1361694335938, 827.1978759765625, 839.1151733398438, 793.989013671875], [802.7493286132812, 828.33349609375, 846.5198364257812, 799.1670532226562], [804.0826416015625, 827.4483032226562, 844.850830078125, 804.8677978515625], [786.669189453125, 825.3065185546875, 837.0443725585938, 786.7927856445312], [787.5061645507812, 831.600341796875, 848.7119750976562, 791.9016723632812], [803.203857421875, 830.3824462890625, 846.785400390625, 775.8214721679688], [811.3997192382812, 832.3536987304688, 844.181884765625, 773.2980346679688], [793.4669799804688, 831.89990234375, 842.4918212890625, 771.5086669921875], [784.205810546875, 826.1323852539062, 836.3739624023438, 773.2007446289062], [792.47607421875, 829.3613891601562, 836.7901611328125, 784.8186645507812], [793.5226440429688, 827.1551513671875, 833.403564453125, 790.5819702148438], [791.1656494140625, 828.0851440429688, 837.7318115234375, 805.4815063476562], [811.0894165039062, 829.3207397460938, 839.863037109375, 799.7532958984375], [819.7979736328125, 832.0516967773438, 841.99267578125, 807.01318359375], [815.4390258789062, 834.359375, 843.8091430664062, 805.6585693359375], [810.63671875, 828.2330322265625, 833.7548217773438, 780.8427734375], [798.234619140625, 832.061767578125, 836.4859619140625, 779.6640014648438], [790.9351196289062, 831.759033203125, 838.0169677734375, 791.4954833984375], [793.3607788085938, 827.6433715820312, 833.2391967773438, 773.3735961914062], [794.8130493164062, 831.4013061523438, 837.6637573242188, 772.7654418945312], [790.8284301757812, 830.4703369140625, 841.6456909179688, 787.0119018554688], [808.9810791015625, 834.087158203125, 847.827392578125, 780.72119140625], [827.1231689453125, 836.6365356445312, 851.1133422851562, 779.8643798828125], [795.2053833007812, 826.0020141601562, 837.4135131835938, 786.7738647460938], [805.7630004882812, 828.4760131835938, 841.4468994140625, 791.2850952148438], [813.9647216796875, 830.8128662109375, 844.656005859375, 792.1444702148438], [790.4513549804688, 824.8674926757812, 835.7108154296875, 788.9230346679688], [802.4063720703125, 827.4054565429688, 838.4312133789062, 789.0177612304688], [810.99853515625, 833.963623046875, 845.926513671875, 782.4295654296875], [813.1259155273438, 834.3351440429688, 843.7437744140625, 793.326416015625], [797.9688110351562, 829.0657348632812, 830.5311279296875, 795.8681030273438], [781.0225830078125, 825.2218017578125, 825.6920166015625, 777.357421875], [790.7886962890625, 827.05322265625, 830.0892944335938, 794.400634765625], [806.5675659179688, 827.5025024414062, 832.3287353515625, 797.224609375], [802.8809814453125, 830.198974609375, 839.733154296875, 790.7509765625], [813.8465576171875, 834.1474609375, 844.5785522460938, 792.6564331054688], [834.9273681640625, 836.5293579101562, 849.322998046875, 802.670654296875], [815.1771240234375, 835.1307373046875, 848.686279296875, 802.4215087890625], [785.0582885742188, 828.3742065429688, 839.552734375, 783.75927734375], [796.307861328125, 826.5055541992188, 838.8034057617188, 790.5802001953125], [809.2745361328125, 828.4803466796875, 840.8621826171875, 795.9348754882812], [794.2470092773438, 826.5635986328125, 836.228515625, 776.04736328125], [802.8593139648438, 829.841064453125, 839.1478881835938, 790.006591796875], [812.9666748046875, 831.65380859375, 837.2019653320312, 794.1231689453125], [801.1362915039062, 832.5956420898438, 835.5538940429688, 785.7473754882812], [799.4552612304688, 833.0607299804688, 837.7510375976562, 798.7059326171875], [794.2719116210938, 828.9850463867188, 824.0399169921875, 792.5469970703125], [799.2982177734375, 829.9498291015625, 823.836669921875, 796.798095703125], [807.6727294921875, 829.2675170898438, 827.298828125, 790.4525146484375], [803.7190551757812, 822.8031616210938, 819.670166015625, 780.5723876953125], [810.8604736328125, 824.3914184570312, 826.0525512695312, 782.78173828125], [806.4225463867188, 828.6326293945312, 836.5377807617188, 787.9906005859375], [803.6312866210938, 830.6194458007812, 841.3260498046875, 784.031982421875], [784.3472900390625, 826.9837646484375, 836.6273193359375, 786.5328369140625], [773.6505126953125, 823.5214233398438, 832.1710815429688, 790.8751831054688], [786.4044799804688, 827.8023681640625, 841.115234375, 789.0679321289062], [787.1505126953125, 819.0971069335938, 832.4293823242188, 785.8818969726562], [801.3055419921875, 817.4346923828125, 827.0767822265625, 780.13037109375], [816.3768310546875, 822.19970703125, 835.0834350585938, 788.285888671875], [815.8049926757812, 827.673828125, 843.179443359375, 805.8272094726562], [799.498046875, 828.2594604492188, 835.7421264648438, 797.3822631835938], [788.7367553710938, 822.27685546875, 826.5535888671875, 785.1785278320312], [795.0590209960938, 829.2224731445312, 834.9330444335938, 803.5828857421875], [798.0296020507812, 830.38720703125, 828.3086547851562, 785.7603149414062], [797.2659912109375, 826.1072387695312, 818.346435546875, 769.1561279296875], [812.3570556640625, 832.635009765625, 829.1612548828125, 791.8317260742188], [808.8935546875, 834.4575805664062, 831.4542846679688, 800.9010620117188], [799.6788940429688, 832.5120239257812, 826.5564575195312, 789.5338745117188], [801.6558837890625, 837.6248779296875, 837.2719116210938, 805.08935546875], [789.0941772460938, 829.9051513671875, 830.3832397460938, 797.40234375], [808.706787109375, 828.3052978515625, 827.3656616210938, 780.287353515625], [810.7465209960938, 832.7354125976562, 836.1171264648438, 787.14453125], [795.6280517578125, 828.5780029296875, 833.8358154296875, 786.9865112304688], [804.9210205078125, 826.1245727539062, 829.7035522460938, 785.1790161132812], [809.3411254882812, 831.7703857421875, 833.3163452148438, 787.6510620117188], [793.54052734375, 831.1987915039062, 835.6029663085938, 793.1718139648438], [793.2119140625, 830.4205932617188, 833.7251586914062, 792.8636474609375], [800.7345581054688, 832.6546630859375, 830.4412841796875, 779.5241088867188], [796.5105590820312, 831.5565795898438, 834.8225708007812, 788.5911254882812], [797.6649780273438, 836.7286987304688, 834.301025390625, 805.7039794921875], [802.1513061523438, 837.1890869140625, 826.7977294921875, 788.9248046875], [811.7371215820312, 837.5866088867188, 831.0808715820312, 800.039306640625], [813.0776977539062, 838.4610595703125, 830.9650268554688, 804.724365234375], [822.1701049804688, 838.5011596679688, 837.8409423828125, 795.938720703125], [807.1494750976562, 833.751220703125, 836.2025146484375, 778.1278686523438], [794.2487182617188, 829.4484252929688, 835.5978393554688, 784.660888671875], [805.3482055664062, 833.4442749023438, 841.8903198242188, 794.0634765625], [787.9620971679688, 829.3408203125, 830.2699584960938, 779.359130859375], [789.458984375, 831.2373046875, 833.0953979492188, 792.5701293945312], [813.6564331054688, 835.6027221679688, 836.317626953125, 804.8936767578125], [810.9246215820312, 836.2903442382812, 837.7857055664062, 802.4907836914062], [800.1714477539062, 839.0945434570312, 843.1915893554688, 794.73876953125], [802.2931518554688, 833.6581420898438, 837.250732421875, 794.7462158203125], [798.2366943359375, 833.383056640625, 838.1035766601562, 790.5333862304688], [791.4290771484375, 836.0830078125, 843.4384155273438, 786.5074462890625], [796.8485107421875, 832.396484375, 835.010498046875, 778.5287475585938], [802.7689208984375, 830.8477783203125, 833.8972778320312, 781.7769165039062], [806.464111328125, 834.0692749023438, 835.9036865234375, 794.6815185546875], [805.1309814453125, 839.2546997070312, 834.7294311523438, 793.3150634765625], [792.6085815429688, 833.6654052734375, 829.40869140625, 790.5427856445312], [788.1716918945312, 829.2637939453125, 828.1939086914062, 797.2470703125], [791.223388671875, 837.1683959960938, 837.6031494140625, 788.1614379882812], [784.7923583984375, 835.288330078125, 841.3978881835938, 790.708251953125], [788.9979248046875, 828.0838623046875, 840.0421142578125, 789.8571166992188], [797.358642578125, 831.6727905273438, 836.2470092773438, 788.9915161132812], [808.5535278320312, 835.0780639648438, 835.0220336914062, 788.5150146484375], [817.1693115234375, 837.7562866210938, 842.7606811523438, 799.0430297851562], [807.416259765625, 833.3273315429688, 835.0025634765625, 792.7060546875], [813.2212524414062, 834.2451171875, 835.4505004882812, 786.17578125], [823.0830078125, 840.5432739257812, 849.1654663085938, 811.570068359375], [813.944580078125, 833.1714477539062, 840.2511596679688, 809.9425048828125], [814.7398071289062, 832.9736938476562, 832.0599365234375, 801.7379150390625], [818.1488037109375, 839.2127075195312, 833.160400390625, 797.4519653320312], [819.188720703125, 836.9498291015625, 829.0712280273438, 797.546875], [809.3706665039062, 834.3308715820312, 826.1611328125, 776.2571411132812], [774.5809326171875, 828.1494750976562, 818.9920043945312, 761.5035400390625], [784.2025756835938, 826.7283935546875, 823.9696044921875, 772.9089965820312], [799.2755126953125, 823.4835815429688, 826.5299072265625, 776.4509887695312], [787.7014770507812, 822.7462768554688, 828.6488037109375, 772.7731323242188], [802.8546752929688, 830.251708984375, 834.9467163085938, 785.8727416992188], [836.1876831054688, 835.6732177734375, 838.2216796875, 800.4618530273438], [810.2101440429688, 834.3252563476562, 835.9089965820312, 793.54296875], [798.6654052734375, 835.5130615234375, 833.6781005859375, 784.5215454101562], [790.9782104492188, 837.43896484375, 836.5321655273438, 787.5025634765625], [787.5457763671875, 834.4649047851562, 840.5722045898438, 792.12744140625], [803.90087890625, 833.6005859375, 840.1121215820312, 776.9276733398438], [807.6787719726562, 836.4837036132812, 837.4661865234375, 791.6453247070312], [823.6112670898438, 836.9127807617188, 839.0858154296875, 805.4262084960938], [820.4358520507812, 833.8577880859375, 833.7949829101562, 798.024658203125], [795.6853637695312, 834.6690673828125, 834.4400634765625, 794.1017456054688], [791.1906127929688, 834.7509765625, 837.7496948242188, 794.3012084960938], [782.9305419921875, 828.37451171875, 835.002685546875, 785.045166015625], [788.8123779296875, 833.4634399414062, 837.504150390625, 790.5564575195312], [816.951416015625, 834.4714965820312, 831.8618774414062, 799.455322265625], [814.1998291015625, 832.036865234375, 830.13427734375, 797.66357421875], [808.8713989257812, 838.2500610351562, 837.2109985351562, 796.5499877929688], [816.9330444335938, 842.2130126953125, 843.2963256835938, 815.4063720703125], [805.0159301757812, 843.6996459960938, 843.0636596679688, 796.3536987304688], [798.3578491210938, 836.6477661132812, 836.6068725585938, 784.0702514648438], [813.4263305664062, 836.2901000976562, 836.4254760742188, 810.16455078125], [830.3080444335938, 840.1387329101562, 836.7318725585938, 802.1373291015625], [818.7147827148438, 834.6481323242188, 838.3154907226562, 798.2246704101562], [818.2838134765625, 835.6953735351562, 844.5819091796875, 806.2979125976562], [811.397216796875, 840.52490234375, 849.8944702148438, 812.0523681640625], [810.8941040039062, 839.3006591796875, 845.9644165039062, 806.8733520507812], [804.7762451171875, 833.2509155273438, 838.2448120117188, 809.4451293945312], [789.5640258789062, 825.6597290039062, 832.6183471679688, 801.7741088867188], [822.9368896484375, 828.1961059570312, 833.55322265625, 802.2105712890625], [814.63916015625, 831.29638671875, 838.356689453125, 809.799072265625], [801.2892456054688, 828.1341552734375, 838.257080078125, 784.6903076171875], [816.7136840820312, 836.3091430664062, 844.6686401367188, 790.467529296875], [802.2919311523438, 837.8257446289062, 839.727294921875, 806.527587890625], [803.740234375, 836.821533203125, 841.8164672851562, 798.1469116210938], [802.671142578125, 836.1029052734375, 844.4754028320312, 801.64013671875], [801.0368041992188, 832.9884033203125, 836.801025390625, 810.126708984375], [819.5728149414062, 836.7698974609375, 838.7579956054688, 807.7831420898438], [828.2715454101562, 836.0680541992188, 838.8638305664062, 798.9671020507812], [822.33544921875, 834.4307250976562, 835.660400390625, 794.7073364257812], [831.2030639648438, 839.6956176757812, 838.2391967773438, 804.8955688476562], [830.02197265625, 843.1353759765625, 848.4685668945312, 811.9317626953125], [812.7100830078125, 843.3392333984375, 851.5514526367188, 808.0048217773438], [815.3394165039062, 841.6051025390625, 842.5912475585938, 807.1321411132812], [790.04345703125, 844.9227905273438, 847.52978515625, 815.4265747070312], [789.8883056640625, 842.666259765625, 843.0899658203125, 801.0187377929688], [808.5558471679688, 838.7327270507812, 835.810302734375, 789.731689453125], [803.6160278320312, 842.3395385742188, 840.5796508789062, 799.6212158203125], [812.9909057617188, 843.97412109375, 841.8487548828125, 802.2988891601562], [835.0662841796875, 846.055419921875, 845.5252075195312, 800.0908203125], [830.9393310546875, 842.9820556640625, 840.0054931640625, 803.15771484375], [816.410888671875, 839.3717041015625, 833.2342529296875, 794.1962890625], [815.25390625, 843.6422119140625, 844.6166381835938, 799.5585327148438], [802.9427490234375, 839.6700439453125, 840.0540771484375, 793.992919921875], [803.732177734375, 836.8956298828125, 833.6873168945312, 787.9173583984375], [802.2169799804688, 839.4130859375, 841.06494140625, 806.7839965820312], [787.0321655273438, 837.8009643554688, 840.1668701171875, 812.459228515625], [801.063232421875, 838.4179077148438, 843.1444702148438, 807.6976318359375], [802.330810546875, 836.5352783203125, 841.1298217773438, 801.7660522460938], [790.3198852539062, 834.4262084960938, 840.1804809570312, 795.3099365234375], [799.841552734375, 837.37255859375, 846.1801147460938, 786.0217895507812], [812.1773681640625, 838.5830688476562, 842.1293334960938, 785.5438232421875], [812.5863647460938, 833.5233154296875, 834.779541015625, 784.0200805664062], [796.88623046875, 830.1270751953125, 833.6079711914062, 788.56396484375], [805.0264282226562, 835.4124755859375, 841.9793090820312, 797.8395385742188], [801.3465576171875, 835.9468994140625, 846.3464965820312, 801.7048950195312], [776.9404907226562, 827.182373046875, 838.86865234375, 797.1439819335938], [791.708251953125, 829.2083129882812, 841.1708984375, 798.66357421875], [793.7693481445312, 832.2847900390625, 844.15771484375, 796.9771118164062], [796.8922729492188, 828.0908813476562, 833.5886840820312, 786.1454467773438], [806.9278564453125, 828.181640625, 828.1002807617188, 784.7774047851562], [796.3005981445312, 828.8702392578125, 829.0136108398438, 777.8800659179688], [799.683837890625, 832.9033203125, 839.3193359375, 797.17333984375], [811.5033569335938, 831.2510375976562, 839.046142578125, 795.21728515625], [786.076171875, 820.7648315429688, 827.4179077148438, 779.6798095703125], [803.7630615234375, 825.860107421875, 839.6702270507812, 781.5081787109375], [822.5316772460938, 828.037841796875, 837.7835083007812, 778.7864990234375], [784.7235717773438, 823.3759155273438, 827.7340087890625, 769.1751708984375], [787.8274536132812, 829.4401245117188, 838.8922729492188, 785.71728515625], [789.47607421875, 829.7799072265625, 840.7865600585938, 799.8505859375], [774.806640625, 826.1915893554688, 839.8695068359375, 796.929931640625], [791.6185302734375, 824.15576171875, 838.7453002929688, 790.5128784179688], [802.5757446289062, 819.0762329101562, 834.1828002929688, 774.10693359375], [813.5352783203125, 825.3241577148438, 839.4156494140625, 787.4199829101562], [813.6339721679688, 829.2951049804688, 837.005126953125, 791.6954345703125], [793.4598388671875, 830.0997924804688, 838.9808959960938, 794.0833740234375], [786.516357421875, 833.1622314453125, 840.9765014648438, 808.7183227539062], [794.8821411132812, 836.5230102539062, 844.6609497070312, 805.3890380859375], [796.5948486328125, 833.4824829101562, 847.7660522460938, 792.2361450195312], [798.8563232421875, 826.373779296875, 842.6666259765625, 787.4627685546875], [825.7990112304688, 833.1057739257812, 844.708251953125, 801.1561889648438], [817.2737426757812, 833.1060791015625, 842.944091796875, 809.677978515625], [797.5603637695312, 826.5866088867188, 833.3690185546875, 800.7457885742188], [801.4151611328125, 829.6365966796875, 831.3294067382812, 803.3192749023438], [805.76953125, 825.1774291992188, 832.7769165039062, 796.2928466796875], [811.3466796875, 825.27294921875, 838.3651733398438, 795.15771484375], [810.9033813476562, 829.238037109375, 847.5694580078125, 808.010498046875], [811.5404052734375, 824.3946533203125, 837.7969360351562, 796.702392578125], [815.3117065429688, 829.8162231445312, 838.5339965820312, 802.1840209960938], [789.8907470703125, 832.5589599609375, 839.3176879882812, 805.2173461914062], [787.8916625976562, 827.9007568359375, 832.8096923828125, 783.4017944335938], [799.3057861328125, 825.1720581054688, 832.7446899414062, 781.74609375], [808.06298828125, 829.1250610351562, 841.5911865234375, 798.634765625], [813.2399291992188, 832.4686889648438, 849.6408081054688, 810.3289184570312], [815.3184814453125, 829.8221435546875, 840.2552490234375, 799.7876586914062], [809.3535766601562, 828.2582397460938, 832.3250122070312, 790.0933227539062], [802.0689086914062, 833.7286376953125, 837.009033203125, 802.9630126953125], [815.04833984375, 833.4832763671875, 831.4957275390625, 788.5269775390625], [792.8097534179688, 830.7996826171875, 831.0164794921875, 786.671875], [797.6270141601562, 834.9229736328125, 838.8790283203125, 802.0731811523438], [820.2357177734375, 837.94482421875, 842.8836059570312, 804.3778076171875], [802.1083374023438, 836.80078125, 844.6788330078125, 813.755859375], [795.1549072265625, 833.9677124023438, 839.6348876953125, 806.2896728515625], [808.3004150390625, 835.7285766601562, 840.2498168945312, 786.8403930664062], [808.6715087890625, 837.448486328125, 839.6359252929688, 806.19140625], [777.7133178710938, 833.6902465820312, 834.06787109375, 785.6925048828125], [783.4561157226562, 834.8787231445312, 840.9003295898438, 767.46484375], [786.391357421875, 834.9976196289062, 844.6055908203125, 789.1320190429688], [778.738037109375, 831.1303100585938, 842.4525756835938, 796.525146484375], [807.7284545898438, 833.3251342773438, 850.5696411132812, 796.593994140625], [803.9556274414062, 829.7626953125, 843.0156860351562, 798.5781860351562], [800.375, 831.7186279296875, 841.3973999023438, 804.9080810546875], [810.1616821289062, 834.3978881835938, 842.7398071289062, 797.5758056640625], [792.6748046875, 829.2099609375, 837.0628051757812, 784.4298095703125], [792.9061279296875, 831.8555908203125, 842.6658935546875, 790.8524780273438], [811.439208984375, 834.3721923828125, 842.7347412109375, 794.4762573242188], [819.3869018554688, 836.378173828125, 846.1927490234375, 791.0720825195312], [807.192138671875, 832.86962890625, 840.7811889648438, 786.1452026367188], [793.1121215820312, 830.111572265625, 833.853271484375, 774.900634765625], [802.1212158203125, 837.524658203125, 843.3517456054688, 776.74560546875], [780.549560546875, 831.8905029296875, 842.3402099609375, 791.0794677734375], [782.6495361328125, 828.6688232421875, 838.3800048828125, 797.6920166015625], [816.5233154296875, 835.7407836914062, 846.5429077148438, 797.78564453125], [802.3755493164062, 836.2606201171875, 851.6714477539062, 810.6470947265625], [796.6414794921875, 832.8231201171875, 843.9761352539062, 803.566650390625], [801.5151977539062, 828.836181640625, 837.7816162109375, 776.602294921875], [788.9508056640625, 832.9431762695312, 844.9210815429688, 777.5275268554688], [784.1412963867188, 832.3561401367188, 844.9481811523438, 785.1985473632812], [787.7859497070312, 831.6115112304688, 843.081298828125, 787.2047729492188], [799.4024658203125, 834.7151489257812, 849.1053466796875, 785.8929443359375], [790.6603393554688, 829.654541015625, 847.8058471679688, 792.5648803710938], [804.1292724609375, 832.6541748046875, 847.9174194335938, 800.7030029296875], [816.2694091796875, 834.1571655273438, 851.6189575195312, 802.1231079101562], [802.0193481445312, 823.0711669921875, 840.9257202148438, 789.1682739257812], [811.3027954101562, 830.8630981445312, 842.8261108398438, 794.2508544921875], [812.9042358398438, 834.8447875976562, 849.7305908203125, 805.63037109375], [804.7416381835938, 828.0557250976562, 841.0887451171875, 801.8117065429688], [806.3594970703125, 831.6011352539062, 841.9089965820312, 797.8917846679688], [819.071533203125, 834.1029052734375, 847.9058227539062, 800.86376953125], [822.9813232421875, 832.1190795898438, 848.3331298828125, 810.6633911132812], [805.8865966796875, 830.4652099609375, 847.9139404296875, 786.6445922851562], [799.1751708984375, 827.32080078125, 843.0718994140625, 775.459716796875], [794.1978149414062, 828.3273315429688, 843.180908203125, 786.1284790039062], [789.7726440429688, 829.8434448242188, 842.0580444335938, 779.6809692382812], [795.8571166992188, 827.830322265625, 834.5088500976562, 780.466552734375], [808.451416015625, 831.7283325195312, 839.8956298828125, 796.1755981445312], [816.9459838867188, 831.2529296875, 844.6461181640625, 797.9828491210938], [823.14208984375, 832.091552734375, 847.8495483398438, 806.008544921875], [821.1105346679688, 828.5016479492188, 842.7152099609375, 799.5463256835938], [800.5040283203125, 828.9341430664062, 844.1256103515625, 795.11181640625], [792.7791748046875, 835.3532104492188, 849.4214477539062, 794.8479614257812], [784.2479858398438, 832.9755859375, 838.1709594726562, 786.4154663085938], [773.530029296875, 835.8155517578125, 845.2034301757812, 796.6834106445312], [785.1289672851562, 840.2678833007812, 849.3147583007812, 800.8785400390625], [801.185546875, 838.3203125, 844.06884765625, 799.2030639648438], [818.8070068359375, 839.6730346679688, 847.2357788085938, 817.40625], [805.6439819335938, 833.28515625, 838.8655395507812, 804.406494140625], [804.6834716796875, 832.7298583984375, 837.0393676757812, 789.80517578125], [800.2322998046875, 835.5389404296875, 843.731201171875, 803.5990600585938], [792.4236450195312, 829.5913696289062, 839.866943359375, 794.5416259765625], [806.1243896484375, 830.0559692382812, 837.0680541992188, 777.6840209960938], [808.6994018554688, 836.8883056640625, 845.7797241210938, 781.2758178710938], [799.988037109375, 838.3944702148438, 845.4667358398438, 786.7332763671875], [792.5848388671875, 833.7412109375, 837.6256103515625, 776.7235107421875], [796.770751953125, 835.0701293945312, 838.185546875, 780.9530029296875], [793.1001586914062, 838.3602294921875, 841.1499633789062, 794.4471435546875], [806.2420654296875, 834.1650390625, 839.9164428710938, 800.7347412109375], [837.2230224609375, 832.9331665039062, 837.24560546875, 790.0479125976562], [813.5211791992188, 833.1765747070312, 834.2278442382812, 782.54736328125], [793.1087036132812, 830.522216796875, 832.0813598632812, 783.4649047851562], [800.5531616210938, 833.1849975585938, 838.6405029296875, 786.701171875], [774.546875, 828.9885864257812, 833.6725463867188, 786.799072265625], [759.9578857421875, 825.3378295898438, 828.413330078125, 786.4715576171875], [785.8381958007812, 831.01513671875, 842.61474609375, 802.2658081054688], [788.0620727539062, 826.275634765625, 839.4405517578125, 795.1560668945312], [782.88623046875, 825.9437255859375, 833.3908081054688, 791.553955078125], [796.7405395507812, 831.0609741210938, 837.5050659179688, 793.8684692382812], [810.0631713867188, 832.8193359375, 840.7732543945312, 792.8095703125], [808.0411376953125, 833.7265014648438, 840.4546508789062, 791.7238159179688], [794.4729614257812, 831.2529296875, 829.3949584960938, 776.9242553710938], [796.4536743164062, 831.9381713867188, 831.6925659179688, 774.5182495117188], [800.6730346679688, 831.8856811523438, 833.09814453125, 784.7477416992188], [802.7706298828125, 832.1400146484375, 827.216064453125, 788.3681030273438], [811.5228271484375, 837.8718872070312, 836.6834716796875, 795.8036499023438], [819.2195434570312, 840.0364990234375, 845.9486083984375, 809.3214721679688], [821.1942749023438, 835.1803588867188, 847.5804443359375, 808.9830322265625], [811.1210327148438, 834.5881958007812, 846.302490234375, 795.93017578125], [798.2282104492188, 831.0576782226562, 843.9568481445312, 795.9700927734375], [806.3109130859375, 830.3458251953125, 845.7208862304688, 805.4200439453125], [800.4486083984375, 834.2222900390625, 838.34716796875, 796.3502197265625], [790.2018432617188, 836.7677612304688, 841.3955078125, 800.2421875], [791.023193359375, 838.9983520507812, 846.439453125, 799.1780395507812], [788.2767333984375, 838.477783203125, 841.9063110351562, 791.83056640625], [804.6168823242188, 840.8556518554688, 843.3729248046875, 792.7728881835938], [811.902587890625, 836.0557250976562, 840.9697875976562, 795.3622436523438], [824.8833618164062, 835.1383056640625, 839.8170166015625, 794.1610107421875], [818.3133544921875, 840.5489501953125, 842.4866943359375, 812.4320068359375], [796.818359375, 833.2379150390625, 840.662109375, 809.2562866210938], [784.9228515625, 830.909912109375, 846.7236328125, 804.0521240234375], [783.370849609375, 836.6145629882812, 849.5775146484375, 807.0551147460938], [792.2899780273438, 836.8441162109375, 851.02783203125, 811.39306640625], [806.7556762695312, 840.8076171875, 853.1824340820312, 807.7769775390625], [820.3299560546875, 841.72119140625, 842.1748046875, 780.7754516601562], [817.4476928710938, 845.2802734375, 837.212646484375, 794.3358764648438], [810.1246948242188, 848.063232421875, 835.8837280273438, 806.473876953125], [816.8359375, 846.0430297851562, 832.5440673828125, 790.82373046875], [814.3510131835938, 849.518798828125, 833.8770751953125, 797.707763671875], [822.5321044921875, 853.5458984375, 837.8177490234375, 821.027587890625], [838.1749267578125, 852.8096923828125, 835.362060546875, 808.258056640625], [827.3042602539062, 854.506103515625, 829.817626953125, 796.6227416992188], [825.372314453125, 852.3428344726562, 825.9072875976562, 801.3335571289062], [831.4254760742188, 849.9031372070312, 823.1663818359375, 819.4574584960938], [829.0784301757812, 850.5372924804688, 826.1305541992188, 819.100341796875], [818.2686157226562, 848.7284545898438, 831.7095947265625, 820.3692626953125], [829.6489868164062, 847.3236694335938, 831.7073364257812, 828.897216796875], [821.7119140625, 844.3668212890625, 826.246337890625, 813.8623046875], [823.4962158203125, 846.5323486328125, 830.9957275390625, 810.9212646484375], [826.2210083007812, 847.7855834960938, 829.30517578125, 806.5750732421875], [815.71923828125, 843.1253662109375, 821.4494018554688, 797.323974609375], [826.35302734375, 842.5516967773438, 828.0902709960938, 805.3302612304688], [815.692626953125, 844.3062133789062, 827.9358520507812, 805.1906127929688], [809.3297119140625, 842.4024658203125, 828.2685546875, 797.5925903320312], [817.6279296875, 838.6837158203125, 829.924560546875, 801.8168334960938], [830.8165893554688, 845.3558959960938, 836.066650390625, 816.1883544921875], [839.0846557617188, 847.7081298828125, 843.00830078125, 824.593505859375], [836.921630859375, 839.981689453125, 836.8810424804688, 812.3379516601562], [834.3088989257812, 839.8617553710938, 831.6581420898438, 811.3275756835938], [820.7197875976562, 838.5619506835938, 832.34912109375, 807.301513671875], [813.1869506835938, 835.4222412109375, 826.5635986328125, 792.2039794921875], [807.9235229492188, 834.4756469726562, 827.0443115234375, 791.5243530273438], [805.423828125, 838.4151000976562, 837.8555297851562, 799.2727661132812], [825.8706665039062, 842.52783203125, 845.231201171875, 812.4140014648438], [826.0633544921875, 837.9706420898438, 841.6809692382812, 810.5003051757812], [812.6237182617188, 832.8768310546875, 831.6090087890625, 788.9611206054688], [820.809326171875, 838.7842407226562, 837.5055541992188, 794.1096801757812], [822.4509887695312, 838.4869384765625, 832.6467895507812, 793.3756103515625], [804.9036254882812, 835.843505859375, 829.6560668945312, 785.0968627929688], [804.7981567382812, 839.2141723632812, 838.1951293945312, 791.9091796875], [816.3026123046875, 839.4253540039062, 838.0439453125, 805.8140869140625], [799.0345458984375, 840.079833984375, 841.9505615234375, 809.5325317382812], [792.3629150390625, 833.6807250976562, 834.7525024414062, 787.44580078125], [786.7230224609375, 832.587646484375, 823.34423828125, 783.2567749023438], [795.7327270507812, 839.718994140625, 833.03466796875, 788.336181640625], [796.9646606445312, 836.6288452148438, 830.9456176757812, 790.96044921875], [799.1588745117188, 834.0914306640625, 820.0757446289062, 789.0962524414062], [812.9164428710938, 834.3509521484375, 827.253662109375, 792.6632080078125], [815.2315063476562, 835.8287353515625, 837.721435546875, 799.88720703125], [805.0059814453125, 837.3395385742188, 836.7316284179688, 791.9772338867188], [787.472900390625, 832.6727294921875, 830.018310546875, 782.03466796875], [791.4052124023438, 833.8387451171875, 834.8320922851562, 787.9443359375], [802.25244140625, 837.494140625, 836.7269287109375, 799.1060791015625], [799.1690673828125, 834.7304077148438, 828.8060302734375, 806.4723510742188], [799.7213745117188, 835.8934326171875, 832.0298461914062, 799.3204345703125], [826.3228149414062, 839.841552734375, 837.9436645507812, 784.94384765625], [815.0659790039062, 847.5841064453125, 843.5154418945312, 805.8317260742188], [796.9600219726562, 846.7316284179688, 841.5546875, 787.902099609375], [802.2119140625, 840.517822265625, 830.3927001953125, 769.8594970703125], [812.619873046875, 843.8529663085938, 832.9068603515625, 797.2032470703125], [806.7114868164062, 840.7564086914062, 831.4950561523438, 795.1800537109375], [817.4691772460938, 838.5405883789062, 826.1278686523438, 781.2427368164062], [831.3265991210938, 847.858642578125, 833.9744873046875, 800.0176391601562], [816.9954833984375, 847.1016235351562, 837.4159545898438, 811.2203979492188], [813.6196899414062, 846.9971923828125, 836.8486328125, 810.7047729492188], [798.12890625, 849.0828857421875, 831.5257568359375, 807.314697265625], [793.7666015625, 841.84228515625, 831.06640625, 808.155517578125], [798.88916015625, 843.8145141601562, 837.9877319335938, 807.23193359375], [798.7005004882812, 846.3976440429688, 836.4298706054688, 801.5938110351562], [815.9201049804688, 846.7111206054688, 844.1647338867188, 810.9560546875], [809.4736938476562, 844.120361328125, 847.1904907226562, 809.3922119140625], [807.7142333984375, 846.3986206054688, 850.5634765625, 814.9107666015625], [809.3661499023438, 846.2757568359375, 849.0093383789062, 810.0186767578125], [804.07958984375, 838.846435546875, 840.1696166992188, 800.3948974609375], [802.876708984375, 842.6575927734375, 842.11865234375, 802.3900756835938], [808.44482421875, 845.3817749023438, 838.5700073242188, 803.7047729492188], [809.2156982421875, 839.6227416992188, 830.7582397460938, 803.8749389648438], [812.7725830078125, 839.8065795898438, 833.6383666992188, 797.8491821289062], [812.7332153320312, 840.6112060546875, 834.89892578125, 795.0009765625], [817.883056640625, 838.6157836914062, 834.0333862304688, 804.5191040039062], [833.5811157226562, 842.86572265625, 840.8588256835938, 805.657470703125], [825.4907836914062, 837.1978759765625, 834.2246704101562, 797.0115356445312], [811.1233520507812, 839.19677734375, 830.802001953125, 792.7741088867188], [812.1758422851562, 844.0469970703125, 839.3297119140625, 799.203369140625], [803.3763427734375, 841.1096801757812, 839.8328857421875, 793.7616577148438], [787.4786376953125, 839.0576171875, 835.7830200195312, 780.6696166992188], [800.5906982421875, 843.81005859375, 846.1976928710938, 804.3754272460938], [823.0840454101562, 845.2737426757812, 851.99365234375, 827.7931518554688], [809.8805541992188, 837.6685791015625, 840.5451049804688, 807.6776733398438], [794.484619140625, 836.02099609375, 832.494384765625, 796.3543701171875], [811.6716918945312, 840.1202392578125, 838.3856811523438, 813.9640502929688], [799.7036743164062, 837.1465454101562, 838.0765991210938, 798.1810913085938], [792.5480346679688, 839.5093994140625, 836.230224609375, 791.3675537109375], [808.6480102539062, 844.1705932617188, 841.5818481445312, 792.611572265625], [810.0380249023438, 845.86083984375, 845.9059448242188, 802.9581909179688], [816.1834106445312, 847.6427001953125, 844.4765014648438, 793.3665161132812], [802.3681640625, 843.4039916992188, 835.3743286132812, 784.9849853515625], [799.4982299804688, 842.500732421875, 838.0194091796875, 799.9158325195312], [816.63720703125, 843.9131469726562, 840.3284912109375, 809.8572387695312], [812.308349609375, 839.7938842773438, 834.6498413085938, 807.4536743164062], [808.6409301757812, 846.2850952148438, 842.0087280273438, 810.6788330078125], [816.7503662109375, 848.376708984375, 841.44580078125, 806.0457153320312], [821.3911743164062, 844.6793823242188, 841.46826171875, 796.0985107421875], [806.8876953125, 846.4683837890625, 849.3297119140625, 793.9739990234375], [797.0806884765625, 837.0679931640625, 837.68896484375, 781.094482421875], [796.7139282226562, 834.438720703125, 840.8819580078125, 786.7033081054688], [799.9105224609375, 835.5938720703125, 842.0918579101562, 792.4721069335938], [809.8187866210938, 832.8294677734375, 834.1823120117188, 790.2037963867188], [813.4134521484375, 836.5225830078125, 839.9421997070312, 800.341796875], [836.8557739257812, 839.5834350585938, 843.593994140625, 803.1344604492188], [830.6732788085938, 841.149658203125, 847.1710205078125, 802.7352294921875], [787.5033569335938, 834.3570556640625, 839.9002075195312, 797.6829223632812], [789.6135864257812, 830.978759765625, 832.0006713867188, 776.9916381835938], [785.1900634765625, 836.2908325195312, 838.4625854492188, 786.59912109375], [774.2221069335938, 832.6810302734375, 837.745849609375, 791.4202880859375], [803.0118408203125, 829.2870483398438, 836.116943359375, 783.39599609375], [818.1085205078125, 833.1002197265625, 842.9116821289062, 795.0139770507812], [808.9363403320312, 835.2376708984375, 850.4680786132812, 809.8405151367188], [792.8360595703125, 828.759521484375, 842.5269775390625, 807.2871704101562], [788.0126342773438, 823.8926391601562, 831.9772338867188, 791.6655883789062], [803.9583129882812, 830.0196533203125, 839.2767944335938, 803.0736694335938], [803.2427978515625, 830.4766845703125, 840.6161499023438, 805.617431640625], [805.355712890625, 830.5670166015625, 838.42724609375, 794.22900390625], [821.5586547851562, 834.3425903320312, 839.593017578125, 792.0182495117188], [806.0087890625, 834.7012939453125, 835.3515625, 789.980224609375], [799.7620239257812, 837.685546875, 838.5535888671875, 797.6235961914062], [802.9529418945312, 839.1968383789062, 836.701416015625, 789.427978515625], [811.4490966796875, 835.220458984375, 831.5944213867188, 778.2007446289062], [818.2523193359375, 839.5979614257812, 844.32373046875, 795.75830078125], [819.6617431640625, 841.478515625, 846.2640991210938, 794.1976928710938], [809.5953369140625, 837.5634765625, 841.533447265625, 782.7214965820312], [806.4622802734375, 840.1859130859375, 843.3895263671875, 791.5682373046875], [806.3417358398438, 841.1021728515625, 840.5296630859375, 790.6215209960938], [790.7764892578125, 844.6569213867188, 842.1575317382812, 793.2808227539062], [798.721923828125, 845.8424072265625, 840.54296875, 784.1544799804688], [798.1987915039062, 838.0540771484375, 834.9241943359375, 784.8224487304688], [800.4829711914062, 844.875, 843.0135498046875, 798.6005249023438], [802.458984375, 844.5184936523438, 841.6904296875, 786.3732299804688], [812.1537475585938, 840.8486938476562, 838.0296020507812, 784.7197265625], [797.0061645507812, 849.22705078125, 843.30810546875, 798.9923095703125], [781.6298217773438, 850.8087158203125, 843.3733520507812, 788.6602172851562], [798.0274658203125, 848.8781127929688, 844.4627685546875, 798.689208984375], [779.4180908203125, 843.322265625, 839.0237426757812, 797.8179931640625], [783.3670654296875, 842.2069702148438, 841.6555786132812, 799.3350219726562], [808.7337036132812, 845.9558715820312, 847.204833984375, 806.7130126953125], [805.1788330078125, 839.3062744140625, 835.8086547851562, 787.9029541015625], [800.031005859375, 842.5946655273438, 839.4012451171875, 782.535888671875], [796.1845092773438, 846.6558837890625, 840.3822631835938, 797.1902465820312], [799.5636596679688, 841.0966186523438, 834.6900634765625, 785.3064575195312], [806.2035522460938, 841.9736938476562, 837.7976684570312, 782.8135375976562], [802.3644409179688, 838.1844482421875, 829.8568115234375, 789.7581787109375], [810.9412841796875, 841.07421875, 834.50732421875, 781.8553466796875], [818.8302001953125, 845.2792358398438, 840.5387573242188, 784.0240478515625], [816.0775756835938, 842.3790893554688, 838.2979736328125, 785.951171875], [798.6826782226562, 842.7982177734375, 841.1077270507812, 799.319091796875], [818.1699829101562, 848.4164428710938, 849.2955322265625, 816.9161376953125], [818.853759765625, 848.8032836914062, 850.1320190429688, 821.5068359375], [803.0769653320312, 843.0293579101562, 838.1333618164062, 804.6670532226562], [820.1740112304688, 844.411376953125, 839.4275512695312, 799.497314453125], [817.02392578125, 843.4402465820312, 840.7446899414062, 787.3578491210938], [805.2803344726562, 840.7584228515625, 837.9332885742188, 775.1549682617188], [798.8881225585938, 836.7802734375, 836.5731201171875, 772.6444702148438], [788.622802734375, 836.65576171875, 835.7716064453125, 785.971435546875], [780.2537841796875, 837.85400390625, 836.2896728515625, 789.1648559570312], [784.3538818359375, 840.8939819335938, 840.7637329101562, 798.0518798828125], [796.4874877929688, 838.7992553710938, 836.8778686523438, 800.6690063476562], [801.7091674804688, 837.2971801757812, 834.6543579101562, 791.322021484375], [818.15234375, 845.72900390625, 841.399658203125, 807.3331298828125], [823.6150512695312, 842.7857055664062, 835.6296997070312, 797.4827270507812], [799.67431640625, 840.7322387695312, 830.0492553710938, 797.138916015625], [791.9473266601562, 845.12109375, 832.7208251953125, 806.503173828125], [805.141845703125, 845.94775390625, 838.7748413085938, 805.3815307617188], [795.6743774414062, 843.8162841796875, 842.2805786132812, 793.4212036132812], [786.6137084960938, 840.2056274414062, 837.4984741210938, 786.942138671875], [805.5011596679688, 841.1097412109375, 840.4212646484375, 781.7284545898438], [812.425537109375, 839.8534545898438, 842.6994018554688, 778.7113037109375], [801.6513671875, 838.1287231445312, 838.9818725585938, 787.4483642578125], [814.206298828125, 840.4606323242188, 841.3623046875, 790.6027221679688], [822.7540893554688, 841.5324096679688, 843.8839111328125, 792.1051025390625], [819.7403564453125, 839.5465087890625, 844.0496826171875, 791.2528686523438], [804.7503662109375, 837.1642456054688, 840.3659057617188, 781.50048828125], [785.1015014648438, 833.7764892578125, 835.2532348632812, 786.02685546875], [787.0663452148438, 837.2682495117188, 842.6361083984375, 800.7863159179688], [789.15673828125, 840.2867431640625, 845.3182983398438, 806.8465576171875], [788.426025390625, 838.1131591796875, 844.0697631835938, 811.2972412109375], [807.8273315429688, 844.7953491210938, 848.2030029296875, 807.12060546875], [819.6448974609375, 843.0554809570312, 847.3553466796875, 794.8575439453125], [812.5281982421875, 842.116943359375, 849.1115112304688, 783.7963256835938], [808.0311279296875, 841.3582763671875, 842.9559936523438, 778.6777954101562], [801.9094848632812, 838.5195922851562, 840.41015625, 785.3834838867188], [805.9930419921875, 844.0660400390625, 849.38818359375, 797.4719848632812], [796.8507080078125, 838.9065551757812, 841.6646728515625, 799.8229370117188], [801.1657104492188, 834.7763671875, 836.6922607421875, 808.9994506835938], [811.9139404296875, 838.5069580078125, 842.0614013671875, 813.9134521484375], [814.8790283203125, 840.6674194335938, 846.6813354492188, 817.936279296875], [828.115234375, 839.906494140625, 845.1522827148438, 813.3274536132812], [814.2752685546875, 834.06298828125, 836.4408569335938, 801.0634765625], [812.638427734375, 834.2255859375, 840.65478515625, 798.5119018554688], [809.5322875976562, 834.0623168945312, 842.5514526367188, 790.923095703125], [785.3789672851562, 826.7711791992188, 835.1051025390625, 779.6682739257812], [797.4863891601562, 829.3593139648438, 840.137451171875, 783.3602905273438], [808.06787109375, 834.5858154296875, 848.97412109375, 792.6300048828125], [812.5406494140625, 832.4898681640625, 848.079345703125, 795.6328125], [815.1397705078125, 827.5353393554688, 842.6976318359375, 798.4473266601562], [794.693115234375, 826.40576171875, 841.7632446289062, 796.8264770507812], [795.2020874023438, 825.9304809570312, 840.7127685546875, 805.33984375], [800.092529296875, 828.2450561523438, 841.238525390625, 795.86474609375], [795.98486328125, 832.5892333984375, 843.8084106445312, 788.626220703125], [808.3148193359375, 831.8450317382812, 842.7657470703125, 789.3621826171875], [817.3051147460938, 829.1397094726562, 840.3137817382812, 787.8043823242188], [812.0550537109375, 829.2314453125, 841.2060546875, 782.317626953125], [794.8841552734375, 826.7859497070312, 836.6968994140625, 776.4213256835938], [782.8720092773438, 821.836181640625, 830.4218139648438, 783.4339599609375], [802.767822265625, 826.9535522460938, 835.0770263671875, 785.9268188476562], [803.20166015625, 826.9281616210938, 836.16455078125, 770.6863403320312], [793.7298583984375, 822.5494384765625, 830.8513793945312, 768.4771118164062], [798.5068359375, 823.6972045898438, 834.3551635742188, 774.8931274414062], [798.3361206054688, 828.515625, 840.2568969726562, 762.0257568359375], [795.2783813476562, 831.8824462890625, 837.807373046875, 766.2112426757812], [796.8548583984375, 831.4757080078125, 835.1029663085938, 783.0164184570312], [806.5598754882812, 832.9981079101562, 839.1239013671875, 792.4414672851562], [814.6256713867188, 834.08740234375, 839.2206420898438, 793.8779296875], [803.4164428710938, 829.387451171875, 834.70654296875, 776.7048950195312], [794.3128662109375, 829.4671020507812, 843.070068359375, 778.6317138671875], [790.17138671875, 833.7037963867188, 842.52197265625, 775.8904418945312], [795.11669921875, 836.752685546875, 841.3216552734375, 759.9312744140625], [803.7866821289062, 834.5751953125, 838.6753540039062, 781.9495239257812], [793.6785888671875, 829.9132690429688, 826.7388916015625, 786.9073486328125], [801.7865600585938, 834.915771484375, 834.4627685546875, 784.4095458984375], [798.9953002929688, 834.4342041015625, 835.5525512695312, 784.2825927734375], [802.1179809570312, 833.309326171875, 836.2262573242188, 787.9998168945312], [806.783203125, 838.9852294921875, 845.648681640625, 793.3013305664062], [809.52880859375, 837.8907470703125, 843.7134399414062, 792.7542724609375], [825.447509765625, 839.4151000976562, 845.5805053710938, 812.4736328125], [808.7540283203125, 837.4421997070312, 842.1450805664062, 803.287353515625], [799.2523193359375, 832.8165283203125, 835.5263671875, 784.1915893554688], [807.9202880859375, 839.22509765625, 842.7024536132812, 793.0322265625], [802.6781616210938, 840.1815795898438, 843.2532348632812, 784.0368041992188], [810.4940795898438, 838.9519653320312, 839.6965942382812, 783.6533203125], [807.7572021484375, 836.8360595703125, 836.2823486328125, 795.3424072265625], [811.8975219726562, 841.1222534179688, 846.1744995117188, 806.1036376953125], [824.84765625, 843.6348266601562, 850.0994873046875, 813.4071655273438], [804.5912475585938, 835.8541259765625, 841.4813842773438, 800.7536010742188], [814.0119018554688, 834.2423095703125, 842.0066528320312, 801.7276000976562], [829.7459716796875, 837.0126953125, 846.6159057617188, 808.5797729492188], [803.718017578125, 833.8016967773438, 838.9884643554688, 790.3479614257812], [807.6646728515625, 832.8839721679688, 834.816162109375, 792.371826171875], [795.5472412109375, 833.333251953125, 842.1852416992188, 788.5149536132812], [787.4269409179688, 839.0396728515625, 849.201416015625, 782.7420654296875], [799.397216796875, 839.900146484375, 846.125244140625, 782.021728515625], [785.6911010742188, 828.3633422851562, 832.086669921875, 787.554443359375], [808.1380004882812, 834.3479614257812, 836.0631103515625, 798.9146728515625], [816.0614624023438, 839.1566772460938, 837.5247192382812, 801.310546875], [824.7874145507812, 835.06787109375, 828.3479614257812, 806.781005859375], [830.296630859375, 844.3238525390625, 842.1273803710938, 809.2249755859375], [803.8963012695312, 845.8135986328125, 848.0436401367188, 793.140380859375], [821.4553833007812, 842.5125732421875, 844.5126342773438, 798.0390625], [806.68310546875, 839.05517578125, 836.6950073242188, 797.5169067382812], [781.8665771484375, 835.6447143554688, 832.9120483398438, 796.4339599609375], [796.5488891601562, 838.2281494140625, 840.3281860351562, 801.9654541015625], [808.2937622070312, 840.4234619140625, 837.09326171875, 792.6986083984375], [797.2940063476562, 841.2869262695312, 838.7411499023438, 794.4437255859375], [791.7045288085938, 842.0263061523438, 846.8240356445312, 794.7203369140625], [810.7840576171875, 841.6146240234375, 845.67236328125, 798.6162719726562], [815.4413452148438, 838.7841186523438, 841.1884765625, 807.2701416015625], [810.2182006835938, 836.5895385742188, 839.820068359375, 811.4661865234375], [822.55078125, 839.6226806640625, 847.5579223632812, 819.4172973632812], [815.8490600585938, 838.9204711914062, 850.7939453125, 810.7594604492188], [804.420166015625, 836.1748046875, 850.42236328125, 793.1502685546875], [793.9251708984375, 835.26953125, 856.666015625, 801.9957275390625], [779.824951171875, 828.3134155273438, 858.7728881835938, 785.3578491210938], [781.7680053710938, 831.2031860351562, 862.28173828125, 774.3051147460938], [784.7532348632812, 832.0042724609375, 865.7073974609375, 780.0404052734375], [780.4537963867188, 820.8784790039062, 856.6129150390625, 774.3734741210938], [787.9722900390625, 825.6831665039062, 859.7752075195312, 776.7230224609375], [796.854736328125, 828.0934448242188, 866.1370239257812, 784.8612670898438], [792.857666015625, 822.4825439453125, 857.663330078125, 785.7415161132812], [800.6050415039062, 829.9373168945312, 858.716552734375, 789.2465209960938], [790.9219970703125, 835.758544921875, 863.7067260742188, 790.3192749023438], [786.818603515625, 834.7021484375, 859.4840698242188, 787.5411987304688], [777.4910278320312, 830.7168579101562, 852.44677734375, 795.9669189453125], [768.3702392578125, 824.759521484375, 846.986572265625, 797.90185546875], [787.521484375, 825.3345947265625, 853.9063720703125, 813.4461059570312], [794.3399047851562, 825.8101806640625, 853.2298583984375, 801.3549194335938], [797.2886962890625, 832.4290771484375, 854.704833984375, 803.219970703125], [812.9859619140625, 836.8284912109375, 856.3656616210938, 806.1692504882812], [805.614990234375, 837.05517578125, 858.2594604492188, 796.0079956054688], [801.5305786132812, 838.4492797851562, 857.0593872070312, 798.2044067382812], [794.3194580078125, 835.8671875, 850.3455200195312, 800.9674072265625], [788.8214721679688, 833.0711059570312, 850.9611206054688, 813.6288452148438], [789.5009155273438, 834.53759765625, 847.8964233398438, 798.3843383789062], [780.0143432617188, 836.6898193359375, 846.265380859375, 789.5739135742188], [793.7159423828125, 837.0925903320312, 850.8445434570312, 808.560546875], [799.8240966796875, 835.9569091796875, 851.4414672851562, 800.5829467773438], [803.4212036132812, 836.3450317382812, 851.7568969726562, 787.7737426757812], [820.0841064453125, 842.1858520507812, 859.2229614257812, 806.91259765625], [814.8402099609375, 837.1915283203125, 849.0280151367188, 806.8927001953125], [793.3504028320312, 835.0694580078125, 842.4598388671875, 797.3494262695312], [796.306396484375, 840.5280151367188, 849.03271484375, 799.8806762695312], [799.8744506835938, 836.728271484375, 848.0989990234375, 800.3057250976562], [804.5367431640625, 837.5575561523438, 848.7554931640625, 801.8737182617188], [799.5527954101562, 843.4194946289062, 858.04541015625, 797.3809814453125], [823.906005859375, 850.3021850585938, 866.2409057617188, 802.6522216796875], [823.8832397460938, 846.364990234375, 857.9138793945312, 806.1163940429688], [783.0968017578125, 841.2384643554688, 849.3211059570312, 802.7379150390625], [791.8749389648438, 846.2780151367188, 854.4256591796875, 812.6331787109375], [796.6088256835938, 843.6866455078125, 851.9844970703125, 802.6495361328125], [789.5626831054688, 838.3397216796875, 845.4540405273438, 794.6378784179688], [792.837158203125, 843.2891845703125, 850.7006225585938, 797.338623046875], [809.1472778320312, 847.876708984375, 857.91357421875, 791.0889892578125], [817.8369140625, 844.0709838867188, 855.5450439453125, 797.1237182617188], [796.144287109375, 842.5990600585938, 847.4727172851562, 791.0950927734375], [794.026123046875, 844.2018432617188, 851.22607421875, 805.5357055664062], [805.7810668945312, 844.5592651367188, 846.878173828125, 805.0315551757812], [805.3799438476562, 845.1582641601562, 844.6024169921875, 803.3238525390625], [803.7935791015625, 844.4827880859375, 843.23095703125, 806.92236328125], [811.2026977539062, 842.9713745117188, 838.029052734375, 801.2599487304688], [816.3457641601562, 844.1836547851562, 846.93701171875, 800.94970703125], [803.0091552734375, 845.7025756835938, 852.1401977539062, 803.4032592773438], [795.2776489257812, 839.4459838867188, 847.0816040039062, 797.5733642578125], [790.0198364257812, 836.8028564453125, 850.4414672851562, 811.0867919921875], [800.9395751953125, 839.9014892578125, 855.8095703125, 815.4075317382812], [812.5968627929688, 837.9144287109375, 848.4984130859375, 817.3060913085938], [799.013671875, 835.2315673828125, 842.76318359375, 812.4925537109375], [809.3217163085938, 837.8600463867188, 845.2807006835938, 795.0128784179688], [818.3678588867188, 837.441162109375, 845.752685546875, 794.377197265625], [801.7230224609375, 837.4143676757812, 845.79736328125, 795.2596435546875], [800.612060546875, 830.8862915039062, 839.599609375, 792.3980102539062], [805.1565551757812, 826.6549072265625, 839.5179443359375, 799.665283203125], [817.0296020507812, 834.0420532226562, 842.0569458007812, 816.8705444335938], [813.5487670898438, 833.9591674804688, 842.353759765625, 811.1588745117188], [804.6697387695312, 833.3751220703125, 842.501220703125, 801.3248901367188], [822.0693359375, 838.8884887695312, 849.0249633789062, 805.3541259765625], [815.3812255859375, 842.6036376953125, 856.1216430664062, 815.5478515625], [807.7980346679688, 835.2384033203125, 847.2686157226562, 799.1140747070312], [807.7722778320312, 832.3807373046875, 848.4063110351562, 799.6480712890625], [804.42431640625, 838.330322265625, 853.5593872070312, 814.703857421875], [798.686279296875, 833.3488159179688, 845.1064453125, 803.8311767578125], [815.727294921875, 833.9774780273438, 846.181884765625, 814.6478881835938], [815.3922729492188, 835.3265991210938, 842.4542846679688, 817.6224365234375], [807.2523193359375, 834.4417114257812, 840.2115478515625, 818.1004638671875], [831.7017211914062, 836.7967529296875, 839.8128662109375, 812.555419921875], [815.9183349609375, 832.8245239257812, 832.8180541992188, 785.87353515625], [788.0856323242188, 834.8925170898438, 838.7184448242188, 784.8038330078125], [803.3272094726562, 840.4371337890625, 843.6390991210938, 796.1267700195312], [805.00927734375, 836.5404663085938, 837.7030029296875, 788.6604614257812], [805.0801391601562, 835.2032470703125, 838.8343505859375, 811.9417114257812], [815.507568359375, 833.7990112304688, 836.9832153320312, 810.5675659179688], [823.8383178710938, 839.6489868164062, 839.9881591796875, 810.7396850585938], [824.9580688476562, 836.4764404296875, 836.1778564453125, 801.44775390625], [801.8656005859375, 830.2283935546875, 832.16357421875, 783.2297973632812], [803.8079833984375, 836.1491088867188, 840.1513671875, 796.8289184570312], [803.9666137695312, 835.141845703125, 838.95703125, 792.8604736328125], [798.8450317382812, 829.5379028320312, 835.7118530273438, 795.548095703125], [807.5687866210938, 828.982421875, 838.0729370117188, 802.4179077148438], [803.1203002929688, 833.841796875, 835.9821166992188, 790.9509887695312], [805.5186157226562, 839.1162109375, 839.997802734375, 798.94775390625], [797.1539306640625, 835.005859375, 835.3656616210938, 793.3554077148438], [782.8298950195312, 832.9559326171875, 825.9671020507812, 783.334716796875], [804.8728637695312, 844.8553466796875, 837.9241333007812, 799.5531005859375], [799.903076171875, 843.6475830078125, 832.1648559570312, 801.1377563476562], [804.358154296875, 843.7337036132812, 830.0086059570312, 804.3140258789062], [817.3855590820312, 852.33154296875, 835.5087280273438, 803.1749267578125], [812.8687133789062, 854.3323364257812, 834.8013305664062, 798.0736694335938], [830.3231811523438, 853.0167236328125, 835.6500854492188, 799.16259765625], [809.9896850585938, 849.5772094726562, 831.527587890625, 789.068603515625], [802.1632690429688, 852.47119140625, 833.9852905273438, 780.4713134765625], [815.039794921875, 852.1663818359375, 834.1934204101562, 800.9426879882812], [800.3609008789062, 852.3955688476562, 836.3237915039062, 802.1917724609375], [794.3604736328125, 858.3756713867188, 842.013427734375, 796.705810546875], [811.4005737304688, 858.3090209960938, 839.83251953125, 809.04736328125], [828.3504028320312, 858.7591552734375, 843.322021484375, 797.823974609375], [811.717041015625, 859.3951416015625, 844.8528442382812, 785.3068237304688], [797.7372436523438, 855.06787109375, 834.3006591796875, 787.6724853515625], [810.8877563476562, 855.7706298828125, 842.0464477539062, 794.3430786132812], [800.1246337890625, 855.4589233398438, 844.3046264648438, 795.2858276367188], [800.2421264648438, 853.7049560546875, 840.8850708007812, 800.2367553710938], [828.92919921875, 858.2821044921875, 849.8093872070312, 812.830810546875], [824.4149169921875, 855.5811157226562, 849.949462890625, 807.2296752929688], [820.6036987304688, 855.6385498046875, 850.6701049804688, 798.0420532226562], [821.0795288085938, 854.3734741210938, 846.888427734375, 802.0490112304688], [806.233154296875, 848.6124267578125, 838.2685546875, 798.9512939453125], [801.0797119140625, 852.4281616210938, 842.92626953125, 803.0367431640625], [809.26220703125, 850.8522338867188, 834.9299926757812, 794.93994140625], [814.2705688476562, 848.521240234375, 830.156982421875, 798.29150390625], [803.694580078125, 849.77294921875, 840.4369506835938, 793.560546875], [805.4591064453125, 852.5216674804688, 848.8346557617188, 794.0801391601562], [813.97802734375, 853.2227172851562, 849.701416015625, 802.4039306640625], [798.568603515625, 847.5546875, 845.2642211914062, 792.5369262695312], [800.1365356445312, 851.3055419921875, 847.819580078125, 811.5592041015625], [814.1309814453125, 854.5325927734375, 845.5156860351562, 811.3443603515625], [818.48828125, 850.4163818359375, 839.4296875, 800.1546020507812], [811.2108764648438, 849.3604125976562, 846.2156372070312, 814.0674438476562], [816.9805297851562, 852.25537109375, 851.2776489257812, 813.22412109375], [821.0261840820312, 855.484130859375, 849.7794799804688, 807.360595703125], [792.011962890625, 850.18115234375, 843.2496948242188, 805.2416381835938], [792.4150390625, 851.7734985351562, 838.4027099609375, 788.131591796875], [799.551025390625, 855.0247192382812, 838.7852172851562, 791.274658203125], [812.714111328125, 855.1975708007812, 842.4091186523438, 794.9948120117188], [815.8844604492188, 856.1575927734375, 848.7456665039062, 799.2268676757812], [819.802734375, 854.7079467773438, 853.3660278320312, 817.6813354492188], [827.5252685546875, 850.8040771484375, 847.1369018554688, 816.7321166992188], [816.0255126953125, 853.2506103515625, 847.9195556640625, 812.9113159179688], [796.4930419921875, 847.7559204101562, 846.8165283203125, 798.1236572265625], [803.4625244140625, 842.5299072265625, 838.68896484375, 788.8380737304688], [806.1819458007812, 849.1436157226562, 846.0513305664062, 801.4693603515625], [805.002685546875, 849.3887939453125, 848.0560913085938, 796.37060546875], [802.0230712890625, 842.634521484375, 842.0677490234375, 800.5135498046875], [807.1217041015625, 843.7155151367188, 842.3233642578125, 814.4884033203125], [819.16259765625, 846.2586059570312, 845.70751953125, 807.749755859375], [814.3295288085938, 843.0888061523438, 852.9212646484375, 806.135986328125], [818.2503662109375, 838.2059326171875, 843.5944213867188, 799.7411499023438], [807.916748046875, 844.2174072265625, 848.142333984375, 805.4752197265625], [810.6124267578125, 847.69189453125, 852.1973266601562, 796.4114990234375], [814.0380859375, 841.56787109375, 837.6471557617188, 791.7369995117188], [799.1807861328125, 842.1769409179688, 840.9129028320312, 795.6492309570312], [810.39013671875, 845.35107421875, 849.6962890625, 807.6695556640625], [822.6527709960938, 843.5839233398438, 849.8145141601562, 814.929443359375], [801.7727661132812, 837.6620483398438, 843.9609985351562, 799.9871215820312], [792.7786865234375, 841.09814453125, 844.9840087890625, 795.0105590820312], [802.7993774414062, 845.9580078125, 849.0062866210938, 787.3424072265625], [805.165283203125, 844.4970092773438, 843.8973999023438, 778.3468017578125], [793.4170532226562, 843.5576171875, 842.5676879882812, 779.41650390625], [790.8025512695312, 844.3822631835938, 847.2141723632812, 791.846435546875], [796.0657348632812, 839.3742065429688, 840.8220825195312, 798.609619140625], [790.85595703125, 838.7874755859375, 839.5645751953125, 803.2232055664062], [788.3941040039062, 838.052978515625, 835.428955078125, 787.1928100585938], [803.865234375, 833.3477172851562, 830.277587890625, 786.7945556640625], [824.0055541992188, 838.3223266601562, 835.07275390625, 801.6929931640625], [808.3865356445312, 840.5258178710938, 836.752685546875, 801.466796875], [800.7247314453125, 836.9049682617188, 836.4351806640625, 804.5398559570312], [795.7722778320312, 835.4417114257812, 836.8624267578125, 800.62939453125], [806.423095703125, 843.398193359375, 848.8936767578125, 795.5193481445312], [806.5059814453125, 844.2730102539062, 851.0258178710938, 796.9806518554688], [811.0482177734375, 839.2637329101562, 845.7688598632812, 778.6634521484375], [820.4550170898438, 840.0767822265625, 842.378173828125, 782.1279907226562], [803.9863891601562, 841.0446166992188, 841.3585205078125, 804.1218872070312], [789.311279296875, 837.9236450195312, 835.8995971679688, 799.0132446289062], [784.8731079101562, 836.910888671875, 831.2132568359375, 796.6957397460938], [786.9342041015625, 838.5757446289062, 833.904052734375, 796.4105224609375], [797.0103759765625, 840.25341796875, 836.0729370117188, 794.3095092773438], [813.09619140625, 840.887939453125, 832.8944091796875, 782.9449462890625], [793.819091796875, 832.3890991210938, 825.8075561523438, 767.5030517578125], [792.72021484375, 833.9190063476562, 832.9596557617188, 775.6473388671875], [808.2260131835938, 833.9993286132812, 836.2996826171875, 792.5340576171875], [790.61328125, 830.2757568359375, 836.3958740234375, 786.5504760742188], [794.1404418945312, 834.523193359375, 846.3809814453125, 795.0626831054688], [816.815185546875, 834.09375, 842.608642578125, 803.3099975585938], [817.9261474609375, 835.6082763671875, 836.0387573242188, 794.3416748046875], [806.6249389648438, 837.8478393554688, 838.8984985351562, 795.7618408203125], [803.8717041015625, 835.92333984375, 835.887939453125, 804.2398071289062], [813.3991088867188, 840.9467163085938, 839.3331298828125, 799.6380004882812], [805.96142578125, 841.61279296875, 841.249267578125, 802.7560424804688], [805.6087646484375, 838.8321533203125, 839.9871826171875, 796.103271484375], [817.206298828125, 836.242919921875, 838.2196655273438, 787.4331665039062], [812.4742431640625, 836.3382568359375, 835.001708984375, 796.0317993164062], [803.298583984375, 837.6663818359375, 837.3729858398438, 806.52294921875], [811.5338134765625, 832.1902465820312, 836.7716674804688, 806.8524780273438], [815.1842041015625, 836.4976806640625, 841.0673828125, 807.3179321289062], [801.682861328125, 839.9218139648438, 844.9935913085938, 808.9820556640625], [809.499755859375, 835.340087890625, 840.6797485351562, 791.6067504882812], [816.6140747070312, 835.8491821289062, 842.1591796875, 792.2838134765625], [796.3859252929688, 838.4556884765625, 841.6365356445312, 798.7627563476562], [805.0992431640625, 843.9686279296875, 844.6582641601562, 806.655517578125], [836.2970581054688, 847.7714233398438, 846.2318725585938, 811.4606323242188], [823.7098388671875, 838.6682739257812, 834.865478515625, 793.04931640625], [815.9157104492188, 839.8527221679688, 839.2828369140625, 790.0097045898438], [823.8224487304688, 844.1253662109375, 840.6104736328125, 790.9525756835938], [806.2628784179688, 835.6295776367188, 831.177734375, 786.0977783203125], [788.8588256835938, 837.77783203125, 840.1953735351562, 796.0126342773438], [813.8172607421875, 849.65966796875, 847.3870239257812, 809.6735229492188], [830.7011108398438, 850.664794921875, 846.1729736328125, 818.9784545898438], [810.112060546875, 842.6552734375, 847.2576293945312, 808.3778686523438], [804.8277587890625, 836.8909301757812, 841.27880859375, 797.3056030273438], [811.11083984375, 840.0285034179688, 846.0848999023438, 798.7095336914062], [789.8601684570312, 835.8381958007812, 841.1278686523438, 783.8137817382812], [795.90576171875, 837.1499633789062, 836.9043579101562, 785.1650390625], [818.9901733398438, 844.6132202148438, 841.9360961914062, 782.2332763671875], [821.4010620117188, 845.716064453125, 840.3341064453125, 789.0036010742188], [816.352294921875, 844.8799438476562, 839.8054809570312, 805.8777465820312], [808.7650146484375, 840.7574462890625, 843.0892944335938, 800.607177734375], [814.0044555664062, 838.5314331054688, 846.4171142578125, 802.033203125], [817.1656494140625, 841.6732788085938, 846.412109375, 808.900146484375], [815.4649047851562, 840.8892822265625, 842.7573852539062, 805.3710327148438], [827.7120971679688, 842.8800048828125, 845.1836547851562, 802.0035400390625], [814.4315185546875, 844.6837768554688, 843.2178955078125, 802.0524291992188], [803.9075927734375, 844.2034912109375, 838.6952514648438, 807.6044311523438], [821.127197265625, 847.8412475585938, 845.7569580078125, 803.7079467773438], [810.3484497070312, 842.9854125976562, 841.0464477539062, 783.8250122070312], [811.240478515625, 844.169677734375, 841.310302734375, 798.0614013671875], [816.16748046875, 846.7034301757812, 844.4364013671875, 806.90625], [824.87841796875, 843.0350341796875, 841.9920654296875, 805.9940795898438], [803.67431640625, 839.3623657226562, 842.174560546875, 819.56103515625], [807.4505615234375, 845.7734985351562, 846.4904174804688, 831.2011108398438], [839.099609375, 848.507568359375, 849.3973999023438, 814.6591186523438], [810.9370727539062, 840.605712890625, 841.4847412109375, 785.7236328125], [800.6428833007812, 838.4490356445312, 839.8250122070312, 784.1456298828125], [814.417724609375, 843.7794189453125, 845.2981567382812, 786.9796142578125], [799.1092529296875, 836.6079711914062, 838.6380004882812, 775.5453491210938], [797.1129760742188, 832.0929565429688, 835.1809692382812, 798.4234008789062], [809.199951171875, 839.1049194335938, 839.7483520507812, 809.6265258789062], [809.3876953125, 842.0848999023438, 842.609130859375, 802.409423828125], [809.9262084960938, 840.349365234375, 839.6464233398438, 808.02685546875], [795.1246337890625, 836.99951171875, 832.8157958984375, 789.436767578125], [797.0988159179688, 842.4255981445312, 837.3502197265625, 793.4326782226562], [819.704345703125, 843.18115234375, 835.06689453125, 797.3756713867188], [807.3124389648438, 841.9653930664062, 835.5205078125, 798.1256713867188], [803.6619262695312, 845.7097778320312, 840.66845703125, 789.7767944335938], [815.3404541015625, 844.2921142578125, 840.1939086914062, 792.6641235351562], [805.9537353515625, 842.4031982421875, 843.0604248046875, 801.2183227539062], [793.69677734375, 845.0704345703125, 842.7344360351562, 790.9379272460938], [801.0452880859375, 835.675537109375, 829.933837890625, 786.3638305664062], [808.7342529296875, 833.170654296875, 830.1103515625, 796.8236694335938], [808.8002319335938, 840.1524658203125, 838.8514404296875, 801.0826416015625], [805.8898315429688, 839.1426391601562, 839.5988159179688, 787.7545776367188], [802.812744140625, 834.5805053710938, 837.5825805664062, 787.9426879882812], [816.0438842773438, 839.629638671875, 843.6707153320312, 806.7447509765625], [818.847900390625, 843.3453979492188, 842.6983642578125, 798.109130859375], [796.8921508789062, 834.70654296875, 834.5789794921875, 783.6444091796875], [803.0732421875, 829.9510498046875, 833.357666015625, 787.2085571289062], [804.4067993164062, 834.5549926757812, 838.1742553710938, 787.7901000976562], [791.7648315429688, 836.3265380859375, 838.4949951171875, 782.7379760742188], [794.79931640625, 832.9946899414062, 836.2973022460938, 787.7161865234375], [805.55517578125, 839.6661376953125, 837.5263671875, 803.993896484375], [804.4208374023438, 842.281982421875, 832.4780883789062, 792.564697265625], [793.9594116210938, 841.7310180664062, 838.5477905273438, 788.8816528320312], [802.4168701171875, 838.8013305664062, 836.9642333984375, 778.1952514648438], [800.4708251953125, 838.2529296875, 834.0875854492188, 775.9148559570312], [802.9171752929688, 843.3499145507812, 842.5077514648438, 784.57373046875], [807.9603271484375, 839.6942749023438, 836.4521484375, 788.3002319335938], [818.23681640625, 841.330078125, 833.7168579101562, 797.90185546875], [805.4371948242188, 845.3681030273438, 835.7395629882812, 791.2075805664062], [799.78759765625, 845.9202880859375, 838.7071533203125, 796.7606811523438], [817.1212768554688, 844.935302734375, 839.7865600585938, 795.5128173828125], [792.7576904296875, 840.2353515625, 831.3839111328125, 782.4902954101562], [795.3826904296875, 840.92822265625, 833.2449951171875, 793.5516967773438], [806.8101806640625, 840.8257446289062, 836.2791137695312, 803.1172485351562], [797.3004150390625, 839.338134765625, 834.8629150390625, 795.8676147460938], [809.0180053710938, 842.1766967773438, 838.7515258789062, 795.0143432617188], [809.2703247070312, 844.7810668945312, 844.5599975585938, 799.5791625976562], [805.9642333984375, 846.3421020507812, 850.1826782226562, 804.1134033203125], [809.3424072265625, 841.1199951171875, 842.6422119140625, 798.458251953125], [798.7493286132812, 835.31787109375, 834.2566528320312, 794.7035522460938], [808.477294921875, 836.5709228515625, 845.108154296875, 813.2523193359375], [808.7894287109375, 836.743896484375, 848.9053955078125, 820.9953002929688], [817.085205078125, 837.601806640625, 846.7713012695312, 807.6400146484375], [822.7938232421875, 840.2855224609375, 853.8432006835938, 805.0221557617188], [804.62744140625, 839.66748046875, 850.9092407226562, 807.3325805664062], [804.5635986328125, 843.1658325195312, 849.328369140625, 800.2476196289062], [799.993408203125, 838.2800903320312, 843.0128784179688, 789.7874145507812], [792.7774047851562, 833.9812622070312, 835.1847534179688, 799.197998046875], [799.9998779296875, 839.9898681640625, 844.561767578125, 813.50048828125], [810.9727783203125, 838.4835815429688, 843.67822265625, 800.1133422851562], [825.231201171875, 840.2589111328125, 841.813232421875, 797.7229614257812], [814.3445434570312, 843.849853515625, 846.6658325195312, 801.2986450195312], [812.6401977539062, 840.1449584960938, 845.44970703125, 794.2803955078125], [821.0415649414062, 844.6207275390625, 847.4945678710938, 790.1422729492188], [800.8103637695312, 842.4506225585938, 840.4420776367188, 796.1331176757812], [790.6685180664062, 836.2225341796875, 835.8863525390625, 787.96533203125], [802.8007202148438, 838.7635498046875, 841.7815551757812, 791.8358154296875], [812.4598999023438, 840.756103515625, 844.9833374023438, 804.20703125], [793.6995849609375, 838.975341796875, 848.6347045898438, 808.9666137695312], [789.6740112304688, 837.1416015625, 851.2853393554688, 813.5834350585938], [802.4131469726562, 841.3809814453125, 855.2678833007812, 813.380615234375], [794.710693359375, 839.4501953125, 846.1427612304688, 811.1465454101562], [795.40771484375, 835.7078247070312, 837.031494140625, 795.65673828125], [813.20556640625, 837.1829223632812, 844.9964599609375, 805.2537231445312], [823.9153442382812, 835.503173828125, 843.7294311523438, 810.7298583984375], [818.7828369140625, 833.4906616210938, 842.301025390625, 807.50830078125], [806.8975830078125, 835.3515625, 848.3814697265625, 815.8101806640625], [805.53076171875, 836.4541015625, 841.727783203125, 796.3424072265625], [819.833251953125, 839.9727172851562, 841.5950317382812, 796.3206176757812], [815.5247192382812, 843.005615234375, 839.9844360351562, 803.4794921875], [815.5509643554688, 837.513916015625, 837.2918701171875, 788.8192749023438], [812.2796020507812, 839.9102783203125, 845.3572998046875, 817.6682739257812], [801.8530883789062, 838.0203247070312, 840.65478515625, 818.4801635742188], [792.4697875976562, 833.9965209960938, 838.6321411132812, 798.0992431640625], [791.980712890625, 836.41845703125, 840.702880859375, 809.2601318359375], [813.9254150390625, 842.2728271484375, 848.005859375, 811.329833984375], [817.45703125, 842.3755493164062, 851.0970458984375, 790.5946044921875], [803.4398803710938, 834.2525634765625, 844.2161865234375, 788.6390991210938], [797.4644165039062, 834.9559326171875, 845.3449096679688, 794.8673095703125], [792.0439453125, 838.3848266601562, 845.2395629882812, 785.0762329101562], [786.3220825195312, 835.7767944335938, 839.89404296875, 791.6670532226562], [792.9251098632812, 837.5072021484375, 842.5110473632812, 811.7086181640625], [811.6846923828125, 843.3941040039062, 848.049560546875, 818.1548461914062], [818.46533203125, 841.9895629882812, 848.8804931640625, 823.7115478515625], [810.3922729492188, 841.0964965820312, 845.6602783203125, 827.8983154296875], [812.3441162109375, 838.9957275390625, 837.8258056640625, 810.025146484375], [821.8021240234375, 842.3084716796875, 840.5056762695312, 817.2658081054688], [822.7140502929688, 846.4761962890625, 842.8106689453125, 818.2723388671875], [817.7235717773438, 846.4968872070312, 844.5421752929688, 805.5045776367188], [811.4573364257812, 845.1072998046875, 844.2542724609375, 795.1116943359375], [809.8001098632812, 842.5330200195312, 840.9879760742188, 787.0525512695312], [810.622314453125, 845.2428588867188, 845.855224609375, 783.4024658203125], [806.7152099609375, 843.6903076171875, 845.069091796875, 781.0830078125], [818.0106201171875, 839.9733276367188, 842.6256103515625, 793.3673706054688], [828.0787353515625, 844.6549682617188, 853.8958129882812, 821.2984008789062], [823.9536743164062, 843.1746826171875, 852.3326416015625, 815.14599609375], [819.5537109375, 841.3023681640625, 847.56103515625, 811.8004150390625], [817.2008666992188, 841.7093505859375, 852.0449829101562, 824.3282470703125], [826.5362548828125, 843.111572265625, 852.2457885742188, 811.2221069335938], [821.4861450195312, 845.110595703125, 858.5055541992188, 820.2739868164062], [809.2401123046875, 837.7591552734375, 852.1388549804688, 812.2445068359375], [800.6441650390625, 837.5081176757812, 850.0368041992188, 814.0154418945312], [799.4617919921875, 840.0303955078125, 853.6835327148438, 810.5177612304688], [803.9691772460938, 837.819580078125, 844.927734375, 801.1433715820312], [799.3944091796875, 839.2540283203125, 842.1510009765625, 804.69970703125], [815.6483154296875, 844.9721069335938, 854.7048950195312, 810.0072021484375], [818.6892700195312, 847.7263793945312, 859.1344604492188, 813.29345703125], [810.2080078125, 841.6925048828125, 845.3867797851562, 802.4451293945312], [808.5360107421875, 840.8976440429688, 848.0006103515625, 800.3416137695312], [807.3543701171875, 846.4320678710938, 858.144287109375, 812.9827880859375], [808.0039672851562, 840.8157958984375, 850.3579711914062, 810.7017211914062], [814.875, 840.9307250976562, 849.0780029296875, 804.9948120117188], [813.4322509765625, 843.9832763671875, 857.488525390625, 811.2688598632812], [803.8407592773438, 840.2404174804688, 848.4761962890625, 801.5746459960938], [826.608642578125, 847.097412109375, 843.8328857421875, 790.2529296875], [825.6293334960938, 848.0484008789062, 841.910400390625, 792.51171875], [808.445556640625, 842.8880615234375, 836.6928100585938, 800.3646240234375], [823.25439453125, 847.1533203125, 845.29248046875, 807.0838623046875], [826.017822265625, 847.3260498046875, 853.5932006835938, 810.2514038085938], [808.9957885742188, 840.4371948242188, 850.1646728515625, 804.3112182617188], [801.5181274414062, 838.8076782226562, 848.0341186523438, 798.382568359375], [817.8514404296875, 848.2503051757812, 857.4309692382812, 807.2970581054688], [814.7889404296875, 851.7698364257812, 855.5606079101562, 816.6923828125], [793.87646484375, 844.9691772460938, 842.4150390625, 811.3384399414062], [811.4169921875, 842.9625854492188, 843.9832153320312, 814.6156616210938], [829.6188354492188, 847.1558227539062, 851.2228393554688, 811.0261840820312], [821.0989379882812, 842.4965209960938, 845.6454467773438, 796.0701904296875], [818.8103637695312, 842.7191162109375, 845.8068237304688, 797.7348022460938], [815.7882690429688, 848.4065551757812, 850.1917724609375, 800.5579833984375], [818.289794921875, 851.4542236328125, 852.7869873046875, 811.6669921875], [804.8665161132812, 850.0446166992188, 849.2014770507812, 811.0716552734375], [797.6277465820312, 841.0397338867188, 838.7678833007812, 797.8634033203125], [826.4215698242188, 840.3760986328125, 844.1236572265625, 804.4019165039062], [817.9110717773438, 842.8233032226562, 846.8766479492188, 810.5892333984375], [799.46923828125, 841.11376953125, 841.5650634765625, 807.197998046875], [813.5694580078125, 844.79638671875, 850.0352783203125, 818.1176147460938], [810.8309936523438, 845.801513671875, 848.653076171875, 810.5068359375], [802.6738891601562, 844.611083984375, 845.21728515625, 794.751708984375], [822.033203125, 841.3799438476562, 845.74853515625, 780.8242797851562], [813.6155395507812, 838.5580444335938, 837.783447265625, 779.2176513671875], [801.3278198242188, 839.5491943359375, 840.5894775390625, 793.4384765625], [801.912841796875, 837.9790649414062, 841.2034301757812, 800.5133056640625], [801.5905151367188, 836.9342651367188, 842.2952270507812, 811.0726928710938], [797.966552734375, 834.1809692382812, 845.5303344726562, 813.5391845703125], [800.149658203125, 836.8018188476562, 847.5502319335938, 804.919921875], [810.4025268554688, 840.179931640625, 850.0687255859375, 797.7146606445312], [799.6868896484375, 837.7327270507812, 841.447021484375, 786.4197387695312], [795.9689331054688, 841.4031982421875, 840.3220825195312, 789.281494140625], [807.710205078125, 843.4050903320312, 844.2914428710938, 793.0302124023438], [820.9765625, 837.25048828125, 838.2816772460938, 781.2877807617188], [812.4844970703125, 835.89306640625, 843.7213745117188, 800.882080078125], [822.5785522460938, 836.5328979492188, 849.1111450195312, 803.88916015625], [804.1339111328125, 841.1387939453125, 853.1286010742188, 802.9682006835938], [798.8121948242188, 844.4231567382812, 858.69970703125, 808.9642944335938], [779.9122924804688, 835.5780639648438, 848.2883911132812, 803.727783203125], [798.348876953125, 838.64501953125, 850.8486938476562, 794.4741821289062], [823.4241943359375, 842.4457397460938, 856.1284790039062, 797.4924926757812], [802.47998046875, 834.5567626953125, 849.0953369140625, 805.1040649414062], [819.703125, 837.9548950195312, 853.0578002929688, 799.8006591796875], [811.894287109375, 847.4984741210938, 865.160888671875, 812.5636596679688], [793.5880126953125, 851.0133666992188, 866.5630493164062, 824.0489501953125], [786.9098510742188, 846.4267578125, 862.0260620117188, 811.971435546875], [805.5111083984375, 844.1141967773438, 859.3832397460938, 809.3240966796875], [820.2786865234375, 849.9691772460938, 861.4580078125, 814.2429809570312], [818.9409790039062, 845.9489135742188, 859.10107421875, 796.1347045898438], [816.7144775390625, 844.6495361328125, 861.0125122070312, 795.6288452148438], [815.0858764648438, 844.8482055664062, 858.9454956054688, 795.3313598632812], [814.0682983398438, 844.9701538085938, 859.4982299804688, 793.5670776367188], [812.970703125, 842.7688598632812, 856.4619140625, 804.04150390625], [805.5484008789062, 838.27001953125, 849.6103515625, 811.060302734375], [817.5560302734375, 841.8309936523438, 852.8692016601562, 814.1180419921875], [824.668701171875, 847.7772216796875, 857.05712890625, 817.493896484375], [804.0426635742188, 844.777587890625, 855.30615234375, 816.4444580078125], [814.4088134765625, 846.29541015625, 859.7510375976562, 816.60009765625], [817.4200439453125, 844.5187377929688, 856.5599365234375, 800.9257202148438], [809.092041015625, 840.8563232421875, 855.0503540039062, 804.689697265625], [809.2963256835938, 840.4095458984375, 860.528076171875, 813.7054443359375], [801.9869995117188, 835.4342651367188, 852.0349731445312, 802.4628295898438], [800.8748168945312, 839.6160278320312, 855.0382080078125, 814.9609985351562], [810.642333984375, 842.1419677734375, 854.3804931640625, 812.2092895507812], [804.762451171875, 837.640380859375, 844.6901245117188, 803.9066162109375], [807.0051879882812, 840.2843627929688, 845.9279174804688, 797.3121948242188], [807.8096923828125, 844.6432495117188, 848.66064453125, 792.9861450195312], [799.2534790039062, 843.3048095703125, 845.0570678710938, 797.0706176757812], [800.8649291992188, 840.4224243164062, 840.696533203125, 799.172119140625], [789.925048828125, 836.2373046875, 833.6244506835938, 783.4212036132812], [800.55615234375, 841.56298828125, 838.1309814453125, 793.3988647460938], [810.0318603515625, 841.5116577148438, 837.8914794921875, 790.1980590820312], [811.7705688476562, 838.1962890625, 839.9405517578125, 782.5482788085938], [813.20263671875, 845.891357421875, 849.622314453125, 796.528076171875], [818.25732421875, 853.0640258789062, 855.1298828125, 812.3901977539062], [815.0343017578125, 845.4501342773438, 849.5062255859375, 810.8956298828125], [790.0565185546875, 839.2269897460938, 840.70947265625, 791.7860717773438], [789.0341186523438, 845.9619140625, 843.4209594726562, 793.2503051757812], [804.7603149414062, 844.823974609375, 843.95458984375, 796.7180786132812], [799.1942138671875, 842.4656372070312, 845.304931640625, 791.6095581054688], [798.0861206054688, 846.4266357421875, 847.6401977539062, 803.028076171875], [799.4091796875, 843.279541015625, 848.7568969726562, 816.3492431640625], [795.8645629882812, 835.6031494140625, 841.9591064453125, 804.4782104492188], [784.3309936523438, 837.0789184570312, 840.1564331054688, 794.195068359375], [776.2396240234375, 832.38037109375, 830.9424438476562, 765.9498901367188], [806.6075439453125, 832.36572265625, 826.671875, 763.5836791992188], [820.0856323242188, 838.5337524414062, 832.7239379882812, 767.0610961914062], [803.3488159179688, 840.3102416992188, 836.9061889648438, 766.9478149414062], [812.1729125976562, 834.4081420898438, 835.4514770507812, 781.4710083007812], [809.4024658203125, 833.9953002929688, 839.4006958007812, 794.9461059570312], [790.3453369140625, 840.98828125, 843.1911010742188, 800.3123779296875], [803.560791015625, 840.3421020507812, 839.3167114257812, 797.6234741210938], [798.4285278320312, 838.7589721679688, 833.975830078125, 798.9151000976562], [797.2977905273438, 842.7283935546875, 832.03662109375, 793.1964721679688], [810.8240966796875, 843.4553833007812, 839.6419067382812, 798.643798828125], [800.4583740234375, 839.2929077148438, 836.2658081054688, 790.8334350585938], [795.8999633789062, 837.7881469726562, 836.5651245117188, 790.0345458984375], [800.3716430664062, 841.3189086914062, 839.49609375, 796.4336547851562], [809.4725952148438, 844.6594848632812, 842.9091186523438, 806.4989624023438], [788.6660766601562, 840.1553344726562, 838.668701171875, 800.1105346679688], [792.308837890625, 840.7207641601562, 840.5389404296875, 803.3702392578125], [813.8919677734375, 845.8132934570312, 852.2686157226562, 819.8230590820312], [802.7449340820312, 842.826904296875, 847.34716796875, 803.8194580078125], [817.1568603515625, 845.4131469726562, 849.9937133789062, 796.538330078125], [808.32666015625, 849.4741821289062, 851.9683837890625, 806.8193969726562], [809.9204711914062, 847.6497192382812, 848.7921752929688, 791.220947265625], [812.7416381835938, 846.548095703125, 848.6463012695312, 786.1716918945312], [796.72998046875, 839.5922241210938, 841.38818359375, 781.9412841796875], [812.3768310546875, 839.4977416992188, 841.8094482421875, 779.6366577148438], [815.3698120117188, 842.5245361328125, 843.75732421875, 799.6725463867188], [795.5635375976562, 840.889892578125, 838.4129638671875, 797.5966796875], [819.5057373046875, 845.5272216796875, 841.3394165039062, 802.6656494140625], [813.633544921875, 846.11083984375, 847.52587890625, 810.7718505859375], [806.848388671875, 849.0888671875, 850.5276489257812, 802.1929321289062], [845.1014404296875, 848.9535522460938, 845.3605346679688, 787.06396484375], [804.5161743164062, 844.0059814453125, 845.1073608398438, 789.06591796875], [796.0882568359375, 847.9029541015625, 844.9163818359375, 805.3731079101562], [818.495361328125, 854.22509765625, 844.51123046875, 811.0444946289062], [789.5142822265625, 849.50390625, 848.9548950195312, 800.6046142578125], [801.1632080078125, 848.457763671875, 851.6185913085938, 806.8432006835938], [836.9559326171875, 852.6488037109375, 852.26123046875, 801.219482421875], [830.4529418945312, 855.252197265625, 859.8687744140625, 807.25341796875], [814.8145141601562, 851.007568359375, 854.2146606445312, 811.3451538085938], [815.3346557617188, 847.9759521484375, 843.6397094726562, 820.8303833007812], [817.7781982421875, 854.8784790039062, 849.8112182617188, 834.68408203125], [809.9617309570312, 851.9133911132812, 846.9266967773438, 799.8482666015625], [796.3219604492188, 846.0415649414062, 840.8308715820312, 791.7681884765625], [814.779296875, 851.3267822265625, 842.659423828125, 788.9147338867188], [808.8344116210938, 851.6345825195312, 840.5179443359375, 780.3876953125], [803.89208984375, 848.6890869140625, 837.1630249023438, 791.1278686523438], [802.9188842773438, 845.8666381835938, 833.06103515625, 800.59228515625], [808.0548095703125, 842.5767822265625, 829.6967163085938, 786.6510009765625], [812.6480102539062, 841.4083862304688, 832.771484375, 786.8638916015625], [796.9010620117188, 840.1157836914062, 836.3317260742188, 789.5369262695312], [793.5982666015625, 842.7933349609375, 837.3572998046875, 777.73388671875], [807.6408081054688, 843.8017578125, 835.86572265625, 789.31298828125], [823.9949951171875, 844.4351196289062, 833.55419921875, 799.1983642578125], [820.107666015625, 845.2133178710938, 830.2356567382812, 786.515380859375], [817.5726318359375, 843.34033203125, 831.3327026367188, 784.1242065429688], [820.0227661132812, 846.0220947265625, 835.7349853515625, 799.596435546875], [799.2507934570312, 845.9407958984375, 833.0211791992188, 794.4033813476562], [790.8429565429688, 843.6437377929688, 839.015869140625, 790.2359008789062], [808.6619873046875, 846.4071655273438, 837.5418701171875, 795.822509765625], [812.4564208984375, 844.979248046875, 829.0791625976562, 789.7257080078125], [820.8303833007812, 842.8406372070312, 840.0628051757812, 785.0245971679688], [807.0296630859375, 846.3645629882812, 846.13525390625, 783.00537109375], [798.7477416992188, 844.7379150390625, 843.6095581054688, 786.43359375], [804.4739990234375, 844.7056884765625, 853.7426147460938, 797.7594604492188], [796.0612182617188, 846.0489501953125, 852.3157348632812, 788.1396484375], [804.7227783203125, 843.9796752929688, 842.40771484375, 784.2396240234375], [815.4420166015625, 843.6729736328125, 844.0834350585938, 790.1384887695312], [823.0989990234375, 850.1398315429688, 851.6839599609375, 802.0416259765625], [815.0131225585938, 846.7577514648438, 848.5894165039062, 786.6875610351562], [815.5352783203125, 839.0613403320312, 841.1808471679688, 776.4846801757812], [836.1172485351562, 842.8482666015625, 844.3230590820312, 791.5647583007812], [813.3324584960938, 840.4055786132812, 840.976318359375, 768.2723999023438], [808.3419189453125, 838.4703369140625, 837.1565551757812, 773.3887939453125], [818.3685302734375, 846.6157836914062, 841.0082397460938, 794.3538208007812], [789.5477294921875, 851.54443359375, 843.69921875, 790.870361328125], [801.672607421875, 853.7791748046875, 841.6864013671875, 792.3186645507812], [813.14404296875, 856.5693969726562, 834.446533203125, 792.5816650390625], [807.59912109375, 854.9951782226562, 828.9198608398438, 790.6324462890625], [817.5597534179688, 855.2657470703125, 826.6968383789062, 791.4295654296875], [829.9010620117188, 858.9783325195312, 829.1036987304688, 815.4356079101562], [823.1456298828125, 860.31005859375, 831.6538696289062, 819.0775756835938], [821.5432739257812, 863.428466796875, 829.2743530273438, 798.969482421875], [822.5631103515625, 860.2349243164062, 825.089111328125, 798.1333618164062], [830.817138671875, 860.198486328125, 831.4971313476562, 795.52978515625], [826.6434326171875, 859.1805419921875, 832.6000366210938, 792.4320678710938], [814.807373046875, 849.1557006835938, 824.2919311523438, 799.4390258789062], [831.089599609375, 851.6069946289062, 833.2986450195312, 812.5096435546875], [831.4231567382812, 854.3102416992188, 835.9439086914062, 812.5703125], [817.9583740234375, 851.8171997070312, 827.8037719726562, 792.1051635742188], [814.1458129882812, 852.4154663085938, 830.967041015625, 781.2978515625], [821.7555541992188, 853.8780517578125, 840.6658935546875, 800.2185668945312], [818.67919921875, 853.0615844726562, 841.748046875, 801.57080078125], [813.4710083007812, 845.78076171875, 831.6927490234375, 797.0210571289062], [819.5164794921875, 847.677734375, 834.2559814453125, 812.755126953125], [833.0121459960938, 850.4474487304688, 832.9796142578125, 801.1248168945312], [835.9830322265625, 845.6135864257812, 830.4078369140625, 796.1695556640625], [824.9994506835938, 846.7642211914062, 836.5877685546875, 802.8174438476562], [816.2792358398438, 851.0935668945312, 845.429443359375, 811.5863647460938], [819.1887817382812, 850.0010986328125, 848.2831420898438, 813.5758666992188], [803.9043579101562, 849.0677490234375, 842.1993408203125, 811.3640747070312], [797.9409790039062, 847.787353515625, 833.4987182617188, 792.4539794921875], [825.2976684570312, 853.2844848632812, 836.4024047851562, 795.5211181640625], [819.5676879882812, 851.83154296875, 836.8450927734375, 806.3377685546875], [813.4607543945312, 846.2689819335938, 833.7366943359375, 798.7322998046875], [824.4119873046875, 851.36669921875, 835.6846923828125, 816.1646118164062], [817.2892456054688, 849.7916259765625, 837.949951171875, 827.8543701171875], [823.022705078125, 845.4094848632812, 840.6526489257812, 820.5924682617188], [837.8321533203125, 843.3883666992188, 836.8235473632812, 819.1143188476562], [846.0191650390625, 839.950927734375, 836.6480102539062, 823.2338256835938], [828.5586547851562, 838.7410278320312, 844.9242553710938, 808.8240356445312], [815.8199462890625, 840.7479248046875, 844.8594360351562, 802.9679565429688], [814.3009033203125, 838.2919311523438, 835.0687866210938, 790.5177612304688], [783.5338745117188, 837.3221435546875, 837.3648681640625, 781.0064086914062], [802.1470336914062, 842.1514892578125, 845.3079833984375, 797.376220703125], [816.3119506835938, 841.4423217773438, 845.8424682617188, 802.9212646484375], [797.3676147460938, 838.8805541992188, 842.7471313476562, 804.3452758789062], [801.0860595703125, 839.2817993164062, 840.4614868164062, 803.7575073242188], [814.6693725585938, 845.5911254882812, 840.809326171875, 796.1467895507812], [812.980712890625, 845.332763671875, 833.7062377929688, 787.9357299804688], [800.408935546875, 844.8640747070312, 831.4193115234375, 798.4174194335938], [822.7879028320312, 849.6021118164062, 833.8934936523438, 804.0702514648438], [826.2907104492188, 851.7066650390625, 842.8360595703125, 818.3650512695312], [805.1062622070312, 848.6947631835938, 842.8425903320312, 831.7147827148438], [810.3831787109375, 844.2577514648438, 833.626708984375, 803.0513305664062], [823.6983032226562, 844.9895629882812, 839.3109130859375, 783.0567016601562], [827.4541625976562, 843.812744140625, 842.8154907226562, 797.856201171875], [812.6780395507812, 841.5183715820312, 832.6090087890625, 776.3575439453125], [819.7391967773438, 849.5892944335938, 842.0120849609375, 791.5025024414062], [811.4016723632812, 849.2958374023438, 844.4163818359375, 820.6985473632812], [809.6859741210938, 846.5861206054688, 833.608642578125, 813.741455078125], [815.4588012695312, 847.6845092773438, 834.2843017578125, 810.015625], [809.8062744140625, 840.100341796875, 834.1470947265625, 802.93603515625], [826.2764892578125, 838.5277709960938, 832.517822265625, 804.2630004882812], [809.5541381835938, 838.7621459960938, 834.9301147460938, 804.4174194335938], [801.84130859375, 838.7364501953125, 839.7725830078125, 810.8148803710938], [808.5650634765625, 839.31005859375, 837.5252685546875, 820.4173583984375], [815.7576904296875, 842.97998046875, 838.4068603515625, 817.3905639648438], [815.1867065429688, 843.8507690429688, 839.0015869140625, 806.2651977539062], [816.8814086914062, 838.8501586914062, 832.4826049804688, 805.4513549804688], [838.9209594726562, 841.6383666992188, 835.1743774414062, 807.9212646484375], [806.1007690429688, 841.8580322265625, 837.2951049804688, 813.5787353515625], [796.3576049804688, 836.6795654296875, 831.8055419921875, 806.9033813476562], [820.1760864257812, 838.4066772460938, 834.085205078125, 811.63720703125], [800.27197265625, 838.0949096679688, 833.2637939453125, 799.5238037109375], [789.5966186523438, 843.4241333007812, 839.1107177734375, 791.0729370117188], [812.6118774414062, 846.1237182617188, 839.30078125, 794.5867919921875], [808.4144287109375, 840.7647705078125, 831.1595458984375, 792.4508666992188], [795.5515747070312, 846.9467163085938, 836.5267333984375, 790.6358032226562], [803.3803100585938, 849.6122436523438, 834.6071166992188, 798.1492309570312], [818.4669189453125, 843.6635131835938, 832.8023681640625, 807.0916137695312], [820.6710205078125, 845.490478515625, 836.0310668945312, 790.1897583007812], [812.91650390625, 850.9595336914062, 842.230224609375, 793.9525146484375], [821.2741088867188, 850.73388671875, 848.426513671875, 797.583251953125], [810.1557006835938, 847.6505126953125, 844.7453002929688, 782.5308837890625], [791.815185546875, 845.0851440429688, 837.4381713867188, 778.2025756835938], [802.2896728515625, 848.1965942382812, 844.6952514648438, 810.4373168945312], [812.456298828125, 846.5169067382812, 844.3833618164062, 823.1941528320312], [810.1325073242188, 844.149658203125, 843.7691650390625, 825.5050048828125], [817.5535888671875, 847.0979614257812, 849.0687866210938, 827.98193359375], [813.2338256835938, 847.2169189453125, 847.97509765625, 809.6178588867188], [796.751708984375, 845.893310546875, 847.6920776367188, 783.3644409179688], [790.7094116210938, 845.3917846679688, 841.907470703125, 767.837158203125], [802.9354248046875, 846.5046997070312, 842.47607421875, 778.0375366210938], [819.3712158203125, 848.1455078125, 847.9457397460938, 779.4093627929688], [827.060302734375, 845.39404296875, 843.5493774414062, 788.1309814453125], [830.7484130859375, 847.0807495117188, 844.5055541992188, 812.1279296875], [825.7966918945312, 844.705078125, 839.8329467773438, 789.130859375], [815.4354858398438, 841.780029296875, 833.61328125, 781.5646362304688], [815.738525390625, 846.3048706054688, 836.1401977539062, 798.4998779296875], [809.2221069335938, 842.0787353515625, 832.7720336914062, 780.4413452148438], [820.56640625, 842.04296875, 837.4072875976562, 772.3616943359375], [816.518798828125, 843.1357421875, 843.6228637695312, 792.597412109375], [790.0205688476562, 839.5999145507812, 837.3786010742188, 800.25390625], [793.8831176757812, 838.5552368164062, 839.4320678710938, 785.9969482421875], [789.983642578125, 842.4169311523438, 842.8796997070312, 801.5758666992188], [789.5343017578125, 845.34033203125, 839.2365112304688, 800.1503295898438], [817.0652465820312, 840.556884765625, 836.0964965820312, 783.9375610351562], [813.0148315429688, 837.5236206054688, 832.6371459960938, 785.34814453125], [815.292724609375, 839.64892578125, 836.3796997070312, 786.9668579101562], [818.326416015625, 834.4213256835938, 832.342529296875, 788.3311157226562], [795.7357177734375, 832.6632080078125, 827.7188110351562, 794.5880126953125], [791.9583129882812, 837.8825073242188, 836.9703369140625, 798.7544555664062], [806.82373046875, 840.7880249023438, 843.1727905273438, 795.115478515625], [798.9008178710938, 842.0105590820312, 837.61279296875, 793.1790771484375], [793.03564453125, 840.4879760742188, 836.568359375, 794.2911376953125], [813.3787841796875, 841.1495971679688, 842.13720703125, 796.329345703125], [819.2896728515625, 842.7157592773438, 842.2076416015625, 797.4371337890625], [810.4764404296875, 842.8182373046875, 839.8032836914062, 796.66552734375], [802.2874145507812, 841.6076049804688, 843.173583984375, 799.3246459960938], [802.661376953125, 839.9263916015625, 846.3614501953125, 792.3169555664062], [794.6353149414062, 840.5771484375, 840.0737915039062, 779.8384399414062], [783.4893798828125, 843.5418090820312, 843.3146362304688, 797.7606811523438], [784.7875366210938, 834.9978637695312, 837.7151489257812, 787.7044067382812], [812.2709350585938, 831.8960571289062, 836.1928100585938, 784.4677124023438], [814.5301513671875, 835.5938720703125, 840.6093139648438, 795.5055541992188], [806.593994140625, 832.6085815429688, 837.293212890625, 798.2868041992188], [816.0499267578125, 829.66357421875, 835.2801513671875, 798.4686889648438], [804.3546142578125, 835.8442993164062, 837.2670288085938, 805.6387329101562], [804.7258911132812, 845.1680908203125, 841.9773559570312, 804.56103515625], [792.0269775390625, 842.9548950195312, 841.66064453125, 796.4404296875], [782.9404907226562, 839.039794921875, 840.9129638671875, 786.7494506835938], [798.726806640625, 838.674560546875, 842.2329711914062, 779.125732421875], [790.7191162109375, 835.7657470703125, 841.7074584960938, 781.4902954101562], [797.1519165039062, 830.5570678710938, 835.1058349609375, 787.5182495117188], [811.3020629882812, 834.4697875976562, 838.0447998046875, 800.9841918945312], [803.7594604492188, 837.8571166992188, 841.1611328125, 789.8290405273438], [818.6673583984375, 841.9224243164062, 843.4850463867188, 798.8377685546875], [819.5133056640625, 840.4369506835938, 841.8444213867188, 802.9465942382812], [791.1856689453125, 836.2031860351562, 839.8168334960938, 799.0686645507812], [805.47607421875, 838.6272583007812, 841.4371337890625, 800.7166137695312], [804.1378784179688, 832.1964111328125, 836.4599609375, 811.0116577148438], [784.9111938476562, 832.214111328125, 843.21435546875, 800.8573608398438], [782.8668212890625, 834.3362426757812, 850.3927612304688, 778.6082153320312], [799.99853515625, 833.7822875976562, 858.36865234375, 784.3932495117188], [791.6162109375, 834.4323120117188, 863.83984375, 776.8643188476562], [768.472900390625, 826.5628662109375, 856.917236328125, 766.221435546875], [769.5289306640625, 826.6353149414062, 857.4646606445312, 779.7393188476562], [766.1956787109375, 827.509521484375, 862.1798706054688, 788.1637573242188], [768.034423828125, 823.1738891601562, 856.9483032226562, 786.8919067382812], [775.0324096679688, 823.8706665039062, 854.8849487304688, 793.4069213867188], [789.894287109375, 826.0914916992188, 862.1575317382812, 798.8272705078125], [800.4385375976562, 830.030517578125, 863.2420654296875, 800.1642456054688], [783.5476684570312, 826.802978515625, 851.7418212890625, 780.0997314453125], [761.0846557617188, 823.4034423828125, 852.3402099609375, 777.2437133789062], [770.5960083007812, 829.3712158203125, 859.9276123046875, 778.9934692382812], [771.9573974609375, 827.4955444335938, 857.3432006835938, 780.0081787109375], [766.3504028320312, 822.3706665039062, 852.6868286132812, 783.3834838867188], [788.0443725585938, 825.790283203125, 853.5928344726562, 794.033447265625], [795.069091796875, 827.413818359375, 854.004150390625, 796.3922729492188], [792.14111328125, 832.91943359375, 855.0225830078125, 788.6954345703125], [780.1001586914062, 834.0449829101562, 855.4963989257812, 784.7367553710938], [787.8588256835938, 829.5816650390625, 849.4131469726562, 779.0219116210938], [795.910400390625, 836.2119750976562, 854.587646484375, 778.7318115234375], [794.5833740234375, 833.2555541992188, 849.9112548828125, 781.2197265625], [808.3748168945312, 830.6146850585938, 841.2723999023438, 781.6864624023438], [808.7233276367188, 836.5866088867188, 847.2260131835938, 785.4591674804688], [814.6896362304688, 838.271240234375, 856.0248413085938, 795.5338134765625], [815.5994262695312, 837.0584716796875, 851.2322387695312, 799.911865234375], [782.5077514648438, 833.1834716796875, 843.9697875976562, 799.54052734375], [793.8680419921875, 828.7400512695312, 847.7310791015625, 793.63916015625], [804.3760375976562, 828.6567993164062, 844.2890014648438, 804.1188354492188], [783.748291015625, 831.6889038085938, 843.2119750976562, 803.7131958007812], [797.9202880859375, 836.6272583007812, 856.8516845703125, 796.2138061523438], [805.9488525390625, 836.7255859375, 860.126708984375, 810.9742431640625], [804.3436279296875, 841.36962890625, 854.9290771484375, 808.3555908203125], [795.7489013671875, 838.3880615234375, 848.78515625, 792.5958251953125], [806.4896240234375, 832.6089477539062, 842.8438720703125, 791.0330810546875], [817.5635375976562, 840.0068969726562, 846.1976318359375, 806.7576293945312], [802.7257080078125, 837.925537109375, 844.3098754882812, 805.7757568359375], [803.9464111328125, 837.2673950195312, 846.9454345703125, 809.260009765625], [801.9877319335938, 840.4111938476562, 849.5108032226562, 826.6934814453125], [786.4847412109375, 835.0527954101562, 844.4403686523438, 816.54345703125], [798.792236328125, 833.3966064453125, 843.3397827148438, 790.9122314453125], [799.0177001953125, 831.9459838867188, 843.0099487304688, 784.8209228515625], [802.9122924804688, 829.0963134765625, 842.87109375, 781.7356567382812], [805.5654296875, 835.5919799804688, 852.1708984375, 780.826171875], [803.2650756835938, 835.1043701171875, 845.582275390625, 787.76416015625], [809.2467041015625, 832.5516357421875, 835.3678588867188, 798.359619140625], [814.279296875, 840.8255615234375, 847.0132446289062, 812.2920532226562], [810.4436645507812, 841.9508056640625, 850.6979370117188, 803.5570068359375], [806.4317626953125, 840.2092895507812, 849.2032470703125, 794.2259521484375], [798.17919921875, 837.1203002929688, 848.3441772460938, 797.6205444335938], [790.0586547851562, 836.0252075195312, 850.2239990234375, 790.838134765625], [798.8311767578125, 835.3980712890625, 844.9190673828125, 793.945068359375], [810.9395751953125, 833.1239624023438, 834.7698364257812, 807.3209228515625], [821.9531860351562, 835.739013671875, 838.05517578125, 806.169677734375], [822.3619995117188, 842.6927490234375, 845.8555297851562, 816.6743774414062], [812.2444458007812, 842.4662475585938, 843.75048828125, 810.2653198242188], [803.3087768554688, 841.4961547851562, 843.0647583007812, 800.352294921875], [802.1112670898438, 840.7265625, 843.6451416015625, 800.3086547851562], [811.0978393554688, 839.4876708984375, 848.4951171875, 802.62109375], [830.9185791015625, 840.1932373046875, 852.3713989257812, 805.6812744140625], [822.7804565429688, 842.68115234375, 853.0154418945312, 803.810302734375], [822.1746215820312, 845.4541015625, 855.2640380859375, 819.914306640625], [802.3518676757812, 840.5558471679688, 845.4313354492188, 816.3114624023438], [783.8159790039062, 842.6163330078125, 846.3553466796875, 815.1292724609375], [795.9019165039062, 842.4537963867188, 844.2471313476562, 826.8452758789062], [787.1431884765625, 834.6553955078125, 836.5592651367188, 814.4642333984375], [795.1214599609375, 837.13232421875, 845.8199462890625, 811.5717163085938], [820.1017456054688, 841.2476806640625, 843.3417358398438, 811.9306640625], [810.5025024414062, 841.8077392578125, 838.1939697265625, 806.2147216796875], [803.0595092773438, 842.3732299804688, 844.3356323242188, 817.3036499023438], [826.4783935546875, 846.2457885742188, 848.0172119140625, 821.7210693359375], [814.7926635742188, 848.7711181640625, 852.1484985351562, 825.9141235351562], [802.2830810546875, 842.3140258789062, 846.5254516601562, 822.1536254882812], [803.5313110351562, 842.3338623046875, 844.8260498046875, 807.6704711914062], [803.6514282226562, 844.6871337890625, 845.22509765625, 809.5057983398438], [809.9257202148438, 842.9462280273438, 839.893798828125, 807.500732421875], [813.0827026367188, 844.5794677734375, 845.3895874023438, 812.2686767578125], [830.0481567382812, 850.2589721679688, 858.0006713867188, 821.74951171875], [826.6646118164062, 848.51806640625, 853.2766723632812, 813.8794555664062], [823.194091796875, 847.7277221679688, 849.3587036132812, 808.2555541992188], [816.7528686523438, 843.2833251953125, 843.6309814453125, 790.1279907226562], [812.3722534179688, 843.3773803710938, 841.5210571289062, 791.0444946289062], [818.7931518554688, 843.9317626953125, 842.4534912109375, 804.3688354492188], [817.8167724609375, 841.83447265625, 846.5209350585938, 809.9861450195312], [806.3056640625, 843.4244995117188, 848.593505859375, 818.1293334960938], [808.9014892578125, 843.017578125, 844.8635864257812, 820.6961059570312], [807.90185546875, 844.7901611328125, 850.4535522460938, 815.9301147460938], [802.1729125976562, 841.313720703125, 847.3030395507812, 789.302490234375], [804.4740600585938, 837.5096435546875, 840.466064453125, 785.2257080078125], [819.950439453125, 841.4164428710938, 853.0634765625, 801.1493530273438], [810.7056884765625, 843.9747924804688, 858.9309692382812, 801.19873046875], [799.079345703125, 840.3457641601562, 843.8580932617188, 811.2073974609375], [807.6478271484375, 841.78662109375, 847.0604248046875, 824.035888671875], [811.4658813476562, 844.906005859375, 853.7344360351562, 816.7391967773438], [811.9246215820312, 845.3472290039062, 851.3861694335938, 801.2403564453125], [811.8544311523438, 838.730712890625, 845.5519409179688, 793.725830078125], [815.0790405273438, 836.1209716796875, 847.6486206054688, 798.3018188476562], [818.6767578125, 839.7418823242188, 852.7886352539062, 802.451171875], [804.273681640625, 837.8367309570312, 844.4043579101562, 821.8233642578125], [802.8178100585938, 834.81982421875, 844.05126953125, 830.0435791015625], [813.5232543945312, 837.3411865234375, 848.958984375, 818.3804321289062], [810.1310424804688, 841.8170166015625, 849.7891845703125, 815.1730346679688], [817.1077880859375, 840.3319702148438, 852.7733154296875, 803.2957153320312], [815.4363403320312, 836.565673828125, 846.7337036132812, 785.5609741210938], [820.9109497070312, 842.7945556640625, 853.3779296875, 790.909912109375], [827.3294067382812, 844.9002075195312, 858.0045166015625, 806.580078125], [814.0072021484375, 840.9725341796875, 852.7611083984375, 807.5784912109375], [803.0276489257812, 847.0894775390625, 860.3141479492188, 817.50390625], [803.2852172851562, 848.2798461914062, 858.9736938476562, 824.509765625], [811.6547241210938, 843.2371826171875, 856.6105346679688, 814.1987915039062], [818.1683349609375, 846.1921997070312, 860.58740234375, 806.9073486328125], [820.7909545898438, 842.6792602539062, 854.4519653320312, 795.3981323242188], [841.5299072265625, 842.3770751953125, 855.416259765625, 793.8360595703125], [834.3427124023438, 843.2064208984375, 851.4096069335938, 800.8915405273438], [814.0465698242188, 844.2930297851562, 846.3276977539062, 810.93310546875], [812.5064086914062, 846.7634887695312, 844.4666748046875, 822.9473266601562], [816.3357543945312, 848.9097900390625, 847.1055297851562, 838.18408203125], [821.6888427734375, 850.6853637695312, 857.2022705078125, 830.6002807617188], [824.4989624023438, 847.1820068359375, 858.1004638671875, 815.2316284179688], [827.0756225585938, 845.3392333984375, 863.3331909179688, 814.9421997070312], [830.6329345703125, 847.98779296875, 867.8530883789062, 802.195556640625], [817.3955078125, 844.0870361328125, 862.7655029296875, 797.4353637695312], [807.71923828125, 844.9389038085938, 859.871337890625, 816.1029663085938], [805.4262084960938, 849.0673828125, 855.7943725585938, 815.8936767578125], [809.6643676757812, 851.67626953125, 859.9840087890625, 826.8558959960938], [806.8598022460938, 852.5889282226562, 862.3220825195312, 831.6558837890625], [795.0303344726562, 847.2381591796875, 847.6058959960938, 815.0159912109375], [812.9058227539062, 848.5513305664062, 847.2268676757812, 813.2843017578125], [816.6052856445312, 851.1945190429688, 852.3232421875, 807.9540405273438], [802.3278198242188, 845.9926147460938, 841.03955078125, 799.6524047851562], [811.9122924804688, 846.8807983398438, 840.128662109375, 802.2325439453125], [819.2994384765625, 855.3139038085938, 856.1126098632812, 812.1597900390625], [816.1956176757812, 853.1608276367188, 857.3240356445312, 814.2005004882812], [812.2545776367188, 851.0323486328125, 856.17333984375, 814.4222412109375], [815.011962890625, 849.41064453125, 851.5562744140625, 814.1633911132812], [823.1055908203125, 847.7175903320312, 851.2320556640625, 811.98583984375], [818.1676635742188, 846.5265502929688, 849.912841796875, 808.6217651367188], [810.9557495117188, 847.3214721679688, 847.726806640625, 814.9256591796875], [814.382080078125, 848.5580444335938, 850.154052734375, 813.8237915039062], [823.6547241210938, 848.3176879882812, 854.0258178710938, 818.6849975585938], [817.1071166992188, 848.6802368164062, 852.6688232421875, 821.7323608398438], [807.8656616210938, 846.0997314453125, 843.1017456054688, 821.5269775390625], [808.2575073242188, 842.6962890625, 839.1328125, 808.9664306640625], [808.6256103515625, 845.322998046875, 840.0040283203125, 800.2886352539062], [809.0721435546875, 845.853759765625, 836.5543823242188, 805.1682739257812], [812.1502075195312, 845.0432739257812, 842.6072387695312, 804.5674438476562], [817.94189453125, 844.9917602539062, 849.45751953125, 813.15673828125], [832.7681274414062, 843.51171875, 850.053955078125, 822.3007202148438], [832.0192260742188, 846.0503540039062, 857.6002807617188, 829.5067749023438], [811.5584716796875, 842.06103515625, 853.99853515625, 813.6470336914062], [808.43603515625, 843.499267578125, 852.8226928710938, 805.6692504882812], [814.0991821289062, 847.416015625, 852.2409057617188, 800.6477661132812], [791.5442504882812, 842.6729736328125, 847.3514404296875, 802.222412109375], [791.936279296875, 844.5997314453125, 849.4962768554688, 809.8341064453125], [803.5720825195312, 846.9760131835938, 853.3192749023438, 817.5924682617188], [814.6182250976562, 848.9627075195312, 856.3799438476562, 823.9998168945312], [816.8861083984375, 845.620849609375, 850.9848022460938, 810.861572265625], [809.2560424804688, 839.9320678710938, 843.5009155273438, 799.8368530273438], [823.0426635742188, 845.0794067382812, 846.3661499023438, 806.8523559570312], [811.6209106445312, 843.4175415039062, 840.6522827148438, 798.286865234375], [795.9701538085938, 841.1025390625, 840.1409301757812, 790.7861328125], [797.5433349609375, 845.3298950195312, 851.5067749023438, 812.2718505859375], [806.3944702148438, 850.5540771484375, 856.8890991210938, 806.5503540039062], [804.6456909179688, 845.3793334960938, 852.0165405273438, 790.0772705078125], [800.8245239257812, 835.9061279296875, 846.575439453125, 793.6685180664062], [808.3272705078125, 840.1072387695312, 846.7678833007812, 798.0819091796875], [818.4080200195312, 839.95263671875, 842.1275634765625, 790.998291015625], [812.002197265625, 840.0556640625, 844.724853515625, 785.7562255859375], [813.2581176757812, 841.3782348632812, 844.3917236328125, 799.8806762695312], [824.4540405273438, 842.5581665039062, 843.1014404296875, 800.614990234375], [815.4537353515625, 842.755859375, 844.5104370117188, 788.51708984375], [811.681884765625, 841.4083251953125, 844.5687255859375, 800.6118774414062], [798.5299072265625, 834.7939453125, 834.9251708984375, 799.7598876953125], [786.1149291992188, 835.2710571289062, 836.70556640625, 797.3599853515625], [786.887939453125, 836.2601928710938, 843.365234375, 802.0234985351562], [777.5294799804688, 833.184814453125, 836.5335693359375, 798.3580932617188], [774.3018798828125, 831.5179443359375, 836.025634765625, 799.3548583984375], [791.1907958984375, 833.8184204101562, 844.6884765625, 800.8682861328125], [815.253662109375, 839.4622192382812, 845.43310546875, 803.4097900390625], [813.3704833984375, 835.7613525390625, 841.1154174804688, 803.1740112304688], [806.662109375, 834.3934936523438, 840.9508666992188, 792.9845581054688], [821.44970703125, 837.0551147460938, 840.78076171875, 798.5384521484375], [808.8013305664062, 837.1358032226562, 836.3715209960938, 789.9371948242188], [792.8076782226562, 835.3282470703125, 835.833251953125, 784.99267578125], [802.8787231445312, 839.4992065429688, 843.6959228515625, 801.0759887695312], [809.4406127929688, 841.5289306640625, 845.598876953125, 802.646240234375], [807.4652099609375, 841.0104370117188, 847.1253662109375, 798.6356811523438], [808.1873168945312, 837.2747802734375, 843.8587036132812, 780.8060913085938], [802.2346801757812, 835.308837890625, 839.6878051757812, 782.7044677734375], [808.8435668945312, 838.2025756835938, 842.2465209960938, 792.1099243164062], [804.9302368164062, 834.7584838867188, 836.1632080078125, 788.6609497070312], [800.8287963867188, 834.1272583007812, 843.1841430664062, 809.9030151367188], [802.1942138671875, 839.6694946289062, 851.4661254882812, 829.9976196289062], [802.1615600585938, 838.4981079101562, 848.4404296875, 813.5562133789062], [808.1676025390625, 835.7553100585938, 847.8675537109375, 795.8812255859375], [796.785888671875, 836.97216796875, 840.4807739257812, 787.1712646484375], [803.2509155273438, 833.8733520507812, 834.8386840820312, 785.1377563476562], [808.8965454101562, 834.6036376953125, 838.0584106445312, 784.7376708984375], [793.7798461914062, 832.5350952148438, 837.0523681640625, 779.8971557617188], [800.804931640625, 830.3432006835938, 836.4405517578125, 781.3634033203125], [819.030517578125, 832.52001953125, 842.86669921875, 784.876953125], [809.4074096679688, 836.70849609375, 846.2901611328125, 785.4142456054688], [811.8580322265625, 834.4884643554688, 834.9037475585938, 780.550048828125], [816.4154052734375, 831.402587890625, 837.6087646484375, 794.8126831054688], [802.2897338867188, 835.76904296875, 846.3963012695312, 801.0284423828125], [796.93017578125, 838.4322509765625, 844.19775390625, 791.7175903320312], [800.8985595703125, 834.385498046875, 846.6392822265625, 782.698974609375], [809.0665283203125, 837.0010986328125, 849.8031616210938, 787.4017333984375], [806.775634765625, 840.1817016601562, 846.9082641601562, 801.2398681640625], [813.8736572265625, 841.2913818359375, 848.9566650390625, 800.0892944335938], [812.3397827148438, 839.4517211914062, 847.9500732421875, 796.289306640625], [803.3992309570312, 836.2852172851562, 840.873779296875, 802.6972045898438], [811.9525146484375, 841.2656860351562, 847.5892944335938, 798.0805053710938], [803.11181640625, 844.0006713867188, 848.1707153320312, 783.532470703125], [796.654052734375, 841.8168334960938, 843.5390625, 795.1414184570312], [801.66357421875, 844.3932495117188, 846.4016723632812, 801.5169067382812], [812.3629760742188, 848.2525634765625, 850.087890625, 796.3816528320312], [814.3582763671875, 846.284912109375, 845.6494750976562, 794.323486328125], [813.2313842773438, 842.4164428710938, 840.673583984375, 800.2431030273438], [822.1420288085938, 840.1167602539062, 841.7014770507812, 803.3441162109375], [813.9459228515625, 838.6007690429688, 842.240234375, 810.3494262695312], [808.4292602539062, 839.8612670898438, 846.3981323242188, 814.8527221679688], [798.8243408203125, 839.5662841796875, 849.2493896484375, 805.4344482421875], [808.7923583984375, 837.4507446289062, 845.26416015625, 788.0288696289062], [815.4911499023438, 841.0187377929688, 842.32763671875, 774.2526245117188], [802.1178588867188, 838.3233642578125, 835.5191040039062, 774.3629150390625], [802.0906982421875, 833.2235107421875, 830.2731323242188, 777.8286743164062], [814.1112060546875, 837.6888427734375, 840.3690795898438, 793.2742309570312], [808.0673828125, 837.4068603515625, 843.9490966796875, 801.4935302734375], [800.9373168945312, 837.00634765625, 844.8152465820312, 801.0438232421875], [812.8106079101562, 839.4157104492188, 849.529052734375, 795.3593139648438], [816.7706909179688, 836.7684326171875, 843.6204223632812, 802.4392700195312], [804.1516723632812, 839.372802734375, 841.42578125, 813.9937744140625], [806.996826171875, 838.4613037109375, 844.9557495117188, 808.2210693359375], [818.8115234375, 836.5029296875, 843.7365112304688, 815.6023559570312], [807.0903930664062, 842.6568603515625, 851.1001586914062, 814.1467895507812], [800.7410278320312, 840.8900146484375, 848.2925415039062, 791.2400512695312], [808.4650268554688, 837.8596801757812, 841.7740478515625, 790.5818481445312], [815.05712890625, 840.7037353515625, 844.5745239257812, 797.156982421875], [808.4940185546875, 841.3538208007812, 844.8846435546875, 798.4554443359375], [819.49755859375, 840.01904296875, 848.607177734375, 800.4445190429688], [809.6463623046875, 834.8910522460938, 845.8065185546875, 795.323486328125], [790.0623168945312, 833.399658203125, 843.108642578125, 787.5469970703125], [792.8837280273438, 833.736083984375, 841.9088745117188, 791.3173217773438], [786.1729125976562, 831.3326416015625, 837.7788696289062, 801.6071166992188], [797.7864379882812, 832.1170043945312, 835.4464721679688, 801.9826049804688], [816.7227172851562, 836.0888671875, 836.6032104492188, 810.9451293945312], [819.0211181640625, 836.7587280273438, 846.9076538085938, 815.3350219726562], [806.8087768554688, 836.4383544921875, 846.5613403320312, 789.4013671875], [805.726318359375, 834.4303588867188, 840.6395874023438, 783.463134765625], [804.3032836914062, 835.5960693359375, 843.112548828125, 795.2459106445312], [800.9074096679688, 838.697021484375, 846.875732421875, 792.3538818359375], [804.8388061523438, 840.858642578125, 842.3917846679688, 802.4446411132812], [813.613037109375, 840.28564453125, 841.47216796875, 815.353515625], [810.5975341796875, 838.556640625, 843.773193359375, 802.3468017578125], [808.0596313476562, 841.1090087890625, 846.4622192382812, 813.0106201171875], [819.3072509765625, 839.5037231445312, 846.54638671875, 813.7071533203125], [816.9454345703125, 835.6553344726562, 842.2447509765625, 799.1290283203125], [818.3388671875, 838.6741333007812, 849.328369140625, 815.9772338867188], [818.60986328125, 838.9026489257812, 849.20068359375, 807.695556640625], [817.8275146484375, 836.8545532226562, 847.3216552734375, 797.1419067382812], [818.6791381835938, 836.603759765625, 846.2123413085938, 803.0576171875], [813.9190673828125, 838.8094482421875, 847.9705200195312, 806.5236206054688], [825.441162109375, 840.922607421875, 851.8311767578125, 807.9545288085938], [818.80322265625, 837.761962890625, 844.1123046875, 801.1055908203125], [794.4335327148438, 840.5966186523438, 849.0509033203125, 800.223876953125], [795.81787109375, 841.2772827148438, 848.1661987304688, 791.515869140625], [802.9893188476562, 838.4105834960938, 842.7471923828125, 791.7763671875], [814.001220703125, 844.4228515625, 848.548828125, 793.7999267578125], [811.275390625, 846.0418701171875, 849.1874389648438, 805.3165893554688], [828.8154296875, 845.2050170898438, 853.3157348632812, 814.0982055664062], [836.2203369140625, 847.4461059570312, 857.6266479492188, 803.3818969726562], [798.5660400390625, 842.384765625, 850.005859375, 790.819580078125], [806.1065673828125, 842.1484985351562, 848.8563842773438, 797.9564208984375], [811.342529296875, 841.5761108398438, 847.3886108398438, 795.1428833007812], [800.2770385742188, 841.6664428710938, 840.5723876953125, 799.6944580078125], [806.1836547851562, 843.5235595703125, 845.42626953125, 807.592529296875], [799.8314208984375, 840.7357788085938, 848.5779418945312, 803.3818969726562], [803.1777954101562, 843.7960815429688, 853.2780151367188, 801.3596801757812], [792.8135986328125, 842.2555541992188, 851.9797973632812, 781.058349609375], [790.5753173828125, 834.8838500976562, 842.6621704101562, 783.6314697265625], [808.25927734375, 839.0240478515625, 846.0982666015625, 802.832763671875], [803.3209838867188, 841.9168701171875, 846.36328125, 803.5117797851562], [811.2153930664062, 839.5701904296875, 846.0242309570312, 808.9737548828125], [815.7228393554688, 837.881591796875, 844.4337158203125, 807.405029296875], [813.000732421875, 841.3851928710938, 850.4676513671875, 805.0547485351562], [809.1602783203125, 845.3399658203125, 854.0885009765625, 804.1302490234375], [811.697021484375, 841.335205078125, 842.4288330078125, 797.7286376953125], [809.4580078125, 841.3907470703125, 841.3903198242188, 800.4338989257812], [805.805908203125, 847.6570434570312, 845.8833618164062, 809.4136962890625], [822.6272583007812, 848.7202758789062, 846.6116943359375, 804.9471435546875], [811.8892211914062, 842.55126953125, 839.7879028320312, 802.519775390625], [803.9751586914062, 840.400390625, 840.1869506835938, 805.7905883789062], [816.3279418945312, 843.9144287109375, 848.566162109375, 810.6118774414062], [818.4261474609375, 841.9750366210938, 845.5478515625, 810.4932250976562], [806.222412109375, 838.3936767578125, 838.1402587890625, 793.5123901367188], [817.4547729492188, 841.8223876953125, 842.351806640625, 791.7181396484375], [824.2296752929688, 843.60107421875, 844.9097290039062, 801.6354370117188], [817.4802856445312, 842.9263305664062, 836.8334350585938, 794.2369995117188], [803.7537231445312, 845.3970336914062, 836.6653442382812, 807.1445922851562], [808.8080444335938, 846.62744140625, 839.7667846679688, 809.0469360351562], [821.1280517578125, 849.601806640625, 839.3421020507812, 805.3067626953125], [809.1742553710938, 850.0933227539062, 836.6541748046875, 803.5006103515625], [806.8777465820312, 847.4569091796875, 837.9304809570312, 792.6823120117188], [808.4717407226562, 845.76318359375, 839.5786743164062, 809.3681030273438], [805.528076171875, 847.5180053710938, 841.1586303710938, 816.6941528320312], [801.5965576171875, 847.1322021484375, 838.5572509765625, 819.8335571289062], [805.6417846679688, 845.9635620117188, 837.6138916015625, 819.9573974609375], [818.9249877929688, 846.7091674804688, 841.3748168945312, 806.0569458007812], [827.0977783203125, 846.612548828125, 842.9521484375, 803.4276733398438], [810.6808471679688, 843.508056640625, 841.2056884765625, 802.1939697265625], [808.005859375, 840.7328491210938, 839.9320068359375, 799.2457885742188], [807.8396606445312, 844.8826293945312, 843.3837890625, 807.8848266601562], [804.7035522460938, 844.59130859375, 835.2767333984375, 815.4464721679688], [818.7520141601562, 844.74072265625, 829.50048828125, 812.0650634765625], [825.8282470703125, 844.6648559570312, 833.6487426757812, 799.3218383789062], [826.9654541015625, 848.7635498046875, 841.716064453125, 807.74267578125], [819.9728393554688, 850.159912109375, 843.35546875, 806.5185546875], [798.2315063476562, 843.3262329101562, 836.7271728515625, 786.9304809570312], [801.3576049804688, 844.9617309570312, 838.9476928710938, 796.0836791992188], [803.0176391601562, 849.2018432617188, 839.4921875, 801.399169921875], [812.3368530273438, 846.6629028320312, 832.0386962890625, 801.6948852539062], [830.1748657226562, 848.8751220703125, 833.1888427734375, 817.25634765625], [829.0292358398438, 855.3934326171875, 838.86865234375, 819.1480102539062], [835.2625122070312, 858.1730346679688, 835.5386962890625, 822.6812133789062], [824.9864501953125, 855.7086181640625, 825.8319702148438, 819.3021240234375], [816.0098266601562, 847.5808715820312, 816.3029174804688, 803.743896484375], [830.6668701171875, 847.8380126953125, 819.4434204101562, 809.4180297851562], [834.1128540039062, 847.8585815429688, 818.7364501953125, 814.8385009765625], [824.4932861328125, 845.0364379882812, 823.3095703125, 830.9454956054688], [834.366943359375, 845.0382690429688, 830.1785888671875, 830.1529541015625], [833.5341186523438, 849.5418090820312, 831.048095703125, 824.3461303710938], [836.1188354492188, 850.5095825195312, 834.1052856445312, 828.7139892578125], [832.1661376953125, 845.581787109375, 832.443359375, 815.6196899414062], [831.716796875, 845.2470092773438, 827.6224975585938, 799.3859252929688], [852.2957763671875, 848.3501586914062, 828.4879150390625, 811.0878295898438], [822.1368408203125, 843.3886108398438, 825.7734985351562, 812.308349609375], [801.0782470703125, 842.4228515625, 825.285888671875, 804.0128784179688], [812.5294799804688, 844.1095581054688, 823.945068359375, 800.381103515625], [806.2545166015625, 843.0238037109375, 825.2741088867188, 799.7340698242188], [799.2692260742188, 844.65576171875, 832.2993774414062, 804.6937866210938], [821.7366943359375, 841.7582397460938, 826.76318359375, 799.4458618164062], [835.1402587890625, 842.9432983398438, 825.8159790039062, 804.9880981445312], [814.2672119140625, 844.659912109375, 830.6824340820312, 808.7659912109375], [807.588623046875, 843.2022094726562, 827.7622680664062, 805.9267578125], [812.0437622070312, 844.0107421875, 825.1387329101562, 800.3294067382812], [804.7244262695312, 848.6282958984375, 832.6489868164062, 805.832763671875], [824.6849365234375, 849.4220581054688, 832.6221923828125, 818.1365356445312], [830.4072875976562, 842.287841796875, 827.1118774414062, 815.1847534179688], [823.0028076171875, 839.5065307617188, 831.6768188476562, 812.6539916992188], [821.9165649414062, 844.0421142578125, 837.9354858398438, 815.081787109375], [810.0606689453125, 841.6962890625, 840.3865966796875, 805.57861328125], [797.5484619140625, 837.332275390625, 839.995361328125, 796.9608764648438], [809.7195434570312, 840.7924194335938, 841.8101196289062, 791.2763671875], [821.7207641601562, 840.21533203125, 836.988037109375, 790.209716796875], [806.3176879882812, 834.1254272460938, 835.4005737304688, 795.7046508789062], [796.1240844726562, 831.5825805664062, 831.8427734375, 790.729736328125], [797.9056396484375, 835.1932373046875, 832.3797607421875, 790.427734375], [802.8851928710938, 840.789306640625, 839.1712646484375, 808.65234375], [807.4669799804688, 840.7645263671875, 839.0526123046875, 810.053466796875], [819.1797485351562, 839.8504028320312, 835.5509033203125, 789.5232543945312], [829.3639526367188, 838.7781982421875, 830.9920654296875, 790.3956909179688], [825.2367553710938, 840.056884765625, 833.7649536132812, 799.2767944335938], [804.2510375976562, 840.3423461914062, 837.5433959960938, 792.4647216796875], [790.9157104492188, 835.0239868164062, 826.1316528320312, 785.7796020507812], [807.5862426757812, 839.97705078125, 831.195068359375, 807.6475219726562], [804.3366088867188, 841.1185302734375, 838.543701171875, 807.786376953125], [795.9947509765625, 836.5947875976562, 831.8409423828125, 792.48095703125], [799.8742065429688, 836.5966186523438, 832.0633544921875, 798.8117065429688], [803.58837890625, 838.1005859375, 837.7042846679688, 803.3240356445312], [801.8018188476562, 840.9588012695312, 839.7000122070312, 799.6417236328125], [794.6015625, 837.5604858398438, 833.1195068359375, 798.08203125], [797.9238891601562, 834.1397705078125, 829.8733520507812, 788.2025146484375], [805.3089599609375, 838.423095703125, 834.0230712890625, 774.7543334960938], [803.1771850585938, 839.372802734375, 833.9483642578125, 784.067626953125], [800.2357177734375, 839.8184204101562, 834.8062133789062, 785.193359375], [809.1525268554688, 847.69091796875, 844.1229858398438, 795.075439453125], [820.5689086914062, 849.953125, 843.6488037109375, 809.6665649414062], [821.8079833984375, 847.5938720703125, 844.5546264648438, 813.3572387695312], [807.93408203125, 844.0131225585938, 839.8707275390625, 796.9447631835938], [800.8681640625, 844.145751953125, 835.7146606445312, 781.113525390625], [804.8946533203125, 845.28369140625, 839.29150390625, 787.5401000976562], [802.2804565429688, 839.8760986328125, 830.6134033203125, 780.1998901367188], [802.451416015625, 844.8145751953125, 834.3449096679688, 787.9403686523438], [817.1796264648438, 846.6378173828125, 840.0980834960938, 799.3570556640625], [823.5997924804688, 839.4091796875, 837.068359375, 808.1510620117188], [817.7545776367188, 841.406005859375, 841.0226440429688, 807.2608032226562], [802.6375122070312, 839.8978271484375, 838.66845703125, 801.237548828125], [802.3530883789062, 835.41064453125, 837.0738525390625, 806.3905029296875], [809.0604858398438, 839.0958862304688, 839.3370361328125, 806.4176025390625], [794.2295532226562, 840.30712890625, 836.1286010742188, 806.803466796875], [798.4827880859375, 838.2752075195312, 837.4020385742188, 821.68896484375], [815.9701538085938, 841.3733520507812, 843.8023071289062, 818.4812622070312], [814.9195556640625, 846.3927001953125, 848.987060546875, 821.07373046875], [809.2615356445312, 842.0938720703125, 843.0869140625, 814.4879150390625], [820.3595581054688, 841.2625732421875, 841.5679931640625, 802.5916137695312], [830.82421875, 844.9549560546875, 840.8056030273438, 790.1746215820312], [817.3428344726562, 845.6015625, 835.2034301757812, 792.4735717773438], [806.3333740234375, 845.9655151367188, 833.0109252929688, 800.4405517578125], [817.6780395507812, 846.8892211914062, 835.1681518554688, 794.2249755859375], [818.1888427734375, 848.5855102539062, 838.1060791015625, 803.892333984375], [818.9740600585938, 850.5868530273438, 844.1388549804688, 812.0029907226562], [822.88525390625, 849.0629272460938, 845.9960327148438, 804.7514038085938], [832.1065673828125, 842.8447875976562, 839.8286743164062, 795.9806518554688], [839.2756958007812, 848.8002319335938, 845.966796875, 807.4922485351562], [815.4798583984375, 849.6934814453125, 844.0725708007812, 803.6678466796875], [808.9528198242188, 844.4785766601562, 838.7529296875, 802.7893676757812], [820.8483276367188, 848.1925048828125, 839.9708862304688, 813.5455932617188], [811.4679565429688, 847.1978149414062, 840.4799194335938, 814.4285888671875], [800.0079956054688, 843.1819458007812, 841.9380493164062, 813.5073852539062], [811.4041748046875, 840.240966796875, 838.1277465820312, 813.7539672851562], [824.7381591796875, 836.5772094726562, 834.8328857421875, 806.5324096679688], [818.5072021484375, 836.1588134765625, 837.1569213867188, 802.3516235351562], [815.3947143554688, 835.50732421875, 836.3985595703125, 797.8594970703125], [822.4384155273438, 837.3175048828125, 836.2195434570312, 808.6276245117188], [809.1636352539062, 838.0255126953125, 833.9061889648438, 812.0474243164062], [791.4859619140625, 838.1204223632812, 840.6982421875, 806.3643188476562], [793.7348022460938, 840.0901489257812, 842.0103149414062, 813.2946166992188], [806.1668090820312, 839.6957397460938, 834.94287109375, 811.85205078125], [815.1411743164062, 839.923828125, 842.0863647460938, 808.7114868164062], [820.7361450195312, 839.6243896484375, 841.2763671875, 801.0983276367188], [831.7911987304688, 842.1104736328125, 835.1798706054688, 805.8939819335938], [819.3075561523438, 844.750732421875, 837.6248168945312, 803.2320556640625], [797.5973510742188, 842.5040283203125, 839.024169921875, 790.1448364257812], [802.661865234375, 845.7146606445312, 843.826416015625, 787.6807861328125], [801.13671875, 847.526611328125, 843.7385864257812, 790.0836791992188], [792.4312133789062, 840.5759887695312, 839.9600219726562, 789.428955078125], [810.2222900390625, 843.6215209960938, 845.1133422851562, 793.9500732421875], [816.1836547851562, 845.4689331054688, 841.32470703125, 797.4581909179688], [821.788330078125, 844.7977294921875, 839.025146484375, 804.8101196289062], [823.384765625, 844.277587890625, 842.2850341796875, 811.287353515625], [837.4048461914062, 850.1337890625, 852.7532348632812, 820.0445556640625], [836.19482421875, 846.1978149414062, 849.1070556640625, 822.1277465820312], [799.86376953125, 833.0942993164062, 835.8719482421875, 811.0184326171875], [800.5372314453125, 833.5752563476562, 842.70849609375, 812.169189453125], [803.68408203125, 833.7907104492188, 842.21142578125, 804.8499755859375], [791.453125, 830.1318359375, 839.2097778320312, 793.3953247070312], [804.5321655273438, 835.8696899414062, 845.1427612304688, 797.5538330078125], [823.1650390625, 842.7723999023438, 845.9539184570312, 800.0903930664062], [823.8351440429688, 842.9072875976562, 841.4671020507812, 793.9677124023438], [794.6489868164062, 841.4144287109375, 834.7255859375, 790.7208251953125], [785.7822265625, 840.412841796875, 831.2589111328125, 794.2880859375], [807.00390625, 841.7112426757812, 835.0961303710938, 796.9607543945312], [800.8851928710938, 842.7389526367188, 838.5321655273438, 796.985595703125], [799.8994140625, 842.4537963867188, 835.0567626953125, 789.6732788085938], [822.2939453125, 843.3988037109375, 833.7769165039062, 791.817138671875], [823.4326171875, 838.9036865234375, 829.7615966796875, 786.6737670898438], [807.4109497070312, 840.1146240234375, 829.4248657226562, 785.1254272460938], [801.6329956054688, 840.9610595703125, 835.1581420898438, 807.9503173828125], [809.6683959960938, 839.0826416015625, 833.6060180664062, 802.3889770507812], [814.6475830078125, 844.3460083007812, 837.6068115234375, 792.917724609375], [801.7081909179688, 841.15576171875, 840.1753540039062, 800.2613525390625], [807.4926147460938, 840.4803466796875, 837.986083984375, 788.7095947265625], [820.7318725585938, 841.6094360351562, 842.5480346679688, 789.8226928710938], [817.1619262695312, 838.989013671875, 844.0390014648438, 810.6172485351562], [809.0206909179688, 842.794677734375, 846.34130859375, 816.1753540039062], [813.0029296875, 840.3834228515625, 833.9901123046875, 799.4227905273438], [807.4111328125, 836.3641357421875, 827.6047973632812, 791.64892578125], [786.0018310546875, 836.1732177734375, 829.8126220703125, 787.2177124023438], [796.5120849609375, 832.1650390625, 825.8893432617188, 782.4321899414062], [807.9662475585938, 833.3440551757812, 833.233642578125, 799.682861328125], [794.8796997070312, 837.9296875, 842.5828247070312, 817.7940673828125], [805.99755859375, 840.7880249023438, 842.3751220703125, 813.01416015625], [801.6593627929688, 837.8663330078125, 831.0512084960938, 801.19677734375], [791.679443359375, 836.9090576171875, 828.29638671875, 793.2080688476562], [803.8279418945312, 838.2708129882812, 828.7484130859375, 792.81982421875], [805.4341430664062, 835.1962890625, 824.8681030273438, 795.4534912109375], [809.2596435546875, 837.1748046875, 831.7669677734375, 798.8533325195312], [810.281005859375, 841.1659545898438, 839.5182495117188, 805.6077270507812], [799.2974243164062, 839.4973754882812, 836.7158203125, 788.7191162109375], [799.0278930664062, 843.015625, 841.74658203125, 780.0867309570312], [801.3638305664062, 842.7021484375, 841.595947265625, 790.440673828125], [802.9461059570312, 839.4243774414062, 832.2081909179688, 791.5196533203125], [803.1683349609375, 844.470458984375, 835.9508666992188, 802.2662353515625], [796.9086303710938, 846.7971801757812, 842.772216796875, 813.53271484375], [790.2162475585938, 846.5847778320312, 841.4966430664062, 796.0693969726562], [785.7493896484375, 846.0362548828125, 839.3742065429688, 790.3728637695312], [806.3572387695312, 850.2440185546875, 847.1405029296875, 785.6046752929688], [816.0467529296875, 853.5496826171875, 850.093994140625, 785.5313110351562], [814.4176635742188, 848.0667724609375, 837.4287719726562, 794.4450073242188], [812.5371704101562, 847.4230346679688, 836.2310180664062, 797.0628051757812], [802.4256591796875, 847.9636840820312, 842.3778686523438, 802.8536987304688], [796.3297119140625, 845.1685791015625, 839.6454467773438, 808.948974609375], [797.011474609375, 843.4700317382812, 838.2533569335938, 808.3488159179688], [806.64697265625, 842.5247192382812, 839.6478881835938, 806.4720458984375], [831.3895263671875, 846.6886596679688, 844.634521484375, 811.581787109375], [815.0114135742188, 848.0401000976562, 849.8269653320312, 802.410888671875], [802.4050903320312, 843.9935913085938, 843.3240356445312, 795.3719482421875], [813.5567626953125, 845.0682983398438, 844.6064453125, 794.967529296875], [803.6361694335938, 846.3735961914062, 848.7210693359375, 800.5718994140625], [809.090087890625, 842.9949951171875, 840.0474243164062, 800.4246826171875], [811.3223266601562, 844.8038940429688, 843.3760986328125, 810.6920776367188], [813.52685546875, 842.0242919921875, 844.2319946289062, 807.3140869140625], [810.041259765625, 840.4209594726562, 845.2999877929688, 797.833984375], [806.6153564453125, 842.7931518554688, 846.5402221679688, 792.8929443359375], [802.0250244140625, 838.1167602539062, 838.2611694335938, 788.7453002929688], [805.7489013671875, 839.1801147460938, 837.4716796875, 793.755126953125], [808.3963012695312, 843.0620727539062, 841.328857421875, 790.0831909179688], [801.1051635742188, 841.7155151367188, 842.8099975585938, 796.5385131835938], [797.6298217773438, 838.5093383789062, 843.0631713867188, 806.841064453125], [806.1419067382812, 842.6358032226562, 847.0718994140625, 802.7055053710938], [812.9158935546875, 841.937744140625, 846.1859741210938, 807.2305297851562], [807.7066040039062, 835.216796875, 836.1450805664062, 811.519775390625], [809.2041015625, 840.1533203125, 834.2314453125, 811.8592529296875], [805.6026611328125, 839.9924926757812, 838.0753173828125, 807.3726196289062], [801.9822998046875, 837.3106689453125, 834.9304809570312, 795.5796508789062], [794.6591186523438, 839.3998413085938, 832.538818359375, 798.38427734375], [798.7105102539062, 838.5821533203125, 838.8118896484375, 800.5053100585938], [804.9904174804688, 840.8986206054688, 845.5896606445312, 797.3118896484375], [812.6953125, 844.1442260742188, 850.8243408203125, 803.398681640625], [796.8848266601562, 838.4712524414062, 847.1053466796875, 798.3861694335938], [816.6687622070312, 843.490966796875, 850.2651977539062, 797.7003173828125], [830.58984375, 848.6710205078125, 850.3429565429688, 798.8446655273438], [802.0478515625, 841.3101806640625, 839.7052001953125, 798.2191772460938], [811.541259765625, 841.0307006835938, 842.0476684570312, 810.6912231445312], [821.4129638671875, 842.7152099609375, 850.6104736328125, 816.844482421875], [795.1466674804688, 840.4103393554688, 852.538330078125, 814.7363891601562], [791.9252319335938, 838.4522094726562, 849.7371826171875, 808.6423950195312], [804.6810913085938, 836.1319580078125, 839.8136596679688, 795.3079833984375], [804.4109497070312, 840.2294921875, 839.9991455078125, 804.472900390625], [804.62158203125, 839.268798828125, 838.0941772460938, 799.7088623046875], [802.6734619140625, 840.3565673828125, 839.7420043945312, 801.6764526367188], [809.5894775390625, 841.8341064453125, 844.2000732421875, 816.0078735351562], [819.3153686523438, 841.5693359375, 848.3456420898438, 818.7321166992188], [814.0806884765625, 843.425537109375, 851.1771850585938, 815.708251953125], [813.2313232421875, 840.4498901367188, 843.8709716796875, 818.607177734375], [825.8107299804688, 839.7616577148438, 845.7547607421875, 825.5476684570312], [832.2897338867188, 846.8147583007812, 857.5005493164062, 831.8140258789062], [816.95849609375, 849.2108154296875, 853.4464721679688, 811.7017822265625], [823.375, 852.2284545898438, 854.5601806640625, 811.5658569335938], [830.6369018554688, 853.56982421875, 859.8810424804688, 820.80078125], [815.795166015625, 850.4512329101562, 854.645263671875, 800.3592529296875], [817.6031494140625, 851.0465087890625, 856.2155151367188, 805.4036254882812], [826.388671875, 844.5567626953125, 851.2940063476562, 812.154296875], [825.0785522460938, 847.248046875, 853.1270751953125, 816.0560302734375], [826.5400390625, 851.492919921875, 852.0084228515625, 808.571044921875], [824.7781982421875, 848.8903198242188, 842.7509765625, 804.6082153320312], [820.6224365234375, 847.5271606445312, 846.04150390625, 827.2398071289062], [820.878662109375, 851.6983032226562, 853.7651977539062, 834.8082885742188], [820.6378173828125, 851.863525390625, 858.0697021484375, 820.2128295898438], [829.3936767578125, 847.5657958984375, 856.66015625, 827.3231811523438], [828.5645751953125, 843.9537353515625, 854.9022216796875, 823.2457275390625], [821.25537109375, 845.4465942382812, 856.6848754882812, 805.1002197265625], [819.73095703125, 842.7133178710938, 850.095458984375, 804.2313842773438], [811.3112182617188, 835.5303955078125, 840.52001953125, 810.325927734375], [815.0569458007812, 840.6724853515625, 844.407958984375, 811.2435913085938], [818.9794921875, 849.4057006835938, 850.0377197265625, 808.2613525390625], [829.6438598632812, 845.5363159179688, 843.010009765625, 802.6799926757812], [812.0440673828125, 840.3919067382812, 837.957763671875, 798.1390991210938], [803.4981689453125, 842.6653442382812, 840.657958984375, 807.766845703125], [807.799072265625, 841.7960815429688, 841.5888671875, 808.9644775390625], [799.171875, 838.6442260742188, 839.6082153320312, 816.3197631835938], [810.1422729492188, 841.5985717773438, 840.4557495117188, 817.48291015625], [830.8418579101562, 845.6685791015625, 844.9552001953125, 803.4912109375], [837.368896484375, 844.0609130859375, 841.5895385742188, 792.7223510742188], [826.2634887695312, 845.458984375, 845.197021484375, 804.1329956054688], [799.8372192382812, 837.8226928710938, 834.8748779296875, 792.707763671875], [789.044189453125, 833.5679321289062, 832.8336181640625, 797.1463623046875], [793.1859741210938, 836.5291137695312, 845.64404296875, 818.8916015625], [774.8627319335938, 832.9907836914062, 843.6766357421875, 810.2453002929688], [782.8785400390625, 829.6846923828125, 841.9986572265625, 804.3768310546875], [811.254638671875, 833.162841796875, 849.81787109375, 810.07421875], [810.6200561523438, 839.508544921875, 851.4174194335938, 820.7400512695312], [801.397705078125, 836.4418334960938, 842.5396118164062, 817.9666748046875], [803.615234375, 832.416748046875, 834.045166015625, 806.8404541015625], [810.3939819335938, 836.9332885742188, 838.5733642578125, 811.9025268554688], [808.9461059570312, 834.8382568359375, 842.1875, 811.94482421875], [789.0862426757812, 827.936279296875, 834.31396484375, 787.3634643554688], [799.070068359375, 834.452880859375, 844.0773315429688, 795.3133544921875], [809.983642578125, 834.0833740234375, 843.1592407226562, 799.3306274414062], [808.5942993164062, 834.4479370117188, 839.118896484375, 794.0219116210938], [806.0001220703125, 832.2020263671875, 835.3567504882812, 793.3524780273438], [812.4850463867188, 829.0400390625, 826.2242431640625, 791.2904663085938], [815.748291015625, 831.76953125, 835.3866577148438, 799.8803100585938], [806.38330078125, 828.3303833007812, 834.303955078125, 794.6915283203125], [797.682861328125, 832.7229614257812, 836.034912109375, 793.4406127929688], [797.1110229492188, 837.6885986328125, 842.4229125976562, 793.5711059570312], [814.3552856445312, 841.718017578125, 844.650634765625, 791.5199584960938], [805.4588623046875, 843.7465209960938, 842.292724609375, 800.828125], [793.7525024414062, 840.6069946289062, 835.3824462890625, 796.76806640625], [802.6090087890625, 839.9468994140625, 837.173095703125, 806.9283447265625], [807.7152099609375, 840.3633422851562, 843.4728393554688, 824.9327392578125], [803.3208618164062, 837.6704711914062, 840.8470458984375, 811.2725219726562], [797.7413940429688, 834.6696166992188, 838.9652099609375, 808.7202758789062], [809.8722534179688, 836.2284545898438, 840.6566162109375, 812.4700927734375], [809.6715698242188, 840.63427734375, 842.7977294921875, 815.8944091796875], [778.2240600585938, 833.5645751953125, 833.10888671875, 801.3407592773438], [783.4545288085938, 830.9417724609375, 829.1793212890625, 802.131103515625], [800.948486328125, 834.381103515625, 837.2161865234375, 801.2020874023438], [805.0115966796875, 832.51416015625, 836.0274047851562, 786.0941162109375], [807.36279296875, 829.4430541992188, 832.4871215820312, 791.4622192382812], [814.364501953125, 830.40966796875, 832.351318359375, 795.5699462890625], [814.5516357421875, 834.1913452148438, 830.8348999023438, 791.2211303710938], [800.873779296875, 838.7825927734375, 838.784423828125, 813.316162109375], [791.6033935546875, 836.9700927734375, 834.98583984375, 805.8884887695312], [796.5258178710938, 835.1953735351562, 833.6505737304688, 786.8031005859375], [806.8292846679688, 839.4486694335938, 843.8925170898438, 806.2872314453125], [809.3197631835938, 836.27392578125, 838.5442504882812, 801.9922485351562], [804.9901733398438, 830.8033447265625, 830.52294921875, 783.9655151367188], [802.8624877929688, 829.7522583007812, 831.0278930664062, 790.29052734375], [805.59423828125, 827.6924438476562, 830.6455688476562, 790.0337524414062], [797.1143798828125, 823.4873657226562, 833.0342407226562, 781.7855834960938], [782.2891235351562, 820.0970458984375, 830.3082275390625, 782.3551635742188], [788.2407836914062, 818.9837646484375, 829.6561889648438, 791.7089233398438], [793.6551513671875, 823.2183837890625, 833.042236328125, 805.0526733398438], [794.5645141601562, 825.6597290039062, 830.0966796875, 805.0166625976562], [796.7567749023438, 829.124755859375, 834.373291015625, 812.301513671875], [796.6448974609375, 830.4728393554688, 840.3639526367188, 817.2799072265625], [814.2252807617188, 835.66162109375, 847.8682250976562, 810.9624633789062], [807.8792114257812, 837.8522338867188, 847.9591674804688, 812.1788330078125], [804.5880737304688, 839.4098510742188, 848.9067993164062, 808.0905151367188], [824.5975341796875, 846.5558471679688, 850.9053955078125, 817.39990234375], [824.5531616210938, 844.823974609375, 844.0027465820312, 814.5997924804688], [816.5503540039062, 842.8340454101562, 850.3941650390625, 817.4756469726562], [818.8175048828125, 843.786865234375, 854.7742919921875, 822.8778076171875], [810.8530883789062, 839.706787109375, 849.8009033203125, 811.73046875], [800.6724243164062, 841.4010620117188, 854.4288330078125, 806.436279296875], [809.9609985351562, 844.9661865234375, 854.469970703125, 809.4151611328125], [801.0514526367188, 840.8807373046875, 842.9312744140625, 803.5350952148438], [797.7595825195312, 843.8153076171875, 846.4724731445312, 806.48974609375], [808.6206665039062, 843.0542602539062, 848.502685546875, 810.0816650390625], [803.77490234375, 838.9822387695312, 844.2550659179688, 801.7486572265625], [800.1913452148438, 841.3067626953125, 845.7117309570312, 799.9363403320312], [803.978271484375, 844.86865234375, 850.5204467773438, 807.1807250976562], [796.4329833984375, 845.2726440429688, 848.5435791015625, 806.1239013671875], [801.9496459960938, 840.9459838867188, 838.9174194335938, 800.190673828125], [793.3278198242188, 839.8553466796875, 837.7137451171875, 804.794677734375], [789.7574462890625, 839.700439453125, 838.8952026367188, 797.446533203125], [810.812255859375, 835.8683471679688, 835.08203125, 791.4415283203125], [796.5279541015625, 834.06005859375, 836.0648803710938, 796.1383666992188], [789.9598388671875, 834.7658081054688, 842.014404296875, 798.088623046875], [805.3150634765625, 834.5415649414062, 846.46142578125, 807.8380126953125], [798.5314331054688, 835.5507202148438, 848.232421875, 809.487548828125], [792.362548828125, 832.4578247070312, 844.8878784179688, 794.7743530273438], [805.8231811523438, 833.4198608398438, 845.78466796875, 804.4591674804688], [813.2059326171875, 838.5609741210938, 845.2606201171875, 807.8884887695312], [795.1714477539062, 836.6787719726562, 839.86962890625, 802.9491577148438], [794.7863159179688, 833.0908203125, 833.7958984375, 802.7631225585938], [806.8738403320312, 835.2452392578125, 829.5758056640625, 809.1091918945312], [799.8748168945312, 840.5753784179688, 831.6561889648438, 797.6298828125], [807.4078369140625, 839.9803466796875, 829.80859375, 794.9932250976562], [812.77001953125, 838.3793334960938, 824.6597290039062, 797.3060302734375], [811.3192138671875, 843.1553955078125, 835.1393432617188, 800.2022094726562], [812.4683837890625, 841.0443115234375, 838.953369140625, 809.6288452148438], [817.7962646484375, 835.4034423828125, 836.7952270507812, 804.4423217773438], [821.2490234375, 839.7305297851562, 844.1765747070312, 810.1712646484375], [833.4825439453125, 845.1430053710938, 849.2494506835938, 818.843017578125], [841.33984375, 847.0517578125, 852.8701782226562, 828.953125], [821.6187744140625, 842.9401245117188, 847.4841918945312, 823.5100708007812], [811.8875122070312, 838.160888671875, 851.2018432617188, 824.9949951171875], [812.0230712890625, 833.5083618164062, 861.963623046875, 834.6807861328125], [798.3126220703125, 826.0707397460938, 858.6533203125, 821.7178955078125], [797.0159912109375, 824.153076171875, 862.2534790039062, 809.5634765625], [806.3148803710938, 829.4229125976562, 874.3045043945312, 821.4608154296875], [807.9475708007812, 831.770751953125, 874.6708984375, 819.33544921875], [796.3975219726562, 824.737548828125, 863.6502685546875, 797.1025390625], [795.1427612304688, 825.4772338867188, 861.8705444335938, 795.4417114257812], [805.3826904296875, 827.9710693359375, 866.0046997070312, 809.5008544921875], [794.9363403320312, 827.3515014648438, 858.228515625, 807.5216674804688], [798.9049072265625, 833.1983642578125, 853.489013671875, 807.5181274414062], [810.4728393554688, 835.984375, 861.043701171875, 821.28369140625], [807.931884765625, 834.427734375, 859.603271484375, 809.235595703125], [802.2626953125, 836.0053100585938, 858.2860717773438, 808.337890625], [808.1544799804688, 833.4232177734375, 859.1017456054688, 798.6824951171875], [800.4577026367188, 828.7097778320312, 852.85791015625, 787.5376586914062], [797.8803100585938, 832.6177978515625, 852.4028930664062, 804.6593017578125], [795.5172729492188, 834.6782836914062, 852.5776977539062, 798.8350830078125], [790.0958862304688, 829.1234741210938, 847.9169921875, 783.2899169921875], [801.5423583984375, 828.3196411132812, 850.9713745117188, 783.7612915039062], [801.9752807617188, 834.67919921875, 859.3563842773438, 784.3240966796875], [796.450927734375, 836.4004516601562, 859.8223266601562, 786.8987426757812], [787.7200927734375, 833.6608276367188, 852.99169921875, 786.9588012695312], [778.8348999023438, 833.5654296875, 844.59912109375, 789.3156127929688], [772.8965454101562, 835.0371704101562, 844.3826904296875, 801.8700561523438], [771.7201538085938, 833.7396850585938, 843.7944946289062, 793.8462524414062], [793.866943359375, 835.2830200195312, 843.5520629882812, 785.0602416992188], [810.8123168945312, 838.800048828125, 850.0942993164062, 792.716064453125], [821.2437133789062, 841.6795043945312, 855.6126098632812, 797.828369140625], [827.2116088867188, 842.1029663085938, 854.4853515625, 805.7874145507812], [804.3267822265625, 833.4631958007812, 840.3175048828125, 801.9417114257812], [784.9666137695312, 830.9008178710938, 837.5844116210938, 802.5964965820312], [777.9803466796875, 833.4047241210938, 841.5712280273438, 810.1138916015625], [773.01171875, 832.7831420898438, 835.0115966796875, 785.3361206054688], [778.8761596679688, 842.34619140625, 842.6942138671875, 787.367919921875], [799.86376953125, 843.4349365234375, 844.5361328125, 786.6766357421875], [818.1276245117188, 846.0654296875, 846.8928833007812, 784.6950073242188], [816.046630859375, 849.0921630859375, 847.9495849609375, 802.70947265625], [812.7557983398438, 843.03955078125, 840.7093505859375, 804.5047607421875], [800.2422485351562, 842.5023803710938, 846.2142333984375, 812.4071655273438], [799.7117919921875, 841.4926147460938, 846.0430297851562, 815.5086059570312], [804.9601440429688, 839.5403442382812, 843.1071166992188, 803.7430419921875], [803.2028198242188, 835.0027465820312, 841.8089599609375, 797.0792236328125], [802.5457153320312, 832.8382568359375, 842.5565795898438, 790.0175170898438], [811.0142822265625, 836.6346435546875, 841.4563598632812, 781.0914306640625], [794.9024047851562, 832.850830078125, 833.4515991210938, 787.8692016601562], [778.5836181640625, 833.2283935546875, 834.69287109375, 799.9962768554688], [786.7540283203125, 837.4559936523438, 839.0475463867188, 799.3824462890625], [795.0785522460938, 835.2958984375, 837.5267944335938, 807.8529052734375], [807.6911010742188, 834.6886596679688, 837.05078125, 815.7254028320312], [801.5252075195312, 833.5493774414062, 837.9292602539062, 792.7642822265625], [811.107177734375, 836.3690795898438, 840.6604614257812, 780.456298828125], [817.348876953125, 840.650146484375, 839.471923828125, 786.3076171875], [797.1265258789062, 832.831787109375, 831.9410400390625, 783.4921264648438], [806.7129516601562, 834.2049560546875, 838.3914794921875, 781.8275146484375], [807.2333984375, 836.6455688476562, 844.8964233398438, 800.058349609375], [808.6494140625, 831.1657104492188, 840.0953979492188, 814.9266967773438], [806.2919921875, 828.6685180664062, 840.7732543945312, 800.985107421875], [798.8101196289062, 831.3250122070312, 844.5450439453125, 797.7883911132812], [806.4762573242188, 836.576416015625, 843.840576171875, 807.6000366210938], [801.3926391601562, 836.5717163085938, 837.443115234375, 802.4489135742188], [799.883056640625, 832.5948486328125, 834.9354858398438, 791.20556640625], [805.8148193359375, 836.544677734375, 840.5130615234375, 797.821044921875], [803.023681640625, 836.6005859375, 837.8946533203125, 797.831787109375], [805.2293090820312, 832.4746704101562, 839.1851806640625, 796.9329223632812], [805.7637939453125, 826.7893676757812, 838.2254638671875, 789.87939453125], [790.6564331054688, 830.5499267578125, 835.7832641601562, 801.7711791992188], [802.0665283203125, 830.623779296875, 834.3662719726562, 802.8846435546875], [804.3388671875, 824.91064453125, 829.0888671875, 790.6370239257812], [793.5826416015625, 823.3616333007812, 823.3663330078125, 781.1941528320312], [804.5451049804688, 826.206787109375, 825.1539916992188, 781.2352294921875], [804.3555908203125, 825.5933837890625, 818.7621459960938, 774.3597412109375], [804.7828369140625, 825.3786010742188, 814.092529296875, 777.2727661132812], [791.9716796875, 830.220458984375, 814.7138061523438, 795.0167846679688], [802.8465576171875, 834.9310913085938, 811.4859619140625, 789.52978515625], [817.6124267578125, 839.1717529296875, 814.1646728515625, 789.2230834960938], [818.9462890625, 835.5717163085938, 810.4710083007812, 786.2979125976562], [817.6161499023438, 837.5391845703125, 810.4006958007812, 779.739990234375], [803.2626342773438, 841.247802734375, 809.7008056640625, 777.08251953125], [807.001708984375, 836.3118896484375, 806.0634155273438, 785.815185546875], [798.4818115234375, 835.5274047851562, 810.569580078125, 792.8202514648438], [785.0515747070312, 837.6205444335938, 817.5226440429688, 791.3397216796875], [815.230712890625, 835.9195556640625, 818.442138671875, 788.5936889648438], [828.2024536132812, 836.2922973632812, 817.60498046875, 786.8204345703125], [799.549072265625, 832.2861328125, 811.2598266601562, 781.910888671875], [795.6068115234375, 836.54931640625, 812.1939086914062, 781.0006103515625], [793.4446411132812, 839.0013427734375, 811.5828857421875, 786.99755859375], [793.0216674804688, 830.5445556640625, 812.4276123046875, 788.1580200195312], [796.4874267578125, 830.3624267578125, 822.3909912109375, 784.2352294921875], [813.4910888671875, 836.3312377929688, 822.7791748046875, 791.047607421875], [825.4740600585938, 836.5070190429688, 820.366455078125, 786.1791381835938], [809.78955078125, 835.4237670898438, 815.7293701171875, 781.2973022460938], [806.49365234375, 841.0973510742188, 811.2113647460938, 787.41796875], [813.0790405273438, 842.2470703125, 818.7981567382812, 791.2031860351562], [809.280029296875, 841.5258178710938, 826.205810546875, 794.1197509765625], [821.8372192382812, 838.7063598632812, 829.3612060546875, 795.1905517578125], [815.9390258789062, 835.8485107421875, 831.5313110351562, 804.37255859375], [798.3983764648438, 837.229248046875, 830.0841674804688, 799.3947143554688], [803.8685913085938, 837.1481323242188, 830.2643432617188, 804.1480712890625], [797.6043701171875, 830.4841918945312, 820.02685546875, 797.9111328125], [791.854736328125, 830.2491455078125, 819.6133422851562, 793.743896484375], [810.7909545898438, 835.8168334960938, 831.7972412109375, 798.4462280273438], [810.5090942382812, 837.04443359375, 833.6198120117188, 792.784912109375], [790.4700927734375, 833.5711669921875, 829.4664306640625, 787.4231567382812], [799.3130493164062, 834.3247680664062, 835.0422973632812, 789.3192138671875], [809.8153076171875, 840.1864013671875, 840.9306030273438, 799.0721435546875], [809.614501953125, 836.5361938476562, 833.8861694335938, 794.0633544921875], [819.4915161132812, 833.8471069335938, 831.4617919921875, 794.8280029296875], [814.4760131835938, 838.2310791015625, 835.5128173828125, 811.6854858398438], [815.0442504882812, 841.1720581054688, 835.7343139648438, 807.28955078125], [806.6083374023438, 837.8870239257812, 833.1526489257812, 795.3529052734375], [804.059814453125, 839.9531860351562, 835.8563842773438, 809.9033203125], [831.7542724609375, 845.563720703125, 838.662109375, 802.7860107421875], [841.0531616210938, 848.4170532226562, 840.517822265625, 797.8775634765625], [843.1402587890625, 848.7283935546875, 837.2201538085938, 800.7711181640625], [840.2954711914062, 846.0908203125, 833.2044677734375, 807.95068359375], [829.1294555664062, 846.426025390625, 838.839599609375, 811.8082275390625], [819.8734130859375, 840.515869140625, 836.5321044921875, 800.5010986328125], [816.8822631835938, 840.2449951171875, 842.19921875, 812.88525390625], [807.9428100585938, 842.5911254882812, 846.594482421875, 810.4268188476562], [814.5777587890625, 842.9796142578125, 846.5870361328125, 799.962158203125], [823.3082275390625, 846.013916015625, 849.4369506835938, 809.5488891601562], [807.7124633789062, 841.1710205078125, 840.1806030273438, 817.5159301757812], [812.5841064453125, 835.9756469726562, 835.0399780273438, 813.211181640625], [820.7210083007812, 838.8777465820312, 840.8929443359375, 819.6104125976562], [810.3662719726562, 838.891845703125, 839.1555786132812, 825.4782104492188], [811.8829345703125, 837.8108520507812, 833.827392578125, 807.4473876953125], [826.1828002929688, 842.0449829101562, 838.2774658203125, 807.3955688476562], [836.44580078125, 848.2799682617188, 845.9102783203125, 825.4778442382812], [832.4680786132812, 843.1329956054688, 838.8485107421875, 811.338134765625], [847.1777954101562, 836.5410766601562, 836.6768188476562, 816.2223510742188], [854.1547241210938, 839.8069458007812, 845.014404296875, 827.9578857421875], [832.2598266601562, 838.76416015625, 843.5867309570312, 813.8338012695312], [831.5822143554688, 834.9666748046875, 835.921142578125, 804.3821411132812], [838.3824462890625, 836.14501953125, 834.8805541992188, 805.6813354492188], [822.6257934570312, 836.65283203125, 836.0430908203125, 807.0165405273438], [828.1986694335938, 843.0833129882812, 839.994873046875, 812.7686157226562], [831.9140625, 842.3832397460938, 835.039306640625, 819.0491943359375], [812.7523803710938, 838.3103637695312, 832.87841796875, 813.4473876953125], [821.874267578125, 847.2000732421875, 840.294189453125, 819.313232421875], [812.8028564453125, 847.049560546875, 832.5331420898438, 815.0927124023438], [810.7305908203125, 841.1156616210938, 832.7835693359375, 809.282958984375], [822.3637084960938, 843.5068969726562, 841.5137329101562, 813.8678588867188], [822.30517578125, 845.4036254882812, 839.7066650390625, 816.6146240234375], [832.822509765625, 844.3618774414062, 839.9029541015625, 805.538818359375], [815.9797973632812, 842.6349487304688, 839.966796875, 803.224853515625], [812.4080200195312, 839.0792846679688, 831.6259155273438, 797.0825805664062], [823.7161865234375, 841.061767578125, 830.9053344726562, 799.1246337890625], [804.5543212890625, 840.2904052734375, 835.8772583007812, 804.60791015625], [808.3602294921875, 840.2283325195312, 841.5588989257812, 812.2490234375], [822.2476806640625, 839.2045288085938, 839.8626708984375, 815.5125732421875], [814.5286254882812, 839.8060302734375, 840.0687255859375, 798.9871826171875], [807.932373046875, 839.2167358398438, 839.9521484375, 793.9702758789062], [806.8016967773438, 831.852783203125, 834.6289672851562, 792.9407348632812], [802.6969604492188, 832.2323608398438, 834.324462890625, 789.00732421875], [801.8711547851562, 836.975341796875, 839.3327026367188, 799.41943359375], [795.0073852539062, 835.8771362304688, 842.5514526367188, 811.2239990234375], [808.92578125, 836.1273803710938, 842.9888916015625, 810.0674438476562], [807.4019165039062, 837.45751953125, 838.5755615234375, 807.8518676757812], [807.4166870117188, 838.1341552734375, 840.4340209960938, 806.3473510742188], [819.6306762695312, 835.206787109375, 840.6776733398438, 808.1551513671875], [812.0452270507812, 830.529541015625, 835.10693359375, 806.1063232421875], [808.23193359375, 837.2574462890625, 843.375732421875, 810.4181518554688], [807.4208984375, 839.4829711914062, 845.3300170898438, 804.3211669921875], [803.84423828125, 835.7015380859375, 840.19921875, 800.796875], [802.5748901367188, 837.5045776367188, 842.8148803710938, 806.2714233398438], [808.958984375, 846.2965698242188, 847.5952758789062, 808.41162109375], [815.7518310546875, 843.64453125, 843.69384765625, 821.6546020507812], [806.3934936523438, 835.841552734375, 835.9597778320312, 815.0730590820312], [809.4334716796875, 841.4963989257812, 839.1067504882812, 811.2000122070312], [807.1767578125, 840.7745971679688, 838.031005859375, 805.9095458984375], [798.0048828125, 835.7565307617188, 831.9013061523438, 791.6236572265625], [805.3778076171875, 839.5797119140625, 838.7280883789062, 792.4276733398438], [810.725830078125, 842.258544921875, 843.388916015625, 805.1305541992188], [820.5866088867188, 844.7892456054688, 843.9595336914062, 817.064697265625], [814.0692749023438, 844.4008178710938, 845.7467041015625, 816.5184326171875], [810.9812622070312, 840.506103515625, 842.3233032226562, 816.9490966796875], [817.5504760742188, 840.5971069335938, 840.5787963867188, 811.0594482421875], [808.4114990234375, 839.922607421875, 838.9081420898438, 799.4227905273438], [801.5681762695312, 841.4330444335938, 839.1846313476562, 801.7512817382812], [815.0132446289062, 840.4561767578125, 839.7471923828125, 803.2587280273438], [816.4319458007812, 839.8101196289062, 837.4891967773438, 804.0203247070312], [813.6383666992188, 844.0376586914062, 843.3484497070312, 817.4776611328125], [814.7289428710938, 842.0306396484375, 842.2487182617188, 801.8634643554688], [806.34912109375, 833.2962036132812, 833.5189819335938, 807.1293334960938], [802.7319946289062, 833.2281494140625, 839.6731567382812, 808.8209838867188], [804.5255737304688, 835.0060424804688, 839.3016357421875, 791.8951416015625], [807.4699096679688, 829.044921875, 837.1900024414062, 813.9357299804688], [814.6632080078125, 834.7586059570312, 845.1758422851562, 810.1853637695312], [828.552734375, 843.911376953125, 846.1766357421875, 795.169189453125], [830.1911010742188, 848.0806884765625, 847.8258056640625, 826.87939453125], [827.0673217773438, 847.5399780273438, 842.5891723632812, 812.6347045898438], [816.2982177734375, 844.6922607421875, 838.356689453125, 811.0054321289062], [817.2085571289062, 844.7233276367188, 840.2333984375, 832.2383422851562], [823.6567993164062, 838.4530639648438, 838.0659790039062, 807.1466674804688], [815.278076171875, 838.2909545898438, 842.3978271484375, 805.8500366210938], [812.6400756835938, 843.2362060546875, 847.7870483398438, 811.27783203125], [825.3844604492188, 844.9205322265625, 851.9916381835938, 795.6154174804688], [817.6739501953125, 841.5478515625, 849.129638671875, 806.6929321289062], [798.5526733398438, 837.797607421875, 840.6959838867188, 807.8076171875], [820.4707641601562, 838.4639892578125, 845.0404663085938, 813.2477416992188], [823.7894287109375, 836.3687744140625, 844.2672729492188, 812.4706420898438], [816.5564575195312, 834.2640991210938, 842.677490234375, 813.9027099609375], [822.5592041015625, 835.2926025390625, 846.995361328125, 815.7354736328125], [817.576171875, 834.0098876953125, 845.2320556640625, 808.367431640625], [814.4042358398438, 832.9425048828125, 842.56103515625, 815.270263671875], [807.82958984375, 833.7247924804688, 835.697265625, 799.326904296875], [812.8971557617188, 833.8402099609375, 826.4783325195312, 793.5549926757812], [823.6702880859375, 838.8734130859375, 834.6687622070312, 807.479248046875], [821.4241333007812, 843.2811889648438, 843.734619140625, 807.8870239257812], [825.7120361328125, 837.41796875, 842.4296264648438, 807.76513671875], [822.8157348632812, 834.960205078125, 847.2794799804688, 825.810302734375], [816.9888916015625, 838.5813598632812, 855.7601318359375, 830.1812133789062], [832.0934448242188, 838.5101318359375, 851.1192016601562, 820.7051391601562], [834.0993041992188, 839.620361328125, 842.2923583984375, 814.6741943359375], [822.8712158203125, 840.02880859375, 839.49169921875, 806.1392822265625], [838.6641235351562, 839.3200073242188, 840.250244140625, 800.8399658203125], [826.3690185546875, 836.677978515625, 835.86328125, 790.9566650390625], [804.1290283203125, 831.7775268554688, 834.162109375, 791.2411499023438], [805.6710205078125, 829.6258544921875, 835.3778076171875, 795.490478515625], [809.4839477539062, 833.7665405273438, 841.2550048828125, 808.9326171875], [820.6182861328125, 834.9944458007812, 842.1890869140625, 807.7664184570312], [815.7387084960938, 829.0740356445312, 834.3626708984375, 800.4970092773438], [814.599365234375, 830.8178100585938, 833.8169555664062, 815.9903564453125], [822.7127685546875, 831.4366455078125, 834.7289428710938, 818.9261474609375], [809.0802612304688, 829.29248046875, 828.7494506835938, 803.8403930664062], [797.5921630859375, 835.2765502929688, 830.82568359375, 821.4193725585938], [804.2545776367188, 837.455078125, 836.3075561523438, 823.9599609375], [818.1546630859375, 838.404541015625, 837.304931640625, 796.1472778320312], [828.542724609375, 838.7857666015625, 836.5597534179688, 792.3903198242188], [814.8031616210938, 836.4325561523438, 830.369140625, 796.2462768554688]], "channel_names": ["ch1", "ch2", "ch3", "ch4"]}, "variance_eeg": {"name": "variance_eeg", "fs": 256.42915797654643, "emp_fs": 256.42915797654643, "timestamps": [1571759075.466253, 1571759075.4701529, 1571759075.4740524, 1571759075.4779522, 1571759075.4818518, 1571759075.4857516, 1571759075.4896512, 1571759075.493551, 1571759075.4974508, 1571759075.5013504, 1571759075.5052502, 1571759075.5091498, 1571759075.5130496, 1571759075.5169494, 1571759075.520849, 1571759075.5247488, 1571759075.5286484, 1571759075.5325482, 1571759075.5364478, 1571759075.5403476, 1571759075.5442474, 1571759075.548147, 1571759075.5520468, 1571759075.5559464, 1571759075.5598462, 1571759075.5637457, 1571759075.5676455, 1571759075.5715454, 1571759075.575445, 1571759075.5793447, 1571759075.5832443, 1571759075.5871441, 1571759075.591044, 1571759075.5949435, 1571759075.5988433, 1571759075.602743, 1571759075.6066427, 1571759075.6105423, 1571759075.614442, 1571759075.618342, 1571759075.6222415, 1571759075.6261413, 1571759075.630041, 1571759075.6339407, 1571759075.6378405, 1571759075.64174, 1571759075.64564, 1571759075.6495395, 1571759075.6534393, 1571759075.6573389, 1571759075.6612387, 1571759075.6651385, 1571759075.669038, 1571759075.6729379, 1571759075.6768374, 1571759075.6807373, 1571759075.6846368, 1571759075.6885366, 1571759075.6924365, 1571759075.696336, 1571759075.7002358, 1571759075.7041354, 1571759075.7080352, 1571759075.711935, 1571759075.7158346, 1571759075.7197344, 1571759075.723634, 1571759075.7275338, 1571759075.7314334, 1571759075.7353332, 1571759075.739233, 1571759075.7431326, 1571759075.7470324, 1571759075.750932, 1571759075.7548318, 1571759075.7587314, 1571759075.7626312, 1571759075.766531, 1571759075.7704306, 1571759075.7743304, 1571759075.77823, 1571759075.7821298, 1571759075.7860296, 1571759075.7899292, 1571759075.793829, 1571759075.7977285, 1571759075.8016284, 1571759075.805528, 1571759075.8094277, 1571759075.8133276, 1571759075.8172271, 1571759075.821127, 1571759075.8250265, 1571759075.8289263, 1571759075.8328261, 1571759075.8367257, 1571759075.8406255, 1571759075.844525, 1571759075.848425, 1571759075.8523245, 1571759075.8562243, 1571759075.860124, 1571759075.8640237, 1571759075.8679235, 1571759075.871823, 1571759075.875723, 1571759075.8796225, 1571759075.8835223, 1571759075.887422, 1571759075.8913217, 1571759075.8952215, 1571759075.899121, 1571759075.9030209, 1571759075.9069207, 1571759075.9108202, 1571759075.91472, 1571759075.9186196, 1571759075.9225194, 1571759075.926419, 1571759075.9303188, 1571759075.9342186, 1571759075.9381182, 1571759075.942018, 1571759075.9459176, 1571759075.9498174, 1571759075.953717, 1571759075.9576168, 1571759075.9615166, 1571759075.9654162, 1571759075.969316, 1571759075.9732156, 1571759075.9771154, 1571759075.9810152, 1571759075.9849148, 1571759075.9888146, 1571759075.9927142, 1571759075.996614, 1571759076.0005136, 1571759076.0044134, 1571759076.0083132, 1571759076.0122128, 1571759076.0161126, 1571759076.0200121, 1571759076.023912, 1571759076.0278115, 1571759076.0317113, 1571759076.0356112, 1571759076.0395107, 1571759076.0434105, 1571759076.04731, 1571759076.05121, 1571759076.0551097, 1571759076.0590093, 1571759076.0629091, 1571759076.0668087, 1571759076.0707085, 1571759076.074608, 1571759076.078508, 1571759076.0824077, 1571759076.0863073, 1571759076.090207, 1571759076.0941067, 1571759076.0980065, 1571759076.1019063, 1571759076.1058059, 1571759076.1097057, 1571759076.1136053, 1571759076.117505, 1571759076.1214046, 1571759076.1253045, 1571759076.1292043, 1571759076.1331038, 1571759076.1370037, 1571759076.1409032, 1571759076.144803, 1571759076.1487026, 1571759076.1526024, 1571759076.1565022, 1571759076.1604018, 1571759076.1643016, 1571759076.1682012, 1571759076.172101, 1571759076.1760008, 1571759076.1799004, 1571759076.1838002, 1571759076.1876998, 1571759076.1915996, 1571759076.1954992, 1571759076.199399, 1571759076.2032988, 1571759076.2071984, 1571759076.2110982, 1571759076.2149978, 1571759076.2188976, 1571759076.2227972, 1571759076.226697, 1571759076.2305968, 1571759076.2344964, 1571759076.2383962, 1571759076.2422957, 1571759076.2461956, 1571759076.2500954, 1571759076.253995, 1571759076.2578948, 1571759076.2617943, 1571759076.2656941, 1571759076.2695937, 1571759076.2734935, 1571759076.2773933, 1571759076.281293, 1571759076.2851927, 1571759076.2890923, 1571759076.292992, 1571759076.2968917, 1571759076.3007915, 1571759076.3046913, 1571759076.308591, 1571759076.3124907, 1571759076.3163903, 1571759076.32029, 1571759076.32419, 1571759076.3280895, 1571759076.3319893, 1571759076.3358889, 1571759076.3397887, 1571759076.3436882, 1571759076.347588, 1571759076.3514879, 1571759076.3553874, 1571759076.3592873, 1571759076.3631868, 1571759076.3670866, 1571759076.3709865, 1571759076.374886, 1571759076.3787858, 1571759076.3826854, 1571759076.3865852, 1571759076.3904848, 1571759076.3943846, 1571759076.3982844, 1571759076.402184, 1571759076.4060838, 1571759076.4099834, 1571759076.4138832, 1571759076.4177828, 1571759076.4216826, 1571759076.4255824, 1571759076.429482, 1571759076.4333818, 1571759076.4372814, 1571759076.4411812, 1571759076.445081, 1571759076.4489806, 1571759076.4528804, 1571759076.45678, 1571759076.4606798, 1571759076.4645793, 1571759076.4684792, 1571759076.472379, 1571759076.4762785, 1571759076.4801784, 1571759076.484078, 1571759076.4879777, 1571759076.4918773, 1571759076.4957771, 1571759076.499677, 1571759076.5035765, 1571759076.5074763, 1571759076.511376, 1571759076.5152757, 1571759076.5191755, 1571759076.523075, 1571759076.526975, 1571759076.5308745, 1571759076.5347743, 1571759076.5386739, 1571759076.5425737, 1571759076.5464735, 1571759076.550373, 1571759076.554273, 1571759076.5581725, 1571759076.5620723, 1571759076.565972, 1571759076.5698717, 1571759076.5737715, 1571759076.577671, 1571759076.5815709, 1571759076.5854704, 1571759076.5893703, 1571759076.59327, 1571759076.5971696, 1571759076.6010695, 1571759076.604969, 1571759076.6088688, 1571759076.6127684, 1571759076.6166682, 1571759076.620568, 1571759076.6244676, 1571759076.6283674, 1571759076.632267, 1571759076.6361668, 1571759076.6400666, 1571759076.6439662, 1571759076.647866, 1571759076.6517656, 1571759076.6556654, 1571759076.659565, 1571759076.6634648, 1571759076.6673646, 1571759076.6712642, 1571759076.675164, 1571759076.6790636, 1571759076.6829634, 1571759076.686863, 1571759076.6907628, 1571759076.6946626, 1571759076.6985621, 1571759076.702462, 1571759076.7063615, 1571759076.7102613, 1571759076.7141612, 1571759076.7180607, 1571759076.7219605, 1571759076.72586, 1571759076.72976, 1571759076.7336595, 1571759076.7375593, 1571759076.7414591, 1571759076.7453587, 1571759076.7492585, 1571759076.753158, 1571759076.757058, 1571759076.7609575, 1571759076.7648573, 1571759076.768757, 1571759076.7726567, 1571759076.7765565, 1571759076.780456, 1571759076.7843559, 1571759076.7882557, 1571759076.7921553, 1571759076.796055, 1571759076.7999547, 1571759076.8038545, 1571759076.807754, 1571759076.8116539, 1571759076.8155537, 1571759076.8194532, 1571759076.823353, 1571759076.8272526, 1571759076.8311524, 1571759076.8350523, 1571759076.8389518, 1571759076.8428516, 1571759076.8467512, 1571759076.850651, 1571759076.8545506, 1571759076.8584504, 1571759076.8623502, 1571759076.8662498, 1571759076.8701496, 1571759076.8740492, 1571759076.877949, 1571759076.8818486, 1571759076.8857484, 1571759076.8896482, 1571759076.8935478, 1571759076.8974476, 1571759076.9013472, 1571759076.905247, 1571759076.9091468, 1571759076.9130464, 1571759076.9169462, 1571759076.9208457, 1571759076.9247456, 1571759076.9286451, 1571759076.932545, 1571759076.9364448, 1571759076.9403443, 1571759076.9442441, 1571759076.9481437, 1571759076.9520435, 1571759076.955943, 1571759076.959843, 1571759076.9637427, 1571759076.9676423, 1571759076.9715421, 1571759076.9754417, 1571759076.9793415, 1571759076.9832413, 1571759076.987141, 1571759076.9910407, 1571759076.9949403, 1571759076.99884, 1571759077.0027397, 1571759077.0066395, 1571759077.0105393, 1571759077.0144389, 1571759077.0183387, 1571759077.0222383, 1571759077.026138, 1571759077.0300379, 1571759077.0339375, 1571759077.0378373, 1571759077.0417368, 1571759077.0456367, 1571759077.0495362, 1571759077.053436, 1571759077.0573359, 1571759077.0612354, 1571759077.0651352, 1571759077.0690348, 1571759077.0729346, 1571759077.0768342, 1571759077.080734, 1571759077.0846338, 1571759077.0885334, 1571759077.0924332, 1571759077.0963328, 1571759077.1002326, 1571759077.1041324, 1571759077.108032, 1571759077.1119318, 1571759077.1158314, 1571759077.1197312, 1571759077.1236308, 1571759077.1275306, 1571759077.1314304, 1571759077.13533, 1571759077.1392298, 1571759077.1431293, 1571759077.1470292, 1571759077.1509287, 1571759077.1548285, 1571759077.1587284, 1571759077.162628, 1571759077.1665277, 1571759077.1704273, 1571759077.1743271, 1571759077.178227, 1571759077.1821265, 1571759077.1860263, 1571759077.189926, 1571759077.1938257, 1571759077.1977253, 1571759077.201625, 1571759077.205525, 1571759077.2094245, 1571759077.2133243, 1571759077.217224, 1571759077.2211237, 1571759077.2250233, 1571759077.228923, 1571759077.232823, 1571759077.2367225, 1571759077.2406223, 1571759077.2445219, 1571759077.2484217, 1571759077.2523215, 1571759077.256221, 1571759077.2601209, 1571759077.2640204, 1571759077.2679203, 1571759077.2718198, 1571759077.2757196, 1571759077.2796195, 1571759077.283519, 1571759077.2874188, 1571759077.2913184, 1571759077.2952182, 1571759077.299118, 1571759077.3030176, 1571759077.3069174, 1571759077.310817, 1571759077.3147168, 1571759077.3186164, 1571759077.3225162, 1571759077.326416, 1571759077.3303156, 1571759077.3342154, 1571759077.338115, 1571759077.3420148, 1571759077.3459144, 1571759077.3498142, 1571759077.353714, 1571759077.3576136, 1571759077.3615134, 1571759077.365413, 1571759077.3693128, 1571759077.3732126, 1571759077.3771122, 1571759077.381012, 1571759077.3849115, 1571759077.3888113, 1571759077.392711, 1571759077.3966107, 1571759077.4005105, 1571759077.4044101, 1571759077.40831, 1571759077.4122095, 1571759077.4161093, 1571759077.420009, 1571759077.4239087, 1571759077.4278085, 1571759077.431708, 1571759077.435608, 1571759077.4395075, 1571759077.4434073, 1571759077.447307, 1571759077.4512067, 1571759077.4551065, 1571759077.459006, 1571759077.462906, 1571759077.4668055, 1571759077.4707053, 1571759077.474605, 1571759077.4785047, 1571759077.4824045, 1571759077.486304, 1571759077.4902039, 1571759077.4941037, 1571759077.4980032, 1571759077.501903, 1571759077.5058026, 1571759077.5097024, 1571759077.513602, 1571759077.5175018, 1571759077.5214016, 1571759077.5253012, 1571759077.529201, 1571759077.5331006, 1571759077.5370004, 1571759077.5409, 1571759077.5447998, 1571759077.5486996, 1571759077.5525992, 1571759077.556499, 1571759077.5603986, 1571759077.5642984, 1571759077.5681982, 1571759077.5720978, 1571759077.5759976, 1571759077.5798972, 1571759077.583797, 1571759077.5876966, 1571759077.5915964, 1571759077.5954962, 1571759077.5993958, 1571759077.6032956, 1571759077.6071951, 1571759077.611095, 1571759077.6149945, 1571759077.6188943, 1571759077.6227942, 1571759077.6266937, 1571759077.6305935, 1571759077.634493, 1571759077.638393, 1571759077.6422927, 1571759077.6461923, 1571759077.6500921, 1571759077.6539917, 1571759077.6578915, 1571759077.661791, 1571759077.665691, 1571759077.6695907, 1571759077.6734903, 1571759077.67739, 1571759077.6812897, 1571759077.6851895, 1571759077.689089, 1571759077.6929889, 1571759077.6968887, 1571759077.7007883, 1571759077.704688, 1571759077.7085876, 1571759077.7124875, 1571759077.7163873, 1571759077.7202868, 1571759077.7241867, 1571759077.7280862, 1571759077.731986, 1571759077.7358856, 1571759077.7397854, 1571759077.7436852, 1571759077.7475848, 1571759077.7514846, 1571759077.7553842, 1571759077.759284, 1571759077.7631838, 1571759077.7670834, 1571759077.7709832, 1571759077.7748828, 1571759077.7787826, 1571759077.7826822, 1571759077.786582, 1571759077.7904818, 1571759077.7943814, 1571759077.7982812, 1571759077.8021808, 1571759077.8060806, 1571759077.8099802, 1571759077.81388, 1571759077.8177798, 1571759077.8216794, 1571759077.8255792, 1571759077.8294787, 1571759077.8333786, 1571759077.8372784, 1571759077.841178, 1571759077.8450778, 1571759077.8489773, 1571759077.8528771, 1571759077.8567767, 1571759077.8606765, 1571759077.8645763, 1571759077.868476, 1571759077.8723757, 1571759077.8762753, 1571759077.880175, 1571759077.8840747, 1571759077.8879745, 1571759077.8918743, 1571759077.895774, 1571759077.8996737, 1571759077.9035733, 1571759077.907473, 1571759077.911373, 1571759077.9152725, 1571759077.9191723, 1571759077.9230719, 1571759077.9269717, 1571759077.9308712, 1571759077.934771, 1571759077.9386709, 1571759077.9425704, 1571759077.9464703, 1571759077.9503698, 1571759077.9542696, 1571759077.9581692, 1571759077.962069, 1571759077.9659688, 1571759077.9698684, 1571759077.9737682, 1571759077.9776678, 1571759077.9815676, 1571759077.9854674, 1571759077.989367, 1571759077.9932668, 1571759077.9971664, 1571759078.0010662, 1571759078.0049658, 1571759078.0088656, 1571759078.0127654, 1571759078.016665, 1571759078.0205648, 1571759078.0244644, 1571759078.0283642, 1571759078.032264, 1571759078.0361636, 1571759078.0400634, 1571759078.043963, 1571759078.0478628, 1571759078.0517623, 1571759078.0556622, 1571759078.059562, 1571759078.0634615, 1571759078.0673614, 1571759078.071261, 1571759078.0751607, 1571759078.0790603, 1571759078.0829601, 1571759078.08686, 1571759078.0907595, 1571759078.0946593, 1571759078.098559, 1571759078.1024587, 1571759078.1063585, 1571759078.110258, 1571759078.114158, 1571759078.1180575, 1571759078.1219573, 1571759078.1258569, 1571759078.1297567, 1571759078.1336565, 1571759078.137556, 1571759078.141456, 1571759078.1453555, 1571759078.1492553, 1571759078.1531549, 1571759078.1570547, 1571759078.1609545, 1571759078.164854, 1571759078.1687539, 1571759078.1726534, 1571759078.1765532, 1571759078.180453, 1571759078.1843526, 1571759078.1882524, 1571759078.192152, 1571759078.1960518, 1571759078.1999514, 1571759078.2038512, 1571759078.207751, 1571759078.2116506, 1571759078.2155504, 1571759078.21945, 1571759078.2233498, 1571759078.2272496, 1571759078.2311492, 1571759078.235049, 1571759078.2389486, 1571759078.2428484, 1571759078.246748, 1571759078.2506478, 1571759078.2545476, 1571759078.2584472, 1571759078.262347, 1571759078.2662466, 1571759078.2701464, 1571759078.274046, 1571759078.2779458, 1571759078.2818456, 1571759078.2857451, 1571759078.289645, 1571759078.2935445, 1571759078.2974443, 1571759078.3013442, 1571759078.3052437, 1571759078.3091435, 1571759078.313043, 1571759078.316943, 1571759078.3208425, 1571759078.3247423, 1571759078.3286421, 1571759078.3325417, 1571759078.3364415, 1571759078.340341, 1571759078.344241, 1571759078.3481405, 1571759078.3520403, 1571759078.35594, 1571759078.3598397, 1571759078.3637395, 1571759078.367639, 1571759078.3715389, 1571759078.3754387, 1571759078.3793383, 1571759078.383238, 1571759078.3871377, 1571759078.3910375, 1571759078.394937, 1571759078.3988369, 1571759078.4027367, 1571759078.4066362, 1571759078.410536, 1571759078.4144356, 1571759078.4183354, 1571759078.422235, 1571759078.4261348, 1571759078.4300346, 1571759078.4339342, 1571759078.437834, 1571759078.4417336, 1571759078.4456334, 1571759078.4495332, 1571759078.4534328, 1571759078.4573326, 1571759078.4612322, 1571759078.465132, 1571759078.4690316, 1571759078.4729314, 1571759078.4768312, 1571759078.4807308, 1571759078.4846306, 1571759078.4885302, 1571759078.49243, 1571759078.4963298, 1571759078.5002294, 1571759078.5041292, 1571759078.5080287, 1571759078.5119286, 1571759078.5158281, 1571759078.519728, 1571759078.5236278, 1571759078.5275273, 1571759078.5314271, 1571759078.5353267, 1571759078.5392265, 1571759078.543126, 1571759078.547026, 1571759078.5509257, 1571759078.5548253, 1571759078.558725, 1571759078.5626247, 1571759078.5665245, 1571759078.5704243, 1571759078.574324, 1571759078.5782237, 1571759078.5821233, 1571759078.586023, 1571759078.5899227, 1571759078.5938225, 1571759078.5977223, 1571759078.6016219, 1571759078.6055217, 1571759078.6094213, 1571759078.613321, 1571759078.6172206, 1571759078.6211205, 1571759078.6250203, 1571759078.6289198, 1571759078.6328197, 1571759078.6367192, 1571759078.640619, 1571759078.6445189, 1571759078.6484184, 1571759078.6523182, 1571759078.6562178, 1571759078.6601176, 1571759078.6640172, 1571759078.667917, 1571759078.6718168, 1571759078.6757164, 1571759078.6796162, 1571759078.6835158, 1571759078.6874156, 1571759078.6913154, 1571759078.695215, 1571759078.6991148, 1571759078.7030144, 1571759078.7069142, 1571759078.7108138, 1571759078.7147136, 1571759078.7186134, 1571759078.722513, 1571759078.7264128, 1571759078.7303123, 1571759078.7342122, 1571759078.7381117, 1571759078.7420115, 1571759078.7459114, 1571759078.749811, 1571759078.7537107, 1571759078.7576103, 1571759078.7615101, 1571759078.76541, 1571759078.7693095, 1571759078.7732093, 1571759078.777109, 1571759078.7810087, 1571759078.7849083, 1571759078.788808, 1571759078.792708, 1571759078.7966075, 1571759078.8005073, 1571759078.804407, 1571759078.8083067, 1571759078.8122063, 1571759078.816106, 1571759078.820006, 1571759078.8239055, 1571759078.8278053, 1571759078.8317049, 1571759078.8356047, 1571759078.8395045, 1571759078.843404, 1571759078.8473039, 1571759078.8512034, 1571759078.8551033, 1571759078.8590028, 1571759078.8629026, 1571759078.8668025, 1571759078.870702, 1571759078.8746018, 1571759078.8785014, 1571759078.8824012, 1571759078.8863008, 1571759078.8902006, 1571759078.8941004, 1571759078.898, 1571759078.9018998, 1571759078.9057994, 1571759078.9096992, 1571759078.913599, 1571759078.9174986, 1571759078.9213984, 1571759078.925298, 1571759078.9291978, 1571759078.9330974, 1571759078.9369972, 1571759078.940897, 1571759078.9447966, 1571759078.9486964, 1571759078.952596, 1571759078.9564958, 1571759078.9603956, 1571759078.9642951, 1571759078.968195, 1571759078.9720945, 1571759078.9759943, 1571759078.979894, 1571759078.9837937, 1571759078.9876935, 1571759078.9915931, 1571759078.995493, 1571759078.9993925, 1571759079.0032923, 1571759079.007192, 1571759079.0110917, 1571759079.0149915, 1571759079.018891, 1571759079.022791, 1571759079.0266905, 1571759079.0305903, 1571759079.03449, 1571759079.0383897, 1571759079.0422895, 1571759079.046189, 1571759079.050089, 1571759079.0539885, 1571759079.0578883, 1571759079.061788, 1571759079.0656877, 1571759079.0695875, 1571759079.073487, 1571759079.0773869, 1571759079.0812864, 1571759079.0851862, 1571759079.089086, 1571759079.0929856, 1571759079.0968854, 1571759079.100785, 1571759079.1046848, 1571759079.1085846, 1571759079.1124842, 1571759079.116384, 1571759079.1202836, 1571759079.1241834, 1571759079.128083, 1571759079.1319828, 1571759079.1358826, 1571759079.1397822, 1571759079.143682, 1571759079.1475816, 1571759079.1514814, 1571759079.155381, 1571759079.1592808, 1571759079.1631806, 1571759079.1670802, 1571759079.17098, 1571759079.1748796, 1571759079.1787794, 1571759079.1826792, 1571759079.1865788, 1571759079.1904786, 1571759079.1943781, 1571759079.198278, 1571759079.2021775, 1571759079.2060773, 1571759079.2099771, 1571759079.2138767, 1571759079.2177765, 1571759079.221676, 1571759079.225576, 1571759079.2294757, 1571759079.2333753, 1571759079.2372751, 1571759079.2411747, 1571759079.2450745, 1571759079.248974, 1571759079.252874, 1571759079.2567737, 1571759079.2606733, 1571759079.264573, 1571759079.2684727, 1571759079.2723725, 1571759079.276272, 1571759079.2801719, 1571759079.2840717, 1571759079.2879713, 1571759079.291871, 1571759079.2957706, 1571759079.2996705, 1571759079.3035703, 1571759079.3074698, 1571759079.3113697, 1571759079.3152692, 1571759079.319169, 1571759079.3230686, 1571759079.3269684, 1571759079.3308682, 1571759079.3347678, 1571759079.3386676, 1571759079.3425672, 1571759079.346467, 1571759079.3503666, 1571759079.3542664, 1571759079.3581662, 1571759079.3620658, 1571759079.3659656, 1571759079.3698652, 1571759079.373765, 1571759079.3776648, 1571759079.3815644, 1571759079.3854642, 1571759079.3893638, 1571759079.3932636, 1571759079.3971632, 1571759079.401063, 1571759079.4049628, 1571759079.4088624, 1571759079.4127622, 1571759079.4166617, 1571759079.4205616, 1571759079.4244614, 1571759079.428361, 1571759079.4322608, 1571759079.4361603, 1571759079.4400601, 1571759079.4439597, 1571759079.4478595, 1571759079.4517593, 1571759079.455659, 1571759079.4595587, 1571759079.4634583, 1571759079.467358, 1571759079.4712577, 1571759079.4751575, 1571759079.4790573, 1571759079.482957, 1571759079.4868567, 1571759079.4907563, 1571759079.494656, 1571759079.498556, 1571759079.5024555, 1571759079.5063553, 1571759079.5102549, 1571759079.5141547, 1571759079.5180542, 1571759079.521954, 1571759079.5258539, 1571759079.5297534, 1571759079.5336533, 1571759079.5375528, 1571759079.5414526, 1571759079.5453522, 1571759079.549252, 1571759079.5531518, 1571759079.5570514, 1571759079.5609512, 1571759079.5648508, 1571759079.5687506, 1571759079.5726504, 1571759079.57655, 1571759079.5804498, 1571759079.5843494, 1571759079.5882492, 1571759079.5921488, 1571759079.5960486, 1571759079.5999484, 1571759079.603848, 1571759079.6077478, 1571759079.6116474, 1571759079.6155472, 1571759079.6194468, 1571759079.6233466, 1571759079.6272464, 1571759079.631146, 1571759079.6350458, 1571759079.6389453, 1571759079.6428452, 1571759079.646745, 1571759079.6506445, 1571759079.6545444, 1571759079.658444, 1571759079.6623437, 1571759079.6662433, 1571759079.6701431, 1571759079.674043, 1571759079.6779425, 1571759079.6818423, 1571759079.685742, 1571759079.6896417, 1571759079.6935415, 1571759079.697441, 1571759079.701341, 1571759079.7052405, 1571759079.7091403, 1571759079.7130399, 1571759079.7169397, 1571759079.7208395, 1571759079.724739, 1571759079.728639, 1571759079.7325385, 1571759079.7364383, 1571759079.7403378, 1571759079.7442377, 1571759079.7481375, 1571759079.752037, 1571759079.7559369, 1571759079.7598364, 1571759079.7637362, 1571759079.767636, 1571759079.7715356, 1571759079.7754354, 1571759079.779335, 1571759079.7832348, 1571759079.7871344, 1571759079.7910342, 1571759079.794934, 1571759079.7988336, 1571759079.8027334, 1571759079.806633, 1571759079.8105328, 1571759079.8144324, 1571759079.8183322, 1571759079.822232, 1571759079.8261316, 1571759079.8300314, 1571759079.833931, 1571759079.8378308, 1571759079.8417306, 1571759079.8456302, 1571759079.84953, 1571759079.8534296, 1571759079.8573294, 1571759079.861229, 1571759079.8651288, 1571759079.8690286, 1571759079.8729281, 1571759079.876828, 1571759079.8807275, 1571759079.8846273, 1571759079.8885272, 1571759079.8924267, 1571759079.8963265, 1571759079.900226, 1571759079.904126, 1571759079.9080255, 1571759079.9119253, 1571759079.9158251, 1571759079.9197247, 1571759079.9236245, 1571759079.927524, 1571759079.931424, 1571759079.9353235, 1571759079.9392233, 1571759079.943123, 1571759079.9470227, 1571759079.9509225, 1571759079.954822, 1571759079.9587219, 1571759079.9626217, 1571759079.9665213, 1571759079.970421, 1571759079.9743207, 1571759079.9782205, 1571759079.98212, 1571759079.9860198, 1571759079.9899197, 1571759079.9938192, 1571759079.997719, 1571759080.0016186, 1571759080.0055184, 1571759080.009418, 1571759080.0133178, 1571759080.0172176, 1571759080.0211172, 1571759080.025017, 1571759080.0289166, 1571759080.0328164, 1571759080.0367162, 1571759080.0406158, 1571759080.0445156, 1571759080.0484152, 1571759080.052315, 1571759080.0562146, 1571759080.0601144, 1571759080.0640142, 1571759080.0679138, 1571759080.0718136, 1571759080.0757132, 1571759080.079613, 1571759080.0835125, 1571759080.0874124, 1571759080.0913122, 1571759080.0952117, 1571759080.0991116, 1571759080.1030111, 1571759080.106911, 1571759080.1108108, 1571759080.1147103, 1571759080.1186101, 1571759080.1225097, 1571759080.1264095, 1571759080.130309, 1571759080.134209, 1571759080.1381087, 1571759080.1420083, 1571759080.145908, 1571759080.1498077, 1571759080.1537075, 1571759080.1576073, 1571759080.161507, 1571759080.1654067, 1571759080.1693063, 1571759080.173206, 1571759080.1771057, 1571759080.1810055, 1571759080.1849053, 1571759080.1888049, 1571759080.1927047, 1571759080.1966043, 1571759080.200504, 1571759080.2044036, 1571759080.2083035, 1571759080.2122033, 1571759080.2161028, 1571759080.2200027, 1571759080.2239022, 1571759080.227802, 1571759080.2317019, 1571759080.2356014, 1571759080.2395012, 1571759080.2434008, 1571759080.2473006, 1571759080.2512002, 1571759080.2551, 1571759080.2589998, 1571759080.2628994, 1571759080.2667992, 1571759080.2706988, 1571759080.2745986, 1571759080.2784982, 1571759080.282398, 1571759080.2862978, 1571759080.2901974, 1571759080.2940972, 1571759080.2979968, 1571759080.3018966, 1571759080.3057964, 1571759080.309696, 1571759080.3135958, 1571759080.3174953, 1571759080.3213952, 1571759080.3252947, 1571759080.3291945, 1571759080.3330944, 1571759080.336994, 1571759080.3408937, 1571759080.3447933, 1571759080.3486931, 1571759080.352593, 1571759080.3564925, 1571759080.3603923, 1571759080.364292, 1571759080.3681917, 1571759080.3720913, 1571759080.375991, 1571759080.379891, 1571759080.3837905, 1571759080.3876903, 1571759080.3915899, 1571759080.3954897, 1571759080.3993893, 1571759080.403289, 1571759080.407189, 1571759080.4110885, 1571759080.4149883, 1571759080.4188879, 1571759080.4227877, 1571759080.4266875, 1571759080.430587, 1571759080.4344869, 1571759080.4383864, 1571759080.4422863, 1571759080.4461858, 1571759080.4500856, 1571759080.4539855, 1571759080.457885, 1571759080.4617848, 1571759080.4656844, 1571759080.4695842, 1571759080.4734838, 1571759080.4773836, 1571759080.4812834, 1571759080.485183, 1571759080.4890828, 1571759080.4929824, 1571759080.4968822, 1571759080.500782, 1571759080.5046816, 1571759080.5085814, 1571759080.512481, 1571759080.5163808, 1571759080.5202804, 1571759080.5241802, 1571759080.52808, 1571759080.5319796, 1571759080.5358794, 1571759080.539779, 1571759080.5436788, 1571759080.5475783, 1571759080.5514781, 1571759080.555378, 1571759080.5592775, 1571759080.5631773, 1571759080.567077, 1571759080.5709767, 1571759080.5748765, 1571759080.5787761, 1571759080.582676, 1571759080.5865755, 1571759080.5904753, 1571759080.594375, 1571759080.5982747, 1571759080.6021745, 1571759080.606074, 1571759080.609974, 1571759080.6138735, 1571759080.6177733, 1571759080.621673, 1571759080.6255727, 1571759080.6294725, 1571759080.633372, 1571759080.637272, 1571759080.6411715, 1571759080.6450713, 1571759080.648971, 1571759080.6528707, 1571759080.6567705, 1571759080.66067, 1571759080.6645699, 1571759080.6684694, 1571759080.6723692, 1571759080.676269, 1571759080.6801686, 1571759080.6840684, 1571759080.687968, 1571759080.6918678, 1571759080.6957676, 1571759080.6996672, 1571759080.703567, 1571759080.7074666, 1571759080.7113664, 1571759080.715266, 1571759080.7191658, 1571759080.7230656, 1571759080.7269652, 1571759080.730865, 1571759080.7347646, 1571759080.7386644, 1571759080.742564, 1571759080.7464638, 1571759080.7503636, 1571759080.7542632, 1571759080.758163, 1571759080.7620625, 1571759080.7659624, 1571759080.7698622, 1571759080.7737617, 1571759080.7776616, 1571759080.7815611, 1571759080.785461, 1571759080.7893605, 1571759080.7932603, 1571759080.7971601, 1571759080.8010597, 1571759080.8049595, 1571759080.808859, 1571759080.812759, 1571759080.8166585, 1571759080.8205583, 1571759080.8244581, 1571759080.8283577, 1571759080.8322575, 1571759080.836157, 1571759080.840057, 1571759080.8439567, 1571759080.8478563, 1571759080.851756, 1571759080.8556557, 1571759080.8595555, 1571759080.863455, 1571759080.8673549, 1571759080.8712547, 1571759080.8751543, 1571759080.879054, 1571759080.8829536, 1571759080.8868535, 1571759080.8907533, 1571759080.8946528, 1571759080.8985527, 1571759080.9024522, 1571759080.906352, 1571759080.9102516, 1571759080.9141514, 1571759080.9180512, 1571759080.9219508, 1571759080.9258506, 1571759080.9297502, 1571759080.93365, 1571759080.9375496, 1571759080.9414494, 1571759080.9453492, 1571759080.9492488, 1571759080.9531486, 1571759080.9570482, 1571759080.960948, 1571759080.9648478, 1571759080.9687474, 1571759080.9726472, 1571759080.9765468, 1571759080.9804466, 1571759080.9843462, 1571759080.988246, 1571759080.9921458, 1571759080.9960454, 1571759080.9999452, 1571759081.0038447, 1571759081.0077446, 1571759081.0116441, 1571759081.015544, 1571759081.0194438, 1571759081.0233433, 1571759081.0272431, 1571759081.0311427, 1571759081.0350425, 1571759081.0389423, 1571759081.042842, 1571759081.0467417, 1571759081.0506413, 1571759081.054541, 1571759081.0584407, 1571759081.0623405, 1571759081.0662403, 1571759081.07014, 1571759081.0740397, 1571759081.0779393, 1571759081.081839, 1571759081.085739, 1571759081.0896385, 1571759081.0935383, 1571759081.0974379, 1571759081.1013377, 1571759081.1052372, 1571759081.109137, 1571759081.1130369, 1571759081.1169364, 1571759081.1208363, 1571759081.1247358, 1571759081.1286356, 1571759081.1325352, 1571759081.136435, 1571759081.1403348, 1571759081.1442344, 1571759081.1481342, 1571759081.1520338, 1571759081.1559336, 1571759081.1598334, 1571759081.163733, 1571759081.1676328, 1571759081.1715324, 1571759081.1754322, 1571759081.1793318, 1571759081.1832316, 1571759081.1871314, 1571759081.191031, 1571759081.1949308, 1571759081.1988304, 1571759081.2027302, 1571759081.2066298, 1571759081.2105296, 1571759081.2144294, 1571759081.218329, 1571759081.2222288, 1571759081.2261283, 1571759081.2300282, 1571759081.233928, 1571759081.2378275, 1571759081.2417274, 1571759081.245627, 1571759081.2495267, 1571759081.2534263, 1571759081.2573261, 1571759081.261226, 1571759081.2651255, 1571759081.2690253, 1571759081.272925, 1571759081.2768247, 1571759081.2807243, 1571759081.284624, 1571759081.288524, 1571759081.2924235, 1571759081.2963233, 1571759081.3002229, 1571759081.3041227, 1571759081.3080225, 1571759081.311922, 1571759081.315822, 1571759081.3197215, 1571759081.3236213, 1571759081.3275208, 1571759081.3314207, 1571759081.3353205, 1571759081.33922, 1571759081.3431199, 1571759081.3470194, 1571759081.3509192, 1571759081.354819, 1571759081.3587186, 1571759081.3626184, 1571759081.366518, 1571759081.3704178, 1571759081.3743174, 1571759081.3782172, 1571759081.382117, 1571759081.3860166, 1571759081.3899164, 1571759081.393816, 1571759081.3977158, 1571759081.4016154, 1571759081.4055152, 1571759081.409415, 1571759081.4133146, 1571759081.4172144, 1571759081.421114, 1571759081.4250138, 1571759081.4289136, 1571759081.4328132, 1571759081.436713, 1571759081.4406126, 1571759081.4445124, 1571759081.448412, 1571759081.4523118, 1571759081.4562116, 1571759081.4601111, 1571759081.464011, 1571759081.4679105, 1571759081.4718103, 1571759081.47571, 1571759081.4796097, 1571759081.4835095, 1571759081.487409, 1571759081.491309, 1571759081.4952085, 1571759081.4991083, 1571759081.5030081, 1571759081.5069077, 1571759081.5108075, 1571759081.514707, 1571759081.518607, 1571759081.5225065, 1571759081.5264063, 1571759081.530306, 1571759081.5342057, 1571759081.5381055, 1571759081.542005, 1571759081.5459049, 1571759081.5498047, 1571759081.5537043, 1571759081.557604, 1571759081.5615036, 1571759081.5654035, 1571759081.569303, 1571759081.5732028, 1571759081.5771027, 1571759081.5810022, 1571759081.584902, 1571759081.5888016, 1571759081.5927014, 1571759081.596601, 1571759081.6005008, 1571759081.6044006, 1571759081.6083002, 1571759081.6122, 1571759081.6160996, 1571759081.6199994, 1571759081.6238992, 1571759081.6277988, 1571759081.6316986, 1571759081.6355982, 1571759081.639498, 1571759081.6433976, 1571759081.6472974, 1571759081.6511972, 1571759081.6550968, 1571759081.6589966, 1571759081.6628962, 1571759081.666796, 1571759081.6706955, 1571759081.6745954, 1571759081.6784952, 1571759081.6823947, 1571759081.6862946, 1571759081.6901941, 1571759081.694094, 1571759081.6979938, 1571759081.7018933, 1571759081.7057931, 1571759081.7096927, 1571759081.7135925, 1571759081.717492, 1571759081.721392, 1571759081.7252917, 1571759081.7291913, 1571759081.733091, 1571759081.7369907, 1571759081.7408905, 1571759081.74479, 1571759081.74869, 1571759081.7525897, 1571759081.7564893, 1571759081.760389, 1571759081.7642887, 1571759081.7681885, 1571759081.7720883, 1571759081.7759879, 1571759081.7798877, 1571759081.7837873, 1571759081.787687, 1571759081.7915866, 1571759081.7954865, 1571759081.7993863, 1571759081.8032858, 1571759081.8071856, 1571759081.8110852, 1571759081.814985, 1571759081.8188848, 1571759081.8227844, 1571759081.8266842, 1571759081.8305838, 1571759081.8344836, 1571759081.8383832, 1571759081.842283, 1571759081.8461828, 1571759081.8500824, 1571759081.8539822, 1571759081.8578818, 1571759081.8617816, 1571759081.8656812, 1571759081.869581, 1571759081.8734808, 1571759081.8773804, 1571759081.8812802, 1571759081.8851798, 1571759081.8890796, 1571759081.8929794, 1571759081.896879, 1571759081.9007788, 1571759081.9046783, 1571759081.9085782, 1571759081.9124777, 1571759081.9163775, 1571759081.9202774, 1571759081.924177, 1571759081.9280767, 1571759081.9319763, 1571759081.9358761, 1571759081.9397757, 1571759081.9436755, 1571759081.9475753, 1571759081.951475, 1571759081.9553747, 1571759081.9592743, 1571759081.963174, 1571759081.967074, 1571759081.9709735, 1571759081.9748733, 1571759081.9787729, 1571759081.9826727, 1571759081.9865723, 1571759081.990472, 1571759081.994372, 1571759081.9982715, 1571759082.0021713, 1571759082.0060709, 1571759082.0099707, 1571759082.0138702, 1571759082.01777, 1571759082.0216699, 1571759082.0255694, 1571759082.0294693, 1571759082.0333688, 1571759082.0372686, 1571759082.0411685, 1571759082.045068, 1571759082.0489678, 1571759082.0528674, 1571759082.0567672, 1571759082.0606668, 1571759082.0645666, 1571759082.0684664, 1571759082.072366, 1571759082.0762658, 1571759082.0801654, 1571759082.0840652, 1571759082.087965, 1571759082.0918646, 1571759082.0957644, 1571759082.099664, 1571759082.1035638, 1571759082.1074634, 1571759082.1113632, 1571759082.115263, 1571759082.1191626, 1571759082.1230624, 1571759082.126962, 1571759082.1308618, 1571759082.1347613, 1571759082.1386611, 1571759082.142561, 1571759082.1464605, 1571759082.1503603, 1571759082.15426, 1571759082.1581597, 1571759082.1620595, 1571759082.1659591, 1571759082.169859, 1571759082.1737585, 1571759082.1776583, 1571759082.181558, 1571759082.1854577, 1571759082.1893575, 1571759082.193257, 1571759082.197157, 1571759082.2010565, 1571759082.2049563, 1571759082.2088559, 1571759082.2127557, 1571759082.2166555, 1571759082.220555, 1571759082.2244549, 1571759082.2283545, 1571759082.2322543, 1571759082.236154, 1571759082.2400537, 1571759082.2439535, 1571759082.247853, 1571759082.2517529, 1571759082.2556524, 1571759082.2595522, 1571759082.263452, 1571759082.2673516, 1571759082.2712514, 1571759082.275151, 1571759082.2790508, 1571759082.2829506, 1571759082.2868502, 1571759082.29075, 1571759082.2946496, 1571759082.2985494, 1571759082.302449, 1571759082.3063488, 1571759082.3102486, 1571759082.3141482, 1571759082.318048, 1571759082.3219476, 1571759082.3258474, 1571759082.329747, 1571759082.3336468, 1571759082.3375466, 1571759082.3414462, 1571759082.345346, 1571759082.3492455, 1571759082.3531454, 1571759082.3570452, 1571759082.3609447, 1571759082.3648446, 1571759082.3687441, 1571759082.372644, 1571759082.3765435, 1571759082.3804433, 1571759082.3843431, 1571759082.3882427, 1571759082.3921425, 1571759082.396042, 1571759082.399942, 1571759082.4038415, 1571759082.4077413, 1571759082.4116411, 1571759082.4155407, 1571759082.4194405, 1571759082.42334, 1571759082.42724, 1571759082.4311397, 1571759082.4350393, 1571759082.438939, 1571759082.4428387, 1571759082.4467385, 1571759082.450638, 1571759082.4545379, 1571759082.4584377, 1571759082.4623373, 1571759082.466237, 1571759082.4701366, 1571759082.4740365, 1571759082.477936, 1571759082.4818358, 1571759082.4857357, 1571759082.4896352, 1571759082.493535, 1571759082.4974346, 1571759082.5013344, 1571759082.5052342, 1571759082.5091338, 1571759082.5130336, 1571759082.5169332, 1571759082.520833, 1571759082.5247326, 1571759082.5286324, 1571759082.5325322, 1571759082.5364318, 1571759082.5403316, 1571759082.5442312, 1571759082.548131, 1571759082.5520308, 1571759082.5559304, 1571759082.5598302, 1571759082.5637298, 1571759082.5676296, 1571759082.5715292, 1571759082.575429, 1571759082.5793288, 1571759082.5832283, 1571759082.5871282, 1571759082.5910277, 1571759082.5949275, 1571759082.5988271, 1571759082.602727, 1571759082.6066267, 1571759082.6105263, 1571759082.6144261, 1571759082.6183257, 1571759082.6222255, 1571759082.6261253, 1571759082.630025, 1571759082.6339247, 1571759082.6378243, 1571759082.641724, 1571759082.6456237, 1571759082.6495235, 1571759082.6534233, 1571759082.657323, 1571759082.6612227, 1571759082.6651223, 1571759082.669022, 1571759082.6729217, 1571759082.6768215, 1571759082.6807213, 1571759082.6846209, 1571759082.6885207, 1571759082.6924202, 1571759082.69632, 1571759082.7002199, 1571759082.7041194, 1571759082.7080193, 1571759082.7119188, 1571759082.7158186, 1571759082.7197182, 1571759082.723618, 1571759082.7275178, 1571759082.7314174, 1571759082.7353172, 1571759082.7392168, 1571759082.7431166, 1571759082.7470164, 1571759082.750916, 1571759082.7548158, 1571759082.7587154, 1571759082.7626152, 1571759082.7665148, 1571759082.7704146, 1571759082.7743144, 1571759082.778214, 1571759082.7821138, 1571759082.7860134, 1571759082.7899132, 1571759082.7938128, 1571759082.7977126, 1571759082.8016124, 1571759082.805512, 1571759082.8094118, 1571759082.8133113, 1571759082.8172112, 1571759082.821111, 1571759082.8250105, 1571759082.8289104, 1571759082.83281, 1571759082.8367097, 1571759082.8406093, 1571759082.8445091, 1571759082.848409, 1571759082.8523085, 1571759082.8562083, 1571759082.860108, 1571759082.8640077, 1571759082.8679073, 1571759082.871807, 1571759082.875707, 1571759082.8796065, 1571759082.8835063, 1571759082.8874059, 1571759082.8913057, 1571759082.8952055, 1571759082.899105, 1571759082.903005, 1571759082.9069045, 1571759082.9108043, 1571759082.9147038, 1571759082.9186037, 1571759082.9225035, 1571759082.926403, 1571759082.9303029, 1571759082.9342024, 1571759082.9381022, 1571759082.9420018, 1571759082.9459016, 1571759082.9498014, 1571759082.953701, 1571759082.9576008, 1571759082.9615004, 1571759082.9654002, 1571759082.9693, 1571759082.9731996, 1571759082.9770994, 1571759082.980999, 1571759082.9848988, 1571759082.9887984, 1571759082.9926982, 1571759082.996598, 1571759083.0004976, 1571759083.0043974, 1571759083.008297, 1571759083.0121968, 1571759083.0160966, 1571759083.0199962, 1571759083.023896, 1571759083.0277956, 1571759083.0316954, 1571759083.035595, 1571759083.0394948, 1571759083.0433946, 1571759083.0472941, 1571759083.051194, 1571759083.0550935, 1571759083.0589933, 1571759083.062893, 1571759083.0667927, 1571759083.0706925, 1571759083.074592, 1571759083.078492, 1571759083.0823915, 1571759083.0862913, 1571759083.0901911, 1571759083.0940907, 1571759083.0979905, 1571759083.10189, 1571759083.10579, 1571759083.1096895, 1571759083.1135893, 1571759083.117489, 1571759083.1213887, 1571759083.1252885, 1571759083.129188, 1571759083.1330879, 1571759083.1369874, 1571759083.1408873, 1571759083.144787, 1571759083.1486866, 1571759083.1525865, 1571759083.156486, 1571759083.1603858, 1571759083.1642857, 1571759083.1681852, 1571759083.172085, 1571759083.1759846, 1571759083.1798844, 1571759083.183784, 1571759083.1876838, 1571759083.1915836, 1571759083.1954832, 1571759083.199383, 1571759083.2032826, 1571759083.2071824, 1571759083.2110822, 1571759083.2149818, 1571759083.2188816, 1571759083.2227812, 1571759083.226681, 1571759083.2305806, 1571759083.2344804, 1571759083.2383802, 1571759083.2422798, 1571759083.2461796, 1571759083.2500792, 1571759083.253979, 1571759083.2578785, 1571759083.2617784, 1571759083.2656782, 1571759083.2695777, 1571759083.2734776, 1571759083.2773771, 1571759083.281277, 1571759083.2851768, 1571759083.2890763, 1571759083.2929761, 1571759083.2968757, 1571759083.3007755, 1571759083.304675, 1571759083.308575, 1571759083.3124747, 1571759083.3163743, 1571759083.320274, 1571759083.3241737, 1571759083.3280735, 1571759083.331973, 1571759083.335873, 1571759083.3397727, 1571759083.3436723, 1571759083.347572, 1571759083.3514717, 1571759083.3553715, 1571759083.3592713, 1571759083.3631709, 1571759083.3670707, 1571759083.3709702, 1571759083.37487, 1571759083.3787696, 1571759083.3826694, 1571759083.3865693, 1571759083.3904688, 1571759083.3943686, 1571759083.3982682, 1571759083.402168, 1571759083.4060676, 1571759083.4099674, 1571759083.4138672, 1571759083.4177668, 1571759083.4216666, 1571759083.4255662, 1571759083.429466, 1571759083.4333658, 1571759083.4372654, 1571759083.4411652, 1571759083.4450648, 1571759083.4489646, 1571759083.4528642, 1571759083.456764, 1571759083.4606638, 1571759083.4645634, 1571759083.4684632, 1571759083.4723628, 1571759083.4762626, 1571759083.4801624, 1571759083.484062, 1571759083.4879618, 1571759083.4918613, 1571759083.4957612, 1571759083.4996607, 1571759083.5035605, 1571759083.5074604, 1571759083.51136, 1571759083.5152597, 1571759083.5191593, 1571759083.5230591, 1571759083.5269587, 1571759083.5308585, 1571759083.5347583, 1571759083.538658, 1571759083.5425577, 1571759083.5464573, 1571759083.550357, 1571759083.554257, 1571759083.5581565, 1571759083.5620563, 1571759083.5659559, 1571759083.5698557, 1571759083.5737553, 1571759083.577655, 1571759083.581555, 1571759083.5854545, 1571759083.5893543, 1571759083.5932539, 1571759083.5971537, 1571759083.6010532, 1571759083.604953, 1571759083.6088529, 1571759083.6127524, 1571759083.6166523, 1571759083.6205518, 1571759083.6244516, 1571759083.6283514, 1571759083.632251, 1571759083.6361508, 1571759083.6400504, 1571759083.6439502, 1571759083.6478498, 1571759083.6517496, 1571759083.6556494, 1571759083.659549, 1571759083.6634488, 1571759083.6673484, 1571759083.6712482, 1571759083.6751478, 1571759083.6790476, 1571759083.6829474, 1571759083.686847, 1571759083.6907468, 1571759083.6946464, 1571759083.6985462, 1571759083.702446, 1571759083.7063456, 1571759083.7102454, 1571759083.714145, 1571759083.7180448, 1571759083.7219443, 1571759083.7258441, 1571759083.729744, 1571759083.7336435, 1571759083.7375433, 1571759083.741443, 1571759083.7453427, 1571759083.7492425, 1571759083.753142, 1571759083.757042, 1571759083.7609415, 1571759083.7648413, 1571759083.768741, 1571759083.7726407, 1571759083.7765405, 1571759083.78044, 1571759083.78434, 1571759083.7882395, 1571759083.7921393, 1571759083.7960389, 1571759083.7999387, 1571759083.8038385, 1571759083.807738, 1571759083.8116379, 1571759083.8155375, 1571759083.8194373, 1571759083.823337, 1571759083.8272367, 1571759083.8311365, 1571759083.835036, 1571759083.8389359, 1571759083.8428354, 1571759083.8467352, 1571759083.850635, 1571759083.8545346, 1571759083.8584344, 1571759083.862334, 1571759083.8662338, 1571759083.8701334, 1571759083.8740332, 1571759083.877933, 1571759083.8818326, 1571759083.8857324, 1571759083.889632, 1571759083.8935318, 1571759083.8974316, 1571759083.9013312, 1571759083.905231, 1571759083.9091306, 1571759083.9130304, 1571759083.91693, 1571759083.9208298, 1571759083.9247296, 1571759083.9286292, 1571759083.932529, 1571759083.9364285, 1571759083.9403284, 1571759083.9442282, 1571759083.9481277, 1571759083.9520276, 1571759083.9559271, 1571759083.959827, 1571759083.9637265, 1571759083.9676263, 1571759083.9715261, 1571759083.9754257, 1571759083.9793255, 1571759083.983225, 1571759083.987125, 1571759083.9910245, 1571759083.9949243, 1571759083.9988241, 1571759084.0027237, 1571759084.0066235, 1571759084.010523, 1571759084.014423, 1571759084.0183227, 1571759084.0222223, 1571759084.026122, 1571759084.0300217, 1571759084.0339215, 1571759084.037821, 1571759084.0417209, 1571759084.0456207, 1571759084.0495203, 1571759084.05342, 1571759084.0573196, 1571759084.0612195, 1571759084.065119, 1571759084.0690188, 1571759084.0729187, 1571759084.0768182, 1571759084.080718, 1571759084.0846176, 1571759084.0885174, 1571759084.0924172, 1571759084.0963168, 1571759084.1002166, 1571759084.1041162, 1571759084.108016, 1571759084.1119156, 1571759084.1158154, 1571759084.1197152, 1571759084.1236148, 1571759084.1275146, 1571759084.1314142, 1571759084.135314, 1571759084.1392136, 1571759084.1431134, 1571759084.1470132, 1571759084.1509128, 1571759084.1548126, 1571759084.1587121, 1571759084.162612, 1571759084.1665118, 1571759084.1704113, 1571759084.1743112, 1571759084.1782107, 1571759084.1821105, 1571759084.1860101, 1571759084.18991, 1571759084.1938097, 1571759084.1977093, 1571759084.2016091, 1571759084.2055087, 1571759084.2094085, 1571759084.2133083, 1571759084.217208, 1571759084.2211077, 1571759084.2250073, 1571759084.228907, 1571759084.2328067, 1571759084.2367065, 1571759084.2406063, 1571759084.244506, 1571759084.2484057, 1571759084.2523053, 1571759084.256205, 1571759084.2601047, 1571759084.2640045, 1571759084.2679043, 1571759084.2718039, 1571759084.2757037, 1571759084.2796032, 1571759084.283503, 1571759084.2874029, 1571759084.2913024, 1571759084.2952023, 1571759084.2991018, 1571759084.3030016, 1571759084.3069012, 1571759084.310801, 1571759084.3147008, 1571759084.3186004, 1571759084.3225002, 1571759084.3263998, 1571759084.3302996, 1571759084.3341992, 1571759084.338099, 1571759084.3419988, 1571759084.3458984, 1571759084.3497982, 1571759084.3536978, 1571759084.3575976, 1571759084.3614974, 1571759084.365397, 1571759084.3692968, 1571759084.3731964, 1571759084.3770962, 1571759084.3809958, 1571759084.3848956, 1571759084.3887954, 1571759084.392695, 1571759084.3965948, 1571759084.4004943, 1571759084.4043941, 1571759084.408294, 1571759084.4121935, 1571759084.4160933, 1571759084.419993, 1571759084.4238927, 1571759084.4277923, 1571759084.4316921, 1571759084.435592, 1571759084.4394915, 1571759084.4433913, 1571759084.447291, 1571759084.4511907, 1571759084.4550903, 1571759084.45899, 1571759084.46289, 1571759084.4667895, 1571759084.4706893, 1571759084.4745889, 1571759084.4784887, 1571759084.4823885, 1571759084.486288, 1571759084.490188, 1571759084.4940875, 1571759084.4979873, 1571759084.5018868, 1571759084.5057867, 1571759084.5096865, 1571759084.513586, 1571759084.5174859, 1571759084.5213854, 1571759084.5252852, 1571759084.5291848, 1571759084.5330846, 1571759084.5369844, 1571759084.540884, 1571759084.5447838, 1571759084.5486834, 1571759084.5525832, 1571759084.556483, 1571759084.5603826, 1571759084.5642824, 1571759084.568182, 1571759084.5720818, 1571759084.5759814, 1571759084.5798812, 1571759084.583781, 1571759084.5876806, 1571759084.5915804, 1571759084.59548, 1571759084.5993798, 1571759084.6032794, 1571759084.6071792, 1571759084.611079, 1571759084.6149786, 1571759084.6188784, 1571759084.622778, 1571759084.6266778, 1571759084.6305776, 1571759084.6344771, 1571759084.638377, 1571759084.6422765, 1571759084.6461763, 1571759084.650076, 1571759084.6539757, 1571759084.6578755, 1571759084.661775, 1571759084.665675, 1571759084.6695745, 1571759084.6734743, 1571759084.6773741, 1571759084.6812737, 1571759084.6851735, 1571759084.689073, 1571759084.692973, 1571759084.6968725, 1571759084.7007723, 1571759084.704672, 1571759084.7085717, 1571759084.7124715, 1571759084.716371, 1571759084.7202709, 1571759084.7241704, 1571759084.7280703, 1571759084.73197, 1571759084.7358696, 1571759084.7397695, 1571759084.743669, 1571759084.7475688, 1571759084.7514687, 1571759084.7553682, 1571759084.759268, 1571759084.7631676, 1571759084.7670674, 1571759084.770967, 1571759084.7748668, 1571759084.7787666, 1571759084.7826662, 1571759084.786566, 1571759084.7904656, 1571759084.7943654, 1571759084.798265, 1571759084.8021648, 1571759084.8060646, 1571759084.8099642, 1571759084.813864, 1571759084.8177636, 1571759084.8216634, 1571759084.8255632, 1571759084.8294628, 1571759084.8333626, 1571759084.8372622, 1571759084.841162, 1571759084.8450615, 1571759084.8489614, 1571759084.8528612, 1571759084.8567607, 1571759084.8606606, 1571759084.8645601, 1571759084.86846, 1571759084.8723598, 1571759084.8762593, 1571759084.8801591, 1571759084.8840587, 1571759084.8879585, 1571759084.891858, 1571759084.895758, 1571759084.8996577, 1571759084.9035573, 1571759084.907457, 1571759084.9113567, 1571759084.9152565, 1571759084.919156, 1571759084.923056, 1571759084.9269557, 1571759084.9308553, 1571759084.934755, 1571759084.9386547, 1571759084.9425545, 1571759084.9464543, 1571759084.9503539, 1571759084.9542537, 1571759084.9581532, 1571759084.962053, 1571759084.9659526, 1571759084.9698524, 1571759084.9737523, 1571759084.9776518, 1571759084.9815516, 1571759084.9854512, 1571759084.989351, 1571759084.9932506, 1571759084.9971504, 1571759085.0010502, 1571759085.0049498, 1571759085.0088496, 1571759085.0127492, 1571759085.016649, 1571759085.0205488, 1571759085.0244484, 1571759085.0283482, 1571759085.0322478, 1571759085.0361476, 1571759085.0400472, 1571759085.043947, 1571759085.0478468, 1571759085.0517464, 1571759085.0556462, 1571759085.0595458, 1571759085.0634456, 1571759085.0673451, 1571759085.071245, 1571759085.0751448, 1571759085.0790443, 1571759085.0829442, 1571759085.0868437, 1571759085.0907435, 1571759085.0946434, 1571759085.098543, 1571759085.1024427, 1571759085.1063423, 1571759085.1102421, 1571759085.1141417, 1571759085.1180415, 1571759085.1219413, 1571759085.125841, 1571759085.1297407, 1571759085.1336403, 1571759085.13754, 1571759085.14144, 1571759085.1453395, 1571759085.1492393, 1571759085.1531389, 1571759085.1570387, 1571759085.1609383, 1571759085.164838, 1571759085.168738, 1571759085.1726375, 1571759085.1765373, 1571759085.1804368, 1571759085.1843367, 1571759085.1882362, 1571759085.192136, 1571759085.1960359, 1571759085.1999354, 1571759085.2038352, 1571759085.2077348, 1571759085.2116346, 1571759085.2155344, 1571759085.219434, 1571759085.2233338, 1571759085.2272334, 1571759085.2311332, 1571759085.2350328, 1571759085.2389326, 1571759085.2428324, 1571759085.246732, 1571759085.2506318, 1571759085.2545314, 1571759085.2584312, 1571759085.2623308, 1571759085.2662306, 1571759085.2701304, 1571759085.27403, 1571759085.2779298, 1571759085.2818294, 1571759085.2857292, 1571759085.289629, 1571759085.2935286, 1571759085.2974284, 1571759085.301328, 1571759085.3052278, 1571759085.3091273, 1571759085.3130271, 1571759085.316927, 1571759085.3208265, 1571759085.3247263, 1571759085.328626, 1571759085.3325257, 1571759085.3364253, 1571759085.340325, 1571759085.344225, 1571759085.3481245, 1571759085.3520243, 1571759085.355924, 1571759085.3598237, 1571759085.3637235, 1571759085.367623, 1571759085.371523, 1571759085.3754225, 1571759085.3793223, 1571759085.3832219, 1571759085.3871217, 1571759085.3910215, 1571759085.394921, 1571759085.3988209, 1571759085.4027205, 1571759085.4066203, 1571759085.41052, 1571759085.4144197, 1571759085.4183195, 1571759085.422219, 1571759085.4261189, 1571759085.4300184, 1571759085.4339182, 1571759085.437818, 1571759085.4417176, 1571759085.4456174, 1571759085.449517, 1571759085.4534168, 1571759085.4573164, 1571759085.4612162, 1571759085.465116, 1571759085.4690156, 1571759085.4729154, 1571759085.476815, 1571759085.4807148, 1571759085.4846146, 1571759085.4885142, 1571759085.492414, 1571759085.4963136, 1571759085.5002134, 1571759085.504113, 1571759085.5080128, 1571759085.5119126, 1571759085.5158122, 1571759085.519712, 1571759085.5236115, 1571759085.5275114, 1571759085.531411, 1571759085.5353107, 1571759085.5392106, 1571759085.5431101, 1571759085.54701, 1571759085.5509095, 1571759085.5548093, 1571759085.5587091, 1571759085.5626087, 1571759085.5665085, 1571759085.570408, 1571759085.574308, 1571759085.5782075, 1571759085.5821073, 1571759085.586007, 1571759085.5899067, 1571759085.5938065, 1571759085.597706, 1571759085.601606, 1571759085.6055057, 1571759085.6094053, 1571759085.613305, 1571759085.6172047, 1571759085.6211045, 1571759085.625004, 1571759085.6289039, 1571759085.6328037, 1571759085.6367033, 1571759085.640603, 1571759085.6445026, 1571759085.6484025, 1571759085.652302, 1571759085.6562018, 1571759085.6601017, 1571759085.6640012, 1571759085.667901, 1571759085.6718006, 1571759085.6757004, 1571759085.6796002, 1571759085.6834998, 1571759085.6873996, 1571759085.6912992, 1571759085.695199, 1571759085.6990986, 1571759085.7029984, 1571759085.7068982, 1571759085.7107978, 1571759085.7146976, 1571759085.7185972, 1571759085.722497, 1571759085.7263966, 1571759085.7302964, 1571759085.7341962, 1571759085.7380958, 1571759085.7419956, 1571759085.7458951, 1571759085.749795, 1571759085.7536948, 1571759085.7575943, 1571759085.7614942, 1571759085.7653937, 1571759085.7692935, 1571759085.7731931, 1571759085.777093, 1571759085.7809927, 1571759085.7848923, 1571759085.7887921, 1571759085.7926917, 1571759085.7965915, 1571759085.800491, 1571759085.804391, 1571759085.8082907, 1571759085.8121903, 1571759085.81609, 1571759085.8199897, 1571759085.8238895, 1571759085.8277893, 1571759085.831689, 1571759085.8355887, 1571759085.8394883, 1571759085.843388, 1571759085.8472877, 1571759085.8511875, 1571759085.8550873, 1571759085.8589869, 1571759085.8628867, 1571759085.8667862, 1571759085.870686, 1571759085.8745859, 1571759085.8784854, 1571759085.8823853, 1571759085.8862848, 1571759085.8901846, 1571759085.8940842, 1571759085.897984, 1571759085.9018838, 1571759085.9057834, 1571759085.9096832, 1571759085.9135828, 1571759085.9174826, 1571759085.9213822, 1571759085.925282, 1571759085.9291818, 1571759085.9330814, 1571759085.9369812, 1571759085.9408808, 1571759085.9447806, 1571759085.9486804, 1571759085.95258, 1571759085.9564798, 1571759085.9603794, 1571759085.9642792, 1571759085.9681787, 1571759085.9720786, 1571759085.9759784, 1571759085.979878, 1571759085.9837778, 1571759085.9876773, 1571759085.9915771, 1571759085.9954767, 1571759085.9993765, 1571759086.0032763, 1571759086.007176, 1571759086.0110757, 1571759086.0149753, 1571759086.0188751, 1571759086.022775, 1571759086.0266745, 1571759086.0305743, 1571759086.034474, 1571759086.0383737, 1571759086.0422733, 1571759086.046173, 1571759086.050073, 1571759086.0539725, 1571759086.0578723, 1571759086.0617719, 1571759086.0656717, 1571759086.0695715, 1571759086.073471, 1571759086.077371, 1571759086.0812705, 1571759086.0851703, 1571759086.0890698, 1571759086.0929697, 1571759086.0968695, 1571759086.100769, 1571759086.1046689, 1571759086.1085684, 1571759086.1124682, 1571759086.1163678, 1571759086.1202676, 1571759086.1241674, 1571759086.128067, 1571759086.1319668, 1571759086.1358664, 1571759086.1397662, 1571759086.143666, 1571759086.1475656, 1571759086.1514654, 1571759086.155365, 1571759086.1592648, 1571759086.1631644, 1571759086.1670642, 1571759086.170964, 1571759086.1748636, 1571759086.1787634, 1571759086.182663, 1571759086.1865628, 1571759086.1904624, 1571759086.1943622, 1571759086.198262, 1571759086.2021616, 1571759086.2060614, 1571759086.209961, 1571759086.2138608, 1571759086.2177606, 1571759086.2216601, 1571759086.22556, 1571759086.2294595, 1571759086.2333593, 1571759086.237259, 1571759086.2411587, 1571759086.2450585, 1571759086.248958, 1571759086.252858, 1571759086.2567575, 1571759086.2606573, 1571759086.264557, 1571759086.2684567, 1571759086.2723565, 1571759086.276256, 1571759086.280156, 1571759086.2840555, 1571759086.2879553, 1571759086.291855, 1571759086.2957547, 1571759086.2996545, 1571759086.303554, 1571759086.3074539, 1571759086.3113534, 1571759086.3152533, 1571759086.319153, 1571759086.3230526, 1571759086.3269525, 1571759086.330852, 1571759086.3347518, 1571759086.3386517, 1571759086.3425512, 1571759086.346451, 1571759086.3503506, 1571759086.3542504, 1571759086.35815, 1571759086.3620498, 1571759086.3659496, 1571759086.3698492, 1571759086.373749, 1571759086.3776486, 1571759086.3815484, 1571759086.385448, 1571759086.3893478, 1571759086.3932476, 1571759086.3971472, 1571759086.401047, 1571759086.4049466, 1571759086.4088464, 1571759086.4127462, 1571759086.4166458, 1571759086.4205456, 1571759086.4244452, 1571759086.428345, 1571759086.4322445, 1571759086.4361444, 1571759086.4400442, 1571759086.4439437, 1571759086.4478436, 1571759086.4517431, 1571759086.455643, 1571759086.4595425, 1571759086.4634423, 1571759086.4673421, 1571759086.4712417, 1571759086.4751415, 1571759086.479041, 1571759086.482941, 1571759086.4868407, 1571759086.4907403, 1571759086.49464, 1571759086.4985397, 1571759086.5024395, 1571759086.506339, 1571759086.510239, 1571759086.5141387, 1571759086.5180383, 1571759086.521938, 1571759086.5258377, 1571759086.5297375, 1571759086.533637, 1571759086.5375369, 1571759086.5414367, 1571759086.5453362, 1571759086.549236, 1571759086.5531356, 1571759086.5570354, 1571759086.5609353, 1571759086.5648348, 1571759086.5687346, 1571759086.5726342, 1571759086.576534, 1571759086.5804336, 1571759086.5843334, 1571759086.5882332, 1571759086.5921328, 1571759086.5960326, 1571759086.5999322, 1571759086.603832, 1571759086.6077318, 1571759086.6116314, 1571759086.6155312, 1571759086.6194308, 1571759086.6233306, 1571759086.6272302, 1571759086.63113, 1571759086.6350298, 1571759086.6389294, 1571759086.6428292, 1571759086.6467288, 1571759086.6506286, 1571759086.6545281, 1571759086.658428, 1571759086.6623278, 1571759086.6662273, 1571759086.6701272, 1571759086.6740267, 1571759086.6779265, 1571759086.6818264, 1571759086.685726, 1571759086.6896257, 1571759086.6935253, 1571759086.6974251, 1571759086.7013247, 1571759086.7052245, 1571759086.7091243, 1571759086.713024, 1571759086.7169237, 1571759086.7208233, 1571759086.724723, 1571759086.7286227, 1571759086.7325225, 1571759086.7364223, 1571759086.7403219, 1571759086.7442217, 1571759086.7481213, 1571759086.752021, 1571759086.755921, 1571759086.7598205, 1571759086.7637203, 1571759086.7676198, 1571759086.7715197, 1571759086.7754192, 1571759086.779319, 1571759086.7832189, 1571759086.7871184, 1571759086.7910182, 1571759086.7949178, 1571759086.7988176, 1571759086.8027174, 1571759086.806617, 1571759086.8105168, 1571759086.8144164, 1571759086.8183162, 1571759086.8222158, 1571759086.8261156, 1571759086.8300154, 1571759086.833915, 1571759086.8378148, 1571759086.8417144, 1571759086.8456142, 1571759086.8495138, 1571759086.8534136, 1571759086.8573134, 1571759086.861213, 1571759086.8651128, 1571759086.8690124, 1571759086.8729122, 1571759086.876812, 1571759086.8807116, 1571759086.8846114, 1571759086.888511, 1571759086.8924108, 1571759086.8963103, 1571759086.9002101, 1571759086.90411, 1571759086.9080095, 1571759086.9119093, 1571759086.915809, 1571759086.9197087, 1571759086.9236083, 1571759086.927508, 1571759086.931408, 1571759086.9353075, 1571759086.9392073, 1571759086.943107, 1571759086.9470067, 1571759086.9509065, 1571759086.954806, 1571759086.958706, 1571759086.9626055, 1571759086.9665053, 1571759086.9704049, 1571759086.9743047, 1571759086.9782045, 1571759086.982104, 1571759086.9860039, 1571759086.9899035, 1571759086.9938033, 1571759086.9977028, 1571759087.0016026, 1571759087.0055025, 1571759087.009402, 1571759087.0133018, 1571759087.0172014, 1571759087.0211012, 1571759087.025001, 1571759087.0289006, 1571759087.0328004, 1571759087.0367, 1571759087.0405998, 1571759087.0444994, 1571759087.0483992, 1571759087.052299, 1571759087.0561986, 1571759087.0600984, 1571759087.063998, 1571759087.0678978, 1571759087.0717976, 1571759087.0756972, 1571759087.079597, 1571759087.0834966, 1571759087.0873964, 1571759087.091296, 1571759087.0951958, 1571759087.0990956, 1571759087.1029952, 1571759087.106895, 1571759087.1107945, 1571759087.1146944, 1571759087.118594, 1571759087.1224937, 1571759087.1263936, 1571759087.1302931, 1571759087.134193, 1571759087.1380925, 1571759087.1419923, 1571759087.1458921, 1571759087.1497917, 1571759087.1536915, 1571759087.157591, 1571759087.161491, 1571759087.1653905, 1571759087.1692903, 1571759087.17319, 1571759087.1770897, 1571759087.1809895, 1571759087.184889, 1571759087.188789, 1571759087.1926885, 1571759087.1965883, 1571759087.200488, 1571759087.2043877, 1571759087.2082875, 1571759087.212187, 1571759087.2160869, 1571759087.2199867, 1571759087.2238863, 1571759087.227786, 1571759087.2316856, 1571759087.2355855, 1571759087.239485, 1571759087.2433848, 1571759087.2472847, 1571759087.2511842, 1571759087.255084, 1571759087.2589836, 1571759087.2628834, 1571759087.2667832, 1571759087.2706828, 1571759087.2745826, 1571759087.2784822, 1571759087.282382, 1571759087.2862816, 1571759087.2901814, 1571759087.2940812, 1571759087.2979808, 1571759087.3018806, 1571759087.3057802, 1571759087.30968, 1571759087.3135796, 1571759087.3174794, 1571759087.3213792, 1571759087.3252788, 1571759087.3291786, 1571759087.3330781, 1571759087.336978, 1571759087.3408778, 1571759087.3447773, 1571759087.3486772, 1571759087.3525767, 1571759087.3564765, 1571759087.3603761, 1571759087.364276, 1571759087.3681757, 1571759087.3720753, 1571759087.3759751, 1571759087.3798747, 1571759087.3837745, 1571759087.387674, 1571759087.391574, 1571759087.3954737, 1571759087.3993733, 1571759087.403273, 1571759087.4071727, 1571759087.4110725, 1571759087.4149723, 1571759087.4188719, 1571759087.4227717, 1571759087.4266713, 1571759087.430571, 1571759087.4344707, 1571759087.4383705, 1571759087.4422703, 1571759087.4461699, 1571759087.4500697, 1571759087.4539692, 1571759087.457869, 1571759087.4617686, 1571759087.4656684, 1571759087.4695683, 1571759087.4734678, 1571759087.4773676, 1571759087.4812672, 1571759087.485167, 1571759087.4890668, 1571759087.4929664, 1571759087.4968662, 1571759087.5007658, 1571759087.5046656, 1571759087.5085652, 1571759087.512465, 1571759087.5163648, 1571759087.5202644, 1571759087.5241642, 1571759087.5280638, 1571759087.5319636, 1571759087.5358634, 1571759087.539763, 1571759087.5436628, 1571759087.5475624, 1571759087.5514622, 1571759087.5553617, 1571759087.5592616, 1571759087.5631614, 1571759087.567061, 1571759087.5709608, 1571759087.5748603, 1571759087.5787601, 1571759087.5826597, 1571759087.5865595, 1571759087.5904593, 1571759087.594359, 1571759087.5982587, 1571759087.6021583, 1571759087.6060581, 1571759087.609958, 1571759087.6138575, 1571759087.6177573, 1571759087.621657, 1571759087.6255567, 1571759087.6294563, 1571759087.633356, 1571759087.637256, 1571759087.6411555, 1571759087.6450553, 1571759087.6489549, 1571759087.6528547, 1571759087.6567543, 1571759087.660654, 1571759087.6645539, 1571759087.6684535, 1571759087.6723533, 1571759087.6762528, 1571759087.6801527, 1571759087.6840525, 1571759087.687952, 1571759087.6918519, 1571759087.6957514, 1571759087.6996512, 1571759087.7035508, 1571759087.7074506, 1571759087.7113504, 1571759087.71525, 1571759087.7191498, 1571759087.7230494, 1571759087.7269492, 1571759087.730849, 1571759087.7347486, 1571759087.7386484, 1571759087.742548, 1571759087.7464478, 1571759087.7503474, 1571759087.7542472, 1571759087.758147, 1571759087.7620466, 1571759087.7659464, 1571759087.769846, 1571759087.7737458, 1571759087.7776453, 1571759087.7815452, 1571759087.785445, 1571759087.7893445, 1571759087.7932444, 1571759087.797144, 1571759087.8010437, 1571759087.8049436, 1571759087.8088431, 1571759087.812743, 1571759087.8166425, 1571759087.8205423, 1571759087.824442, 1571759087.8283417, 1571759087.8322415, 1571759087.836141, 1571759087.840041, 1571759087.8439405, 1571759087.8478403, 1571759087.85174, 1571759087.8556397, 1571759087.8595395, 1571759087.863439, 1571759087.867339, 1571759087.8712385, 1571759087.8751383, 1571759087.879038, 1571759087.8829377, 1571759087.8868375, 1571759087.890737, 1571759087.8946369, 1571759087.8985364, 1571759087.9024363, 1571759087.906336, 1571759087.9102356, 1571759087.9141355, 1571759087.918035, 1571759087.9219348, 1571759087.9258344, 1571759087.9297342, 1571759087.933634, 1571759087.9375336, 1571759087.9414334, 1571759087.945333, 1571759087.9492328, 1571759087.9531326, 1571759087.9570322, 1571759087.960932, 1571759087.9648316, 1571759087.9687314, 1571759087.972631, 1571759087.9765308, 1571759087.9804306, 1571759087.9843302, 1571759087.98823, 1571759087.9921296, 1571759087.9960294, 1571759087.9999292, 1571759088.0038288, 1571759088.0077286, 1571759088.0116282, 1571759088.015528, 1571759088.0194275, 1571759088.0233274, 1571759088.0272272, 1571759088.0311267, 1571759088.0350266, 1571759088.0389261, 1571759088.042826, 1571759088.0467255, 1571759088.0506253, 1571759088.0545251, 1571759088.0584247, 1571759088.0623245, 1571759088.066224, 1571759088.070124, 1571759088.0740237, 1571759088.0779233, 1571759088.081823, 1571759088.0857227, 1571759088.0896225, 1571759088.093522, 1571759088.097422, 1571759088.1013217, 1571759088.1052213, 1571759088.109121, 1571759088.1130207, 1571759088.1169205, 1571759088.12082, 1571759088.1247199, 1571759088.1286197, 1571759088.1325192, 1571759088.136419, 1571759088.1403186, 1571759088.1442184, 1571759088.1481183, 1571759088.1520178, 1571759088.1559176, 1571759088.1598172, 1571759088.163717, 1571759088.1676166, 1571759088.1715164, 1571759088.1754162, 1571759088.1793158, 1571759088.1832156, 1571759088.1871152, 1571759088.191015, 1571759088.1949146, 1571759088.1988144, 1571759088.2027142, 1571759088.2066138, 1571759088.2105136, 1571759088.2144132, 1571759088.218313, 1571759088.2222128, 1571759088.2261124, 1571759088.2300122, 1571759088.2339118, 1571759088.2378116, 1571759088.2417111, 1571759088.245611, 1571759088.2495108, 1571759088.2534103, 1571759088.2573102, 1571759088.2612097, 1571759088.2651095, 1571759088.2690094, 1571759088.272909, 1571759088.2768087, 1571759088.2807083, 1571759088.2846081, 1571759088.2885077, 1571759088.2924075, 1571759088.2963073, 1571759088.300207, 1571759088.3041067, 1571759088.3080063, 1571759088.311906, 1571759088.3158057, 1571759088.3197055, 1571759088.3236053, 1571759088.3275049, 1571759088.3314047, 1571759088.3353043, 1571759088.339204, 1571759088.343104, 1571759088.3470035, 1571759088.3509033, 1571759088.3548028, 1571759088.3587027, 1571759088.3626022, 1571759088.366502, 1571759088.3704019, 1571759088.3743014, 1571759088.3782012, 1571759088.3821008, 1571759088.3860006, 1571759088.3899002, 1571759088.3938, 1571759088.3976998, 1571759088.4015994, 1571759088.4054992, 1571759088.4093988, 1571759088.4132986, 1571759088.4171984, 1571759088.421098, 1571759088.4249978, 1571759088.4288974, 1571759088.4327972, 1571759088.4366968, 1571759088.4405966, 1571759088.4444964, 1571759088.448396, 1571759088.4522958, 1571759088.4561954, 1571759088.4600952, 1571759088.463995, 1571759088.4678946, 1571759088.4717944, 1571759088.475694, 1571759088.4795938, 1571759088.4834933, 1571759088.4873931, 1571759088.491293, 1571759088.4951925, 1571759088.4990923, 1571759088.502992, 1571759088.5068917, 1571759088.5107913, 1571759088.514691, 1571759088.518591, 1571759088.5224905, 1571759088.5263903, 1571759088.53029, 1571759088.5341897, 1571759088.5380895, 1571759088.541989, 1571759088.545889, 1571759088.5497885, 1571759088.5536883, 1571759088.5575879, 1571759088.5614877, 1571759088.5653875, 1571759088.569287, 1571759088.5731869, 1571759088.5770864, 1571759088.5809863, 1571759088.5848858, 1571759088.5887856, 1571759088.5926855, 1571759088.596585, 1571759088.6004848, 1571759088.6043844, 1571759088.6082842, 1571759088.612184, 1571759088.6160836, 1571759088.6199834, 1571759088.623883, 1571759088.6277828, 1571759088.6316824, 1571759088.6355822, 1571759088.639482, 1571759088.6433816, 1571759088.6472814, 1571759088.651181, 1571759088.6550808, 1571759088.6589804, 1571759088.6628802, 1571759088.66678, 1571759088.6706796, 1571759088.6745794, 1571759088.678479, 1571759088.6823788, 1571759088.6862786, 1571759088.6901782, 1571759088.694078, 1571759088.6979775, 1571759088.7018774, 1571759088.705777, 1571759088.7096767, 1571759088.7135766, 1571759088.7174761, 1571759088.721376, 1571759088.7252755, 1571759088.7291753, 1571759088.7330751, 1571759088.7369747, 1571759088.7408745, 1571759088.744774, 1571759088.748674, 1571759088.7525735, 1571759088.7564733, 1571759088.760373, 1571759088.7642727, 1571759088.7681725, 1571759088.772072, 1571759088.775972, 1571759088.7798715, 1571759088.7837713, 1571759088.787671, 1571759088.7915707, 1571759088.7954705, 1571759088.79937, 1571759088.8032699, 1571759088.8071697, 1571759088.8110693, 1571759088.814969, 1571759088.8188686, 1571759088.8227684, 1571759088.826668, 1571759088.8305678, 1571759088.8344676, 1571759088.8383672, 1571759088.842267, 1571759088.8461666, 1571759088.8500664, 1571759088.853966, 1571759088.8578658, 1571759088.8617656, 1571759088.8656652, 1571759088.869565, 1571759088.8734646, 1571759088.8773644, 1571759088.8812642, 1571759088.8851638, 1571759088.8890636, 1571759088.8929632, 1571759088.896863, 1571759088.9007626, 1571759088.9046624, 1571759088.9085622, 1571759088.9124618, 1571759088.9163616, 1571759088.9202611, 1571759088.924161, 1571759088.9280608, 1571759088.9319603, 1571759088.9358602, 1571759088.9397597, 1571759088.9436595, 1571759088.947559, 1571759088.951459, 1571759088.9553587, 1571759088.9592583, 1571759088.9631581, 1571759088.9670577, 1571759088.9709575, 1571759088.974857, 1571759088.978757, 1571759088.9826567, 1571759088.9865563, 1571759088.990456, 1571759088.9943557, 1571759088.9982555, 1571759089.0021553, 1571759089.0060549, 1571759089.0099547, 1571759089.0138543, 1571759089.017754, 1571759089.0216537, 1571759089.0255535, 1571759089.0294533, 1571759089.0333529, 1571759089.0372527, 1571759089.0411522, 1571759089.045052, 1571759089.0489516, 1571759089.0528514, 1571759089.0567513, 1571759089.0606508, 1571759089.0645506, 1571759089.0684502, 1571759089.07235, 1571759089.0762498, 1571759089.0801494, 1571759089.0840492, 1571759089.0879488, 1571759089.0918486, 1571759089.0957482, 1571759089.099648, 1571759089.1035478, 1571759089.1074474, 1571759089.1113472, 1571759089.1152468, 1571759089.1191466, 1571759089.1230462, 1571759089.126946, 1571759089.1308458, 1571759089.1347454, 1571759089.1386452, 1571759089.1425447, 1571759089.1464446, 1571759089.1503444, 1571759089.154244, 1571759089.1581438, 1571759089.1620433, 1571759089.1659431, 1571759089.1698427, 1571759089.1737425, 1571759089.1776423, 1571759089.181542, 1571759089.1854417, 1571759089.1893413, 1571759089.1932411, 1571759089.197141, 1571759089.2010405, 1571759089.2049403, 1571759089.20884, 1571759089.2127397, 1571759089.2166393, 1571759089.220539, 1571759089.224439, 1571759089.2283385, 1571759089.2322383, 1571759089.2361379, 1571759089.2400377, 1571759089.2439373, 1571759089.247837, 1571759089.2517369, 1571759089.2556365, 1571759089.2595363, 1571759089.2634358, 1571759089.2673357, 1571759089.2712355, 1571759089.275135, 1571759089.2790349, 1571759089.2829344, 1571759089.2868342, 1571759089.2907338, 1571759089.2946336, 1571759089.2985334, 1571759089.302433, 1571759089.3063328, 1571759089.3102324, 1571759089.3141322, 1571759089.3180318, 1571759089.3219316, 1571759089.3258314, 1571759089.329731, 1571759089.3336308, 1571759089.3375304, 1571759089.3414302, 1571759089.34533, 1571759089.3492296, 1571759089.3531294, 1571759089.357029, 1571759089.3609288, 1571759089.3648283, 1571759089.3687282, 1571759089.372628, 1571759089.3765275, 1571759089.3804274, 1571759089.384327, 1571759089.3882267, 1571759089.3921263, 1571759089.3960261, 1571759089.399926, 1571759089.4038255, 1571759089.4077253, 1571759089.411625, 1571759089.4155247, 1571759089.4194245, 1571759089.423324, 1571759089.427224, 1571759089.4311235, 1571759089.4350233, 1571759089.438923, 1571759089.4428227, 1571759089.4467225, 1571759089.450622, 1571759089.454522, 1571759089.4584215, 1571759089.4623213, 1571759089.466221, 1571759089.4701207, 1571759089.4740205, 1571759089.47792, 1571759089.4818199, 1571759089.4857194, 1571759089.4896193, 1571759089.493519, 1571759089.4974186, 1571759089.5013185, 1571759089.505218, 1571759089.5091178, 1571759089.5130174, 1571759089.5169172, 1571759089.520817, 1571759089.5247166, 1571759089.5286164, 1571759089.532516, 1571759089.5364158, 1571759089.5403156, 1571759089.5442152, 1571759089.548115, 1571759089.5520146, 1571759089.5559144, 1571759089.559814, 1571759089.5637138, 1571759089.5676136, 1571759089.5715132, 1571759089.575413, 1571759089.5793126, 1571759089.5832124, 1571759089.587112, 1571759089.5910118, 1571759089.5949116, 1571759089.5988111, 1571759089.602711, 1571759089.6066105, 1571759089.6105103, 1571759089.6144102, 1571759089.6183097, 1571759089.6222095, 1571759089.6261091, 1571759089.630009, 1571759089.6339085, 1571759089.6378083, 1571759089.6417081, 1571759089.6456077, 1571759089.6495075, 1571759089.653407, 1571759089.657307, 1571759089.6612067, 1571759089.6651063, 1571759089.669006, 1571759089.6729057, 1571759089.6768055, 1571759089.680705, 1571759089.684605, 1571759089.6885047, 1571759089.6924043, 1571759089.696304, 1571759089.7002037, 1571759089.7041035, 1571759089.708003, 1571759089.7119029, 1571759089.7158027, 1571759089.7197022, 1571759089.723602, 1571759089.7275016, 1571759089.7314014, 1571759089.7353013, 1571759089.7392008, 1571759089.7431006, 1571759089.7470002, 1571759089.7509, 1571759089.7547996, 1571759089.7586994, 1571759089.7625992, 1571759089.7664988, 1571759089.7703986, 1571759089.7742982, 1571759089.778198, 1571759089.7820976, 1571759089.7859974, 1571759089.7898972, 1571759089.7937968, 1571759089.7976966, 1571759089.8015962, 1571759089.805496, 1571759089.8093958, 1571759089.8132954, 1571759089.8171952, 1571759089.8210948, 1571759089.8249946, 1571759089.8288941, 1571759089.832794, 1571759089.8366938, 1571759089.8405933, 1571759089.8444932, 1571759089.8483927, 1571759089.8522925, 1571759089.856192, 1571759089.860092, 1571759089.8639917, 1571759089.8678913, 1571759089.8717911, 1571759089.8756907, 1571759089.8795905, 1571759089.8834903, 1571759089.88739, 1571759089.8912897, 1571759089.8951893, 1571759089.899089, 1571759089.9029887, 1571759089.9068885, 1571759089.9107883, 1571759089.9146879, 1571759089.9185877, 1571759089.9224873, 1571759089.926387, 1571759089.930287, 1571759089.9341865, 1571759089.9380863, 1571759089.9419858, 1571759089.9458857, 1571759089.9497852, 1571759089.953685, 1571759089.9575849, 1571759089.9614844, 1571759089.9653842, 1571759089.9692838, 1571759089.9731836, 1571759089.9770832, 1571759089.980983, 1571759089.9848828, 1571759089.9887824, 1571759089.9926822, 1571759089.9965818, 1571759090.0004816, 1571759090.0043814, 1571759090.008281, 1571759090.0121808, 1571759090.0160804, 1571759090.0199802, 1571759090.0238798, 1571759090.0277796, 1571759090.0316794, 1571759090.035579, 1571759090.0394788, 1571759090.0433784, 1571759090.0472782, 1571759090.0511777, 1571759090.0550776, 1571759090.0589774, 1571759090.062877, 1571759090.0667768, 1571759090.0706763, 1571759090.0745761, 1571759090.078476, 1571759090.0823755, 1571759090.0862753, 1571759090.090175, 1571759090.0940747, 1571759090.0979743, 1571759090.101874, 1571759090.105774, 1571759090.1096735, 1571759090.1135733, 1571759090.117473, 1571759090.1213727, 1571759090.1252725, 1571759090.129172, 1571759090.133072, 1571759090.1369715, 1571759090.1408713, 1571759090.1447709, 1571759090.1486707, 1571759090.1525705, 1571759090.15647, 1571759090.1603699, 1571759090.1642694, 1571759090.1681693, 1571759090.1720688, 1571759090.1759686, 1571759090.1798685, 1571759090.183768, 1571759090.1876678, 1571759090.1915674, 1571759090.1954672, 1571759090.199367, 1571759090.2032666, 1571759090.2071664, 1571759090.211066, 1571759090.2149658, 1571759090.2188654, 1571759090.2227652, 1571759090.226665, 1571759090.2305646, 1571759090.2344644, 1571759090.238364, 1571759090.2422638, 1571759090.2461634, 1571759090.2500632, 1571759090.253963, 1571759090.2578626, 1571759090.2617624, 1571759090.265662, 1571759090.2695618, 1571759090.2734616, 1571759090.2773612, 1571759090.281261, 1571759090.2851605, 1571759090.2890604, 1571759090.29296, 1571759090.2968597, 1571759090.3007596, 1571759090.3046591, 1571759090.308559, 1571759090.3124585, 1571759090.3163583, 1571759090.320258, 1571759090.3241577, 1571759090.3280575, 1571759090.331957, 1571759090.335857, 1571759090.3397565, 1571759090.3436563, 1571759090.347556, 1571759090.3514557, 1571759090.3553555, 1571759090.359255, 1571759090.363155, 1571759090.3670545, 1571759090.3709543, 1571759090.374854, 1571759090.3787537, 1571759090.3826535, 1571759090.386553, 1571759090.3904529, 1571759090.3943527, 1571759090.3982522, 1571759090.402152, 1571759090.4060516, 1571759090.4099514, 1571759090.413851, 1571759090.4177508, 1571759090.4216506, 1571759090.4255502, 1571759090.42945, 1571759090.4333496, 1571759090.4372494, 1571759090.441149, 1571759090.4450488, 1571759090.4489486, 1571759090.4528482, 1571759090.456748, 1571759090.4606476, 1571759090.4645474, 1571759090.4684472, 1571759090.4723468, 1571759090.4762466, 1571759090.4801462, 1571759090.484046, 1571759090.4879456, 1571759090.4918454, 1571759090.4957452, 1571759090.4996448, 1571759090.5035446, 1571759090.5074441, 1571759090.511344, 1571759090.5152435, 1571759090.5191433, 1571759090.5230432, 1571759090.5269427, 1571759090.5308425, 1571759090.534742, 1571759090.538642, 1571759090.5425417, 1571759090.5464413, 1571759090.5503411, 1571759090.5542407, 1571759090.5581405, 1571759090.56204, 1571759090.56594, 1571759090.5698397, 1571759090.5737393, 1571759090.577639, 1571759090.5815387, 1571759090.5854385, 1571759090.5893383, 1571759090.5932379, 1571759090.5971377, 1571759090.6010373, 1571759090.604937, 1571759090.6088367, 1571759090.6127365, 1571759090.6166363, 1571759090.6205359, 1571759090.6244357, 1571759090.6283352, 1571759090.632235, 1571759090.6361346, 1571759090.6400344, 1571759090.6439342, 1571759090.6478338, 1571759090.6517336, 1571759090.6556332, 1571759090.659533, 1571759090.6634328, 1571759090.6673324, 1571759090.6712322, 1571759090.6751318, 1571759090.6790316, 1571759090.6829312, 1571759090.686831, 1571759090.6907308, 1571759090.6946304, 1571759090.6985302, 1571759090.7024298, 1571759090.7063296, 1571759090.7102292, 1571759090.714129, 1571759090.7180288, 1571759090.7219284, 1571759090.7258282, 1571759090.7297277, 1571759090.7336276, 1571759090.7375274, 1571759090.741427, 1571759090.7453268, 1571759090.7492263, 1571759090.7531261, 1571759090.7570257, 1571759090.7609255, 1571759090.7648253, 1571759090.768725, 1571759090.7726247, 1571759090.7765243, 1571759090.780424, 1571759090.7843237, 1571759090.7882235, 1571759090.7921233, 1571759090.796023, 1571759090.7999227, 1571759090.8038223, 1571759090.807722, 1571759090.811622, 1571759090.8155215, 1571759090.8194213, 1571759090.8233209, 1571759090.8272207, 1571759090.8311203, 1571759090.83502, 1571759090.8389199, 1571759090.8428195, 1571759090.8467193, 1571759090.8506188, 1571759090.8545187, 1571759090.8584185, 1571759090.862318, 1571759090.8662179, 1571759090.8701174, 1571759090.8740172, 1571759090.8779168, 1571759090.8818166, 1571759090.8857164, 1571759090.889616, 1571759090.8935158, 1571759090.8974154, 1571759090.9013152, 1571759090.9052148, 1571759090.9091146, 1571759090.9130144, 1571759090.916914, 1571759090.9208138, 1571759090.9247134, 1571759090.9286132, 1571759090.932513, 1571759090.9364126, 1571759090.9403124, 1571759090.944212, 1571759090.9481118, 1571759090.9520113, 1571759090.9559112, 1571759090.959811, 1571759090.9637105, 1571759090.9676104, 1571759090.97151, 1571759090.9754097, 1571759090.9793093, 1571759090.9832091, 1571759090.987109, 1571759090.9910085, 1571759090.9949083, 1571759090.998808, 1571759091.0027077, 1571759091.0066075, 1571759091.010507, 1571759091.014407, 1571759091.0183065, 1571759091.0222063, 1571759091.0261059, 1571759091.0300057, 1571759091.0339055, 1571759091.037805, 1571759091.041705, 1571759091.0456045, 1571759091.0495043, 1571759091.0534039, 1571759091.0573037, 1571759091.0612035, 1571759091.065103, 1571759091.0690029, 1571759091.0729024, 1571759091.0768023, 1571759091.080702, 1571759091.0846016, 1571759091.0885015, 1571759091.092401, 1571759091.0963008, 1571759091.1002004, 1571759091.1041002, 1571759091.108, 1571759091.1118996, 1571759091.1157994, 1571759091.119699, 1571759091.1235988, 1571759091.1274986, 1571759091.1313982, 1571759091.135298, 1571759091.1391976, 1571759091.1430974, 1571759091.146997, 1571759091.1508968, 1571759091.1547966, 1571759091.1586962, 1571759091.162596, 1571759091.1664956, 1571759091.1703954, 1571759091.174295, 1571759091.1781948, 1571759091.1820946, 1571759091.1859941, 1571759091.189894, 1571759091.1937935, 1571759091.1976933, 1571759091.2015932, 1571759091.2054927, 1571759091.2093925, 1571759091.2132921, 1571759091.217192, 1571759091.2210915, 1571759091.2249913, 1571759091.2288911, 1571759091.2327907, 1571759091.2366905, 1571759091.24059, 1571759091.24449, 1571759091.2483895, 1571759091.2522893, 1571759091.256189, 1571759091.2600887, 1571759091.2639885, 1571759091.267888, 1571759091.271788, 1571759091.2756877, 1571759091.2795873, 1571759091.283487, 1571759091.2873867, 1571759091.2912865, 1571759091.295186, 1571759091.2990859, 1571759091.3029857, 1571759091.3068852, 1571759091.310785, 1571759091.3146846, 1571759091.3185844, 1571759091.3224843, 1571759091.3263838, 1571759091.3302836, 1571759091.3341832, 1571759091.338083, 1571759091.3419826, 1571759091.3458824, 1571759091.3497822, 1571759091.3536818, 1571759091.3575816, 1571759091.3614812, 1571759091.365381, 1571759091.3692806, 1571759091.3731804, 1571759091.3770802, 1571759091.3809798, 1571759091.3848796, 1571759091.3887792, 1571759091.392679, 1571759091.3965788, 1571759091.4004784, 1571759091.4043782, 1571759091.4082778, 1571759091.4121776, 1571759091.4160771, 1571759091.419977], "samples": [[1918.5257568359375, 1388.82275390625, 2875.69384765625, 3105.877197265625], [1918.5257568359375, 1388.82275390625, 2875.69384765625, 3105.877197265625], [1918.5257568359375, 1388.82275390625, 2875.69384765625, 3105.877197265625], [1918.5257568359375, 1388.82275390625, 2875.69384765625, 3105.877197265625], [1918.5257568359375, 1388.82275390625, 2875.69384765625, 3105.877197265625], [1918.5257568359375, 1388.82275390625, 2875.69384765625, 3105.877197265625], [1918.5257568359375, 1388.82275390625, 2875.69384765625, 3105.877197265625], [1918.5257568359375, 1388.82275390625, 2875.69384765625, 3105.877197265625], [1918.5257568359375, 1388.82275390625, 2875.69384765625, 3105.877197265625], [1918.5257568359375, 1388.82275390625, 2875.69384765625, 3105.877197265625], [1918.5257568359375, 1388.82275390625, 2875.69384765625, 3105.877197265625], [1918.5257568359375, 1388.82275390625, 2875.69384765625, 3105.877197265625], [1918.5257568359375, 1388.82275390625, 2875.69384765625, 3105.877197265625], [1918.5257568359375, 1388.82275390625, 2875.69384765625, 3105.877197265625], [1918.5257568359375, 1388.82275390625, 2875.69384765625, 3105.877197265625], [1918.5257568359375, 1388.82275390625, 2875.69384765625, 3105.877197265625], [1918.5257568359375, 1388.82275390625, 2875.69384765625, 3105.877197265625], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1869.022705078125, 1357.3861083984375, 2830.23681640625, 3212.7607421875], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1896.661376953125, 1295.493408203125, 2750.58056640625, 3237.9765625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1826.4114990234375, 1294.65283203125, 2709.0107421875, 3279.187744140625], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1728.1258544921875, 1287.8419189453125, 2645.525146484375, 3221.361083984375], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1715.3096923828125, 1277.454345703125, 2598.708740234375, 3160.031494140625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1703.6036376953125, 1277.011962890625, 2631.266845703125, 3159.508056640625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1643.31396484375, 1255.12109375, 2649.93212890625, 2981.01416015625], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1669.445068359375, 1236.4249267578125, 2639.848876953125, 2945.178466796875], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1685.919189453125, 1272.2509765625, 2651.360595703125, 2924.937744140625], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1720.2554931640625, 1278.912109375, 2654.595703125, 2857.671875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1704.3134765625, 1275.489013671875, 2619.466552734375, 2651.78466796875], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1702.4637451171875, 1291.9788818359375, 2648.35009765625, 2557.34814453125], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1706.819580078125, 1315.8538818359375, 2616.98095703125, 2518.498291015625], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1777.2564697265625, 1334.4671630859375, 2595.765869140625, 2433.111328125], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1824.07666015625, 1325.0423583984375, 2562.322021484375, 2381.445068359375], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1762.8851318359375, 1310.026123046875, 2538.934814453125, 2289.129150390625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1745.6920166015625, 1295.129638671875, 2505.61767578125, 2251.8291015625], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1744.1175537109375, 1282.8743896484375, 2487.8408203125, 2113.89111328125], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1729.267333984375, 1251.9705810546875, 2435.037353515625, 2104.156494140625], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1768.5914306640625, 1192.0594482421875, 2374.91455078125, 2062.53125], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1825.5989990234375, 1153.5206298828125, 2341.0009765625, 2059.69482421875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1804.825439453125, 1132.1611328125, 2262.2607421875, 2037.30810546875], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1758.931396484375, 1100.755859375, 2227.6513671875, 1969.8018798828125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1727.4356689453125, 1085.66943359375, 2184.874267578125, 1967.5968017578125], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1709.537353515625, 1121.81640625, 2200.36962890625, 1998.9713134765625], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1765.135009765625, 1150.329833984375, 2194.90478515625, 1977.2755126953125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1774.9224853515625, 1162.180908203125, 2202.713623046875, 1929.3194580078125], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1825.6021728515625, 1183.7032470703125, 2208.64013671875, 1961.662353515625], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1856.8277587890625, 1200.9166259765625, 2205.29541015625, 1899.12841796875], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1802.0902099609375, 1232.1572265625, 2215.221435546875, 1908.9320068359375], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1817.4354248046875, 1238.250244140625, 2201.490478515625, 1888.9010009765625], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1837.5787353515625, 1224.067626953125, 2167.819091796875, 1911.3553466796875], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1853.177001953125, 1244.8837890625, 2167.88330078125, 1853.75390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1895.3470458984375, 1336.6494140625, 2178.510009765625, 1845.269775390625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1872.5421142578125, 1338.0274658203125, 2147.888427734375, 1788.689697265625], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1853.265625, 1283.96923828125, 2139.930419921875, 1759.2821044921875], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1869.7437744140625, 1281.62255859375, 2154.498291015625, 1816.601318359375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1883.9378662109375, 1261.577392578125, 2123.376220703125, 1775.2904052734375], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1925.11767578125, 1209.1500244140625, 2061.52392578125, 1728.715087890625], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1922.734130859375, 1134.5347900390625, 1988.9718017578125, 1717.8670654296875], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [1823.3592529296875, 1099.945556640625, 1927.4268798828125, 1706.6328125], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2024.3778076171875, 1089.572021484375, 1870.0721435546875, 1915.7523193359375], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2214.521240234375, 1074.065673828125, 1861.384521484375, 2126.448486328125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2162.297607421875, 1026.9503173828125, 1858.03271484375, 2077.128173828125], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2188.95947265625, 994.5486450195312, 1836.2193603515625, 2050.917724609375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2147.488037109375, 985.314453125, 1828.359375, 2016.8740234375], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2040.488037109375, 989.5005493164062, 1819.2568359375, 1969.086181640625], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2050.632568359375, 969.5953369140625, 1790.6070556640625, 1922.772216796875], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2129.70947265625, 969.8225708007812, 1783.921630859375, 2039.267333984375], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2055.915771484375, 965.6304321289062, 1775.7664794921875, 2052.314697265625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [2077.20166015625, 946.5277709960938, 1750.402587890625, 2008.2496337890625], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1881.1717529296875, 926.2577514648438, 1730.1910400390625, 1751.2647705078125], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1793.0465087890625, 927.4861450195312, 1718.3115234375, 1733.374755859375], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1880.55908203125, 928.9348754882812, 1677.732666015625, 1778.2999267578125], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1873.12744140625, 909.7591552734375, 1671.702392578125, 1809.4842529296875], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1906.5040283203125, 909.9535522460938, 1665.1094970703125, 1785.650634765625], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1957.985595703125, 893.9531860351562, 1629.409912109375, 1751.1563720703125], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1951.048095703125, 884.7964477539062, 1622.52978515625, 1748.6873779296875], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1873.0472412109375, 868.4244995117188, 1607.3397216796875, 1603.4010009765625], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1909.2437744140625, 864.2042846679688, 1566.5654296875, 1548.21875], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1890.887451171875, 879.7310180664062, 1553.7911376953125, 1523.5472412109375], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1871.7679443359375, 893.6083374023438, 1567.800048828125, 1491.146728515625], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1866.4918212890625, 891.5230712890625, 1546.138427734375, 1485.75732421875], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1818.8028564453125, 868.041015625, 1536.791015625, 1450.624755859375], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1822.2615966796875, 874.223876953125, 1533.083251953125, 1441.2906494140625], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1804.06298828125, 858.8981323242188, 1507.5440673828125, 1398.499755859375], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1872.8297119140625, 833.9935913085938, 1491.9385986328125, 1467.50341796875], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1973.5701904296875, 820.9544067382812, 1515.517578125, 1728.9010009765625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [1942.618408203125, 816.6434936523438, 1498.2694091796875, 1806.9049072265625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2019.5540771484375, 836.0145263671875, 1466.03955078125, 1828.53759765625], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [2037.2691650390625, 836.6340942382812, 1434.7178955078125, 1900.3822021484375], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1985.346435546875, 779.4885864257812, 1394.58642578125, 1957.5225830078125], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1885.5477294921875, 747.9677734375, 1293.15625, 1823.987060546875], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1856.3385009765625, 741.003662109375, 1247.1551513671875, 1882.8297119140625], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1840.389404296875, 709.5223999023438, 1213.80712890625, 1979.46142578125], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1825.874755859375, 681.4210205078125, 1177.246826171875, 2086.716552734375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1746.55859375, 646.973388671875, 1139.72314453125, 2104.74755859375], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1663.7330322265625, 617.8598022460938, 1078.970703125, 2055.466064453125], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1622.36962890625, 597.740234375, 1035.1661376953125, 2043.2373046875], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1619.5830078125, 570.813232421875, 1013.2422485351562, 2071.1298828125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1596.442626953125, 548.6499633789062, 986.8724365234375, 2057.11376953125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1641.5562744140625, 542.7506103515625, 956.8960571289062, 2003.0675048828125], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1590.92529296875, 535.1407470703125, 937.728271484375, 1878.68359375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1506.33251953125, 515.502197265625, 931.6355590820312, 1763.48974609375], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1440.025146484375, 500.5296325683594, 898.4503173828125, 1545.982421875], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1416.3800048828125, 490.99639892578125, 881.1555786132812, 1418.7298583984375], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1352.129150390625, 485.45892333984375, 880.2711181640625, 1303.7528076171875], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1292.6417236328125, 470.7934265136719, 848.0025634765625, 1204.2764892578125], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1290.993408203125, 467.8261413574219, 826.9581298828125, 1104.3031005859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1224.469482421875, 467.5148010253906, 814.3809814453125, 1047.7171630859375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1157.2255859375, 457.16864013671875, 793.4144897460938, 990.2845458984375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1110.9552001953125, 456.4742431640625, 780.7156982421875, 958.771240234375], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1155.2723388671875, 461.44708251953125, 784.5154418945312, 1002.2242431640625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1149.7957763671875, 449.31396484375, 770.216064453125, 990.051025390625], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1144.2093505859375, 447.26727294921875, 760.5682983398438, 1004.5560302734375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1122.0096435546875, 449.0045166015625, 754.2332763671875, 1009.0159912109375], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1130.3751220703125, 452.33416748046875, 732.5999145507812, 1032.1553955078125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1148.2764892578125, 446.3057861328125, 727.6466064453125, 1031.4415283203125], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1151.6004638671875, 441.6910400390625, 738.6239013671875, 1047.3258056640625], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1164.33349609375, 447.2229919433594, 746.7572631835938, 1074.58203125], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1237.7281494140625, 453.0316467285156, 748.00390625, 1089.435546875], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1307.61181640625, 466.1796875, 751.0261840820312, 1116.8956298828125], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1313.407958984375, 473.5364685058594, 750.8768920898438, 1131.7421875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1305.94091796875, 491.113037109375, 750.7900390625, 1166.377685546875], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1341.97021484375, 506.1009521484375, 766.2572021484375, 1259.91845703125], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1379.1402587890625, 508.5390930175781, 787.1248779296875, 1316.6859130859375], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1442.4884033203125, 495.2951965332031, 780.7589111328125, 1306.5831298828125], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1446.280029296875, 500.2770690917969, 790.74365234375, 1304.382568359375], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1427.552001953125, 502.99591064453125, 794.8892211914062, 1292.0640869140625], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1443.355224609375, 493.5781555175781, 789.2487182617188, 1233.427001953125], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1389.8321533203125, 507.9998474121094, 810.7001953125, 1202.234619140625], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1321.845703125, 518.3110961914062, 858.67724609375, 1158.665771484375], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1297.9803466796875, 523.8507080078125, 888.7381591796875, 1103.7548828125], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1324.3721923828125, 528.6104736328125, 901.01953125, 1033.3939208984375], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1268.8099365234375, 541.886962890625, 935.7525024414062, 957.9482421875], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.0928955078125, 550.0946655273438, 946.9421997070312, 883.8793334960938], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1239.03857421875, 569.7838745117188, 986.4014282226562, 870.87109375], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1221.6048583984375, 581.7936401367188, 1016.0401611328125, 867.861572265625], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1276.2244873046875, 597.9332885742188, 1023.4163818359375, 851.2901000976562], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1339.7630615234375, 598.5941162109375, 1032.3468017578125, 855.6495361328125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1330.6063232421875, 595.6092529296875, 1038.65478515625, 879.4112548828125], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1357.6275634765625, 582.03173828125, 1012.603759765625, 865.3041381835938], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1387.3582763671875, 579.2595825195312, 1007.2926635742188, 839.3067626953125], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1413.0758056640625, 592.2832641601562, 1004.3746337890625, 828.8283081054688], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1486.6668701171875, 600.4513549804688, 994.6375732421875, 803.4613037109375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1517.9576416015625, 598.6019897460938, 988.9447631835938, 788.48193359375], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1489.268798828125, 593.856689453125, 981.6636962890625, 799.6466674804688], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1470.5648193359375, 588.3809204101562, 958.31396484375, 798.8180541992188], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1442.26318359375, 571.7557373046875, 961.5122680664062, 816.4024658203125], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1377.43310546875, 575.6502685546875, 958.9973754882812, 798.0986938476562], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1409.2186279296875, 568.4852905273438, 938.0223999023438, 760.4722290039062], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1394.4249267578125, 563.85888671875, 927.6704711914062, 761.4552612304688], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1346.07666015625, 561.4340209960938, 924.9119873046875, 778.3158569335938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1279.6656494140625, 544.8889770507812, 908.8240356445312, 762.8051147460938], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1251.5423583984375, 531.6713256835938, 882.1262817382812, 739.9911499023438], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1228.23779296875, 527.1194458007812, 884.490478515625, 758.838134765625], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1236.6890869140625, 527.5337524414062, 906.4502563476562, 752.8379516601562], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1280.1748046875, 520.95947265625, 896.1464233398438, 732.169189453125], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1290.7977294921875, 522.1561889648438, 879.7806396484375, 731.3411254882812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1271.771728515625, 510.2181396484375, 854.8560180664062, 744.8372192382812], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1223.8104248046875, 504.0169982910156, 845.77099609375, 741.9512329101562], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1268.6885986328125, 492.7607421875, 844.2160034179688, 754.9758911132812], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1256.8245849609375, 487.9388122558594, 822.731201171875, 749.6259765625], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1303.0587158203125, 475.9240417480469, 805.2183837890625, 766.7403564453125], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1328.83154296875, 475.0314636230469, 810.8493041992188, 785.4583129882812], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1299.9810791015625, 483.64910888671875, 801.9749755859375, 794.541015625], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1264.9052734375, 473.28656005859375, 765.5311889648438, 807.3267211914062], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1248.16845703125, 466.9929504394531, 753.9302368164062, 807.6728515625], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1268.3011474609375, 464.2135925292969, 761.7444458007812, 829.4014282226562], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1311.8248291015625, 464.28448486328125, 757.6902465820312, 858.5740966796875], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1293.2901611328125, 459.2266540527344, 738.183349609375, 883.5821533203125], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1262.1549072265625, 461.7797546386719, 769.4965209960938, 882.2809448242188], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1239.8189697265625, 454.84130859375, 791.2998657226562, 879.681884765625], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1264.2728271484375, 451.5040283203125, 785.0196533203125, 887.1063232421875], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1210.2310791015625, 444.5275573730469, 769.2144165039062, 906.2369384765625], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1191.324951171875, 437.9223327636719, 762.3582763671875, 906.8773193359375], [1209.0723876953125, 436.6611633300781, 762.6574096679688, 899.8626098632812], [1209.0723876953125, 436.6611633300781, 762.6574096679688, 899.8626098632812], [1209.0723876953125, 436.6611633300781, 762.6574096679688, 899.8626098632812], [1209.0723876953125, 436.6611633300781, 762.6574096679688, 899.8626098632812], [1209.0723876953125, 436.6611633300781, 762.6574096679688, 899.8626098632812], [1209.0723876953125, 436.6611633300781, 762.6574096679688, 899.8626098632812], [1209.0723876953125, 436.6611633300781, 762.6574096679688, 899.8626098632812], [1209.0723876953125, 436.6611633300781, 762.6574096679688, 899.8626098632812], [1209.0723876953125, 436.6611633300781, 762.6574096679688, 899.8626098632812], [1209.0723876953125, 436.6611633300781, 762.6574096679688, 899.8626098632812], [1209.0723876953125, 436.6611633300781, 762.6574096679688, 899.8626098632812], [1209.0723876953125, 436.6611633300781, 762.6574096679688, 899.8626098632812], [1209.0723876953125, 436.6611633300781, 762.6574096679688, 899.8626098632812], [1209.0723876953125, 436.6611633300781, 762.6574096679688, 899.8626098632812], [1209.0723876953125, 436.6611633300781, 762.6574096679688, 899.8626098632812], [1209.0723876953125, 436.6611633300781, 762.6574096679688, 899.8626098632812], [1209.0723876953125, 436.6611633300781, 762.6574096679688, 899.8626098632812], [1209.0723876953125, 436.6611633300781, 762.6574096679688, 899.8626098632812], [1209.0723876953125, 436.6611633300781, 762.6574096679688, 899.8626098632812]], "channel_names": ["ch1", "ch2", "ch3", "ch4"]}, "variance_notch_filtered_eeg": {"name": "variance_notch_filtered_eeg", "fs": 256.4289893471805, "emp_fs": 256.4289893471805, "timestamps": [1571759075.4662616, 1571759075.4701614, 1571759075.474061, 1571759075.4779608, 1571759075.4818604, 1571759075.4857602, 1571759075.48966, 1571759075.4935596, 1571759075.4974594, 1571759075.501359, 1571759075.5052588, 1571759075.5091584, 1571759075.5130582, 1571759075.516958, 1571759075.5208576, 1571759075.5247574, 1571759075.528657, 1571759075.5325568, 1571759075.5364566, 1571759075.5403562, 1571759075.544256, 1571759075.5481555, 1571759075.5520554, 1571759075.5559552, 1571759075.5598547, 1571759075.5637546, 1571759075.5676541, 1571759075.571554, 1571759075.5754538, 1571759075.5793533, 1571759075.5832531, 1571759075.5871527, 1571759075.5910525, 1571759075.594952, 1571759075.598852, 1571759075.6027517, 1571759075.6066513, 1571759075.610551, 1571759075.6144507, 1571759075.6183505, 1571759075.6222503, 1571759075.62615, 1571759075.6300497, 1571759075.6339493, 1571759075.637849, 1571759075.641749, 1571759075.6456485, 1571759075.6495483, 1571759075.6534479, 1571759075.6573477, 1571759075.6612475, 1571759075.665147, 1571759075.6690469, 1571759075.6729465, 1571759075.6768463, 1571759075.6807458, 1571759075.6846457, 1571759075.6885455, 1571759075.692445, 1571759075.6963449, 1571759075.7002444, 1571759075.7041442, 1571759075.708044, 1571759075.7119436, 1571759075.7158434, 1571759075.719743, 1571759075.7236428, 1571759075.7275426, 1571759075.7314422, 1571759075.735342, 1571759075.7392416, 1571759075.7431414, 1571759075.7470412, 1571759075.7509408, 1571759075.7548406, 1571759075.7587402, 1571759075.76264, 1571759075.7665396, 1571759075.7704394, 1571759075.7743392, 1571759075.7782388, 1571759075.7821386, 1571759075.7860382, 1571759075.789938, 1571759075.7938378, 1571759075.7977374, 1571759075.8016372, 1571759075.8055367, 1571759075.8094366, 1571759075.8133364, 1571759075.817236, 1571759075.8211358, 1571759075.8250353, 1571759075.8289351, 1571759075.832835, 1571759075.8367345, 1571759075.8406343, 1571759075.844534, 1571759075.8484337, 1571759075.8523333, 1571759075.8562331, 1571759075.860133, 1571759075.8640325, 1571759075.8679323, 1571759075.871832, 1571759075.8757317, 1571759075.8796315, 1571759075.883531, 1571759075.887431, 1571759075.8913305, 1571759075.8952303, 1571759075.89913, 1571759075.9030297, 1571759075.9069295, 1571759075.910829, 1571759075.9147289, 1571759075.9186287, 1571759075.9225283, 1571759075.926428, 1571759075.9303277, 1571759075.9342275, 1571759075.938127, 1571759075.9420269, 1571759075.9459267, 1571759075.9498262, 1571759075.953726, 1571759075.9576256, 1571759075.9615254, 1571759075.9654253, 1571759075.9693248, 1571759075.9732246, 1571759075.9771242, 1571759075.981024, 1571759075.9849238, 1571759075.9888234, 1571759075.9927232, 1571759075.9966228, 1571759076.0005226, 1571759076.0044222, 1571759076.008322, 1571759076.0122218, 1571759076.0161214, 1571759076.0200212, 1571759076.0239208, 1571759076.0278206, 1571759076.0317204, 1571759076.03562, 1571759076.0395198, 1571759076.0434194, 1571759076.0473192, 1571759076.051219, 1571759076.0551186, 1571759076.0590184, 1571759076.062918, 1571759076.0668178, 1571759076.0707176, 1571759076.0746171, 1571759076.078517, 1571759076.0824165, 1571759076.0863163, 1571759076.090216, 1571759076.0941157, 1571759076.0980155, 1571759076.1019151, 1571759076.105815, 1571759076.1097145, 1571759076.1136143, 1571759076.1175141, 1571759076.1214137, 1571759076.1253135, 1571759076.129213, 1571759076.133113, 1571759076.1370127, 1571759076.1409123, 1571759076.144812, 1571759076.1487117, 1571759076.1526115, 1571759076.1565113, 1571759076.160411, 1571759076.1643107, 1571759076.1682103, 1571759076.17211, 1571759076.1760097, 1571759076.1799095, 1571759076.1838093, 1571759076.1877089, 1571759076.1916087, 1571759076.1955082, 1571759076.199408, 1571759076.2033079, 1571759076.2072074, 1571759076.2111073, 1571759076.2150068, 1571759076.2189066, 1571759076.2228065, 1571759076.226706, 1571759076.2306058, 1571759076.2345054, 1571759076.2384052, 1571759076.242305, 1571759076.2462046, 1571759076.2501044, 1571759076.254004, 1571759076.2579038, 1571759076.2618034, 1571759076.2657032, 1571759076.269603, 1571759076.2735026, 1571759076.2774024, 1571759076.281302, 1571759076.2852018, 1571759076.2891016, 1571759076.2930012, 1571759076.296901, 1571759076.3008006, 1571759076.3047004, 1571759076.3086002, 1571759076.3124998, 1571759076.3163996, 1571759076.3202991, 1571759076.324199, 1571759076.3280988, 1571759076.3319983, 1571759076.3358982, 1571759076.3397977, 1571759076.3436975, 1571759076.3475971, 1571759076.351497, 1571759076.3553967, 1571759076.3592963, 1571759076.3631961, 1571759076.3670957, 1571759076.3709955, 1571759076.3748953, 1571759076.378795, 1571759076.3826947, 1571759076.3865943, 1571759076.390494, 1571759076.394394, 1571759076.3982935, 1571759076.4021933, 1571759076.406093, 1571759076.4099927, 1571759076.4138925, 1571759076.417792, 1571759076.421692, 1571759076.4255915, 1571759076.4294913, 1571759076.4333909, 1571759076.4372907, 1571759076.4411905, 1571759076.44509, 1571759076.4489899, 1571759076.4528894, 1571759076.4567893, 1571759076.460689, 1571759076.4645886, 1571759076.4684885, 1571759076.472388, 1571759076.4762878, 1571759076.4801877, 1571759076.4840872, 1571759076.487987, 1571759076.4918866, 1571759076.4957864, 1571759076.499686, 1571759076.5035858, 1571759076.5074856, 1571759076.5113852, 1571759076.515285, 1571759076.5191846, 1571759076.5230844, 1571759076.5269842, 1571759076.5308838, 1571759076.5347836, 1571759076.5386832, 1571759076.542583, 1571759076.5464828, 1571759076.5503824, 1571759076.5542822, 1571759076.5581818, 1571759076.5620816, 1571759076.5659814, 1571759076.569881, 1571759076.5737808, 1571759076.5776803, 1571759076.5815802, 1571759076.5854797, 1571759076.5893795, 1571759076.5932794, 1571759076.597179, 1571759076.6010787, 1571759076.6049783, 1571759076.6088781, 1571759076.612778, 1571759076.6166775, 1571759076.6205773, 1571759076.624477, 1571759076.6283767, 1571759076.6322765, 1571759076.636176, 1571759076.640076, 1571759076.6439755, 1571759076.6478753, 1571759076.6517751, 1571759076.6556747, 1571759076.6595745, 1571759076.663474, 1571759076.667374, 1571759076.6712735, 1571759076.6751733, 1571759076.679073, 1571759076.6829727, 1571759076.6868725, 1571759076.690772, 1571759076.6946719, 1571759076.6985717, 1571759076.7024713, 1571759076.706371, 1571759076.7102706, 1571759076.7141705, 1571759076.7180703, 1571759076.7219698, 1571759076.7258697, 1571759076.7297692, 1571759076.733669, 1571759076.7375689, 1571759076.7414684, 1571759076.7453682, 1571759076.7492678, 1571759076.7531676, 1571759076.7570672, 1571759076.760967, 1571759076.7648668, 1571759076.7687664, 1571759076.7726662, 1571759076.7765658, 1571759076.7804656, 1571759076.7843654, 1571759076.788265, 1571759076.7921648, 1571759076.7960644, 1571759076.7999642, 1571759076.803864, 1571759076.8077636, 1571759076.8116634, 1571759076.815563, 1571759076.8194628, 1571759076.8233626, 1571759076.8272622, 1571759076.831162, 1571759076.8350616, 1571759076.8389614, 1571759076.842861, 1571759076.8467607, 1571759076.8506606, 1571759076.8545601, 1571759076.85846, 1571759076.8623595, 1571759076.8662593, 1571759076.8701591, 1571759076.8740587, 1571759076.8779585, 1571759076.881858, 1571759076.885758, 1571759076.8896577, 1571759076.8935573, 1571759076.8974571, 1571759076.9013567, 1571759076.9052565, 1571759076.9091563, 1571759076.913056, 1571759076.9169557, 1571759076.9208553, 1571759076.924755, 1571759076.9286547, 1571759076.9325545, 1571759076.9364543, 1571759076.9403539, 1571759076.9442537, 1571759076.9481533, 1571759076.952053, 1571759076.955953, 1571759076.9598525, 1571759076.9637523, 1571759076.9676518, 1571759076.9715517, 1571759076.9754515, 1571759076.979351, 1571759076.9832509, 1571759076.9871504, 1571759076.9910502, 1571759076.99495, 1571759076.9988496, 1571759077.0027494, 1571759077.006649, 1571759077.0105488, 1571759077.0144484, 1571759077.0183482, 1571759077.022248, 1571759077.0261476, 1571759077.0300474, 1571759077.033947, 1571759077.0378468, 1571759077.0417466, 1571759077.0456462, 1571759077.049546, 1571759077.0534456, 1571759077.0573454, 1571759077.0612452, 1571759077.0651448, 1571759077.0690446, 1571759077.0729442, 1571759077.076844, 1571759077.0807436, 1571759077.0846434, 1571759077.0885432, 1571759077.0924428, 1571759077.0963426, 1571759077.1002421, 1571759077.104142, 1571759077.1080418, 1571759077.1119413, 1571759077.1158412, 1571759077.1197407, 1571759077.1236405, 1571759077.1275403, 1571759077.13144, 1571759077.1353397, 1571759077.1392393, 1571759077.1431391, 1571759077.147039, 1571759077.1509385, 1571759077.1548383, 1571759077.158738, 1571759077.1626377, 1571759077.1665373, 1571759077.170437, 1571759077.174337, 1571759077.1782365, 1571759077.1821363, 1571759077.1860359, 1571759077.1899357, 1571759077.1938355, 1571759077.197735, 1571759077.201635, 1571759077.2055345, 1571759077.2094343, 1571759077.213334, 1571759077.2172337, 1571759077.2211335, 1571759077.225033, 1571759077.2289329, 1571759077.2328327, 1571759077.2367322, 1571759077.240632, 1571759077.2445316, 1571759077.2484314, 1571759077.252331, 1571759077.2562308, 1571759077.2601306, 1571759077.2640302, 1571759077.26793, 1571759077.2718296, 1571759077.2757294, 1571759077.2796292, 1571759077.2835288, 1571759077.2874286, 1571759077.2913282, 1571759077.295228, 1571759077.2991278, 1571759077.3030274, 1571759077.3069272, 1571759077.3108268, 1571759077.3147266, 1571759077.3186264, 1571759077.322526, 1571759077.3264258, 1571759077.3303254, 1571759077.3342252, 1571759077.3381248, 1571759077.3420246, 1571759077.3459244, 1571759077.349824, 1571759077.3537238, 1571759077.3576233, 1571759077.3615232, 1571759077.365423, 1571759077.3693225, 1571759077.3732224, 1571759077.377122, 1571759077.3810217, 1571759077.3849216, 1571759077.3888211, 1571759077.392721, 1571759077.3966205, 1571759077.4005203, 1571759077.4044201, 1571759077.4083197, 1571759077.4122195, 1571759077.416119, 1571759077.420019, 1571759077.4239185, 1571759077.4278183, 1571759077.431718, 1571759077.4356177, 1571759077.4395175, 1571759077.443417, 1571759077.447317, 1571759077.4512167, 1571759077.4551163, 1571759077.459016, 1571759077.4629157, 1571759077.4668155, 1571759077.4707153, 1571759077.4746149, 1571759077.4785147, 1571759077.4824142, 1571759077.486314, 1571759077.4902139, 1571759077.4941134, 1571759077.4980133, 1571759077.5019128, 1571759077.5058126, 1571759077.5097122, 1571759077.513612, 1571759077.5175118, 1571759077.5214114, 1571759077.5253112, 1571759077.5292108, 1571759077.5331106, 1571759077.5370104, 1571759077.54091, 1571759077.5448098, 1571759077.5487094, 1571759077.5526092, 1571759077.556509, 1571759077.5604086, 1571759077.5643084, 1571759077.568208, 1571759077.5721078, 1571759077.5760074, 1571759077.5799072, 1571759077.583807, 1571759077.5877066, 1571759077.5916064, 1571759077.595506, 1571759077.5994058, 1571759077.6033056, 1571759077.6072052, 1571759077.611105, 1571759077.6150045, 1571759077.6189044, 1571759077.6228042, 1571759077.6267037, 1571759077.6306036, 1571759077.6345031, 1571759077.638403, 1571759077.6423028, 1571759077.6462023, 1571759077.6501021, 1571759077.6540017, 1571759077.6579015, 1571759077.661801, 1571759077.665701, 1571759077.6696007, 1571759077.6735003, 1571759077.6774, 1571759077.6812997, 1571759077.6851995, 1571759077.6890993, 1571759077.692999, 1571759077.6968987, 1571759077.7007983, 1571759077.704698, 1571759077.708598, 1571759077.7124975, 1571759077.7163973, 1571759077.7202969, 1571759077.7241967, 1571759077.7280965, 1571759077.731996, 1571759077.7358959, 1571759077.7397954, 1571759077.7436953, 1571759077.7475948, 1571759077.7514946, 1571759077.7553945, 1571759077.759294, 1571759077.7631938, 1571759077.7670934, 1571759077.7709932, 1571759077.774893, 1571759077.7787926, 1571759077.7826924, 1571759077.786592, 1571759077.7904918, 1571759077.7943916, 1571759077.7982912, 1571759077.802191, 1571759077.8060906, 1571759077.8099904, 1571759077.8138902, 1571759077.8177898, 1571759077.8216896, 1571759077.8255892, 1571759077.829489, 1571759077.8333886, 1571759077.8372884, 1571759077.8411882, 1571759077.8450878, 1571759077.8489876, 1571759077.8528872, 1571759077.856787, 1571759077.8606868, 1571759077.8645864, 1571759077.8684862, 1571759077.8723857, 1571759077.8762856, 1571759077.8801854, 1571759077.884085, 1571759077.8879848, 1571759077.8918843, 1571759077.8957841, 1571759077.899684, 1571759077.9035835, 1571759077.9074833, 1571759077.911383, 1571759077.9152827, 1571759077.9191823, 1571759077.923082, 1571759077.926982, 1571759077.9308815, 1571759077.9347813, 1571759077.938681, 1571759077.9425807, 1571759077.9464805, 1571759077.95038, 1571759077.95428, 1571759077.9581795, 1571759077.9620793, 1571759077.965979, 1571759077.9698787, 1571759077.9737785, 1571759077.977678, 1571759077.9815779, 1571759077.9854777, 1571759077.9893773, 1571759077.993277, 1571759077.9971766, 1571759078.0010765, 1571759078.004976, 1571759078.0088758, 1571759078.0127757, 1571759078.0166752, 1571759078.020575, 1571759078.0244746, 1571759078.0283744, 1571759078.0322742, 1571759078.0361738, 1571759078.0400736, 1571759078.0439732, 1571759078.047873, 1571759078.0517728, 1571759078.0556724, 1571759078.0595722, 1571759078.0634718, 1571759078.0673716, 1571759078.0712712, 1571759078.075171, 1571759078.0790708, 1571759078.0829704, 1571759078.0868702, 1571759078.0907698, 1571759078.0946696, 1571759078.0985694, 1571759078.102469, 1571759078.1063688, 1571759078.1102684, 1571759078.1141682, 1571759078.118068, 1571759078.1219676, 1571759078.1258674, 1571759078.129767, 1571759078.1336668, 1571759078.1375666, 1571759078.1414661, 1571759078.145366, 1571759078.1492655, 1571759078.1531653, 1571759078.157065, 1571759078.1609647, 1571759078.1648645, 1571759078.168764, 1571759078.172664, 1571759078.1765635, 1571759078.1804633, 1571759078.1843631, 1571759078.1882627, 1571759078.1921625, 1571759078.196062, 1571759078.199962, 1571759078.2038617, 1571759078.2077613, 1571759078.211661, 1571759078.2155607, 1571759078.2194605, 1571759078.2233603, 1571759078.2272599, 1571759078.2311597, 1571759078.2350593, 1571759078.238959, 1571759078.2428586, 1571759078.2467585, 1571759078.2506583, 1571759078.2545578, 1571759078.2584577, 1571759078.2623572, 1571759078.266257, 1571759078.2701569, 1571759078.2740564, 1571759078.2779562, 1571759078.2818558, 1571759078.2857556, 1571759078.2896554, 1571759078.293555, 1571759078.2974548, 1571759078.3013544, 1571759078.3052542, 1571759078.309154, 1571759078.3130536, 1571759078.3169534, 1571759078.320853, 1571759078.3247528, 1571759078.3286524, 1571759078.3325522, 1571759078.336452, 1571759078.3403516, 1571759078.3442514, 1571759078.348151, 1571759078.3520508, 1571759078.3559506, 1571759078.3598502, 1571759078.36375, 1571759078.3676496, 1571759078.3715494, 1571759078.3754492, 1571759078.3793488, 1571759078.3832486, 1571759078.3871481, 1571759078.391048, 1571759078.3949478, 1571759078.3988473, 1571759078.4027472, 1571759078.4066467, 1571759078.4105465, 1571759078.414446, 1571759078.418346, 1571759078.4222457, 1571759078.4261453, 1571759078.4300451, 1571759078.4339447, 1571759078.4378445, 1571759078.4417443, 1571759078.445644, 1571759078.4495437, 1571759078.4534433, 1571759078.457343, 1571759078.461243, 1571759078.4651425, 1571759078.4690423, 1571759078.4729419, 1571759078.4768417, 1571759078.4807415, 1571759078.484641, 1571759078.488541, 1571759078.4924405, 1571759078.4963403, 1571759078.5002398, 1571759078.5041397, 1571759078.5080395, 1571759078.511939, 1571759078.5158389, 1571759078.5197384, 1571759078.5236382, 1571759078.527538, 1571759078.5314376, 1571759078.5353374, 1571759078.539237, 1571759078.5431368, 1571759078.5470366, 1571759078.5509362, 1571759078.554836, 1571759078.5587356, 1571759078.5626354, 1571759078.566535, 1571759078.5704348, 1571759078.5743346, 1571759078.5782342, 1571759078.582134, 1571759078.5860336, 1571759078.5899334, 1571759078.5938332, 1571759078.5977328, 1571759078.6016326, 1571759078.6055322, 1571759078.609432, 1571759078.6133318, 1571759078.6172314, 1571759078.6211312, 1571759078.6250308, 1571759078.6289306, 1571759078.6328304, 1571759078.63673, 1571759078.6406298, 1571759078.6445293, 1571759078.6484292, 1571759078.6523287, 1571759078.6562285, 1571759078.6601284, 1571759078.664028, 1571759078.6679277, 1571759078.6718273, 1571759078.6757271, 1571759078.679627, 1571759078.6835265, 1571759078.6874263, 1571759078.691326, 1571759078.6952257, 1571759078.6991255, 1571759078.703025, 1571759078.706925, 1571759078.7108245, 1571759078.7147243, 1571759078.718624, 1571759078.7225237, 1571759078.7264235, 1571759078.730323, 1571759078.734223, 1571759078.7381225, 1571759078.7420223, 1571759078.745922, 1571759078.7498217, 1571759078.7537215, 1571759078.757621, 1571759078.7615209, 1571759078.7654207, 1571759078.7693202, 1571759078.77322, 1571759078.7771196, 1571759078.7810194, 1571759078.7849193, 1571759078.7888188, 1571759078.7927186, 1571759078.7966182, 1571759078.800518, 1571759078.8044178, 1571759078.8083174, 1571759078.8122172, 1571759078.8161168, 1571759078.8200166, 1571759078.8239162, 1571759078.827816, 1571759078.8317158, 1571759078.8356154, 1571759078.8395152, 1571759078.8434148, 1571759078.8473146, 1571759078.8512144, 1571759078.855114, 1571759078.8590138, 1571759078.8629134, 1571759078.8668132, 1571759078.870713, 1571759078.8746126, 1571759078.8785124, 1571759078.882412, 1571759078.8863118, 1571759078.8902116, 1571759078.8941112, 1571759078.898011, 1571759078.9019105, 1571759078.9058104, 1571759078.90971, 1571759078.9136097, 1571759078.9175096, 1571759078.9214091, 1571759078.925309, 1571759078.9292085, 1571759078.9331083, 1571759078.9370081, 1571759078.9409077, 1571759078.9448075, 1571759078.948707, 1571759078.952607, 1571759078.9565067, 1571759078.9604063, 1571759078.964306, 1571759078.9682057, 1571759078.9721055, 1571759078.9760053, 1571759078.979905, 1571759078.9838047, 1571759078.9877043, 1571759078.991604, 1571759078.9955037, 1571759078.9994035, 1571759079.0033033, 1571759079.0072029, 1571759079.0111027, 1571759079.0150023, 1571759079.018902, 1571759079.0228019, 1571759079.0267015, 1571759079.0306013, 1571759079.0345008, 1571759079.0384007, 1571759079.0423005, 1571759079.0462, 1571759079.0500998, 1571759079.0539994, 1571759079.0578992, 1571759079.061799, 1571759079.0656986, 1571759079.0695984, 1571759079.073498, 1571759079.0773978, 1571759079.0812974, 1571759079.0851972, 1571759079.089097, 1571759079.0929966, 1571759079.0968964, 1571759079.100796, 1571759079.1046958, 1571759079.1085956, 1571759079.1124952, 1571759079.116395, 1571759079.1202946, 1571759079.1241944, 1571759079.1280942, 1571759079.1319938, 1571759079.1358936, 1571759079.1397932, 1571759079.143693, 1571759079.1475925, 1571759079.1514924, 1571759079.1553922, 1571759079.1592917, 1571759079.1631916, 1571759079.1670911, 1571759079.170991, 1571759079.1748908, 1571759079.1787903, 1571759079.1826901, 1571759079.1865897, 1571759079.1904895, 1571759079.1943893, 1571759079.198289, 1571759079.2021887, 1571759079.2060883, 1571759079.209988, 1571759079.213888, 1571759079.2177875, 1571759079.2216873, 1571759079.225587, 1571759079.2294867, 1571759079.2333863, 1571759079.237286, 1571759079.241186, 1571759079.2450855, 1571759079.2489853, 1571759079.2528849, 1571759079.2567847, 1571759079.2606845, 1571759079.264584, 1571759079.2684839, 1571759079.2723835, 1571759079.2762833, 1571759079.280183, 1571759079.2840827, 1571759079.2879825, 1571759079.291882, 1571759079.2957819, 1571759079.2996817, 1571759079.3035812, 1571759079.307481, 1571759079.3113806, 1571759079.3152804, 1571759079.31918, 1571759079.3230798, 1571759079.3269796, 1571759079.3308792, 1571759079.334779, 1571759079.3386786, 1571759079.3425784, 1571759079.3464782, 1571759079.3503778, 1571759079.3542776, 1571759079.3581772, 1571759079.362077, 1571759079.3659768, 1571759079.3698764, 1571759079.3737762, 1571759079.3776758, 1571759079.3815756, 1571759079.3854754, 1571759079.389375, 1571759079.3932748, 1571759079.3971744, 1571759079.4010742, 1571759079.4049737, 1571759079.4088736, 1571759079.4127734, 1571759079.416673, 1571759079.4205728, 1571759079.4244723, 1571759079.4283721, 1571759079.432272, 1571759079.4361715, 1571759079.4400713, 1571759079.443971, 1571759079.4478707, 1571759079.4517705, 1571759079.45567, 1571759079.45957, 1571759079.4634695, 1571759079.4673693, 1571759079.4712691, 1571759079.4751687, 1571759079.4790685, 1571759079.482968, 1571759079.486868, 1571759079.4907675, 1571759079.4946673, 1571759079.498567, 1571759079.5024667, 1571759079.5063665, 1571759079.510266, 1571759079.5141659, 1571759079.5180657, 1571759079.5219653, 1571759079.525865, 1571759079.5297647, 1571759079.5336645, 1571759079.5375643, 1571759079.5414639, 1571759079.5453637, 1571759079.5492632, 1571759079.553163, 1571759079.5570629, 1571759079.5609624, 1571759079.5648623, 1571759079.5687618, 1571759079.5726616, 1571759079.5765612, 1571759079.580461, 1571759079.5843608, 1571759079.5882604, 1571759079.5921602, 1571759079.5960598, 1571759079.5999596, 1571759079.6038594, 1571759079.607759, 1571759079.6116588, 1571759079.6155584, 1571759079.6194582, 1571759079.623358, 1571759079.6272576, 1571759079.6311574, 1571759079.635057, 1571759079.6389568, 1571759079.6428564, 1571759079.6467562, 1571759079.650656, 1571759079.6545556, 1571759079.6584554, 1571759079.662355, 1571759079.6662548, 1571759079.6701546, 1571759079.6740541, 1571759079.677954, 1571759079.6818535, 1571759079.6857533, 1571759079.6896532, 1571759079.6935527, 1571759079.6974525, 1571759079.7013521, 1571759079.705252, 1571759079.7091517, 1571759079.7130513, 1571759079.7169511, 1571759079.7208507, 1571759079.7247505, 1571759079.72865, 1571759079.73255, 1571759079.7364497, 1571759079.7403493, 1571759079.744249, 1571759079.7481487, 1571759079.7520485, 1571759079.7559483, 1571759079.7598479, 1571759079.7637477, 1571759079.7676473, 1571759079.771547, 1571759079.775447, 1571759079.7793465, 1571759079.7832463, 1571759079.7871459, 1571759079.7910457, 1571759079.7949455, 1571759079.798845, 1571759079.8027449, 1571759079.8066444, 1571759079.8105443, 1571759079.8144438, 1571759079.8183436, 1571759079.8222435, 1571759079.826143, 1571759079.8300428, 1571759079.8339424, 1571759079.8378422, 1571759079.841742, 1571759079.8456416, 1571759079.8495414, 1571759079.853441, 1571759079.8573408, 1571759079.8612406, 1571759079.8651402, 1571759079.86904, 1571759079.8729396, 1571759079.8768394, 1571759079.8807392, 1571759079.8846388, 1571759079.8885386, 1571759079.8924382, 1571759079.896338, 1571759079.9002376, 1571759079.9041374, 1571759079.9080372, 1571759079.9119368, 1571759079.9158366, 1571759079.9197361, 1571759079.923636, 1571759079.9275358, 1571759079.9314353, 1571759079.9353352, 1571759079.9392347, 1571759079.9431345, 1571759079.9470344, 1571759079.950934, 1571759079.9548337, 1571759079.9587333, 1571759079.9626331, 1571759079.966533, 1571759079.9704325, 1571759079.9743323, 1571759079.978232, 1571759079.9821317, 1571759079.9860313, 1571759079.989931, 1571759079.993831, 1571759079.9977305, 1571759080.0016303, 1571759080.0055299, 1571759080.0094297, 1571759080.0133295, 1571759080.017229, 1571759080.021129, 1571759080.0250285, 1571759080.0289283, 1571759080.032828, 1571759080.0367277, 1571759080.0406275, 1571759080.044527, 1571759080.0484269, 1571759080.0523267, 1571759080.0562263, 1571759080.060126, 1571759080.0640256, 1571759080.0679255, 1571759080.071825, 1571759080.0757248, 1571759080.0796247, 1571759080.0835242, 1571759080.087424, 1571759080.0913236, 1571759080.0952234, 1571759080.0991232, 1571759080.1030228, 1571759080.1069226, 1571759080.1108222, 1571759080.114722, 1571759080.1186218, 1571759080.1225214, 1571759080.1264212, 1571759080.1303208, 1571759080.1342206, 1571759080.1381202, 1571759080.14202, 1571759080.1459198, 1571759080.1498194, 1571759080.1537192, 1571759080.1576188, 1571759080.1615186, 1571759080.1654184, 1571759080.169318, 1571759080.1732178, 1571759080.1771173, 1571759080.1810172, 1571759080.184917, 1571759080.1888165, 1571759080.1927164, 1571759080.196616, 1571759080.2005157, 1571759080.2044156, 1571759080.2083151, 1571759080.212215, 1571759080.2161145, 1571759080.2200143, 1571759080.223914, 1571759080.2278137, 1571759080.2317135, 1571759080.235613, 1571759080.239513, 1571759080.2434125, 1571759080.2473123, 1571759080.2512121, 1571759080.2551117, 1571759080.2590115, 1571759080.262911, 1571759080.266811, 1571759080.2707107, 1571759080.2746103, 1571759080.27851, 1571759080.2824097, 1571759080.2863095, 1571759080.2902093, 1571759080.2941089, 1571759080.2980087, 1571759080.3019083, 1571759080.305808, 1571759080.3097076, 1571759080.3136075, 1571759080.3175073, 1571759080.3214068, 1571759080.3253067, 1571759080.3292062, 1571759080.333106, 1571759080.3370059, 1571759080.3409054, 1571759080.3448052, 1571759080.3487048, 1571759080.3526046, 1571759080.3565044, 1571759080.360404, 1571759080.3643038, 1571759080.3682034, 1571759080.3721032, 1571759080.376003, 1571759080.3799026, 1571759080.3838024, 1571759080.387702, 1571759080.3916018, 1571759080.3955014, 1571759080.3994012, 1571759080.403301, 1571759080.4072006, 1571759080.4111004, 1571759080.415, 1571759080.4188998, 1571759080.4227996, 1571759080.4266992, 1571759080.430599, 1571759080.4344985, 1571759080.4383984, 1571759080.4422982, 1571759080.4461977, 1571759080.4500976, 1571759080.4539971, 1571759080.457897, 1571759080.4617968, 1571759080.4656963, 1571759080.4695961, 1571759080.4734957, 1571759080.4773955, 1571759080.481295, 1571759080.485195, 1571759080.4890947, 1571759080.4929943, 1571759080.4968941, 1571759080.5007937, 1571759080.5046935, 1571759080.5085933, 1571759080.512493, 1571759080.5163927, 1571759080.5202923, 1571759080.524192, 1571759080.528092, 1571759080.5319915, 1571759080.5358913, 1571759080.5397909, 1571759080.5436907, 1571759080.5475905, 1571759080.55149, 1571759080.55539, 1571759080.5592895, 1571759080.5631893, 1571759080.5670888, 1571759080.5709887, 1571759080.5748885, 1571759080.578788, 1571759080.5826879, 1571759080.5865874, 1571759080.5904872, 1571759080.594387, 1571759080.5982866, 1571759080.6021864, 1571759080.606086, 1571759080.6099858, 1571759080.6138856, 1571759080.6177852, 1571759080.621685, 1571759080.6255846, 1571759080.6294844, 1571759080.633384, 1571759080.6372838, 1571759080.6411836, 1571759080.6450832, 1571759080.648983, 1571759080.6528826, 1571759080.6567824, 1571759080.6606822, 1571759080.6645818, 1571759080.6684816, 1571759080.6723812, 1571759080.676281, 1571759080.6801808, 1571759080.6840804, 1571759080.6879802, 1571759080.6918797, 1571759080.6957796, 1571759080.6996794, 1571759080.703579, 1571759080.7074788, 1571759080.7113783, 1571759080.7152781, 1571759080.7191777, 1571759080.7230775, 1571759080.7269773, 1571759080.730877, 1571759080.7347767, 1571759080.7386763, 1571759080.7425761, 1571759080.746476, 1571759080.7503755, 1571759080.7542753, 1571759080.758175, 1571759080.7620747, 1571759080.7659745, 1571759080.769874, 1571759080.773774, 1571759080.7776735, 1571759080.7815733, 1571759080.785473, 1571759080.7893727, 1571759080.7932725, 1571759080.797172, 1571759080.801072, 1571759080.8049715, 1571759080.8088713, 1571759080.812771, 1571759080.8166707, 1571759080.8205705, 1571759080.82447, 1571759080.8283699, 1571759080.8322697, 1571759080.8361692, 1571759080.840069, 1571759080.8439686, 1571759080.8478684, 1571759080.8517683, 1571759080.8556678, 1571759080.8595676, 1571759080.8634672, 1571759080.867367, 1571759080.8712668, 1571759080.8751664, 1571759080.8790662, 1571759080.8829658, 1571759080.8868656, 1571759080.8907652, 1571759080.894665, 1571759080.8985648, 1571759080.9024644, 1571759080.9063642, 1571759080.9102638, 1571759080.9141636, 1571759080.9180634, 1571759080.921963, 1571759080.9258628, 1571759080.9297624, 1571759080.9336622, 1571759080.937562, 1571759080.9414616, 1571759080.9453614, 1571759080.949261, 1571759080.9531608, 1571759080.9570606, 1571759080.9609601, 1571759080.96486, 1571759080.9687595, 1571759080.9726593, 1571759080.976559, 1571759080.9804587, 1571759080.9843585, 1571759080.9882581, 1571759080.992158, 1571759080.9960575, 1571759080.9999573, 1571759081.0038571, 1571759081.0077567, 1571759081.0116565, 1571759081.015556, 1571759081.019456, 1571759081.0233557, 1571759081.0272553, 1571759081.031155, 1571759081.0350547, 1571759081.0389545, 1571759081.0428543, 1571759081.046754, 1571759081.0506537, 1571759081.0545533, 1571759081.058453, 1571759081.0623527, 1571759081.0662525, 1571759081.0701523, 1571759081.0740519, 1571759081.0779517, 1571759081.0818512, 1571759081.085751, 1571759081.0896509, 1571759081.0935504, 1571759081.0974503, 1571759081.1013498, 1571759081.1052496, 1571759081.1091495, 1571759081.113049, 1571759081.1169488, 1571759081.1208484, 1571759081.1247482, 1571759081.1286478, 1571759081.1325476, 1571759081.1364474, 1571759081.140347, 1571759081.1442468, 1571759081.1481464, 1571759081.1520462, 1571759081.155946, 1571759081.1598456, 1571759081.1637454, 1571759081.167645, 1571759081.1715448, 1571759081.1754446, 1571759081.1793442, 1571759081.183244, 1571759081.1871436, 1571759081.1910434, 1571759081.1949432, 1571759081.1988428, 1571759081.2027426, 1571759081.2066422, 1571759081.210542, 1571759081.2144415, 1571759081.2183414, 1571759081.2222412, 1571759081.2261407, 1571759081.2300406, 1571759081.2339401, 1571759081.23784, 1571759081.2417397, 1571759081.2456393, 1571759081.2495391, 1571759081.2534387, 1571759081.2573385, 1571759081.2612383, 1571759081.265138, 1571759081.2690377, 1571759081.2729373, 1571759081.276837, 1571759081.280737, 1571759081.2846365, 1571759081.2885363, 1571759081.292436, 1571759081.2963357, 1571759081.3002353, 1571759081.304135, 1571759081.308035, 1571759081.3119345, 1571759081.3158343, 1571759081.3197339, 1571759081.3236337, 1571759081.3275335, 1571759081.331433, 1571759081.3353329, 1571759081.3392324, 1571759081.3431323, 1571759081.347032, 1571759081.3509316, 1571759081.3548315, 1571759081.358731, 1571759081.3626308, 1571759081.3665307, 1571759081.3704302, 1571759081.37433, 1571759081.3782296, 1571759081.3821294, 1571759081.386029, 1571759081.3899288, 1571759081.3938286, 1571759081.3977282, 1571759081.401628, 1571759081.4055276, 1571759081.4094274, 1571759081.4133272, 1571759081.4172268, 1571759081.4211266, 1571759081.4250262, 1571759081.428926, 1571759081.4328258, 1571759081.4367254, 1571759081.4406252, 1571759081.4445248, 1571759081.4484246, 1571759081.4523244, 1571759081.456224, 1571759081.4601238, 1571759081.4640234, 1571759081.4679232, 1571759081.4718227, 1571759081.4757226, 1571759081.4796224, 1571759081.483522, 1571759081.4874218, 1571759081.4913213, 1571759081.4952211, 1571759081.499121, 1571759081.5030205, 1571759081.5069203, 1571759081.51082, 1571759081.5147197, 1571759081.5186195, 1571759081.522519, 1571759081.526419, 1571759081.5303185, 1571759081.5342183, 1571759081.5381181, 1571759081.5420177, 1571759081.5459175, 1571759081.549817, 1571759081.553717, 1571759081.5576165, 1571759081.5615163, 1571759081.565416, 1571759081.5693157, 1571759081.5732155, 1571759081.577115, 1571759081.5810149, 1571759081.5849147, 1571759081.5888143, 1571759081.592714, 1571759081.5966136, 1571759081.6005135, 1571759081.6044133, 1571759081.6083128, 1571759081.6122127, 1571759081.6161122, 1571759081.620012, 1571759081.6239119, 1571759081.6278114, 1571759081.6317112, 1571759081.6356108, 1571759081.6395106, 1571759081.6434102, 1571759081.64731, 1571759081.6512098, 1571759081.6551094, 1571759081.6590092, 1571759081.6629088, 1571759081.6668086, 1571759081.6707084, 1571759081.674608, 1571759081.6785078, 1571759081.6824074, 1571759081.6863072, 1571759081.690207, 1571759081.6941066, 1571759081.6980064, 1571759081.701906, 1571759081.7058058, 1571759081.7097054, 1571759081.7136052, 1571759081.717505, 1571759081.7214046, 1571759081.7253044, 1571759081.729204, 1571759081.7331038, 1571759081.7370036, 1571759081.7409031, 1571759081.744803, 1571759081.7487025, 1571759081.7526023, 1571759081.7565022, 1571759081.7604017, 1571759081.7643015, 1571759081.768201, 1571759081.772101, 1571759081.7760007, 1571759081.7799003, 1571759081.7838001, 1571759081.7876997, 1571759081.7915995, 1571759081.795499, 1571759081.799399, 1571759081.8032987, 1571759081.8071983, 1571759081.811098, 1571759081.8149977, 1571759081.8188975, 1571759081.8227973, 1571759081.8266969, 1571759081.8305967, 1571759081.8344963, 1571759081.838396, 1571759081.842296, 1571759081.8461955, 1571759081.8500953, 1571759081.8539948, 1571759081.8578947, 1571759081.8617945, 1571759081.865694, 1571759081.8695939, 1571759081.8734934, 1571759081.8773932, 1571759081.8812928, 1571759081.8851926, 1571759081.8890924, 1571759081.892992, 1571759081.8968918, 1571759081.9007914, 1571759081.9046912, 1571759081.908591, 1571759081.9124906, 1571759081.9163904, 1571759081.92029, 1571759081.9241898, 1571759081.9280896, 1571759081.9319892, 1571759081.935889, 1571759081.9397886, 1571759081.9436884, 1571759081.9475882, 1571759081.9514878, 1571759081.9553876, 1571759081.9592872, 1571759081.963187, 1571759081.9670866, 1571759081.9709864, 1571759081.9748862, 1571759081.9787858, 1571759081.9826856, 1571759081.9865851, 1571759081.990485, 1571759081.9943848, 1571759081.9982843, 1571759082.0021842, 1571759082.0060837, 1571759082.0099835, 1571759082.0138834, 1571759082.017783, 1571759082.0216827, 1571759082.0255823, 1571759082.0294821, 1571759082.033382, 1571759082.0372815, 1571759082.0411813, 1571759082.045081, 1571759082.0489807, 1571759082.0528803, 1571759082.05678, 1571759082.06068, 1571759082.0645795, 1571759082.0684793, 1571759082.0723789, 1571759082.0762787, 1571759082.0801785, 1571759082.084078, 1571759082.087978, 1571759082.0918775, 1571759082.0957773, 1571759082.099677, 1571759082.1035767, 1571759082.1074765, 1571759082.111376, 1571759082.1152759, 1571759082.1191757, 1571759082.1230752, 1571759082.126975, 1571759082.1308746, 1571759082.1347744, 1571759082.138674, 1571759082.1425738, 1571759082.1464736, 1571759082.1503732, 1571759082.154273, 1571759082.1581726, 1571759082.1620724, 1571759082.1659722, 1571759082.1698718, 1571759082.1737716, 1571759082.1776712, 1571759082.181571, 1571759082.1854708, 1571759082.1893704, 1571759082.1932702, 1571759082.1971698, 1571759082.2010696, 1571759082.2049692, 1571759082.208869, 1571759082.2127688, 1571759082.2166684, 1571759082.2205682, 1571759082.2244678, 1571759082.2283676, 1571759082.2322674, 1571759082.236167, 1571759082.2400668, 1571759082.2439663, 1571759082.2478662, 1571759082.251766, 1571759082.2556655, 1571759082.2595654, 1571759082.263465, 1571759082.2673647, 1571759082.2712646, 1571759082.2751641, 1571759082.279064, 1571759082.2829635, 1571759082.2868633, 1571759082.290763, 1571759082.2946627, 1571759082.2985625, 1571759082.302462, 1571759082.306362, 1571759082.3102615, 1571759082.3141613, 1571759082.318061, 1571759082.3219607, 1571759082.3258605, 1571759082.32976, 1571759082.33366, 1571759082.3375597, 1571759082.3414593, 1571759082.345359, 1571759082.3492587, 1571759082.3531585, 1571759082.3570583, 1571759082.3609579, 1571759082.3648577, 1571759082.3687572, 1571759082.372657, 1571759082.3765566, 1571759082.3804564, 1571759082.3843563, 1571759082.3882558, 1571759082.3921556, 1571759082.3960552, 1571759082.399955, 1571759082.4038548, 1571759082.4077544, 1571759082.4116542, 1571759082.4155538, 1571759082.4194536, 1571759082.4233534, 1571759082.427253, 1571759082.4311528, 1571759082.4350524, 1571759082.4389522, 1571759082.442852, 1571759082.4467516, 1571759082.4506514, 1571759082.454551, 1571759082.4584508, 1571759082.4623504, 1571759082.4662502, 1571759082.47015, 1571759082.4740496, 1571759082.4779494, 1571759082.481849, 1571759082.4857488, 1571759082.4896486, 1571759082.4935482, 1571759082.497448, 1571759082.5013475, 1571759082.5052474, 1571759082.5091472, 1571759082.5130467, 1571759082.5169466, 1571759082.5208461, 1571759082.524746, 1571759082.5286458, 1571759082.5325453, 1571759082.5364451, 1571759082.5403447, 1571759082.5442445, 1571759082.548144, 1571759082.552044, 1571759082.5559437, 1571759082.5598433, 1571759082.563743, 1571759082.5676427, 1571759082.5715425, 1571759082.5754423, 1571759082.579342, 1571759082.5832417, 1571759082.5871413, 1571759082.591041, 1571759082.594941, 1571759082.5988405, 1571759082.6027403, 1571759082.6066399, 1571759082.6105397, 1571759082.6144395, 1571759082.618339, 1571759082.6222389, 1571759082.6261384, 1571759082.6300383, 1571759082.6339378, 1571759082.6378376, 1571759082.6417375, 1571759082.645637, 1571759082.6495368, 1571759082.6534364, 1571759082.6573362, 1571759082.661236, 1571759082.6651356, 1571759082.6690354, 1571759082.672935, 1571759082.6768348, 1571759082.6807346, 1571759082.6846342, 1571759082.688534, 1571759082.6924336, 1571759082.6963334, 1571759082.700233, 1571759082.7041328, 1571759082.7080326, 1571759082.7119322, 1571759082.715832, 1571759082.7197316, 1571759082.7236314, 1571759082.7275312, 1571759082.7314308, 1571759082.7353306, 1571759082.7392302, 1571759082.74313, 1571759082.7470298, 1571759082.7509294, 1571759082.7548292, 1571759082.7587287, 1571759082.7626286, 1571759082.7665284, 1571759082.770428, 1571759082.7743278, 1571759082.7782273, 1571759082.7821271, 1571759082.7860267, 1571759082.7899265, 1571759082.7938263, 1571759082.797726, 1571759082.8016257, 1571759082.8055253, 1571759082.809425, 1571759082.813325, 1571759082.8172245, 1571759082.8211243, 1571759082.825024, 1571759082.8289237, 1571759082.8328235, 1571759082.836723, 1571759082.840623, 1571759082.8445225, 1571759082.8484223, 1571759082.852322, 1571759082.8562217, 1571759082.8601215, 1571759082.864021, 1571759082.8679209, 1571759082.8718204, 1571759082.8757203, 1571759082.87962, 1571759082.8835196, 1571759082.8874195, 1571759082.891319, 1571759082.8952188, 1571759082.8991187, 1571759082.9030182, 1571759082.906918, 1571759082.9108176, 1571759082.9147174, 1571759082.9186172, 1571759082.9225168, 1571759082.9264166, 1571759082.9303162, 1571759082.934216, 1571759082.9381158, 1571759082.9420154, 1571759082.9459152, 1571759082.9498148, 1571759082.9537146, 1571759082.9576142, 1571759082.961514, 1571759082.9654138, 1571759082.9693134, 1571759082.9732132, 1571759082.9771128, 1571759082.9810126, 1571759082.9849124, 1571759082.988812, 1571759082.9927118, 1571759082.9966114, 1571759083.0005112, 1571759083.004411, 1571759083.0083106, 1571759083.0122104, 1571759083.01611, 1571759083.0200098, 1571759083.0239096, 1571759083.0278091, 1571759083.031709, 1571759083.0356085, 1571759083.0395083, 1571759083.043408, 1571759083.0473077, 1571759083.0512075, 1571759083.055107, 1571759083.059007, 1571759083.0629065, 1571759083.0668063, 1571759083.0707061, 1571759083.0746057, 1571759083.0785055, 1571759083.082405, 1571759083.086305, 1571759083.0902047, 1571759083.0941043, 1571759083.098004, 1571759083.1019037, 1571759083.1058035, 1571759083.1097033, 1571759083.1136029, 1571759083.1175027, 1571759083.1214023, 1571759083.125302, 1571759083.1292017, 1571759083.1331015, 1571759083.1370013, 1571759083.1409009, 1571759083.1448007, 1571759083.1487002, 1571759083.1526, 1571759083.1564999, 1571759083.1603994, 1571759083.1642992, 1571759083.1681988, 1571759083.1720986, 1571759083.1759984, 1571759083.179898, 1571759083.1837978, 1571759083.1876974, 1571759083.1915972, 1571759083.1954968, 1571759083.1993966, 1571759083.2032964, 1571759083.207196, 1571759083.2110958, 1571759083.2149954, 1571759083.2188952, 1571759083.222795, 1571759083.2266946, 1571759083.2305944, 1571759083.234494, 1571759083.2383938, 1571759083.2422936, 1571759083.2461932, 1571759083.250093, 1571759083.2539926, 1571759083.2578924, 1571759083.2617922, 1571759083.2656918, 1571759083.2695916, 1571759083.2734911, 1571759083.277391, 1571759083.2812905, 1571759083.2851903, 1571759083.2890902, 1571759083.2929897, 1571759083.2968895, 1571759083.300789, 1571759083.304689, 1571759083.3085887, 1571759083.3124883, 1571759083.3163881, 1571759083.3202877, 1571759083.3241875, 1571759083.3280873, 1571759083.331987, 1571759083.3358867, 1571759083.3397863, 1571759083.343686, 1571759083.347586, 1571759083.3514855, 1571759083.3553853, 1571759083.3592849, 1571759083.3631847, 1571759083.3670843, 1571759083.370984, 1571759083.374884, 1571759083.3787835, 1571759083.3826833, 1571759083.3865829, 1571759083.3904827, 1571759083.3943825, 1571759083.398282, 1571759083.4021819, 1571759083.4060814, 1571759083.4099813, 1571759083.413881, 1571759083.4177806, 1571759083.4216805, 1571759083.42558, 1571759083.4294798, 1571759083.4333797, 1571759083.4372792, 1571759083.441179, 1571759083.4450786, 1571759083.4489784, 1571759083.452878, 1571759083.4567778, 1571759083.4606776, 1571759083.4645772, 1571759083.468477, 1571759083.4723766, 1571759083.4762764, 1571759083.4801762, 1571759083.4840758, 1571759083.4879756, 1571759083.4918752, 1571759083.495775, 1571759083.4996748, 1571759083.5035744, 1571759083.5074742, 1571759083.5113738, 1571759083.5152736, 1571759083.5191734, 1571759083.523073, 1571759083.5269728, 1571759083.5308723, 1571759083.5347722, 1571759083.5386717, 1571759083.5425715, 1571759083.5464714, 1571759083.550371, 1571759083.5542707, 1571759083.5581703, 1571759083.5620701, 1571759083.56597, 1571759083.5698695, 1571759083.5737693, 1571759083.577669, 1571759083.5815687, 1571759083.5854685, 1571759083.589368, 1571759083.593268, 1571759083.5971675, 1571759083.6010673, 1571759083.604967, 1571759083.6088667, 1571759083.6127665, 1571759083.616666, 1571759083.620566, 1571759083.6244655, 1571759083.6283653, 1571759083.632265, 1571759083.6361647, 1571759083.6400645, 1571759083.643964, 1571759083.6478639, 1571759083.6517637, 1571759083.6556633, 1571759083.659563, 1571759083.6634626, 1571759083.6673625, 1571759083.6712623, 1571759083.6751618, 1571759083.6790617, 1571759083.6829612, 1571759083.686861, 1571759083.6907609, 1571759083.6946604, 1571759083.6985602, 1571759083.7024598, 1571759083.7063596, 1571759083.7102592, 1571759083.714159, 1571759083.7180588, 1571759083.7219584, 1571759083.7258582, 1571759083.7297578, 1571759083.7336576, 1571759083.7375574, 1571759083.741457, 1571759083.7453568, 1571759083.7492564, 1571759083.7531562, 1571759083.757056, 1571759083.7609556, 1571759083.7648554, 1571759083.768755, 1571759083.7726548, 1571759083.7765543, 1571759083.7804542, 1571759083.784354, 1571759083.7882535, 1571759083.7921534, 1571759083.796053, 1571759083.7999527, 1571759083.8038526, 1571759083.8077521, 1571759083.811652, 1571759083.8155515, 1571759083.8194513, 1571759083.8233511, 1571759083.8272507, 1571759083.8311505, 1571759083.83505, 1571759083.83895, 1571759083.8428497, 1571759083.8467493, 1571759083.850649, 1571759083.8545487, 1571759083.8584485, 1571759083.862348, 1571759083.866248, 1571759083.8701477, 1571759083.8740473, 1571759083.877947, 1571759083.8818467, 1571759083.8857465, 1571759083.8896463, 1571759083.8935459, 1571759083.8974457, 1571759083.9013453, 1571759083.905245, 1571759083.9091449, 1571759083.9130445, 1571759083.9169443, 1571759083.9208438, 1571759083.9247437, 1571759083.9286435, 1571759083.932543, 1571759083.9364429, 1571759083.9403424, 1571759083.9442422, 1571759083.9481418, 1571759083.9520416, 1571759083.9559414, 1571759083.959841, 1571759083.9637408, 1571759083.9676404, 1571759083.9715402, 1571759083.97544, 1571759083.9793396, 1571759083.9832394, 1571759083.987139, 1571759083.9910388, 1571759083.9949386, 1571759083.9988382, 1571759084.002738, 1571759084.0066376, 1571759084.0105374, 1571759084.0144372, 1571759084.0183368, 1571759084.0222366, 1571759084.0261362, 1571759084.030036, 1571759084.0339355, 1571759084.0378354, 1571759084.0417352, 1571759084.0456347, 1571759084.0495346, 1571759084.0534341, 1571759084.057334, 1571759084.0612338, 1571759084.0651333, 1571759084.0690331, 1571759084.0729327, 1571759084.0768325, 1571759084.0807323, 1571759084.084632, 1571759084.0885317, 1571759084.0924313, 1571759084.0963311, 1571759084.100231, 1571759084.1041305, 1571759084.1080303, 1571759084.11193, 1571759084.1158297, 1571759084.1197293, 1571759084.123629, 1571759084.127529, 1571759084.1314285, 1571759084.1353283, 1571759084.1392279, 1571759084.1431277, 1571759084.1470275, 1571759084.150927, 1571759084.1548269, 1571759084.1587265, 1571759084.1626263, 1571759084.166526, 1571759084.1704257, 1571759084.1743255, 1571759084.178225, 1571759084.1821249, 1571759084.1860247, 1571759084.1899242, 1571759084.193824, 1571759084.1977236, 1571759084.2016234, 1571759084.205523, 1571759084.2094228, 1571759084.2133226, 1571759084.2172222, 1571759084.221122, 1571759084.2250216, 1571759084.2289214, 1571759084.2328212, 1571759084.2367208, 1571759084.2406206, 1571759084.2445202, 1571759084.24842, 1571759084.2523198, 1571759084.2562194, 1571759084.2601192, 1571759084.2640188, 1571759084.2679186, 1571759084.2718182, 1571759084.275718, 1571759084.2796178, 1571759084.2835174, 1571759084.2874172, 1571759084.2913167, 1571759084.2952166, 1571759084.2991164, 1571759084.303016, 1571759084.3069158, 1571759084.3108153, 1571759084.3147151, 1571759084.318615, 1571759084.3225145, 1571759084.3264143, 1571759084.330314, 1571759084.3342137, 1571759084.3381135, 1571759084.3420131, 1571759084.345913, 1571759084.3498125, 1571759084.3537123, 1571759084.357612, 1571759084.3615117, 1571759084.3654115, 1571759084.369311, 1571759084.373211, 1571759084.3771105, 1571759084.3810103, 1571759084.38491, 1571759084.3888097, 1571759084.3927095, 1571759084.396609, 1571759084.4005089, 1571759084.4044087, 1571759084.4083083, 1571759084.412208, 1571759084.4161077, 1571759084.4200075, 1571759084.4239073, 1571759084.4278069, 1571759084.4317067, 1571759084.4356062, 1571759084.439506, 1571759084.4434056, 1571759084.4473054, 1571759084.4512053, 1571759084.4551048, 1571759084.4590046, 1571759084.4629042, 1571759084.466804, 1571759084.4707038, 1571759084.4746034, 1571759084.4785032, 1571759084.4824028, 1571759084.4863026, 1571759084.4902024, 1571759084.494102, 1571759084.4980018, 1571759084.5019014, 1571759084.5058012, 1571759084.509701, 1571759084.5136006, 1571759084.5175004, 1571759084.5214, 1571759084.5252998, 1571759084.5291994, 1571759084.5330992, 1571759084.536999, 1571759084.5408986, 1571759084.5447984, 1571759084.548698, 1571759084.5525978, 1571759084.5564976, 1571759084.5603971, 1571759084.564297, 1571759084.5681965, 1571759084.5720963, 1571759084.5759962, 1571759084.5798957, 1571759084.5837955, 1571759084.5876951, 1571759084.591595, 1571759084.5954947, 1571759084.5993943, 1571759084.6032941, 1571759084.6071937, 1571759084.6110935, 1571759084.614993, 1571759084.618893, 1571759084.6227927, 1571759084.6266923, 1571759084.630592, 1571759084.6344917, 1571759084.6383915, 1571759084.6422913, 1571759084.646191, 1571759084.6500907, 1571759084.6539903, 1571759084.65789, 1571759084.66179, 1571759084.6656895, 1571759084.6695893, 1571759084.6734889, 1571759084.6773887, 1571759084.6812885, 1571759084.685188, 1571759084.6890879, 1571759084.6929874, 1571759084.6968873, 1571759084.7007868, 1571759084.7046866, 1571759084.7085865, 1571759084.712486, 1571759084.7163858, 1571759084.7202854, 1571759084.7241852, 1571759084.728085, 1571759084.7319846, 1571759084.7358844, 1571759084.739784, 1571759084.7436838, 1571759084.7475836, 1571759084.7514832, 1571759084.755383, 1571759084.7592826, 1571759084.7631824, 1571759084.767082, 1571759084.7709818, 1571759084.7748816, 1571759084.7787812, 1571759084.782681, 1571759084.7865806, 1571759084.7904804, 1571759084.7943802, 1571759084.7982798, 1571759084.8021796, 1571759084.8060791, 1571759084.809979, 1571759084.8138788, 1571759084.8177783, 1571759084.8216782, 1571759084.8255777, 1571759084.8294775, 1571759084.8333774, 1571759084.837277, 1571759084.8411767, 1571759084.8450763, 1571759084.8489761, 1571759084.8528757, 1571759084.8567755, 1571759084.8606753, 1571759084.864575, 1571759084.8684747, 1571759084.8723743, 1571759084.876274, 1571759084.880174, 1571759084.8840735, 1571759084.8879733, 1571759084.891873, 1571759084.8957727, 1571759084.8996725, 1571759084.903572, 1571759084.907472, 1571759084.9113715, 1571759084.9152713, 1571759084.919171, 1571759084.9230707, 1571759084.9269705, 1571759084.93087, 1571759084.9347699, 1571759084.9386694, 1571759084.9425693, 1571759084.946469, 1571759084.9503686, 1571759084.9542685, 1571759084.958168, 1571759084.9620678, 1571759084.9659677, 1571759084.9698672, 1571759084.973767, 1571759084.9776666, 1571759084.9815664, 1571759084.9854662, 1571759084.9893658, 1571759084.9932656, 1571759084.9971652, 1571759085.001065, 1571759085.0049648, 1571759085.0088644, 1571759085.0127642, 1571759085.0166638, 1571759085.0205636, 1571759085.0244632, 1571759085.028363, 1571759085.0322628, 1571759085.0361624, 1571759085.0400622, 1571759085.0439618, 1571759085.0478616, 1571759085.0517614, 1571759085.055661, 1571759085.0595608, 1571759085.0634604, 1571759085.0673602, 1571759085.07126, 1571759085.0751595, 1571759085.0790594, 1571759085.082959, 1571759085.0868587, 1571759085.0907586, 1571759085.0946581, 1571759085.098558, 1571759085.1024575, 1571759085.1063573, 1571759085.110257, 1571759085.1141567, 1571759085.1180565, 1571759085.121956, 1571759085.125856, 1571759085.1297555, 1571759085.1336553, 1571759085.1375551, 1571759085.1414547, 1571759085.1453545, 1571759085.149254, 1571759085.153154, 1571759085.1570537, 1571759085.1609533, 1571759085.164853, 1571759085.1687527, 1571759085.1726525, 1571759085.1765523, 1571759085.1804519, 1571759085.1843517, 1571759085.1882513, 1571759085.192151, 1571759085.1960506, 1571759085.1999505, 1571759085.2038503, 1571759085.2077498, 1571759085.2116497, 1571759085.2155492, 1571759085.219449, 1571759085.2233489, 1571759085.2272484, 1571759085.2311482, 1571759085.2350478, 1571759085.2389476, 1571759085.2428474, 1571759085.246747, 1571759085.2506468, 1571759085.2545464, 1571759085.2584462, 1571759085.2623458, 1571759085.2662456, 1571759085.2701454, 1571759085.274045, 1571759085.2779448, 1571759085.2818444, 1571759085.2857442, 1571759085.289644, 1571759085.2935436, 1571759085.2974434, 1571759085.301343, 1571759085.3052428, 1571759085.3091426, 1571759085.3130422, 1571759085.316942, 1571759085.3208416, 1571759085.3247414, 1571759085.3286412, 1571759085.3325408, 1571759085.3364406, 1571759085.3403401, 1571759085.34424, 1571759085.3481395, 1571759085.3520393, 1571759085.3559391, 1571759085.3598387, 1571759085.3637385, 1571759085.367638, 1571759085.371538, 1571759085.3754377, 1571759085.3793373, 1571759085.3832371, 1571759085.3871367, 1571759085.3910365, 1571759085.3949363, 1571759085.398836, 1571759085.4027357, 1571759085.4066353, 1571759085.410535, 1571759085.414435, 1571759085.4183345, 1571759085.4222343, 1571759085.4261339, 1571759085.4300337, 1571759085.4339333, 1571759085.437833, 1571759085.441733, 1571759085.4456325, 1571759085.4495323, 1571759085.4534318, 1571759085.4573317, 1571759085.4612315, 1571759085.465131, 1571759085.4690309, 1571759085.4729304, 1571759085.4768302, 1571759085.48073, 1571759085.4846296, 1571759085.4885294, 1571759085.492429, 1571759085.4963288, 1571759085.5002286, 1571759085.5041282, 1571759085.508028, 1571759085.5119276, 1571759085.5158274, 1571759085.519727, 1571759085.5236268, 1571759085.5275266, 1571759085.5314262, 1571759085.535326, 1571759085.5392256, 1571759085.5431254, 1571759085.5470252, 1571759085.5509248, 1571759085.5548246, 1571759085.5587242, 1571759085.562624, 1571759085.5665238, 1571759085.5704234, 1571759085.5743232, 1571759085.5782228, 1571759085.5821226, 1571759085.5860224, 1571759085.589922, 1571759085.5938218, 1571759085.5977213, 1571759085.6016212, 1571759085.6055207, 1571759085.6094205, 1571759085.6133204, 1571759085.61722, 1571759085.6211197, 1571759085.6250193, 1571759085.6289191, 1571759085.632819, 1571759085.6367185, 1571759085.6406183, 1571759085.644518, 1571759085.6484177, 1571759085.6523175, 1571759085.656217, 1571759085.660117, 1571759085.6640165, 1571759085.6679163, 1571759085.671816, 1571759085.6757157, 1571759085.6796155, 1571759085.683515, 1571759085.687415, 1571759085.6913145, 1571759085.6952143, 1571759085.699114, 1571759085.7030137, 1571759085.7069135, 1571759085.710813, 1571759085.7147129, 1571759085.7186127, 1571759085.7225122, 1571759085.726412, 1571759085.7303116, 1571759085.7342114, 1571759085.7381113, 1571759085.7420108, 1571759085.7459106, 1571759085.7498102, 1571759085.75371, 1571759085.7576098, 1571759085.7615094, 1571759085.7654092, 1571759085.7693088, 1571759085.7732086, 1571759085.7771082, 1571759085.781008, 1571759085.7849078, 1571759085.7888074, 1571759085.7927072, 1571759085.7966068, 1571759085.8005066, 1571759085.8044064, 1571759085.808306, 1571759085.8122058, 1571759085.8161054, 1571759085.8200052, 1571759085.823905, 1571759085.8278046, 1571759085.8317044, 1571759085.835604, 1571759085.8395038, 1571759085.8434033, 1571759085.8473032, 1571759085.851203, 1571759085.8551025, 1571759085.8590024, 1571759085.862902, 1571759085.8668017, 1571759085.8707016, 1571759085.8746011, 1571759085.878501, 1571759085.8824005, 1571759085.8863003, 1571759085.8902001, 1571759085.8940997, 1571759085.8979995, 1571759085.901899, 1571759085.905799, 1571759085.9096987, 1571759085.9135983, 1571759085.917498, 1571759085.9213977, 1571759085.9252975, 1571759085.929197, 1571759085.933097, 1571759085.9369967, 1571759085.9408963, 1571759085.944796, 1571759085.9486957, 1571759085.9525955, 1571759085.9564953, 1571759085.9603949, 1571759085.9642947, 1571759085.9681942, 1571759085.972094, 1571759085.9759939, 1571759085.9798934, 1571759085.9837933, 1571759085.9876928, 1571759085.9915926, 1571759085.9954925, 1571759085.999392, 1571759086.0032918, 1571759086.0071914, 1571759086.0110912, 1571759086.0149908, 1571759086.0188906, 1571759086.0227904, 1571759086.02669, 1571759086.0305898, 1571759086.0344894, 1571759086.0383892, 1571759086.042289, 1571759086.0461886, 1571759086.0500884, 1571759086.053988, 1571759086.0578878, 1571759086.0617876, 1571759086.0656872, 1571759086.069587, 1571759086.0734866, 1571759086.0773864, 1571759086.0812862, 1571759086.0851858, 1571759086.0890856, 1571759086.0929852, 1571759086.096885, 1571759086.1007845, 1571759086.1046844, 1571759086.1085842, 1571759086.1124837, 1571759086.1163836, 1571759086.1202831, 1571759086.124183, 1571759086.1280828, 1571759086.1319823, 1571759086.1358821, 1571759086.1397817, 1571759086.1436815, 1571759086.1475813, 1571759086.151481, 1571759086.1553807, 1571759086.1592803, 1571759086.16318, 1571759086.16708, 1571759086.1709795, 1571759086.1748793, 1571759086.178779, 1571759086.1826787, 1571759086.1865783, 1571759086.190478, 1571759086.194378, 1571759086.1982775, 1571759086.2021773, 1571759086.2060769, 1571759086.2099767, 1571759086.2138765, 1571759086.217776, 1571759086.2216759, 1571759086.2255754, 1571759086.2294753, 1571759086.233375, 1571759086.2372746, 1571759086.2411745, 1571759086.245074, 1571759086.2489738, 1571759086.2528737, 1571759086.2567732, 1571759086.260673, 1571759086.2645726, 1571759086.2684724, 1571759086.272372, 1571759086.2762718, 1571759086.2801716, 1571759086.2840712, 1571759086.287971, 1571759086.2918706, 1571759086.2957704, 1571759086.2996702, 1571759086.3035698, 1571759086.3074696, 1571759086.3113692, 1571759086.315269, 1571759086.3191688, 1571759086.3230684, 1571759086.3269682, 1571759086.3308678, 1571759086.3347676, 1571759086.3386672, 1571759086.342567, 1571759086.3464668, 1571759086.3503664, 1571759086.3542662, 1571759086.3581657, 1571759086.3620656, 1571759086.3659654, 1571759086.369865, 1571759086.3737648, 1571759086.3776643, 1571759086.3815641, 1571759086.385464, 1571759086.3893635, 1571759086.3932633, 1571759086.397163, 1571759086.4010627, 1571759086.4049625, 1571759086.408862, 1571759086.412762, 1571759086.4166615, 1571759086.4205613, 1571759086.424461, 1571759086.4283607, 1571759086.4322605, 1571759086.43616, 1571759086.44006, 1571759086.4439595, 1571759086.4478593, 1571759086.451759, 1571759086.4556587, 1571759086.4595585, 1571759086.463458, 1571759086.4673579, 1571759086.4712577, 1571759086.4751573, 1571759086.479057, 1571759086.4829566, 1571759086.4868565, 1571759086.4907563, 1571759086.4946558, 1571759086.4985557, 1571759086.5024552, 1571759086.506355, 1571759086.5102546, 1571759086.5141544, 1571759086.5180542, 1571759086.5219538, 1571759086.5258536, 1571759086.5297532, 1571759086.533653, 1571759086.5375528, 1571759086.5414524, 1571759086.5453522, 1571759086.5492518, 1571759086.5531516, 1571759086.5570514, 1571759086.560951, 1571759086.5648508, 1571759086.5687504, 1571759086.5726502, 1571759086.57655, 1571759086.5804496, 1571759086.5843494, 1571759086.588249, 1571759086.5921488, 1571759086.5960484, 1571759086.5999482, 1571759086.603848, 1571759086.6077476, 1571759086.6116474, 1571759086.615547, 1571759086.6194468, 1571759086.6233466, 1571759086.6272461, 1571759086.631146, 1571759086.6350455, 1571759086.6389453, 1571759086.6428452, 1571759086.6467447, 1571759086.6506445, 1571759086.654544, 1571759086.658444, 1571759086.6623437, 1571759086.6662433, 1571759086.6701431, 1571759086.6740427, 1571759086.6779425, 1571759086.681842, 1571759086.685742, 1571759086.6896417, 1571759086.6935413, 1571759086.697441, 1571759086.7013407, 1571759086.7052405, 1571759086.7091403, 1571759086.7130399, 1571759086.7169397, 1571759086.7208393, 1571759086.724739, 1571759086.728639, 1571759086.7325385, 1571759086.7364383, 1571759086.7403378, 1571759086.7442377, 1571759086.7481375, 1571759086.752037, 1571759086.7559369, 1571759086.7598364, 1571759086.7637362, 1571759086.7676358, 1571759086.7715356, 1571759086.7754354, 1571759086.779335, 1571759086.7832348, 1571759086.7871344, 1571759086.7910342, 1571759086.794934, 1571759086.7988336, 1571759086.8027334, 1571759086.806633, 1571759086.8105328, 1571759086.8144326, 1571759086.8183322, 1571759086.822232, 1571759086.8261316, 1571759086.8300314, 1571759086.833931, 1571759086.8378308, 1571759086.8417306, 1571759086.8456302, 1571759086.84953, 1571759086.8534296, 1571759086.8573294, 1571759086.8612292, 1571759086.8651288, 1571759086.8690286, 1571759086.8729281, 1571759086.876828, 1571759086.8807278, 1571759086.8846273, 1571759086.8885272, 1571759086.8924267, 1571759086.8963265, 1571759086.9002264, 1571759086.904126, 1571759086.9080257, 1571759086.9119253, 1571759086.9158251, 1571759086.9197247, 1571759086.9236245, 1571759086.9275243, 1571759086.931424, 1571759086.9353237, 1571759086.9392233, 1571759086.943123, 1571759086.947023, 1571759086.9509225, 1571759086.9548223, 1571759086.9587219, 1571759086.9626217, 1571759086.9665215, 1571759086.970421, 1571759086.974321, 1571759086.9782205, 1571759086.9821203, 1571759086.98602, 1571759086.9899197, 1571759086.9938195, 1571759086.997719, 1571759087.0016189, 1571759087.0055184, 1571759087.0094182, 1571759087.013318, 1571759087.0172176, 1571759087.0211174, 1571759087.025017, 1571759087.0289168, 1571759087.0328166, 1571759087.0367162, 1571759087.040616, 1571759087.0445156, 1571759087.0484154, 1571759087.0523152, 1571759087.0562148, 1571759087.0601146, 1571759087.0640142, 1571759087.067914, 1571759087.0718138, 1571759087.0757134, 1571759087.0796132, 1571759087.0835128, 1571759087.0874126, 1571759087.0913122, 1571759087.095212, 1571759087.0991118, 1571759087.1030114, 1571759087.1069112, 1571759087.1108108, 1571759087.1147106, 1571759087.1186104, 1571759087.12251, 1571759087.1264098, 1571759087.1303093, 1571759087.1342092, 1571759087.138109, 1571759087.1420085, 1571759087.1459084, 1571759087.149808, 1571759087.1537077, 1571759087.1576076, 1571759087.1615071, 1571759087.165407, 1571759087.1693065, 1571759087.1732063, 1571759087.177106, 1571759087.1810057, 1571759087.1849055, 1571759087.188805, 1571759087.192705, 1571759087.1966045, 1571759087.2005043, 1571759087.204404, 1571759087.2083037, 1571759087.2122035, 1571759087.216103, 1571759087.220003, 1571759087.2239027, 1571759087.2278023, 1571759087.231702, 1571759087.2356017, 1571759087.2395015, 1571759087.2434013, 1571759087.2473009, 1571759087.2512007, 1571759087.2551003, 1571759087.259, 1571759087.2628996, 1571759087.2667994, 1571759087.2706993, 1571759087.2745988, 1571759087.2784986, 1571759087.2823982, 1571759087.286298, 1571759087.2901978, 1571759087.2940974, 1571759087.2979972, 1571759087.3018968, 1571759087.3057966, 1571759087.3096964, 1571759087.313596, 1571759087.3174958, 1571759087.3213954, 1571759087.3252952, 1571759087.3291948, 1571759087.3330946, 1571759087.3369944, 1571759087.340894, 1571759087.3447938, 1571759087.3486934, 1571759087.3525932, 1571759087.356493, 1571759087.3603926, 1571759087.3642924, 1571759087.368192, 1571759087.3720918, 1571759087.3759916, 1571759087.3798912, 1571759087.383791, 1571759087.3876905, 1571759087.3915904, 1571759087.3954902, 1571759087.3993897, 1571759087.4032896, 1571759087.4071891, 1571759087.411089, 1571759087.4149885, 1571759087.4188883, 1571759087.4227881, 1571759087.4266877, 1571759087.4305875, 1571759087.434487, 1571759087.438387, 1571759087.4422867, 1571759087.4461863, 1571759087.450086, 1571759087.4539857, 1571759087.4578855, 1571759087.4617853, 1571759087.465685, 1571759087.4695847, 1571759087.4734843, 1571759087.477384, 1571759087.481284, 1571759087.4851835, 1571759087.4890833, 1571759087.4929829, 1571759087.4968827, 1571759087.5007823, 1571759087.504682, 1571759087.5085819, 1571759087.5124815, 1571759087.5163813, 1571759087.5202808, 1571759087.5241807, 1571759087.5280805, 1571759087.53198, 1571759087.5358799, 1571759087.5397794, 1571759087.5436792, 1571759087.547579, 1571759087.5514786, 1571759087.5553784, 1571759087.559278, 1571759087.5631778, 1571759087.5670776, 1571759087.5709772, 1571759087.574877, 1571759087.5787766, 1571759087.5826764, 1571759087.586576, 1571759087.5904758, 1571759087.5943756, 1571759087.5982752, 1571759087.602175, 1571759087.6060746, 1571759087.6099744, 1571759087.6138742, 1571759087.6177738, 1571759087.6216736, 1571759087.6255732, 1571759087.629473, 1571759087.6333728, 1571759087.6372724, 1571759087.6411722, 1571759087.6450717, 1571759087.6489716, 1571759087.6528714, 1571759087.656771, 1571759087.6606708, 1571759087.6645703, 1571759087.6684701, 1571759087.6723697, 1571759087.6762695, 1571759087.6801693, 1571759087.684069, 1571759087.6879687, 1571759087.6918683, 1571759087.695768, 1571759087.699668, 1571759087.7035675, 1571759087.7074673, 1571759087.711367, 1571759087.7152667, 1571759087.7191665, 1571759087.723066, 1571759087.726966, 1571759087.7308655, 1571759087.7347653, 1571759087.738665, 1571759087.7425647, 1571759087.7464645, 1571759087.750364, 1571759087.7542639, 1571759087.7581635, 1571759087.7620633, 1571759087.765963, 1571759087.7698627, 1571759087.7737625, 1571759087.777662, 1571759087.7815619, 1571759087.7854617, 1571759087.7893612, 1571759087.793261, 1571759087.7971606, 1571759087.8010604, 1571759087.8049603, 1571759087.8088598, 1571759087.8127596, 1571759087.8166592, 1571759087.820559, 1571759087.8244586, 1571759087.8283584, 1571759087.8322582, 1571759087.8361578, 1571759087.8400576, 1571759087.8439572, 1571759087.847857, 1571759087.8517568, 1571759087.8556564, 1571759087.8595562, 1571759087.8634558, 1571759087.8673556, 1571759087.8712554, 1571759087.875155, 1571759087.8790548, 1571759087.8829544, 1571759087.8868542, 1571759087.890754, 1571759087.8946536, 1571759087.8985534, 1571759087.902453, 1571759087.9063528, 1571759087.9102523, 1571759087.9141521, 1571759087.918052, 1571759087.9219515, 1571759087.9258513, 1571759087.929751, 1571759087.9336507, 1571759087.9375505, 1571759087.94145, 1571759087.94535, 1571759087.9492495, 1571759087.9531493, 1571759087.9570491, 1571759087.9609487, 1571759087.9648485, 1571759087.968748, 1571759087.972648, 1571759087.9765477, 1571759087.9804473, 1571759087.984347, 1571759087.9882467, 1571759087.9921465, 1571759087.996046, 1571759087.9999459, 1571759088.0038457, 1571759088.0077453, 1571759088.011645, 1571759088.0155447, 1571759088.0194445, 1571759088.0233443, 1571759088.0272439, 1571759088.0311437, 1571759088.0350432, 1571759088.038943, 1571759088.0428429, 1571759088.0467424, 1571759088.0506423, 1571759088.0545418, 1571759088.0584416, 1571759088.0623415, 1571759088.066241, 1571759088.0701408, 1571759088.0740404, 1571759088.0779402, 1571759088.0818398, 1571759088.0857396, 1571759088.0896394, 1571759088.093539, 1571759088.0974388, 1571759088.1013384, 1571759088.1052382, 1571759088.109138, 1571759088.1130376, 1571759088.1169374, 1571759088.120837, 1571759088.1247368, 1571759088.1286366, 1571759088.1325362, 1571759088.136436, 1571759088.1403356, 1571759088.1442354, 1571759088.1481352, 1571759088.1520348, 1571759088.1559346, 1571759088.1598341, 1571759088.163734, 1571759088.1676335, 1571759088.1715333, 1571759088.1754332, 1571759088.1793327, 1571759088.1832325, 1571759088.1871321, 1571759088.191032, 1571759088.1949317, 1571759088.1988313, 1571759088.2027311, 1571759088.2066307, 1571759088.2105305, 1571759088.2144303, 1571759088.21833, 1571759088.2222297, 1571759088.2261293, 1571759088.230029, 1571759088.233929, 1571759088.2378285, 1571759088.2417283, 1571759088.2456279, 1571759088.2495277, 1571759088.2534273, 1571759088.257327, 1571759088.261227, 1571759088.2651265, 1571759088.2690263, 1571759088.2729259, 1571759088.2768257, 1571759088.2807255, 1571759088.284625, 1571759088.2885249, 1571759088.2924244, 1571759088.2963243, 1571759088.300224, 1571759088.3041236, 1571759088.3080235, 1571759088.311923, 1571759088.3158228, 1571759088.3197227, 1571759088.3236222, 1571759088.327522, 1571759088.3314216, 1571759088.3353214, 1571759088.339221, 1571759088.3431208, 1571759088.3470206, 1571759088.3509202, 1571759088.35482, 1571759088.3587196, 1571759088.3626194, 1571759088.3665192, 1571759088.3704188, 1571759088.3743186, 1571759088.3782182, 1571759088.382118, 1571759088.3860178, 1571759088.3899174, 1571759088.3938172, 1571759088.3977168, 1571759088.4016166, 1571759088.4055161, 1571759088.409416, 1571759088.4133158, 1571759088.4172153, 1571759088.4211152, 1571759088.4250147, 1571759088.4289145, 1571759088.4328144, 1571759088.436714, 1571759088.4406137, 1571759088.4445133, 1571759088.4484131, 1571759088.452313, 1571759088.4562125, 1571759088.4601123, 1571759088.464012, 1571759088.4679117, 1571759088.4718115, 1571759088.475711, 1571759088.479611, 1571759088.4835105, 1571759088.4874103, 1571759088.49131, 1571759088.4952097, 1571759088.4991095, 1571759088.503009, 1571759088.506909, 1571759088.5108085, 1571759088.5147083, 1571759088.518608, 1571759088.5225077, 1571759088.5264075, 1571759088.530307, 1571759088.5342069, 1571759088.5381067, 1571759088.5420063, 1571759088.545906, 1571759088.5498056, 1571759088.5537055, 1571759088.5576053, 1571759088.5615048, 1571759088.5654047, 1571759088.5693042, 1571759088.573204, 1571759088.5771036, 1571759088.5810034, 1571759088.5849032, 1571759088.5888028, 1571759088.5927026, 1571759088.5966022, 1571759088.600502, 1571759088.6044018, 1571759088.6083014, 1571759088.6122012, 1571759088.6161008, 1571759088.6200006, 1571759088.6239004, 1571759088.6278, 1571759088.6316998, 1571759088.6355994, 1571759088.6394992, 1571759088.643399, 1571759088.6472986, 1571759088.6511984, 1571759088.655098, 1571759088.6589978, 1571759088.6628973, 1571759088.6667972, 1571759088.670697, 1571759088.6745965, 1571759088.6784964, 1571759088.682396, 1571759088.6862957, 1571759088.6901956, 1571759088.6940951, 1571759088.697995, 1571759088.7018945, 1571759088.7057943, 1571759088.7096941, 1571759088.7135937, 1571759088.7174935, 1571759088.721393, 1571759088.725293, 1571759088.7291927, 1571759088.7330923, 1571759088.7369921, 1571759088.7408917, 1571759088.7447915, 1571759088.748691, 1571759088.752591, 1571759088.7564907, 1571759088.7603903, 1571759088.76429, 1571759088.7681897, 1571759088.7720895, 1571759088.7759893, 1571759088.7798889, 1571759088.7837887, 1571759088.7876883, 1571759088.791588, 1571759088.7954879, 1571759088.7993875, 1571759088.8032873, 1571759088.8071868, 1571759088.8110867, 1571759088.8149865, 1571759088.818886, 1571759088.8227859, 1571759088.8266854, 1571759088.8305852, 1571759088.8344848, 1571759088.8383846, 1571759088.8422844, 1571759088.846184, 1571759088.8500838, 1571759088.8539834, 1571759088.8578832, 1571759088.861783, 1571759088.8656826, 1571759088.8695824, 1571759088.873482, 1571759088.8773818, 1571759088.8812816, 1571759088.8851812, 1571759088.889081, 1571759088.8929806, 1571759088.8968804, 1571759088.90078, 1571759088.9046798, 1571759088.9085796, 1571759088.9124792, 1571759088.916379, 1571759088.9202785, 1571759088.9241784, 1571759088.9280782, 1571759088.9319777, 1571759088.9358776, 1571759088.9397771, 1571759088.943677, 1571759088.9475768, 1571759088.9514763, 1571759088.9553761, 1571759088.9592757, 1571759088.9631755, 1571759088.9670753, 1571759088.970975, 1571759088.9748747, 1571759088.9787743, 1571759088.9826741, 1571759088.9865737, 1571759088.9904735, 1571759088.9943733, 1571759088.998273, 1571759089.0021727, 1571759089.0060723, 1571759089.009972, 1571759089.013872, 1571759089.0177715, 1571759089.0216713, 1571759089.0255709, 1571759089.0294707, 1571759089.0333705, 1571759089.03727, 1571759089.04117, 1571759089.0450695, 1571759089.0489693, 1571759089.052869, 1571759089.0567687, 1571759089.0606685, 1571759089.064568, 1571759089.0684679, 1571759089.0723674, 1571759089.0762672, 1571759089.080167, 1571759089.0840666, 1571759089.0879664, 1571759089.091866, 1571759089.0957658, 1571759089.0996656, 1571759089.1035652, 1571759089.107465, 1571759089.1113646, 1571759089.1152644, 1571759089.1191642, 1571759089.1230638, 1571759089.1269636, 1571759089.1308632, 1571759089.134763, 1571759089.1386628, 1571759089.1425624, 1571759089.1464622, 1571759089.1503618, 1571759089.1542616, 1571759089.1581612, 1571759089.162061, 1571759089.1659608, 1571759089.1698604, 1571759089.1737602, 1571759089.1776597, 1571759089.1815596, 1571759089.1854594, 1571759089.189359, 1571759089.1932588, 1571759089.1971583, 1571759089.2010581, 1571759089.204958, 1571759089.2088575, 1571759089.2127573, 1571759089.216657, 1571759089.2205567, 1571759089.2244565, 1571759089.2283561, 1571759089.232256, 1571759089.2361555, 1571759089.2400553, 1571759089.243955, 1571759089.2478547, 1571759089.2517545, 1571759089.255654, 1571759089.259554, 1571759089.2634535, 1571759089.2673533, 1571759089.271253, 1571759089.2751527, 1571759089.2790525, 1571759089.282952, 1571759089.286852, 1571759089.2907517, 1571759089.2946513, 1571759089.298551, 1571759089.3024507, 1571759089.3063505, 1571759089.3102503, 1571759089.3141499, 1571759089.3180497, 1571759089.3219492, 1571759089.325849, 1571759089.3297486, 1571759089.3336484, 1571759089.3375483, 1571759089.3414478, 1571759089.3453476, 1571759089.3492472, 1571759089.353147, 1571759089.3570468, 1571759089.3609464, 1571759089.3648462, 1571759089.3687458, 1571759089.3726456, 1571759089.3765454, 1571759089.380445, 1571759089.3843448, 1571759089.3882444, 1571759089.3921442, 1571759089.3960438, 1571759089.3999436, 1571759089.4038434, 1571759089.407743, 1571759089.4116428, 1571759089.4155424, 1571759089.4194422, 1571759089.423342, 1571759089.4272416, 1571759089.4311414, 1571759089.435041, 1571759089.4389408, 1571759089.4428406, 1571759089.4467402, 1571759089.45064, 1571759089.4545395, 1571759089.4584394, 1571759089.4623392, 1571759089.4662387, 1571759089.4701385, 1571759089.4740381, 1571759089.477938, 1571759089.4818375, 1571759089.4857373, 1571759089.4896371, 1571759089.4935367, 1571759089.4974365, 1571759089.501336, 1571759089.505236, 1571759089.5091357, 1571759089.5130353, 1571759089.516935, 1571759089.5208347, 1571759089.5247345, 1571759089.5286343, 1571759089.532534, 1571759089.5364337, 1571759089.5403333, 1571759089.544233, 1571759089.548133, 1571759089.5520325, 1571759089.5559323, 1571759089.5598319, 1571759089.5637317, 1571759089.5676312, 1571759089.571531, 1571759089.5754309, 1571759089.5793304, 1571759089.5832303, 1571759089.5871298, 1571759089.5910296, 1571759089.5949295, 1571759089.598829, 1571759089.6027288, 1571759089.6066284, 1571759089.6105282, 1571759089.614428, 1571759089.6183276, 1571759089.6222274, 1571759089.626127, 1571759089.6300268, 1571759089.6339266, 1571759089.6378262, 1571759089.641726, 1571759089.6456256, 1571759089.6495254, 1571759089.653425, 1571759089.6573248, 1571759089.6612246, 1571759089.6651242, 1571759089.669024, 1571759089.6729236, 1571759089.6768234, 1571759089.6807232, 1571759089.6846228, 1571759089.6885226, 1571759089.6924222, 1571759089.696322, 1571759089.7002218, 1571759089.7041214, 1571759089.7080212, 1571759089.7119207, 1571759089.7158206, 1571759089.7197204, 1571759089.72362, 1571759089.7275198, 1571759089.7314193, 1571759089.7353191, 1571759089.7392187, 1571759089.7431185, 1571759089.7470183, 1571759089.750918, 1571759089.7548177, 1571759089.7587173, 1571759089.762617, 1571759089.766517, 1571759089.7704165, 1571759089.7743163, 1571759089.778216, 1571759089.7821157, 1571759089.7860155, 1571759089.789915, 1571759089.793815, 1571759089.7977145, 1571759089.8016143, 1571759089.805514, 1571759089.8094137, 1571759089.8133135, 1571759089.817213, 1571759089.8211129, 1571759089.8250124, 1571759089.8289123, 1571759089.832812, 1571759089.8367116, 1571759089.8406115, 1571759089.844511, 1571759089.8484108, 1571759089.8523107, 1571759089.8562102, 1571759089.86011, 1571759089.8640096, 1571759089.8679094, 1571759089.8718092, 1571759089.8757088, 1571759089.8796086, 1571759089.8835082, 1571759089.887408, 1571759089.8913076, 1571759089.8952074, 1571759089.8991072, 1571759089.9030068, 1571759089.9069066, 1571759089.9108062, 1571759089.914706, 1571759089.9186058, 1571759089.9225054, 1571759089.9264052, 1571759089.9303048, 1571759089.9342046, 1571759089.9381044, 1571759089.942004, 1571759089.9459038, 1571759089.9498034, 1571759089.9537032, 1571759089.957603, 1571759089.9615026, 1571759089.9654024, 1571759089.969302, 1571759089.9732018, 1571759089.9771013, 1571759089.9810011, 1571759089.984901, 1571759089.9888005, 1571759089.9927003, 1571759089.9966, 1571759090.0004997, 1571759090.0043995, 1571759090.008299, 1571759090.012199, 1571759090.0160985, 1571759090.0199983, 1571759090.0238981, 1571759090.0277977, 1571759090.0316975, 1571759090.035597, 1571759090.039497, 1571759090.0433967, 1571759090.0472963, 1571759090.051196, 1571759090.0550957, 1571759090.0589955, 1571759090.062895, 1571759090.0667949, 1571759090.0706947, 1571759090.0745943, 1571759090.078494, 1571759090.0823936, 1571759090.0862935, 1571759090.0901933, 1571759090.0940928, 1571759090.0979927, 1571759090.1018922, 1571759090.105792, 1571759090.1096919, 1571759090.1135914, 1571759090.1174912, 1571759090.1213908, 1571759090.1252906, 1571759090.1291904, 1571759090.13309, 1571759090.1369898, 1571759090.1408894, 1571759090.1447892, 1571759090.1486888, 1571759090.1525886, 1571759090.1564884, 1571759090.160388, 1571759090.1642878, 1571759090.1681874, 1571759090.1720872, 1571759090.175987, 1571759090.1798866, 1571759090.1837864, 1571759090.187686, 1571759090.1915858, 1571759090.1954856, 1571759090.1993852, 1571759090.203285, 1571759090.2071846, 1571759090.2110844, 1571759090.2149842, 1571759090.2188838, 1571759090.2227836, 1571759090.2266831, 1571759090.230583, 1571759090.2344825, 1571759090.2383823, 1571759090.2422822, 1571759090.2461817, 1571759090.2500815, 1571759090.253981, 1571759090.257881, 1571759090.2617807, 1571759090.2656803, 1571759090.2695801, 1571759090.2734797, 1571759090.2773795, 1571759090.2812793, 1571759090.285179, 1571759090.2890787, 1571759090.2929783, 1571759090.296878, 1571759090.300778, 1571759090.3046775, 1571759090.3085773, 1571759090.3124769, 1571759090.3163767, 1571759090.3202763, 1571759090.324176, 1571759090.328076, 1571759090.3319755, 1571759090.3358753, 1571759090.3397748, 1571759090.3436747, 1571759090.3475745, 1571759090.351474, 1571759090.3553739, 1571759090.3592734, 1571759090.3631732, 1571759090.367073, 1571759090.3709726, 1571759090.3748724, 1571759090.378772, 1571759090.3826718, 1571759090.3865716, 1571759090.3904712, 1571759090.394371, 1571759090.3982706, 1571759090.4021704, 1571759090.40607, 1571759090.4099698, 1571759090.4138696, 1571759090.4177692, 1571759090.421669, 1571759090.4255686, 1571759090.4294684, 1571759090.4333682, 1571759090.4372678, 1571759090.4411676, 1571759090.4450672, 1571759090.448967, 1571759090.4528668, 1571759090.4567664, 1571759090.4606662, 1571759090.4645658, 1571759090.4684656, 1571759090.4723651, 1571759090.476265, 1571759090.4801648, 1571759090.4840643, 1571759090.4879642, 1571759090.4918637, 1571759090.4957635, 1571759090.4996634, 1571759090.503563, 1571759090.5074627, 1571759090.5113623, 1571759090.5152621, 1571759090.519162, 1571759090.5230615, 1571759090.5269613, 1571759090.530861, 1571759090.5347607, 1571759090.5386605, 1571759090.54256, 1571759090.54646, 1571759090.5503595, 1571759090.5542593, 1571759090.5581589, 1571759090.5620587, 1571759090.5659585, 1571759090.569858, 1571759090.573758, 1571759090.5776575, 1571759090.5815573, 1571759090.585457, 1571759090.5893567, 1571759090.5932565, 1571759090.597156, 1571759090.6010559, 1571759090.6049557, 1571759090.6088552, 1571759090.612755, 1571759090.6166546, 1571759090.6205544, 1571759090.6244543, 1571759090.6283538, 1571759090.6322536, 1571759090.6361532, 1571759090.640053, 1571759090.6439526, 1571759090.6478524, 1571759090.6517522, 1571759090.6556518, 1571759090.6595516, 1571759090.6634512, 1571759090.667351, 1571759090.6712508, 1571759090.6751504, 1571759090.6790502, 1571759090.6829498, 1571759090.6868496, 1571759090.6907494, 1571759090.694649, 1571759090.6985488, 1571759090.7024484, 1571759090.7063482, 1571759090.710248, 1571759090.7141476, 1571759090.7180474, 1571759090.721947, 1571759090.7258468, 1571759090.7297463, 1571759090.7336462, 1571759090.737546, 1571759090.7414455, 1571759090.7453454, 1571759090.749245, 1571759090.7531447, 1571759090.7570446, 1571759090.7609441, 1571759090.764844, 1571759090.7687435, 1571759090.7726433, 1571759090.7765431, 1571759090.7804427, 1571759090.7843425, 1571759090.788242, 1571759090.792142, 1571759090.7960417, 1571759090.7999413, 1571759090.803841, 1571759090.8077407, 1571759090.8116405, 1571759090.81554, 1571759090.81944, 1571759090.8233397, 1571759090.8272393, 1571759090.831139, 1571759090.8350387, 1571759090.8389385, 1571759090.8428383, 1571759090.8467379, 1571759090.8506377, 1571759090.8545372, 1571759090.858437, 1571759090.8623369, 1571759090.8662364, 1571759090.8701363, 1571759090.8740358, 1571759090.8779356, 1571759090.8818355, 1571759090.885735, 1571759090.8896348, 1571759090.8935344, 1571759090.8974342, 1571759090.9013338, 1571759090.9052336, 1571759090.9091334, 1571759090.913033, 1571759090.9169328, 1571759090.9208324, 1571759090.9247322, 1571759090.928632, 1571759090.9325316, 1571759090.9364314, 1571759090.940331, 1571759090.9442308, 1571759090.9481306, 1571759090.9520302, 1571759090.95593, 1571759090.9598296, 1571759090.9637294, 1571759090.967629, 1571759090.9715288, 1571759090.9754286, 1571759090.9793282, 1571759090.983228, 1571759090.9871275, 1571759090.9910274, 1571759090.9949272, 1571759090.9988267, 1571759091.0027266, 1571759091.0066261, 1571759091.010526, 1571759091.0144258, 1571759091.0183253, 1571759091.0222251, 1571759091.0261247, 1571759091.0300245, 1571759091.0339243, 1571759091.037824, 1571759091.0417237, 1571759091.0456233, 1571759091.049523, 1571759091.0534227, 1571759091.0573225, 1571759091.0612223, 1571759091.065122, 1571759091.0690217, 1571759091.0729213, 1571759091.076821, 1571759091.080721, 1571759091.0846205, 1571759091.0885203, 1571759091.0924199, 1571759091.0963197, 1571759091.1002195, 1571759091.104119, 1571759091.1080189, 1571759091.1119184, 1571759091.1158183, 1571759091.119718, 1571759091.1236176, 1571759091.1275175, 1571759091.131417, 1571759091.1353168, 1571759091.1392164, 1571759091.1431162, 1571759091.147016, 1571759091.1509156, 1571759091.1548154, 1571759091.158715, 1571759091.1626148, 1571759091.1665146, 1571759091.1704142, 1571759091.174314, 1571759091.1782136, 1571759091.1821134, 1571759091.1860132, 1571759091.1899128, 1571759091.1938126, 1571759091.1977122, 1571759091.201612, 1571759091.2055118, 1571759091.2094114, 1571759091.2133112, 1571759091.2172108, 1571759091.2211106, 1571759091.2250102, 1571759091.22891, 1571759091.2328098, 1571759091.2367094, 1571759091.2406092, 1571759091.2445087, 1571759091.2484086, 1571759091.2523084, 1571759091.256208, 1571759091.2601078, 1571759091.2640073, 1571759091.2679071, 1571759091.271807, 1571759091.2757065, 1571759091.2796063, 1571759091.283506, 1571759091.2874057, 1571759091.2913055, 1571759091.295205, 1571759091.299105, 1571759091.3030045, 1571759091.3069043, 1571759091.310804, 1571759091.3147037, 1571759091.3186035, 1571759091.322503, 1571759091.326403, 1571759091.3303025, 1571759091.3342023, 1571759091.338102, 1571759091.3420017, 1571759091.3459015, 1571759091.349801, 1571759091.3537009, 1571759091.3576007, 1571759091.3615003, 1571759091.3654, 1571759091.3692997, 1571759091.3731995, 1571759091.3770993, 1571759091.3809988, 1571759091.3848987, 1571759091.3887982, 1571759091.392698, 1571759091.3965976, 1571759091.4004974, 1571759091.4043972, 1571759091.4082968, 1571759091.4121966, 1571759091.4160962, 1571759091.419996], "samples": [[392.2789306640625, 105.57009887695312, 114.1380615234375, 271.3695373535156], [392.2789306640625, 105.57009887695312, 114.1380615234375, 271.3695373535156], [392.2789306640625, 105.57009887695312, 114.1380615234375, 271.3695373535156], [392.2789306640625, 105.57009887695312, 114.1380615234375, 271.3695373535156], [392.2789306640625, 105.57009887695312, 114.1380615234375, 271.3695373535156], [392.2789306640625, 105.57009887695312, 114.1380615234375, 271.3695373535156], [392.2789306640625, 105.57009887695312, 114.1380615234375, 271.3695373535156], [392.2789306640625, 105.57009887695312, 114.1380615234375, 271.3695373535156], [392.2789306640625, 105.57009887695312, 114.1380615234375, 271.3695373535156], [392.2789306640625, 105.57009887695312, 114.1380615234375, 271.3695373535156], [392.2789306640625, 105.57009887695312, 114.1380615234375, 271.3695373535156], [392.2789306640625, 105.57009887695312, 114.1380615234375, 271.3695373535156], [392.2789306640625, 105.57009887695312, 114.1380615234375, 271.3695373535156], [392.2789306640625, 105.57009887695312, 114.1380615234375, 271.3695373535156], [392.2789306640625, 105.57009887695312, 114.1380615234375, 271.3695373535156], [392.2789306640625, 105.57009887695312, 114.1380615234375, 271.3695373535156], [392.2789306640625, 105.57009887695312, 114.1380615234375, 271.3695373535156], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [376.522705078125, 100.69605255126953, 136.47059631347656, 292.9884948730469], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [383.2882385253906, 74.90177154541016, 130.98260498046875, 306.96563720703125], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [336.88763427734375, 73.64308166503906, 104.19398498535156, 293.626708984375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [274.58758544921875, 76.20217895507812, 74.68125915527344, 278.0941162109375], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [265.1054992675781, 78.20420837402344, 62.44452667236328, 268.6744384765625], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [272.49169921875, 70.27299499511719, 66.47007751464844, 263.4476623535156], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [188.40115356445312, 47.63222885131836, 101.1907730102539, 206.01280212402344], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [176.48989868164062, 44.53120040893555, 123.78546905517578, 196.3528594970703], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [203.0428466796875, 71.6862564086914, 137.92282104492188, 194.63800048828125], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [205.28567504882812, 83.41722869873047, 128.37440490722656, 184.344482421875], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [220.14703369140625, 88.01338958740234, 111.1525650024414, 182.10540771484375], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [214.20762634277344, 85.2366943359375, 118.928466796875, 164.4886932373047], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [215.26292419433594, 100.71687316894531, 122.80172729492188, 175.4759063720703], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [217.06399536132812, 146.95477294921875, 151.9053192138672, 166.9267120361328], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [200.4075469970703, 154.55577087402344, 156.31752014160156, 169.25917053222656], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [170.8690643310547, 148.29371643066406, 162.05038452148438, 152.8548583984375], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [185.08456420898438, 149.53506469726562, 154.53201293945312, 155.35009765625], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [168.27542114257812, 149.67431640625, 153.9453125, 134.996826171875], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [165.22703552246094, 122.41438293457031, 120.40874481201172, 132.04208374023438], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [181.5919952392578, 93.1505355834961, 114.29907989501953, 123.66645050048828], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [185.64564514160156, 54.489044189453125, 116.79691314697266, 135.25079345703125], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [180.66839599609375, 48.99543380737305, 64.5208511352539, 138.00054931640625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [175.64393615722656, 34.193336486816406, 57.48793029785156, 138.38287353515625], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [180.72462463378906, 42.129844665527344, 58.74256896972656, 160.6296844482422], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [194.41049194335938, 65.68537139892578, 66.3168716430664, 158.83616638183594], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [226.66586303710938, 99.62130737304688, 89.08330535888672, 171.7395782470703], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [230.33731079101562, 115.61957550048828, 131.2781982421875, 175.6410675048828], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [251.62847900390625, 125.21000671386719, 134.76416015625, 171.31936645507812], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.0395812988281, 151.57603454589844, 155.45079040527344, 177.4805450439453], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [301.69964599609375, 183.5237579345703, 166.42320251464844, 205.2581329345703], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [302.4249572753906, 191.71609497070312, 148.23155212402344, 194.15185546875], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [313.66912841796875, 181.2642364501953, 138.3992919921875, 191.19273376464844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [296.5184631347656, 203.5956573486328, 150.9621124267578, 191.77622985839844], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [337.438232421875, 279.5988464355469, 158.5170440673828, 173.6520538330078], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [347.52398681640625, 308.67010498046875, 174.00596618652344, 176.76377868652344], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [328.869140625, 276.8001403808594, 197.91323852539062, 157.3170166015625], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [314.2266540527344, 269.6197204589844, 198.98875427246094, 155.7328338623047], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [305.4526672363281, 253.44102478027344, 194.91012573242188, 145.00926208496094], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [271.7646179199219, 212.94345092773438, 160.10549926757812, 140.9419403076172], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [234.74334716796875, 140.95724487304688, 115.6352310180664, 129.6513671875], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [216.36508178710938, 107.62982177734375, 78.0075454711914, 134.2601318359375], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [382.1728820800781, 109.32951354980469, 65.7439956665039, 361.0794372558594], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [541.7028198242188, 107.93101501464844, 64.53514862060547, 560.5934448242188], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [472.04766845703125, 72.33340454101562, 58.68594741821289, 547.272705078125], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [462.0196533203125, 49.1130485534668, 60.88640594482422, 520.1393432617188], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.7757873535156, 45.207637786865234, 58.17060089111328, 514.3623046875], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [454.16595458984375, 44.24108123779297, 51.399986267089844, 499.3009338378906], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [434.4974670410156, 42.6766471862793, 50.90950393676758, 473.81005859375], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [507.72882080078125, 44.39222717285156, 57.19882583618164, 592.3428955078125], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [517.9243774414062, 44.16644287109375, 55.87684631347656, 609.9450073242188], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [515.18505859375, 41.39319610595703, 51.672943115234375, 596.4679565429688], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [320.3713684082031, 35.92377853393555, 43.62724304199219, 369.58465576171875], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [295.8044738769531, 36.93318176269531, 47.59867477416992, 357.2554016113281], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [342.2168273925781, 51.60190963745117, 54.65337371826172, 418.0516662597656], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [329.3697204589844, 51.838680267333984, 54.46562194824219, 427.7841491699219], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [313.9104919433594, 48.29569625854492, 57.81106948852539, 418.6275939941406], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [312.24908447265625, 48.35919189453125, 66.99909210205078, 419.55474853515625], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [315.3222961425781, 51.54580307006836, 77.29417419433594, 418.5049133300781], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [242.86337280273438, 46.19407653808594, 78.00045013427734, 294.7807312011719], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [235.1339569091797, 50.22843551635742, 73.80095672607422, 287.52191162109375], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [236.01519775390625, 69.38203430175781, 77.5958480834961, 283.8726501464844], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [215.96963500976562, 74.91358947753906, 81.64939880371094, 252.1310272216797], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [200.18470764160156, 84.96758270263672, 93.09519958496094, 262.03173828125], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [184.75051879882812, 71.79669189453125, 88.1291275024414, 233.95123291015625], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [178.86355590820312, 72.79379272460938, 86.10027313232422, 220.94969177246094], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [179.31466674804688, 67.64591217041016, 80.31044006347656, 207.43313598632812], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [219.8458251953125, 53.105018615722656, 80.7735595703125, 274.7965087890625], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [348.77569580078125, 40.90237808227539, 95.57137298583984, 527.6740112304688], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [395.710693359375, 45.79764938354492, 96.58199310302734, 581.7540283203125], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [426.249755859375, 78.07390594482422, 107.08785247802734, 604.0859985351562], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [439.1597900390625, 93.45475769042969, 101.26636505126953, 614.4939575195312], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [421.31591796875, 73.58417510986328, 112.57841491699219, 643.127197265625], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [326.6007385253906, 70.27377319335938, 75.3016128540039, 461.1299743652344], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [307.8887023925781, 79.36962890625, 75.2227554321289, 455.2261657714844], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [288.1737060546875, 76.0201644897461, 89.60270690917969, 429.5095520019531], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [292.08258056640625, 71.89781188964844, 106.9232406616211, 438.6578674316406], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [232.02442932128906, 62.04420471191406, 103.33320617675781, 352.89862060546875], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [191.37977600097656, 50.952857971191406, 95.91069030761719, 249.47425842285156], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [168.6758270263672, 50.085506439208984, 92.2054672241211, 225.02743530273438], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [143.57681274414062, 35.93373489379883, 79.89483642578125, 219.68780517578125], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [150.1384735107422, 32.10246658325195, 78.18264770507812, 222.80174255371094], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [154.4634246826172, 34.08712387084961, 57.93754959106445, 187.06576538085938], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [162.8734893798828, 39.94194030761719, 51.72346115112305, 172.18983459472656], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [159.74081420898438, 26.29522132873535, 50.49585723876953, 136.75515747070312], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [151.48956298828125, 25.957143783569336, 43.71752166748047, 123.2706298828125], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [150.41162109375, 25.158388137817383, 37.7000732421875, 106.86878967285156], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [153.4281463623047, 25.023666381835938, 40.812347412109375, 98.78668212890625], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [164.812255859375, 24.2690372467041, 36.27436828613281, 103.90253448486328], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [167.72047424316406, 24.604923248291016, 33.85041046142578, 104.57537841796875], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [203.1676483154297, 37.56715393066406, 40.055301666259766, 125.30384826660156], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [194.07711791992188, 37.956485748291016, 40.03433609008789, 116.2349853515625], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [192.2457733154297, 42.73784637451172, 41.58985137939453, 117.05589294433594], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [188.6863555908203, 44.38077163696289, 41.47786331176758, 120.87751007080078], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [179.313720703125, 39.68266677856445, 40.259254455566406, 115.62578582763672], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [184.9210662841797, 38.877845764160156, 39.82070541381836, 118.6087417602539], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [179.755126953125, 36.2700080871582, 38.24247741699219, 117.85467529296875], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [174.8660125732422, 39.61249542236328, 36.428916931152344, 127.16999053955078], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [155.1043243408203, 36.957435607910156, 36.21174240112305, 139.9256591796875], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [150.29287719726562, 32.86285400390625, 35.689353942871094, 139.00064086914062], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [143.53271484375, 35.921016693115234, 53.83112716674805, 125.36942291259766], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [142.64529418945312, 36.91608810424805, 54.858699798583984, 122.33750915527344], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [140.70631408691406, 35.312435150146484, 52.47800064086914, 127.53372192382812], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [134.6266632080078, 46.343345642089844, 56.11416244506836, 126.61585235595703], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [136.19784545898438, 63.02815628051758, 56.76606750488281, 128.17922973632812], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.15676879882812, 66.84515380859375, 54.82606506347656, 125.3126220703125], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [132.7838134765625, 67.45085144042969, 59.156864166259766, 122.88983154296875], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [136.96022033691406, 57.08573913574219, 57.80469512939453, 105.59228515625], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [141.9129638671875, 54.9677848815918, 55.20792007446289, 101.09532165527344], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [126.43280792236328, 53.83073043823242, 52.138267517089844, 100.609375], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [105.48173522949219, 43.92348861694336, 39.77799987792969, 97.03491973876953], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [103.55004119873047, 44.44178009033203, 31.575225830078125, 101.86703491210938], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.06620788574219, 39.81565856933594, 33.70926284790039, 114.07156372070312], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.87042236328125, 29.45387840270996, 36.80057907104492, 116.7119369506836], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [107.50487518310547, 17.325634002685547, 36.380069732666016, 119.31009674072266], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [105.01152801513672, 17.634511947631836, 52.69841003417969, 121.7582778930664], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.210693359375, 17.846330642700195, 51.143394470214844, 134.7266845703125], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [108.04891204833984, 17.895326614379883, 51.338924407958984, 134.28353881835938], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [110.59526824951172, 21.252540588378906, 57.720088958740234, 136.90184020996094], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [120.0427017211914, 29.64393424987793, 62.00066375732422, 141.78932189941406], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [135.99024963378906, 32.10329818725586, 66.09967041015625, 149.96974182128906], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [130.13059997558594, 29.11998176574707, 69.34561920166016, 156.46055603027344], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [136.44960021972656, 29.362836837768555, 68.64032745361328, 157.20730590820312], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [141.94822692871094, 30.11082649230957, 65.55103302001953, 159.41676330566406], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [159.48638916015625, 35.44929122924805, 63.351707458496094, 163.7641143798828], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [219.51271057128906, 54.76015853881836, 58.06694030761719, 160.31375122070312], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [213.6850128173828, 56.496028900146484, 59.52431106567383, 155.0010223388672], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [211.16400146484375, 54.36989212036133, 59.641326904296875, 173.0149383544922], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [209.18655395507812, 52.13859558105469, 61.033653259277344, 177.60166931152344], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [205.2334747314453, 42.39710998535156, 65.66368865966797, 187.2845001220703], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [188.43893432617188, 39.83872985839844, 62.935821533203125, 190.82321166992188], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [191.34060668945312, 39.55629348754883, 56.55101013183594, 181.01075744628906], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [179.9274444580078, 37.79631805419922, 53.90842819213867, 175.16981506347656], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [170.5682830810547, 37.598873138427734, 47.520572662353516, 175.2619171142578], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [140.6882781982422, 32.731910705566406, 41.7935676574707, 161.74496459960938], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [103.55326843261719, 23.600149154663086, 37.07059860229492, 144.52890014648438], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [100.0510025024414, 22.625228881835938, 40.923187255859375, 137.48207092285156], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [118.31065368652344, 26.110370635986328, 66.45020294189453, 138.41183471679688], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [127.44940948486328, 26.709125518798828, 69.89615631103516, 131.26097106933594], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [122.92807006835938, 23.213544845581055, 55.117984771728516, 124.96700286865234], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.56088256835938, 23.403560638427734, 46.74272537231445, 115.36322784423828], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [126.63666534423828, 23.38617515563965, 47.42815017700195, 116.79620361328125], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [129.28887939453125, 21.283418655395508, 49.0341796875, 109.98802185058594], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [135.81214904785156, 21.671207427978516, 47.30765151977539, 103.36149597167969], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [133.71730041503906, 19.4356746673584, 47.638519287109375, 100.44245910644531], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [138.20257568359375, 21.911806106567383, 55.4936408996582, 116.5023422241211], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [152.8119354248047, 27.529733657836914, 57.41960906982422, 118.86598205566406], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [132.4254150390625, 28.748380661010742, 44.24958038330078, 114.36692810058594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [133.5304412841797, 34.34693908691406, 46.43718719482422, 114.31663513183594], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [139.32083129882812, 36.74580001831055, 57.59428024291992, 111.0188217163086], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [143.21429443359375, 39.39652633666992, 76.82769775390625, 120.48064422607422], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.4322509765625, 39.218360900878906, 74.49209594726562, 126.15049743652344], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [144.15528869628906, 43.274803161621094, 112.68250274658203, 134.94020080566406], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [147.93466186523438, 38.54657745361328, 147.14881896972656, 143.06822204589844], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [191.15933227539062, 39.92381286621094, 143.4407958984375, 144.0125732421875], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [183.22769165039062, 31.21613311767578, 130.50820922851562, 134.02366638183594], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.25267028808594, 31.105796813964844, 128.84779357910156, 134.02040100097656], [169.65245056152344, 27.62712287902832, 130.1659698486328, 137.31312561035156], [169.65245056152344, 27.62712287902832, 130.1659698486328, 137.31312561035156], [169.65245056152344, 27.62712287902832, 130.1659698486328, 137.31312561035156], [169.65245056152344, 27.62712287902832, 130.1659698486328, 137.31312561035156], [169.65245056152344, 27.62712287902832, 130.1659698486328, 137.31312561035156], [169.65245056152344, 27.62712287902832, 130.1659698486328, 137.31312561035156], [169.65245056152344, 27.62712287902832, 130.1659698486328, 137.31312561035156], [169.65245056152344, 27.62712287902832, 130.1659698486328, 137.31312561035156], [169.65245056152344, 27.62712287902832, 130.1659698486328, 137.31312561035156], [169.65245056152344, 27.62712287902832, 130.1659698486328, 137.31312561035156], [169.65245056152344, 27.62712287902832, 130.1659698486328, 137.31312561035156], [169.65245056152344, 27.62712287902832, 130.1659698486328, 137.31312561035156], [169.65245056152344, 27.62712287902832, 130.1659698486328, 137.31312561035156], [169.65245056152344, 27.62712287902832, 130.1659698486328, 137.31312561035156], [169.65245056152344, 27.62712287902832, 130.1659698486328, 137.31312561035156], [169.65245056152344, 27.62712287902832, 130.1659698486328, 137.31312561035156], [169.65245056152344, 27.62712287902832, 130.1659698486328, 137.31312561035156], [169.65245056152344, 27.62712287902832, 130.1659698486328, 137.31312561035156], [169.65245056152344, 27.62712287902832, 130.1659698486328, 137.31312561035156]], "channel_names": ["ch1", "ch2", "ch3", "ch4"]}, "alpha_absolute": {"name": "alpha_absolute", "fs": 9.879072529647415, "emp_fs": 9.879072529647415, "timestamps": [1571759075.563551, 1571759075.6647751, 1571759075.765999, 1571759075.8672233, 1571759075.9684472, 1571759076.0696714, 1571759076.1708953, 1571759076.2721195, 1571759076.3733435, 1571759076.4745677, 1571759076.5757918, 1571759076.6770158, 1571759076.77824, 1571759076.879464, 1571759076.980688, 1571759077.081912, 1571759077.1831362, 1571759077.2843602, 1571759077.3855844, 1571759077.4868083, 1571759077.5880325, 1571759077.6892567, 1571759077.7904806, 1571759077.8917048, 1571759077.9929287, 1571759078.094153, 1571759078.1953769, 1571759078.296601, 1571759078.397825, 1571759078.4990492, 1571759078.6002734, 1571759078.7014973, 1571759078.8027215, 1571759078.9039454, 1571759079.0051696, 1571759079.1063936, 1571759079.2076178, 1571759079.3088417, 1571759079.410066, 1571759079.51129, 1571759079.612514, 1571759079.7137382, 1571759079.8149621, 1571759079.9161863, 1571759080.0174103, 1571759080.1186345, 1571759080.2198584, 1571759080.3210826, 1571759080.4223065, 1571759080.5235307, 1571759080.624755, 1571759080.7259789, 1571759080.827203, 1571759080.928427, 1571759081.0296512, 1571759081.130875, 1571759081.2320993, 1571759081.3333232, 1571759081.4345474, 1571759081.5357716, 1571759081.6369956, 1571759081.7382197, 1571759081.8394437, 1571759081.9406679, 1571759082.0418918, 1571759082.143116, 1571759082.24434, 1571759082.3455641, 1571759082.446788, 1571759082.5480123, 1571759082.6492364, 1571759082.7504604, 1571759082.8516846, 1571759082.9529085, 1571759083.0541327, 1571759083.1553566, 1571759083.2565808, 1571759083.3578048, 1571759083.459029, 1571759083.5602531, 1571759083.661477, 1571759083.7627013, 1571759083.8639252, 1571759083.9651494, 1571759084.0663733, 1571759084.1675975, 1571759084.2688215, 1571759084.3700457, 1571759084.4712698, 1571759084.5724938, 1571759084.673718, 1571759084.774942, 1571759084.876166, 1571759084.97739, 1571759085.0786142, 1571759085.1798382, 1571759085.2810624, 1571759085.3822863, 1571759085.4835105, 1571759085.5847347, 1571759085.6859586, 1571759085.7871828, 1571759085.8884068, 1571759085.989631, 1571759086.090855, 1571759086.192079, 1571759086.293303, 1571759086.3945272, 1571759086.4957514, 1571759086.5969753, 1571759086.6981995, 1571759086.7994235, 1571759086.9006476, 1571759087.0018716, 1571759087.1030958, 1571759087.2043197, 1571759087.305544, 1571759087.4067678, 1571759087.507992, 1571759087.6092162, 1571759087.7104402, 1571759087.8116643, 1571759087.9128883, 1571759088.0141125, 1571759088.1153364, 1571759088.2165606, 1571759088.3177845, 1571759088.4190087, 1571759088.520233, 1571759088.6214569, 1571759088.722681, 1571759088.823905, 1571759088.9251292, 1571759089.0263531, 1571759089.1275773, 1571759089.2288013, 1571759089.3300254, 1571759089.4312496, 1571759089.5324736, 1571759089.6336977, 1571759089.7349217, 1571759089.8361459, 1571759089.9373698, 1571759090.038594, 1571759090.139818, 1571759090.2410421, 1571759090.342266, 1571759090.4434903, 1571759090.5447145, 1571759090.6459384, 1571759090.7471626, 1571759090.8483865, 1571759090.9496107, 1571759091.0508347, 1571759091.1520588, 1571759091.2532828, 1571759091.354507], "samples": [[0.8844779133796692, 0.3154609501361847, 0.09835358709096909, 0.39613255858421326], [0.9172981977462769, 0.31877079606056213, 0.11716006696224213, 0.3929678797721863], [0.9210320711135864, 0.3119674324989319, 0.12034506350755692, 0.5058242082595825], [0.9210320711135864, 0.3075256943702698, 0.11664466559886932, 0.5528658628463745], [0.9230324029922485, 0.31511393189430237, 0.11376085877418518, 0.6086246967315674], [0.9249072670936584, 0.32686883211135864, 0.12181537598371506, 0.6396368145942688], [0.9249072670936584, 0.32686883211135864, 0.13362376391887665, 0.6332592964172363], [0.9249072670936584, 0.3210446238517761, 0.17403367161750793, 0.6259552836418152], [0.9262293577194214, 0.329891562461853, 0.2670934200286865, 0.6259552836418152], [0.9248670935630798, 0.3687630295753479, 0.38811057806015015, 0.6259552836418152], [0.9334549903869629, 0.3813728392124176, 0.46953603625297546, 0.6419796347618103], [0.9361563920974731, 0.38463249802589417, 0.4981873631477356, 0.7166525721549988], [0.9388159513473511, 0.388765811920166, 0.4982086420059204, 0.7828100919723511], [0.9388159513473511, 0.388765811920166, 0.5019211769104004, 0.8029008507728577], [0.9388159513473511, 0.388765811920166, 0.5019211769104004, 0.8029008507728577], [0.9279406070709229, 0.38523510098457336, 0.5033984780311584, 0.8029008507728577], [0.8552505373954773, 0.3621789515018463, 0.5202156901359558, 0.8029008507728577], [0.7674993276596069, 0.32308584451675415, 0.5476911067962646, 0.7901384234428406], [0.7179276943206787, 0.3172042965888977, 0.5669094324111938, 0.8210796117782593], [0.6812199950218201, 0.3172276020050049, 0.5887598395347595, 0.832345187664032], [0.6686267256736755, 0.31117820739746094, 0.6278196573257446, 0.8412909507751465], [0.6742419600486755, 0.304487019777298, 0.635647177696228, 0.8355982303619385], [0.7042310833930969, 0.30526572465896606, 0.635647177696228, 0.8325258493423462], [0.7172242403030396, 0.3074764907360077, 0.635647177696228, 0.8309091329574585], [0.7172242403030396, 0.3074166774749756, 0.6341087818145752, 0.8253856897354126], [0.7109212875366211, 0.30422428250312805, 0.6118318438529968, 0.8256847262382507], [0.6886083483695984, 0.2713695466518402, 0.5804228186607361, 0.8336399793624878], [0.6502323746681213, 0.26837819814682007, 0.5414541363716125, 0.833648145198822], [0.6268879771232605, 0.31990450620651245, 0.5238509774208069, 0.8130437135696411], [0.658698558807373, 0.37171733379364014, 0.5192827582359314, 0.7986239790916443], [0.7570542097091675, 0.3665708303451538, 0.5351274609565735, 0.7986239790916443], [0.8258519768714905, 0.36069512367248535, 0.5675066113471985, 0.7986239790916443], [0.865578830242157, 0.3528226613998413, 0.5761271715164185, 0.7986239790916443], [0.8774117827415466, 0.346000999212265, 0.5642620325088501, 0.7936210036277771], [0.8795031309127808, 0.38396090269088745, 0.541109561920166, 0.7576923370361328], [0.8795031309127808, 0.3924257755279541, 0.5373683571815491, 0.7016637325286865], [0.8795031309127808, 0.3967304527759552, 0.4977870285511017, 0.6247896552085876], [0.8795031309127808, 0.39661669731140137, 0.4592047333717346, 0.5633179545402527], [0.8639025688171387, 0.39661669731140137, 0.4477461278438568, 0.5488011837005615], [0.8323087096214294, 0.39661669731140137, 0.4459964334964752, 0.5800029039382935], [0.8167889714241028, 0.39342743158340454, 0.4459964334964752, 0.575539231300354], [0.8167889714241028, 0.3885655999183655, 0.4419209659099579, 0.5620549321174622], [0.8167889714241028, 0.3899478316307068, 0.4375043511390686, 0.517074465751648], [0.8167889714241028, 0.38293007016181946, 0.4375043511390686, 0.4703516662120819], [0.8167889714241028, 0.11464649438858032, 0.44156786799430847, 0.40988972783088684], [0.8167889714241028, 0.1334097683429718, 0.46082803606987, 0.40988972783088684], [0.8167889714241028, 0.1371845006942749, 0.47387173771858215, 0.40988972783088684], [0.8167889714241028, 0.13859961926937103, 0.4414820671081543, 0.40988972783088684], [0.8167889714241028, 0.13859961926937103, 0.36436179280281067, 0.40988972783088684], [0.8167889714241028, 0.09070584177970886, 0.2782464623451233, 0.40988972783088684], [0.8167889714241028, 0.06405087560415268, 0.24475084245204926, 0.40988972783088684], [0.8167889714241028, 0.029782218858599663, 0.24166074395179749, 0.40988972783088684], [0.8167889714241028, 0.06346435099840164, 0.24559496343135834, 0.40988972783088684], [0.8167889714241028, 0.08838892728090286, 0.24583664536476135, 0.40988972783088684], [0.8167889714241028, 0.12334782630205154, 0.2570440173149109, 0.40988972783088684], [0.8167889714241028, 0.2176498919725418, 0.2798987030982971, 0.40988972783088684], [0.8167889714241028, 0.27906176447868347, 0.3300621807575226, 0.40988972783088684], [0.8167889714241028, 0.285165011882782, 0.3954200744628906, 0.40988972783088684], [0.8167889714241028, 0.27940279245376587, 0.47178298234939575, 0.40988972783088684], [0.8167889714241028, 0.27940279245376587, 0.538401186466217, 0.40988972783088684], [0.8167889714241028, 0.27940279245376587, 0.5505838394165039, 0.40988972783088684], [0.8167889714241028, 0.27940279245376587, 0.5505838394165039, 0.40988972783088684], [0.8167889714241028, 0.27135545015335083, 0.5505838394165039, 0.40988972783088684], [0.8167889714241028, 0.308837890625, 0.5505838394165039, 0.40988972783088684], [0.8167889714241028, 0.421397864818573, 0.5505838394165039, 0.40988972783088684], [0.8167889714241028, 0.543124794960022, 0.5505838394165039, 0.40988972783088684], [0.8167889714241028, 0.5726887583732605, 0.5505838394165039, 0.40988972783088684], [0.8167889714241028, 0.5726887583732605, 0.5505838394165039, 0.40988972783088684], [0.8167889714241028, 0.5726887583732605, 0.5505838394165039, 0.40988972783088684], [0.8167889714241028, 0.5726887583732605, 0.5505838394165039, 0.40988972783088684], [0.8167889714241028, 0.5724351406097412, 0.5656394958496094, 0.40988972783088684], [0.8167889714241028, 0.56369549036026, 0.6170793175697327, 0.40988972783088684], [0.8167889714241028, 0.5348314046859741, 0.6111809015274048, 0.40988972783088684], [0.8167889714241028, 0.5212233066558838, 0.6111809015274048, 0.40988972783088684], [0.8167889714241028, 0.5257277488708496, 0.5967227220535278, 0.40988972783088684], [0.8167889714241028, 0.5350176692008972, 0.5550583600997925, 0.40988972783088684], [0.8167889714241028, 0.5419877171516418, 0.5133280158042908, 0.40988972783088684], [0.8167889714241028, 0.5455565452575684, 0.502562403678894, 0.40988972783088684], [0.8167889714241028, 0.5486255288124084, 0.5201241374015808, 0.40988972783088684], [0.8167889714241028, 0.5489994883537292, 0.5265952944755554, 0.40988972783088684], [0.6496827602386475, 0.5489994883537292, 0.5269774198532104, 0.40988972783088684], [0.6496827602386475, 0.4709297716617584, 0.5269774198532104, 0.40988972783088684], [0.6593380570411682, 0.30746546387672424, 0.5269774198532104, 0.40988972783088684], [0.6763783097267151, 0.1608140766620636, 0.5269774198532104, 0.40988972783088684], [0.6947619318962097, 0.12436783313751221, 0.5269774198532104, 0.40988972783088684], [0.7090125679969788, 0.13296355307102203, 0.5210539102554321, 0.40988972783088684], [0.7110602855682373, 0.13990718126296997, 0.48883911967277527, 0.40988972783088684], [0.7110602855682373, 0.14745114743709564, 0.366558700799942, 0.15984344482421875], [0.7110602855682373, 0.15164685249328613, 0.2920839488506317, 0.16691537201404572], [0.7110602855682373, 0.14764955639839172, 0.2850271761417389, 0.1970243901014328], [0.7110602855682373, 0.1442156732082367, 0.2798924744129181, 0.21927495300769806], [0.7110602855682373, 0.13829419016838074, 0.2630768120288849, 0.24311789870262146], [0.6450009346008301, 0.14439818263053894, 0.23954452574253082, 0.2472282350063324], [0.554368257522583, 0.1370142698287964, 0.18830016255378723, 0.24861425161361694], [0.4483273923397064, 0.10664427280426025, 0.1371304839849472, 0.25530651211738586], [0.40579262375831604, 0.08806981891393661, 0.10711129009723663, 0.2567800283432007], [0.39330750703811646, 0.0931185707449913, 0.08422724157571793, 0.26610660552978516], [0.6797415614128113, 0.09762328863143921, 0.0692138820886612, 0.2684452533721924], [0.710545539855957, 0.09762328863143921, 0.0710407942533493, 0.2684452533721924], [0.7233462333679199, 0.09747184067964554, 0.07911096513271332, 0.2719636857509613], [0.7270554900169373, 0.09624398499727249, 0.08296921849250793, 0.3565651476383209], [0.7293108105659485, 0.09519681334495544, 0.10370524972677231, 0.4444732666015625], [0.7315699458122253, 0.09263576567173004, 0.14882811903953552, 0.5366179943084717], [0.7328950762748718, 0.08565685898065567, 0.1989147663116455, 0.5691539645195007], [0.7328950762748718, 0.10150553286075592, 0.2000846266746521, 0.5691539645195007], [0.7328950762748718, 0.13062390685081482, 0.20407603681087494, 0.5691539645195007], [0.7328950762748718, 0.15387143194675446, 0.21687842905521393, 0.5679502487182617], [0.7328950762748718, 0.17316031455993652, 0.2221020758152008, 0.5673052072525024], [0.7328950762748718, 0.16273663938045502, 0.22530485689640045, 0.5673052072525024], [0.7328950762748718, 0.16043315827846527, 0.22530485689640045, 0.5673052072525024], [0.73504239320755, 0.16921238601207733, 0.22530485689640045, 0.5673052072525024], [0.7353407144546509, 0.18924522399902344, 0.22530485689640045, 0.5673052072525024], [0.696022629737854, 0.20704856514930725, 0.22530485689640045, 0.5673052072525024], [0.6103795766830444, 0.21542783081531525, 0.22147342562675476, 0.571497917175293], [0.5182881355285645, 0.21542783081531525, 0.2175493687391281, 0.6045902371406555], [0.5024694800376892, 0.21542783081531525, 0.21271438896656036, 0.6168382167816162], [0.4972423017024994, 0.21542783081531525, 0.2034820169210434, 0.6108331680297852], [0.4972423017024994, 0.21542783081531525, 0.20023655891418457, 0.5869855284690857], [0.478929728269577, 0.21621179580688477, 0.20279982686042786, 0.5746206641197205], [0.4683822989463806, 0.23453660309314728, 0.22887003421783447, 0.667879581451416], [0.4651622474193573, 0.287268728017807, 0.3617367744445801, 0.7685185670852661], [0.46492627263069153, 0.3262086808681488, 0.45023560523986816, 0.8077318072319031], [0.46492627263069153, 0.31055983901023865, 0.5005062818527222, 0.8181789517402649], [0.46492627263069153, 0.26086869835853577, 0.513617992401123, 0.8277692794799805], [0.47282692790031433, 0.2381761223077774, 0.513617992401123, 0.836561918258667], [0.47282692790031433, 0.24224793910980225, 0.5143365263938904, 0.836893618106842], [0.47282692790031433, 0.2551235556602478, 0.5143365263938904, 0.836893618106842], [0.47282692790031433, 0.2570125162601471, 0.5143365263938904, 0.8364103436470032], [0.47282692790031433, 0.2570125162601471, 0.5143365263938904, 0.8475698232650757], [0.4614955186843872, 0.2570125162601471, 0.5143365263938904, 0.8633903861045837], [0.3884736895561218, 0.2570125162601471, 0.5143365263938904, 0.8633903861045837], [0.27580487728118896, 0.2570125162601471, 0.5143365263938904, 0.8633903861045837], [0.20041275024414062, 0.24790558218955994, 0.5143365263938904, 0.8633903861045837], [0.20041275024414062, 0.2421574890613556, 0.5143365263938904, 0.8633903861045837], [0.20041275024414062, 0.24093613028526306, 0.5115202069282532, 0.8629162907600403], [0.20041275024414062, 0.2424735426902771, 0.49511072039604187, 0.8532052040100098], [0.20041275024414062, 0.24324455857276917, 0.45511168241500854, 0.8071951866149902], [0.3821004331111908, 0.23032666742801666, 0.36632421612739563, 0.7159351110458374], [0.4594748318195343, 0.1624206155538559, 0.2711239159107208, 0.6710954904556274], [0.40182918310165405, 0.040274716913700104, 0.2428535670042038, 0.6556289792060852], [0.4122874140739441, -0.054300811141729355, 0.23770473897457123, 0.6835880875587463], [0.459848016500473, -0.03175637498497963, 0.22841805219650269, 0.7189273834228516], [0.5090237259864807, 0.06423946470022202, 0.17548763751983643, 0.7390267848968506], [0.523089587688446, 0.1570926159620285, 0.04692470282316208, 0.7481558322906494], [0.5253196954727173, 0.18695619702339172, -0.029017405584454536, 0.6939384937286377], [0.5413603782653809, 0.190053328871727, 0.00033689034171402454, 0.6986654996871948], [0.5644717812538147, 0.1945824772119522, 0.02199453115463257, 0.6993158459663391], [0.5913425087928772, 0.19818250834941864, 0.029462387785315514, 0.7038258910179138], [0.6115090847015381, 0.20640382170677185, 0.03421369940042496, 0.7211081385612488], [0.6329702138900757, 0.24629764258861542, 0.06449257582426071, 0.7776104211807251], [0.6402785181999207, 0.3313138782978058, 0.17427092790603638, 0.8449564576148987], [0.6518663763999939, 0.3957977890968323, 0.32578781247138977, 0.9003744125366211], [0.6581303477287292, 0.4015880525112152, 0.4407753646373749, 0.9299056529998779], [0.6581303477287292, 0.4053083062171936, 0.4985258877277374, 0.9299056529998779], [0.6704102754592896, 0.4091387987136841, 0.5307798385620117, 0.9299056529998779], [0.6932507157325745, 0.414982408285141, 0.5319328308105469, 0.9299056529998779], [0.6932507157325745, 0.414982408285141, 0.5319328308105469, 0.9259536266326904]], "channel_names": ["ch1", "ch2", "ch3", "ch4"]}, "beta_absolute": {"name": "beta_absolute", "fs": 9.879080954535002, "emp_fs": 9.879080954535002, "timestamps": [1571759075.5635893, 1571759075.6648133, 1571759075.7660372, 1571759075.8672614, 1571759075.9684854, 1571759076.0697093, 1571759076.1709332, 1571759076.2721572, 1571759076.3733814, 1571759076.4746053, 1571759076.5758293, 1571759076.6770532, 1571759076.7782772, 1571759076.8795013, 1571759076.9807253, 1571759077.0819492, 1571759077.1831732, 1571759077.2843971, 1571759077.385621, 1571759077.4868453, 1571759077.5880692, 1571759077.6892931, 1571759077.790517, 1571759077.891741, 1571759077.9929652, 1571759078.0941892, 1571759078.195413, 1571759078.296637, 1571759078.397861, 1571759078.4990852, 1571759078.6003091, 1571759078.701533, 1571759078.802757, 1571759078.903981, 1571759079.0052052, 1571759079.106429, 1571759079.207653, 1571759079.308877, 1571759079.410101, 1571759079.511325, 1571759079.612549, 1571759079.713773, 1571759079.814997, 1571759079.916221, 1571759080.0174448, 1571759080.118669, 1571759080.219893, 1571759080.321117, 1571759080.4223409, 1571759080.5235648, 1571759080.624789, 1571759080.726013, 1571759080.827237, 1571759080.9284608, 1571759081.0296848, 1571759081.130909, 1571759081.232133, 1571759081.3333569, 1571759081.4345808, 1571759081.5358047, 1571759081.637029, 1571759081.7382529, 1571759081.8394768, 1571759081.9407008, 1571759082.0419247, 1571759082.143149, 1571759082.2443728, 1571759082.3455968, 1571759082.4468207, 1571759082.5480447, 1571759082.6492686, 1571759082.7504928, 1571759082.8517168, 1571759082.9529407, 1571759083.0541646, 1571759083.1553886, 1571759083.2566128, 1571759083.3578367, 1571759083.4590607, 1571759083.5602846, 1571759083.6615086, 1571759083.7627327, 1571759083.8639567, 1571759083.9651806, 1571759084.0664046, 1571759084.1676285, 1571759084.2688527, 1571759084.3700767, 1571759084.4713006, 1571759084.5725245, 1571759084.6737485, 1571759084.7749724, 1571759084.8761966, 1571759084.9774206, 1571759085.0786445, 1571759085.1798685, 1571759085.2810924, 1571759085.3823166, 1571759085.4835405, 1571759085.5847645, 1571759085.6859884, 1571759085.7872124, 1571759085.8884366, 1571759085.9896605, 1571759086.0908844, 1571759086.1921084, 1571759086.2933323, 1571759086.3945565, 1571759086.4957805, 1571759086.5970044, 1571759086.6982284, 1571759086.7994523, 1571759086.9006765, 1571759087.0019004, 1571759087.1031244, 1571759087.2043483, 1571759087.3055723, 1571759087.4067965, 1571759087.5080204, 1571759087.6092443, 1571759087.7104683, 1571759087.8116922, 1571759087.9129162, 1571759088.0141404, 1571759088.1153643, 1571759088.2165883, 1571759088.3178122, 1571759088.4190361, 1571759088.5202603, 1571759088.6214843, 1571759088.7227082, 1571759088.8239322, 1571759088.925156, 1571759089.0263803, 1571759089.1276042, 1571759089.2288282, 1571759089.3300521, 1571759089.431276, 1571759089.5325003, 1571759089.6337242, 1571759089.7349482, 1571759089.836172, 1571759089.937396, 1571759090.03862, 1571759090.1398442, 1571759090.2410681, 1571759090.342292, 1571759090.443516, 1571759090.54474, 1571759090.6459641, 1571759090.747188, 1571759090.848412, 1571759090.949636, 1571759091.05086, 1571759091.152084, 1571759091.253308, 1571759091.354532], "samples": [[0.9922956228256226, 0.2513061761856079, 0.179692342877388, 0.8780522346496582], [0.988714873790741, 0.23440907895565033, 0.1481686681509018, 0.8533937931060791], [0.9863212704658508, 0.21967822313308716, 0.1194864809513092, 0.8265973329544067], [0.9827781319618225, 0.20533853769302368, 0.08936306089162827, 0.8313934803009033], [0.9771702885627747, 0.18947474658489227, 0.0573367103934288, 0.8568006753921509], [0.9682849645614624, 0.16906209290027618, 0.02448233962059021, 0.8829659223556519], [0.9540305137634277, 0.14448560774326324, -0.01030951552093029, 0.8998662829399109], [0.933181881904602, 0.11523254960775375, -0.045570679008960724, 0.907653272151947], [0.9058924913406372, 0.08203741908073425, -0.07349143177270889, 0.9096430540084839], [0.8764071464538574, 0.048929858952760696, -0.08159570395946503, 0.9097762107849121], [0.8621082901954651, 0.022784842178225517, -0.06547422707080841, 0.9145718812942505], [0.8529210686683655, 0.00843045674264431, -0.033609095960855484, 0.9121518731117249], [0.8501412272453308, 1.4861414456390776e-05, 0.00024139932065736502, 0.9126344323158264], [0.851959228515625, -0.011979701928794384, 0.027265235781669617, 0.9120541214942932], [0.8543190360069275, -0.0280118677765131, 0.04750668257474899, 0.9082828164100647], [0.8424461483955383, -0.0382864810526371, 0.06794566661119461, 0.9022122621536255], [0.8276916146278381, -0.03585277870297432, 0.09461919963359833, 0.8950603604316711], [0.8106337785720825, -0.027241116389632225, 0.1277616322040558, 0.8904280662536621], [0.7913089394569397, -0.02366413176059723, 0.16213306784629822, 0.8723626136779785], [0.77097487449646, -0.02721957489848137, 0.19660887122154236, 0.8474794030189514], [0.7555271983146667, -0.030029891058802605, 0.23244832456111908, 0.8278276920318604], [0.7533952593803406, -0.024493897333741188, 0.2676561772823334, 0.8205856084823608], [0.7690342664718628, -0.011728811077773571, 0.2962785065174103, 0.8243826627731323], [0.7975619435310364, 0.001959866378456354, 0.3144911527633667, 0.8355573415756226], [0.8269034028053284, 0.010675918310880661, 0.3221319913864136, 0.8512110710144043], [0.846938967704773, 0.013101909309625626, 0.3216487765312195, 0.866698682308197], [0.8541719317436218, 0.00967371929436922, 0.3173525929450989, 0.8748267292976379], [0.8530605435371399, 0.0046183704398572445, 0.31446269154548645, 0.8730695247650146], [0.8518173694610596, 0.0010267205070704222, 0.3165808320045471, 0.8670304417610168], [0.8595803380012512, -0.003786978777498007, 0.3206557035446167, 0.8624439835548401], [0.8807589411735535, -0.0030883178114891052, 0.32155510783195496, 0.8588156700134277], [0.912101149559021, -0.010481501929461956, 0.3168776333332062, 0.8530089855194092], [0.9442158341407776, -0.02349352464079857, 0.308206707239151, 0.8607605695724487], [0.9701518416404724, -0.03321913629770279, 0.2981352210044861, 0.873965859413147], [0.9898540377616882, -0.050164587795734406, 0.2847527265548706, 0.8904848098754883], [1.0058273077011108, -0.06752335280179977, 0.26410719752311707, 0.9043045043945312], [1.0176962614059448, -0.09371142834424973, 0.23587852716445923, 0.9107270836830139], [1.0222276449203491, -0.11662811785936356, 0.20541413128376007, 0.9077274203300476], [1.0194079875946045, -0.1416025012731552, 0.17840343713760376, 0.8940703868865967], [1.0151965618133545, -0.15822042524814606, 0.15531079471111298, 0.8658292889595032], [1.01871919631958, -0.16653527319431305, 0.13650383055210114, 0.8396013379096985], [1.0351399183273315, -0.17320959270000458, 0.12215668708086014, 0.8124647736549377], [1.060590147972107, -0.12770892679691315, 0.11061722040176392, 0.7974808216094971], [1.0868821144104004, -0.09897936880588531, 0.09818528592586517, 0.7943233847618103], [1.1049795150756836, -0.07370922714471817, 0.08476640284061432, 0.7967388033866882], [1.1068590879440308, -0.06878059357404709, 0.07121403515338898, 0.7967388033866882], [1.1068590879440308, -0.06922629475593567, 0.05761002376675606, 0.7967388033866882], [1.1068590879440308, -0.0774356946349144, 0.04127492383122444, 0.7967388033866882], [1.1068590879440308, -0.09261797368526459, 0.02062157914042473, 0.7967388033866882], [1.1068590879440308, -0.10014629364013672, -0.002120981691405177, 0.7967388033866882], [1.1068590879440308, -0.10501136630773544, -0.022633692249655724, 0.7967388033866882], [1.1068590879440308, -0.10413612425327301, -0.038018498569726944, 0.7967388033866882], [1.1068590879440308, -0.10881830006837845, -0.046675704419612885, 0.7967388033866882], [1.1068590879440308, -0.10924145579338074, -0.04840482771396637, 0.7967388033866882], [1.1068590879440308, -0.10949359089136124, -0.043298572301864624, 0.7967388033866882], [1.1068590879440308, -0.11191236227750778, -0.035242822021245956, 0.7967388033866882], [1.1068590879440308, -0.11635211110115051, -0.02941594459116459, 0.7967388033866882], [1.1068590879440308, -0.1412387490272522, -0.025078721344470978, 0.7967388033866882], [1.1068590879440308, -0.16340769827365875, -0.017411867156624794, 0.7967388033866882], [1.1068590879440308, -0.18227815628051758, -0.00280650332570076, 0.7967388033866882], [1.1068590879440308, -0.19815999269485474, 0.017521632835268974, 0.7967388033866882], [1.1068590879440308, -0.20995889604091644, 0.0415671169757843, 0.7967388033866882], [1.1068590879440308, -0.21031251549720764, 0.07043593376874924, 0.7967388033866882], [1.1068590879440308, -0.18691200017929077, 0.10265841335058212, 0.7967388033866882], [1.1068590879440308, -0.13125957548618317, 0.13312560319900513, 0.7967388033866882], [1.1068590879440308, -0.05746424198150635, 0.1556669920682907, 0.7967388033866882], [1.1068590879440308, 0.009964470751583576, 0.16898007690906525, 0.7967388033866882], [1.1068590879440308, 0.05292416736483574, 0.17627380788326263, 0.7967388033866882], [1.1068590879440308, 0.07180771976709366, 0.183099165558815, 0.7967388033866882], [1.1068590879440308, 0.07853889465332031, 0.1930837482213974, 0.7967388033866882], [1.1068590879440308, 0.0833694338798523, 0.20605383813381195, 0.7967388033866882], [1.1068590879440308, 0.08819533884525299, 0.2178303301334381, 0.7967388033866882], [1.1068590879440308, 0.09184844046831131, 0.22328127920627594, 0.7967388033866882], [1.1068590879440308, 0.09475885331630707, 0.21987250447273254, 0.7967388033866882], [1.1068590879440308, 0.09776163101196289, 0.20877665281295776, 0.7967388033866882], [1.1068590879440308, 0.10065299272537231, 0.19338931143283844, 0.7967388033866882], [1.1068590879440308, 0.10294356942176819, 0.17732840776443481, 0.7967388033866882], [1.1068590879440308, 0.10297562181949615, 0.16073425114154816, 0.7967388033866882], [1.1068590879440308, 0.09461158514022827, 0.14508171379566193, 0.7967388033866882], [1.1068590879440308, 0.06624995172023773, 0.13432584702968597, 0.7967388033866882], [0.8157916069030762, 0.01325136050581932, 0.13425742089748383, 0.7967388033866882], [0.7969086170196533, -0.05473842844367027, 0.1452258825302124, 0.7967388033866882], [0.7830684185028076, -0.11102129518985748, 0.16120947897434235, 0.7967388033866882], [0.7803983688354492, -0.1361369788646698, 0.1751766949892044, 0.7967388033866882], [0.7910977005958557, -0.13884136080741882, 0.18297164142131805, 0.7967388033866882], [0.8111048936843872, -0.13880276679992676, 0.1828373521566391, 0.7967388033866882], [0.8304032683372498, -0.1438712626695633, 0.1762789636850357, 0.7967388033866882], [0.8419484496116638, -0.15280863642692566, 0.16710355877876282, 0.6507371068000793], [0.8461209535598755, -0.16396848857402802, 0.1585283875465393, 0.6450297832489014], [0.8461209535598755, -0.17606604099273682, 0.1515117585659027, 0.6659050583839417], [0.8461209535598755, -0.18696686625480652, 0.14641591906547546, 0.6973994970321655], [0.8461209535598755, -0.19438305497169495, 0.14300447702407837, 0.7240715026855469], [0.845999538898468, -0.19962935149669647, 0.14100146293640137, 0.7391761541366577], [0.846804678440094, -0.20604296028614044, 0.13885441422462463, 0.7433646321296692], [0.8508224487304688, -0.21299119293689728, 0.1346977949142456, 0.7418004274368286], [0.8605266213417053, -0.21891988813877106, 0.12512356042861938, 0.7404164671897888], [0.8781439065933228, -0.2238461673259735, 0.10813799500465393, 0.7442511916160583], [0.8854381442070007, -0.23061664402484894, 0.08499344438314438, 0.7563616633415222], [0.895173966884613, -0.2421366274356842, 0.058784253895282745, 0.7763838768005371], [0.8998959064483643, -0.2582018971443176, 0.03270421177148819, 0.8038908243179321], [0.8966906070709229, -0.27441224455833435, 0.009496666491031647, 0.832310676574707], [0.8953986763954163, -0.2853497862815857, -0.0058892033994197845, 0.8588902354240417], [0.9067742824554443, -0.2879764139652252, -0.008430162444710732, 0.8800761699676514], [0.9253066778182983, -0.2842627167701721, 0.00280577689409256, 0.8921284079551697], [0.9253057837486267, -0.27867215871810913, 0.02247530221939087, 0.8929335474967957], [0.9111925363540649, -0.27580755949020386, 0.04292675107717514, 0.88429194688797], [0.8916877508163452, -0.27845633029937744, 0.05833946168422699, 0.8713801503181458], [0.8740264773368835, -0.2837580442428589, 0.07007300108671188, 0.860123336315155], [0.8589773774147034, -0.2847304046154022, 0.08188498020172119, 0.8543403744697571], [0.8439105153083801, -0.2773791551589966, 0.09234379231929779, 0.8550053238868713], [0.8271163105964661, -0.2655598819255829, 0.09749055653810501, 0.8593536615371704], [0.8094766736030579, -0.2589492201805115, 0.09542617946863174, 0.8615087866783142], [0.794913113117218, -0.2641679346561432, 0.08903617411851883, 0.8561303019523621], [0.7784435749053955, -0.28157731890678406, 0.08303752541542053, 0.8438039422035217], [0.7617405652999878, -0.30460602045059204, 0.08068224787712097, 0.8315145373344421], [0.7434365153312683, -0.32485753297805786, 0.0834031030535698, 0.8256394863128662], [0.718020498752594, -0.3370218276977539, 0.09076618403196335, 0.8273019790649414], [0.6814044117927551, -0.3412761986255646, 0.10085347294807434, 0.8353058695793152], [0.6386147737503052, -0.34023770689964294, 0.11094193160533905, 0.8496374487876892], [0.6043239831924438, -0.3378103971481323, 0.11739246547222137, 0.8683817982673645], [0.5892630815505981, -0.33584511280059814, 0.11786076426506042, 0.8858630657196045], [0.5837392807006836, -0.3321010172367096, 0.11204157024621964, 0.8974021673202515], [0.5789923071861267, -0.3258720636367798, 0.09866684675216675, 0.9040430188179016], [0.5729284286499023, -0.3207479417324066, 0.07699151337146759, 0.9108123183250427], [0.612580418586731, -0.3215184509754181, 0.050431642681360245, 0.9200745224952698], [0.6204508543014526, -0.32638952136039734, 0.028423812240362167, 0.9304721355438232], [0.6354532837867737, -0.3264927268028259, 0.01967429555952549, 0.9402291774749756], [0.6521990299224854, -0.3158419728279114, 0.024321911856532097, 0.9484233260154724], [0.6634601354598999, -0.29631903767585754, 0.0370212197303772, 0.9516822099685669], [0.6657397150993347, -0.27608782052993774, 0.053032081574201584, 0.9455833435058594], [0.6628015041351318, -0.26097553968429565, 0.07364360243082047, 0.9411655068397522], [0.6641780138015747, -0.25485870242118835, 0.09963972121477127, 0.9329395890235901], [0.6807615756988525, -0.25853240489959717, 0.12527108192443848, 0.9233326315879822], [0.6807615756988525, -0.2703360319137573, 0.14113681018352509, 0.911648690700531], [0.6807615756988525, -0.28551357984542847, 0.14318805932998657, 0.8983625173568726], [0.6807615756988525, -0.29870328307151794, 0.13462939858436584, 0.8860089778900146], [0.6807615756988525, -0.3072963356971741, 0.12289495766162872, 0.887887716293335], [0.8258109092712402, -0.3108828067779541, 0.11430130898952484, 0.8922236561775208], [0.7947348356246948, -0.3093228042125702, 0.11161814630031586, 0.8854531645774841], [0.7455532550811768, -0.3016042113304138, 0.11698610335588455, 0.8647506237030029], [0.7507900595664978, -0.29032525420188904, 0.12827762961387634, 0.8369452357292175], [0.7674772143363953, -0.28067368268966675, 0.14000307023525238, 0.8112161755561829], [0.7893486618995667, -0.2767552435398102, 0.14656847715377808, 0.791392982006073], [0.8083754181861877, -0.2774534225463867, 0.14565058052539825, 0.7785515189170837], [0.8172674775123596, -0.27928590774536133, 0.13869114220142365, 0.7734830975532532], [0.8134264349937439, -0.27949705719947815, 0.12602780759334564, 0.7707236409187317], [0.8015568256378174, -0.2756325602531433, 0.10703427344560623, 0.7684637904167175], [0.790386438369751, -0.2650918960571289, 0.08512748032808304, 0.7679257988929749], [0.7862197756767273, -0.24081866443157196, 0.06933621317148209, 0.7688837051391602], [0.7880240082740784, -0.1987694352865219, 0.06941114366054535, 0.7698191404342651], [0.7841818928718567, -0.14531415700912476, 0.09113404899835587, 0.763224184513092], [0.7902727127075195, -0.09382802248001099, 0.12891890108585358, 0.7533082962036133], [0.8064457774162292, -0.05362014099955559, 0.17063960433006287, 0.7493754029273987], [0.8277220726013184, -0.024751512333750725, 0.20255467295646667, 0.7561808824539185], [0.8462487459182739, -0.002228714060038328, 0.21625372767448425, 0.7670599818229675], [0.8577705025672913, 0.017336489632725716, 0.21336987614631653, 0.7716845273971558], [0.8578947186470032, 0.03312839940190315, 0.20161454379558563, 0.7654176354408264]], "channel_names": ["ch1", "ch2", "ch3", "ch4"]}, "delta_absolute": {"name": "delta_absolute", "fs": 9.879086771727673, "emp_fs": 9.879086771727673, "timestamps": [1571759075.5636117, 1571759075.6648357, 1571759075.7660596, 1571759075.8672836, 1571759075.9685075, 1571759076.0697315, 1571759076.1709554, 1571759076.2721794, 1571759076.3734033, 1571759076.474627, 1571759076.575851, 1571759076.677075, 1571759076.7782989, 1571759076.8795228, 1571759076.9807467, 1571759077.0819707, 1571759077.1831946, 1571759077.2844186, 1571759077.3856425, 1571759077.4868665, 1571759077.5880904, 1571759077.6893144, 1571759077.7905383, 1571759077.8917623, 1571759077.9929862, 1571759078.0942101, 1571759078.195434, 1571759078.2966578, 1571759078.3978817, 1571759078.4991057, 1571759078.6003296, 1571759078.7015536, 1571759078.8027775, 1571759078.9040015, 1571759079.0052254, 1571759079.1064494, 1571759079.2076733, 1571759079.3088973, 1571759079.4101212, 1571759079.5113451, 1571759079.612569, 1571759079.713793, 1571759079.815017, 1571759079.916241, 1571759080.0174646, 1571759080.1186886, 1571759080.2199125, 1571759080.3211365, 1571759080.4223604, 1571759080.5235844, 1571759080.6248083, 1571759080.7260323, 1571759080.8272562, 1571759080.9284801, 1571759081.029704, 1571759081.130928, 1571759081.232152, 1571759081.333376, 1571759081.4345999, 1571759081.5358238, 1571759081.6370478, 1571759081.7382715, 1571759081.8394954, 1571759081.9407194, 1571759082.0419433, 1571759082.1431673, 1571759082.2443912, 1571759082.3456151, 1571759082.446839, 1571759082.548063, 1571759082.649287, 1571759082.750511, 1571759082.8517349, 1571759082.9529588, 1571759083.0541828, 1571759083.1554067, 1571759083.2566307, 1571759083.3578546, 1571759083.4590783, 1571759083.5603023, 1571759083.6615262, 1571759083.7627501, 1571759083.863974, 1571759083.965198, 1571759084.066422, 1571759084.167646, 1571759084.2688699, 1571759084.3700938, 1571759084.4713178, 1571759084.5725417, 1571759084.6737657, 1571759084.7749896, 1571759084.8762136, 1571759084.9774375, 1571759085.0786614, 1571759085.1798854, 1571759085.281109, 1571759085.382333, 1571759085.483557, 1571759085.584781, 1571759085.6860049, 1571759085.7872288, 1571759085.8884528, 1571759085.9896767, 1571759086.0909007, 1571759086.1921246, 1571759086.2933486, 1571759086.3945725, 1571759086.4957964, 1571759086.5970204, 1571759086.6982443, 1571759086.7994683, 1571759086.9006922, 1571759087.001916, 1571759087.1031399, 1571759087.2043638, 1571759087.3055878, 1571759087.4068117, 1571759087.5080357, 1571759087.6092596, 1571759087.7104836, 1571759087.8117075, 1571759087.9129314, 1571759088.0141554, 1571759088.1153793, 1571759088.2166033, 1571759088.3178272, 1571759088.4190512, 1571759088.520275, 1571759088.621499, 1571759088.722723, 1571759088.8239467, 1571759088.9251707, 1571759089.0263946, 1571759089.1276186, 1571759089.2288425, 1571759089.3300664, 1571759089.4312904, 1571759089.5325143, 1571759089.6337383, 1571759089.7349622, 1571759089.8361862, 1571759089.93741, 1571759090.038634, 1571759090.139858, 1571759090.241082, 1571759090.342306, 1571759090.4435298, 1571759090.5447536, 1571759090.6459775, 1571759090.7472014, 1571759090.8484254, 1571759090.9496493, 1571759091.0508733, 1571759091.1520972, 1571759091.2533212, 1571759091.354545], "samples": [[1.0278494358062744, 0.8665482401847839, 0.5687931180000305, 0.6404027938842773], [1.0999583005905151, 0.8775323033332825, 0.5757100582122803, 0.6161655187606812], [1.1297447681427002, 0.8920720815658569, 0.5876896977424622, 0.7037667632102966], [1.1393985748291016, 0.8982111811637878, 0.6073048710823059, 0.7361754775047302], [1.1448338031768799, 0.8996386528015137, 0.6286091804504395, 0.7533785700798035], [1.152499794960022, 0.900249183177948, 0.6429030895233154, 0.7632283568382263], [1.1621713638305664, 0.9029574990272522, 0.6492081880569458, 0.7590779066085815], [1.1767083406448364, 0.9079388380050659, 0.64970463514328, 0.7588393688201904], [1.1851365566253662, 0.9153901934623718, 0.6597617268562317, 0.7636173963546753], [1.1752607822418213, 0.9233739376068115, 0.699743926525116, 0.7693905234336853], [1.1729944944381714, 0.9294471144676208, 0.766064465045929, 0.7720102071762085], [1.1610420942306519, 0.9282617568969727, 0.8433137536048889, 0.7573536038398743], [1.144284725189209, 0.9224295616149902, 0.9022374153137207, 0.7513749599456787], [1.129055380821228, 0.9302465319633484, 0.9438470005989075, 0.7551256418228149], [1.1120097637176514, 0.947249710559845, 0.9785415530204773, 0.754166305065155], [1.0104835033416748, 0.9643864631652832, 1.0183809995651245, 0.7398548722267151], [0.927888810634613, 0.9815397262573242, 1.0616377592086792, 0.7175268530845642], [0.9003193974494934, 0.9984064102172852, 1.0981801748275757, 0.6488993763923645], [0.9091193675994873, 1.009163737297058, 1.1159331798553467, 0.6170069575309753], [0.9211995005607605, 1.014352798461914, 1.1167281866073608, 0.5945913195610046], [0.9215381741523743, 1.015554666519165, 1.1099894046783447, 0.5604244470596313], [0.9107980728149414, 1.0128133296966553, 1.1037691831588745, 0.5214956998825073], [0.8873311281204224, 1.0071488618850708, 1.100396990776062, 0.47835078835487366], [0.8564215898513794, 0.999118447303772, 1.0948117971420288, 0.43737468123435974], [0.8248870968818665, 0.9861719608306885, 1.0778558254241943, 0.398466020822525], [0.7979466915130615, 0.967200756072998, 1.045916199684143, 0.36710643768310547], [0.7969892024993896, 0.9631012678146362, 0.9996919631958008, 0.3681986331939697], [0.8202478289604187, 0.9877141714096069, 0.9608097672462463, 0.39487120509147644], [0.8444393873214722, 1.0289043188095093, 0.9465935826301575, 0.4248199760913849], [0.8697676062583923, 1.081816554069519, 0.9456501603126526, 0.4740568697452545], [0.9035623669624329, 1.0640318393707275, 0.9318281412124634, 0.5603709816932678], [0.9374297857284546, 1.0362112522125244, 0.9016711115837097, 0.6604309678077698], [0.9586949348449707, 1.0110573768615723, 0.8713516592979431, 0.682675302028656], [0.9738144874572754, 1.0079792737960815, 0.8693037629127502, 0.7061280608177185], [0.9916233420372009, 1.1196807622909546, 0.9054205417633057, 0.7333139181137085], [1.0085716247558594, 1.2154746055603027, 0.9650659561157227, 0.7661458849906921], [1.0307471752166748, 1.302168607711792, 1.0170015096664429, 0.8040266036987305], [1.052788257598877, 1.3421485424041748, 1.0489039421081543, 0.8455662131309509], [1.071402907371521, 1.3862545490264893, 1.0625345706939697, 0.8905565738677979], [1.0869139432907104, 1.4336029291152954, 1.0681883096694946, 0.9190719723701477], [1.102928638458252, 1.4834604263305664, 1.0710221529006958, 0.9370715022087097], [1.114925742149353, 1.5291045904159546, 1.0697460174560547, 0.9689380526542664], [1.1172951459884644, 1.490852952003479, 1.0585601329803467, 0.9859569072723389], [1.1184266805648804, 1.4208507537841797, 1.0311126708984375, 0.9930314421653748], [1.1259623765945435, 1.3077272176742554, 0.9953838586807251, 0.9877545237541199], [1.1272870302200317, 1.2471323013305664, 0.9645493626594543, 0.9877545237541199], [1.1272870302200317, 1.1997708082199097, 0.9398139119148254, 0.9877545237541199], [1.1272870302200317, 1.1613578796386719, 0.9139988422393799, 0.9877545237541199], [1.1272870302200317, 1.1252208948135376, 0.8827294707298279, 0.9877545237541199], [1.1272870302200317, 0.9870753288269043, 0.8342851996421814, 0.9877545237541199], [1.1272870302200317, 0.7804463505744934, 0.7558861374855042, 0.9877545237541199], [1.1272870302200317, 0.3231521546840668, 0.6641075015068054, 0.9877545237541199], [1.1272870302200317, 0.3300507068634033, 0.5868837833404541, 0.9877545237541199], [1.1272870302200317, 0.34657976031303406, 0.5418565273284912, 0.9877545237541199], [1.1272870302200317, 0.36601677536964417, 0.5114777088165283, 0.9877545237541199], [1.1272870302200317, 0.40023258328437805, 0.48717331886291504, 0.9877545237541199], [1.1272870302200317, 0.4466954171657562, 0.4756554663181305, 0.9877545237541199], [1.1272870302200317, 0.4942508935928345, 0.48136502504348755, 0.9877545237541199], [1.1272870302200317, 0.5404413342475891, 0.4942038953304291, 0.9877545237541199], [1.1272870302200317, 0.5665925741195679, 0.5046334862709045, 0.9877545237541199], [1.1272870302200317, 0.5755299925804138, 0.5205525159835815, 0.9877545237541199], [1.1272870302200317, 0.5764606595039368, 0.5485358238220215, 0.9877545237541199], [1.1272870302200317, 0.5843381881713867, 0.5742703676223755, 0.9877545237541199], [1.1272870302200317, 0.6018932461738586, 0.6102666854858398, 0.9877545237541199], [1.1272870302200317, 0.6232399344444275, 0.6653224229812622, 0.9877545237541199], [1.1272870302200317, 0.6410356163978577, 0.7319813370704651, 0.9877545237541199], [1.1272870302200317, 0.6505283117294312, 0.7907397150993347, 0.9877545237541199], [1.1272870302200317, 0.6521361470222473, 0.8364266753196716, 0.9877545237541199], [1.1272870302200317, 0.6422829031944275, 0.8656702041625977, 0.9877545237541199], [1.1272870302200317, 0.631317138671875, 0.8839343190193176, 0.9877545237541199], [1.1272870302200317, 0.6285168528556824, 0.8960729837417603, 0.9877545237541199], [1.1272870302200317, 0.6496318578720093, 0.9031944870948792, 0.9877545237541199], [1.1272870302200317, 0.6893157958984375, 0.9000025391578674, 0.9877545237541199], [1.1272870302200317, 0.7318602800369263, 0.893676221370697, 0.9877545237541199], [1.1272870302200317, 0.7630940675735474, 0.8896303176879883, 0.9877545237541199], [1.1272870302200317, 0.7770203351974487, 0.8922079801559448, 0.9877545237541199], [1.1272870302200317, 0.777193009853363, 0.901678740978241, 0.9877545237541199], [1.1272870302200317, 0.7692782878875732, 0.9198634624481201, 0.9877545237541199], [1.1272870302200317, 0.76273113489151, 0.931178867816925, 0.9877545237541199], [1.1272870302200317, 0.7566898465156555, 0.9242939352989197, 0.9877545237541199], [0.732478678226471, 0.7460429668426514, 0.8985982537269592, 0.9877545237541199], [0.700589120388031, 0.7335098385810852, 0.8620063066482544, 0.9877545237541199], [0.6698513031005859, 0.725220263004303, 0.8251917958259583, 0.9877545237541199], [0.631964921951294, 0.7243303060531616, 0.7955606579780579, 0.9877545237541199], [0.6086193323135376, 0.7228330373764038, 0.7717723250389099, 0.9877545237541199], [0.6104472279548645, 0.7093642354011536, 0.7510601282119751, 0.9877545237541199], [0.6198551058769226, 0.6666980385780334, 0.7300147414207458, 0.9877545237541199], [0.6225016713142395, 0.5930217504501343, 0.7156374454498291, 0.6895420551300049], [0.6110625267028809, 0.5002292394638062, 0.7036835551261902, 0.6480906009674072], [0.6110625267028809, 0.4172711670398712, 0.6884213089942932, 0.604151725769043], [0.6110625267028809, 0.37267085909843445, 0.6598262190818787, 0.5823593735694885], [0.6110625267028809, 0.3701479732990265, 0.6104452013969421, 0.5962290167808533], [0.5991203188896179, 0.3811072111129761, 0.5417110919952393, 0.632973849773407], [0.5777103900909424, 0.3834841549396515, 0.4670020043849945, 0.6663126349449158], [0.5522881746292114, 0.37974050641059875, 0.403700590133667, 0.6824793219566345], [0.5346789360046387, 0.38153505325317383, 0.34902045130729675, 0.6808404326438904], [0.5335179567337036, 0.3907963037490845, 0.30402910709381104, 0.6707350611686707], [0.509572446346283, 0.3992617726325989, 0.25445717573165894, 0.6555842757225037], [0.49354088306427, 0.4117352068424225, 0.21001961827278137, 0.6403833627700806], [0.45196428894996643, 0.43322890996932983, 0.1833556741476059, 0.6343979239463806], [0.371772438287735, 0.4539041817188263, 0.18702219426631927, 0.6302376389503479], [0.29100167751312256, 0.46402719616889954, 0.23511230945587158, 0.6330505609512329], [0.2769413888454437, 0.4674763083457947, 0.3202509582042694, 0.6428818106651306], [0.36224913597106934, 0.4756297767162323, 0.4109984338283539, 0.6597201824188232], [0.4427068829536438, 0.49673405289649963, 0.4787248969078064, 0.6732516288757324], [0.4786425530910492, 0.5402670502662659, 0.5248543620109558, 0.6783729195594788], [0.48254528641700745, 0.5953226089477539, 0.5497881174087524, 0.66501384973526], [0.47145697474479675, 0.6444147229194641, 0.5588816404342651, 0.6346760988235474], [0.4634212553501129, 0.6784145832061768, 0.5569680333137512, 0.5986447334289551], [0.46484315395355225, 0.6973269581794739, 0.5507581830024719, 0.5684674382209778], [0.4712803363800049, 0.7044727802276611, 0.5469160079956055, 0.5515552163124084], [0.4746670424938202, 0.7028594613075256, 0.5490550398826599, 0.5470271706581116], [0.48395833373069763, 0.6958188414573669, 0.5594991445541382, 0.5578718185424805], [0.4927395284175873, 0.6831532716751099, 0.5735759139060974, 0.5760407447814941], [0.5067322850227356, 0.6644443869590759, 0.5876097679138184, 0.589280903339386], [0.5181722044944763, 0.6425842642784119, 0.5909680128097534, 0.5822514891624451], [0.5206084251403809, 0.6219285726547241, 0.5816442370414734, 0.5593124628067017], [0.5069320797920227, 0.602371096611023, 0.5632230639457703, 0.5357393026351929], [0.4769141972064972, 0.5815731883049011, 0.5417114496231079, 0.5221614241600037], [0.4526180326938629, 0.556531548500061, 0.5253081917762756, 0.5260022282600403], [0.4517175257205963, 0.5113344192504883, 0.5075892806053162, 0.543055534362793], [0.4467255473136902, 0.4333980977535248, 0.49182671308517456, 0.570904016494751], [0.45385462045669556, 0.3302924633026123, 0.48047909140586853, 0.6010597944259644], [0.4605962038040161, 0.2303527295589447, 0.4741378128528595, 0.6313075423240662], [0.518220841884613, 0.17344431579113007, 0.47000017762184143, 0.6628552079200745], [0.5154791474342346, 0.16967926919460297, 0.47514808177948, 0.6865918636322021], [0.5150749683380127, 0.21785233914852142, 0.4956930875778198, 0.705591082572937], [0.5242332220077515, 0.2974744141101837, 0.5286694169044495, 0.7295833230018616], [0.5446667671203613, 0.3761453926563263, 0.5562244057655334, 0.7669785618782043], [0.5700628161430359, 0.43567028641700745, 0.5680745840072632, 0.805870771408081], [0.5993689298629761, 0.47255903482437134, 0.5713334679603577, 0.8179298639297485], [0.6314184665679932, 0.5014298558235168, 0.5715689063072205, 0.8347105979919434], [0.6750674843788147, 0.5316428542137146, 0.5640165209770203, 0.8531719446182251], [0.6750674843788147, 0.5609622001647949, 0.5474894642829895, 0.8718385696411133], [0.6750674843788147, 0.5809425115585327, 0.5234951376914978, 0.8887326121330261], [0.6750674843788147, 0.5916194319725037, 0.49778443574905396, 0.9111029505729675], [0.6750674843788147, 0.5939094424247742, 0.4745067358016968, 0.9149197936058044], [0.5767732858657837, 0.5890095829963684, 0.4682033360004425, 0.9029748439788818], [0.5503494739532471, 0.5808346271514893, 0.4949517250061035, 0.8826954960823059], [0.47250038385391235, 0.5745940804481506, 0.5456550121307373, 0.8654969334602356], [0.5631273984909058, 0.5685214400291443, 0.5920677185058594, 0.863018274307251], [0.6261681914329529, 0.5513855218887329, 0.6106932163238525, 0.8651710152626038], [0.6526100039482117, 0.5149486660957336, 0.5982202291488647, 0.8509576916694641], [0.6519543528556824, 0.463959276676178, 0.5721314549446106, 0.8034896850585938], [0.6428017616271973, 0.4100731313228607, 0.5510240197181702, 0.7364178895950317], [0.6360853314399719, 0.3649842143058777, 0.5422618985176086, 0.725234866142273], [0.6312813758850098, 0.32589292526245117, 0.543157696723938, 0.7216777801513672], [0.6396244764328003, 0.29083579778671265, 0.549075186252594, 0.7295318841934204], [0.6602112650871277, 0.27096956968307495, 0.5557673573493958, 0.7375122904777527], [0.6830851435661316, 0.27139222621917725, 0.565721333026886, 0.74045330286026], [0.7017151713371277, 0.2752261161804199, 0.5859389305114746, 0.7112718224525452], [0.707759439945221, 0.27252528071403503, 0.6170651912689209, 0.6897938847541809], [0.7120060920715332, 0.2642865777015686, 0.6640909910202026, 0.6877394318580627], [0.7183917164802551, 0.25298553705215454, 0.7278088927268982, 0.7021333575248718], [0.7196981310844421, 0.2334180325269699, 0.806096076965332, 0.7247914671897888], [0.7286273837089539, 0.21903347969055176, 0.8825789093971252, 0.7585180401802063], [0.7150743007659912, 0.21701322495937347, 0.9492490291595459, 0.8047077059745789]], "channel_names": ["ch1", "ch2", "ch3", "ch4"]}, "theta_absolute": {"name": "theta_absolute", "fs": 9.87909519663955, "emp_fs": 9.87909519663955, "timestamps": [1571759075.5636363, 1571759075.6648602, 1571759075.766084, 1571759075.867308, 1571759075.9685316, 1571759076.0697556, 1571759076.1709793, 1571759076.2722032, 1571759076.3734272, 1571759076.4746509, 1571759076.5758748, 1571759076.6770985, 1571759076.7783225, 1571759076.8795462, 1571759076.98077, 1571759077.081994, 1571759077.1832178, 1571759077.2844417, 1571759077.3856654, 1571759077.4868894, 1571759077.5881133, 1571759077.689337, 1571759077.790561, 1571759077.8917847, 1571759077.9930086, 1571759078.0942323, 1571759078.1954563, 1571759078.2966802, 1571759078.397904, 1571759078.4991279, 1571759078.6003516, 1571759078.7015755, 1571759078.8027992, 1571759078.9040232, 1571759079.005247, 1571759079.1064708, 1571759079.2076948, 1571759079.3089185, 1571759079.4101424, 1571759079.5113664, 1571759079.61259, 1571759079.713814, 1571759079.8150377, 1571759079.9162617, 1571759080.0174854, 1571759080.1187093, 1571759080.2199333, 1571759080.321157, 1571759080.422381, 1571759080.5236046, 1571759080.6248286, 1571759080.7260523, 1571759080.8272762, 1571759080.9285002, 1571759081.029724, 1571759081.1309478, 1571759081.2321715, 1571759081.3333955, 1571759081.4346192, 1571759081.5358431, 1571759081.637067, 1571759081.7382908, 1571759081.8395147, 1571759081.9407384, 1571759082.0419624, 1571759082.143186, 1571759082.24441, 1571759082.345634, 1571759082.4468577, 1571759082.5480816, 1571759082.6493053, 1571759082.7505293, 1571759082.8517532, 1571759082.952977, 1571759083.054201, 1571759083.1554246, 1571759083.2566485, 1571759083.3578722, 1571759083.4590962, 1571759083.5603201, 1571759083.6615438, 1571759083.7627678, 1571759083.8639915, 1571759083.9652154, 1571759084.0664392, 1571759084.167663, 1571759084.268887, 1571759084.3701108, 1571759084.4713347, 1571759084.5725584, 1571759084.6737823, 1571759084.7750063, 1571759084.87623, 1571759084.977454, 1571759085.0786777, 1571759085.1799016, 1571759085.2811253, 1571759085.3823493, 1571759085.4835732, 1571759085.584797, 1571759085.6860209, 1571759085.7872446, 1571759085.8884685, 1571759085.9896922, 1571759086.0909162, 1571759086.19214, 1571759086.2933638, 1571759086.3945878, 1571759086.4958115, 1571759086.5970354, 1571759086.698259, 1571759086.799483, 1571759086.900707, 1571759087.0019307, 1571759087.1031547, 1571759087.2043784, 1571759087.3056023, 1571759087.406826, 1571759087.50805, 1571759087.609274, 1571759087.7104976, 1571759087.8117216, 1571759087.9129453, 1571759088.0141692, 1571759088.1153932, 1571759088.2166169, 1571759088.3178408, 1571759088.4190645, 1571759088.5202885, 1571759088.6215122, 1571759088.7227361, 1571759088.82396, 1571759088.9251838, 1571759089.0264077, 1571759089.1276314, 1571759089.2288554, 1571759089.330079, 1571759089.431303, 1571759089.532527, 1571759089.6337507, 1571759089.7349746, 1571759089.8361983, 1571759089.9374223, 1571759090.0386462, 1571759090.13987, 1571759090.2410939, 1571759090.3423176, 1571759090.4435415, 1571759090.5447652, 1571759090.6459892, 1571759090.7472131, 1571759090.8484368, 1571759090.9496608, 1571759091.0508845, 1571759091.1521084, 1571759091.2533321, 1571759091.354556], "samples": [[0.6651166677474976, 0.4363846182823181, -0.29585525393486023, 0.1874866485595703], [0.783142626285553, 0.4598613679409027, -0.3123549222946167, 0.1819629669189453], [0.8434425592422485, 0.472655713558197, -0.3068438768386841, 0.4786714017391205], [0.8605964779853821, 0.4777127504348755, -0.3008681833744049, 0.5879409909248352], [0.857205331325531, 0.4803811311721802, -0.29470139741897583, 0.6562707424163818], [0.8545209169387817, 0.4851057529449463, -0.27803513407707214, 0.7256875038146973], [0.8558275103569031, 0.4911291003227234, -0.25902122259140015, 0.7890185713768005], [0.8566759824752808, 0.49125534296035767, -0.25312522053718567, 0.8344346284866333], [0.8556547164916992, 0.47828787565231323, -0.2594563066959381, 0.8600476384162903], [0.856314480304718, 0.44909796118736267, -0.2583083212375641, 0.8724480867385864], [0.8462131023406982, 0.409980833530426, -0.2091604322195053, 0.8791758418083191], [0.843605101108551, 0.37154701352119446, -0.10549852252006531, 0.8479101657867432], [0.8436516523361206, 0.34052518010139465, 0.012647988274693489, 0.8203004598617554], [0.8429549932479858, 0.3177436292171478, 0.09846597909927368, 0.7951782941818237], [0.8414515256881714, 0.30901220440864563, 0.15186598896980286, 0.7726364135742188], [0.7938761115074158, 0.32292336225509644, 0.18309177458286285, 0.7514492273330688], [0.7418042421340942, 0.35580483078956604, 0.20432958006858826, 0.7310218811035156], [0.7065944075584412, 0.3891102075576782, 0.2175324410200119, 0.6521264314651489], [0.6952666640281677, 0.41081464290618896, 0.22645416855812073, 0.5968536734580994], [0.6983345150947571, 0.41717565059661865, 0.23508334159851074, 0.5473707914352417], [0.7038693428039551, 0.4135591685771942, 0.24762792885303497, 0.4827077090740204], [0.7135475277900696, 0.40783509612083435, 0.26535776257514954, 0.4051145017147064], [0.7302048802375793, 0.40714722871780396, 0.2884543836116791, 0.33221280574798584], [0.7492159605026245, 0.411824494600296, 0.3133182227611542, 0.28030508756637573], [0.7609972953796387, 0.41761788725852966, 0.3329244554042816, 0.24629533290863037], [0.7573473453521729, 0.41857194900512695, 0.33690911531448364, 0.21891602873802185], [0.7372908592224121, 0.41310277581214905, 0.3189447522163391, 0.1918216347694397], [0.7092022895812988, 0.4091847240924835, 0.2785024046897888, 0.1679634004831314], [0.6848774552345276, 0.41860756278038025, 0.23542560636997223, 0.15336574614048004], [0.6685810685157776, 0.4407179057598114, 0.2131413221359253, 0.14786197245121002], [0.6565276980400085, 0.41109028458595276, 0.23558318614959717, 0.15112274885177612], [0.6436265110969543, 0.3681219518184662, 0.2954166531562805, 0.16087234020233154], [0.6305623054504395, 0.3245088756084442, 0.36668911576271057, 0.159561425447464], [0.6218841671943665, 0.29884853959083557, 0.42114707827568054, 0.16125068068504333], [0.617751955986023, 0.2815133035182953, 0.4552140533924103, 0.16464725136756897], [0.6190453767776489, 0.2783983051776886, 0.4745544493198395, 0.16622009873390198], [0.6146640181541443, 0.2793114185333252, 0.4856015145778656, 0.16471940279006958], [0.5988155007362366, 0.2975424826145172, 0.4913329482078552, 0.16156502068042755], [0.5702944993972778, 0.3105836808681488, 0.49245259165763855, 0.16101433336734772], [0.5388097167015076, 0.32467466592788696, 0.4916992783546448, 0.1779291331768036], [0.521955668926239, 0.3504039943218231, 0.49194014072418213, 0.20872566103935242], [0.5329832434654236, 0.38723382353782654, 0.49424007534980774, 0.23862406611442566], [0.560404896736145, 0.3412642478942871, 0.49982988834381104, 0.2672244906425476], [0.5798154473304749, 0.20951102674007416, 0.5106738805770874, 0.28685736656188965], [0.5768285393714905, -0.14304234087467194, 0.5226423144340515, 0.2906443774700165], [0.5573254227638245, -0.1057128980755806, 0.5225526094436646, 0.2906443774700165], [0.5573254227638245, -0.06827341765165329, 0.5000665187835693, 0.2906443774700165], [0.5573254227638245, -0.026118407025933266, 0.45842328667640686, 0.2906443774700165], [0.5573254227638245, 0.024852627888321877, 0.4193808436393738, 0.2906443774700165], [0.5573254227638245, 0.08341333270072937, 0.3965815305709839, 0.2906443774700165], [0.5573254227638245, 0.135601207613945, 0.3893759250640869, 0.2906443774700165], [0.5573254227638245, 0.16226620972156525, 0.3898634612560272, 0.2906443774700165], [0.5573254227638245, 0.15158423781394958, 0.39139872789382935, 0.2906443774700165], [0.5573254227638245, 0.13568952679634094, 0.39157456159591675, 0.2906443774700165], [0.5573254227638245, 0.1228402704000473, 0.39049965143203735, 0.2906443774700165], [0.5573254227638245, 0.11511364579200745, 0.3952287435531616, 0.2906443774700165], [0.5573254227638245, 0.11349359899759293, 0.4128299057483673, 0.2906443774700165], [0.5573254227638245, 0.13463279604911804, 0.43734392523765564, 0.2906443774700165], [0.5573254227638245, 0.1522529423236847, 0.45161113142967224, 0.2906443774700165], [0.5573254227638245, 0.1592431366443634, 0.44451630115509033, 0.2906443774700165], [0.5573254227638245, 0.15841734409332275, 0.41901451349258423, 0.2906443774700165], [0.5573254227638245, 0.15961620211601257, 0.3888874351978302, 0.2906443774700165], [0.5573254227638245, 0.16796886920928955, 0.3637319505214691, 0.2906443774700165], [0.5573254227638245, 0.17799396812915802, 0.34269312024116516, 0.2906443774700165], [0.5573254227638245, 0.19081147015094757, 0.32851913571357727, 0.2906443774700165], [0.5573254227638245, 0.2112412005662918, 0.3270755112171173, 0.2906443774700165], [0.5573254227638245, 0.23351584374904633, 0.3389367461204529, 0.2906443774700165], [0.5573254227638245, 0.24913497269153595, 0.3519406020641327, 0.2906443774700165], [0.5573254227638245, 0.25254175066947937, 0.36179444193840027, 0.2906443774700165], [0.5573254227638245, 0.24503947794437408, 0.3762223720550537, 0.2906443774700165], [0.5573254227638245, 0.232618048787117, 0.40065592527389526, 0.2906443774700165], [0.5573254227638245, 0.2175685316324234, 0.4262143075466156, 0.2906443774700165], [0.5573254227638245, 0.20075054466724396, 0.44736185669898987, 0.2906443774700165], [0.5573254227638245, 0.1849231868982315, 0.4661157727241516, 0.2906443774700165], [0.5573254227638245, 0.17331522703170776, 0.4856363832950592, 0.2906443774700165], [0.5573254227638245, 0.16665227711200714, 0.5027846693992615, 0.2906443774700165], [0.5573254227638245, 0.16429699957370758, 0.5129448771476746, 0.2906443774700165], [0.5573254227638245, 0.1596941202878952, 0.5162693858146667, 0.2906443774700165], [0.5573254227638245, 0.14631758630275726, 0.5152080655097961, 0.2906443774700165], [0.5573254227638245, 0.11297167837619781, 0.5069397687911987, 0.2906443774700165], [0.3387076258659363, 0.05562417209148407, 0.48672693967819214, 0.2906443774700165], [0.317478209733963, -0.00849150400608778, 0.454176664352417, 0.2906443774700165], [0.2895504832267761, -0.05428687855601311, 0.4203658401966095, 0.2906443774700165], [0.2599087953567505, -0.07140495628118515, 0.39301326870918274, 0.2906443774700165], [0.2354709655046463, -0.0649571418762207, 0.3645993769168854, 0.2906443774700165], [0.22528351843357086, -0.04528568312525749, 0.3165018856525421, 0.2906443774700165], [0.23195090889930725, -0.019600780680775642, 0.23913666605949402, 0.2906443774700165], [0.2507466673851013, 0.00402218708768487, 0.13339020311832428, 0.33341124653816223], [0.2696385085582733, 0.017114907503128052, 0.007671376224607229, 0.35474684834480286], [0.2696385085582733, 0.02007385715842247, -0.12152674049139023, 0.35860323905944824], [0.2696385085582733, 0.018296504393219948, -0.21043707430362701, 0.3508327007293701], [0.2696385085582733, 0.015291975811123848, -0.2078271508216858, 0.34682878851890564], [0.2601180076599121, 0.016186926513910294, -0.13513432443141937, 0.35462185740470886], [0.24862359464168549, 0.026697495952248573, -0.05920381471514702, 0.37395158410072327], [0.23771598935127258, 0.049331504851579666, -0.012705866247415543, 0.3945731520652771], [0.2304939329624176, 0.080341637134552, 0.002846304327249527, 0.40233349800109863], [0.23192287981510162, 0.11360558867454529, 0.000144215373438783, 0.39277616143226624], [0.22162899374961853, 0.1433330476284027, -0.009344770573079586, 0.3743685781955719], [0.216539666056633, 0.16600017249584198, -0.018161538988351822, 0.36322641372680664], [0.22625300288200378, 0.18065524101257324, -0.021337123587727547, 0.3851734697818756], [0.24612414836883545, 0.18961688876152039, -0.011657847091555595, 0.4224797487258911], [0.269541472196579, 0.1993667185306549, 0.017680425196886063, 0.46034422516822815], [0.29012733697891235, 0.21724621951580048, 0.06338081508874893, 0.4834948182106018], [0.3018558621406555, 0.245783269405365, 0.1110282689332962, 0.48972663283348083], [0.3158065676689148, 0.2819986939430237, 0.14562565088272095, 0.4848789870738983], [0.30857932567596436, 0.3152111768722534, 0.1574402153491974, 0.4770035743713379], [0.29175278544425964, 0.33432281017303467, 0.14146089553833008, 0.46683675050735474], [0.27229034900665283, 0.3337719738483429, 0.10194925963878632, 0.4509514570236206], [0.25301501154899597, 0.3157990872859955, 0.051025670021772385, 0.4263586699962616], [0.23369231820106506, 0.28734415769577026, 0.00886918231844902, 0.3955288529396057], [0.21356995403766632, 0.25698739290237427, -0.01172811072319746, 0.36994072794914246], [0.1936672031879425, 0.22795622050762177, -0.014203724451363087, 0.3606452941894531], [0.18378262221813202, 0.2003038078546524, -0.0079154372215271, 0.36408498883247375], [0.17726239562034607, 0.1767789125442505, 0.0005226011853665113, 0.3627926707267761], [0.16580913960933685, 0.1580372452735901, 0.010104727931320667, 0.3366105854511261], [0.14617599546909332, 0.14021973311901093, 0.019763382151722908, 0.2767641246318817], [0.11829160898923874, 0.11768866330385208, 0.03359803184866905, 0.19757315516471863], [0.085975281894207, 0.08499262481927872, 0.05761217698454857, 0.13970661163330078], [0.061586007475852966, 0.0407647006213665, 0.09221195429563522, 0.13569457828998566], [0.05567194148898125, -0.01505607645958662, 0.13503839075565338, 0.17562858760356903], [0.06871256232261658, -0.06689049303531647, 0.18188993632793427, 0.22743818163871765], [0.06631598621606827, -0.09057161957025528, 0.22634431719779968, 0.2710180878639221], [0.07062490284442902, -0.07586780935525894, 0.2646368443965912, 0.3016337454319], [0.07914847880601883, -0.04165368527173996, 0.29573407769203186, 0.32106301188468933], [0.09616025537252426, -0.0069373962469398975, 0.3196668028831482, 0.33240649104118347], [0.11536963284015656, 0.016321875154972076, 0.339310884475708, 0.34049972891807556], [0.1402105838060379, 0.030966641381382942, 0.36035335063934326, 0.34907230734825134], [0.17014725506305695, 0.04347769170999527, 0.3814731240272522, 0.36163315176963806], [0.2022615224123001, 0.055210426449775696, 0.3975743055343628, 0.38042959570884705], [0.2358502447605133, 0.06441190093755722, 0.4035959839820862, 0.40442585945129395], [0.26746368408203125, 0.07008998841047287, 0.39868664741516113, 0.42224693298339844], [0.2918248772621155, 0.07046539336442947, 0.3821403682231903, 0.43845897912979126], [0.30291473865509033, 0.06487315893173218, 0.35333147644996643, 0.4456297755241394], [0.30291473865509033, 0.05191684886813164, 0.31380078196525574, 0.44026368856430054], [0.30291473865509033, 0.03333017975091934, 0.2656315565109253, 0.4227564036846161], [0.30291473865509033, 0.005185274872928858, 0.21106795966625214, 0.3669145703315735], [0.30291473865509033, -0.037945929914712906, 0.1531735211610794, 0.3062756061553955], [0.09064827859401703, -0.098572738468647, 0.0951642394065857, 0.24961239099502563], [0.17023922502994537, -0.16543053090572357, 0.04459543153643608, 0.20586305856704712], [0.26199793815612793, -0.22178299725055695, 0.008015170693397522, 0.18165700137615204], [0.31736791133880615, -0.25579845905303955, -0.01763705164194107, 0.1733153909444809], [0.3479255437850952, -0.27837157249450684, -0.05083797127008438, 0.16562706232070923], [0.3544977307319641, -0.3040789067745209, -0.10007143765687943, 0.13959147036075592], [0.3423525094985962, -0.33436524868011475, -0.15380913019180298, 0.07992444932460785], [0.32198524475097656, -0.3540368676185608, -0.18558155000209808, -0.019498031586408615], [0.30565202236175537, -0.34680452942848206, -0.1832130402326584, -0.03314848616719246], [0.30453863739967346, -0.31040844321250916, -0.15986846387386322, -0.03717193752527237], [0.32237857580184937, -0.2546464800834656, -0.13456153869628906, -0.030552774667739868], [0.34906670451164246, -0.19125203788280487, -0.11193162202835083, -0.019367320463061333], [0.371378093957901, -0.1321287602186203, -0.07340651005506516, 0.00013293612573761493], [0.407907098531723, -0.07913791388273239, 0.00915528740733862, 0.05395744740962982], [0.4393896162509918, -0.03201967105269432, 0.1308078020811081, 0.15058472752571106], [0.46710625290870667, 0.011547636240720749, 0.25485870242118835, 0.2632158696651459], [0.4860171377658844, 0.04958447068929672, 0.3532574474811554, 0.357465535402298], [0.48903143405914307, 0.07792272418737411, 0.4253469407558441, 0.4190685451030731], [0.479890376329422, 0.09421489387750626, 0.4799524247646332, 0.45187583565711975], [0.47868502140045166, 0.09963862597942352, 0.5216971635818481, 0.46642643213272095]], "channel_names": ["ch1", "ch2", "ch3", "ch4"]}, "gamma_absolute": {"name": "gamma_absolute", "fs": 9.879101013848995, "emp_fs": 9.879101013848995, "timestamps": [1571759075.5636566, 1571759075.6648803, 1571759075.7661042, 1571759075.867328, 1571759075.9685516, 1571759076.0697756, 1571759076.1709993, 1571759076.272223, 1571759076.373447, 1571759076.4746706, 1571759076.5758944, 1571759076.6771183, 1571759076.778342, 1571759076.8795657, 1571759076.9807897, 1571759077.0820134, 1571759077.183237, 1571759077.284461, 1571759077.3856847, 1571759077.4869084, 1571759077.5881324, 1571759077.689356, 1571759077.7905798, 1571759077.8918037, 1571759077.9930274, 1571759078.0942512, 1571759078.195475, 1571759078.2966988, 1571759078.3979225, 1571759078.4991462, 1571759078.6003702, 1571759078.7015939, 1571759078.8028176, 1571759078.9040415, 1571759079.0052652, 1571759079.106489, 1571759079.207713, 1571759079.3089366, 1571759079.4101603, 1571759079.5113842, 1571759079.612608, 1571759079.7138317, 1571759079.8150556, 1571759079.9162793, 1571759080.017503, 1571759080.118727, 1571759080.2199507, 1571759080.3211744, 1571759080.4223983, 1571759080.523622, 1571759080.6248457, 1571759080.7260697, 1571759080.8272934, 1571759080.928517, 1571759081.029741, 1571759081.1309648, 1571759081.2321885, 1571759081.3334124, 1571759081.434636, 1571759081.5358598, 1571759081.6370838, 1571759081.7383075, 1571759081.8395312, 1571759081.9407551, 1571759082.0419788, 1571759082.1432025, 1571759082.2444265, 1571759082.3456502, 1571759082.446874, 1571759082.5480978, 1571759082.6493216, 1571759082.7505453, 1571759082.8517692, 1571759082.952993, 1571759083.0542166, 1571759083.1554406, 1571759083.2566643, 1571759083.357888, 1571759083.4591117, 1571759083.5603356, 1571759083.6615593, 1571759083.762783, 1571759083.864007, 1571759083.9652307, 1571759084.0664544, 1571759084.1676784, 1571759084.268902, 1571759084.3701258, 1571759084.4713497, 1571759084.5725734, 1571759084.6737971, 1571759084.775021, 1571759084.8762448, 1571759084.9774685, 1571759085.0786924, 1571759085.1799161, 1571759085.2811399, 1571759085.3823638, 1571759085.4835875, 1571759085.5848112, 1571759085.6860352, 1571759085.7872589, 1571759085.8884826, 1571759085.9897065, 1571759086.0909302, 1571759086.192154, 1571759086.2933779, 1571759086.3946016, 1571759086.4958253, 1571759086.5970492, 1571759086.698273, 1571759086.7994967, 1571759086.9007206, 1571759087.0019443, 1571759087.103168, 1571759087.204392, 1571759087.3056157, 1571759087.4068394, 1571759087.5080633, 1571759087.609287, 1571759087.7105107, 1571759087.8117347, 1571759087.9129584, 1571759088.014182, 1571759088.115406, 1571759088.2166297, 1571759088.3178535, 1571759088.4190774, 1571759088.520301, 1571759088.6215248, 1571759088.7227488, 1571759088.8239725, 1571759088.9251962, 1571759089.0264199, 1571759089.1276438, 1571759089.2288675, 1571759089.3300912, 1571759089.4313152, 1571759089.532539, 1571759089.6337626, 1571759089.7349865, 1571759089.8362103, 1571759089.937434, 1571759090.038658, 1571759090.1398816, 1571759090.2411053, 1571759090.3423293, 1571759090.443553, 1571759090.5447767, 1571759090.6460006, 1571759090.7472243, 1571759090.848448, 1571759090.949672, 1571759091.0508957, 1571759091.1521194, 1571759091.2533433, 1571759091.354567], "samples": [[1.0519615411758423, 0.18568405508995056, 0.4533878266811371, 0.8053943514823914], [1.0086530447006226, 0.17555783689022064, 0.44486120343208313, 0.7837364673614502], [0.9674755334854126, 0.16677258908748627, 0.43751540780067444, 0.8270806074142456], [0.940919041633606, 0.1526656597852707, 0.4299038350582123, 0.8787338137626648], [0.9334443807601929, 0.1276361048221588, 0.41996896266937256, 0.9216622710227966], [0.9416521787643433, 0.08867021650075912, 0.4087209701538086, 0.9478464126586914], [0.9575268030166626, 0.03649655729532242, 0.3989691138267517, 0.9597904086112976], [0.9694181084632874, -0.022929025813937187, 0.39255189895629883, 0.968051016330719], [0.9670393466949463, -0.08048821985721588, 0.3882181942462921, 0.9787471890449524], [0.9424309730529785, -0.12726494669914246, 0.38330304622650146, 0.9911019802093506], [0.9259458780288696, -0.1581585854291916, 0.3783009350299835, 1.0013924837112427], [0.9072413444519043, -0.17550861835479736, 0.3761891722679138, 0.985339879989624], [0.891566812992096, -0.18462815880775452, 0.3756420314311981, 0.9680108428001404], [0.8793919682502747, -0.19025298953056335, 0.3721592128276825, 0.9512283205986023], [0.8665712475776672, -0.19404801726341248, 0.363337904214859, 0.9358011484146118], [0.851352870464325, -0.19505342841148376, 0.3508667051792145, 0.9226225018501282], [0.8370159864425659, -0.18912965059280396, 0.33933374285697937, 0.9118317365646362], [0.8212574124336243, -0.17509563267230988, 0.3307119309902191, 0.8812841176986694], [0.8027458190917969, -0.15529479086399078, 0.3249266445636749, 0.8470438718795776], [0.7829216122627258, -0.132486030459404, 0.32377228140830994, 0.8177714943885803], [0.7663738131523132, -0.11049752682447433, 0.32696041464805603, 0.8029435873031616], [0.760002076625824, -0.09080599993467331, 0.3323218822479248, 0.803748369216919], [0.766575813293457, -0.07676021009683609, 0.33521464467048645, 0.8115959167480469], [0.7821528911590576, -0.06985257565975189, 0.3320673406124115, 0.8190229535102844], [0.8027511239051819, -0.06523764133453369, 0.327292263507843, 0.8257891535758972], [0.8238588571548462, -0.05714504420757294, 0.3281494677066803, 0.8368286490440369], [0.8421953916549683, -0.043145474046468735, 0.3386756181716919, 0.8554843664169312], [0.8588196635246277, -0.025938045233488083, 0.35419392585754395, 0.8776634931564331], [0.8786824941635132, -0.00859887059777975, 0.3654916286468506, 0.895604133605957], [0.9065115451812744, 0.007007297594100237, 0.3675025701522827, 0.905309796333313], [0.9404599666595459, 0.018079575151205063, 0.360914021730423, 0.9077538847923279], [0.975914716720581, 0.02424391731619835, 0.35022857785224915, 0.9068427681922913], [1.0114951133728027, 0.02410382404923439, 0.3403705954551697, 0.9164586067199707], [1.0467795133590698, 0.019876178354024887, 0.33213433623313904, 0.9267942309379578], [1.0786877870559692, -0.008395024575293064, 0.3236778974533081, 0.9371846914291382], [1.0902208089828491, -0.03860580176115036, 0.3161158859729767, 0.9449001550674438], [1.0968270301818848, -0.06570613384246826, 0.3115108013153076, 0.9473782181739807], [1.0987495183944702, -0.06633495539426804, 0.31125643849372864, 0.9451005458831787], [1.099129557609558, -0.05904737859964371, 0.3125317096710205, 0.9405626654624939], [1.1025243997573853, -0.052667874842882156, 0.3081284165382385, 0.9330261945724487], [1.112876534461975, -0.059762272983789444, 0.2912299335002899, 0.9122148156166077], [1.1312742233276367, -0.08847741037607193, 0.2588173747062683, 0.8908636569976807], [1.1540734767913818, -0.14539273083209991, 0.2153991013765335, 0.8583627343177795], [1.175910234451294, -0.21999233961105347, 0.17365196347236633, 0.8256237506866455], [1.1941561698913574, -0.3124850392341614, 0.1458507627248764, 0.8115209341049194], [1.2105838060379028, -0.3221229016780853, 0.13708269596099854, 0.8115209341049194], [1.2105838060379028, -0.3253146708011627, 0.1401413381099701, 0.8115209341049194], [1.2105838060379028, -0.3237876892089844, 0.146478533744812, 0.8115209341049194], [1.2105838060379028, -0.32184624671936035, 0.15321709215641022, 0.8115209341049194], [1.2105838060379028, -0.31782907247543335, 0.15745660662651062, 0.8115209341049194], [1.2105838060379028, -0.2997828423976898, 0.15560641884803772, 0.8115209341049194], [1.2105838060379028, -0.269975870847702, 0.14666743576526642, 0.8115209341049194], [1.2105838060379028, -0.24010422825813293, 0.136953204870224, 0.8115209341049194], [1.2105838060379028, -0.21390165388584137, 0.13524377346038818, 0.8115209341049194], [1.2105838060379028, -0.20056858658790588, 0.14143580198287964, 0.8115209341049194], [1.2105838060379028, -0.2012685090303421, 0.14963318407535553, 0.8115209341049194], [1.2105838060379028, -0.21097762882709503, 0.15682777762413025, 0.8115209341049194], [1.2105838060379028, -0.22629642486572266, 0.16452351212501526, 0.8115209341049194], [1.2105838060379028, -0.23220035433769226, 0.17504875361919403, 0.8115209341049194], [1.2105838060379028, -0.2265285849571228, 0.18683555722236633, 0.8115209341049194], [1.2105838060379028, -0.21407394111156464, 0.19540975987911224, 0.8115209341049194], [1.2105838060379028, -0.2010844349861145, 0.2005985528230667, 0.8115209341049194], [1.2105838060379028, -0.19219942390918732, 0.20353959500789642, 0.8115209341049194], [1.2105838060379028, -0.18739138543605804, 0.20428460836410522, 0.8115209341049194], [1.2105838060379028, -0.18529823422431946, 0.20195473730564117, 0.8115209341049194], [1.2105838060379028, -0.18975253403186798, 0.19551995396614075, 0.8115209341049194], [1.2105838060379028, -0.20368222892284393, 0.18837285041809082, 0.8115209341049194], [1.2105838060379028, -0.22750240564346313, 0.18432806432247162, 0.8115209341049194], [1.2105838060379028, -0.2513290345668793, 0.18482747673988342, 0.8115209341049194], [1.2105838060379028, -0.2575328052043915, 0.18899734318256378, 0.8115209341049194], [1.2105838060379028, -0.23994985222816467, 0.194176584482193, 0.8115209341049194], [1.2105838060379028, -0.2064473181962967, 0.19610023498535156, 0.8115209341049194], [1.2105838060379028, -0.16705277562141418, 0.19244061410427094, 0.8115209341049194], [1.2105838060379028, -0.12777827680110931, 0.1830180287361145, 0.8115209341049194], [1.2105838060379028, -0.09235136955976486, 0.1738884299993515, 0.8115209341049194], [1.2105838060379028, -0.06536144763231277, 0.1730509251356125, 0.8115209341049194], [1.2105838060379028, -0.049796197563409805, 0.17908501625061035, 0.8115209341049194], [1.2105838060379028, -0.04308402165770531, 0.18449696898460388, 0.8115209341049194], [1.2105838060379028, -0.04117115959525108, 0.18427056074142456, 0.8115209341049194], [1.2105838060379028, -0.039236243814229965, 0.18243089318275452, 0.8115209341049194], [0.9009324908256531, -0.03400561586022377, 0.18666993081569672, 0.8115209341049194], [0.9168071746826172, -0.026561738923192024, 0.1955980658531189, 0.8115209341049194], [0.9301114678382874, -0.01979636587202549, 0.20074768364429474, 0.8115209341049194], [0.9417331218719482, -0.017077909782528877, 0.19555701315402985, 0.8115209341049194], [0.9519655108451843, -0.021244432777166367, 0.18336114287376404, 0.8115209341049194], [0.9580755233764648, -0.032166287302970886, 0.17287470400333405, 0.8115209341049194], [0.958716869354248, -0.05000410974025726, 0.17027302086353302, 0.8115209341049194], [0.9556090235710144, -0.07667896151542664, 0.17513422667980194, 0.6224833726882935], [0.9520703554153442, -0.11455821245908737, 0.1817958503961563, 0.6423283815383911], [0.9520703554153442, -0.16372251510620117, 0.1823916733264923, 0.6439173817634583], [0.9520703554153442, -0.2169283777475357, 0.17335346341133118, 0.6341766119003296], [0.9520703554153442, -0.26090091466903687, 0.16099213063716888, 0.6233029365539551], [0.9573348164558411, -0.28865349292755127, 0.15584629774093628, 0.6164999604225159], [0.9645296335220337, -0.30179065465927124, 0.1632234752178192, 0.6132122278213501], [0.9716662168502808, -0.3096030056476593, 0.17555919289588928, 0.6087099313735962], [0.9755452871322632, -0.31819868087768555, 0.1820870339870453, 0.598905086517334], [0.9756131172180176, -0.3276295065879822, 0.1785806566476822, 0.5856696367263794], [0.9667937755584717, -0.33707836270332336, 0.16668392717838287, 0.5743941068649292], [0.9515902400016785, -0.34615233540534973, 0.1520148068666458, 0.568657398223877], [0.9282413721084595, -0.35514938831329346, 0.13822799921035767, 0.5723957419395447], [0.8986031413078308, -0.36072370409965515, 0.12796694040298462, 0.5708595514297485], [0.8651346564292908, -0.35450026392936707, 0.1228063628077507, 0.5591835379600525], [0.8306998610496521, -0.3345000743865967, 0.12060088664293289, 0.5388456583023071], [0.7983738780021667, -0.308377742767334, 0.11865894496440887, 0.518343448638916], [0.7922636270523071, -0.2853488326072693, 0.11687324196100235, 0.5088102221488953], [0.793189287185669, -0.27308526635169983, 0.11510436981916428, 0.5151335597038269], [0.7954679131507874, -0.2721901535987854, 0.11181666702032089, 0.531477689743042], [0.7974090576171875, -0.2775888442993164, 0.10338672250509262, 0.5495501160621643], [0.7995092868804932, -0.2831785976886749, 0.08562248200178146, 0.5658441185951233], [0.8006289005279541, -0.28406527638435364, 0.05974479019641876, 0.5833946466445923], [0.7978526949882507, -0.2803381085395813, 0.03184693306684494, 0.6049923300743103], [0.7899194955825806, -0.2740550637245178, 0.01369787659496069, 0.6273079514503479], [0.7673551440238953, -0.2647661566734314, 0.014513527043163776, 0.6446757316589355], [0.7464597821235657, -0.2545696794986725, 0.028498155996203423, 0.6534962058067322], [0.7298359870910645, -0.24487189948558807, 0.044934384524822235, 0.6564505100250244], [0.7183405756950378, -0.23817794024944305, 0.05392935127019882, 0.6583008766174316], [0.7136512994766235, -0.2374260127544403, 0.0533750094473362, 0.6618790030479431], [0.7162681818008423, -0.24191276729106903, 0.04932910576462746, 0.6683420538902283], [0.721483051776886, -0.24843445420265198, 0.04784977436065674, 0.6764783263206482], [0.7245098948478699, -0.25369781255722046, 0.05067087337374687, 0.6844507455825806], [0.7241305112838745, -0.2542937695980072, 0.05626707151532173, 0.6909922361373901], [0.7168094515800476, -0.24984154105186462, 0.060418255627155304, 0.6961846351623535], [0.7081167697906494, -0.24339358508586884, 0.06152766942977905, 0.7044384479522705], [0.697131872177124, -0.23913918435573578, 0.06156676635146141, 0.720149576663971], [0.6871026158332825, -0.24111934006214142, 0.062209244817495346, 0.7411666512489319], [0.6798211336135864, -0.24795301258563995, 0.0649670958518982, 0.7610035538673401], [0.6817283630371094, -0.25421661138534546, 0.06689119338989258, 0.7739635109901428], [0.6918494701385498, -0.2552326023578644, 0.06663196533918381, 0.7808536887168884], [0.7042909860610962, -0.25085869431495667, 0.06628226488828659, 0.7891008853912354], [0.7171998023986816, -0.24678969383239746, 0.06452395021915436, 0.806367814540863], [0.7327122092247009, -0.24811460077762604, 0.062382835894823074, 0.8185718655586243], [0.7507057785987854, -0.25518348813056946, 0.06150567904114723, 0.8324856758117676], [0.7639039754867554, -0.26600250601768494, 0.0640566423535347, 0.8480411171913147], [0.7639039754867554, -0.2771550714969635, 0.07175996154546738, 0.8642337322235107], [0.7639039754867554, -0.286742240190506, 0.08239492774009705, 0.8793160915374756], [0.7639039754867554, -0.29506126046180725, 0.09189482778310776, 0.887980043888092], [0.7639039754867554, -0.30369749665260315, 0.09713277220726013, 0.8884848356246948], [0.5971380472183228, -0.31381526589393616, 0.09733108431100845, 0.8817121982574463], [0.619064450263977, -0.3246803283691406, 0.09487328678369522, 0.8648646473884583], [0.6357039213180542, -0.3333654999732971, 0.09314414113759995, 0.8374436497688293], [0.6716869473457336, -0.3414866328239441, 0.09169871360063553, 0.8047431111335754], [0.6955386996269226, -0.3529341220855713, 0.08943162858486176, 0.7778319716453552], [0.7104851007461548, -0.3701474070549011, 0.08513176441192627, 0.7623090147972107], [0.7243386507034302, -0.39007171988487244, 0.08162897825241089, 0.7526969313621521], [0.7397400736808777, -0.4077027142047882, 0.08442185074090958, 0.7342177629470825], [0.7508102059364319, -0.42153722047805786, 0.09395495057106018, 0.7342610359191895], [0.7529242038726807, -0.431825190782547, 0.10490983724594116, 0.730604887008667], [0.7491636872291565, -0.43649858236312866, 0.10921178758144379, 0.7212350368499756], [0.7441069483757019, -0.4309650957584381, 0.10312699526548386, 0.7064192295074463], [0.7393621802330017, -0.41638505458831787, 0.08943232148885727, 0.688245952129364], [0.7461785674095154, -0.39715030789375305, 0.07362298667430878, 0.6535306572914124], [0.7506096959114075, -0.374289870262146, 0.0614095963537693, 0.6200711131095886], [0.7582501769065857, -0.34868383407592773, 0.05763448029756546, 0.5894044637680054], [0.7719383239746094, -0.3249220848083496, 0.06288066506385803, 0.5650091171264648], [0.787791907787323, -0.3098216950893402, 0.07491642981767654, 0.5488957166671753], [0.7997656464576721, -0.30499333143234253, 0.09077830612659454, 0.5394368171691895], [0.7985584735870361, -0.30684447288513184, 0.10630558431148529, 0.5322023630142212]], "channel_names": ["ch1", "ch2", "ch3", "ch4"]}, "alpha_relative": {"name": "alpha_relative", "fs": 9.879109438785164, "emp_fs": 9.879109438785164, "timestamps": [1571759075.563679, 1571759075.6649027, 1571759075.7661264, 1571759075.86735, 1571759075.9685738, 1571759076.0697975, 1571759076.1710212, 1571759076.272245, 1571759076.3734686, 1571759076.4746923, 1571759076.575916, 1571759076.6771398, 1571759076.7783635, 1571759076.8795872, 1571759076.9808109, 1571759077.0820346, 1571759077.183258, 1571759077.2844818, 1571759077.3857055, 1571759077.4869292, 1571759077.588153, 1571759077.6893766, 1571759077.7906003, 1571759077.891824, 1571759077.9930477, 1571759078.0942714, 1571759078.1954951, 1571759078.2967188, 1571759078.3979425, 1571759078.4991663, 1571759078.60039, 1571759078.7016137, 1571759078.8028374, 1571759078.904061, 1571759079.0052848, 1571759079.1065085, 1571759079.2077322, 1571759079.308956, 1571759079.4101796, 1571759079.5114033, 1571759079.612627, 1571759079.7138507, 1571759079.8150744, 1571759079.9162982, 1571759080.0175219, 1571759080.1187456, 1571759080.2199693, 1571759080.3211927, 1571759080.4224164, 1571759080.5236402, 1571759080.6248639, 1571759080.7260876, 1571759080.8273113, 1571759080.928535, 1571759081.0297587, 1571759081.1309824, 1571759081.232206, 1571759081.3334298, 1571759081.4346535, 1571759081.5358772, 1571759081.637101, 1571759081.7383246, 1571759081.8395483, 1571759081.940772, 1571759082.0419958, 1571759082.1432195, 1571759082.2444432, 1571759082.345667, 1571759082.4468906, 1571759082.5481143, 1571759082.649338, 1571759082.7505617, 1571759082.8517854, 1571759082.9530091, 1571759083.0542328, 1571759083.1554565, 1571759083.2566803, 1571759083.357904, 1571759083.4591274, 1571759083.5603511, 1571759083.6615748, 1571759083.7627985, 1571759083.8640223, 1571759083.965246, 1571759084.0664697, 1571759084.1676934, 1571759084.268917, 1571759084.3701408, 1571759084.4713645, 1571759084.5725882, 1571759084.673812, 1571759084.7750356, 1571759084.8762593, 1571759084.977483, 1571759085.0787067, 1571759085.1799304, 1571759085.2811542, 1571759085.3823779, 1571759085.4836016, 1571759085.5848253, 1571759085.686049, 1571759085.7872727, 1571759085.8884964, 1571759085.98972, 1571759086.0909438, 1571759086.1921675, 1571759086.2933912, 1571759086.394615, 1571759086.4958386, 1571759086.5970623, 1571759086.6982858, 1571759086.7995095, 1571759086.9007332, 1571759087.001957, 1571759087.1031806, 1571759087.2044044, 1571759087.305628, 1571759087.4068518, 1571759087.5080755, 1571759087.6092992, 1571759087.710523, 1571759087.8117466, 1571759087.9129703, 1571759088.014194, 1571759088.1154177, 1571759088.2166414, 1571759088.3178651, 1571759088.4190888, 1571759088.5203125, 1571759088.6215363, 1571759088.72276, 1571759088.8239837, 1571759088.9252074, 1571759089.026431, 1571759089.1276548, 1571759089.2288785, 1571759089.3301022, 1571759089.431326, 1571759089.5325496, 1571759089.6337733, 1571759089.734997, 1571759089.8362205, 1571759089.9374442, 1571759090.038668, 1571759090.1398916, 1571759090.2411153, 1571759090.342339, 1571759090.4435627, 1571759090.5447865, 1571759090.6460102, 1571759090.7472339, 1571759090.8484576, 1571759090.9496813, 1571759091.050905, 1571759091.1521287, 1571759091.2533524, 1571759091.354576], "samples": [[0.17400550842285156, 0.13364599645137787, 0.12773923575878143, 0.111447274684906], [0.1763680875301361, 0.13250571489334106, 0.13428127765655518, 0.11583540588617325], [0.17456600069999695, 0.12861864268779755, 0.1354844570159912, 0.12978309392929077], [0.1747310310602188, 0.1271173357963562, 0.1338042914867401, 0.1311306357383728], [0.17596757411956787, 0.12981964647769928, 0.13219046592712402, 0.13626901805400848], [0.17594526708126068, 0.1340997964143753, 0.1341726928949356, 0.1363726705312729], [0.17460565268993378, 0.13519002497196198, 0.13806694746017456, 0.12926608324050903], [0.1733870655298233, 0.1348063200712204, 0.15103425085544586, 0.12368030101060867], [0.17488884925842285, 0.13866741955280304, 0.18032768368721008, 0.12103365361690521], [0.17954738438129425, 0.15181085467338562, 0.2172391563653946, 0.11910717934370041], [0.18568965792655945, 0.1580483466386795, 0.23303546011447906, 0.12140809744596481], [0.190562903881073, 0.16226789355278015, 0.22164089977741241, 0.145430326461792], [0.19529618322849274, 0.16701103746891022, 0.20267391204833984, 0.16947577893733978], [0.19831591844558716, 0.16696180403232574, 0.19089911878108978, 0.1794993132352829], [0.2016480714082718, 0.16407664120197296, 0.1811201572418213, 0.18317826092243195], [0.2172325849533081, 0.15871043503284454, 0.17175349593162537, 0.18770542740821838], [0.20620404183864594, 0.14643649756908417, 0.16676115989685059, 0.19266033172607422], [0.18304653465747833, 0.13049548864364624, 0.1664804369211197, 0.20228929817676544], [0.16943441331386566, 0.1257300227880478, 0.16769105195999146, 0.22682221233844757], [0.15945515036582947, 0.12429989129304886, 0.17348523437976837, 0.24391934275627136], [0.15751245617866516, 0.1225036233663559, 0.186764657497406, 0.25996533036231995], [0.16033245623111725, 0.12122923135757446, 0.18901120126247406, 0.26655250787734985], [0.169453427195549, 0.122026726603508, 0.1878368854522705, 0.27079838514328003], [0.17185859382152557, 0.12342272698879242, 0.1876528114080429, 0.27253249287605286], [0.16971181333065033, 0.12515030801296234, 0.1901555061340332, 0.27027347683906555], [0.16668134927749634, 0.1273851841688156, 0.18935924768447876, 0.2688019573688507], [0.15897230803966522, 0.11997061967849731, 0.18895310163497925, 0.2687007188796997], [0.14627613127231598, 0.11526580154895782, 0.18467684090137482, 0.26443034410476685], [0.1377926617860794, 0.12017488479614258, 0.18259546160697937, 0.25190645456314087], [0.1427290141582489, 0.12262420356273651, 0.18177619576454163, 0.24190488457679749], [0.1652996689081192, 0.12553733587265015, 0.18954870104789734, 0.2360018491744995], [0.17912526428699493, 0.13087891042232513, 0.2057235985994339, 0.22861774265766144], [0.18453510105609894, 0.13552407920360565, 0.21224503219127655, 0.22417576611042023], [0.18119940161705017, 0.13553054630756378, 0.20552334189414978, 0.21679005026817322], [0.1750364750623703, 0.12492850422859192, 0.18887262046337128, 0.19723421335220337], [0.17073236405849457, 0.10940928757190704, 0.17616549134254456, 0.1725069284439087], [0.1671098917722702, 0.0954696461558342, 0.15441620349884033, 0.14511552453041077], [0.16501384973526, 0.08874353766441345, 0.13824960589408875, 0.12609322369098663], [0.15947730839252472, 0.08180413395166397, 0.13337421417236328, 0.12069661915302277], [0.14941754937171936, 0.07479201257228851, 0.1326117366552353, 0.12878559529781342], [0.14267174899578094, 0.06739921122789383, 0.13298983871936798, 0.12925632297992706], [0.13844317197799683, 0.06088051199913025, 0.13320207595825195, 0.12596136331558228], [0.13370901346206665, 0.06620491296052933, 0.13506388664245605, 0.11617550998926163], [0.12934955954551697, 0.07597413659095764, 0.1406686007976532, 0.10681752115488052], [0.1259537786245346, 0.05502669885754585, 0.14857545495033264, 0.09522496908903122], [0.12467720359563828, 0.06431654095649719, 0.16065610945224762, 0.09522496908903122], [0.12467720359563828, 0.07072310149669647, 0.17143408954143524, 0.09522496908903122], [0.12467720359563828, 0.07589972764253616, 0.16911759972572327, 0.09522496908903122], [0.12467720359563828, 0.08064649999141693, 0.1537967026233673, 0.09522496908903122], [0.12467720359563828, 0.09178309142589569, 0.13903197646141052, 0.09522496908903122], [0.12467720359563828, 0.11772987991571426, 0.14297398924827576, 0.09522496908903122], [0.12467720359563828, 0.1799256056547165, 0.1567258983850479, 0.09522496908903122], [0.12467720359563828, 0.1907637119293213, 0.17000776529312134, 0.09522496908903122], [0.12467720359563828, 0.1976221203804016, 0.17671377956867218, 0.09522496908903122], [0.12467720359563828, 0.20804370939731598, 0.18438802659511566, 0.09522496908903122], [0.12467720359563828, 0.240290105342865, 0.19452627003192902, 0.09522496908903122], [0.12467720359563828, 0.2577328681945801, 0.21202902495861053, 0.09522496908903122], [0.12467720359563828, 0.24949510395526886, 0.23323269188404083, 0.09522496908903122], [0.12467720359563828, 0.23591160774230957, 0.26063650846481323, 0.09522496908903122], [0.12467720359563828, 0.2297317534685135, 0.2887283265590668, 0.09522496908903122], [0.12467720359563828, 0.22787269949913025, 0.29357677698135376, 0.09522496908903122], [0.12467720359563828, 0.2275017350912094, 0.2906252145767212, 0.09522496908903122], [0.12467720359563828, 0.22134965658187866, 0.2867664098739624, 0.09522496908903122], [0.12467720359563828, 0.23031897842884064, 0.27980396151542664, 0.09522496908903122], [0.12467720359563828, 0.2697494924068451, 0.2679097056388855, 0.09522496908903122], [0.12467720359563828, 0.31701529026031494, 0.25249651074409485, 0.09522496908903122], [0.12467720359563828, 0.32306942343711853, 0.2379639446735382, 0.09522496908903122], [0.12467720359563828, 0.3188731074333191, 0.22640617191791534, 0.09522496908903122], [0.12467720359563828, 0.32073718309402466, 0.21867135167121887, 0.09522496908903122], [0.12467720359563828, 0.3243426978588104, 0.21286529302597046, 0.09522496908903122], [0.12467720359563828, 0.32536765933036804, 0.21339650452136993, 0.09522496908903122], [0.12467720359563828, 0.3150753378868103, 0.22962220013141632, 0.09522496908903122], [0.12467720359563828, 0.2898706793785095, 0.22619399428367615, 0.09522496908903122], [0.12467720359563828, 0.27143311500549316, 0.2266678810119629, 0.09522496908903122], [0.12467720359563828, 0.26414987444877625, 0.22102972865104675, 0.09522496908903122], [0.12467720359563828, 0.26365673542022705, 0.20367282629013062, 0.09522496908903122], [0.12467720359563828, 0.26612189412117004, 0.18625342845916748, 0.09522496908903122], [0.12467720359563828, 0.26998409628868103, 0.1791481375694275, 0.09522496908903122], [0.12467720359563828, 0.2745803892612457, 0.1835361272096634, 0.09522496908903122], [0.12467720359563828, 0.28036731481552124, 0.18824081122875214, 0.09522496908903122], [0.16812291741371155, 0.29004988074302673, 0.19508081674575806, 0.09522496908903122], [0.17114287614822388, 0.2646724581718445, 0.20450012385845184, 0.09522496908903122], [0.1771063208580017, 0.20392875373363495, 0.21404233574867249, 0.09522496908903122], [0.18521977961063385, 0.1558903455734253, 0.22214123606681824, 0.09522496908903122], [0.1914331465959549, 0.1454690396785736, 0.22981445491313934, 0.09522496908903122], [0.19362176954746246, 0.1503208577632904, 0.23639677464962006, 0.09522496908903122], [0.19130104780197144, 0.16071593761444092, 0.23406316339969635, 0.09522496908903122], [0.1897590160369873, 0.17837181687355042, 0.1963159441947937, 0.08420572429895401], [0.19001129269599915, 0.20038987696170807, 0.17824101448059082, 0.08647280931472778], [0.19001129269599915, 0.2188800722360611, 0.18353354930877686, 0.09305737912654877], [0.19001129269599915, 0.23028989136219025, 0.1908515989780426, 0.09739454835653305], [0.19001129269599915, 0.2313440591096878, 0.19560623168945312, 0.10049251466989517], [0.16797591745853424, 0.23305381834506989, 0.19806067645549774, 0.09846580773591995], [0.1412033587694168, 0.2294880747795105, 0.1886208951473236, 0.09624216705560684], [0.11429338902235031, 0.21671758592128754, 0.17722377181053162, 0.09639569371938705], [0.10442880541086197, 0.20689305663108826, 0.1735266000032425, 0.09711603075265884], [0.10053703188896179, 0.20431315898895264, 0.17294831573963165, 0.10028350353240967], [0.17964479327201843, 0.20198093354701996, 0.17683187127113342, 0.10190469771623611], [0.19234035909175873, 0.19806089997291565, 0.1862681657075882, 0.10188017785549164], [0.20168936252593994, 0.19337999820709229, 0.19572243094444275, 0.09997691214084625], [0.21123966574668884, 0.18891017138957977, 0.19886748492717743, 0.11533711850643158], [0.2200494110584259, 0.18585973978042603, 0.2001769244670868, 0.13369090855121613], [0.22390040755271912, 0.18204641342163086, 0.20248480141162872, 0.15692493319511414], [0.22139745950698853, 0.17449910938739777, 0.20348714292049408, 0.16507156193256378], [0.2174239605665207, 0.1716219186782837, 0.18969473242759705, 0.16468200087547302], [0.21787141263484955, 0.16992658376693726, 0.18195098638534546, 0.16545812785625458], [0.22121858596801758, 0.16602879762649536, 0.18274162709712982, 0.16741256415843964], [0.2253209799528122, 0.16364924609661102, 0.18534375727176666, 0.17078661918640137], [0.2287529706954956, 0.15585769712924957, 0.19013795256614685, 0.17449240386486053], [0.2316797524690628, 0.15369699895381927, 0.1944570094347, 0.176888108253479], [0.23598602414131165, 0.15682901442050934, 0.19754919409751892, 0.17702563107013702], [0.24061404168605804, 0.1651088446378708, 0.1984385997056961, 0.17566336691379547], [0.2296036034822464, 0.17417128384113312, 0.19648824632167816, 0.17408280074596405], [0.2011222541332245, 0.18155714869499207, 0.19160307943820953, 0.17516936361789703], [0.1724984049797058, 0.1873820722103119, 0.18634140491485596, 0.18804088234901428], [0.17057178914546967, 0.19398434460163116, 0.18292424082756042, 0.19615624845027924], [0.17296135425567627, 0.2007634937763214, 0.18037042021751404, 0.1982104480266571], [0.17874765396118164, 0.20814046263694763, 0.1808752566576004, 0.1914542019367218], [0.1795225292444229, 0.21702751517295837, 0.18292349576950073, 0.1852455884218216], [0.1810915172100067, 0.23505081236362457, 0.19150832295417786, 0.21418537199497223], [0.18125668168067932, 0.27448704838752747, 0.24240776896476746, 0.2481728345155716], [0.18318352103233337, 0.31766030192375183, 0.2805653512477875, 0.2581928074359894], [0.18419000506401062, 0.33698511123657227, 0.3033769428730011, 0.25646448135375977], [0.18550580739974976, 0.3323691785335541, 0.30886536836624146, 0.2538887858390808], [0.1802542507648468, 0.32921645045280457, 0.30844032764434814, 0.2501015067100525], [0.17992962896823883, 0.32960274815559387, 0.30637219548225403, 0.24352000653743744], [0.1773359477519989, 0.32403063774108887, 0.2997145652770996, 0.23820582032203674], [0.17268197238445282, 0.30450037121772766, 0.2898325026035309, 0.23303334414958954], [0.16746845841407776, 0.2829490900039673, 0.2812860310077667, 0.23166072368621826], [0.1592094898223877, 0.2661568522453308, 0.27721521258354187, 0.23208194971084595], [0.13383430242538452, 0.2558319866657257, 0.27607715129852295, 0.22931529581546783], [0.10271522402763367, 0.24866056442260742, 0.27656400203704834, 0.22639887034893036], [0.08381054550409317, 0.23833012580871582, 0.2797776758670807, 0.22360479831695557], [0.08381054550409317, 0.23048993945121765, 0.28621435165405273, 0.22140662372112274], [0.08381054550409317, 0.22716723382472992, 0.29445087909698486, 0.21989059448242188], [0.08381054550409317, 0.22773677110671997, 0.2978563904762268, 0.2159452587366104], [0.08381054550409317, 0.23090213537216187, 0.2899784445762634, 0.19971643388271332], [0.13341669738292694, 0.23115403950214386, 0.25654247403144836, 0.17107181251049042], [0.15736626088619232, 0.2103499472141266, 0.21612794697284698, 0.16205191612243652], [0.14659537374973297, 0.17101654410362244, 0.19812525808811188, 0.1640552133321762], [0.13857389986515045, 0.14447559416294098, 0.1883753538131714, 0.17967261373996735], [0.14304694533348083, 0.1553441882133484, 0.18251268565654755, 0.19754616916179657], [0.151755228638649, 0.19704172015190125, 0.16878162324428558, 0.21147345006465912], [0.15329742431640625, 0.24994248151779175, 0.13662008941173553, 0.22555239498615265], [0.15305079519748688, 0.28126460313796997, 0.12092776596546173, 0.217656672000885], [0.15833795070648193, 0.2967126965522766, 0.12962952256202698, 0.22151270508766174], [0.16707302629947662, 0.30857527256011963, 0.13504905998706818, 0.2230357676744461], [0.17619538307189941, 0.3158200681209564, 0.136385977268219, 0.2249586135149002], [0.18124395608901978, 0.31765004992485046, 0.13710594177246094, 0.23238010704517365], [0.18599434196949005, 0.32742199301719666, 0.14347854256629944, 0.25765448808670044], [0.18495957553386688, 0.3586715757846832, 0.16998308897018433, 0.2968375086784363], [0.1858372837305069, 0.381686270236969, 0.20949286222457886, 0.3299381732940674], [0.18373733758926392, 0.3752916753292084, 0.23392970860004425, 0.34429842233657837], [0.1786046177148819, 0.3700142502784729, 0.23344095051288605, 0.3376725912094116], [0.17894724011421204, 0.36866527795791626, 0.22201348841190338, 0.32946550846099854], [0.18398505449295044, 0.369619756937027, 0.2011432647705078, 0.3217322826385498], [0.18528585135936737, 0.3673035502433777, 0.18404483795166016, 0.3126589357852936]], "channel_names": ["ch1", "ch2", "ch3", "ch4"]}, "beta_relative": {"name": "beta_relative", "fs": 9.87911806432994, "emp_fs": 9.87911806432994, "timestamps": [1571759075.5637016, 1571759075.6649253, 1571759075.7661488, 1571759075.8673725, 1571759075.968596, 1571759076.0698197, 1571759076.1710434, 1571759076.2722669, 1571759076.3734906, 1571759076.474714, 1571759076.5759377, 1571759076.6771615, 1571759076.778385, 1571759076.8796086, 1571759076.980832, 1571759077.0820558, 1571759077.1832795, 1571759077.284503, 1571759077.3857267, 1571759077.4869502, 1571759077.5881739, 1571759077.6893976, 1571759077.790621, 1571759077.8918447, 1571759077.9930682, 1571759078.094292, 1571759078.1955156, 1571759078.296739, 1571759078.3979628, 1571759078.4991863, 1571759078.60041, 1571759078.7016335, 1571759078.8028572, 1571759078.9040809, 1571759079.0053043, 1571759079.106528, 1571759079.2077515, 1571759079.3089752, 1571759079.410199, 1571759079.5114224, 1571759079.612646, 1571759079.7138696, 1571759079.8150933, 1571759079.916317, 1571759080.0175405, 1571759080.1187642, 1571759080.2199876, 1571759080.3212113, 1571759080.422435, 1571759080.5236585, 1571759080.6248822, 1571759080.7261057, 1571759080.8273294, 1571759080.928553, 1571759081.0297766, 1571759081.1310003, 1571759081.2322237, 1571759081.3334475, 1571759081.4346712, 1571759081.5358946, 1571759081.6371183, 1571759081.7383418, 1571759081.8395655, 1571759081.9407892, 1571759082.0420127, 1571759082.1432364, 1571759082.2444599, 1571759082.3456836, 1571759082.4469073, 1571759082.5481308, 1571759082.6493545, 1571759082.750578, 1571759082.8518016, 1571759082.9530253, 1571759083.0542488, 1571759083.1554725, 1571759083.256696, 1571759083.3579197, 1571759083.4591432, 1571759083.5603669, 1571759083.6615906, 1571759083.762814, 1571759083.8640378, 1571759083.9652612, 1571759084.066485, 1571759084.1677086, 1571759084.268932, 1571759084.3701558, 1571759084.4713793, 1571759084.572603, 1571759084.6738267, 1571759084.7750502, 1571759084.8762739, 1571759084.9774973, 1571759085.078721, 1571759085.1799448, 1571759085.2811682, 1571759085.382392, 1571759085.4836154, 1571759085.584839, 1571759085.6860628, 1571759085.7872863, 1571759085.88851, 1571759085.9897335, 1571759086.0909572, 1571759086.1921809, 1571759086.2934043, 1571759086.394628, 1571759086.4958515, 1571759086.5970752, 1571759086.698299, 1571759086.7995224, 1571759086.900746, 1571759087.0019696, 1571759087.1031933, 1571759087.204417, 1571759087.3056405, 1571759087.4068642, 1571759087.5080876, 1571759087.6093113, 1571759087.710535, 1571759087.8117585, 1571759087.9129822, 1571759088.0142057, 1571759088.1154294, 1571759088.216653, 1571759088.3178766, 1571759088.4191003, 1571759088.5203238, 1571759088.6215475, 1571759088.7227712, 1571759088.8239946, 1571759088.9252183, 1571759089.0264418, 1571759089.1276655, 1571759089.228889, 1571759089.3301127, 1571759089.4313364, 1571759089.5325599, 1571759089.6337836, 1571759089.735007, 1571759089.8362308, 1571759089.9374545, 1571759090.038678, 1571759090.1399016, 1571759090.241125, 1571759090.3423488, 1571759090.4435725, 1571759090.544796, 1571759090.6460197, 1571759090.7472432, 1571759090.8484669, 1571759090.9496906, 1571759091.050914, 1571759091.1521378, 1571759091.2533612, 1571759091.354585], "samples": [[0.22303897142410278, 0.11529253423213959, 0.15405048429965973, 0.338056355714798], [0.20789147913455963, 0.10911209136247635, 0.1442195326089859, 0.3344007432460785], [0.2028844654560089, 0.10399554669857025, 0.1352168768644333, 0.2716384530067444], [0.20142626762390137, 0.10046565532684326, 0.12565751373767853, 0.2490186095237732], [0.19932903349399567, 0.09720782190561295, 0.11608496308326721, 0.2413087785243988], [0.19442641735076904, 0.09324410557746887, 0.10723365098237991, 0.23881219327449799], [0.1867160052061081, 0.0888303592801094, 0.09911889582872391, 0.2388315051794052], [0.17672227323055267, 0.08392632007598877, 0.09109007567167282, 0.2365911602973938], [0.1668880581855774, 0.07836467027664185, 0.08231472969055176, 0.23259156942367554], [0.1605902463197708, 0.07268916070461273, 0.07366001605987549, 0.2289596050977707], [0.15755820274353027, 0.06921527534723282, 0.06798478960990906, 0.22742587327957153], [0.15732692182064056, 0.06823866814374924, 0.06514085084199905, 0.22811521589756012], [0.15922784805297852, 0.068232960999012, 0.06439180672168732, 0.22852405905723572], [0.16236814856529236, 0.06635468453168869, 0.06399527937173843, 0.23078948259353638], [0.16599582135677338, 0.06284476071596146, 0.06361393630504608, 0.23348332941532135], [0.17841464281082153, 0.0598527193069458, 0.06301628798246384, 0.23593275249004364], [0.1935255080461502, 0.058562230318784714, 0.06258905678987503, 0.23820552229881287], [0.20216034352779388, 0.05824632942676544, 0.0633043721318245, 0.2548370063304901], [0.2006239891052246, 0.05735490471124649, 0.06602881848812103, 0.2552516758441925], [0.19606201350688934, 0.05623718723654747, 0.07032529264688492, 0.25256919860839844], [0.19240455329418182, 0.0558394119143486, 0.07514902204275131, 0.2520299553871155], [0.19238656759262085, 0.056836385279893875, 0.0810021460056305, 0.25749579071998596], [0.19672225415706635, 0.0588112510740757, 0.08598291873931885, 0.2657681405544281], [0.20678019523620605, 0.061077117919921875, 0.08957752585411072, 0.2754650413990021], [0.21846970915794373, 0.06319622695446014, 0.0927111804485321, 0.2868327796459198], [0.22798416018486023, 0.06516231596469879, 0.09707411378622055, 0.2954244315624237], [0.23274751007556915, 0.06567182391881943, 0.10310596972703934, 0.2954306900501251], [0.23334668576717377, 0.06279725581407547, 0.10950172692537308, 0.2895560562610626], [0.23128925263881683, 0.057668138295412064, 0.11329736560583115, 0.2852502465248108], [0.22666999697685242, 0.05165018513798714, 0.11505617946386337, 0.28019773960113525], [0.21977420151233673, 0.053593698889017105, 0.11591735482215881, 0.2710860073566437], [0.21847712993621826, 0.05567920580506325, 0.1155194565653801, 0.25911641120910645], [0.2211647927761078, 0.05697708949446678, 0.11452943086624146, 0.2586576044559479], [0.22433488070964813, 0.05660008266568184, 0.1113613098859787, 0.26084598898887634], [0.22567293047904968, 0.04597651585936546, 0.10466758161783218, 0.2677778899669647], [0.22837050259113312, 0.037940677255392075, 0.0938987210392952, 0.2750726044178009], [0.2297181487083435, 0.030861953273415565, 0.08448591828346252, 0.2803182303905487], [0.22921599447727203, 0.027220238000154495, 0.07706785947084427, 0.2786770462989807], [0.22814148664474487, 0.0236895103007555, 0.07173468172550201, 0.26727867126464844], [0.22766144573688507, 0.020845778286457062, 0.06790415197610855, 0.24871022999286652], [0.22712668776512146, 0.018564878031611443, 0.06521175056695938, 0.23741814494132996], [0.22888773679733276, 0.01669948548078537, 0.06378913670778275, 0.22420598566532135], [0.23440231382846832, 0.02010173164308071, 0.06362856179475784, 0.22157511115074158], [0.2409118264913559, 0.02504703588783741, 0.064398854970932, 0.22522377967834473], [0.24456918239593506, 0.03566298633813858, 0.06533496081829071, 0.2320597916841507], [0.24314041435718536, 0.04037683829665184, 0.06550633162260056, 0.2320597916841507], [0.24314041435718536, 0.043969400227069855, 0.06574087589979172, 0.2320597916841507], [0.24314041435718536, 0.04615352675318718, 0.06729482859373093, 0.2320597916841507], [0.24314041435718536, 0.047355227172374725, 0.06969583034515381, 0.2320597916841507], [0.24314041435718536, 0.05914397910237312, 0.07290331274271011, 0.2320597916841507], [0.24314041435718536, 0.07976721972227097, 0.07724537700414658, 0.2320597916841507], [0.24314041435718536, 0.13218270242214203, 0.08231169730424881, 0.2320597916841507], [0.24314041435718536, 0.12829600274562836, 0.08673574030399323, 0.2320597916841507], [0.24314041435718536, 0.12537333369255066, 0.08974885940551758, 0.2320597916841507], [0.24314041435718536, 0.12170632928609848, 0.09234005957841873, 0.2320597916841507], [0.24314041435718536, 0.1125054657459259, 0.09415356069803238, 0.2320597916841507], [0.24314041435718536, 0.10369455069303513, 0.09266531467437744, 0.2320597916841507], [0.24314041435718536, 0.09346698969602585, 0.08857081085443497, 0.2320597916841507], [0.24314041435718536, 0.08510182052850723, 0.08449682593345642, 0.2320597916841507], [0.24314041435718536, 0.07934875041246414, 0.08303892612457275, 0.2320597916841507], [0.24314041435718536, 0.07588038593530655, 0.08603189140558243, 0.2320597916841507], [0.24314041435718536, 0.07372640073299408, 0.09001533687114716, 0.2320597916841507], [0.24314041435718536, 0.07301480323076248, 0.0949249416589737, 0.2320597916841507], [0.24314041435718536, 0.07354951649904251, 0.09975355863571167, 0.2320597916841507], [0.24314041435718536, 0.07556195557117462, 0.1024542972445488, 0.2320597916841507], [0.24314041435718536, 0.07952270656824112, 0.10170411318540573, 0.2320597916841507], [0.24314041435718536, 0.08842428773641586, 0.09883422404527664, 0.2320597916841507], [0.24314041435718536, 0.09635035693645477, 0.09562648832798004, 0.2320597916841507], [0.24314041435718536, 0.10122045129537582, 0.09382253885269165, 0.2320597916841507], [0.24314041435718536, 0.10395713150501251, 0.0934554785490036, 0.2320597916841507], [0.24314041435718536, 0.10551366209983826, 0.09323987364768982, 0.2320597916841507], [0.24314041435718536, 0.10541786253452301, 0.09157246351242065, 0.2320597916841507], [0.24314041435718536, 0.10452527552843094, 0.09259369224309921, 0.2320597916841507], [0.24314041435718536, 0.10167129337787628, 0.09206224232912064, 0.2320597916841507], [0.24314041435718536, 0.09860168397426605, 0.09047000855207443, 0.2320597916841507], [0.24314041435718536, 0.09697821736335754, 0.0885653868317604, 0.2320597916841507], [0.24314041435718536, 0.0968359187245369, 0.08592206239700317, 0.2320597916841507], [0.24314041435718536, 0.09744447469711304, 0.08154252916574478, 0.2320597916841507], [0.24314041435718536, 0.09652850031852722, 0.07738897949457169, 0.2320597916841507], [0.24314041435718536, 0.09225244075059891, 0.07628590613603592, 0.2320597916841507], [0.24645394086837769, 0.08447430282831192, 0.07897590100765228, 0.2320597916841507], [0.24020646512508392, 0.07889337092638016, 0.08490671962499619, 0.2320597916841507], [0.23548562824726105, 0.07780216634273529, 0.09220018237829208, 0.2320597916841507], [0.23534631729125977, 0.07868069410324097, 0.09881627559661865, 0.2320597916841507], [0.23897524178028107, 0.07935263961553574, 0.10408102720975876, 0.2320597916841507], [0.24493254721164703, 0.08039942383766174, 0.10849881917238235, 0.2320597916841507], [0.2518026828765869, 0.0836142897605896, 0.11396536976099014, 0.2320597916841507], [0.2565018832683563, 0.08934421837329865, 0.12402249127626419, 0.26075658202171326], [0.2593224346637726, 0.09688586741685867, 0.13105455040931702, 0.26001235842704773], [0.2593224346637726, 0.10387011617422104, 0.1349584311246872, 0.273924857378006], [0.2593224346637726, 0.10742177814245224, 0.14035220444202423, 0.29285943508148193], [0.2593224346637726, 0.1075427457690239, 0.14835777878761292, 0.30414965748786926], [0.2668367028236389, 0.10554282367229462, 0.1578538566827774, 0.3056563138961792], [0.27687352895736694, 0.10416045784950256, 0.16832323372364044, 0.3006877601146698], [0.2887461185455322, 0.10381465405225754, 0.17623382806777954, 0.2954959571361542], [0.2975461184978485, 0.10203665494918823, 0.18087489902973175, 0.29575178027153015], [0.3070170283317566, 0.09847627580165863, 0.18273726105690002, 0.3015602231025696], [0.28847700357437134, 0.09485723078250885, 0.18337498605251312, 0.31340837478637695], [0.29423806071281433, 0.09058136492967606, 0.18108484148979187, 0.32811668515205383], [0.3028535842895508, 0.08525852113962173, 0.17588703334331512, 0.3402724862098694], [0.3121839463710785, 0.08046353608369827, 0.16791567206382751, 0.3449169993400574], [0.32255819439888, 0.07738178223371506, 0.15553192794322968, 0.34715133905410767], [0.33516544103622437, 0.07578267902135849, 0.14097242057323456, 0.34605899453163147], [0.3448134660720825, 0.07445153594017029, 0.12954717874526978, 0.34725356101989746], [0.3386242687702179, 0.07151465862989426, 0.1260218769311905, 0.3470769226551056], [0.3284715414047241, 0.06665455549955368, 0.1255466490983963, 0.34184250235557556], [0.3188704550266266, 0.06135581061244011, 0.126852348446846, 0.33668047189712524], [0.31184086203575134, 0.05714729055762291, 0.13060171902179718, 0.3351752460002899], [0.3058081567287445, 0.055623870342969894, 0.13666236400604248, 0.33791831135749817], [0.2991600036621094, 0.056085821241140366, 0.1431734710931778, 0.34308263659477234], [0.29171594977378845, 0.05763073265552521, 0.1471841186285019, 0.3468044102191925], [0.28540194034576416, 0.058826886117458344, 0.14714567363262177, 0.34584760665893555], [0.2883163094520569, 0.05885184183716774, 0.1435713917016983, 0.33851736783981323], [0.29615846276283264, 0.057810697704553604, 0.1393049657344818, 0.3279171884059906], [0.302160382270813, 0.05658407136797905, 0.13596972823143005, 0.3170856237411499], [0.2970805764198303, 0.05590894818305969, 0.13581882417201996, 0.3172512948513031], [0.2875592112541199, 0.05626458302140236, 0.13913919031620026, 0.32628369331359863], [0.273150771856308, 0.05776336416602135, 0.14387854933738708, 0.33914485573768616], [0.2593008875846863, 0.06026501581072807, 0.14805109798908234, 0.34895116090774536], [0.24765083193778992, 0.06292377412319183, 0.14815287292003632, 0.3398537337779999], [0.2412097454071045, 0.06537444144487381, 0.13825170695781708, 0.32516124844551086], [0.24082380533218384, 0.06976751238107681, 0.12877750396728516, 0.3174055516719818], [0.23951467871665955, 0.07783569395542145, 0.12026607245206833, 0.3125297427177429], [0.23788097500801086, 0.0870971828699112, 0.11301672458648682, 0.30738773941993713], [0.24867893755435944, 0.09073752909898758, 0.10616583377122879, 0.30312997102737427], [0.25277063250541687, 0.08899249136447906, 0.1000775471329689, 0.3020738661289215], [0.2578832507133484, 0.08491213619709015, 0.09595014154911041, 0.3021954596042633], [0.26098713278770447, 0.0814204290509224, 0.09378480911254883, 0.30159980058670044], [0.2597564160823822, 0.07913649082183838, 0.09372012317180634, 0.2944183051586151], [0.2548080384731293, 0.07798971235752106, 0.095832459628582, 0.2804363965988159], [0.2517069876194, 0.07761877775192261, 0.10007775574922562, 0.2742888331413269], [0.25119325518608093, 0.07651308178901672, 0.1064385250210762, 0.2657195031642914], [0.25330716371536255, 0.07425761222839355, 0.11422144621610641, 0.25669851899147034], [0.25330716371536255, 0.0708204135298729, 0.12119695544242859, 0.2474280595779419], [0.25330716371536255, 0.06759210675954819, 0.12609001994132996, 0.23859034478664398], [0.25330716371536255, 0.06550227105617523, 0.12987500429153442, 0.23288820683956146], [0.25330716371536255, 0.06499606370925903, 0.13494257628917694, 0.24049513041973114], [0.3706130087375641, 0.06648015230894089, 0.14359402656555176, 0.2567243278026581], [0.340542733669281, 0.07099029421806335, 0.14969424903392792, 0.2654677629470825], [0.32347768545150757, 0.0778321772813797, 0.14827652275562286, 0.2655288279056549], [0.3021232485771179, 0.0839015543460846, 0.14641883969306946, 0.2557637691497803], [0.2904743254184723, 0.08757451176643372, 0.1488942950963974, 0.24431906640529633], [0.2893800735473633, 0.08985939621925354, 0.15790867805480957, 0.23857341706752777], [0.2956791818141937, 0.0918954610824585, 0.1714906394481659, 0.24190405011177063], [0.2997666895389557, 0.09613311290740967, 0.1779240220785141, 0.26140663027763367], [0.2962450385093689, 0.10064350813627243, 0.17313897609710693, 0.2614910304546356], [0.2883974015712738, 0.10450717061758041, 0.16425980627536774, 0.2615305781364441], [0.2786368131637573, 0.10868392884731293, 0.1550368070602417, 0.2607369124889374], [0.2710030972957611, 0.11342961341142654, 0.1486547589302063, 0.25940266251564026], [0.2657991349697113, 0.11750078946352005, 0.14511273801326752, 0.2530733644962311], [0.25762036442756653, 0.11969304829835892, 0.1403682380914688, 0.24591584503650665], [0.25558722019195557, 0.12361771613359451, 0.13313747942447662, 0.23516160249710083], [0.2585311233997345, 0.13157117366790771, 0.12558843195438385, 0.22719813883304596], [0.2639273405075073, 0.13745439052581787, 0.1180880144238472, 0.22634506225585938], [0.26826468110084534, 0.1429765224456787, 0.10761015117168427, 0.22644582390785217], [0.26872143149375916, 0.14794805645942688, 0.09659231454133987, 0.22349794209003448], [0.27069875597953796, 0.1524653434753418, 0.08602117747068405, 0.21604032814502716]], "channel_names": ["ch1", "ch2", "ch3", "ch4"]}, "delta_relative": {"name": "delta_relative", "fs": 9.879122878594037, "emp_fs": 9.879122878594037, "timestamps": [1571759075.5637183, 1571759075.6649418, 1571759075.7661655, 1571759075.867389, 1571759075.9686127, 1571759076.0698361, 1571759076.1710596, 1571759076.2722833, 1571759076.3735068, 1571759076.4747305, 1571759076.575954, 1571759076.6771774, 1571759076.7784011, 1571759076.8796246, 1571759076.980848, 1571759077.0820718, 1571759077.1832952, 1571759077.284519, 1571759077.3857424, 1571759077.486966, 1571759077.5881896, 1571759077.689413, 1571759077.7906368, 1571759077.8918602, 1571759077.9930837, 1571759078.0943074, 1571759078.195531, 1571759078.2967546, 1571759078.397978, 1571759078.4992015, 1571759078.6004252, 1571759078.7016487, 1571759078.8028724, 1571759078.904096, 1571759079.0053194, 1571759079.106543, 1571759079.2077665, 1571759079.30899, 1571759079.4102137, 1571759079.5114372, 1571759079.612661, 1571759079.7138844, 1571759079.8151078, 1571759079.9163315, 1571759080.017555, 1571759080.1187787, 1571759080.2200022, 1571759080.3212256, 1571759080.4224494, 1571759080.5236728, 1571759080.6248965, 1571759080.72612, 1571759080.8273435, 1571759080.9285672, 1571759081.0297906, 1571759081.1310143, 1571759081.2322378, 1571759081.3334613, 1571759081.434685, 1571759081.5359085, 1571759081.637132, 1571759081.7383556, 1571759081.839579, 1571759081.9408028, 1571759082.0420263, 1571759082.1432498, 1571759082.2444735, 1571759082.345697, 1571759082.4469206, 1571759082.548144, 1571759082.6493676, 1571759082.7505913, 1571759082.8518147, 1571759082.9530385, 1571759083.054262, 1571759083.1554854, 1571759083.256709, 1571759083.3579326, 1571759083.459156, 1571759083.5603797, 1571759083.6616032, 1571759083.762827, 1571759083.8640504, 1571759083.9652739, 1571759084.0664976, 1571759084.167721, 1571759084.2689447, 1571759084.3701682, 1571759084.4713917, 1571759084.5726154, 1571759084.6738389, 1571759084.7750626, 1571759084.876286, 1571759084.9775095, 1571759085.0787332, 1571759085.1799567, 1571759085.2811804, 1571759085.3824039, 1571759085.4836273, 1571759085.584851, 1571759085.6860745, 1571759085.787298, 1571759085.8885217, 1571759085.9897451, 1571759086.0909688, 1571759086.1921923, 1571759086.2934158, 1571759086.3946395, 1571759086.495863, 1571759086.5970867, 1571759086.6983101, 1571759086.7995336, 1571759086.9007573, 1571759087.0019808, 1571759087.1032045, 1571759087.204428, 1571759087.3056514, 1571759087.4068751, 1571759087.5080986, 1571759087.6093223, 1571759087.7105458, 1571759087.8117692, 1571759087.912993, 1571759088.0142164, 1571759088.11544, 1571759088.2166636, 1571759088.317887, 1571759088.4191108, 1571759088.5203342, 1571759088.6215577, 1571759088.7227814, 1571759088.824005, 1571759088.9252286, 1571759089.026452, 1571759089.1276755, 1571759089.2288992, 1571759089.3301227, 1571759089.4313464, 1571759089.53257, 1571759089.6337934, 1571759089.735017, 1571759089.8362405, 1571759089.9374642, 1571759090.0386877, 1571759090.1399112, 1571759090.241135, 1571759090.3423584, 1571759090.4435818, 1571759090.5448055, 1571759090.646029, 1571759090.7472527, 1571759090.8484762, 1571759090.9496996, 1571759091.0509233, 1571759091.1521468, 1571759091.2533705, 1571759091.354594], "samples": [[0.24206644296646118, 0.47538256645202637, 0.37736696004867554, 0.19558687508106232], [0.2685839533805847, 0.4797291159629822, 0.3859805762767792, 0.19365955889225006], [0.28227493166923523, 0.48911234736442566, 0.3974057137966156, 0.20472021400928497], [0.2888926565647125, 0.495324969291687, 0.41412386298179626, 0.19999253749847412], [0.29324737191200256, 0.4987296164035797, 0.43256208300590515, 0.1901739239692688], [0.297146201133728, 0.502121090888977, 0.44540169835090637, 0.18126708269119263], [0.3015243709087372, 0.509369969367981, 0.4525579512119293, 0.1727043241262436], [0.3096120059490204, 0.5207202434539795, 0.4515921473503113, 0.1679517775774002], [0.3174455761909485, 0.533916175365448, 0.44538000226020813, 0.1661759912967682], [0.3195750415325165, 0.5443944931030273, 0.44521671533584595, 0.16571934521198273], [0.3223496973514557, 0.5582956075668335, 0.461264967918396, 0.16378654539585114], [0.3198336064815521, 0.5673640370368958, 0.4906550645828247, 0.15971879661083221], [0.3134458363056183, 0.5707013607025146, 0.5138384699821472, 0.15764220058918], [0.3073243498802185, 0.5808953046798706, 0.5281165242195129, 0.16080057621002197], [0.3004608154296875, 0.5936502814292908, 0.5427341461181641, 0.16373419761657715], [0.2627047002315521, 0.6022223234176636, 0.5621964335441589, 0.16234199702739716], [0.2437448501586914, 0.6095510721206665, 0.580118715763092, 0.15827718377113342], [0.24853157997131348, 0.6178970336914062, 0.591360330581665, 0.14612813293933868], [0.2631438970565796, 0.6185836791992188, 0.5936542749404907, 0.1417793333530426], [0.2770882248878479, 0.6188650131225586, 0.5851011276245117, 0.14108873903751373], [0.28198519349098206, 0.6201909780502319, 0.566845178604126, 0.13615980744361877], [0.27642515301704407, 0.619346559047699, 0.5554046630859375, 0.12932433187961578], [0.25831544399261475, 0.6142400503158569, 0.5476847290992737, 0.11980392038822174], [0.23679284751415253, 0.606788158416748, 0.5401566028594971, 0.11012446135282516], [0.21745777130126953, 0.5972926616668701, 0.5282700061798096, 0.10113087296485901], [0.20366314053535461, 0.5862669348716736, 0.5144827961921692, 0.09350915998220444], [0.20403389632701874, 0.5899384021759033, 0.49616166949272156, 0.09200839698314667], [0.21636593341827393, 0.6039993166923523, 0.485029399394989, 0.09627961367368698], [0.22739320993423462, 0.6149128079414368, 0.4833175539970398, 0.10304230451583862], [0.232049822807312, 0.6290358901023865, 0.48518168926239014, 0.11457175016403198], [0.2316221445798874, 0.62550950050354, 0.47252142429351807, 0.1363522857427597], [0.231597900390625, 0.6199915409088135, 0.444067120552063, 0.1663094460964203], [0.22866255044937134, 0.6169517040252686, 0.41885340213775635, 0.17164850234985352], [0.22623483836650848, 0.6223224401473999, 0.414861261844635, 0.1772337257862091], [0.22659417986869812, 0.6798003911972046, 0.43699854612350464, 0.18646779656410217], [0.22981813549995422, 0.7279523611068726, 0.4716484546661377, 0.20011916756629944], [0.23672612011432648, 0.7678979635238647, 0.5103961229324341, 0.21925565600395203], [0.245926633477211, 0.7828320860862732, 0.5374810099601746, 0.2415127009153366], [0.2571575343608856, 0.7987542152404785, 0.5493640899658203, 0.2651248872280121], [0.2685387134552002, 0.8144069314002991, 0.5556147694587708, 0.28114885091781616], [0.27572593092918396, 0.8292543888092041, 0.5608466267585754, 0.2971557080745697], [0.2750479280948639, 0.8414287567138672, 0.5653743147850037, 0.3214552402496338], [0.2670956552028656, 0.8352093696594238, 0.564410388469696, 0.3419771194458008], [0.25906142592430115, 0.8290609121322632, 0.5518302917480469, 0.3558953106403351], [0.2566756010055542, 0.858329713344574, 0.5318180322647095, 0.36025968194007874], [0.25485026836395264, 0.8356899619102478, 0.5124111771583557, 0.36025968194007874], [0.25485026836395264, 0.8168599009513855, 0.5012326240539551, 0.36025968194007874], [0.25485026836395264, 0.7998313903808594, 0.5020021796226501, 0.36025968194007874], [0.25485026836395264, 0.7820000648498535, 0.5073582530021667, 0.36025968194007874], [0.25485026836395264, 0.7229897379875183, 0.500211238861084, 0.36025968194007874], [0.25485026836395264, 0.612748384475708, 0.4638657569885254, 0.36025968194007874], [0.25485026836395264, 0.35355985164642334, 0.4145601689815521, 0.36025968194007874], [0.25485026836395264, 0.35243749618530273, 0.37304186820983887, 0.36025968194007874], [0.25485026836395264, 0.3581181764602661, 0.34937378764152527, 0.36025968194007874], [0.25485026836395264, 0.36376720666885376, 0.33125802874565125, 0.36025968194007874], [0.25485026836395264, 0.3658630847930908, 0.31351107358932495, 0.36025968194007874], [0.25485026836395264, 0.3791433572769165, 0.296475350856781, 0.36025968194007874], [0.25485026836395264, 0.4037828743457794, 0.2842721939086914, 0.36025968194007874], [0.25485026836395264, 0.43031635880470276, 0.2744455337524414, 0.36025968194007874], [0.25485026836395264, 0.44505205750465393, 0.26712939143180847, 0.36025968194007874], [0.25485026836395264, 0.4506293833255768, 0.27396199107170105, 0.36025968194007874], [0.25485026836395264, 0.4508608877658844, 0.2892579138278961, 0.36025968194007874], [0.25485026836395264, 0.45505255460739136, 0.30284109711647034, 0.36025968194007874], [0.25485026836395264, 0.4522567689418793, 0.3210234045982361, 0.36025968194007874], [0.25485026836395264, 0.42934131622314453, 0.34892091155052185, 0.36025968194007874], [0.25485026836395264, 0.3971833288669586, 0.38340067863464355, 0.36025968194007874], [0.25485026836395264, 0.3864874839782715, 0.41368234157562256, 0.36025968194007874], [0.25485026836395264, 0.382882297039032, 0.4372512400150299, 0.36025968194007874], [0.25485026836395264, 0.3764813542366028, 0.45172926783561707, 0.36025968194007874], [0.25485026836395264, 0.37122097611427307, 0.45862242579460144, 0.36025968194007874], [0.25485026836395264, 0.37021681666374207, 0.4566892683506012, 0.36025968194007874], [0.25485026836395264, 0.3840172588825226, 0.44374045729637146, 0.36025968194007874], [0.25485026836395264, 0.41370296478271484, 0.43984803557395935, 0.36025968194007874], [0.25485026836395264, 0.4408590793609619, 0.434395432472229, 0.36025968194007874], [0.25485026836395264, 0.4562646150588989, 0.4338686764240265, 0.36025968194007874], [0.25485026836395264, 0.46030059456825256, 0.44267264008522034, 0.36025968194007874], [0.25485026836395264, 0.4573892056941986, 0.4554649889469147, 0.36025968194007874], [0.25485026836395264, 0.45191824436187744, 0.4682883322238922, 0.36025968194007874], [0.25485026836395264, 0.4495469927787781, 0.4729076325893402, 0.36025968194007874], [0.25485026836395264, 0.4522908329963684, 0.4703405201435089, 0.36025968194007874], [0.20343369245529175, 0.4565792977809906, 0.45902401208877563, 0.36025968194007874], [0.1924266219139099, 0.4844944179058075, 0.44230562448501587, 0.36025968194007874], [0.18144595623016357, 0.5336214900016785, 0.42531827092170715, 0.36025968194007874], [0.1672145128250122, 0.5706048607826233, 0.41229918599128723, 0.36025968194007874], [0.1569909304380417, 0.5770795941352844, 0.40380552411079407, 0.36025968194007874], [0.15430814027786255, 0.56678706407547, 0.40146511793136597, 0.36025968194007874], [0.1550644338130951, 0.5405673384666443, 0.4078576862812042, 0.36025968194007874], [0.15475469827651978, 0.4976188540458679, 0.43856534361839294, 0.28512823581695557], [0.15093213319778442, 0.44715505838394165, 0.4598405063152313, 0.26185134053230286], [0.15093213319778442, 0.4072188138961792, 0.46463248133659363, 0.23761732876300812], [0.15093213319778442, 0.38969966769218445, 0.4577513039112091, 0.22470827400684357], [0.15093213319778442, 0.39455917477607727, 0.4352622926235199, 0.22659213840961456], [0.15113545954227448, 0.40194371342658997, 0.3971593677997589, 0.23934870958328247], [0.14900031685829163, 0.4047902226448059, 0.35833701491355896, 0.2518046498298645], [0.14520511031150818, 0.4064343273639679, 0.32741010189056396, 0.2577688694000244], [0.14050979912281036, 0.4066409766674042, 0.30288320779800415, 0.2578406035900116], [0.1388470083475113, 0.4054843485355377, 0.2868918478488922, 0.25459975004196167], [0.12140750139951706, 0.40452826023101807, 0.2708967924118042, 0.2485039085149765], [0.11669863760471344, 0.40823543071746826, 0.25651776790618896, 0.2398986518383026], [0.1079694926738739, 0.4189561903476715, 0.2488200068473816, 0.2303212285041809], [0.0932164192199707, 0.4304428994655609, 0.25270670652389526, 0.21659158170223236], [0.08020677417516708, 0.4345259666442871, 0.27090752124786377, 0.20638549327850342], [0.0786006823182106, 0.4315415918827057, 0.30047979950904846, 0.20042681694030762], [0.09430325776338577, 0.4283178150653839, 0.33160465955734253, 0.203347310423851], [0.11146004498004913, 0.4263843595981598, 0.3603259325027466, 0.20928774774074554], [0.12132429331541061, 0.43641984462738037, 0.38083142042160034, 0.21276836097240448], [0.12430020421743393, 0.45881181955337524, 0.3933210074901581, 0.20933972299098969], [0.12341374903917313, 0.48436009883880615, 0.4024922549724579, 0.1994457095861435], [0.12299654632806778, 0.5109826922416687, 0.4080674946308136, 0.18754956126213074], [0.12497874349355698, 0.5291261076927185, 0.41141197085380554, 0.1773621141910553], [0.12856543064117432, 0.5378817319869995, 0.4142727851867676, 0.1707206815481186], [0.13202229142189026, 0.5387466549873352, 0.418192595243454, 0.16764985024929047], [0.140901118516922, 0.5367188453674316, 0.4241611361503601, 0.17034228146076202], [0.15339815616607666, 0.5330142378807068, 0.43102747201919556, 0.17701128125190735], [0.16796903312206268, 0.5269199013710022, 0.4368876814842224, 0.18152770400047302], [0.17685197293758392, 0.5187082290649414, 0.4370437264442444, 0.18114043772220612], [0.1825219988822937, 0.5119004249572754, 0.43085142970085144, 0.1760377436876297], [0.18278062343597412, 0.5073407888412476, 0.41722047328948975, 0.17014479637145996], [0.1786913126707077, 0.5033570528030396, 0.39919137954711914, 0.16416804492473602], [0.17463602125644684, 0.4933518171310425, 0.3789882957935333, 0.1544943004846573], [0.1757313758134842, 0.45981964468955994, 0.3391556441783905, 0.14766964316368103], [0.17566518485546112, 0.4065859317779541, 0.30876290798187256, 0.14966367185115814], [0.17955373227596283, 0.3526495397090912, 0.2897045910358429, 0.155563622713089], [0.1836654394865036, 0.3098166584968567, 0.28202590346336365, 0.16150344908237457], [0.2001148909330368, 0.2836284041404724, 0.27896732091903687, 0.16765232384204865], [0.19849742949008942, 0.27888306975364685, 0.27993741631507874, 0.1722792237997055], [0.19545410573482513, 0.297382116317749, 0.28712064027786255, 0.17605559527873993], [0.19438078999519348, 0.3342333137989044, 0.2995573580265045, 0.18221791088581085], [0.1975935995578766, 0.3722555637359619, 0.3097676634788513, 0.19242486357688904], [0.20442606508731842, 0.4016015827655792, 0.31372931599617004, 0.20329269766807556], [0.2175017148256302, 0.42024385929107666, 0.3147946894168854, 0.20652495324611664], [0.2329423427581787, 0.4365401864051819, 0.3155208230018616, 0.21193097531795502], [0.2500077188014984, 0.45805349946022034, 0.31368449330329895, 0.21840505301952362], [0.2500077188014984, 0.4802381694316864, 0.3089188039302826, 0.2257557362318039], [0.2500077188014984, 0.4969950318336487, 0.3026828169822693, 0.23335814476013184], [0.2500077188014984, 0.5088374018669128, 0.29969578981399536, 0.24674105644226074], [0.2500077188014984, 0.5177174806594849, 0.30322203040122986, 0.25594010949134827], [0.20887336134910583, 0.5279397964477539, 0.32436829805374146, 0.26315897703170776], [0.19399310648441315, 0.5512598752975464, 0.36185845732688904, 0.2637874186038971], [0.17250093817710876, 0.5852717161178589, 0.39787012338638306, 0.26598554849624634], [0.19611980020999908, 0.6062011122703552, 0.425977885723114, 0.2715889513492584], [0.2097967565059662, 0.594890296459198, 0.4401170611381531, 0.2766382396221161], [0.21121752262115479, 0.5562466382980347, 0.446742981672287, 0.27364450693130493], [0.20625270903110504, 0.5066484808921814, 0.4578479826450348, 0.25620129704475403], [0.20059388875961304, 0.47014522552490234, 0.4597983956336975, 0.2400221824645996], [0.19692915678024292, 0.44388148188591003, 0.4514700174331665, 0.23548756539821625], [0.19485695660114288, 0.41751453280448914, 0.4483887851238251, 0.23482073843479156], [0.1969139575958252, 0.3909246325492859, 0.4512139558792114, 0.23867592215538025], [0.2027522772550583, 0.36856552958488464, 0.4556275010108948, 0.24132542312145233], [0.20874430239200592, 0.34689852595329285, 0.45500457286834717, 0.23652693629264832], [0.21306566894054413, 0.31521666049957275, 0.4386051297187805, 0.21818962693214417], [0.21136149764060974, 0.2873651087284088, 0.4096817374229431, 0.20316646993160248], [0.20800472795963287, 0.27356937527656555, 0.3912019729614258, 0.19713731110095978], [0.20518900454044342, 0.2605527639389038, 0.39578568935394287, 0.1998589187860489], [0.20045313239097595, 0.24598661065101624, 0.418500155210495, 0.2054450958967209], [0.19959938526153564, 0.23539988696575165, 0.45097410678863525, 0.21682383120059967], [0.19483448565006256, 0.23283912241458893, 0.4811049699783325, 0.23649662733078003]], "channel_names": ["ch1", "ch2", "ch3", "ch4"]}, "theta_relative": {"name": "theta_relative", "fs": 9.87912648929519, "emp_fs": 9.87912648929519, "timestamps": [1571759075.5637362, 1571759075.6649597, 1571759075.7661831, 1571759075.8674068, 1571759075.9686303, 1571759076.0698538, 1571759076.1710773, 1571759076.272301, 1571759076.3735244, 1571759076.474748, 1571759076.5759714, 1571759076.677195, 1571759076.7784185, 1571759076.879642, 1571759076.9808655, 1571759077.082089, 1571759077.1833127, 1571759077.2845361, 1571759077.3857596, 1571759077.486983, 1571759077.5882068, 1571759077.6894302, 1571759077.7906537, 1571759077.8918772, 1571759077.993101, 1571759078.0943244, 1571759078.1955478, 1571759078.2967713, 1571759078.3979948, 1571759078.4992185, 1571759078.600442, 1571759078.7016654, 1571759078.8028889, 1571759078.9041126, 1571759079.005336, 1571759079.1065595, 1571759079.207783, 1571759079.3090067, 1571759079.4102302, 1571759079.5114536, 1571759079.612677, 1571759079.7139006, 1571759079.8151243, 1571759079.9163477, 1571759080.0175712, 1571759080.1187947, 1571759080.2200184, 1571759080.3212419, 1571759080.4224653, 1571759080.5236888, 1571759080.6249125, 1571759080.726136, 1571759080.8273594, 1571759080.928583, 1571759081.0298064, 1571759081.13103, 1571759081.2322536, 1571759081.333477, 1571759081.4347005, 1571759081.5359242, 1571759081.6371477, 1571759081.7383711, 1571759081.8395946, 1571759081.9408183, 1571759082.0420418, 1571759082.1432652, 1571759082.2444887, 1571759082.3457122, 1571759082.446936, 1571759082.5481594, 1571759082.6493828, 1571759082.7506063, 1571759082.85183, 1571759082.9530535, 1571759083.054277, 1571759083.1555004, 1571759083.256724, 1571759083.3579476, 1571759083.459171, 1571759083.5603945, 1571759083.661618, 1571759083.7628417, 1571759083.8640652, 1571759083.9652886, 1571759084.066512, 1571759084.1677358, 1571759084.2689593, 1571759084.3701828, 1571759084.4714062, 1571759084.57263, 1571759084.6738534, 1571759084.7750769, 1571759084.8763003, 1571759084.9775238, 1571759085.0787475, 1571759085.179971, 1571759085.2811944, 1571759085.382418, 1571759085.4836416, 1571759085.584865, 1571759085.6860886, 1571759085.787312, 1571759085.8885357, 1571759085.9897592, 1571759086.0909827, 1571759086.1922061, 1571759086.2934296, 1571759086.3946533, 1571759086.4958768, 1571759086.5971003, 1571759086.6983237, 1571759086.7995474, 1571759086.900771, 1571759087.0019944, 1571759087.1032178, 1571759087.2044415, 1571759087.305665, 1571759087.4068885, 1571759087.508112, 1571759087.6093354, 1571759087.7105591, 1571759087.8117826, 1571759087.913006, 1571759088.0142295, 1571759088.1154532, 1571759088.2166767, 1571759088.3179002, 1571759088.4191236, 1571759088.5203474, 1571759088.6215708, 1571759088.7227943, 1571759088.8240178, 1571759088.9252412, 1571759089.026465, 1571759089.1276884, 1571759089.2289119, 1571759089.3301353, 1571759089.431359, 1571759089.5325825, 1571759089.633806, 1571759089.7350295, 1571759089.8362532, 1571759089.9374766, 1571759090.0387, 1571759090.1399236, 1571759090.241147, 1571759090.3423707, 1571759090.4435942, 1571759090.5448177, 1571759090.6460412, 1571759090.7472649, 1571759090.8484883, 1571759090.9497118, 1571759091.0509353, 1571759091.152159, 1571759091.2533824, 1571759091.354606], "samples": [[0.10500301420688629, 0.1765548437833786, 0.05153656750917435, 0.0689324215054512], [0.1294984072446823, 0.18336869776248932, 0.04994597285985947, 0.07125845551490784], [0.1460057944059372, 0.18620538711547852, 0.05066412314772606, 0.12191730737686157], [0.1520317941904068, 0.18810132145881653, 0.051163140684366226, 0.14216062426567078], [0.1512187421321869, 0.18993613123893738, 0.05161047726869583, 0.15206986665725708], [0.14962054789066315, 0.1930478811264038, 0.05343350023031235, 0.16625629365444183], [0.14892876148223877, 0.197335347533226, 0.055904243141412735, 0.1850307285785675], [0.1481785774230957, 0.19948993623256683, 0.056482840329408646, 0.19988486170768738], [0.14865773916244507, 0.19515098631381989, 0.05364295095205307, 0.20749065279960632], [0.1533297896385193, 0.18265759944915771, 0.04903647303581238, 0.21010226011276245], [0.15189582109451294, 0.1688099056482315, 0.048834364861249924, 0.20962536334991455], [0.1539880782365799, 0.15745161473751068, 0.05520316958427429, 0.1967490017414093], [0.15686622262001038, 0.14945296943187714, 0.06625783443450928, 0.18475577235221863], [0.15903641283512115, 0.14177346229553223, 0.07539606839418411, 0.17633570730686188], [0.1611497402191162, 0.13655045628547668, 0.08089311420917511, 0.1708478331565857], [0.15953665971755981, 0.1374971568584442, 0.08214835822582245, 0.16673439741134644], [0.1588001251220703, 0.14430294930934906, 0.0805765688419342, 0.16327260434627533], [0.15909503400325775, 0.15192171931266785, 0.07784029841423035, 0.1472179889678955], [0.16082020103931427, 0.15597295761108398, 0.07656928896903992, 0.13535043597221375], [0.16586437821388245, 0.1564655750989914, 0.07683975994586945, 0.12655280530452728], [0.17082737386226654, 0.15507075190544128, 0.07782210409641266, 0.11384978145360947], [0.1755201667547226, 0.15379968285560608, 0.08057458698749542, 0.09892340004444122], [0.17989706993103027, 0.15428952872753143, 0.08444774150848389, 0.0855722650885582], [0.18499624729156494, 0.1569434404373169, 0.08933591842651367, 0.07670333236455917], [0.1877090036869049, 0.16129952669143677, 0.09504397213459015, 0.07123821973800659], [0.18548683822155, 0.16575497388839722, 0.10054576396942139, 0.06647582352161407], [0.1778295636177063, 0.16626779735088348, 0.10348466038703918, 0.061298590153455734], [0.16754959523677826, 0.1594068557024002, 0.1008000373840332, 0.057098742574453354], [0.15747642517089844, 0.15084008872509003, 0.09398630261421204, 0.055152010172605515], [0.14601407945156097, 0.143739715218544, 0.08982466161251068, 0.05406082049012184], [0.13114310801029205, 0.13908885419368744, 0.09509912878274918, 0.0531390979886055], [0.11774197965860367, 0.1331363022327423, 0.10994973033666611, 0.05264514312148094], [0.1074143797159195, 0.12697045505046844, 0.13103868067264557, 0.0514666773378849], [0.10060720890760422, 0.12158633023500443, 0.14782442152500153, 0.050543930381536484], [0.09580261260271072, 0.09867654740810394, 0.15497922897338867, 0.050342775881290436], [0.09372556954622269, 0.08414468914270401, 0.1524428129196167, 0.0502762570977211], [0.09081614017486572, 0.07285280525684357, 0.15014377236366272, 0.05030876398086548], [0.08646348863840103, 0.07064192742109299, 0.14886483550071716, 0.049996405839920044], [0.0811130627989769, 0.06710305064916611, 0.1478353589773178, 0.04942062869668007], [0.07601557672023773, 0.06337430328130722, 0.14732784032821655, 0.05102623254060745], [0.07236101478338242, 0.06104236841201782, 0.1478298455476761, 0.055544137954711914], [0.07202210277318954, 0.06069410592317581, 0.15025541186332703, 0.05981450155377388], [0.07409290224313736, 0.05918431654572487, 0.15590669214725494, 0.06535286456346512], [0.07495341449975967, 0.05096203088760376, 0.16648179292678833, 0.07000808417797089], [0.07248543947935104, 0.030400771647691727, 0.17906945943832397, 0.07236115634441376], [0.06859990209341049, 0.037085145711898804, 0.1851918250322342, 0.07236115634441376], [0.06859990209341049, 0.04406597837805748, 0.18209245800971985, 0.07236115634441376], [0.06859990209341049, 0.05194241926074028, 0.17584501206874847, 0.07236115634441376], [0.06859990209341049, 0.06206382066011429, 0.17456857860088348, 0.07236115634441376], [0.06859990209341049, 0.0902547687292099, 0.18257856369018555, 0.07236115634441376], [0.06859990209341049, 0.13881520926952362, 0.1994720846414566, 0.07236115634441376], [0.06859990209341049, 0.24410517513751984, 0.22046694159507751, 0.07236115634441376], [0.06859990209341049, 0.23367683589458466, 0.23783321678638458, 0.07236115634441376], [0.06859990209341049, 0.22036170959472656, 0.2471771538257599, 0.07236115634441376], [0.06859990209341049, 0.2078007161617279, 0.2507196366786957, 0.07236115634441376], [0.06859990209341049, 0.1897577941417694, 0.2536928951740265, 0.07236115634441376], [0.06859990209341049, 0.1760360598564148, 0.25654470920562744, 0.07236115634441376], [0.06859990209341049, 0.1764126867055893, 0.25686994194984436, 0.07236115634441376], [0.06859990209341049, 0.17603518068790436, 0.24880746006965637, 0.07236115634441376], [0.06859990209341049, 0.17420531809329987, 0.2325972318649292, 0.07236115634441376], [0.06859990209341049, 0.17246733605861664, 0.21684646606445312, 0.07236115634441376], [0.06859990209341049, 0.17266254127025604, 0.20027965307235718, 0.07236115634441376], [0.06859990209341049, 0.1744585633277893, 0.18649893999099731, 0.07236115634441376], [0.06859990209341049, 0.17040635645389557, 0.17336568236351013, 0.07236115634441376], [0.06859990209341049, 0.15862594544887543, 0.16066588461399078, 0.07236115634441376], [0.06859990209341049, 0.1476374715566635, 0.1509200781583786, 0.07236115634441376], [0.06859990209341049, 0.14795272052288055, 0.1461719572544098, 0.07236115634441376], [0.06859990209341049, 0.15137848258018494, 0.14329960942268372, 0.07236115634441376], [0.06859990209341049, 0.1534625142812729, 0.14158017933368683, 0.07236115634441376], [0.06859990209341049, 0.15252985060214996, 0.14247654378414154, 0.07236115634441376], [0.06859990209341049, 0.14878436923027039, 0.14594988524913788, 0.07236115634441376], [0.06859990209341049, 0.14199969172477722, 0.1479615569114685, 0.07236115634441376], [0.06859990209341049, 0.1343146562576294, 0.155117928981781, 0.07236115634441376], [0.06859990209341049, 0.12513035535812378, 0.16230235993862152, 0.07236115634441376], [0.06859990209341049, 0.11733779311180115, 0.17114505171775818, 0.07236115634441376], [0.06859990209341049, 0.11289467662572861, 0.18057572841644287, 0.07236115634441376], [0.06859990209341049, 0.11152953654527664, 0.18608920276165009, 0.07236115634441376], [0.06859990209341049, 0.11103904247283936, 0.18489249050617218, 0.07236115634441376], [0.06859990209341049, 0.10873305052518845, 0.18147026002407074, 0.07236115634441376], [0.06859990209341049, 0.10273054987192154, 0.17991121113300323, 0.07236115634441376], [0.08215836435556412, 0.09313167631626129, 0.17781324684619904, 0.07236115634441376], [0.07964422553777695, 0.0877581462264061, 0.17293895781040192, 0.07236115634441376], [0.07558689266443253, 0.08865967392921448, 0.1674511581659317, 0.07236115634441376], [0.07099337875843048, 0.09132721275091171, 0.16317929327487946, 0.07236115634441376], [0.06648539006710052, 0.09406879544258118, 0.15812456607818604, 0.07236115634441376], [0.06356603652238846, 0.09971718490123749, 0.14760108292102814, 0.07236115634441376], [0.06347577273845673, 0.1113143041729927, 0.1317135989665985, 0.07236115634441376], [0.06574895232915878, 0.12820273637771606, 0.11475908756256104, 0.12557679414749146], [0.06876344978809357, 0.1470089703798294, 0.09259660542011261, 0.1332634538412094], [0.06876344978809357, 0.1631663292646408, 0.07197166234254837, 0.13499872386455536], [0.06876344978809357, 0.1723279356956482, 0.061711523681879044, 0.13185372948646545], [0.06876344978809357, 0.1742834448814392, 0.06614220887422562, 0.12759822607040405], [0.06924111396074295, 0.17347823083400726, 0.0835832804441452, 0.12608955800533295], [0.06983938068151474, 0.17800956964492798, 0.10668069124221802, 0.128440722823143], [0.07037358731031418, 0.1899246722459793, 0.12551210820674896, 0.13283859193325043], [0.06974637508392334, 0.20324400067329407, 0.13649006187915802, 0.13578268885612488], [0.06933322548866272, 0.21418219804763794, 0.14250606298446655, 0.13424529135227203], [0.06256076693534851, 0.22439858317375183, 0.14757129549980164, 0.13005214929580688], [0.06166866794228554, 0.23183320462703705, 0.1516827940940857, 0.12672749161720276], [0.06420809775590897, 0.23420435190200806, 0.15530753135681152, 0.12975063920021057], [0.06979818642139435, 0.23422230780124664, 0.15993249416351318, 0.1342405378818512], [0.07633977383375168, 0.23624098300933838, 0.16420605778694153, 0.13866689801216125], [0.08102373033761978, 0.24254512786865234, 0.16632024943828583, 0.13885731995105743], [0.08206036686897278, 0.2523013949394226, 0.1662074476480484, 0.1374817043542862], [0.08321831375360489, 0.26005542278289795, 0.16733865439891815, 0.13563479483127594], [0.08201334625482559, 0.25992533564567566, 0.1634250432252884, 0.1338251382112503], [0.0801086351275444, 0.25155606865882874, 0.15361016988754272, 0.1326400190591812], [0.07801837474107742, 0.23687849938869476, 0.14054815471172333, 0.1306471973657608], [0.07576815038919449, 0.22171276807785034, 0.12728863954544067, 0.12613336741924286], [0.0733981803059578, 0.20586208999156952, 0.11813754588365555, 0.11910288780927658], [0.07102542370557785, 0.19195586442947388, 0.11445698142051697, 0.11237550526857376], [0.06912695616483688, 0.18050171434879303, 0.11431878060102463, 0.10914938151836395], [0.07058927416801453, 0.1714872270822525, 0.1148461103439331, 0.10902739316225052], [0.07418958842754364, 0.16609801352024078, 0.11519978195428848, 0.10833103209733963], [0.0766136422753334, 0.1641865074634552, 0.11557521671056747, 0.10145480185747147], [0.07509546726942062, 0.16313929855823517, 0.11730600893497467, 0.0896454006433487], [0.07227671146392822, 0.160304456949234, 0.12197794765233994, 0.0765361338853836], [0.06933832168579102, 0.1541421115398407, 0.13024310767650604, 0.06835746765136719], [0.06867129355669022, 0.14489977061748505, 0.14180175960063934, 0.06742513179779053], [0.07001446187496185, 0.13230280578136444, 0.15429647266864777, 0.06895072758197784], [0.07275190204381943, 0.12144023925065994, 0.16021372377872467, 0.07139600068330765], [0.07316040992736816, 0.12166975438594818, 0.16754935681819916, 0.07502923160791397], [0.07429587841033936, 0.13841496407985687, 0.17624351382255554, 0.07806961238384247], [0.0763096958398819, 0.16561450064182281, 0.18701881170272827, 0.07905644178390503], [0.07572143524885178, 0.187226802110672, 0.197342187166214, 0.07833590358495712], [0.07900332659482956, 0.1959136724472046, 0.2047499269247055, 0.07764986902475357], [0.08244805783033371, 0.19338783621788025, 0.21024452149868011, 0.07746955752372742], [0.08601364493370056, 0.18623144924640656, 0.21344389021396637, 0.07809817790985107], [0.08981887996196747, 0.17778955399990082, 0.21497400104999542, 0.07901547849178314], [0.09469427168369293, 0.17081934213638306, 0.21482089161872864, 0.08066346496343613], [0.10128786414861679, 0.16635365784168243, 0.21153420209884644, 0.08304043114185333], [0.10657487064599991, 0.16183027625083923, 0.20398558676242828, 0.08510260283946991], [0.10612083226442337, 0.15636751055717468, 0.19311144948005676, 0.08545166254043579], [0.10612083226442337, 0.14873437583446503, 0.1803664118051529, 0.08357260376214981], [0.10612083226442337, 0.1408444494009018, 0.1671568602323532, 0.0798080638051033], [0.10612083226442337, 0.13186965882778168, 0.15486887097358704, 0.0704779177904129], [0.10612083226442337, 0.1208474412560463, 0.14468634128570557, 0.06302229315042496], [0.06819586455821991, 0.10839320719242096, 0.13740397989749908, 0.05845958739519119], [0.08084926009178162, 0.09887608140707016, 0.1282869279384613, 0.055516451597213745], [0.10624023526906967, 0.09353634715080261, 0.11537227779626846, 0.05508306249976158], [0.11136840283870697, 0.09084411710500717, 0.1046362817287445, 0.05548929050564766], [0.11054932326078415, 0.08803995698690414, 0.0959482491016388, 0.055254578590393066], [0.10632066428661346, 0.08438006043434143, 0.08948826044797897, 0.05318884178996086], [0.10111086070537567, 0.08060875535011292, 0.08605591207742691, 0.048419028520584106], [0.09582991898059845, 0.08093232661485672, 0.08432607352733612, 0.04210517555475235], [0.09201882779598236, 0.08619424700737, 0.08494815975427628, 0.04107566922903061], [0.09182758629322052, 0.0964650958776474, 0.08884409815073013, 0.04091539606451988], [0.09484853595495224, 0.11132963001728058, 0.09348583221435547, 0.041469037532806396], [0.09904240071773529, 0.12714318931102753, 0.09792891889810562, 0.0422399565577507], [0.10183747112751007, 0.13698767125606537, 0.10444505512714386, 0.043009087443351746], [0.10831918567419052, 0.1393943428993225, 0.11622246354818344, 0.0480307936668396], [0.1139347106218338, 0.1425243467092514, 0.13371779024600983, 0.058700643479824066], [0.11835137754678726, 0.1528722047805786, 0.15246449410915375, 0.07417289912700653], [0.12016540765762329, 0.1631152629852295, 0.16707390546798706, 0.09037653356790543], [0.11785449832677841, 0.17195554077625275, 0.1741592288017273, 0.10161852091550827], [0.11256987601518631, 0.17659877240657806, 0.1784535050392151, 0.10701997578144073], [0.11305155605077744, 0.17769750952720642, 0.17975790798664093, 0.10852846503257751]], "channel_names": ["ch1", "ch2", "ch3", "ch4"]}, "gamma_relative": {"name": "gamma_relative", "fs": 9.879132306541488, "emp_fs": 9.879132306541488, "timestamps": [1571759075.5637555, 1571759075.664979, 1571759075.7662024, 1571759075.867426, 1571759075.9686494, 1571759076.0698729, 1571759076.1710963, 1571759076.2723198, 1571759076.3735433, 1571759076.4747667, 1571759076.5759902, 1571759076.6772137, 1571759076.7784371, 1571759076.8796606, 1571759076.980884, 1571759077.0821075, 1571759077.183331, 1571759077.2845545, 1571759077.385778, 1571759077.4870014, 1571759077.588225, 1571759077.6894484, 1571759077.7906718, 1571759077.8918953, 1571759077.9931188, 1571759078.0943422, 1571759078.1955657, 1571759078.296789, 1571759078.3980124, 1571759078.4992359, 1571759078.6004593, 1571759078.7016828, 1571759078.8029063, 1571759078.9041297, 1571759079.0053532, 1571759079.1065767, 1571759079.2078001, 1571759079.3090236, 1571759079.410247, 1571759079.5114706, 1571759079.612694, 1571759079.7139175, 1571759079.815141, 1571759079.9163644, 1571759080.017588, 1571759080.1188114, 1571759080.2200348, 1571759080.3212583, 1571759080.4224818, 1571759080.5237052, 1571759080.6249287, 1571759080.7261522, 1571759080.8273757, 1571759080.928599, 1571759081.0298226, 1571759081.131046, 1571759081.2322695, 1571759081.333493, 1571759081.4347165, 1571759081.53594, 1571759081.6371634, 1571759081.7383869, 1571759081.8396103, 1571759081.9408338, 1571759082.0420573, 1571759082.1432807, 1571759082.2445042, 1571759082.3457277, 1571759082.4469512, 1571759082.5481746, 1571759082.649398, 1571759082.7506216, 1571759082.851845, 1571759082.9530685, 1571759083.054292, 1571759083.1555154, 1571759083.256739, 1571759083.3579624, 1571759083.4591856, 1571759083.560409, 1571759083.6616325, 1571759083.762856, 1571759083.8640795, 1571759083.965303, 1571759084.0665264, 1571759084.16775, 1571759084.2689734, 1571759084.3701968, 1571759084.4714203, 1571759084.5726438, 1571759084.6738672, 1571759084.7750907, 1571759084.8763142, 1571759084.9775376, 1571759085.078761, 1571759085.1799846, 1571759085.281208, 1571759085.3824315, 1571759085.483655, 1571759085.5848784, 1571759085.686102, 1571759085.7873254, 1571759085.8885489, 1571759085.9897723, 1571759086.0909958, 1571759086.1922193, 1571759086.2934427, 1571759086.3946662, 1571759086.4958897, 1571759086.5971131, 1571759086.6983366, 1571759086.79956, 1571759086.9007835, 1571759087.002007, 1571759087.1032305, 1571759087.204454, 1571759087.3056774, 1571759087.406901, 1571759087.5081244, 1571759087.6093478, 1571759087.7105713, 1571759087.8117948, 1571759087.9130182, 1571759088.0142417, 1571759088.1154652, 1571759088.2166886, 1571759088.317912, 1571759088.4191356, 1571759088.520359, 1571759088.6215825, 1571759088.722806, 1571759088.8240292, 1571759088.9252527, 1571759089.0264761, 1571759089.1276996, 1571759089.228923, 1571759089.3301466, 1571759089.43137, 1571759089.5325935, 1571759089.633817, 1571759089.7350404, 1571759089.836264, 1571759089.9374874, 1571759090.0387108, 1571759090.1399343, 1571759090.2411578, 1571759090.3423812, 1571759090.4436047, 1571759090.5448282, 1571759090.6460516, 1571759090.747275, 1571759090.8484986, 1571759090.949722, 1571759091.0509455, 1571759091.152169, 1571759091.2533925, 1571759091.354616], "samples": [[0.2558860778808594, 0.09912405908107758, 0.28930675983428955, 0.2859770953655243], [0.21765808761119843, 0.0952843651175499, 0.2855726480484009, 0.28484585881233215], [0.19426880776882172, 0.09206808358430862, 0.28122881054878235, 0.2719409167766571], [0.1829182505607605, 0.0889907255768776, 0.27525120973587036, 0.2776975929737091], [0.1802372932434082, 0.08430679142475128, 0.2675520181655884, 0.280178427696228], [0.1828615814447403, 0.07748711854219437, 0.25975847244262695, 0.27729177474975586], [0.18822523951530457, 0.06927433609962463, 0.25435197353363037, 0.27416735887527466], [0.19210007786750793, 0.061057161539793015, 0.2498006969690323, 0.27189189195632935], [0.1921197921037674, 0.05390073359012604, 0.23833462595939636, 0.27270814776420593], [0.18695753812789917, 0.04844788461923599, 0.2148476392030716, 0.2761116027832031], [0.18250662088394165, 0.04563084617257118, 0.18888041377067566, 0.27775412797927856], [0.1782885044813156, 0.044677767902612686, 0.16736000776290894, 0.26998665928840637], [0.1751638948917389, 0.0446016788482666, 0.15283796191215515, 0.2596021890640259], [0.17295517027378082, 0.04401475936174393, 0.14159303903579712, 0.2525749206542969], [0.17074553668498993, 0.04287784546613693, 0.13163866102695465, 0.24875639379024506], [0.1821114420890808, 0.041717372834682465, 0.12088539451360703, 0.2472854107618332], [0.19772545993328094, 0.04114724323153496, 0.10995447635650635, 0.24758435785770416], [0.20716652274131775, 0.04143945500254631, 0.10101456195116043, 0.24952760338783264], [0.20597748458385468, 0.042358435690402985, 0.09605658054351807, 0.24079634249210358], [0.20153023302555084, 0.04413235932588577, 0.09424860775470734, 0.23586991429328918], [0.19727042317390442, 0.04639521613717079, 0.09341905266046524, 0.23799514770507812], [0.19533567130565643, 0.048788148909807205, 0.09400743991136551, 0.24770395457744598], [0.19561178982257843, 0.05063245818018913, 0.09404772520065308, 0.25805729627609253], [0.1995721161365509, 0.05176855996251106, 0.09327714890241623, 0.2651746869087219], [0.2066516876220703, 0.053061261773109436, 0.09381934255361557, 0.27052468061447144], [0.21618451178073883, 0.05543059855699539, 0.09853808581829071, 0.27578863501548767], [0.2264167219400406, 0.05815136432647705, 0.10829460620880127, 0.28256163001060486], [0.23646166920661926, 0.0585307702422142, 0.1199919804930687, 0.2926352322101593], [0.2460484355688095, 0.05640405789017677, 0.12680332362651825, 0.3046489953994751], [0.2525371015071869, 0.05295002460479736, 0.12816128134727478, 0.30926477909088135], [0.2521608769893646, 0.05627061054110527, 0.12691336870193481, 0.303420752286911], [0.25305771827697754, 0.06031404435634613, 0.1247401013970375, 0.2933112680912018], [0.25822317600250244, 0.06357664614915848, 0.12333348393440247, 0.2940514385700226], [0.2676236629486084, 0.06396057456731796, 0.12042966485023499, 0.29458630084991455], [0.2768937945365906, 0.05061807110905647, 0.11448203772306442, 0.2981773018836975], [0.277353435754776, 0.04055296629667282, 0.10584451258182526, 0.30202504992485046], [0.2756296992301941, 0.03291764110326767, 0.10055799782276154, 0.305001825094223], [0.2733800411224365, 0.030562233179807663, 0.09833669662475586, 0.303720623254776], [0.2741106152534485, 0.028649114072322845, 0.09769164770841599, 0.29747918248176575], [0.27836671471595764, 0.02658095955848694, 0.09654147922992706, 0.29032909870147705], [0.2821146249771118, 0.023739147931337357, 0.09312192350625992, 0.28062567114830017], [0.28559908270835876, 0.020297160372138023, 0.0873790755867958, 0.268562912940979], [0.29070013761520386, 0.019299659878015518, 0.08099048584699631, 0.2549194097518921], [0.2957237660884857, 0.018955854699015617, 0.07662046700716019, 0.24205531179904938], [0.3003160059452057, 0.020579837262630463, 0.0752020999789238, 0.2400944083929062], [0.30873221158981323, 0.02253149449825287, 0.07623456418514252, 0.2400944083929062], [0.30873221158981323, 0.024381596595048904, 0.07949993759393692, 0.2400944083929062], [0.30873221158981323, 0.02617296203970909, 0.0857403576374054, 0.2400944083929062], [0.30873221158981323, 0.027934418991208076, 0.09458065778017044, 0.2400944083929062], [0.30873221158981323, 0.03582843020558357, 0.10527490824460983, 0.2400944083929062], [0.30873221158981323, 0.050939302891492844, 0.11644279211759567, 0.2400944083929062], [0.30873221158981323, 0.0902266651391983, 0.12593530118465424, 0.2400944083929062], [0.30873221158981323, 0.09482594579458237, 0.132381409406662, 0.2400944083929062], [0.30873221158981323, 0.09852466732263565, 0.13698641955852509, 0.2400944083929062], [0.30873221158981323, 0.09868205338716507, 0.14129425585269928, 0.2400944083929062], [0.30873221158981323, 0.09158354997634888, 0.14411617815494537, 0.2400944083929062], [0.30873221158981323, 0.0833931565284729, 0.14228560030460358, 0.2400944083929062], [0.30873221158981323, 0.07684233784675598, 0.13705436885356903, 0.2400944083929062], [0.30873221158981323, 0.07263503968715668, 0.13161367177963257, 0.2400944083929062], [0.30873221158981323, 0.07166212052106857, 0.1285061091184616, 0.2400944083929062], [0.30873221158981323, 0.07315021008253098, 0.12958286702632904, 0.2400944083929062], [0.30873221158981323, 0.07524843513965607, 0.12982189655303955, 0.2400944083929062], [0.30873221158981323, 0.0761244148015976, 0.12896861135959625, 0.2400944083929062], [0.30873221158981323, 0.07346837222576141, 0.12605340778827667, 0.2400944083929062], [0.30873221158981323, 0.06672129780054092, 0.12004920840263367, 0.2400944083929062], [0.30873221158981323, 0.05864120274782181, 0.11147859692573547, 0.2400944083929062], [0.30873221158981323, 0.05406608060002327, 0.1033475399017334, 0.2400944083929062], [0.30873221158981323, 0.05051574483513832, 0.09741649031639099, 0.2400944083929062], [0.30873221158981323, 0.048098497092723846, 0.09419665485620499, 0.2400944083929062], [0.30873221158981323, 0.04794933274388313, 0.09258025139570236, 0.2400944083929062], [0.30873221158981323, 0.05011750012636185, 0.09072446078062057, 0.2400944083929062], [0.30873221158981323, 0.05348987132310867, 0.08710333704948425, 0.2400944083929062], [0.30873221158981323, 0.057586420327425, 0.08624635636806488, 0.2400944083929062], [0.30873221158981323, 0.06090616062283516, 0.08457209169864655, 0.2400944083929062], [0.30873221158981323, 0.06364603340625763, 0.08348652720451355, 0.2400944083929062], [0.30873221158981323, 0.06616979092359543, 0.08451341092586517, 0.2400944083929062], [0.30873221158981323, 0.068123459815979, 0.0862703025341034, 0.2400944083929062], [0.30873221158981323, 0.06961415708065033, 0.08612849563360214, 0.2400944083929062], [0.30873221158981323, 0.07061107456684113, 0.08469699323177338, 0.2400944083929062], [0.30873221158981323, 0.07235885411500931, 0.0852215364575386, 0.2400944083929062], [0.2998310923576355, 0.07576482743024826, 0.08910603076219559, 0.2400944083929062], [0.31657981872558594, 0.08418160676956177, 0.09534858167171478, 0.2400944083929062], [0.33037519454956055, 0.09598793089389801, 0.10098804533481598, 0.2400944083929062], [0.3412260115146637, 0.10349687933921814, 0.10356399416923523, 0.2400944083929062], [0.3461152911186218, 0.10402992367744446, 0.1041744202375412, 0.2400944083929062], [0.3435715138912201, 0.1027754545211792, 0.10603820532560349, 0.2400944083929062], [0.33835604786872864, 0.10378812253475189, 0.11240017414093018, 0.2400944083929062], [0.3332354426383972, 0.10646237432956696, 0.12633715569972992, 0.2443326711654663], [0.3309706747531891, 0.1085602194070816, 0.13826732337474823, 0.2584000527858734], [0.3309706747531891, 0.10686467587947845, 0.14490385353565216, 0.2604016959667206], [0.3309706747531891, 0.10026071965694427, 0.14933335781097412, 0.2531840205192566], [0.3309706747531891, 0.09227058291435242, 0.15463151037693024, 0.24116748571395874], [0.34481081366539, 0.08598140627145767, 0.16334281861782074, 0.23043961822986603], [0.3630834221839905, 0.08355168253183365, 0.17803816497325897, 0.22282472252845764], [0.3813817799091339, 0.08310877531766891, 0.1936202049255371, 0.21750088036060333], [0.3877688944339752, 0.08118530362844467, 0.2062252312898636, 0.21350891888141632], [0.3842657208442688, 0.07754401862621307, 0.21491649746894836, 0.20931123197078705], [0.34790992736816406, 0.07423499971628189, 0.22132505476474762, 0.20613087713718414], [0.3350542485713959, 0.07128909975290298, 0.2244464010000229, 0.20337699353694916], [0.323279470205307, 0.06820093840360641, 0.224262997508049, 0.1996787190437317], [0.3135617673397064, 0.0659610703587532, 0.2205776423215866, 0.1889137327671051], [0.3008458614349365, 0.06599153578281403, 0.20917756855487823, 0.17410536110401154], [0.28130975365638733, 0.06808418780565262, 0.18974275887012482, 0.15773193538188934], [0.2574254274368286, 0.07043015211820602, 0.16915355622768402, 0.14684586226940155], [0.2492734044790268, 0.07042362540960312, 0.15661878883838654, 0.1433185338973999], [0.25031939148902893, 0.06707368046045303, 0.1482459157705307, 0.14610587060451508], [0.2555021047592163, 0.062247492372989655, 0.14347483217716217, 0.15392723679542542], [0.2614060342311859, 0.05796486511826515, 0.14101412892341614, 0.16394521296024323], [0.2666741907596588, 0.05582297965884209, 0.1378435492515564, 0.1739063560962677], [0.27078330516815186, 0.05522897094488144, 0.1328200250864029, 0.18356424570083618], [0.27270716428756714, 0.055702656507492065, 0.12653693556785583, 0.19307376444339752], [0.27283477783203125, 0.056815918534994125, 0.12190434336662292, 0.20168979465961456], [0.270589679479599, 0.05877082794904709, 0.12093311548233032, 0.20803017914295197], [0.27513155341148376, 0.06151992827653885, 0.1228647232055664, 0.2115711271762848], [0.2807585299015045, 0.06492744386196136, 0.1252259612083435, 0.21189101040363312], [0.28040018677711487, 0.06825915724039078, 0.12690718472003937, 0.21580661833286285], [0.28468072414398193, 0.07076702266931534, 0.12766101956367493, 0.22293196618556976], [0.2959826588630676, 0.07261325418949127, 0.12778259813785553, 0.2308986634016037], [0.3138139843940735, 0.07445065677165985, 0.12803226709365845, 0.2342100739479065], [0.3266071677207947, 0.07637079805135727, 0.12705403566360474, 0.22251588106155396], [0.32905030250549316, 0.07887862622737885, 0.11997115612030029, 0.20760028064250946], [0.3271670639514923, 0.08431652188301086, 0.11434487253427505, 0.1997087150812149], [0.32244569063186646, 0.09411466121673584, 0.11040886491537094, 0.19737254083156586], [0.3166380822658539, 0.10510245710611343, 0.10907318443059921, 0.19816358387470245], [0.2952304780483246, 0.10919080674648285, 0.10908433794975281, 0.20078027248382568], [0.2897989749908447, 0.10660801827907562, 0.10886291414499283, 0.20447704195976257], [0.28687864542007446, 0.1002872884273529, 0.10697013139724731, 0.2060735523700714], [0.28593647480010986, 0.09361442178487778, 0.1033814325928688, 0.2050507813692093], [0.2853626608848572, 0.08786928653717041, 0.1002521961927414, 0.20248062908649445], [0.2868621349334717, 0.08343253284692764, 0.09840212762355804, 0.20352549850940704], [0.2956691384315491, 0.079951710999012, 0.09751620143651962, 0.2068304717540741], [0.306574285030365, 0.07645588368177414, 0.0974910631775856, 0.21084803342819214], [0.3067537546157837, 0.0729912593960762, 0.09920492023229599, 0.2158399522304535], [0.3067537546157837, 0.06971711665391922, 0.103303462266922, 0.22183698415756226], [0.3067537546157837, 0.06740114837884903, 0.10961943864822388, 0.2283528745174408], [0.3067537546157837, 0.06605388224124908, 0.11770394444465637, 0.23394756019115448], [0.3067537546157837, 0.06553690135478973, 0.1271706223487854, 0.24082602560520172], [0.21890105307102203, 0.066032774746418, 0.13809123635292053, 0.25058528780937195], [0.22724862396717072, 0.06852380186319351, 0.14403241872787476, 0.2531764507293701], [0.25118574500083923, 0.07234323769807816, 0.14035582542419434, 0.24934734404087067], [0.25181466341018677, 0.07457763701677322, 0.13459163904190063, 0.2374853789806366], [0.24613265693187714, 0.07415104657411575, 0.132527694106102, 0.22624196112155914], [0.24132651090621948, 0.07247217744588852, 0.13707847893238068, 0.22311978042125702], [0.2436598241329193, 0.07090482115745544, 0.14798538386821747, 0.2279231995344162], [0.25075870752334595, 0.0715247243642807, 0.15702372789382935, 0.23880933225154877], [0.2564690113067627, 0.07256807386875153, 0.16081330180168152, 0.24043303728103638], [0.257845014333725, 0.07293793559074402, 0.16345825791358948, 0.23969753086566925], [0.25340530276298523, 0.07324174046516418, 0.1638774275779724, 0.23415949940681458], [0.24595825374126434, 0.07321161776781082, 0.16068287193775177, 0.22465184330940247], [0.23762474954128265, 0.07119101285934448, 0.1519591063261032, 0.20973613858222961], [0.23603522777557373, 0.06702437251806259, 0.1348210722208023, 0.1910262107849121], [0.2332792729139328, 0.06480655074119568, 0.11397012323141098, 0.17303311824798584], [0.23137542605400085, 0.06669557839632034, 0.09681541472673416, 0.15719322860240936], [0.23211364448070526, 0.06886333227157593, 0.08561144769191742, 0.1457468867301941], [0.23448045551776886, 0.07041606307029724, 0.07771698385477066, 0.13702505826950073], [0.23512426018714905, 0.07043352723121643, 0.07283682376146317, 0.1309259682893753], [0.23612935841083527, 0.06969445943832397, 0.06907110661268234, 0.12627564370632172]], "channel_names": ["ch1", "ch2", "ch3", "ch4"]}, "alpha_session_score": {"name": "alpha_session_score", "fs": 9.879136519034464, "emp_fs": 9.879136519034464, "timestamps": [1571759075.5637722, 1571759075.6649957, 1571759075.7662191, 1571759075.8674424, 1571759075.9686658, 1571759076.0698893, 1571759076.1711128, 1571759076.2723362, 1571759076.3735595, 1571759076.474783, 1571759076.5760064, 1571759076.67723, 1571759076.7784534, 1571759076.8796766, 1571759076.9809, 1571759077.0821235, 1571759077.183347, 1571759077.2845705, 1571759077.3857937, 1571759077.4870172, 1571759077.5882406, 1571759077.689464, 1571759077.7906876, 1571759077.8919108, 1571759077.9931343, 1571759078.0943577, 1571759078.1955812, 1571759078.2968047, 1571759078.398028, 1571759078.4992514, 1571759078.6004748, 1571759078.7016983, 1571759078.8029218, 1571759078.904145, 1571759079.0053685, 1571759079.106592, 1571759079.2078154, 1571759079.3090389, 1571759079.410262, 1571759079.5114856, 1571759079.612709, 1571759079.7139325, 1571759079.815156, 1571759079.9163792, 1571759080.0176027, 1571759080.1188262, 1571759080.2200496, 1571759080.321273, 1571759080.4224963, 1571759080.5237198, 1571759080.6249433, 1571759080.7261667, 1571759080.8273902, 1571759080.9286134, 1571759081.029837, 1571759081.1310604, 1571759081.2322838, 1571759081.3335073, 1571759081.4347305, 1571759081.535954, 1571759081.6371775, 1571759081.738401, 1571759081.8396244, 1571759081.9408476, 1571759082.042071, 1571759082.1432946, 1571759082.244518, 1571759082.3457415, 1571759082.4469647, 1571759082.5481882, 1571759082.6494117, 1571759082.7506351, 1571759082.8518586, 1571759082.9530818, 1571759083.0543053, 1571759083.1555288, 1571759083.2567523, 1571759083.3579757, 1571759083.4591992, 1571759083.5604224, 1571759083.661646, 1571759083.7628694, 1571759083.8640928, 1571759083.9653163, 1571759084.0665395, 1571759084.167763, 1571759084.2689865, 1571759084.37021, 1571759084.4714334, 1571759084.5726566, 1571759084.67388, 1571759084.7751036, 1571759084.876327, 1571759084.9775505, 1571759085.0787737, 1571759085.1799972, 1571759085.2812207, 1571759085.3824441, 1571759085.4836676, 1571759085.5848908, 1571759085.6861143, 1571759085.7873378, 1571759085.8885612, 1571759085.9897847, 1571759086.091008, 1571759086.1922314, 1571759086.293455, 1571759086.3946784, 1571759086.4959018, 1571759086.597125, 1571759086.6983485, 1571759086.799572, 1571759086.9007955, 1571759087.002019, 1571759087.1032422, 1571759087.2044656, 1571759087.305689, 1571759087.4069126, 1571759087.508136, 1571759087.6093593, 1571759087.7105827, 1571759087.8118062, 1571759087.9130297, 1571759088.0142531, 1571759088.1154764, 1571759088.2166998, 1571759088.3179233, 1571759088.4191468, 1571759088.5203702, 1571759088.6215935, 1571759088.722817, 1571759088.8240404, 1571759088.925264, 1571759089.0264874, 1571759089.1277106, 1571759089.228934, 1571759089.3301575, 1571759089.431381, 1571759089.5326045, 1571759089.6338277, 1571759089.7350512, 1571759089.8362746, 1571759089.937498, 1571759090.0387216, 1571759090.1399448, 1571759090.2411683, 1571759090.3423917, 1571759090.4436152, 1571759090.5448387, 1571759090.646062, 1571759090.7472854, 1571759090.8485088, 1571759090.9497323, 1571759091.0509558, 1571759091.152179, 1571759091.2534025, 1571759091.354626], "samples": [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.8703703880310059, 0.0], [0.0, 0.3142857253551483, 0.8333333134651184, 0.0], [0.0, 0.4571428596973419, 0.8301886916160583, 0.0], [0.0, 0.4285714328289032, 0.849056601524353, 0.0], [0.0, 0.4285714328289032, 0.9056603908538818, 0.0], [0.0, 0.4000000059604645, 0.9245283007621765, 0.0], [0.0, 0.37142857909202576, 0.9056603908538818, 0.0], [0.0, 0.48571428656578064, 0.8679245114326477, 0.0], [0.0, 0.5142857432365417, 0.8823529481887817, 0.0], [0.0, 0.5142857432365417, 0.8235294222831726, 0.0], [0.0, 0.5142857432365417, 0.7346938848495483, 0.0], [0.0, 0.5142857432365417, 0.7142857313156128, 0.0], [0.0, 0.5142857432365417, 0.6938775777816772, 0.0], [0.0, 0.5142857432365417, 0.6938775777816772, 0.0], [0.0, 0.5142857432365417, 0.6938775777816772, 0.0], [0.0, 0.5142857432365417, 0.6938775777816772, 0.0], [0.0, 0.48571428656578064, 0.6938775777816772, 0.0], [0.7555555701255798, 0.0, 0.7083333134651184, 0.0], [0.7555555701255798, 0.0, 0.7446808218955994, 0.0], [0.7555555701255798, 0.0, 0.7659574747085571, 0.0], [0.7555555701255798, 0.0, 0.7021276354789734, 0.0], [0.7555555701255798, 0.0, 0.5319148898124695, 0.0], [0.7555555701255798, 0.0, 0.3617021143436432, 0.0], [0.7555555701255798, 0.0, 0.27659574151039124, 0.0], [0.7555555701255798, 0.0, 0.27659574151039124, 0.0], [0.7555555701255798, 0.0, 0.28260868787765503, 0.0], [0.7555555701255798, 0.0, 0.28260868787765503, 0.0], [0.7555555701255798, 0.0, 0.30434781312942505, 0.0], [0.7555555701255798, 0.22727273404598236, 0.3695652186870575, 0.0], [0.7555555701255798, 0.3636363744735718, 0.47826087474823, 0.0], [0.7555555701255798, 0.3488371968269348, 0.6086956262588501, 0.0], [0.7555555701255798, 0.3571428656578064, 0.782608687877655, 0.0], [0.7555555701255798, 0.3571428656578064, 0.9347826242446899, 0.0], [0.7555555701255798, 0.3571428656578064, 0.95652174949646, 0.0], [0.7555555701255798, 0.3571428656578064, 0.9777777791023254, 0.0], [0.7555555701255798, 0.3333333432674408, 0.9777777791023254, 0.0], [0.7555555701255798, 0.4285714328289032, 0.9777777791023254, 0.0], [0.7555555701255798, 0.6904761791229248, 0.9777777791023254, 0.0], [0.7555555701255798, 0.976190447807312, 0.9772727489471436, 0.0], [0.7555555701255798, 1.0, 0.9772727489471436, 0.0], [0.7555555701255798, 1.0, 0.9772727489471436, 0.0], [0.7555555701255798, 1.0, 0.9772727489471436, 0.0], [0.7555555701255798, 1.0, 0.9772727489471436, 0.0], [0.7555555701255798, 1.0, 1.0, 0.0], [0.7555555701255798, 1.0, 1.0, 0.0], [0.7555555701255798, 0.9285714030265808, 1.0, 0.0], [0.7555555701255798, 0.9047619104385376, 1.0, 0.0], [0.7555555701255798, 0.9047619104385376, 1.0, 0.0], [0.7555555701255798, 0.9285714030265808, 0.914893627166748, 0.0], [0.7555555701255798, 0.9523809552192688, 0.8297872543334961, 0.0], [0.7555555701255798, 0.9523809552192688, 0.8085106611251831, 0.0], [0.7555555701255798, 0.976190447807312, 0.8510638475418091, 0.0], [0.7555555701255798, 0.976190447807312, 0.8510638475418091, 0.0], [0.4000000059604645, 0.976190447807312, 0.8510638475418091, 0.0], [0.4000000059604645, 0.7857142686843872, 0.8510638475418091, 0.0], [0.3499999940395355, 0.4047619104385376, 0.8510638475418091, 0.0], [0.375, 0.0476190485060215, 0.8510638475418091, 0.0], [0.42500001192092896, 0.0, 0.8510638475418091, 0.0], [0.4749999940395355, 0.0, 0.8510638475418091, 0.0], [0.4749999940395355, 0.023255813866853714, 0.804347813129425, 0.0], [0.4749999940395355, 0.02380952425301075, 0.52173912525177, 0.0], [0.32258063554763794, 0.02380952425301075, 0.3695652186870575, 0.0], [0.32258063554763794, 0.02380952425301075, 0.3478260934352875, 0.0], [0.32258063554763794, 0.0, 0.3478260934352875, 0.0], [0.32258063554763794, 0.0, 0.30434781312942505, 0.0], [0.09677419066429138, 0.0, 0.2666666805744171, 0.0], [0.0, 0.0, 0.15555556118488312, 0.016949152573943138], [0.0, 0.0, 0.02222222276031971, 0.016949152573943138], [0.0, 0.0, 0.0, 0.016949152573943138], [0.0, 0.0, 0.0, 0.033898305147886276], [0.4893617033958435, 0.0, 0.0, 0.0517241396009922], [0.5531914830207825, 0.0, 0.0, 0.035087719559669495], [0.5744680762290955, 0.0, 0.0, 0.035087719559669495], [0.5744680762290955, 0.0, 0.0, 0.17543859779834747], [0.5957446694374084, 0.0, 0.0, 0.3333333432674408], [0.5957446694374084, 0.0, 0.10869564861059189, 0.4912280738353729], [0.5957446694374084, 0.0, 0.21739129722118378, 0.5614035129547119], [0.5957446694374084, 0.021276595070958138, 0.21739129722118378, 0.5614035129547119], [0.5957446694374084, 0.08510638028383255, 0.21739129722118378, 0.5614035129547119], [0.5777778029441833, 0.12765957415103912, 0.239130437374115, 0.5614035129547119], [0.5777778029441833, 0.1702127605676651, 0.260869562625885, 0.5438596606254578], [0.5777778029441833, 0.1304347813129425, 0.260869562625885, 0.5438596606254578], [0.5777778029441833, 0.1304347813129425, 0.260869562625885, 0.5438596606254578], [0.5777778029441833, 0.15217390656471252, 0.260869562625885, 0.5438596606254578], [0.5249999761581421, 0.20000000298023224, 0.260869562625885, 0.5438596606254578], [0.42500001192092896, 0.2222222238779068, 0.260869562625885, 0.5438596606254578], [0.22499999403953552, 0.24444444477558136, 0.24444444477558136, 0.5614035129547119], [0.0, 0.24444444477558136, 0.24444444477558136, 0.6140350699424744], [0.0, 0.24444444477558136, 0.2222222238779068, 0.6315789222717285], [0.0, 0.24444444477558136, 0.20000000298023224, 0.6315789222717285], [0.0, 0.24444444477558136, 0.20000000298023224, 0.5789473652839661], [0.0, 0.24444444477558136, 0.20000000298023224, 0.5614035129547119], [0.0, 0.2888889014720917, 0.2666666805744171, 0.75], [0.0, 0.4000000059604645, 0.5555555820465088, 0.9285714030265808], [0.0, 0.4888888895511627, 0.7555555701255798, 0.9821428656578064], [0.0, 0.46666666865348816, 0.8666666746139526, 1.0], [0.0, 0.35555556416511536, 0.9090909361839294, 1.0], [0.021739130839705467, 0.31111112236976624, 0.9090909361839294, 1.0], [0.021739130839705467, 0.31111112236976624, 0.9090909361839294, 1.0], [0.021739130839705467, 0.3333333432674408, 0.9090909361839294, 1.0], [0.021739130839705467, 0.3333333432674408, 0.9090909361839294, 1.0], [0.02222222276031971, 0.3333333432674408, 0.9090909361839294, 1.0], [0.0, 0.3333333432674408, 0.9090909361839294, 1.0], [0.0, 0.3333333432674408, 0.9090909361839294, 1.0], [0.0, 0.3333333432674408, 0.9090909361839294, 1.0], [0.0, 0.3333333432674408, 0.9090909361839294, 1.0], [0.0, 0.31111112236976624, 0.9090909361839294, 1.0], [0.0, 0.31111112236976624, 0.9069767594337463, 1.0], [0.0, 0.31111112236976624, 0.8604651093482971, 1.0], [0.0, 0.31111112236976624, 0.7674418687820435, 0.9298245906829834], [0.0, 0.2888889014720917, 0.5581395626068115, 0.7719298005104065], [0.08695652335882187, 0.13333334028720856, 0.3488371968269348, 0.7017543911933899], [0.0, 0.0, 0.27906978130340576, 0.6666666865348816], [0.02083333395421505, 0.0, 0.27906978130340576, 0.719298243522644], [0.125, 0.0, 0.25581395626068115, 0.7894737124443054], [0.2291666716337204, 0.0, 0.11627907305955887, 0.8245614171028137], [0.25, 0.13333334028720856, 0.0, 0.8571428656578064], [0.25, 0.20000000298023224, 0.0, 0.75], [0.27659574151039124, 0.2222222238779068, 0.0, 0.7678571343421936], [0.3191489279270172, 0.2222222238779068, 0.0, 0.7678571343421936], [0.38297873735427856, 0.24444444477558136, 0.0, 0.7678571343421936], [0.42553192377090454, 0.24444444477558136, 0.0, 0.8035714030265808], [0.4680851101875305, 0.3333333432674408, 0.0, 0.8928571343421936], [0.4893617033958435, 0.5333333611488342, 0.19148936867713928, 1.0], [0.5106382966041565, 0.6590909361839294, 0.5106382966041565, 1.0], [0.5319148898124695, 0.6818181872367859, 0.7659574747085571, 1.0], [0.5319148898124695, 0.6818181872367859, 0.8936170339584351, 1.0], [0.54347825050354, 0.7045454382896423, 0.957446813583374, 1.0], [0.5869565010070801, 0.7045454382896423, 0.957446813583374, 1.0], [0.5869565010070801, 0.7045454382896423, 0.957446813583374, 1.0]], "channel_names": ["ch1", "ch2", "ch3", "ch4"]}, "beta_session_score": {"name": "beta_session_score", "fs": 9.879139929150455, "emp_fs": 9.879139929150455, "timestamps": [1571759075.5637836, 1571759075.665007, 1571759075.7662303, 1571759075.8674538, 1571759075.9686773, 1571759076.0699005, 1571759076.171124, 1571759076.2723475, 1571759076.3735707, 1571759076.4747941, 1571759076.5760176, 1571759076.6772408, 1571759076.7784643, 1571759076.8796878, 1571759076.980911, 1571759077.0821345, 1571759077.1833577, 1571759077.2845812, 1571759077.3858047, 1571759077.487028, 1571759077.5882514, 1571759077.6894748, 1571759077.790698, 1571759077.8919215, 1571759077.993145, 1571759078.0943682, 1571759078.1955917, 1571759078.2968152, 1571759078.3980384, 1571759078.4992619, 1571759078.6004853, 1571759078.7017086, 1571759078.802932, 1571759078.9041555, 1571759079.0053787, 1571759079.1066022, 1571759079.2078257, 1571759079.309049, 1571759079.4102724, 1571759079.5114958, 1571759079.612719, 1571759079.7139425, 1571759079.8151658, 1571759079.9163892, 1571759080.0176127, 1571759080.118836, 1571759080.2200594, 1571759080.3212829, 1571759080.422506, 1571759080.5237296, 1571759080.624953, 1571759080.7261763, 1571759080.8273997, 1571759080.9286232, 1571759081.0298464, 1571759081.13107, 1571759081.2322934, 1571759081.3335166, 1571759081.43474, 1571759081.5359635, 1571759081.6371868, 1571759081.7384102, 1571759081.8396337, 1571759081.940857, 1571759082.0420804, 1571759082.1433039, 1571759082.244527, 1571759082.3457506, 1571759082.4469738, 1571759082.5481973, 1571759082.6494207, 1571759082.750644, 1571759082.8518674, 1571759082.953091, 1571759083.0543141, 1571759083.1555376, 1571759083.256761, 1571759083.3579843, 1571759083.4592078, 1571759083.5604312, 1571759083.6616545, 1571759083.762878, 1571759083.8641014, 1571759083.9653246, 1571759084.066548, 1571759084.1677716, 1571759084.2689948, 1571759084.3702183, 1571759084.4714417, 1571759084.572665, 1571759084.6738884, 1571759084.7751117, 1571759084.8763351, 1571759084.9775586, 1571759085.0787818, 1571759085.1800053, 1571759085.2812288, 1571759085.382452, 1571759085.4836755, 1571759085.584899, 1571759085.6861222, 1571759085.7873456, 1571759085.888569, 1571759085.9897923, 1571759086.0910158, 1571759086.1922393, 1571759086.2934625, 1571759086.394686, 1571759086.4959095, 1571759086.5971327, 1571759086.6983562, 1571759086.7995796, 1571759086.9008029, 1571759087.0020263, 1571759087.1032498, 1571759087.204473, 1571759087.3056965, 1571759087.40692, 1571759087.5081432, 1571759087.6093667, 1571759087.71059, 1571759087.8118134, 1571759087.9130368, 1571759088.01426, 1571759088.1154835, 1571759088.216707, 1571759088.3179302, 1571759088.4191537, 1571759088.5203772, 1571759088.6216004, 1571759088.7228239, 1571759088.8240473, 1571759088.9252706, 1571759089.026494, 1571759089.1277175, 1571759089.2289407, 1571759089.3301642, 1571759089.4313877, 1571759089.532611, 1571759089.6338344, 1571759089.7350578, 1571759089.836281, 1571759089.9375045, 1571759090.038728, 1571759090.1399512, 1571759090.2411747, 1571759090.342398, 1571759090.4436214, 1571759090.5448449, 1571759090.646068, 1571759090.7472916, 1571759090.848515, 1571759090.9497383, 1571759091.0509617, 1571759091.1521852, 1571759091.2534084, 1571759091.354632], "samples": [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.9166666865348816, 0.0], [0.0, 0.06818182021379471, 0.9142857193946838, 0.0], [0.0, 0.04545454680919647, 0.9428571462631226, 0.0], [0.0, 0.04545454680919647, 0.9428571462631226, 0.0], [0.0, 0.04545454680919647, 0.9142857193946838, 0.0], [0.0, 0.0, 0.9142857193946838, 0.0], [0.0, 0.0, 0.8857142925262451, 0.0], [0.0, 0.0, 0.8285714387893677, 0.0], [0.0, 0.0, 0.7714285850524902, 0.0], [0.0, 0.0, 0.6857143044471741, 0.0], [0.0, 0.0, 0.6000000238418579, 0.0], [0.0, 0.0, 0.5428571701049805, 0.0], [0.0, 0.0, 0.4571428596973419, 0.0], [0.0, 0.0, 0.4000000059604645, 0.0], [0.0, 0.0, 0.37142857909202576, 0.0], [0.0, 0.0, 0.3235294222831726, 0.0], [0.0, 0.0, 0.29411765933036804, 0.0], [1.0, 0.03999999910593033, 0.23529411852359772, 0.0], [1.0, 0.05999999865889549, 0.21212121844291687, 0.0], [1.0, 0.05999999865889549, 0.1818181872367859, 0.0], [1.0, 0.03999999910593033, 0.12121212482452393, 0.0], [1.0, 0.019999999552965164, 0.06060606241226196, 0.0], [1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.027027027681469917, 0.0], [1.0, 0.0, 0.027027027681469917, 0.0], [1.0, 0.0, 0.0555555559694767, 0.0], [1.0, 0.0, 0.1111111119389534, 0.0], [1.0, 0.0, 0.1666666716337204, 0.0], [1.0, 0.0, 0.2222222238779068, 0.0], [1.0, 0.0, 0.3055555522441864, 0.0], [1.0, 0.0, 0.3888888955116272, 0.0], [1.0, 0.07017543911933899, 0.4722222089767456, 0.0], [1.0, 0.19298245012760162, 0.5277777910232544, 0.0], [1.0, 0.31578946113586426, 0.5833333134651184, 0.0], [1.0, 0.38596490025520325, 0.5833333134651184, 0.0], [1.0, 0.42105263471603394, 0.6111111044883728, 0.0], [1.0, 0.4285714328289032, 0.6388888955116272, 0.0], [1.0, 0.4285714328289032, 0.6666666865348816, 0.0], [1.0, 0.4464285671710968, 0.7222222089767456, 0.0], [1.0, 0.4464285671710968, 0.7222222089767456, 0.0], [1.0, 0.4464285671710968, 0.7142857313156128, 0.0], [1.0, 0.4642857015132904, 0.6857143044471741, 0.0], [1.0, 0.4642857015132904, 0.6285714507102966, 0.0], [1.0, 0.4642857015132904, 0.6000000238418579, 0.0], [1.0, 0.4444444477558136, 0.5428571701049805, 0.0], [1.0, 0.42592594027519226, 0.48571428656578064, 0.0], [1.0, 0.37037035822868347, 0.4571428596973419, 0.0], [0.0, 0.2777777910232544, 0.4571428596973419, 0.0], [0.0, 0.14814814925193787, 0.48571428656578064, 0.0], [0.0, 0.0555555559694767, 0.5428571701049805, 0.0], [0.0, 0.0, 0.5714285969734192, 0.0], [0.0, 0.0, 0.6000000238418579, 0.0], [0.07999999821186066, 0.0, 0.6000000238418579, 0.0], [0.1599999964237213, 0.0, 0.5714285969734192, 0.0], [0.2083333283662796, 0.0, 0.5428571701049805, 0.0], [0.2083333283662796, 0.0, 0.5428571701049805, 0.0], [0.2083333283662796, 0.0, 0.5142857432365417, 0.0], [0.2083333283662796, 0.0, 0.47058823704719543, 0.0], [0.2083333283662796, 0.0, 0.47058823704719543, 0.0], [0.2083333283662796, 0.0, 0.47058823704719543, 0.0], [0.2083333283662796, 0.0, 0.47058823704719543, 0.0], [0.25, 0.0, 0.44117647409439087, 0.0], [0.2916666567325592, 0.0, 0.4117647111415863, 0.0], [0.375, 0.0, 0.38235294818878174, 0.0], [0.375, 0.0, 0.29411765933036804, 0.05882352963089943], [0.4166666567325592, 0.0, 0.23529411852359772, 0.1764705926179886], [0.4583333432674408, 0.0, 0.1515151560306549, 0.3529411852359772], [0.4166666567325592, 0.0, 0.09090909361839294, 0.529411792755127], [0.4166666567325592, 0.0, 0.03030303120613098, 0.7058823704719543], [0.47826087474823, 0.0, 0.03030303120613098, 0.8235294222831726], [0.5652173757553101, 0.0, 0.06060606241226196, 0.8823529481887817], [0.5652173757553101, 0.0, 0.12121212482452393, 0.8823529481887817], [0.52173912525177, 0.0, 0.1818181872367859, 0.8235294222831726], [0.43478259444236755, 0.0, 0.24242424964904785, 0.7647058963775635], [0.3478260934352875, 0.0, 0.27272728085517883, 0.7058823704719543], [0.30434781312942505, 0.0, 0.28125, 0.6470588445663452], [0.21739129722118378, 0.0, 0.3125, 0.6470588445663452], [0.1304347813129425, 0.014925372786819935, 0.34375, 0.7058823704719543], [0.08695652335882187, 0.02985074557363987, 0.3125, 0.7058823704719543], [0.0, 0.014925372786819935, 0.3125, 0.6470588445663452], [0.0, 0.0, 0.28125, 0.5882353186607361], [0.0, 0.0, 0.28125, 0.529411792755127], [0.0, 0.0, 0.28125, 0.47058823704719543], [0.0, 0.0, 0.3125, 0.47058823704719543], [0.0, 0.0, 0.34375, 0.529411792755127], [0.0, 0.0, 0.375, 0.6470588445663452], [0.0, 0.0, 0.40625, 0.7647058963775635], [0.0, 0.0, 0.40625, 0.8235294222831726], [0.0, 0.0, 0.375, 0.8823529481887817], [0.0, 0.0, 0.34375, 0.9411764740943909], [0.0, 0.0, 0.25, 1.0], [0.0, 0.0, 0.1875, 1.0], [0.0, 0.0, 0.125, 1.0], [0.0, 0.0, 0.09375, 1.0], [0.02631578966975212, 0.0, 0.09677419066429138, 1.0], [0.05263157933950424, 0.028985507786273956, 0.12903225421905518, 1.0], [0.05263157933950424, 0.05797101557254791, 0.19354838132858276, 1.0], [0.05263157933950424, 0.08695652335882187, 0.25806450843811035, 1.0], [0.05263157933950424, 0.08695652335882187, 0.35483869910240173, 1.0], [0.10526315867900848, 0.0882352963089943, 0.4193548262119293, 0.9473684430122375], [0.10526315867900848, 0.07352941483259201, 0.4838709533214569, 0.8888888955116272], [0.10526315867900848, 0.04411764815449715, 0.46666666865348816, 0.8333333134651184], [0.10526315867900848, 0.03030303120613098, 0.4333333373069763, 0.7647058963775635], [0.10526315867900848, 0.01515151560306549, 0.4000000059604645, 0.7647058963775635], [0.4736842215061188, 0.01515151560306549, 0.36666667461395264, 0.8235294222831726], [0.3947368562221527, 0.01515151560306549, 0.36666667461395264, 0.7647058963775635], [0.2631579041481018, 0.0317460335791111, 0.37931033968925476, 0.6470588445663452], [0.2702702581882477, 0.0476190485060215, 0.4482758641242981, 0.4000000059604645], [0.29729729890823364, 0.0634920671582222, 0.48275861144065857, 0.2666666805744171], [0.37837839126586914, 0.0634920671582222, 0.48275861144065857, 0.13333334028720856], [0.4444444477558136, 0.06557376682758331, 0.5, 0.06666667014360428], [0.4444444477558136, 0.06557376682758331, 0.5, 0.0], [0.4444444477558136, 0.06557376682758331, 0.4285714328289032, 0.0], [0.4166666567325592, 0.06557376682758331, 0.3571428656578064, 0.0], [0.3888888955116272, 0.08474576473236084, 0.2857142984867096, 0.0], [0.3611111044883728, 0.1355932205915451, 0.25, 0.0], [0.3888888955116272, 0.20338982343673706, 0.25, 0.0], [0.34285715222358704, 0.2982456088066101, 0.3214285671710968, 0.0], [0.37142857909202576, 0.38596490025520325, 0.48148149251937866, 0.0], [0.4000000059604645, 0.45614033937454224, 0.6296296119689941, 0.0], [0.4571428596973419, 0.5, 0.7407407164573669, 0.0], [0.5142857432365417, 0.5740740895271301, 0.7777777910232544, 0.05882352963089943], [0.5428571701049805, 0.6111111044883728, 0.807692289352417, 0.11764705926179886], [0.5714285969734192, 0.6296296119689941, 0.7692307829856873, 0.05882352963089943]], "channel_names": ["ch1", "ch2", "ch3", "ch4"]}, "delta_session_score": {"name": "delta_session_score", "fs": 9.879142336292574, "emp_fs": 9.879142336292574, "timestamps": [1571759075.5637946, 1571759075.665018, 1571759075.7662413, 1571759075.8674648, 1571759075.968688, 1571759076.0699115, 1571759076.1711347, 1571759076.2723582, 1571759076.3735814, 1571759076.4748049, 1571759076.5760283, 1571759076.6772516, 1571759076.778475, 1571759076.8796983, 1571759076.9809217, 1571759077.082145, 1571759077.1833684, 1571759077.2845917, 1571759077.3858151, 1571759077.4870384, 1571759077.5882618, 1571759077.6894853, 1571759077.7907085, 1571759077.891932, 1571759077.9931552, 1571759078.0943787, 1571759078.195602, 1571759078.2968254, 1571759078.3980486, 1571759078.499272, 1571759078.6004956, 1571759078.7017188, 1571759078.8029423, 1571759078.9041655, 1571759079.005389, 1571759079.1066122, 1571759079.2078357, 1571759079.309059, 1571759079.4102824, 1571759079.5115058, 1571759079.612729, 1571759079.7139525, 1571759079.8151758, 1571759079.9163992, 1571759080.0176225, 1571759080.118846, 1571759080.2200692, 1571759080.3212926, 1571759080.4225159, 1571759080.5237393, 1571759080.6249628, 1571759080.726186, 1571759080.8274095, 1571759080.9286327, 1571759081.0298562, 1571759081.1310794, 1571759081.232303, 1571759081.3335261, 1571759081.4347496, 1571759081.535973, 1571759081.6371963, 1571759081.7384198, 1571759081.839643, 1571759081.9408665, 1571759082.0420897, 1571759082.1433132, 1571759082.2445364, 1571759082.3457599, 1571759082.446983, 1571759082.5482066, 1571759082.64943, 1571759082.7506533, 1571759082.8518767, 1571759082.9531, 1571759083.0543234, 1571759083.1555467, 1571759083.2567701, 1571759083.3579934, 1571759083.4592168, 1571759083.5604403, 1571759083.6616635, 1571759083.762887, 1571759083.8641102, 1571759083.9653337, 1571759084.066557, 1571759084.1677804, 1571759084.2690036, 1571759084.370227, 1571759084.4714506, 1571759084.5726738, 1571759084.6738973, 1571759084.7751205, 1571759084.876344, 1571759084.9775672, 1571759085.0787907, 1571759085.180014, 1571759085.2812374, 1571759085.3824606, 1571759085.483684, 1571759085.5849075, 1571759085.6861308, 1571759085.7873542, 1571759085.8885775, 1571759085.989801, 1571759086.0910242, 1571759086.1922476, 1571759086.2934709, 1571759086.3946943, 1571759086.4959178, 1571759086.597141, 1571759086.6983645, 1571759086.7995877, 1571759086.9008112, 1571759087.0020344, 1571759087.103258, 1571759087.2044811, 1571759087.3057046, 1571759087.406928, 1571759087.5081513, 1571759087.6093748, 1571759087.710598, 1571759087.8118215, 1571759087.9130447, 1571759088.0142682, 1571759088.1154914, 1571759088.2167149, 1571759088.317938, 1571759088.4191616, 1571759088.520385, 1571759088.6216083, 1571759088.7228317, 1571759088.824055, 1571759088.9252784, 1571759089.0265017, 1571759089.1277251, 1571759089.2289484, 1571759089.3301718, 1571759089.4313953, 1571759089.5326185, 1571759089.633842, 1571759089.7350652, 1571759089.8362887, 1571759089.937512, 1571759090.0387354, 1571759090.1399586, 1571759090.241182, 1571759090.3424053, 1571759090.4436288, 1571759090.5448523, 1571759090.6460755, 1571759090.747299, 1571759090.8485222, 1571759090.9497457, 1571759091.050969, 1571759091.1521924, 1571759091.2534156, 1571759091.354639], "samples": [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.7307692170143127, 0.0], [0.0, 1.0, 0.692307710647583, 0.0], [0.0, 1.0, 0.692307710647583, 0.0], [0.0, 1.0, 0.6730769276618958, 0.0], [0.0, 1.0, 0.6153846383094788, 0.0], [0.0, 0.8571428656578064, 0.557692289352417, 0.0], [0.0, 0.7857142686843872, 0.557692289352417, 0.0], [0.0, 1.0, 0.6274510025978088, 0.0], [0.0, 1.0, 0.7450980544090271, 0.0], [0.0, 1.0, 0.843137264251709, 0.0], [0.0, 1.0, 0.9215686321258545, 0.0], [0.0, 1.0, 0.9411764740943909, 0.0], [0.0, 1.0, 0.9607843160629272, 0.0], [0.0, 1.0, 0.9607843160629272, 0.0], [0.0, 1.0, 0.9607843160629272, 0.0], [0.0, 1.0, 0.9411764740943909, 0.0], [0.0, 1.0, 0.918367326259613, 0.0], [0.8999999761581421, 0.9090909361839294, 0.8333333134651184, 0.0], [0.8999999761581421, 0.7727272510528564, 0.7708333134651184, 0.0], [0.8999999761581421, 0.6818181872367859, 0.7291666865348816, 0.0], [0.8999999761581421, 0.5909090638160706, 0.6666666865348816, 0.0], [0.8999999761581421, 0.5, 0.6041666865348816, 0.0], [0.8999999761581421, 0.1818181872367859, 0.5, 0.0], [0.8999999761581421, 0.0, 0.3333333432674408, 0.0], [0.8999999761581421, 0.0, 0.1458333283662796, 0.0], [0.8999999761581421, 0.0, 0.0, 0.0], [0.8999999761581421, 0.0, 0.0, 0.0], [0.8999999761581421, 0.0, 0.0, 0.0], [0.8999999761581421, 0.0, 0.0, 0.0], [0.8999999761581421, 0.0, 0.0, 0.0], [0.8999999761581421, 0.0, 0.0, 0.0], [0.8999999761581421, 0.0, 0.0, 0.0], [0.8999999761581421, 0.02631578966975212, 0.0, 0.0], [0.8999999761581421, 0.03947368264198303, 0.0, 0.0], [0.8999999761581421, 0.03947368264198303, 0.01886792480945587, 0.0], [0.8999999761581421, 0.05263157933950424, 0.056603774428367615, 0.0], [0.8999999761581421, 0.07894736528396606, 0.1320754736661911, 0.0], [0.8999999761581421, 0.10526315867900848, 0.22641509771347046, 0.0], [0.8999999761581421, 0.1315789520740509, 0.35849055647850037, 0.0], [0.8999999761581421, 0.14473684132099152, 0.4716981053352356, 0.0], [0.8999999761581421, 0.14473684132099152, 0.5471698045730591, 0.0], [0.8999999761581421, 0.10810811072587967, 0.6037735939025879, 0.0], [0.8999999761581421, 0.10294117778539658, 0.6346153616905212, 0.0], [0.8999999761581421, 0.10294117778539658, 0.6538461446762085, 0.0], [0.8999999761581421, 0.13235294818878174, 0.6730769276618958, 0.0], [0.8999999761581421, 0.19117647409439087, 0.6730769276618958, 0.0], [0.8999999761581421, 0.25, 0.6538461446762085, 0.0], [0.8999999761581421, 0.29411765933036804, 0.6538461446762085, 0.0], [0.8999999761581421, 0.30882352590560913, 0.6538461446762085, 0.0], [0.8999999761581421, 0.30882352590560913, 0.6730769276618958, 0.0], [0.8999999761581421, 0.3125, 0.7254902124404907, 0.0], [0.8999999761581421, 0.296875, 0.7400000095367432, 0.0], [0.8999999761581421, 0.28125, 0.7200000286102295, 0.0], [0.0, 0.265625, 0.6800000071525574, 0.0], [0.0, 0.25, 0.6000000238418579, 0.0], [0.0, 0.234375, 0.5199999809265137, 0.0], [0.0, 0.234375, 0.46000000834465027, 0.0], [0.0, 0.234375, 0.41999998688697815, 0.0], [0.0, 0.2222222238779068, 0.3799999952316284, 0.0], [0.0, 0.1428571492433548, 0.3400000035762787, 0.0], [0.0, 0.0317460335791111, 0.30000001192092896, 0.0], [0.0, 0.0, 0.26530611515045166, 0.44897958636283875], [0.0, 0.0, 0.2448979616165161, 0.3469387888908386], [0.0, 0.0, 0.18367347121238708, 0.24444444477558136], [0.0, 0.0, 0.08163265138864517, 0.2666666805744171], [0.0, 0.0, 0.0, 0.35555556416511536], [0.0, 0.0, 0.0, 0.42222222685813904], [0.0, 0.0, 0.0, 0.46666666865348816], [0.0, 0.0, 0.0, 0.46666666865348816], [0.0, 0.012820512987673283, 0.0, 0.4761904776096344], [0.0, 0.025641025975346565, 0.0, 0.4285714328289032], [0.0, 0.03846153989434242, 0.0, 0.39024388790130615], [0.0, 0.054794520139694214, 0.0, 0.3658536672592163], [0.0, 0.08219178020954132, 0.0, 0.3658536672592163], [0.0, 0.09589041024446487, 0.0, 0.3658536672592163], [0.0, 0.10958904027938843, 0.0, 0.39024388790130615], [0.0, 0.10958904027938843, 0.0, 0.4390243887901306], [0.0, 0.13698630034923553, 0.1111111119389534, 0.46341463923454285], [0.0, 0.2054794579744339, 0.1746031790971756, 0.5555555820465088], [0.0, 0.27397260069847107, 0.2222222238779068, 0.4375], [0.0, 0.34246575832366943, 0.2380952388048172, 0.34375], [0.0, 0.3888888955116272, 0.2222222238779068, 0.25], [0.0, 0.4027777910232544, 0.22580644488334656, 0.15625], [0.014925372786819935, 0.4166666567325592, 0.20967741310596466, 0.09375], [0.014925372786819935, 0.4166666567325592, 0.15789473056793213, 0.0625], [0.02985074557363987, 0.41428571939468384, 0.17543859779834747, 0.125], [0.04477611929178238, 0.4000000059604645, 0.19298245012760162, 0.11538461595773697], [0.05970149114727974, 0.37142857909202576, 0.22807016968727112, 0.19230769574642181], [0.08955223858356476, 0.34285715222358704, 0.2321428507566452, 0.1538461595773697], [0.09090909361839294, 0.3188405930995941, 0.2142857164144516, 0.07692307978868484], [0.04615384712815285, 0.28985506296157837, 0.1785714328289032, 0.0], [0.0, 0.260869562625885, 0.1428571492433548, 0.0], [0.0, 0.21739129722118378, 0.1071428582072258, 0.0], [0.0, 0.1617647111415863, 0.07407407462596893, 0.07999999821186066], [0.0, 0.04411764815449715, 0.03703703731298447, 0.20000000298023224], [0.0, 0.0, 0.018518518656492233, 0.3199999928474426], [0.014925372786819935, 0.0, 0.0, 0.4399999976158142], [0.10447761416435242, 0.0, 0.0, 0.5600000023841858], [0.08955223858356476, 0.0, 0.0, 0.6399999856948853], [0.08955223858356476, 0.0, 0.03773584961891174, 0.7200000286102295], [0.10447761416435242, 0.0, 0.11320754885673523, 0.8399999737739563], [0.13432836532592773, 0.0, 0.15094339847564697, 0.9599999785423279], [0.17910447716712952, 0.08695652335882187, 0.18867924809455872, 1.0], [0.2238806039094925, 0.14492753148078918, 0.18867924809455872, 1.0], [0.26865673065185547, 0.18840579688549042, 0.19230769574642181, 1.0], [0.3283582031726837, 0.23188406229019165, 0.17307692766189575, 1.0], [0.3283582031726837, 0.2753623127937317, 0.13461539149284363, 1.0], [0.3283582031726837, 0.31343284249305725, 0.09615384787321091, 1.0], [0.3283582031726837, 0.3283582031726837, 0.057692307978868484, 1.0], [0.3283582031726837, 0.3283582031726837, 0.0, 1.0], [0.17910447716712952, 0.3283582031726837, 0.0, 1.0], [0.1492537260055542, 0.3076923191547394, 0.03921568766236305, 0.9722222089767456], [0.02985074557363987, 0.29230770468711853, 0.13725490868091583, 0.9166666865348816], [0.16417910158634186, 0.29230770468711853, 0.2448979616165161, 0.9166666865348816], [0.25757575035095215, 0.26153847575187683, 0.2857142984867096, 0.9142857193946838], [0.29230770468711853, 0.20000000298023224, 0.26530611515045166, 0.8857142925262451], [0.29230770468711853, 0.1230769231915474, 0.20408163964748383, 0.7428571581840515], [0.2769230902194977, 0.04615384712815285, 0.16326530277729034, 0.5428571701049805], [0.26153847575187683, 0.0, 0.1428571492433548, 0.5142857432365417], [0.26153847575187683, 0.0, 0.1428571492433548, 0.5142857432365417], [0.2769230902194977, 0.0, 0.16326530277729034, 0.5588235259056091], [0.3076923191547394, 0.0, 0.16326530277729034, 0.5588235259056091], [0.3384615480899811, 0.0, 0.18367347121238708, 0.5882353186607361], [0.3692307770252228, 0.0, 0.22448979318141937, 0.5], [0.38461539149284363, 0.0, 0.2857142984867096, 0.44117647409439087], [0.38461539149284363, 0.0, 0.3877550959587097, 0.44117647409439087], [0.4000000059604645, 0.0, 0.5306122303009033, 0.47058823704719543], [0.4000000059604645, 0.0, 0.7021276354789734, 0.529411792755127], [0.4153846204280853, 0.0, 0.8723404407501221, 0.6470588445663452], [0.38461539149284363, 0.0, 1.0, 0.7878788113594055]], "channel_names": ["ch1", "ch2", "ch3", "ch4"]}, "theta_session_score": {"name": "theta_session_score", "fs": 9.879144743435862, "emp_fs": 9.879144743435862, "timestamps": [1571759075.5638034, 1571759075.6650267, 1571759075.7662501, 1571759075.8674734, 1571759075.9686968, 1571759076.06992, 1571759076.1711435, 1571759076.2723668, 1571759076.3735902, 1571759076.4748135, 1571759076.5760367, 1571759076.6772602, 1571759076.7784834, 1571759076.8797069, 1571759076.98093, 1571759077.0821536, 1571759077.1833768, 1571759077.2846003, 1571759077.3858235, 1571759077.487047, 1571759077.5882702, 1571759077.6894934, 1571759077.790717, 1571759077.89194, 1571759077.9931636, 1571759078.0943868, 1571759078.1956103, 1571759078.2968335, 1571759078.398057, 1571759078.4992802, 1571759078.6005034, 1571759078.701727, 1571759078.8029501, 1571759078.9041736, 1571759079.0053968, 1571759079.1066203, 1571759079.2078435, 1571759079.309067, 1571759079.4102902, 1571759079.5115135, 1571759079.612737, 1571759079.7139602, 1571759079.8151836, 1571759079.9164069, 1571759080.0176303, 1571759080.1188536, 1571759080.220077, 1571759080.3213003, 1571759080.4225237, 1571759080.523747, 1571759080.6249702, 1571759080.7261937, 1571759080.827417, 1571759080.9286404, 1571759081.0298636, 1571759081.131087, 1571759081.2323103, 1571759081.3335338, 1571759081.434757, 1571759081.5359802, 1571759081.6372037, 1571759081.738427, 1571759081.8396504, 1571759081.9408736, 1571759082.042097, 1571759082.1433203, 1571759082.2445438, 1571759082.345767, 1571759082.4469905, 1571759082.5482137, 1571759082.649437, 1571759082.7506604, 1571759082.8518836, 1571759082.953107, 1571759083.0543303, 1571759083.1555538, 1571759083.256777, 1571759083.3580005, 1571759083.4592237, 1571759083.560447, 1571759083.6616704, 1571759083.7628937, 1571759083.8641171, 1571759083.9653404, 1571759084.0665638, 1571759084.167787, 1571759084.2690105, 1571759084.3702338, 1571759084.471457, 1571759084.5726805, 1571759084.6739037, 1571759084.7751272, 1571759084.8763504, 1571759084.9775739, 1571759085.078797, 1571759085.1800206, 1571759085.2812438, 1571759085.3824673, 1571759085.4836905, 1571759085.5849137, 1571759085.6861372, 1571759085.7873604, 1571759085.888584, 1571759085.9898071, 1571759086.0910306, 1571759086.1922538, 1571759086.2934773, 1571759086.3947005, 1571759086.4959238, 1571759086.5971472, 1571759086.6983705, 1571759086.799594, 1571759086.9008172, 1571759087.0020406, 1571759087.1032639, 1571759087.2044873, 1571759087.3057106, 1571759087.4069338, 1571759087.5081573, 1571759087.6093805, 1571759087.710604, 1571759087.8118272, 1571759087.9130507, 1571759088.014274, 1571759088.1154974, 1571759088.2167206, 1571759088.317944, 1571759088.4191673, 1571759088.5203905, 1571759088.621614, 1571759088.7228372, 1571759088.8240607, 1571759088.925284, 1571759089.0265074, 1571759089.1277306, 1571759089.228954, 1571759089.3301773, 1571759089.4314005, 1571759089.532624, 1571759089.6338472, 1571759089.7350707, 1571759089.836294, 1571759089.9375174, 1571759090.0387406, 1571759090.139964, 1571759090.2411873, 1571759090.3424108, 1571759090.443634, 1571759090.5448573, 1571759090.6460807, 1571759090.747304, 1571759090.8485274, 1571759090.9497507, 1571759091.0509741, 1571759091.1521974, 1571759091.2534208, 1571759091.354644], "samples": [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 1.0, 0.0], [0.0, 0.8461538553237915, 0.9107142686843872, 0.0], [0.0, 0.9210526347160339, 0.875, 0.0], [0.0, 0.8421052694320679, 0.9107142686843872, 0.0], [0.0, 0.7368420958518982, 1.0, 0.0], [0.0, 0.6052631735801697, 1.0, 0.0], [0.0, 0.5526315569877625, 1.0, 0.0], [0.0, 0.5, 1.0, 0.0], [0.0, 0.4864864945411682, 1.0, 0.0], [0.0, 0.4864864945411682, 1.0, 0.0], [0.0, 0.5555555820465088, 1.0, 0.0], [0.0, 0.5833333134651184, 1.0, 0.0], [0.0, 0.6111111044883728, 1.0, 0.0], [0.0, 0.6944444179534912, 1.0, 0.0], [0.0, 0.7777777910232544, 1.0, 0.0], [0.0, 0.6571428775787354, 1.0, 0.0], [0.0, 0.2857142984867096, 1.0, 0.0], [0.3777777850627899, 0.0, 1.0, 0.0], [0.3333333432674408, 0.0, 1.0, 0.0], [0.3333333432674408, 0.0, 1.0, 0.0], [0.3333333432674408, 0.0, 0.9599999785423279, 0.0], [0.3333333432674408, 0.0, 0.9066666960716248, 0.0], [0.3333333432674408, 0.13953489065170288, 0.8666666746139526, 0.0], [0.3333333432674408, 0.25581395626068115, 0.8666666746139526, 0.0], [0.3333333432674408, 0.3255814015865326, 0.8666666746139526, 0.0], [0.3333333432674408, 0.2368421107530594, 0.8666666746139526, 0.0], [0.3333333432674408, 0.18421052396297455, 0.8666666746139526, 0.0], [0.3333333432674408, 0.15789473056793213, 0.8666666746139526, 0.0], [0.3333333432674408, 0.1315789520740509, 0.8666666746139526, 0.0], [0.3333333432674408, 0.1315789520740509, 0.8933333158493042, 0.0], [0.3333333432674408, 0.18421052396297455, 0.9200000166893005, 0.0], [0.3333333432674408, 0.2368421107530594, 0.9466666579246521, 0.0], [0.3333333432674408, 0.2631579041481018, 0.9333333373069763, 0.0], [0.3333333432674408, 0.2631579041481018, 0.9066666960716248, 0.0], [0.3333333432674408, 0.2702702581882477, 0.8666666746139526, 0.0], [0.3333333432674408, 0.29729729890823364, 0.8243243098258972, 0.0], [0.3333333432674408, 0.3243243098258972, 0.7972972989082336, 0.0], [0.3333333432674408, 0.3513513505458832, 0.7837837934494019, 0.0], [0.3333333432674408, 0.3888888955116272, 0.7702702879905701, 0.0], [0.3333333432674408, 0.4444444477558136, 0.7972972989082336, 0.0], [0.3333333432674408, 0.5142857432365417, 0.8108108043670654, 0.0], [0.3333333432674408, 0.5142857432365417, 0.8243243098258972, 0.0], [0.3333333432674408, 0.48571428656578064, 0.835616409778595, 0.0], [0.3333333432674408, 0.44117647409439087, 0.8767123222351074, 0.0], [0.3333333432674408, 0.4117647111415863, 0.9041095972061157, 0.0], [0.3333333432674408, 0.3529411852359772, 0.931506872177124, 0.0], [0.3333333432674408, 0.29411765933036804, 0.9589040875434875, 0.0], [0.3333333432674408, 0.2647058963775635, 0.9863013625144958, 0.0], [0.3333333432674408, 0.23529411852359772, 1.0, 0.0], [0.3333333432674408, 0.23529411852359772, 1.0, 0.0], [0.3333333432674408, 0.23529411852359772, 1.0, 0.0], [0.3333333432674408, 0.1764705926179886, 1.0, 0.0], [0.3333333432674408, 0.0882352963089943, 1.0, 0.0], [0.0, 0.0, 0.9718309640884399, 0.0], [0.0, 0.0, 0.9295774698257446, 0.0], [0.0, 0.0, 0.8873239159584045, 0.0], [0.0, 0.0, 0.8450704216957092, 0.0], [0.0, 0.0, 0.8028169274330139, 0.0], [0.0, 0.0, 0.7323943376541138, 0.0], [0.0, 0.02222222276031971, 0.6338028311729431, 0.0], [0.0, 0.06666667014360428, 0.47887325286865234, 0.0], [0.017241379246115685, 0.09302325546741486, 0.30985915660858154, 0.30158731341362], [0.017241379246115685, 0.09302325546741486, 0.12857143580913544, 0.3174603283405304], [0.017241379246115685, 0.09302325546741486, 0.0, 0.30158731341362], [0.017241379246115685, 0.06976744532585144, 0.0, 0.2857142984867096], [0.0, 0.06976744532585144, 0.10000000149011612, 0.30158731341362], [0.0, 0.09302325546741486, 0.2142857164144516, 0.3333333432674408], [0.0, 0.1627907007932663, 0.2857142984867096, 0.3650793731212616], [0.0, 0.23255814611911774, 0.30000001192092896, 0.380952388048172], [0.0, 0.302325576543808, 0.30000001192092896, 0.3650793731212616], [0.0, 0.3571428656578064, 0.2857142984867096, 0.3333333432674408], [0.0, 0.4047619104385376, 0.27142858505249023, 0.3174603283405304], [0.0, 0.4523809552192688, 0.27142858505249023, 0.3492063581943512], [0.016393441706895828, 0.4761904776096344, 0.2857142984867096, 0.4262295067310333], [0.06557376682758331, 0.5, 0.3285714387893677, 0.49180328845977783], [0.09836065769195557, 0.5476190447807312, 0.3857142925262451, 0.5245901346206665], [0.1147540956735611, 0.5952380895614624, 0.4571428596973419, 0.5409836173057556], [0.13114753365516663, 0.6904761791229248, 0.5, 0.5245901346206665], [0.13114753365516663, 0.761904776096344, 0.5285714268684387, 0.5081967115402222], [0.09836065769195557, 0.8048780560493469, 0.5, 0.49180328845977783], [0.06557376682758331, 0.8048780560493469, 0.44285714626312256, 0.49152541160583496], [0.032786883413791656, 0.7560975551605225, 0.37142857909202576, 0.4406779706478119], [0.0, 0.707317054271698, 0.26153847575187683, 0.38983049988746643], [0.0, 0.6097561120986938, 0.23076923191547394, 0.35593220591545105], [0.0, 0.5609756112098694, 0.2153846174478531, 0.33898305892944336], [0.0, 0.4878048896789551, 0.23076923191547394, 0.33898305892944336], [0.0, 0.4146341383457184, 0.234375, 0.33898305892944336], [0.0, 0.375, 0.25, 0.2982456088066101], [0.0, 0.32499998807907104, 0.265625, 0.19298245012760162], [0.0, 0.2750000059604645, 0.28125, 0.07017543911933899], [0.0, 0.17499999701976776, 0.3174603283405304, 0.0], [0.0, 0.07500000298023224, 0.3650793731212616, 0.0], [0.0, 0.0, 0.4285714328289032, 0.017543859779834747], [0.0, 0.0, 0.5161290168762207, 0.125], [0.0, 0.0, 0.5806451439857483, 0.1964285671710968], [0.0, 0.0, 0.6451612710952759, 0.25], [0.0, 0.0, 0.6935483813285828, 0.2857142984867096], [0.0, 0.06666667014360428, 0.7419354915618896, 0.3035714328289032], [0.02857142873108387, 0.09090909361839294, 0.7666666507720947, 0.3214285671710968], [0.04411764815449715, 0.13636364042758942, 0.800000011920929, 0.3877550959587097], [0.0882352963089943, 0.15909090638160706, 0.8333333134651184, 0.40816327929496765], [0.13432836532592773, 0.1818181872367859, 0.8666666746139526, 0.44897958636283875], [0.17910447716712952, 0.20454545319080353, 0.8666666746139526, 0.4897959232330322], [0.23880596458911896, 0.22727273404598236, 0.8666666746139526, 0.5306122303009033], [0.26865673065185547, 0.20930232107639313, 0.8333333134651184, 0.5714285969734192], [0.28358209133148193, 0.1860465109348297, 0.7833333611488342, 0.5714285969734192], [0.28358209133148193, 0.1627907007932663, 0.7118644118309021, 0.5714285969734192], [0.28358209133148193, 0.11627907305955887, 0.6271186470985413, 0.5306122303009033], [0.28358209133148193, 0.04651162773370743, 0.5423728823661804, 0.40816327929496765], [0.28358209133148193, 0.0, 0.4406779706478119, 0.2857142984867096], [0.0, 0.0, 0.32758620381355286, 0.18367347121238708], [0.11940298229455948, 0.0, 0.24137930572032928, 0.09302325546741486], [0.2537313401699066, 0.0, 0.19298245012760162, 0.04651162773370743], [0.32307693362236023, 0.0, 0.14035087823867798, 0.023255813866853714], [0.3692307770252228, 0.0, 0.0714285746216774, 0.0], [0.3692307770252228, 0.0, 0.0, 0.0], [0.359375, 0.0, 0.0, 0.0], [0.328125, 0.0, 0.0, 0.0], [0.296875, 0.0, 0.0, 0.0], [0.296875, 0.0, 0.0, 0.0], [0.328125, 0.0, 0.032258063554763794, 0.0], [0.375, 0.0, 0.08064515888690948, 0.0], [0.3968254029750824, 0.0714285746216774, 0.12903225421905518, 0.0], [0.460317462682724, 0.1607142835855484, 0.27419355511665344, 0.0], [0.5079365372657776, 0.2545454502105713, 0.4677419364452362, 0.04878048598766327], [0.5396825671195984, 0.3272727131843567, 0.6612903475761414, 0.31707316637039185], [0.5714285969734192, 0.4000000059604645, 0.8225806355476379, 0.550000011920929], [0.5967742204666138, 0.42307692766189575, 0.9354838728904724, 0.800000011920929], [0.5806451439857483, 0.4423076808452606, 1.0, 0.8857142925262451], [0.5806451439857483, 0.4615384638309479, 1.0, 0.9142857193946838]], "channel_names": ["ch1", "ch2", "ch3", "ch4"]}, "gamma_session_score": {"name": "gamma_session_score", "fs": 9.879148955939446, "emp_fs": 9.879148955939446, "timestamps": [1571759075.563816, 1571759075.6650393, 1571759075.7662628, 1571759075.867486, 1571759075.9687092, 1571759076.0699325, 1571759076.171156, 1571759076.2723792, 1571759076.3736024, 1571759076.4748256, 1571759076.576049, 1571759076.6772723, 1571759076.7784956, 1571759076.8797188, 1571759076.9809422, 1571759077.0821655, 1571759077.1833887, 1571759077.2846122, 1571759077.3858354, 1571759077.4870586, 1571759077.5882819, 1571759077.6895053, 1571759077.7907286, 1571759077.8919518, 1571759077.993175, 1571759078.0943985, 1571759078.1956217, 1571759078.296845, 1571759078.3980684, 1571759078.4992917, 1571759078.600515, 1571759078.701738, 1571759078.8029616, 1571759078.9041848, 1571759079.005408, 1571759079.1066313, 1571759079.2078547, 1571759079.309078, 1571759079.4103012, 1571759079.5115247, 1571759079.612748, 1571759079.7139711, 1571759079.8151944, 1571759079.9164178, 1571759080.017641, 1571759080.1188643, 1571759080.2200875, 1571759080.321311, 1571759080.4225342, 1571759080.5237575, 1571759080.6249807, 1571759080.7262042, 1571759080.8274274, 1571759080.9286506, 1571759081.029874, 1571759081.1310973, 1571759081.2323205, 1571759081.3335438, 1571759081.4347672, 1571759081.5359905, 1571759081.6372137, 1571759081.738437, 1571759081.8396604, 1571759081.9408836, 1571759082.0421069, 1571759082.14333, 1571759082.2445536, 1571759082.3457768, 1571759082.447, 1571759082.5482235, 1571759082.6494467, 1571759082.75067, 1571759082.8518932, 1571759082.9531167, 1571759083.05434, 1571759083.155563, 1571759083.2567863, 1571759083.3580098, 1571759083.459233, 1571759083.5604563, 1571759083.6616797, 1571759083.762903, 1571759083.8641262, 1571759083.9653494, 1571759084.066573, 1571759084.1677961, 1571759084.2690194, 1571759084.3702426, 1571759084.471466, 1571759084.5726893, 1571759084.6739125, 1571759084.775136, 1571759084.8763592, 1571759084.9775825, 1571759085.0788057, 1571759085.1800292, 1571759085.2812524, 1571759085.3824756, 1571759085.4836988, 1571759085.5849223, 1571759085.6861455, 1571759085.7873688, 1571759085.888592, 1571759085.9898155, 1571759086.0910387, 1571759086.192262, 1571759086.2934854, 1571759086.3947086, 1571759086.4959319, 1571759086.597155, 1571759086.6983786, 1571759086.7996018, 1571759086.900825, 1571759087.0020483, 1571759087.1032717, 1571759087.204495, 1571759087.3057182, 1571759087.4069414, 1571759087.508165, 1571759087.609388, 1571759087.7106113, 1571759087.8118348, 1571759087.913058, 1571759088.0142813, 1571759088.1155045, 1571759088.216728, 1571759088.3179512, 1571759088.4191744, 1571759088.5203977, 1571759088.6216211, 1571759088.7228444, 1571759088.8240676, 1571759088.925291, 1571759089.0265143, 1571759089.1277375, 1571759089.2289608, 1571759089.3301842, 1571759089.4314075, 1571759089.5326307, 1571759089.633854, 1571759089.7350774, 1571759089.8363006, 1571759089.9375238, 1571759090.0387473, 1571759090.1399705, 1571759090.2411938, 1571759090.342417, 1571759090.4436405, 1571759090.5448637, 1571759090.646087, 1571759090.7473102, 1571759090.8485336, 1571759090.9497569, 1571759091.05098, 1571759091.1522033, 1571759091.2534268, 1571759091.35465], "samples": [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.1111111119389534, 0.0], [0.0, 0.32692307233810425, 0.1666666716337204, 0.0], [0.0, 0.36538460850715637, 0.2222222238779068, 0.0], [0.0, 0.38461539149284363, 0.1764705926179886, 0.0], [0.0, 0.38461539149284363, 0.11764705926179886, 0.0], [0.0, 0.38461539149284363, 0.05882352963089943, 0.0], [0.0, 0.38461539149284363, 0.0, 0.0], [0.0, 0.32692307233810425, 0.0, 0.0], [0.0, 0.26923078298568726, 0.0, 0.0], [0.0, 0.21153846383094788, 0.0, 0.0], [0.0, 0.21153846383094788, 0.0, 0.0], [0.0, 0.23076923191547394, 0.0, 0.0], [0.0, 0.25, 0.0, 0.0], [0.0, 0.23076923191547394, 0.0, 0.0], [0.0, 0.14000000059604645, 0.0, 0.0], [0.0, 0.019999999552965164, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0], [1.0, 0.046875, 0.0, 0.0], [1.0, 0.09375, 0.0, 0.0], [1.0, 0.125, 0.0, 0.0], [1.0, 0.15625, 0.0, 0.0], [1.0, 0.1147540956735611, 0.02777777798473835, 0.0], [1.0, 0.09836065769195557, 0.02777777798473835, 0.0], [1.0, 0.06557376682758331, 0.0555555559694767, 0.0], [1.0, 0.06557376682758331, 0.0833333358168602, 0.0], [1.0, 0.06557376682758331, 0.1111111119389534, 0.0], [1.0, 0.08196721225976944, 0.1388888955116272, 0.0], [1.0, 0.1147540956735611, 0.1666666716337204, 0.0], [1.0, 0.13114753365516663, 0.1666666716337204, 0.0], [1.0, 0.13114753365516663, 0.1666666716337204, 0.0], [1.0, 0.08620689809322357, 0.1666666716337204, 0.0], [1.0, 0.08620689809322357, 0.11428571492433548, 0.0], [1.0, 0.0517241396009922, 0.11428571492433548, 0.0], [1.0, 0.017241379246115685, 0.08571428805589676, 0.0], [1.0, 0.0, 0.08571428805589676, 0.0], [1.0, 0.0, 0.11428571492433548, 0.0], [1.0, 0.03333333507180214, 0.11428571492433548, 0.0], [1.0, 0.0833333358168602, 0.11428571492433548, 0.0], [1.0, 0.15000000596046448, 0.11428571492433548, 0.0], [1.0, 0.21666666865348816, 0.08571428805589676, 0.0], [1.0, 0.2711864411830902, 0.05714285746216774, 0.0], [1.0, 0.3050847351551056, 0.05714285746216774, 0.0], [1.0, 0.33898305892944336, 0.08571428805589676, 0.0], [1.0, 0.33898305892944336, 0.08571428805589676, 0.0], [1.0, 0.36206895112991333, 0.0882352963089943, 0.0], [1.0, 0.36206895112991333, 0.0882352963089943, 0.0], [0.3125, 0.36206895112991333, 0.0882352963089943, 0.0], [0.34375, 0.37931033968925476, 0.11764705926179886, 0.0], [0.40625, 0.3965517282485962, 0.14705882966518402, 0.0], [0.4375, 0.3965517282485962, 0.11764705926179886, 0.0], [0.46875, 0.3928571343421936, 0.0882352963089943, 0.0], [0.5, 0.375, 0.05882352963089943, 0.0], [0.5, 0.3392857015132904, 0.05882352963089943, 0.0], [0.4333333373069763, 0.2857142984867096, 0.05882352963089943, 0.0], [0.4333333373069763, 0.2181818187236786, 0.0882352963089943, 0.0], [0.4333333373069763, 0.12727272510528564, 0.0882352963089943, 0.0], [0.4333333373069763, 0.036363635212183, 0.05882352963089943, 0.0], [0.4333333373069763, 0.0, 0.029411764815449715, 0.0], [0.4333333373069763, 0.0, 0.0, 0.0], [0.46666666865348816, 0.0, 0.029411764815449715, 0.0], [0.5, 0.0, 0.05882352963089943, 0.0], [0.5, 0.0, 0.0882352963089943, 0.0], [0.5, 0.0, 0.0882352963089943, 0.0], [0.48275861144065857, 0.0, 0.029411764815449715, 0.0], [0.4482758641242981, 0.0, 0.0, 0.0], [0.37931033968925476, 0.0, 0.0, 0.0], [0.27586206793785095, 0.0, 0.0, 0.0], [0.13793103396892548, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.016129031777381897, 0.0, 0.0], [0.0, 0.04838709533214569, 0.0, 0.0], [0.0, 0.08064515888690948, 0.0, 0.0], [0.0, 0.08064515888690948, 0.0, 0.0], [0.0, 0.06451612710952759, 0.0, 0.0], [0.03125, 0.06451612710952759, 0.0, 0.0], [0.03125, 0.04838709533214569, 0.0, 0.05263157933950424], [0.032258063554763794, 0.06451612710952759, 0.0, 0.10526315867900848], [0.0, 0.06451612710952759, 0.0, 0.15789473056793213], [0.0, 0.08196721225976944, 0.0, 0.21052631735801697], [0.0, 0.09836065769195557, 0.0, 0.2368421107530594], [0.0, 0.1147540956735611, 0.0, 0.2368421107530594], [0.0, 0.13114753365516663, 0.0, 0.2631579041481018], [0.0, 0.13114753365516663, 0.0, 0.2631579041481018], [0.0, 0.13114753365516663, 0.0, 0.28947368264198303], [0.0, 0.1147540956735611, 0.0, 0.28947368264198303], [0.0, 0.09836065769195557, 0.0, 0.31578946113586426], [0.0, 0.09836065769195557, 0.0, 0.34210526943206787], [0.0, 0.1147540956735611, 0.022727273404598236, 0.34210526943206787], [0.0, 0.1147540956735611, 0.022727273404598236, 0.3684210479259491], [0.0, 0.13114753365516663, 0.022727273404598236, 0.4054054021835327], [0.0, 0.13114753365516663, 0.022727273404598236, 0.45945945382118225], [0.0, 0.10000000149011612, 0.023255813866853714, 0.5135135054588318], [0.0, 0.0833333358168602, 0.023255813866853714, 0.5405405163764954], [0.0, 0.0833333358168602, 0.023255813866853714, 0.5675675868988037], [0.0, 0.10000000149011612, 0.023255813866853714, 0.5945945978164673], [0.0, 0.10000000149011612, 0.023255813866853714, 0.6216216087341309], [0.05128205195069313, 0.10000000149011612, 0.023255813866853714, 0.6756756901741028], [0.10256410390138626, 0.0833333358168602, 0.0, 0.7027027010917664], [0.12820513546466827, 0.06779661029577255, 0.0, 0.7567567825317383], [0.12820513546466827, 0.050847455859184265, 0.02380952425301075, 0.7837837934494019], [0.12820513546466827, 0.033898305147886276, 0.0476190485060215, 0.837837815284729], [0.12820513546466827, 0.017543859779834747, 0.0714285746216774, 0.8648648858070374], [0.12820513546466827, 0.0, 0.095238097012043, 0.8648648858070374], [0.0, 0.0, 0.095238097012043, 0.837837815284729], [0.0, 0.0, 0.0714285746216774, 0.7837837934494019], [0.0, 0.0, 0.0714285746216774, 0.7027027010917664], [0.0, 0.0, 0.0714285746216774, 0.6216216087341309], [0.0, 0.0, 0.0714285746216774, 0.5833333134651184], [0.05000000074505806, 0.0, 0.0476190485060215, 0.5277777910232544], [0.07500000298023224, 0.0, 0.0476190485060215, 0.5], [0.125, 0.0, 0.0476190485060215, 0.4444444477558136], [0.15000000596046448, 0.0, 0.0714285746216774, 0.4444444477558136], [0.15000000596046448, 0.0, 0.09756097197532654, 0.4444444477558136], [0.15000000596046448, 0.0, 0.12195122241973877, 0.4166666567325592], [0.125, 0.0, 0.09756097197532654, 0.3611111044883728], [0.125, 0.0, 0.07500000298023224, 0.3333333432674408], [0.125, 0.0, 0.02500000037252903, 0.2222222238779068], [0.15000000596046448, 0.0, 0.0, 0.1388888955116272], [0.17499999701976776, 0.018518518656492233, 0.0, 0.0555555559694767], [0.20000000298023224, 0.0555555559694767, 0.0, 0.0], [0.23076923191547394, 0.09433962404727936, 0.025641025975346565, 0.0], [0.25641027092933655, 0.09433962404727936, 0.07692307978868484, 0.0], [0.25641027092933655, 0.09433962404727936, 0.10526315867900848, 0.0]], "channel_names": ["ch1", "ch2", "ch3", "ch4"]}, "hsi_precision": {"name": "hsi_precision", "fs": 9.879155776190956, "emp_fs": 9.879155776190956, "timestamps": [1571759075.563843, 1571759075.6650662, 1571759075.7662895, 1571759075.8675127, 1571759075.968736, 1571759076.0699592, 1571759076.1711824, 1571759076.2724056, 1571759076.3736289, 1571759076.474852, 1571759076.5760753, 1571759076.6772985, 1571759076.7785218, 1571759076.879745, 1571759076.9809682, 1571759077.0821915, 1571759077.1834147, 1571759077.284638, 1571759077.3858612, 1571759077.4870844, 1571759077.5883074, 1571759077.6895306, 1571759077.7907538, 1571759077.891977, 1571759077.9932003, 1571759078.0944235, 1571759078.1956468, 1571759078.29687, 1571759078.3980932, 1571759078.4993165, 1571759078.6005397, 1571759078.701763, 1571759078.8029861, 1571759078.9042094, 1571759079.0054326, 1571759079.1066558, 1571759079.207879, 1571759079.3091023, 1571759079.4103255, 1571759079.5115488, 1571759079.612772, 1571759079.7139952, 1571759079.8152184, 1571759079.9164417, 1571759080.017665, 1571759080.1188881, 1571759080.2201114, 1571759080.3213346, 1571759080.4225578, 1571759080.523781, 1571759080.6250043, 1571759080.7262275, 1571759080.8274508, 1571759080.928674, 1571759081.0298972, 1571759081.1311204, 1571759081.2323437, 1571759081.333567, 1571759081.4347901, 1571759081.5360131, 1571759081.6372364, 1571759081.7384596, 1571759081.8396828, 1571759081.940906, 1571759082.0421293, 1571759082.1433525, 1571759082.2445757, 1571759082.345799, 1571759082.4470222, 1571759082.5482454, 1571759082.6494687, 1571759082.750692, 1571759082.8519151, 1571759082.9531384, 1571759083.0543616, 1571759083.1555848, 1571759083.256808, 1571759083.3580313, 1571759083.4592545, 1571759083.5604777, 1571759083.661701, 1571759083.7629242, 1571759083.8641474, 1571759083.9653707, 1571759084.066594, 1571759084.167817, 1571759084.2690403, 1571759084.3702636, 1571759084.4714868, 1571759084.57271, 1571759084.6739333, 1571759084.7751565, 1571759084.8763797, 1571759084.977603, 1571759085.0788262, 1571759085.1800494, 1571759085.2812726, 1571759085.3824959, 1571759085.4837189, 1571759085.584942, 1571759085.6861653, 1571759085.7873886, 1571759085.8886118, 1571759085.989835, 1571759086.0910583, 1571759086.1922815, 1571759086.2935047, 1571759086.394728, 1571759086.4959512, 1571759086.5971744, 1571759086.6983976, 1571759086.7996209, 1571759086.900844, 1571759087.0020673, 1571759087.1032906, 1571759087.2045138, 1571759087.305737, 1571759087.4069602, 1571759087.5081835, 1571759087.6094067, 1571759087.71063, 1571759087.8118532, 1571759087.9130764, 1571759088.0142996, 1571759088.1155229, 1571759088.216746, 1571759088.3179693, 1571759088.4191926, 1571759088.5204158, 1571759088.621639, 1571759088.7228622, 1571759088.8240855, 1571759088.9253087, 1571759089.026532, 1571759089.1277552, 1571759089.2289784, 1571759089.3302016, 1571759089.4314246, 1571759089.5326478, 1571759089.633871, 1571759089.7350943, 1571759089.8363175, 1571759089.9375408, 1571759090.038764, 1571759090.1399872, 1571759090.2412105, 1571759090.3424337, 1571759090.443657, 1571759090.5448802, 1571759090.6461034, 1571759090.7473266, 1571759090.8485498, 1571759090.949773, 1571759091.0509963, 1571759091.1522195, 1571759091.2534428, 1571759091.354666], "samples": [[1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [2.0, 1.0, 1.0, 2.0], [2.0, 1.0, 1.0, 2.0], [2.0, 1.0, 1.0, 2.0], [2.0, 1.0, 1.0, 2.0], [2.0, 1.0, 1.0, 2.0], [2.0, 1.0, 1.0, 2.0], [2.0, 1.0, 1.0, 2.0], [2.0, 1.0, 1.0, 2.0], [2.0, 1.0, 1.0, 2.0], [2.0, 1.0, 1.0, 2.0], [2.0, 1.0, 1.0, 2.0], [2.0, 1.0, 1.0, 2.0], [2.0, 1.0, 1.0, 2.0], [2.0, 1.0, 1.0, 2.0], [2.0, 1.0, 1.0, 2.0], [2.0, 1.0, 1.0, 2.0], [2.0, 1.0, 1.0, 2.0], [2.0, 1.0, 1.0, 2.0], [2.0, 1.0, 1.0, 2.0], [2.0, 1.0, 1.0, 2.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0]], "channel_names": ["ch1", "ch2", "ch3", "ch4"]}, "blink": {"name": "blink", "fs": 9.879044647383827, "emp_fs": 9.879044647383827, "timestamps": [1571759075.5633924, 1571759075.6646168, 1571759075.765841, 1571759075.8670654, 1571759075.9682899, 1571759076.0695143, 1571759076.1707387, 1571759076.271963, 1571759076.3731873, 1571759076.4744117, 1571759076.575636, 1571759076.6768603, 1571759076.7780848, 1571759076.8793092, 1571759076.9805336, 1571759077.0817578, 1571759077.1829822, 1571759077.2842066, 1571759077.3854308, 1571759077.4866552, 1571759077.5878797, 1571759077.689104, 1571759077.7903285, 1571759077.8915527, 1571759077.992777, 1571759078.0940015, 1571759078.1952257, 1571759078.2964501, 1571759078.3976746, 1571759078.498899, 1571759078.6001234, 1571759078.7013476, 1571759078.802572, 1571759078.9037964, 1571759079.0050206, 1571759079.106245, 1571759079.2074695, 1571759079.308694, 1571759079.4099183, 1571759079.5111425, 1571759079.612367, 1571759079.7135913, 1571759079.8148155, 1571759079.91604, 1571759080.0172644, 1571759080.1184888, 1571759080.2197132, 1571759080.3209374, 1571759080.4221618, 1571759080.5233862, 1571759080.6246104, 1571759080.7258348, 1571759080.8270593, 1571759080.9282837, 1571759081.029508, 1571759081.1307323, 1571759081.2319567, 1571759081.3331811, 1571759081.4344053, 1571759081.5356297, 1571759081.6368542, 1571759081.7380786, 1571759081.839303, 1571759081.9405272, 1571759082.0417516, 1571759082.142976, 1571759082.2442002, 1571759082.3454247, 1571759082.446649, 1571759082.5478735, 1571759082.649098, 1571759082.750322, 1571759082.8515465, 1571759082.952771, 1571759083.0539951, 1571759083.1552196, 1571759083.256444, 1571759083.3576684, 1571759083.4588928, 1571759083.560117, 1571759083.6613414, 1571759083.7625659, 1571759083.86379, 1571759083.9650145, 1571759084.0662389, 1571759084.1674633, 1571759084.2686877, 1571759084.369912, 1571759084.4711363, 1571759084.5723608, 1571759084.673585, 1571759084.7748094, 1571759084.8760338, 1571759084.9772582, 1571759085.0784826, 1571759085.1797068, 1571759085.2809312, 1571759085.3821557, 1571759085.4833798, 1571759085.5846043, 1571759085.6858287, 1571759085.787053, 1571759085.8882775, 1571759085.9895017, 1571759086.0907261, 1571759086.1919506, 1571759086.2931747, 1571759086.3943992, 1571759086.4956236, 1571759086.596848, 1571759086.6980724, 1571759086.7992966, 1571759086.900521, 1571759087.0017455, 1571759087.1029696, 1571759087.204194, 1571759087.3054185, 1571759087.406643, 1571759087.5078673, 1571759087.6090915, 1571759087.710316, 1571759087.8115404, 1571759087.9127645, 1571759088.013989, 1571759088.1152134, 1571759088.2164378, 1571759088.3176622, 1571759088.4188864, 1571759088.5201108, 1571759088.6213353, 1571759088.7225595, 1571759088.8237839, 1571759088.9250083, 1571759089.0262327, 1571759089.1274571, 1571759089.2286813, 1571759089.3299057, 1571759089.4311302, 1571759089.5323544, 1571759089.6335788, 1571759089.7348032, 1571759089.8360276, 1571759089.937252, 1571759090.0384762, 1571759090.1397007, 1571759090.240925, 1571759090.3421493, 1571759090.4433737, 1571759090.544598, 1571759090.6458225, 1571759090.747047, 1571759090.8482711, 1571759090.9494956, 1571759091.05072, 1571759091.1519442, 1571759091.2531686, 1571759091.354393], "samples": [[0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [1.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [1.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0]], "channel_names": ["ch1"]}, "jaw_clench": {"name": "jaw_clench", "fs": 9.879044647383827, "emp_fs": 9.879044647383827, "timestamps": [1571759075.5633924, 1571759075.6646168, 1571759075.765841, 1571759075.8670654, 1571759075.9682899, 1571759076.0695143, 1571759076.1707387, 1571759076.271963, 1571759076.3731873, 1571759076.4744117, 1571759076.575636, 1571759076.6768603, 1571759076.7780848, 1571759076.8793092, 1571759076.9805336, 1571759077.0817578, 1571759077.1829822, 1571759077.2842066, 1571759077.3854308, 1571759077.4866552, 1571759077.5878797, 1571759077.689104, 1571759077.7903285, 1571759077.8915527, 1571759077.992777, 1571759078.0940015, 1571759078.1952257, 1571759078.2964501, 1571759078.3976746, 1571759078.498899, 1571759078.6001234, 1571759078.7013476, 1571759078.802572, 1571759078.9037964, 1571759079.0050206, 1571759079.106245, 1571759079.2074695, 1571759079.308694, 1571759079.4099183, 1571759079.5111425, 1571759079.612367, 1571759079.7135913, 1571759079.8148155, 1571759079.91604, 1571759080.0172644, 1571759080.1184888, 1571759080.2197132, 1571759080.3209374, 1571759080.4221618, 1571759080.5233862, 1571759080.6246104, 1571759080.7258348, 1571759080.8270593, 1571759080.9282837, 1571759081.029508, 1571759081.1307323, 1571759081.2319567, 1571759081.3331811, 1571759081.4344053, 1571759081.5356297, 1571759081.6368542, 1571759081.7380786, 1571759081.839303, 1571759081.9405272, 1571759082.0417516, 1571759082.142976, 1571759082.2442002, 1571759082.3454247, 1571759082.446649, 1571759082.5478735, 1571759082.649098, 1571759082.750322, 1571759082.8515465, 1571759082.952771, 1571759083.0539951, 1571759083.1552196, 1571759083.256444, 1571759083.3576684, 1571759083.4588928, 1571759083.560117, 1571759083.6613414, 1571759083.7625659, 1571759083.86379, 1571759083.9650145, 1571759084.0662389, 1571759084.1674633, 1571759084.2686877, 1571759084.369912, 1571759084.4711363, 1571759084.5723608, 1571759084.673585, 1571759084.7748094, 1571759084.8760338, 1571759084.9772582, 1571759085.0784826, 1571759085.1797068, 1571759085.2809312, 1571759085.3821557, 1571759085.4833798, 1571759085.5846043, 1571759085.6858287, 1571759085.787053, 1571759085.8882775, 1571759085.9895017, 1571759086.0907261, 1571759086.1919506, 1571759086.2931747, 1571759086.3943992, 1571759086.4956236, 1571759086.596848, 1571759086.6980724, 1571759086.7992966, 1571759086.900521, 1571759087.0017455, 1571759087.1029696, 1571759087.204194, 1571759087.3054185, 1571759087.406643, 1571759087.5078673, 1571759087.6090915, 1571759087.710316, 1571759087.8115404, 1571759087.9127645, 1571759088.013989, 1571759088.1152134, 1571759088.2164378, 1571759088.3176622, 1571759088.4188864, 1571759088.5201108, 1571759088.6213353, 1571759088.7225595, 1571759088.8237839, 1571759088.9250083, 1571759089.0262327, 1571759089.1274571, 1571759089.2286813, 1571759089.3299057, 1571759089.4311302, 1571759089.5323544, 1571759089.6335788, 1571759089.7348032, 1571759089.8360276, 1571759089.937252, 1571759090.0384762, 1571759090.1397007, 1571759090.240925, 1571759090.3421493, 1571759090.4433737, 1571759090.544598, 1571759090.6458225, 1571759090.747047, 1571759090.8482711, 1571759090.9494956, 1571759091.05072, 1571759091.1519442, 1571759091.2531686, 1571759091.354393], "samples": [[0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0], [0.0]], "channel_names": ["ch1"]}}, "annotations": {}, "meta_data": {"device": [{"os_type": "iOS", "os_version": "13.1.3", "hardware_model_name": "iPhone1", "hardware_model_id": "iPhone12,1", "processor_name": "ARM64", "processor_speed": "Unknown", "number_of_processors": 6, "memory_size": "0MB", "bluetooth_version": "", "time_zone": "EDT", "time_zone_offset_seconds": -14400, "timestamp": 1571759075.468081}], "config": [{"mac_addr": "0055DAB0AF00", "serial_number": "2031-LWHN-AF00", "preset": "21", "model": "MU_02", "headband_name": "Muse-AF00", "microcontroller_id": "0f473734 33313038 0030003e", "filters_enabled": false, "notch_frequency_hz": 0, "eeg_sample_frequency_hz": 4294967295, "eeg_output_frequency_hz": 256, "eeg_samples_bitwidth": 16, "eeg_channel_count": 4, "eeg_channel_layout": "TP9 FP1 FP2 TP10", "eeg_downsample": 4294967295, "afe_gain": 2000.0, "drlref_data_enabled": true, "drlref_sample_frequency_hz": 16, "acc_data_enabled": true, "acc_sample_frequency_hz": 52, "battery_data_enabled": true, "battery_percent_remaining": 7200, "timestamp": 1571759075.468237}], "recorder_info": [{"libmuse_version": "6.42.0 API Version 9", "recorder_key": "InteraXon", "recorder_name": "com.interaxon.musedirect", "recorder_version": "4", "timestamp": 1571759075.466543}]}} \ No newline at end of file diff --git a/firebase.config.js b/firebase.config.js index 07388d5..f299be9 100644 --- a/firebase.config.js +++ b/firebase.config.js @@ -1,18 +1,23 @@ // Import the functions you need from the SDKs you need + import { initializeApp } from "firebase/app"; +import { getStorage } from "firebase/storage"; + // TODO: Add SDKs for Firebase products that you want to use // https://firebase.google.com/docs/web/setup#available-libraries // Your web app's Firebase configuration -const firebaseConfig = { - apiKey: process.env.FIREBASE_API_KEY,//"AIzaSyB7uwBn6NNsZlW0SsuOXsduuWb0doVH1gE", +export const firebaseConfig = { + apiKey: process.env.FIREBASE_API_KEY,//"AIzaSyB7uwBn6NNsZlW0SsuOXsduuWb0doVH1gE", authDomain: "entheogen-a76f2.firebaseapp.com", databaseURL: "https://entheogen-a76f2.firebaseio.com", projectId: "entheogen-a76f2", storageBucket: "entheogen-a76f2.appspot.com", messagingSenderId: "356566894136", - appId: "1:356566894136:web:7883d85313c1a75efb88cd" + appId: "1:356566894136:web:7883d85313c1a75efb88cd", }; // Initialize Firebase -const app = initializeApp(firebaseConfig); \ No newline at end of file +const app = initializeApp(firebaseConfig); + +export const storage = getStorage(); \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index b01c138..2656670 100644 --- a/package-lock.json +++ b/package-lock.json @@ -12,8 +12,11 @@ "@clerk/nextjs": "^5.0.8", "@emotion/react": "^11.11.4", "@emotion/styled": "^11.11.5", + "@p5-wrapper/next": "^1.0.3", + "@p5-wrapper/react": "^4.4.0", "@prisma/client": "^5.13.0", "firebase": "^10.12.1", + "formidable": "^3.5.1", "framer-motion": "^11.2.4", "langchain": "^0.1.37", "next": "14.2.3", @@ -23,6 +26,7 @@ "recharts": "^2.12.7", "semantic-ui-css": "^2.5.0", "semantic-ui-react": "^2.1.5", + "uuid": "^9.0.1", "zod": "^3.23.8" }, "devDependencies": { @@ -3378,6 +3382,30 @@ "node": ">= 8" } }, + "node_modules/@p5-wrapper/next": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@p5-wrapper/next/-/next-1.0.3.tgz", + "integrity": "sha512-7Ty2LDEye53xMFSi1hhf67KgnUt7g+KCR+cP6Vi0lJumvyN5buVwhDkuNk8NX03THkwghKN4LaV0NeHgh8qQjQ==", + "peerDependencies": { + "@p5-wrapper/react": ">= 4.2.0", + "next": ">= 12.3.4", + "react": ">= 18.2.0", + "react-dom": ">= 18.2.0" + } + }, + "node_modules/@p5-wrapper/react": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@p5-wrapper/react/-/react-4.4.0.tgz", + "integrity": "sha512-4s6KEVb0of3s959tmmQ0Xc77v8Y1ZDw6sbjKR+E8Qdn5oLMfat7Wah5Az9Cs2AzljK3HQcz7WFhel5qBTKJyuQ==", + "dependencies": { + "microdiff": "^1.4.0", + "p5": ">=1.4.1 <2.0.0" + }, + "peerDependencies": { + "react": ">= 18.2.0", + "react-dom": ">= 18.2.0" + } + }, "node_modules/@pkgjs/parseargs": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", @@ -4837,6 +4865,11 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + }, "node_modules/assertion-error": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", @@ -5704,6 +5737,15 @@ "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz", "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==" }, + "node_modules/dezalgo": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.4.tgz", + "integrity": "sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==", + "dependencies": { + "asap": "^2.0.0", + "wrappy": "1" + } + }, "node_modules/didyoumean": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", @@ -6796,6 +6838,19 @@ "node": ">= 14" } }, + "node_modules/formidable": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/formidable/-/formidable-3.5.1.tgz", + "integrity": "sha512-WJWKelbRHN41m5dumb0/k8TeAx7Id/y3a+Z7QfhxP/htI9Js5zYaEDtG8uMgG0vM0lOlqnmjE99/kfpOYi/0Og==", + "dependencies": { + "dezalgo": "^1.0.4", + "hexoid": "^1.0.0", + "once": "^1.4.0" + }, + "funding": { + "url": "https://ko-fi.com/tunnckoCore/commissions" + } + }, "node_modules/framer-motion": { "version": "11.2.4", "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-11.2.4.tgz", @@ -7190,6 +7245,14 @@ "node": ">= 0.4" } }, + "node_modules/hexoid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hexoid/-/hexoid-1.0.0.tgz", + "integrity": "sha512-QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g==", + "engines": { + "node": ">=8" + } + }, "node_modules/hoist-non-react-statics": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", @@ -8470,6 +8533,11 @@ "node": ">= 8" } }, + "node_modules/microdiff": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/microdiff/-/microdiff-1.4.0.tgz", + "integrity": "sha512-OBKBOa1VBznvLPb/3ljeJaENVe0fO0lnWl77lR4vhPlQD71UpjEoRV5P0KdQkcjbFlBu1Oy2mEUBMU3wxcBAGg==" + }, "node_modules/micromatch": { "version": "4.0.5", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", @@ -8964,7 +9032,6 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, "dependencies": { "wrappy": "1" } @@ -9108,6 +9175,11 @@ "node": ">=8" } }, + "node_modules/p5": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/p5/-/p5-1.9.4.tgz", + "integrity": "sha512-dhiZ9mvXx5pm8eRwml34xbeUwce4uS9Q2za0YOHg2p97N9iNAb5hTIHAt77CHKHXAh6A16u/oalz5egRfTyFWw==" + }, "node_modules/parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", @@ -11528,8 +11600,7 @@ "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" }, "node_modules/ws": { "version": "8.17.0", diff --git a/package.json b/package.json index 116c85b..5ff5e0b 100644 --- a/package.json +++ b/package.json @@ -14,8 +14,11 @@ "@clerk/nextjs": "^5.0.8", "@emotion/react": "^11.11.4", "@emotion/styled": "^11.11.5", + "@p5-wrapper/next": "^1.0.3", + "@p5-wrapper/react": "^4.4.0", "@prisma/client": "^5.13.0", "firebase": "^10.12.1", + "formidable": "^3.5.1", "framer-motion": "^11.2.4", "langchain": "^0.1.37", "next": "14.2.3", @@ -25,6 +28,7 @@ "recharts": "^2.12.7", "semantic-ui-css": "^2.5.0", "semantic-ui-react": "^2.1.5", + "uuid": "^9.0.1", "zod": "^3.23.8" }, "devDependencies": { diff --git a/utils/eeg.ts b/utils/eeg.ts new file mode 100644 index 0000000..7b1500c --- /dev/null +++ b/utils/eeg.ts @@ -0,0 +1,242 @@ +import { Download, } from "@/utils/firebase"; +import { NextResponse, NextRequest } from "next/server"; + +// def calculate_running_averages(array) +// arr = array.map.with_index do |val, id| +// if id > 0 +// pre_avg = array[id-1] +// pre_sum = pre_avg * id +// len = id+1 +// (val+pre_sum)/len +// else +// val +// end +// end +// end + +// #function to scale events between two numbers +// #reference - https://cycling74.com/forums/what's-the-math-behind-the-scale-object + +// def scale(x, xmin, xmax, ymin, ymax) +// xrange = xmax - xmin +// yrange = ymax - ymin +// ymin + (x - xmin) * (yrange.to_f / xrange) +// end + +// #get trough and peak for each average value +// # p stats +// def get_relative_min_max(array) +// min = 1.00000000000000000 +// max = 0.00000000000000000 +// arr = [] +// test = array.map.with_index do |val, id| +// # relative_minimum = min +// # relative_maximum = max + +// if val < min +// min = val +// elsif val > max +// max = val +// elsif val == min && val == max +// min = val - 0.00000000000000001 +// max = val +// end + +// r = scale(val, min, max, -160, -20) +// d = scale(val, min, max, 300, 500) +// n = scale(val, min, max, 20, 100) + + +// { +// average: val, +// rel_min: min, +// rel_max: max, +// scaled_dist: d, +// scaled_rad: r, +// scaled_noise: n +// # scaled_dist: scale(val, min, max, 20, 600), +// # scaled_rad: scale(val, min, max, -160, 100) +// } +// end +// end + +// def eeg +// # byebug +// response = RestClient.get self.data_file_url +// orig_data = response.body +// # byebug +// new_data = orig_data.gsub!("NaN", "0.0") +// data = JSON.parse(new_data) +// gamma_relative_data = data["timeseries"]["gamma_relative"]["samples"] +// alpha_relative_data = data["timeseries"]["alpha_relative"]["samples"] +// beta_relative_data = data["timeseries"]["beta_relative"]["samples"] +// delta_relative_data = data["timeseries"]["delta_relative"]["samples"] +// theta_relative_data = data["timeseries"]["theta_relative"]["samples"] + +// gamma_relative_averages = gamma_relative_data.map{|arr| arr.sum/arr.length } +// alpha_relative_averages = alpha_relative_data.map{|arr| arr.sum/arr.length } +// beta_relative_averages = beta_relative_data.map{|arr| arr.sum/arr.length } +// delta_relative_averages = delta_relative_data.map{|arr| arr.sum/arr.length } +// theta_relative_averages = theta_relative_data.map{|arr| arr.sum/arr.length } + +// gamma_running_averages = calculate_running_averages(gamma_relative_averages) +// alpha_running_averages = calculate_running_averages(alpha_relative_averages) +// beta_running_averages = calculate_running_averages(beta_relative_averages) +// delta_running_averages = calculate_running_averages(delta_relative_averages) +// theta_running_averages = calculate_running_averages(theta_relative_averages) + +// gamma = get_relative_min_max(gamma_running_averages) +// alpha = get_relative_min_max(alpha_running_averages) +// beta = get_relative_min_max(beta_running_averages) +// delta = get_relative_min_max(delta_running_averages) +// theta = get_relative_min_max(theta_running_averages) + +// json_data = { +// alpha: alpha, +// beta: beta, +// delta: delta, +// theta: theta, +// gamma: gamma +// } +// end + +// import { Download } from "@/utils/firebase"; + +function calculateRunningAverages(array: number[]): number[] { + return array.map((val, id) => { + if (id > 0) { + const preAvg = array[id - 1]; + const preSum = preAvg * id; + const len = id + 1; + return (val + preSum) / len; + } else { + return val; + } + }); +} + +function scale(x: number, xmin: number, xmax: number, ymin: number, ymax: number): number { + const xrange = xmax - xmin; + const yrange = ymax - ymin; + return ymin + (x - xmin) * (yrange / xrange); +} + +interface RelativeMinMax { + average: number; + rel_min: number; + rel_max: number; + scaled_dist: number; + scaled_rad: number; + scaled_noise: number; +} + +function getRelativeMinMax(array: number[]): RelativeMinMax[] { + let min = 1.00000000000000000; + let max = 0.00000000000000000; + + return array.map((val) => { + if (val < min) { + min = val; + } else if (val > max) { + max = val; + } else if (val === min && val === max) { + min = val - 0.00000000000000001; + max = val; + } + + const r = scale(val, min, max, -160, -20); + const d = scale(val, min, max, 300, 500); + const n = scale(val, min, max, 20, 100); + + return { + average: val, + rel_min: min, + rel_max: max, + scaled_dist: d, + scaled_rad: r, + scaled_noise: n + }; + }); +} + +export function eeg(origData): Promise { + console.log("origData in eeg is: ", origData) + + // const response = await createReadStream(dataFileUrl.url) //fetch(dataFileUrl.url); + // console.log("response in eeg is: ", response) + // const origData = await response.json(); + const newData = origData.replace(/NaN/g, "0.0"); + const data = JSON.parse(newData); + + const gammaRelativeData = data["timeseries"]["gamma_relative"]["samples"]; + const alphaRelativeData = data["timeseries"]["alpha_relative"]["samples"]; + const betaRelativeData = data["timeseries"]["beta_relative"]["samples"]; + const deltaRelativeData = data["timeseries"]["delta_relative"]["samples"]; + const thetaRelativeData = data["timeseries"]["theta_relative"]["samples"]; + + const gammaRelativeAverages = gammaRelativeData.map((arr: number[]) => arr.reduce((a, b) => a + b, 0) / arr.length); + const alphaRelativeAverages = alphaRelativeData.map((arr: number[]) => arr.reduce((a, b) => a + b, 0) / arr.length); + const betaRelativeAverages = betaRelativeData.map((arr: number[]) => arr.reduce((a, b) => a + b, 0) / arr.length); + const deltaRelativeAverages = deltaRelativeData.map((arr: number[]) => arr.reduce((a, b) => a + b, 0) / arr.length); + const thetaRelativeAverages = thetaRelativeData.map((arr: number[]) => arr.reduce((a, b) => a + b, 0) / arr.length); + + const gammaRunningAverages = calculateRunningAverages(gammaRelativeAverages); + const alphaRunningAverages = calculateRunningAverages(alphaRelativeAverages); + const betaRunningAverages = calculateRunningAverages(betaRelativeAverages); + const deltaRunningAverages = calculateRunningAverages(deltaRelativeAverages); + const thetaRunningAverages = calculateRunningAverages(thetaRelativeAverages); + + const gamma = getRelativeMinMax(gammaRunningAverages); + const alpha = getRelativeMinMax(alphaRunningAverages); + const beta = getRelativeMinMax(betaRunningAverages); + const delta = getRelativeMinMax(deltaRunningAverages); + const theta = getRelativeMinMax(thetaRunningAverages); + + return { + alpha: alpha, + beta: beta, + delta: delta, + theta: theta, + gamma: gamma + }; +} + +// export async function eeg(uuid: string): Promise { +// const response = await Download(uuid); +// console.log("response in eeg is: ", response) +// const origData = await response.json(); +// const newData = origData.replace(/NaN/g, "0.0"); +// const data = JSON.parse(newData); + +// const gammaRelativeData = data["timeseries"]["gamma_relative"]["samples"]; +// const alphaRelativeData = data["timeseries"]["alpha_relative"]["samples"]; +// const betaRelativeData = data["timeseries"]["beta_relative"]["samples"]; +// const deltaRelativeData = data["timeseries"]["delta_relative"]["samples"]; +// const thetaRelativeData = data["timeseries"]["theta_relative"]["samples"]; + +// const gammaRelativeAverages = gammaRelativeData.map((arr: number[]) => arr.reduce((a, b) => a + b, 0) / arr.length); +// const alphaRelativeAverages = alphaRelativeData.map((arr: number[]) => arr.reduce((a, b) => a + b, 0) / arr.length); +// const betaRelativeAverages = betaRelativeData.map((arr: number[]) => arr.reduce((a, b) => a + b, 0) / arr.length); +// const deltaRelativeAverages = deltaRelativeData.map((arr: number[]) => arr.reduce((a, b) => a + b, 0) / arr.length); +// const thetaRelativeAverages = thetaRelativeData.map((arr: number[]) => arr.reduce((a, b) => a + b, 0) / arr.length); + +// const gammaRunningAverages = calculateRunningAverages(gammaRelativeAverages); +// const alphaRunningAverages = calculateRunningAverages(alphaRelativeAverages); +// const betaRunningAverages = calculateRunningAverages(betaRelativeAverages); +// const deltaRunningAverages = calculateRunningAverages(deltaRelativeAverages); +// const thetaRunningAverages = calculateRunningAverages(thetaRelativeAverages); + +// const gamma = getRelativeMinMax(gammaRunningAverages); +// const alpha = getRelativeMinMax(alphaRunningAverages); +// const beta = getRelativeMinMax(betaRunningAverages); +// const delta = getRelativeMinMax(deltaRunningAverages); +// const theta = getRelativeMinMax(thetaRunningAverages); + +// return { +// alpha: alpha, +// beta: beta, +// delta: delta, +// theta: theta, +// gamma: gamma +// }; +// } diff --git a/utils/firebase.ts b/utils/firebase.ts new file mode 100644 index 0000000..30379d7 --- /dev/null +++ b/utils/firebase.ts @@ -0,0 +1,166 @@ +// https://firebase.google.com/docs/storage/web/upload-files + +import { initializeApp } from "firebase/app"; +import { firebaseConfig } from "@/firebase.config"; + +import { getStorage, ref, uploadBytesResumable, getDownloadURL } from "firebase/storage"; +// Initialize Firebase +const app = initializeApp(firebaseConfig); +// // Get a reference to the storage service, which is used to create references in your storage bucket +// const storage = getStorage(); + +// // Create a storage reference from our storage service +// const storageRef = ref(storage); + +// // Create a child reference +// const imagesRef = ref(storage, 'images'); +// // imagesRef now points to 'images' + +// // Create a child reference +// const eegRef = ref(storage, 'eeg'); +// // eegRef now points to 'eeg' + +// // Create a child reference +// const museRef = ref(storage, 'muse'); +// // museRef now points to 'muse + +// // Child references can also take paths delimited by '/' +// const spaceRef = ref(storage, 'images/space.jpg'); +// // spaceRef now points to "images/space.jpg" +// // imagesRef still points to "images" + +// // Points to 'images/space.jpg' +// // Note that you can use variables to create child values +// const fileName = 'space.jpg'; +// const spaceRef2 = ref(imagesRef, fileName); + +// // File path is 'images/space.jpg' +// const path = spaceRef2.fullPath; + +// // File name is 'space.jpg' +// const name = spaceRef2.name; + +// // Points to 'images' +// const imagesRefAgain = spaceRef2.parent; + + +// file upload + +export const Upload = (file) => { + // https://firebase.google.com/docs/storage/web/upload-files + const storage = getStorage(); + + // Create the file metadata + /** @type {any} */ + const metadata = { + contentType: 'image/jpeg' + // contentType: 'text/json' + }; + + // Upload file and metadata to the object 'images/mountains.jpg' + const storageRef = ref(storage, 'images/' + file.name); + const uploadTask = uploadBytesResumable(storageRef, file, metadata); + + // Listen for state changes, errors, and completion of the upload. + uploadTask.on('state_changed', + (snapshot) => { + // Get task progress, including the number of bytes uploaded and the total number of bytes to be uploaded + const progress = (snapshot.bytesTransferred / snapshot.totalBytes) * 100; + console.log('Upload is ' + progress + '% done'); + switch (snapshot.state) { + case 'paused': + console.log('Upload is paused'); + break; + case 'running': + console.log('Upload is running'); + break; + } + }, + (error) => { + // A full list of error codes is available at + // https://firebase.google.com/docs/storage/web/handle-errors + switch (error.code) { + case 'storage/unauthorized': + // User doesn't have permission to access the object + console.log("Error: storage/unauthorized: User doesn't have permission to access the object") + break; + case 'storage/canceled': + // User canceled the upload + console.log("Error: storage/canceled: User canceled the upload") + break; + + // ... + + case 'storage/unknown': + // Unknown error occurred, inspect error.serverResponse + console.log("Error: storage/unknown: Unknown error occurred, inspect error.serverResponse") + break; + } + }, + () => { + // Upload completed successfully, now we can get the download URL + getDownloadURL(uploadTask.snapshot.ref).then((downloadURL) => { + console.log('File available at', downloadURL); + }); + } + ); +} + +export const Download = async (uuid) => { + const storage = getStorage(); + + // const starsRef = ref(storage, 'images/stars.jpg'); + //020164cc-7d0b-4b61-8c37-4b38be8e52a5.json - eeg/ + // 020164cc-7d0b-4b61-8c37-4b38be8e52a5 - muse/ + + const eegRef = ref(storage, `/muse/${uuid}.json`); + console.log("eeg ref is: ", eegRef) + let dataURL = "" + // Get the download URL + getDownloadURL(eegRef) + .then((url) => { + // Insert url into an tag to "download" + let res = "" + var xhr = new XMLHttpRequest(); + xhr.responseType = 'json'; + xhr.onload = function(event) { + var json= xhr.response; + console.log(json); // now you read the file content + res = json + }; + xhr.open('GET', url); + xhr.send(); + console.log("xhr: ", xhr) + return res + // console.log("url in eegRef is: ", url) + // dataURL = url + // return url //`${url}alt=media&token=09a53f76-5b1f-450c-bf3c-dae19fe321d7` + }) + .catch((error) => { + // A full list of error codes is available at + // https://firebase.google.com/docs/storage/web/handle-errors + console.log("error in eegRef: ", error) + switch (error.code) { + case 'storage/object-not-found': + // File doesn't exist + return "File doesn't exist" + break; + case 'storage/unauthorized': + // User doesn't have permission to access the object + return " User doesn't have permission to access the object" + break; + case 'storage/canceled': + // User canceled the upload + return " User canceled the upload" + break; + + // ... + + case 'storage/unknown': + // Unknown error occurred, inspect the server response + return "Unknown error occurred, inspect the server response" + break; + } + }); + return dataURL +} \ No newline at end of file diff --git a/utils/sketch.ts b/utils/sketch.ts new file mode 100644 index 0000000..f64c318 --- /dev/null +++ b/utils/sketch.ts @@ -0,0 +1,272 @@ +import { type Sketch } from "@p5-wrapper/react"; +import { + P5CanvasInstance, + ReactP5Wrapper, + SketchProps +} from "@p5-wrapper/react"; +import React, { useEffect, useState } from "react"; + +type MySketchProps = SketchProps & { + rotation: number; +}; + +export const sketch3: Sketch = (p5: P5CanvasInstance) => { + let rotation = 0; + + p5.setup = () => p5.createCanvas(600, 400, p5.WEBGL); + + p5.updateWithProps = props => { + if (props.rotation) { + rotation = (props.rotation * Math.PI) / 180; + } + }; + + p5.draw = () => { + p5.background(100); + p5.normalMaterial(); + p5.noStroke(); + p5.push(); + p5.rotateY(rotation); + p5.box(100); + p5.pop(); + }; +}; + + +type MySketch1Props = SketchProps & { + data: object; + render: object; +}; + + +export const sketch1: Sketch = (p5: P5CanvasInstance) => { + // let data = getData() + // console.log("data in sketch", data) + console.log("props in sketch", p5) + p5.props = {} + + p5.onSetAppState = () => { } + + let data = {} + + let i = 0; + + let n = 0; + let n2 = 0; + let n3 = 0; + let n4 = 0; + let n5 = 0; + + let x =0; + let y =0; + let x2 = 0; + let y2 = 0; + let rad = 0; + let rad2 =0; + + let dist =0; + let dist2 = 0; + let x3 = 0; + let y3 =0; + + let x4 =0; + let y4 =0; + let rad3 =0; + let rad4 =0; + let dist3 = 0; + let dist4= 0; + + let x5 =0; + let y5 =0; + let rad5 =0; + let dist5 =0; + + let yIn =0; + let rotateBy =0; + let ang =0; + let incr = 1; + let deg = 0; + + let width = 400 //localStorage.canvasWidth + let height = 400//localStorage.canvasWidth + let framec; + + let render = true + let gammaL = 100 + let betaL = 100 + let alphaL = 100 + let thetaL = 100 + let deltaL = 100 + + // let renderAlpha = false + // let renderBeta = false + // let renderGamma = false + // let renderDelta = false + // let renderTheta = false + + p5.setup = () => { + // console.log("props in sketch setup", p5.props.data) + // p5.createCanvas(width, height) + // console.log("width: ", width) + // console.log("localstorage width: ",localStorage.canvasWidth) + p5.createCanvas(width, height) //p5.WEBGL) + + p5.colorMode("hsb", 360, 100, 100,1) + p5.background(255, 0, 0) + + i = 0; + + rad = -20; + rad2 = -20; + rad3 = -20; + rad4 = -20; + rad5 = -20; + + dist = 300; + dist2 = 350; + dist3 = 400; + dist4 = 450; + dist5 = 500; + + n = 20; + n2 = 100; + n3 = 20; + n4 = 100; + n5 = 20; + framec = 0 + } + + p5.updateWithProps = function (props) { + console.log("props are: ", props) + if (props.data) { + console.log("data is:", props.data.data) + data = props.data.data + render = true + } + // if(props.render){ + // console.log("props.render:", props.render) + // props.render.renderGamma ? gammaL = 100 : gammaL = 0 + // props.render.renderBeta ? betaL = 100 : betaL = 0 + // props.render.renderAlpha ? alphaL = 100 : alphaL = 0 + // props.render.renderTheta ? thetaL = 100 : thetaL = 0 + // props.render.renderDelta ? deltaL = 100 : deltaL = 0 + // } + }; + + + // p5.updateWithProps = props => { + // if (props.data) { + // // console.log("data is:", props.data.data) + // // rotation = (props.rotation * Math.PI) / 180; + // } + // }; + + p5.draw = () => { + + if (p5.frameCount % 60 === 1) { + p5.onSetAppState({ frameRate: p5.frameRate().toFixed(1) }) + } + + p5.noStroke() + + // console.log(!!data) + // console.log('data is: ', data) + // if (render) { + framec = p5.frameCount / 60 + console.log("framec is: ", framec) + i = parseInt(framec % data.delta.length) * 10; + console.log("i is: ", i) + + console.log("data.delta[i] is: ", data.delta[i]) + + rad = data.delta[i].scaled_rad; + rad2 = data.theta[i].scaled_rad; + rad3 = data.alpha[i].scaled_rad; + rad4 = data.beta[i].scaled_rad; + rad5 = data.gamma[i].scaled_rad; + + dist = data.delta[i].scaled_dist; + dist2 = data.theta[i].scaled_dist; + dist3 = data.alpha[i].scaled_dist; + dist4 = data.beta[i].scaled_dist; + dist5 = data.gamma[i].scaled_dist; + + n = 20//data.delta[i].scaled_noise; + n2 = 20//data.theta[i].scaled_noise; + n3 = 20//data.alpha[i].scaled_noise; + n4 = 20//data.beta[i].scaled_noise; + n5 = 20//data.gamma[i].scaled_noise; + // } + + console.log("rad is: ", rad) + + console.log("dist is: ", dist) + + console.log("n is: ", n) + + p5.fill(0,0,0, 0.1) + p5.rect(0, 0, width, height); + rotateBy += .003; + p5.push(); + + p5.translate(width / 2, height / 2); + p5.rotate(rotateBy); + + while (deg <= 360) { + deg += incr; + // console.log("deg is: ", deg) + ang = p5.radians(deg); + // console.log("ang is: ", ang) + + if(deltaL === 100){ + p5.fill(280, 100, 100); + x = p5.cos(ang) * (rad + (dist * p5.noise(y / n, yIn))); + y = p5.sin(ang) * (rad + (dist * p5.noise(x / n, yIn))); + p5.ellipse(x, y, 1.5, 1.5); + } + if (thetaL === 100) { + p5.fill(240, 100, thetaL); + x2 = p5.cos(ang) * (rad2 + (dist2 * p5.noise(y2 / n2, yIn))); + y2 = p5.sin(ang) * (rad2 + (dist2 * p5.noise(y2 / n2, yIn))); + p5.ellipse(x2, y2, 1.5, 1.5); + } + if (alphaL === 100) { + p5.fill(100, 100, alphaL); + x3 = p5.cos(ang) * (rad3 + (dist3 * p5.noise(y3 / n3, yIn))); + y3 = p5.sin(ang) * (rad3 + (dist3 * p5.noise(x3 / n3, yIn))); + p5.ellipse(x3, y3, 1.5, 1.5); + } + if (betaL === 100) { + p5.fill(50, 100, betaL); + x4 = p5.cos(ang) * (rad4 + (dist4 * p5.noise(y4 / n4, yIn))); + y4 = p5.sin(ang) * (rad4 + (dist4 * p5.noise(y4 / n4, yIn))); + p5.ellipse(x4, y4, 1.5, 1.5); + } + if (gammaL === 100) { + p5.fill(0, 100, gammaL); + x5 = p5.cos(ang) * (rad5 + (dist5 * p5.noise(y5 / n5, yIn))); + y5 = p5.sin(ang) * (rad5 + (dist5 * p5.noise(y5 / n5, yIn))); + p5.ellipse(x5, y5, 1.5, 1.5); + } + } + deg = 0; + yIn += .005; + p5.pop(); + } + +} + +export const sketch2: Sketch = (p5) => { + p5.setup = () => p5.createCanvas(600, 400, p5.WEBGL); + + p5.draw = () => { + p5.background(250); + p5.normalMaterial(); + p5.push(); + p5.rotateZ(p5.frameCount * 0.01); + p5.rotateX(p5.frameCount * 0.01); + p5.rotateY(p5.frameCount * 0.01); + p5.plane(100); + p5.pop(); + }; +}; From 896cc7bc4dbd18f3eae0a056921ba49450956d30 Mon Sep 17 00:00:00 2001 From: Alessandra Vertrees Date: Mon, 10 Jun 2024 07:38:01 -0400 Subject: [PATCH 2/3] testing new features --- app/(dashboard)/feelings/markdown/page.tsx | 25 + app/(dashboard)/feelings/page.tsx | 24 + app/(dashboard)/layout.tsx | 1 + app/(dashboard)/visualizer/page.tsx | 2 +- components/FeelingsWheel.tsx | 225 +- components/ForwardRefEditor.tsx | 18 + components/InitializedMDXEditor.tsx | 34 + components/MDXEditor.tsx | 33 + components/SequencesSunburst.ts | 4 + components/Visualizer.tsx | 2 +- data/data.json | 1040 ++ data/sequences-sunburst.json | 13634 +++++++++++++++++++ globals.d.ts | 5 + package-lock.json | 12127 ++++++++++++----- package.json | 3 + styles/PieChart.css | 11 + styles/rotation.scss | 8 + tsconfig.json | 2 + 18 files changed, 23462 insertions(+), 3736 deletions(-) create mode 100644 app/(dashboard)/feelings/markdown/page.tsx create mode 100644 app/(dashboard)/feelings/page.tsx create mode 100644 components/ForwardRefEditor.tsx create mode 100644 components/InitializedMDXEditor.tsx create mode 100644 components/MDXEditor.tsx create mode 100644 components/SequencesSunburst.ts create mode 100644 data/data.json create mode 100644 data/sequences-sunburst.json create mode 100644 globals.d.ts create mode 100644 styles/PieChart.css create mode 100644 styles/rotation.scss diff --git a/app/(dashboard)/feelings/markdown/page.tsx b/app/(dashboard)/feelings/markdown/page.tsx new file mode 100644 index 0000000..8e7bb3c --- /dev/null +++ b/app/(dashboard)/feelings/markdown/page.tsx @@ -0,0 +1,25 @@ +//https://contentlayer.dev/ +// "use client" +// import { MDXEditor, MDXEditorMethods } from "@mdxeditor/editor" +// import { useRef } from "react" + +// create a ref to the editor component +// const MarkdownPage = () => { +// const ref = useRef(null) +// return ( +// <> +// +// +// +// +// ) +// } + +// export default MarkdownPage; + + +// import { MDXEditor, headingsPlugin, listsPlugin, quotePlugin, thematicBreakPlugin } from '@mdxeditor/editor' + +// function App() { +// return +// } \ No newline at end of file diff --git a/app/(dashboard)/feelings/page.tsx b/app/(dashboard)/feelings/page.tsx new file mode 100644 index 0000000..96aa546 --- /dev/null +++ b/app/(dashboard)/feelings/page.tsx @@ -0,0 +1,24 @@ +import Image from 'next/image' +import dynamic from 'next/dynamic' +import { Suspense } from 'react' + +const EditorComp = dynamic(() => import('@/components/MDXEditor'), { ssr: false }) + +const markdown = ` +Hello **world**! +` + +export default function Home() { + return ( + <> +

This is a bare-bones unstyled MDX editor without any plugins and no toolbar. Check the EditorComponent.tsx file for the code.

+

To enable more features, add the respective plugins to your instance - see the docs for more details.

+
+
+ + + +
+ + ) +} \ No newline at end of file diff --git a/app/(dashboard)/layout.tsx b/app/(dashboard)/layout.tsx index db35fa1..daa42d6 100644 --- a/app/(dashboard)/layout.tsx +++ b/app/(dashboard)/layout.tsx @@ -8,6 +8,7 @@ const DashboardLayout = ({children}) => { {label: 'journal', href: '/journal'}, {label: 'history', href: '/history'}, {label: 'visualizer', href: '/visualizer'}, + {label: 'feelings', href: '/feelings'}, ] return (
diff --git a/app/(dashboard)/visualizer/page.tsx b/app/(dashboard)/visualizer/page.tsx index 96fb79b..56ef795 100644 --- a/app/(dashboard)/visualizer/page.tsx +++ b/app/(dashboard)/visualizer/page.tsx @@ -23,7 +23,7 @@ const VisualizerPage = async () => {

Journal

Visualization - + {/* */}
diff --git a/components/FeelingsWheel.tsx b/components/FeelingsWheel.tsx index b83ae53..59a150f 100644 --- a/components/FeelingsWheel.tsx +++ b/components/FeelingsWheel.tsx @@ -1,52 +1,191 @@ -import React, { useState } from 'react'; -import '@/styles/FeelingsWheel.css'; - -const feelingsData = [ - { name: 'Joy', color: 'yellow', angle: 0 }, - { name: 'Trust', color: 'green', angle: 45 }, - { name: 'Fear', color: 'blue', angle: 90 }, - { name: 'Surprise', color: 'lightblue', angle: 135 }, - { name: 'Sadness', color: 'purple', angle: 180 }, - { name: 'Disgust', color: 'green', angle: 225 }, - { name: 'Anger', color: 'red', angle: 270 }, - { name: 'Anticipation', color: 'orange', angle: 315 }, -]; - -const Feeling = ({ feeling, onClick }) => ( -
onClick(feeling.name)} - > -
- {feeling.name} -
-
-); +// import React, { useState } from 'react'; +// import '@/styles/FeelingsWheel.css'; + +// const feelingsData = [ +// { name: 'Joy', color: 'yellow', angle: 0 }, +// { name: 'Trust', color: 'green', angle: 45 }, +// { name: 'Fear', color: 'blue', angle: 90 }, +// { name: 'Surprise', color: 'lightblue', angle: 135 }, +// { name: 'Sadness', color: 'purple', angle: 180 }, +// { name: 'Disgust', color: 'green', angle: 225 }, +// { name: 'Anger', color: 'red', angle: 270 }, +// { name: 'Anticipation', color: 'orange', angle: 315 }, +// ]; + +// const emotions = { +// "primary_emotions": [ +// {"name": "Joy", "color": "#FFFF00"}, +// {"name": "Trust", "color": "#00FF00"}, +// {"name": "Fear", "color": "#008000"}, +// {"name": "Surprise", "color": "#00FFFF"}, +// {"name": "Sadness", "color": "#0000FF"}, +// {"name": "Disgust", "color": "#800080"}, +// {"name": "Anger", "color": "#FF0000"}, +// {"name": "Anticipation", "color": "#FFA500"} +// ], +// "secondary_emotions": [ +// {"name": "Love", "color": "#ADFF2F"}, +// {"name": "Submission", "color": "#5F9EA0"}, +// {"name": "Awe", "color": "#4682B4"}, +// {"name": "Disapproval", "color": "#9370DB"}, +// {"name": "Remorse", "color": "#8B4513"}, +// {"name": "Contempt", "color": "#A52A2A"}, +// {"name": "Aggressiveness", "color": "#FF4500"}, +// {"name": "Optimism", "color": "#FFD700"} +// ], +// "tertiary_emotions": [ +// {"name": "Serenity", "color": "#FFFFE0"}, +// {"name": "Acceptance", "color": "#98FB98"}, +// {"name": "Apprehension", "color": "#90EE90"}, +// {"name": "Distraction", "color": "#E0FFFF"}, +// {"name": "Pensiveness", "color": "#E6E6FA"}, +// {"name": "Boredom", "color": "#D3D3D3"}, +// {"name": "Annoyance", "color": "#FFB6C1"}, +// {"name": "Interest", "color": "#FFE4B5"} +// ] +// } +// const Feeling = ({ feeling, onClick }) => ( +//
onClick(feeling.name)} +// > +//
+// {feeling.name} +//
+//
+// ); + +// const FeelingsWheel = () => { +// const [selectedFeeling, setSelectedFeeling] = useState(null); + +// const handleClick = (feeling) => { +// setSelectedFeeling(feeling); +// alert(`You clicked on ${feeling}`); +// }; + +// return ( +//
+// {feelingsData.map((feeling) => ( +// +// ))} +// {selectedFeeling && ( +//
+//

{`You selected: ${selectedFeeling}`}

+//
+// )} +//
+// ); +// }; + +// export default FeelingsWheel; + +import React, { useEffect, useRef, useState } from 'react'; +import * as d3 from 'd3'; + +const emotionsData = { + primary: [ + { name: 'Joy', color: '#FFFF00' }, + { name: 'Trust', color: '#00FF00' }, + { name: 'Fear', color: '#008000' }, + { name: 'Surprise', color: '#00FFFF' }, + { name: 'Sadness', color: '#0000FF' }, + { name: 'Disgust', color: '#800080' }, + { name: 'Anger', color: '#FF0000' }, + { name: 'Anticipation', color: '#FFA500' } + ], + secondary: [ + { name: 'Love', color: '#ADFF2F' }, + { name: 'Submission', color: '#5F9EA0' }, + { name: 'Awe', color: '#4682B4' }, + { name: 'Disapproval', color: '#9370DB' }, + { name: 'Remorse', color: '#8B4513' }, + { name: 'Contempt', color: '#A52A2A' }, + { name: 'Aggressiveness', color: '#FF4500' }, + { name: 'Optimism', color: '#FFD700' } + ], + tertiary: [ + { name: 'Serenity', color: '#FFFFE0' }, + { name: 'Acceptance', color: '#98FB98' }, + { name: 'Apprehension', color: '#90EE90' }, + { name: 'Distraction', color: '#E0FFFF' }, + { name: 'Pensiveness', color: '#E6E6FA' }, + { name: 'Boredom', color: '#D3D3D3' }, + { name: 'Annoyance', color: '#FFB6C1' }, + { name: 'Interest', color: '#FFE4B5' } + ] +}; + +const PieChart = () => { + const ref = useRef(); + const [hoveredEmotion, setHoveredEmotion] = useState(null); + + useEffect(() => { + drawChart(); + }, []); + + const drawChart = () => { + const width = 500; + const height = 500; + const margin = 50; + const radius = Math.min(width, height) / 2 - margin; + + const svg = d3.select(ref.current) + .attr('width', width) + .attr('height', height) + .append('g') + .attr('transform', `translate(${width / 2}, ${height / 2})`); + + const arc = d3.arc() + .innerRadius((d, i) => i * (radius / 3)) + .outerRadius((d, i) => (i + 1) * (radius / 3)); + + const pie = d3.pie() + .value(1) + .sort(null); + + const layers = [emotionsData.primary, emotionsData.secondary, emotionsData.tertiary]; + + layers.forEach((layer, layerIndex) => { + const arcs = svg.selectAll(`.arc-${layerIndex}`) + .data(pie(layer)) + .enter() + .append('g') + .attr('class', `arc arc-${layerIndex}`); -const FeelingsWheel = () => { - const [selectedFeeling, setSelectedFeeling] = useState(null); + arcs.append('path') + .attr('d', arc) + .attr('fill', d => d.data.color) + .attr('stroke', 'white') + .attr('stroke-width', 1) + .on('mouseover', function(event, d) { + setHoveredEmotion(d.data.name); + d3.select(this).attr('stroke', '#000').attr('stroke-width', 2); + }) + .on('mouseout', function(event, d) { + setHoveredEmotion(null); + d3.select(this).attr('stroke', 'white').attr('stroke-width', 1); + }); - const handleClick = (feeling) => { - setSelectedFeeling(feeling); - alert(`You clicked on ${feeling}`); + arcs.append('text') + .attr('transform', d => `translate(${arc.centroid(d)})`) + .attr('text-anchor', 'middle') + .attr('dy', '0.35em') + .text(d => d.data.name) + .style('font-size', '10px') + .style('fill', '#000'); + }); }; return ( -
- {feelingsData.map((feeling) => ( - - ))} - {selectedFeeling && ( -
-

{`You selected: ${selectedFeeling}`}

-
- )} +
+ + {hoveredEmotion &&
{hoveredEmotion}
}
); }; -export default FeelingsWheel; +export default PieChart; \ No newline at end of file diff --git a/components/ForwardRefEditor.tsx b/components/ForwardRefEditor.tsx new file mode 100644 index 0000000..ddb47df --- /dev/null +++ b/components/ForwardRefEditor.tsx @@ -0,0 +1,18 @@ +'use client' +import dynamic from 'next/dynamic' +import { forwardRef } from 'react' +import {type MDXEditorMethods,MDXEditorProps } from '@mdxeditor/editor' +// ForwardRefEditor.tsx + +// This is the only place InitializedMDXEditor is imported directly. +const Editor = dynamic(() => import('./InitializedMDXEditor'), { + // Make sure we turn SSR off + ssr: false +}) + +// This is what is imported by other components. Pre-initialized with plugins, and ready +// to accept other props, including a ref. +export const ForwardRefEditor = forwardRef((props, ref) => ) + +// TS complains without the following line +ForwardRefEditor.displayName = 'ForwardRefEditor' \ No newline at end of file diff --git a/components/InitializedMDXEditor.tsx b/components/InitializedMDXEditor.tsx new file mode 100644 index 0000000..b62dd52 --- /dev/null +++ b/components/InitializedMDXEditor.tsx @@ -0,0 +1,34 @@ +'use client' +// InitializedMDXEditor.tsx +import type { ForwardedRef } from 'react' +import { + headingsPlugin, + listsPlugin, + quotePlugin, + thematicBreakPlugin, + markdownShortcutPlugin, + MDXEditor, + type MDXEditorMethods, + type MDXEditorProps +} from '@mdxeditor/editor' + +// Only import this to the next file +export default function InitializedMDXEditor({ + editorRef, + ...props +}: { editorRef: ForwardedRef | null } & MDXEditorProps) { + return ( + + ) +} \ No newline at end of file diff --git a/components/MDXEditor.tsx b/components/MDXEditor.tsx new file mode 100644 index 0000000..8151bd1 --- /dev/null +++ b/components/MDXEditor.tsx @@ -0,0 +1,33 @@ +//https://uiwjs.github.io/react-md-editor/ +// https://github.com/rehypejs/rehype-sanitize + +//https://mdxeditor.dev/ +//https://github.com/mdx-editor/editor + +"use client"; + +import { MDXEditor, MDXEditorMethods, headingsPlugin } from "@mdxeditor/editor"; +import { FC } from "react"; +import '@mdxeditor/editor/style.css'; + +interface EditorProps { + markdown: string; + editorRef?: React.MutableRefObject; +} + +/** + * Extend this Component further with the necessary plugins or props you need. + * proxying the ref is necessary. Next.js dynamically imported components don't support refs. + */ +const Editor: FC = ({ markdown, editorRef }) => { + return ( + console.log(e)} + ref={editorRef} + markdown={markdown} + plugins={[headingsPlugin()]} + /> + ); +}; + +export default Editor; \ No newline at end of file diff --git a/components/SequencesSunburst.ts b/components/SequencesSunburst.ts new file mode 100644 index 0000000..b6e80ce --- /dev/null +++ b/components/SequencesSunburst.ts @@ -0,0 +1,4 @@ +//https://www.anychart.com/blog/2023/06/19/sunburst-chart-js/ +//https://www.npmjs.com/package/sunburst-chart +// https://codesandbox.io/p/sandbox/zen-wood-2wpz2?file=%2Fsrc%2FSunburstAnyChart.js + diff --git a/components/Visualizer.tsx b/components/Visualizer.tsx index 2c3578c..ac5981f 100644 --- a/components/Visualizer.tsx +++ b/components/Visualizer.tsx @@ -5,7 +5,7 @@ import P5 from "./P5Wrapper" export const Visualizer = () => { return (
- Viz + {/* Viz */} {/* diff --git a/data/data.json b/data/data.json new file mode 100644 index 0000000..c0cd785 --- /dev/null +++ b/data/data.json @@ -0,0 +1,1040 @@ +{ + "name": "flare", + "children": [ + { + "name": "analytics", + "children": [ + { + "name": "cluster", + "children": [ + { + "name": "AgglomerativeCluster", + "value": 3938 + }, + { + "name": "CommunityStructure", + "value": 3812 + }, + { + "name": "HierarchicalCluster", + "value": 6714 + }, + { + "name": "MergeEdge", + "value": 743 + } + ] + }, + { + "name": "graph", + "children": [ + { + "name": "BetweennessCentrality", + "value": 3534 + }, + { + "name": "LinkDistance", + "value": 5731 + }, + { + "name": "MaxFlowMinCut", + "value": 7840 + }, + { + "name": "ShortestPaths", + "value": 5914 + }, + { + "name": "SpanningTree", + "value": 3416 + } + ] + }, + { + "name": "optimization", + "children": [ + { + "name": "AspectRatioBanker", + "value": 7074 + } + ] + } + ] + }, + { + "name": "animate", + "children": [ + { + "name": "Easing", + "value": 17010 + }, + { + "name": "FunctionSequence", + "value": 5842 + }, + { + "name": "interpolate", + "children": [ + { + "name": "ArrayInterpolator", + "value": 1983 + }, + { + "name": "ColorInterpolator", + "value": 2047 + }, + { + "name": "DateInterpolator", + "value": 1375 + }, + { + "name": "Interpolator", + "value": 8746 + }, + { + "name": "MatrixInterpolator", + "value": 2202 + }, + { + "name": "NumberInterpolator", + "value": 1382 + }, + { + "name": "ObjectInterpolator", + "value": 1629 + }, + { + "name": "PointInterpolator", + "value": 1675 + }, + { + "name": "RectangleInterpolator", + "value": 2042 + } + ] + }, + { + "name": "ISchedulable", + "value": 1041 + }, + { + "name": "Parallel", + "value": 5176 + }, + { + "name": "Pause", + "value": 449 + }, + { + "name": "Scheduler", + "value": 5593 + }, + { + "name": "Sequence", + "value": 5534 + }, + { + "name": "Transition", + "value": 9201 + }, + { + "name": "Transitioner", + "value": 19975 + }, + { + "name": "TransitionEvent", + "value": 1116 + }, + { + "name": "Tween", + "value": 6006 + } + ] + }, + { + "name": "data", + "children": [ + { + "name": "converters", + "children": [ + { + "name": "Converters", + "value": 721 + }, + { + "name": "DelimitedTextConverter", + "value": 4294 + }, + { + "name": "GraphMLConverter", + "value": 9800 + }, + { + "name": "IDataConverter", + "value": 1314 + }, + { + "name": "JSONConverter", + "value": 2220 + } + ] + }, + { + "name": "DataField", + "value": 1759 + }, + { + "name": "DataSchema", + "value": 2165 + }, + { + "name": "DataSet", + "value": 586 + }, + { + "name": "DataSource", + "value": 3331 + }, + { + "name": "DataTable", + "value": 772 + }, + { + "name": "DataUtil", + "value": 3322 + } + ] + }, + { + "name": "display", + "children": [ + { + "name": "DirtySprite", + "value": 8833 + }, + { + "name": "LineSprite", + "value": 1732 + }, + { + "name": "RectSprite", + "value": 3623 + }, + { + "name": "TextSprite", + "value": 10066 + } + ] + }, + { + "name": "flex", + "children": [ + { + "name": "FlareVis", + "value": 4116 + } + ] + }, + { + "name": "physics", + "children": [ + { + "name": "DragForce", + "value": 1082 + }, + { + "name": "GravityForce", + "value": 1336 + }, + { + "name": "IForce", + "value": 319 + }, + { + "name": "NBodyForce", + "value": 10498 + }, + { + "name": "Particle", + "value": 2822 + }, + { + "name": "Simulation", + "value": 9983 + }, + { + "name": "Spring", + "value": 2213 + }, + { + "name": "SpringForce", + "value": 1681 + } + ] + }, + { + "name": "query", + "children": [ + { + "name": "AggregateExpression", + "value": 1616 + }, + { + "name": "And", + "value": 1027 + }, + { + "name": "Arithmetic", + "value": 3891 + }, + { + "name": "Average", + "value": 891 + }, + { + "name": "BinaryExpression", + "value": 2893 + }, + { + "name": "Comparison", + "value": 5103 + }, + { + "name": "CompositeExpression", + "value": 3677 + }, + { + "name": "Count", + "value": 781 + }, + { + "name": "DateUtil", + "value": 4141 + }, + { + "name": "Distinct", + "value": 933 + }, + { + "name": "Expression", + "value": 5130 + }, + { + "name": "ExpressionIterator", + "value": 3617 + }, + { + "name": "Fn", + "value": 3240 + }, + { + "name": "If", + "value": 2732 + }, + { + "name": "IsA", + "value": 2039 + }, + { + "name": "Literal", + "value": 1214 + }, + { + "name": "Match", + "value": 3748 + }, + { + "name": "Maximum", + "value": 843 + }, + { + "name": "methods", + "children": [ + { + "name": "add", + "value": 593 + }, + { + "name": "and", + "value": 330 + }, + { + "name": "average", + "value": 287 + }, + { + "name": "count", + "value": 277 + }, + { + "name": "distinct", + "value": 292 + }, + { + "name": "div", + "value": 595 + }, + { + "name": "eq", + "value": 594 + }, + { + "name": "fn", + "value": 460 + }, + { + "name": "gt", + "value": 603 + }, + { + "name": "gte", + "value": 625 + }, + { + "name": "iff", + "value": 748 + }, + { + "name": "isa", + "value": 461 + }, + { + "name": "lt", + "value": 597 + }, + { + "name": "lte", + "value": 619 + }, + { + "name": "max", + "value": 283 + }, + { + "name": "min", + "value": 283 + }, + { + "name": "mod", + "value": 591 + }, + { + "name": "mul", + "value": 603 + }, + { + "name": "neq", + "value": 599 + }, + { + "name": "not", + "value": 386 + }, + { + "name": "or", + "value": 323 + }, + { + "name": "orderby", + "value": 307 + }, + { + "name": "range", + "value": 772 + }, + { + "name": "select", + "value": 296 + }, + { + "name": "stddev", + "value": 363 + }, + { + "name": "sub", + "value": 600 + }, + { + "name": "sum", + "value": 280 + }, + { + "name": "update", + "value": 307 + }, + { + "name": "variance", + "value": 335 + }, + { + "name": "where", + "value": 299 + }, + { + "name": "xor", + "value": 354 + }, + { + "name": "_", + "value": 264 + } + ] + }, + { + "name": "Minimum", + "value": 843 + }, + { + "name": "Not", + "value": 1554 + }, + { + "name": "Or", + "value": 970 + }, + { + "name": "Query", + "value": 13896 + }, + { + "name": "Range", + "value": 1594 + }, + { + "name": "StringUtil", + "value": 4130 + }, + { + "name": "Sum", + "value": 791 + }, + { + "name": "Variable", + "value": 1124 + }, + { + "name": "Variance", + "value": 1876 + }, + { + "name": "Xor", + "value": 1101 + } + ] + }, + { + "name": "scale", + "children": [ + { + "name": "IScaleMap", + "value": 2105 + }, + { + "name": "LinearScale", + "value": 1316 + }, + { + "name": "LogScale", + "value": 3151 + }, + { + "name": "OrdinalScale", + "value": 3770 + }, + { + "name": "QuantileScale", + "value": 2435 + }, + { + "name": "QuantitativeScale", + "value": 4839 + }, + { + "name": "RootScale", + "value": 1756 + }, + { + "name": "Scale", + "value": 4268 + }, + { + "name": "ScaleType", + "value": 1821 + }, + { + "name": "TimeScale", + "value": 5833 + } + ] + }, + { + "name": "util", + "children": [ + { + "name": "Arrays", + "value": 8258 + }, + { + "name": "Colors", + "value": 10001 + }, + { + "name": "Dates", + "value": 8217 + }, + { + "name": "Displays", + "value": 12555 + }, + { + "name": "Filter", + "value": 2324 + }, + { + "name": "Geometry", + "value": 10993 + }, + { + "name": "heap", + "children": [ + { + "name": "FibonacciHeap", + "value": 9354 + }, + { + "name": "HeapNode", + "value": 1233 + } + ] + }, + { + "name": "IEvaluable", + "value": 335 + }, + { + "name": "IPredicate", + "value": 383 + }, + { + "name": "IValueProxy", + "value": 874 + }, + { + "name": "math", + "children": [ + { + "name": "DenseMatrix", + "value": 3165 + }, + { + "name": "IMatrix", + "value": 2815 + }, + { + "name": "SparseMatrix", + "value": 3366 + } + ] + }, + { + "name": "Maths", + "value": 17705 + }, + { + "name": "Orientation", + "value": 1486 + }, + { + "name": "palette", + "children": [ + { + "name": "ColorPalette", + "value": 6367 + }, + { + "name": "Palette", + "value": 1229 + }, + { + "name": "ShapePalette", + "value": 2059 + }, + { + "name": "SizePalette", + "value": 2291 + } + ] + }, + { + "name": "Property", + "value": 5559 + }, + { + "name": "Shapes", + "value": 19118 + }, + { + "name": "Sort", + "value": 6887 + }, + { + "name": "Stats", + "value": 6557 + }, + { + "name": "Strings", + "value": 22026 + } + ] + }, + { + "name": "vis", + "children": [ + { + "name": "axis", + "children": [ + { + "name": "Axes", + "value": 1302 + }, + { + "name": "Axis", + "value": 24593 + }, + { + "name": "AxisGridLine", + "value": 652 + }, + { + "name": "AxisLabel", + "value": 636 + }, + { + "name": "CartesianAxes", + "value": 6703 + } + ] + }, + { + "name": "controls", + "children": [ + { + "name": "AnchorControl", + "value": 2138 + }, + { + "name": "ClickControl", + "value": 3824 + }, + { + "name": "Control", + "value": 1353 + }, + { + "name": "ControlList", + "value": 4665 + }, + { + "name": "DragControl", + "value": 2649 + }, + { + "name": "ExpandControl", + "value": 2832 + }, + { + "name": "HoverControl", + "value": 4896 + }, + { + "name": "IControl", + "value": 763 + }, + { + "name": "PanZoomControl", + "value": 5222 + }, + { + "name": "SelectionControl", + "value": 7862 + }, + { + "name": "TooltipControl", + "value": 8435 + } + ] + }, + { + "name": "data", + "children": [ + { + "name": "Data", + "value": 20544 + }, + { + "name": "DataList", + "value": 19788 + }, + { + "name": "DataSprite", + "value": 10349 + }, + { + "name": "EdgeSprite", + "value": 3301 + }, + { + "name": "NodeSprite", + "value": 19382 + }, + { + "name": "render", + "children": [ + { + "name": "ArrowType", + "value": 698 + }, + { + "name": "EdgeRenderer", + "value": 5569 + }, + { + "name": "IRenderer", + "value": 353 + }, + { + "name": "ShapeRenderer", + "value": 2247 + } + ] + }, + { + "name": "ScaleBinding", + "value": 11275 + }, + { + "name": "Tree", + "value": 7147 + }, + { + "name": "TreeBuilder", + "value": 9930 + } + ] + }, + { + "name": "events", + "children": [ + { + "name": "DataEvent", + "value": 2313 + }, + { + "name": "SelectionEvent", + "value": 1880 + }, + { + "name": "TooltipEvent", + "value": 1701 + }, + { + "name": "VisualizationEvent", + "value": 1117 + } + ] + }, + { + "name": "legend", + "children": [ + { + "name": "Legend", + "value": 20859 + }, + { + "name": "LegendItem", + "value": 4614 + }, + { + "name": "LegendRange", + "value": 10530 + } + ] + }, + { + "name": "operator", + "children": [ + { + "name": "distortion", + "children": [ + { + "name": "BifocalDistortion", + "value": 4461 + }, + { + "name": "Distortion", + "value": 6314 + }, + { + "name": "FisheyeDistortion", + "value": 3444 + } + ] + }, + { + "name": "encoder", + "children": [ + { + "name": "ColorEncoder", + "value": 3179 + }, + { + "name": "Encoder", + "value": 4060 + }, + { + "name": "PropertyEncoder", + "value": 4138 + }, + { + "name": "ShapeEncoder", + "value": 1690 + }, + { + "name": "SizeEncoder", + "value": 1830 + } + ] + }, + { + "name": "filter", + "children": [ + { + "name": "FisheyeTreeFilter", + "value": 5219 + }, + { + "name": "GraphDistanceFilter", + "value": 3165 + }, + { + "name": "VisibilityFilter", + "value": 3509 + } + ] + }, + { + "name": "IOperator", + "value": 1286 + }, + { + "name": "label", + "children": [ + { + "name": "Labeler", + "value": 9956 + }, + { + "name": "RadialLabeler", + "value": 3899 + }, + { + "name": "StackedAreaLabeler", + "value": 3202 + } + ] + }, + { + "name": "layout", + "children": [ + { + "name": "AxisLayout", + "value": 6725 + }, + { + "name": "BundledEdgeRouter", + "value": 3727 + }, + { + "name": "CircleLayout", + "value": 9317 + }, + { + "name": "CirclePackingLayout", + "value": 12003 + }, + { + "name": "DendrogramLayout", + "value": 4853 + }, + { + "name": "ForceDirectedLayout", + "value": 8411 + }, + { + "name": "IcicleTreeLayout", + "value": 4864 + }, + { + "name": "IndentedTreeLayout", + "value": 3174 + }, + { + "name": "Layout", + "value": 7881 + }, + { + "name": "NodeLinkTreeLayout", + "value": 12870 + }, + { + "name": "PieLayout", + "value": 2728 + }, + { + "name": "RadialTreeLayout", + "value": 12348 + }, + { + "name": "RandomLayout", + "value": 870 + }, + { + "name": "StackedAreaLayout", + "value": 9121 + }, + { + "name": "TreeMapLayout", + "value": 9191 + } + ] + }, + { + "name": "Operator", + "value": 2490 + }, + { + "name": "OperatorList", + "value": 5248 + }, + { + "name": "OperatorSequence", + "value": 4190 + }, + { + "name": "OperatorSwitch", + "value": 2581 + }, + { + "name": "SortOperator", + "value": 2023 + } + ] + }, + { + "name": "Visualization", + "value": 16540 + } + ] + } + ] +} \ No newline at end of file diff --git a/data/sequences-sunburst.json b/data/sequences-sunburst.json new file mode 100644 index 0000000..2816c37 --- /dev/null +++ b/data/sequences-sunburst.json @@ -0,0 +1,13634 @@ +[ + ["account-account-account-account-account-account", "22781"], + ["account-account-account-account-account-end", "3311"], + ["account-account-account-account-account-home", "906"], + ["account-account-account-account-account-other", "1156"], + ["account-account-account-account-account-product", "5969"], + ["account-account-account-account-account-search", "692"], + ["account-account-account-account-end", "7059"], + ["account-account-account-account-home-account", "396"], + ["account-account-account-account-home-end", "316"], + ["account-account-account-account-home-home", "226"], + ["account-account-account-account-home-other", "87"], + ["account-account-account-account-home-product", "613"], + ["account-account-account-account-home-search", "245"], + ["account-account-account-account-other-account", "446"], + ["account-account-account-account-other-end", "229"], + ["account-account-account-account-other-home", "91"], + ["account-account-account-account-other-other", "804"], + ["account-account-account-account-other-product", "776"], + ["account-account-account-account-other-search", "48"], + ["account-account-account-account-product-account", "3892"], + ["account-account-account-account-product-end", "3250"], + ["account-account-account-account-product-home", "531"], + ["account-account-account-account-product-other", "252"], + ["account-account-account-account-product-product", "4876"], + ["account-account-account-account-product-search", "476"], + ["account-account-account-account-search-account", "521"], + ["account-account-account-account-search-end", "39"], + ["account-account-account-account-search-home", "7"], + ["account-account-account-account-search-other", "8"], + ["account-account-account-account-search-product", "536"], + ["account-account-account-account-search-search", "219"], + ["account-account-account-end", "14262"], + ["account-account-account-home-account-account", "434"], + ["account-account-account-home-account-end", "83"], + ["account-account-account-home-account-home", "71"], + ["account-account-account-home-account-other", "39"], + ["account-account-account-home-account-product", "159"], + ["account-account-account-home-account-search", "24"], + ["account-account-account-home-end", "722"], + ["account-account-account-home-home-account", "103"], + ["account-account-account-home-home-end", "64"], + ["account-account-account-home-home-home", "76"], + ["account-account-account-home-home-other", "57"], + ["account-account-account-home-home-product", "116"], + ["account-account-account-home-home-search", "47"], + ["account-account-account-home-other-account", "32"], + ["account-account-account-home-other-end", "13"], + ["account-account-account-home-other-home", "21"], + ["account-account-account-home-other-other", "93"], + ["account-account-account-home-other-product", "33"], + ["account-account-account-home-other-search", "6"], + ["account-account-account-home-product-account", "252"], + ["account-account-account-home-product-end", "304"], + ["account-account-account-home-product-home", "258"], + ["account-account-account-home-product-other", "25"], + ["account-account-account-home-product-product", "573"], + ["account-account-account-home-product-search", "69"], + ["account-account-account-home-search-account", "119"], + ["account-account-account-home-search-end", "20"], + ["account-account-account-home-search-home", "13"], + ["account-account-account-home-search-other", "1"], + ["account-account-account-home-search-product", "276"], + ["account-account-account-home-search-search", "103"], + ["account-account-account-other-account-account", "486"], + ["account-account-account-other-account-end", "99"], + ["account-account-account-other-account-home", "28"], + ["account-account-account-other-account-other", "130"], + ["account-account-account-other-account-product", "172"], + ["account-account-account-other-account-search", "31"], + ["account-account-account-other-end", "636"], + ["account-account-account-other-home-account", "33"], + ["account-account-account-other-home-end", "42"], + ["account-account-account-other-home-home", "23"], + ["account-account-account-other-home-other", "15"], + ["account-account-account-other-home-product", "61"], + ["account-account-account-other-home-search", "20"], + ["account-account-account-other-other-account", "312"], + ["account-account-account-other-other-end", "239"], + ["account-account-account-other-other-home", "92"], + ["account-account-account-other-other-other", "741"], + ["account-account-account-other-other-product", "488"], + ["account-account-account-other-other-search", "48"], + ["account-account-account-other-product-account", "315"], + ["account-account-account-other-product-end", "881"], + ["account-account-account-other-product-home", "84"], + ["account-account-account-other-product-other", "190"], + ["account-account-account-other-product-product", "1400"], + ["account-account-account-other-product-search", "77"], + ["account-account-account-other-search-account", "25"], + ["account-account-account-other-search-end", "5"], + ["account-account-account-other-search-other", "1"], + ["account-account-account-other-search-product", "39"], + ["account-account-account-other-search-search", "22"], + ["account-account-account-product-account-account", "3948"], + ["account-account-account-product-account-end", "721"], + ["account-account-account-product-account-home", "154"], + ["account-account-account-product-account-other", "201"], + ["account-account-account-product-account-product", "2369"], + ["account-account-account-product-account-search", "189"], + ["account-account-account-product-end", "7344"], + ["account-account-account-product-home-account", "198"], + ["account-account-account-product-home-end", "239"], + ["account-account-account-product-home-home", "122"], + ["account-account-account-product-home-other", "52"], + ["account-account-account-product-home-product", "526"], + ["account-account-account-product-home-search", "175"], + ["account-account-account-product-other-account", "120"], + ["account-account-account-product-other-end", "74"], + ["account-account-account-product-other-home", "23"], + ["account-account-account-product-other-other", "226"], + ["account-account-account-product-other-product", "189"], + ["account-account-account-product-other-search", "13"], + ["account-account-account-product-product-account", "1863"], + ["account-account-account-product-product-end", "2561"], + ["account-account-account-product-product-home", "395"], + ["account-account-account-product-product-other", "160"], + ["account-account-account-product-product-product", "5934"], + ["account-account-account-product-product-search", "407"], + ["account-account-account-product-search-account", "281"], + ["account-account-account-product-search-end", "37"], + ["account-account-account-product-search-home", "5"], + ["account-account-account-product-search-other", "3"], + ["account-account-account-product-search-product", "594"], + ["account-account-account-product-search-search", "191"], + ["account-account-account-search-account-account", "567"], + ["account-account-account-search-account-end", "69"], + ["account-account-account-search-account-home", "26"], + ["account-account-account-search-account-other", "25"], + ["account-account-account-search-account-product", "253"], + ["account-account-account-search-account-search", "78"], + ["account-account-account-search-end", "120"], + ["account-account-account-search-home-account", "2"], + ["account-account-account-search-home-end", "4"], + ["account-account-account-search-home-home", "3"], + ["account-account-account-search-home-product", "14"], + ["account-account-account-search-home-search", "4"], + ["account-account-account-search-other-account", "2"], + ["account-account-account-search-other-end", "3"], + ["account-account-account-search-other-home", "4"], + ["account-account-account-search-other-other", "6"], + ["account-account-account-search-other-product", "7"], + ["account-account-account-search-product-account", "189"], + ["account-account-account-search-product-end", "257"], + ["account-account-account-search-product-home", "33"], + ["account-account-account-search-product-other", "12"], + ["account-account-account-search-product-product", "550"], + ["account-account-account-search-product-search", "192"], + ["account-account-account-search-search-account", "113"], + ["account-account-account-search-search-end", "27"], + ["account-account-account-search-search-home", "9"], + ["account-account-account-search-search-other", "7"], + ["account-account-account-search-search-product", "208"], + ["account-account-account-search-search-search", "121"], + ["account-account-end", "49154"], + ["account-account-home-account-account-account", "470"], + ["account-account-home-account-account-end", "119"], + ["account-account-home-account-account-home", "139"], + ["account-account-home-account-account-other", "42"], + ["account-account-home-account-account-product", "365"], + ["account-account-home-account-account-search", "39"], + ["account-account-home-account-end", "273"], + ["account-account-home-account-home-account", "72"], + ["account-account-home-account-home-end", "42"], + ["account-account-home-account-home-home", "25"], + ["account-account-home-account-home-other", "11"], + ["account-account-home-account-home-product", "71"], + ["account-account-home-account-home-search", "23"], + ["account-account-home-account-other-account", "9"], + ["account-account-home-account-other-end", "6"], + ["account-account-home-account-other-home", "7"], + ["account-account-home-account-other-other", "54"], + ["account-account-home-account-other-product", "22"], + ["account-account-home-account-product-account", "124"], + ["account-account-home-account-product-end", "110"], + ["account-account-home-account-product-home", "60"], + ["account-account-home-account-product-other", "8"], + ["account-account-home-account-product-product", "191"], + ["account-account-home-account-product-search", "25"], + ["account-account-home-account-search-account", "23"], + ["account-account-home-account-search-end", "1"], + ["account-account-home-account-search-home", "2"], + ["account-account-home-account-search-product", "29"], + ["account-account-home-account-search-search", "11"], + ["account-account-home-end", "2878"], + ["account-account-home-home-account-account", "167"], + ["account-account-home-home-account-end", "37"], + ["account-account-home-home-account-home", "43"], + ["account-account-home-home-account-other", "30"], + ["account-account-home-home-account-product", "45"], + ["account-account-home-home-account-search", "14"], + ["account-account-home-home-end", "227"], + ["account-account-home-home-home-account", "42"], + ["account-account-home-home-home-end", "30"], + ["account-account-home-home-home-home", "82"], + ["account-account-home-home-home-other", "26"], + ["account-account-home-home-home-product", "62"], + ["account-account-home-home-home-search", "21"], + ["account-account-home-home-other-account", "29"], + ["account-account-home-home-other-end", "7"], + ["account-account-home-home-other-home", "15"], + ["account-account-home-home-other-other", "61"], + ["account-account-home-home-other-product", "22"], + ["account-account-home-home-other-search", "2"], + ["account-account-home-home-product-account", "83"], + ["account-account-home-home-product-end", "104"], + ["account-account-home-home-product-home", "90"], + ["account-account-home-home-product-other", "14"], + ["account-account-home-home-product-product", "208"], + ["account-account-home-home-product-search", "24"], + ["account-account-home-home-search-account", "46"], + ["account-account-home-home-search-end", "5"], + ["account-account-home-home-search-home", "6"], + ["account-account-home-home-search-product", "92"], + ["account-account-home-home-search-search", "34"], + ["account-account-home-other-account-account", "51"], + ["account-account-home-other-account-end", "9"], + ["account-account-home-other-account-home", "7"], + ["account-account-home-other-account-other", "7"], + ["account-account-home-other-account-product", "24"], + ["account-account-home-other-account-search", "3"], + ["account-account-home-other-end", "56"], + ["account-account-home-other-home-account", "12"], + ["account-account-home-other-home-end", "22"], + ["account-account-home-other-home-home", "9"], + ["account-account-home-other-home-other", "3"], + ["account-account-home-other-home-product", "26"], + ["account-account-home-other-home-search", "8"], + ["account-account-home-other-other-account", "34"], + ["account-account-home-other-other-end", "34"], + ["account-account-home-other-other-home", "34"], + ["account-account-home-other-other-other", "104"], + ["account-account-home-other-other-product", "56"], + ["account-account-home-other-other-search", "4"], + ["account-account-home-other-product-account", "16"], + ["account-account-home-other-product-end", "35"], + ["account-account-home-other-product-home", "17"], + ["account-account-home-other-product-other", "11"], + ["account-account-home-other-product-product", "59"], + ["account-account-home-other-product-search", "3"], + ["account-account-home-other-search-account", "6"], + ["account-account-home-other-search-product", "6"], + ["account-account-home-product-account-account", "409"], + ["account-account-home-product-account-end", "78"], + ["account-account-home-product-account-home", "103"], + ["account-account-home-product-account-other", "26"], + ["account-account-home-product-account-product", "276"], + ["account-account-home-product-account-search", "30"], + ["account-account-home-product-end", "1277"], + ["account-account-home-product-home-account", "133"], + ["account-account-home-product-home-end", "220"], + ["account-account-home-product-home-home", "93"], + ["account-account-home-product-home-other", "27"], + ["account-account-home-product-home-product", "579"], + ["account-account-home-product-home-search", "92"], + ["account-account-home-product-other-account", "5"], + ["account-account-home-product-other-end", "4"], + ["account-account-home-product-other-home", "4"], + ["account-account-home-product-other-other", "20"], + ["account-account-home-product-other-product", "22"], + ["account-account-home-product-other-search", "1"], + ["account-account-home-product-product-account", "260"], + ["account-account-home-product-product-end", "534"], + ["account-account-home-product-product-home", "296"], + ["account-account-home-product-product-other", "26"], + ["account-account-home-product-product-product", "1113"], + ["account-account-home-product-product-search", "97"], + ["account-account-home-product-search-account", "46"], + ["account-account-home-product-search-end", "6"], + ["account-account-home-product-search-home", "5"], + ["account-account-home-product-search-product", "149"], + ["account-account-home-product-search-search", "43"], + ["account-account-home-search-account-account", "201"], + ["account-account-home-search-account-end", "27"], + ["account-account-home-search-account-home", "25"], + ["account-account-home-search-account-other", "6"], + ["account-account-home-search-account-product", "72"], + ["account-account-home-search-account-search", "20"], + ["account-account-home-search-end", "80"], + ["account-account-home-search-home-account", "7"], + ["account-account-home-search-home-end", "5"], + ["account-account-home-search-home-home", "4"], + ["account-account-home-search-home-product", "8"], + ["account-account-home-search-home-search", "12"], + ["account-account-home-search-other-end", "2"], + ["account-account-home-search-other-other", "3"], + ["account-account-home-search-other-product", "2"], + ["account-account-home-search-other-search", "1"], + ["account-account-home-search-product-account", "79"], + ["account-account-home-search-product-end", "212"], + ["account-account-home-search-product-home", "68"], + ["account-account-home-search-product-other", "7"], + ["account-account-home-search-product-product", "478"], + ["account-account-home-search-product-search", "156"], + ["account-account-home-search-search-account", "40"], + ["account-account-home-search-search-end", "25"], + ["account-account-home-search-search-home", "5"], + ["account-account-home-search-search-other", "1"], + ["account-account-home-search-search-product", "170"], + ["account-account-home-search-search-search", "88"], + ["account-account-other-account-account-account", "596"], + ["account-account-other-account-account-end", "131"], + ["account-account-other-account-account-home", "42"], + ["account-account-other-account-account-other", "124"], + ["account-account-other-account-account-product", "270"], + ["account-account-other-account-account-search", "34"], + ["account-account-other-account-end", "246"], + ["account-account-other-account-home-account", "15"], + ["account-account-other-account-home-end", "15"], + ["account-account-other-account-home-home", "8"], + ["account-account-other-account-home-other", "2"], + ["account-account-other-account-home-product", "43"], + ["account-account-other-account-home-search", "4"], + ["account-account-other-account-other-account", "98"], + ["account-account-other-account-other-end", "31"], + ["account-account-other-account-other-home", "6"], + ["account-account-other-account-other-other", "123"], + ["account-account-other-account-other-product", "85"], + ["account-account-other-account-other-search", "4"], + ["account-account-other-account-product-account", "160"], + ["account-account-other-account-product-end", "78"], + ["account-account-other-account-product-home", "24"], + ["account-account-other-account-product-other", "32"], + ["account-account-other-account-product-product", "157"], + ["account-account-other-account-product-search", "13"], + ["account-account-other-account-search-account", "18"], + ["account-account-other-account-search-end", "1"], + ["account-account-other-account-search-product", "42"], + ["account-account-other-account-search-search", "10"], + ["account-account-other-end", "1457"], + ["account-account-other-home-account-account", "65"], + ["account-account-other-home-account-end", "4"], + ["account-account-other-home-account-home", "7"], + ["account-account-other-home-account-other", "7"], + ["account-account-other-home-account-product", "29"], + ["account-account-other-home-account-search", "4"], + ["account-account-other-home-end", "137"], + ["account-account-other-home-home-account", "8"], + ["account-account-other-home-home-end", "5"], + ["account-account-other-home-home-home", "14"], + ["account-account-other-home-home-other", "25"], + ["account-account-other-home-home-product", "11"], + ["account-account-other-home-home-search", "7"], + ["account-account-other-home-other-account", "4"], + ["account-account-other-home-other-end", "2"], + ["account-account-other-home-other-home", "9"], + ["account-account-other-home-other-other", "15"], + ["account-account-other-home-other-product", "8"], + ["account-account-other-home-product-account", "43"], + ["account-account-other-home-product-end", "40"], + ["account-account-other-home-product-home", "38"], + ["account-account-other-home-product-other", "11"], + ["account-account-other-home-product-product", "91"], + ["account-account-other-home-product-search", "11"], + ["account-account-other-home-search-account", "14"], + ["account-account-other-home-search-other", "1"], + ["account-account-other-home-search-product", "22"], + ["account-account-other-home-search-search", "8"], + ["account-account-other-other-account-account", "330"], + ["account-account-other-other-account-end", "128"], + ["account-account-other-other-account-home", "46"], + ["account-account-other-other-account-other", "163"], + ["account-account-other-other-account-product", "102"], + ["account-account-other-other-account-search", "36"], + ["account-account-other-other-end", "805"], + ["account-account-other-other-home-account", "65"], + ["account-account-other-other-home-end", "55"], + ["account-account-other-other-home-home", "43"], + ["account-account-other-other-home-other", "24"], + ["account-account-other-other-home-product", "83"], + ["account-account-other-other-home-search", "14"], + ["account-account-other-other-other-account", "440"], + ["account-account-other-other-other-end", "349"], + ["account-account-other-other-other-home", "145"], + ["account-account-other-other-other-other", "871"], + ["account-account-other-other-other-product", "528"], + ["account-account-other-other-other-search", "49"], + ["account-account-other-other-product-account", "213"], + ["account-account-other-other-product-end", "283"], + ["account-account-other-other-product-home", "60"], + ["account-account-other-other-product-other", "222"], + ["account-account-other-other-product-product", "468"], + ["account-account-other-other-product-search", "36"], + ["account-account-other-other-search-account", "24"], + ["account-account-other-other-search-end", "4"], + ["account-account-other-other-search-home", "2"], + ["account-account-other-other-search-other", "4"], + ["account-account-other-other-search-product", "61"], + ["account-account-other-other-search-search", "23"], + ["account-account-other-product-account-account", "297"], + ["account-account-other-product-account-end", "74"], + ["account-account-other-product-account-home", "14"], + ["account-account-other-product-account-other", "71"], + ["account-account-other-product-account-product", "185"], + ["account-account-other-product-account-search", "16"], + ["account-account-other-product-end", "1302"], + ["account-account-other-product-home-account", "22"], + ["account-account-other-product-home-end", "33"], + ["account-account-other-product-home-home", "8"], + ["account-account-other-product-home-other", "13"], + ["account-account-other-product-home-product", "68"], + ["account-account-other-product-home-search", "23"], + ["account-account-other-product-other-account", "67"], + ["account-account-other-product-other-end", "26"], + ["account-account-other-product-other-home", "9"], + ["account-account-other-product-other-other", "88"], + ["account-account-other-product-other-product", "194"], + ["account-account-other-product-other-search", "9"], + ["account-account-other-product-product-account", "193"], + ["account-account-other-product-product-end", "550"], + ["account-account-other-product-product-home", "69"], + ["account-account-other-product-product-other", "93"], + ["account-account-other-product-product-product", "1369"], + ["account-account-other-product-product-search", "62"], + ["account-account-other-product-search-account", "27"], + ["account-account-other-product-search-end", "5"], + ["account-account-other-product-search-other", "3"], + ["account-account-other-product-search-product", "90"], + ["account-account-other-product-search-search", "18"], + ["account-account-other-search-account-account", "44"], + ["account-account-other-search-account-end", "6"], + ["account-account-other-search-account-home", "1"], + ["account-account-other-search-account-other", "6"], + ["account-account-other-search-account-product", "22"], + ["account-account-other-search-account-search", "3"], + ["account-account-other-search-end", "11"], + ["account-account-other-search-home-home", "2"], + ["account-account-other-search-home-product", "2"], + ["account-account-other-search-other-account", "3"], + ["account-account-other-search-other-other", "3"], + ["account-account-other-search-other-search", "1"], + ["account-account-other-search-product-account", "22"], + ["account-account-other-search-product-end", "33"], + ["account-account-other-search-product-home", "6"], + ["account-account-other-search-product-other", "6"], + ["account-account-other-search-product-product", "68"], + ["account-account-other-search-product-search", "30"], + ["account-account-other-search-search-account", "7"], + ["account-account-other-search-search-end", "3"], + ["account-account-other-search-search-home", "1"], + ["account-account-other-search-search-product", "33"], + ["account-account-other-search-search-search", "23"], + ["account-account-product-account-account-account", "4424"], + ["account-account-product-account-account-end", "1104"], + ["account-account-product-account-account-home", "297"], + ["account-account-product-account-account-other", "233"], + ["account-account-product-account-account-product", "5893"], + ["account-account-product-account-account-search", "265"], + ["account-account-product-account-end", "2171"], + ["account-account-product-account-home-account", "111"], + ["account-account-product-account-home-end", "94"], + ["account-account-product-account-home-home", "60"], + ["account-account-product-account-home-other", "19"], + ["account-account-product-account-home-product", "210"], + ["account-account-product-account-home-search", "65"], + ["account-account-product-account-other-account", "117"], + ["account-account-product-account-other-end", "46"], + ["account-account-product-account-other-home", "18"], + ["account-account-product-account-other-other", "199"], + ["account-account-product-account-other-product", "210"], + ["account-account-product-account-other-search", "6"], + ["account-account-product-account-product-account", "2683"], + ["account-account-product-account-product-end", "1670"], + ["account-account-product-account-product-home", "258"], + ["account-account-product-account-product-other", "99"], + ["account-account-product-account-product-product", "2543"], + ["account-account-product-account-product-search", "278"], + ["account-account-product-account-search-account", "179"], + ["account-account-product-account-search-end", "16"], + ["account-account-product-account-search-home", "1"], + ["account-account-product-account-search-other", "1"], + ["account-account-product-account-search-product", "215"], + ["account-account-product-account-search-search", "88"], + ["account-account-product-end", "30250"], + ["account-account-product-home-account-account", "378"], + ["account-account-product-home-account-end", "61"], + ["account-account-product-home-account-home", "49"], + ["account-account-product-home-account-other", "32"], + ["account-account-product-home-account-product", "175"], + ["account-account-product-home-account-search", "18"], + ["account-account-product-home-end", "1195"], + ["account-account-product-home-home-account", "87"], + ["account-account-product-home-home-end", "82"], + ["account-account-product-home-home-home", "66"], + ["account-account-product-home-home-other", "45"], + ["account-account-product-home-home-product", "185"], + ["account-account-product-home-home-search", "68"], + ["account-account-product-home-other-account", "23"], + ["account-account-product-home-other-end", "12"], + ["account-account-product-home-other-home", "27"], + ["account-account-product-home-other-other", "84"], + ["account-account-product-home-other-product", "44"], + ["account-account-product-home-other-search", "2"], + ["account-account-product-home-product-account", "357"], + ["account-account-product-home-product-end", "472"], + ["account-account-product-home-product-home", "454"], + ["account-account-product-home-product-other", "34"], + ["account-account-product-home-product-product", "804"], + ["account-account-product-home-product-search", "102"], + ["account-account-product-home-search-account", "169"], + ["account-account-product-home-search-end", "32"], + ["account-account-product-home-search-home", "14"], + ["account-account-product-home-search-other", "3"], + ["account-account-product-home-search-product", "414"], + ["account-account-product-home-search-search", "149"], + ["account-account-product-other-account-account", "158"], + ["account-account-product-other-account-end", "36"], + ["account-account-product-other-account-home", "13"], + ["account-account-product-other-account-other", "27"], + ["account-account-product-other-account-product", "74"], + ["account-account-product-other-account-search", "4"], + ["account-account-product-other-end", "265"], + ["account-account-product-other-home-account", "12"], + ["account-account-product-other-home-end", "10"], + ["account-account-product-other-home-home", "7"], + ["account-account-product-other-home-other", "6"], + ["account-account-product-other-home-product", "35"], + ["account-account-product-other-home-search", "5"], + ["account-account-product-other-other-account", "121"], + ["account-account-product-other-other-end", "122"], + ["account-account-product-other-other-home", "42"], + ["account-account-product-other-other-other", "286"], + ["account-account-product-other-other-product", "206"], + ["account-account-product-other-other-search", "23"], + ["account-account-product-other-product-account", "88"], + ["account-account-product-other-product-end", "116"], + ["account-account-product-other-product-home", "19"], + ["account-account-product-other-product-other", "53"], + ["account-account-product-other-product-product", "317"], + ["account-account-product-other-product-search", "20"], + ["account-account-product-other-search-account", "12"], + ["account-account-product-other-search-end", "4"], + ["account-account-product-other-search-other", "1"], + ["account-account-product-other-search-product", "23"], + ["account-account-product-other-search-search", "8"], + ["account-account-product-product-account-account", "3417"], + ["account-account-product-product-account-end", "594"], + ["account-account-product-product-account-home", "122"], + ["account-account-product-product-account-other", "176"], + ["account-account-product-product-account-product", "1932"], + ["account-account-product-product-account-search", "150"], + ["account-account-product-product-end", "10185"], + ["account-account-product-product-home-account", "214"], + ["account-account-product-product-home-end", "326"], + ["account-account-product-product-home-home", "170"], + ["account-account-product-product-home-other", "48"], + ["account-account-product-product-home-product", "809"], + ["account-account-product-product-home-search", "291"], + ["account-account-product-product-other-account", "107"], + ["account-account-product-product-other-end", "59"], + ["account-account-product-product-other-home", "17"], + ["account-account-product-product-other-other", "203"], + ["account-account-product-product-other-product", "153"], + ["account-account-product-product-other-search", "18"], + ["account-account-product-product-product-account", "2583"], + ["account-account-product-product-product-end", "4658"], + ["account-account-product-product-product-home", "751"], + ["account-account-product-product-product-other", "237"], + ["account-account-product-product-product-product", "13769"], + ["account-account-product-product-product-search", "870"], + ["account-account-product-product-search-account", "375"], + ["account-account-product-product-search-end", "52"], + ["account-account-product-product-search-home", "16"], + ["account-account-product-product-search-other", "6"], + ["account-account-product-product-search-product", "1127"], + ["account-account-product-product-search-search", "285"], + ["account-account-product-search-account-account", "656"], + ["account-account-product-search-account-end", "51"], + ["account-account-product-search-account-home", "11"], + ["account-account-product-search-account-other", "19"], + ["account-account-product-search-account-product", "346"], + ["account-account-product-search-account-search", "55"], + ["account-account-product-search-end", "159"], + ["account-account-product-search-home-account", "3"], + ["account-account-product-search-home-end", "3"], + ["account-account-product-search-home-home", "4"], + ["account-account-product-search-home-other", "2"], + ["account-account-product-search-home-product", "17"], + ["account-account-product-search-home-search", "9"], + ["account-account-product-search-other-account", "1"], + ["account-account-product-search-other-end", "1"], + ["account-account-product-search-other-home", "2"], + ["account-account-product-search-other-other", "6"], + ["account-account-product-search-other-product", "3"], + ["account-account-product-search-product-account", "245"], + ["account-account-product-search-product-end", "530"], + ["account-account-product-search-product-home", "88"], + ["account-account-product-search-product-other", "26"], + ["account-account-product-search-product-product", "1249"], + ["account-account-product-search-product-search", "395"], + ["account-account-product-search-search-account", "89"], + ["account-account-product-search-search-end", "37"], + ["account-account-product-search-search-home", "8"], + ["account-account-product-search-search-other", "6"], + ["account-account-product-search-search-product", "378"], + ["account-account-product-search-search-search", "161"], + ["account-account-search-account-account-account", "578"], + ["account-account-search-account-account-end", "145"], + ["account-account-search-account-account-home", "49"], + ["account-account-search-account-account-other", "38"], + ["account-account-search-account-account-product", "731"], + ["account-account-search-account-account-search", "196"], + ["account-account-search-account-end", "227"], + ["account-account-search-account-home-account", "14"], + ["account-account-search-account-home-end", "8"], + ["account-account-search-account-home-home", "3"], + ["account-account-search-account-home-other", "3"], + ["account-account-search-account-home-product", "10"], + ["account-account-search-account-home-search", "12"], + ["account-account-search-account-other-account", "5"], + ["account-account-search-account-other-end", "7"], + ["account-account-search-account-other-other", "13"], + ["account-account-search-account-other-product", "23"], + ["account-account-search-account-other-search", "2"], + ["account-account-search-account-product-account", "188"], + ["account-account-search-account-product-end", "187"], + ["account-account-search-account-product-home", "26"], + ["account-account-search-account-product-other", "8"], + ["account-account-search-account-product-product", "302"], + ["account-account-search-account-product-search", "91"], + ["account-account-search-account-search-account", "147"], + ["account-account-search-account-search-end", "8"], + ["account-account-search-account-search-home", "1"], + ["account-account-search-account-search-product", "63"], + ["account-account-search-account-search-search", "26"], + ["account-account-search-end", "412"], + ["account-account-search-home-account-account", "3"], + ["account-account-search-home-account-end", "1"], + ["account-account-search-home-account-product", "2"], + ["account-account-search-home-end", "15"], + ["account-account-search-home-home-account", "1"], + ["account-account-search-home-home-home", "1"], + ["account-account-search-home-home-other", "1"], + ["account-account-search-home-home-product", "1"], + ["account-account-search-home-home-search", "5"], + ["account-account-search-home-other-other", "1"], + ["account-account-search-home-other-product", "3"], + ["account-account-search-home-product-account", "5"], + ["account-account-search-home-product-end", "4"], + ["account-account-search-home-product-home", "6"], + ["account-account-search-home-product-product", "7"], + ["account-account-search-home-product-search", "4"], + ["account-account-search-home-search-account", "4"], + ["account-account-search-home-search-end", "1"], + ["account-account-search-home-search-home", "3"], + ["account-account-search-home-search-product", "16"], + ["account-account-search-home-search-search", "5"], + ["account-account-search-other-account-account", "1"], + ["account-account-search-other-account-other", "3"], + ["account-account-search-other-account-search", "2"], + ["account-account-search-other-end", "7"], + ["account-account-search-other-home-end", "3"], + ["account-account-search-other-home-home", "1"], + ["account-account-search-other-other-account", "1"], + ["account-account-search-other-other-other", "9"], + ["account-account-search-other-other-product", "6"], + ["account-account-search-other-other-search", "3"], + ["account-account-search-other-product-account", "4"], + ["account-account-search-other-product-end", "2"], + ["account-account-search-other-product-other", "3"], + ["account-account-search-other-product-product", "7"], + ["account-account-search-other-product-search", "2"], + ["account-account-search-other-search-account", "1"], + ["account-account-search-other-search-product", "5"], + ["account-account-search-other-search-search", "1"], + ["account-account-search-product-account-account", "257"], + ["account-account-search-product-account-end", "56"], + ["account-account-search-product-account-home", "13"], + ["account-account-search-product-account-other", "18"], + ["account-account-search-product-account-product", "171"], + ["account-account-search-product-account-search", "73"], + ["account-account-search-product-end", "1212"], + ["account-account-search-product-home-account", "14"], + ["account-account-search-product-home-end", "40"], + ["account-account-search-product-home-home", "11"], + ["account-account-search-product-home-other", "4"], + ["account-account-search-product-home-product", "45"], + ["account-account-search-product-home-search", "51"], + ["account-account-search-product-other-account", "3"], + ["account-account-search-product-other-end", "7"], + ["account-account-search-product-other-home", "5"], + ["account-account-search-product-other-other", "14"], + ["account-account-search-product-other-product", "17"], + ["account-account-search-product-other-search", "2"], + ["account-account-search-product-product-account", "216"], + ["account-account-search-product-product-end", "493"], + ["account-account-search-product-product-home", "63"], + ["account-account-search-product-product-other", "25"], + ["account-account-search-product-product-product", "1409"], + ["account-account-search-product-product-search", "350"], + ["account-account-search-product-search-account", "67"], + ["account-account-search-product-search-end", "34"], + ["account-account-search-product-search-home", "3"], + ["account-account-search-product-search-other", "4"], + ["account-account-search-product-search-product", "607"], + ["account-account-search-product-search-search", "135"], + ["account-account-search-search-account-account", "171"], + ["account-account-search-search-account-end", "23"], + ["account-account-search-search-account-home", "11"], + ["account-account-search-search-account-other", "9"], + ["account-account-search-search-account-product", "80"], + ["account-account-search-search-account-search", "29"], + ["account-account-search-search-end", "115"], + ["account-account-search-search-home-account", "2"], + ["account-account-search-search-home-end", "2"], + ["account-account-search-search-home-home", "1"], + ["account-account-search-search-home-product", "10"], + ["account-account-search-search-home-search", "11"], + ["account-account-search-search-other-account", "1"], + ["account-account-search-search-other-other", "1"], + ["account-account-search-search-other-product", "2"], + ["account-account-search-search-product-account", "92"], + ["account-account-search-search-product-end", "186"], + ["account-account-search-search-product-home", "37"], + ["account-account-search-search-product-other", "7"], + ["account-account-search-search-product-product", "472"], + ["account-account-search-search-product-search", "182"], + ["account-account-search-search-search-account", "67"], + ["account-account-search-search-search-end", "35"], + ["account-account-search-search-search-home", "5"], + ["account-account-search-search-search-other", "8"], + ["account-account-search-search-search-product", "231"], + ["account-account-search-search-search-search", "203"], + ["account-end", "202885"], + ["account-home-account-account-account-account", "670"], + ["account-home-account-account-account-end", "112"], + ["account-home-account-account-account-home", "120"], + ["account-home-account-account-account-other", "92"], + ["account-home-account-account-account-product", "314"], + ["account-home-account-account-account-search", "26"], + ["account-home-account-account-end", "358"], + ["account-home-account-account-home-account", "123"], + ["account-home-account-account-home-end", "88"], + ["account-home-account-account-home-home", "39"], + ["account-home-account-account-home-other", "11"], + ["account-home-account-account-home-product", "115"], + ["account-home-account-account-home-search", "34"], + ["account-home-account-account-other-account", "11"], + ["account-home-account-account-other-end", "9"], + ["account-home-account-account-other-home", "13"], + ["account-home-account-account-other-other", "42"], + ["account-home-account-account-other-product", "56"], + ["account-home-account-account-other-search", "3"], + ["account-home-account-account-product-account", "268"], + ["account-home-account-account-product-end", "290"], + ["account-home-account-account-product-home", "150"], + ["account-home-account-account-product-other", "14"], + ["account-home-account-account-product-product", "462"], + ["account-home-account-account-product-search", "46"], + ["account-home-account-account-search-account", "40"], + ["account-home-account-account-search-end", "5"], + ["account-home-account-account-search-home", "1"], + ["account-home-account-account-search-other", "1"], + ["account-home-account-account-search-product", "50"], + ["account-home-account-account-search-search", "10"], + ["account-home-account-end", "1117"], + ["account-home-account-home-account-account", "126"], + ["account-home-account-home-account-end", "28"], + ["account-home-account-home-account-home", "338"], + ["account-home-account-home-account-other", "12"], + ["account-home-account-home-account-product", "45"], + ["account-home-account-home-account-search", "10"], + ["account-home-account-home-end", "381"], + ["account-home-account-home-home-account", "40"], + ["account-home-account-home-home-end", "21"], + ["account-home-account-home-home-home", "75"], + ["account-home-account-home-home-other", "11"], + ["account-home-account-home-home-product", "47"], + ["account-home-account-home-home-search", "17"], + ["account-home-account-home-other-account", "5"], + ["account-home-account-home-other-end", "3"], + ["account-home-account-home-other-home", "28"], + ["account-home-account-home-other-other", "24"], + ["account-home-account-home-other-product", "9"], + ["account-home-account-home-product-account", "58"], + ["account-home-account-home-product-end", "94"], + ["account-home-account-home-product-home", "359"], + ["account-home-account-home-product-other", "2"], + ["account-home-account-home-product-product", "134"], + ["account-home-account-home-product-search", "14"], + ["account-home-account-home-search-account", "15"], + ["account-home-account-home-search-end", "4"], + ["account-home-account-home-search-home", "21"], + ["account-home-account-home-search-product", "44"], + ["account-home-account-home-search-search", "13"], + ["account-home-account-other-account-account", "20"], + ["account-home-account-other-account-end", "4"], + ["account-home-account-other-account-home", "5"], + ["account-home-account-other-account-other", "5"], + ["account-home-account-other-account-product", "7"], + ["account-home-account-other-end", "37"], + ["account-home-account-other-home-account", "6"], + ["account-home-account-other-home-end", "6"], + ["account-home-account-other-home-home", "2"], + ["account-home-account-other-home-other", "4"], + ["account-home-account-other-home-product", "8"], + ["account-home-account-other-home-search", "4"], + ["account-home-account-other-other-account", "23"], + ["account-home-account-other-other-end", "24"], + ["account-home-account-other-other-home", "21"], + ["account-home-account-other-other-other", "58"], + ["account-home-account-other-other-product", "31"], + ["account-home-account-other-other-search", "1"], + ["account-home-account-other-product-account", "16"], + ["account-home-account-other-product-end", "39"], + ["account-home-account-other-product-home", "7"], + ["account-home-account-other-product-other", "7"], + ["account-home-account-other-product-product", "69"], + ["account-home-account-other-product-search", "9"], + ["account-home-account-other-search-account", "2"], + ["account-home-account-other-search-product", "5"], + ["account-home-account-product-account-account", "188"], + ["account-home-account-product-account-end", "45"], + ["account-home-account-product-account-home", "53"], + ["account-home-account-product-account-other", "16"], + ["account-home-account-product-account-product", "185"], + ["account-home-account-product-account-search", "15"], + ["account-home-account-product-end", "581"], + ["account-home-account-product-home-account", "61"], + ["account-home-account-product-home-end", "61"], + ["account-home-account-product-home-home", "30"], + ["account-home-account-product-home-other", "10"], + ["account-home-account-product-home-product", "144"], + ["account-home-account-product-home-search", "19"], + ["account-home-account-product-other-account", "5"], + ["account-home-account-product-other-end", "2"], + ["account-home-account-product-other-home", "4"], + ["account-home-account-product-other-other", "19"], + ["account-home-account-product-other-product", "5"], + ["account-home-account-product-product-account", "133"], + ["account-home-account-product-product-end", "190"], + ["account-home-account-product-product-home", "103"], + ["account-home-account-product-product-other", "7"], + ["account-home-account-product-product-product", "489"], + ["account-home-account-product-product-search", "30"], + ["account-home-account-product-search-account", "26"], + ["account-home-account-product-search-end", "3"], + ["account-home-account-product-search-home", "2"], + ["account-home-account-product-search-product", "43"], + ["account-home-account-product-search-search", "16"], + ["account-home-account-search-account-account", "40"], + ["account-home-account-search-account-end", "9"], + ["account-home-account-search-account-home", "7"], + ["account-home-account-search-account-other", "4"], + ["account-home-account-search-account-product", "22"], + ["account-home-account-search-account-search", "4"], + ["account-home-account-search-end", "9"], + ["account-home-account-search-home-account", "2"], + ["account-home-account-search-home-product", "3"], + ["account-home-account-search-home-search", "4"], + ["account-home-account-search-other-account", "1"], + ["account-home-account-search-other-other", "1"], + ["account-home-account-search-product-account", "11"], + ["account-home-account-search-product-end", "24"], + ["account-home-account-search-product-home", "9"], + ["account-home-account-search-product-other", "2"], + ["account-home-account-search-product-product", "72"], + ["account-home-account-search-product-search", "24"], + ["account-home-account-search-search-account", "4"], + ["account-home-account-search-search-product", "28"], + ["account-home-account-search-search-search", "12"], + ["account-home-end", "15432"], + ["account-home-home-account-account-account", "204"], + ["account-home-home-account-account-end", "35"], + ["account-home-home-account-account-home", "58"], + ["account-home-home-account-account-other", "29"], + ["account-home-home-account-account-product", "116"], + ["account-home-home-account-account-search", "15"], + ["account-home-home-account-end", "144"], + ["account-home-home-account-home-account", "46"], + ["account-home-home-account-home-end", "31"], + ["account-home-home-account-home-home", "104"], + ["account-home-home-account-home-other", "8"], + ["account-home-home-account-home-product", "61"], + ["account-home-home-account-home-search", "20"], + ["account-home-home-account-other-account", "11"], + ["account-home-home-account-other-end", "3"], + ["account-home-home-account-other-home", "6"], + ["account-home-home-account-other-other", "50"], + ["account-home-home-account-other-product", "17"], + ["account-home-home-account-other-search", "1"], + ["account-home-home-account-product-account", "57"], + ["account-home-home-account-product-end", "47"], + ["account-home-home-account-product-home", "38"], + ["account-home-home-account-product-other", "8"], + ["account-home-home-account-product-product", "97"], + ["account-home-home-account-product-search", "6"], + ["account-home-home-account-search-account", "13"], + ["account-home-home-account-search-product", "11"], + ["account-home-home-account-search-search", "3"], + ["account-home-home-end", "1096"], + ["account-home-home-home-account-account", "59"], + ["account-home-home-home-account-end", "15"], + ["account-home-home-home-account-home", "52"], + ["account-home-home-home-account-other", "7"], + ["account-home-home-home-account-product", "33"], + ["account-home-home-home-account-search", "5"], + ["account-home-home-home-end", "150"], + ["account-home-home-home-home-account", "58"], + ["account-home-home-home-home-end", "44"], + ["account-home-home-home-home-home", "205"], + ["account-home-home-home-home-other", "27"], + ["account-home-home-home-home-product", "111"], + ["account-home-home-home-home-search", "23"], + ["account-home-home-home-other-account", "16"], + ["account-home-home-home-other-end", "5"], + ["account-home-home-home-other-home", "17"], + ["account-home-home-home-other-other", "24"], + ["account-home-home-home-other-product", "11"], + ["account-home-home-home-product-account", "29"], + ["account-home-home-home-product-end", "46"], + ["account-home-home-home-product-home", "130"], + ["account-home-home-home-product-other", "6"], + ["account-home-home-home-product-product", "95"], + ["account-home-home-home-product-search", "18"], + ["account-home-home-home-search-account", "22"], + ["account-home-home-home-search-end", "3"], + ["account-home-home-home-search-home", "27"], + ["account-home-home-home-search-product", "50"], + ["account-home-home-home-search-search", "22"], + ["account-home-home-other-account-account", "54"], + ["account-home-home-other-account-end", "11"], + ["account-home-home-other-account-home", "9"], + ["account-home-home-other-account-other", "17"], + ["account-home-home-other-account-product", "25"], + ["account-home-home-other-end", "44"], + ["account-home-home-other-home-account", "5"], + ["account-home-home-other-home-end", "8"], + ["account-home-home-other-home-home", "22"], + ["account-home-home-other-home-other", "6"], + ["account-home-home-other-home-product", "17"], + ["account-home-home-other-home-search", "1"], + ["account-home-home-other-other-account", "35"], + ["account-home-home-other-other-end", "27"], + ["account-home-home-other-other-home", "18"], + ["account-home-home-other-other-other", "99"], + ["account-home-home-other-other-product", "62"], + ["account-home-home-other-other-search", "2"], + ["account-home-home-other-product-account", "21"], + ["account-home-home-other-product-end", "31"], + ["account-home-home-other-product-home", "9"], + ["account-home-home-other-product-other", "15"], + ["account-home-home-other-product-product", "35"], + ["account-home-home-other-product-search", "2"], + ["account-home-home-other-search-account", "2"], + ["account-home-home-other-search-product", "7"], + ["account-home-home-other-search-search", "2"], + ["account-home-home-product-account-account", "110"], + ["account-home-home-product-account-end", "26"], + ["account-home-home-product-account-home", "39"], + ["account-home-home-product-account-other", "13"], + ["account-home-home-product-account-product", "108"], + ["account-home-home-product-account-search", "8"], + ["account-home-home-product-end", "480"], + ["account-home-home-product-home-account", "56"], + ["account-home-home-product-home-end", "116"], + ["account-home-home-product-home-home", "129"], + ["account-home-home-product-home-other", "10"], + ["account-home-home-product-home-product", "242"], + ["account-home-home-product-home-search", "34"], + ["account-home-home-product-other-account", "5"], + ["account-home-home-product-other-end", "5"], + ["account-home-home-product-other-home", "3"], + ["account-home-home-product-other-other", "22"], + ["account-home-home-product-other-product", "11"], + ["account-home-home-product-product-account", "103"], + ["account-home-home-product-product-end", "169"], + ["account-home-home-product-product-home", "140"], + ["account-home-home-product-product-other", "12"], + ["account-home-home-product-product-product", "513"], + ["account-home-home-product-product-search", "43"], + ["account-home-home-product-search-account", "10"], + ["account-home-home-product-search-end", "2"], + ["account-home-home-product-search-home", "5"], + ["account-home-home-product-search-product", "56"], + ["account-home-home-product-search-search", "16"], + ["account-home-home-search-account-account", "50"], + ["account-home-home-search-account-end", "14"], + ["account-home-home-search-account-home", "11"], + ["account-home-home-search-account-other", "4"], + ["account-home-home-search-account-product", "36"], + ["account-home-home-search-account-search", "13"], + ["account-home-home-search-end", "21"], + ["account-home-home-search-home-account", "9"], + ["account-home-home-search-home-end", "3"], + ["account-home-home-search-home-home", "14"], + ["account-home-home-search-home-other", "1"], + ["account-home-home-search-home-product", "15"], + ["account-home-home-search-home-search", "9"], + ["account-home-home-search-other-other", "2"], + ["account-home-home-search-product-account", "30"], + ["account-home-home-search-product-end", "84"], + ["account-home-home-search-product-home", "40"], + ["account-home-home-search-product-other", "2"], + ["account-home-home-search-product-product", "169"], + ["account-home-home-search-product-search", "69"], + ["account-home-home-search-search-account", "14"], + ["account-home-home-search-search-end", "8"], + ["account-home-home-search-search-home", "2"], + ["account-home-home-search-search-other", "1"], + ["account-home-home-search-search-product", "80"], + ["account-home-home-search-search-search", "32"], + ["account-home-other-account-account-account", "58"], + ["account-home-other-account-account-end", "11"], + ["account-home-other-account-account-home", "16"], + ["account-home-other-account-account-other", "12"], + ["account-home-other-account-account-product", "26"], + ["account-home-other-account-account-search", "5"], + ["account-home-other-account-end", "46"], + ["account-home-other-account-home-account", "14"], + ["account-home-other-account-home-end", "9"], + ["account-home-other-account-home-home", "2"], + ["account-home-other-account-home-other", "7"], + ["account-home-other-account-home-product", "17"], + ["account-home-other-account-home-search", "5"], + ["account-home-other-account-other-account", "13"], + ["account-home-other-account-other-end", "4"], + ["account-home-other-account-other-home", "4"], + ["account-home-other-account-other-other", "19"], + ["account-home-other-account-other-product", "5"], + ["account-home-other-account-product-account", "15"], + ["account-home-other-account-product-end", "14"], + ["account-home-other-account-product-home", "10"], + ["account-home-other-account-product-other", "1"], + ["account-home-other-account-product-product", "16"], + ["account-home-other-account-product-search", "2"], + ["account-home-other-account-search-account", "2"], + ["account-home-other-account-search-product", "6"], + ["account-home-other-account-search-search", "2"], + ["account-home-other-end", "243"], + ["account-home-other-home-account-account", "24"], + ["account-home-other-home-account-end", "9"], + ["account-home-other-home-account-home", "10"], + ["account-home-other-home-account-other", "2"], + ["account-home-other-home-account-product", "7"], + ["account-home-other-home-end", "76"], + ["account-home-other-home-home-account", "8"], + ["account-home-other-home-home-end", "8"], + ["account-home-other-home-home-home", "16"], + ["account-home-other-home-home-other", "7"], + ["account-home-other-home-home-product", "8"], + ["account-home-other-home-home-search", "1"], + ["account-home-other-home-other-account", "3"], + ["account-home-other-home-other-home", "6"], + ["account-home-other-home-other-other", "6"], + ["account-home-other-home-other-product", "4"], + ["account-home-other-home-product-account", "13"], + ["account-home-other-home-product-end", "20"], + ["account-home-other-home-product-home", "54"], + ["account-home-other-home-product-other", "1"], + ["account-home-other-home-product-product", "33"], + ["account-home-other-home-product-search", "4"], + ["account-home-other-home-search-account", "4"], + ["account-home-other-home-search-home", "1"], + ["account-home-other-home-search-product", "9"], + ["account-home-other-home-search-search", "5"], + ["account-home-other-other-account-account", "41"], + ["account-home-other-other-account-end", "19"], + ["account-home-other-other-account-home", "4"], + ["account-home-other-other-account-other", "13"], + ["account-home-other-other-account-product", "12"], + ["account-home-other-other-account-search", "3"], + ["account-home-other-other-end", "122"], + ["account-home-other-other-home-account", "30"], + ["account-home-other-other-home-end", "27"], + ["account-home-other-other-home-home", "12"], + ["account-home-other-other-home-other", "16"], + ["account-home-other-other-home-product", "39"], + ["account-home-other-other-home-search", "4"], + ["account-home-other-other-other-account", "56"], + ["account-home-other-other-other-end", "42"], + ["account-home-other-other-other-home", "52"], + ["account-home-other-other-other-other", "105"], + ["account-home-other-other-other-product", "80"], + ["account-home-other-other-other-search", "6"], + ["account-home-other-other-product-account", "29"], + ["account-home-other-other-product-end", "42"], + ["account-home-other-other-product-home", "27"], + ["account-home-other-other-product-other", "34"], + ["account-home-other-other-product-product", "69"], + ["account-home-other-other-product-search", "6"], + ["account-home-other-other-search-account", "5"], + ["account-home-other-other-search-end", "2"], + ["account-home-other-other-search-product", "5"], + ["account-home-other-other-search-search", "3"], + ["account-home-other-product-account-account", "37"], + ["account-home-other-product-account-end", "11"], + ["account-home-other-product-account-home", "6"], + ["account-home-other-product-account-other", "5"], + ["account-home-other-product-account-product", "22"], + ["account-home-other-product-account-search", "1"], + ["account-home-other-product-end", "147"], + ["account-home-other-product-home-account", "8"], + ["account-home-other-product-home-end", "12"], + ["account-home-other-product-home-home", "3"], + ["account-home-other-product-home-other", "8"], + ["account-home-other-product-home-product", "19"], + ["account-home-other-product-home-search", "4"], + ["account-home-other-product-other-account", "5"], + ["account-home-other-product-other-end", "3"], + ["account-home-other-product-other-home", "1"], + ["account-home-other-product-other-other", "11"], + ["account-home-other-product-other-product", "19"], + ["account-home-other-product-product-account", "21"], + ["account-home-other-product-product-end", "58"], + ["account-home-other-product-product-home", "25"], + ["account-home-other-product-product-other", "10"], + ["account-home-other-product-product-product", "154"], + ["account-home-other-product-product-search", "9"], + ["account-home-other-product-search-account", "5"], + ["account-home-other-product-search-product", "14"], + ["account-home-other-product-search-search", "4"], + ["account-home-other-search-account-account", "4"], + ["account-home-other-search-account-product", "4"], + ["account-home-other-search-account-search", "1"], + ["account-home-other-search-end", "2"], + ["account-home-other-search-home-product", "1"], + ["account-home-other-search-product-account", "3"], + ["account-home-other-search-product-end", "6"], + ["account-home-other-search-product-product", "12"], + ["account-home-other-search-product-search", "1"], + ["account-home-other-search-search-home", "1"], + ["account-home-other-search-search-product", "3"], + ["account-home-other-search-search-search", "2"], + ["account-home-product-account-account-account", "497"], + ["account-home-product-account-account-end", "144"], + ["account-home-product-account-account-home", "159"], + ["account-home-product-account-account-other", "38"], + ["account-home-product-account-account-product", "602"], + ["account-home-product-account-account-search", "35"], + ["account-home-product-account-end", "414"], + ["account-home-product-account-home-account", "108"], + ["account-home-product-account-home-end", "80"], + ["account-home-product-account-home-home", "37"], + ["account-home-product-account-home-other", "5"], + ["account-home-product-account-home-product", "301"], + ["account-home-product-account-home-search", "45"], + ["account-home-product-account-other-account", "11"], + ["account-home-product-account-other-end", "12"], + ["account-home-product-account-other-home", "9"], + ["account-home-product-account-other-other", "35"], + ["account-home-product-account-other-product", "49"], + ["account-home-product-account-product-account", "282"], + ["account-home-product-account-product-end", "227"], + ["account-home-product-account-product-home", "143"], + ["account-home-product-account-product-other", "17"], + ["account-home-product-account-product-product", "557"], + ["account-home-product-account-product-search", "51"], + ["account-home-product-account-search-account", "37"], + ["account-home-product-account-search-end", "2"], + ["account-home-product-account-search-product", "94"], + ["account-home-product-account-search-search", "17"], + ["account-home-product-end", "7815"], + ["account-home-product-home-account-account", "228"], + ["account-home-product-home-account-end", "51"], + ["account-home-product-home-account-home", "207"], + ["account-home-product-home-account-other", "25"], + ["account-home-product-home-account-product", "204"], + ["account-home-product-home-account-search", "16"], + ["account-home-product-home-end", "1347"], + ["account-home-product-home-home-account", "55"], + ["account-home-product-home-home-end", "71"], + ["account-home-product-home-home-home", "114"], + ["account-home-product-home-home-other", "10"], + ["account-home-product-home-home-product", "182"], + ["account-home-product-home-home-search", "36"], + ["account-home-product-home-other-account", "13"], + ["account-home-product-home-other-end", "7"], + ["account-home-product-home-other-home", "26"], + ["account-home-product-home-other-other", "34"], + ["account-home-product-home-other-product", "37"], + ["account-home-product-home-other-search", "2"], + ["account-home-product-home-product-account", "316"], + ["account-home-product-home-product-end", "687"], + ["account-home-product-home-product-home", "1199"], + ["account-home-product-home-product-other", "28"], + ["account-home-product-home-product-product", "921"], + ["account-home-product-home-product-search", "112"], + ["account-home-product-home-search-account", "61"], + ["account-home-product-home-search-end", "18"], + ["account-home-product-home-search-home", "33"], + ["account-home-product-home-search-product", "241"], + ["account-home-product-home-search-search", "68"], + ["account-home-product-other-account-account", "19"], + ["account-home-product-other-account-end", "6"], + ["account-home-product-other-account-home", "5"], + ["account-home-product-other-account-other", "2"], + ["account-home-product-other-account-product", "11"], + ["account-home-product-other-account-search", "1"], + ["account-home-product-other-end", "49"], + ["account-home-product-other-home-account", "5"], + ["account-home-product-other-home-end", "10"], + ["account-home-product-other-home-home", "5"], + ["account-home-product-other-home-other", "3"], + ["account-home-product-other-home-product", "15"], + ["account-home-product-other-home-search", "2"], + ["account-home-product-other-other-account", "11"], + ["account-home-product-other-other-end", "12"], + ["account-home-product-other-other-home", "8"], + ["account-home-product-other-other-other", "49"], + ["account-home-product-other-other-product", "24"], + ["account-home-product-other-other-search", "5"], + ["account-home-product-other-product-account", "12"], + ["account-home-product-other-product-end", "21"], + ["account-home-product-other-product-home", "13"], + ["account-home-product-other-product-other", "6"], + ["account-home-product-other-product-product", "61"], + ["account-home-product-other-product-search", "3"], + ["account-home-product-other-search-other", "1"], + ["account-home-product-other-search-product", "6"], + ["account-home-product-other-search-search", "1"], + ["account-home-product-product-account-account", "466"], + ["account-home-product-product-account-end", "148"], + ["account-home-product-product-account-home", "176"], + ["account-home-product-product-account-other", "42"], + ["account-home-product-product-account-product", "426"], + ["account-home-product-product-account-search", "58"], + ["account-home-product-product-end", "2879"], + ["account-home-product-product-home-account", "137"], + ["account-home-product-product-home-end", "266"], + ["account-home-product-product-home-home", "76"], + ["account-home-product-product-home-other", "32"], + ["account-home-product-product-home-product", "825"], + ["account-home-product-product-home-search", "131"], + ["account-home-product-product-other-account", "13"], + ["account-home-product-product-other-end", "14"], + ["account-home-product-product-other-home", "8"], + ["account-home-product-product-other-other", "32"], + ["account-home-product-product-other-product", "38"], + ["account-home-product-product-other-search", "1"], + ["account-home-product-product-product-account", "477"], + ["account-home-product-product-product-end", "1254"], + ["account-home-product-product-product-home", "486"], + ["account-home-product-product-product-other", "50"], + ["account-home-product-product-product-product", "3679"], + ["account-home-product-product-product-search", "217"], + ["account-home-product-product-search-account", "70"], + ["account-home-product-product-search-end", "9"], + ["account-home-product-product-search-home", "6"], + ["account-home-product-product-search-other", "2"], + ["account-home-product-product-search-product", "359"], + ["account-home-product-product-search-search", "95"], + ["account-home-product-search-account-account", "99"], + ["account-home-product-search-account-end", "18"], + ["account-home-product-search-account-home", "13"], + ["account-home-product-search-account-other", "2"], + ["account-home-product-search-account-product", "84"], + ["account-home-product-search-account-search", "13"], + ["account-home-product-search-end", "50"], + ["account-home-product-search-home-account", "4"], + ["account-home-product-search-home-end", "5"], + ["account-home-product-search-home-home", "2"], + ["account-home-product-search-home-other", "1"], + ["account-home-product-search-home-product", "5"], + ["account-home-product-search-home-search", "5"], + ["account-home-product-search-other-product", "1"], + ["account-home-product-search-other-search", "1"], + ["account-home-product-search-product-account", "61"], + ["account-home-product-search-product-end", "156"], + ["account-home-product-search-product-home", "77"], + ["account-home-product-search-product-other", "10"], + ["account-home-product-search-product-product", "389"], + ["account-home-product-search-product-search", "127"], + ["account-home-product-search-search-account", "17"], + ["account-home-product-search-search-end", "8"], + ["account-home-product-search-search-home", "7"], + ["account-home-product-search-search-product", "120"], + ["account-home-product-search-search-search", "49"], + ["account-home-search-account-account-account", "190"], + ["account-home-search-account-account-end", "53"], + ["account-home-search-account-account-home", "36"], + ["account-home-search-account-account-other", "10"], + ["account-home-search-account-account-product", "300"], + ["account-home-search-account-account-search", "45"], + ["account-home-search-account-end", "133"], + ["account-home-search-account-home-account", "20"], + ["account-home-search-account-home-end", "20"], + ["account-home-search-account-home-home", "7"], + ["account-home-search-account-home-other", "1"], + ["account-home-search-account-home-product", "19"], + ["account-home-search-account-home-search", "23"], + ["account-home-search-account-other-account", "2"], + ["account-home-search-account-other-end", "1"], + ["account-home-search-account-other-other", "6"], + ["account-home-search-account-other-product", "22"], + ["account-home-search-account-other-search", "1"], + ["account-home-search-account-product-account", "89"], + ["account-home-search-account-product-end", "127"], + ["account-home-search-account-product-home", "47"], + ["account-home-search-account-product-other", "3"], + ["account-home-search-account-product-product", "202"], + ["account-home-search-account-product-search", "32"], + ["account-home-search-account-search-account", "43"], + ["account-home-search-account-search-end", "5"], + ["account-home-search-account-search-home", "2"], + ["account-home-search-account-search-product", "28"], + ["account-home-search-account-search-search", "17"], + ["account-home-search-end", "345"], + ["account-home-search-home-account-account", "8"], + ["account-home-search-home-account-end", "1"], + ["account-home-search-home-account-home", "26"], + ["account-home-search-home-account-other", "1"], + ["account-home-search-home-account-product", "4"], + ["account-home-search-home-account-search", "2"], + ["account-home-search-home-end", "26"], + ["account-home-search-home-home-account", "4"], + ["account-home-search-home-home-end", "2"], + ["account-home-search-home-home-home", "17"], + ["account-home-search-home-home-other", "2"], + ["account-home-search-home-home-product", "8"], + ["account-home-search-home-home-search", "3"], + ["account-home-search-home-other-account", "1"], + ["account-home-search-home-other-home", "2"], + ["account-home-search-home-other-other", "1"], + ["account-home-search-home-product-account", "4"], + ["account-home-search-home-product-end", "10"], + ["account-home-search-home-product-home", "93"], + ["account-home-search-home-product-product", "19"], + ["account-home-search-home-product-search", "4"], + ["account-home-search-home-search-account", "7"], + ["account-home-search-home-search-end", "7"], + ["account-home-search-home-search-home", "23"], + ["account-home-search-home-search-product", "29"], + ["account-home-search-home-search-search", "7"], + ["account-home-search-other-end", "1"], + ["account-home-search-other-home-product", "1"], + ["account-home-search-other-home-search", "1"], + ["account-home-search-other-other-end", "2"], + ["account-home-search-other-other-other", "3"], + ["account-home-search-other-other-product", "1"], + ["account-home-search-other-product-account", "2"], + ["account-home-search-other-product-end", "2"], + ["account-home-search-other-product-other", "3"], + ["account-home-search-other-product-product", "7"], + ["account-home-search-other-product-search", "1"], + ["account-home-search-product-account-account", "135"], + ["account-home-search-product-account-end", "33"], + ["account-home-search-product-account-home", "33"], + ["account-home-search-product-account-other", "9"], + ["account-home-search-product-account-product", "110"], + ["account-home-search-product-account-search", "29"], + ["account-home-search-product-end", "1372"], + ["account-home-search-product-home-account", "21"], + ["account-home-search-product-home-end", "74"], + ["account-home-search-product-home-home", "32"], + ["account-home-search-product-home-other", "7"], + ["account-home-search-product-home-product", "107"], + ["account-home-search-product-home-search", "132"], + ["account-home-search-product-other-account", "1"], + ["account-home-search-product-other-end", "6"], + ["account-home-search-product-other-home", "1"], + ["account-home-search-product-other-other", "12"], + ["account-home-search-product-other-product", "11"], + ["account-home-search-product-product-account", "128"], + ["account-home-search-product-product-end", "585"], + ["account-home-search-product-product-home", "155"], + ["account-home-search-product-product-other", "10"], + ["account-home-search-product-product-product", "1350"], + ["account-home-search-product-product-search", "397"], + ["account-home-search-product-search-account", "26"], + ["account-home-search-product-search-end", "39"], + ["account-home-search-product-search-home", "17"], + ["account-home-search-product-search-other", "4"], + ["account-home-search-product-search-product", "648"], + ["account-home-search-product-search-search", "147"], + ["account-home-search-search-account-account", "79"], + ["account-home-search-search-account-end", "13"], + ["account-home-search-search-account-home", "4"], + ["account-home-search-search-account-other", "3"], + ["account-home-search-search-account-product", "50"], + ["account-home-search-search-account-search", "20"], + ["account-home-search-search-end", "100"], + ["account-home-search-search-home-account", "3"], + ["account-home-search-search-home-end", "6"], + ["account-home-search-search-home-home", "6"], + ["account-home-search-search-home-product", "10"], + ["account-home-search-search-home-search", "15"], + ["account-home-search-search-other-other", "2"], + ["account-home-search-search-other-product", "2"], + ["account-home-search-search-product-account", "67"], + ["account-home-search-search-product-end", "203"], + ["account-home-search-search-product-home", "55"], + ["account-home-search-search-product-other", "5"], + ["account-home-search-search-product-product", "414"], + ["account-home-search-search-product-search", "157"], + ["account-home-search-search-search-account", "44"], + ["account-home-search-search-search-end", "27"], + ["account-home-search-search-search-home", "13"], + ["account-home-search-search-search-other", "5"], + ["account-home-search-search-search-product", "221"], + ["account-home-search-search-search-search", "158"], + ["account-other-account-account-account-account", "732"], + ["account-other-account-account-account-end", "157"], + ["account-other-account-account-account-home", "27"], + ["account-other-account-account-account-other", "151"], + ["account-other-account-account-account-product", "241"], + ["account-other-account-account-account-search", "32"], + ["account-other-account-account-end", "335"], + ["account-other-account-account-home-account", "17"], + ["account-other-account-account-home-end", "15"], + ["account-other-account-account-home-home", "14"], + ["account-other-account-account-home-other", "10"], + ["account-other-account-account-home-product", "31"], + ["account-other-account-account-home-search", "10"], + ["account-other-account-account-other-account", "84"], + ["account-other-account-account-other-end", "40"], + ["account-other-account-account-other-home", "6"], + ["account-other-account-account-other-other", "98"], + ["account-other-account-account-other-product", "59"], + ["account-other-account-account-other-search", "3"], + ["account-other-account-account-product-account", "241"], + ["account-other-account-account-product-end", "163"], + ["account-other-account-account-product-home", "22"], + ["account-other-account-account-product-other", "38"], + ["account-other-account-account-product-product", "250"], + ["account-other-account-account-product-search", "29"], + ["account-other-account-account-search-account", "30"], + ["account-other-account-account-search-end", "5"], + ["account-other-account-account-search-home", "1"], + ["account-other-account-account-search-product", "31"], + ["account-other-account-account-search-search", "11"], + ["account-other-account-end", "1023"], + ["account-other-account-home-account-account", "18"], + ["account-other-account-home-account-end", "5"], + ["account-other-account-home-account-home", "4"], + ["account-other-account-home-account-other", "3"], + ["account-other-account-home-account-product", "14"], + ["account-other-account-home-account-search", "2"], + ["account-other-account-home-end", "41"], + ["account-other-account-home-home-account", "7"], + ["account-other-account-home-home-end", "2"], + ["account-other-account-home-home-home", "2"], + ["account-other-account-home-home-other", "7"], + ["account-other-account-home-home-product", "9"], + ["account-other-account-home-other-account", "7"], + ["account-other-account-home-other-end", "3"], + ["account-other-account-home-other-other", "8"], + ["account-other-account-home-other-product", "1"], + ["account-other-account-home-product-account", "25"], + ["account-other-account-home-product-end", "23"], + ["account-other-account-home-product-home", "8"], + ["account-other-account-home-product-other", "6"], + ["account-other-account-home-product-product", "30"], + ["account-other-account-home-product-search", "5"], + ["account-other-account-home-search-account", "6"], + ["account-other-account-home-search-end", "1"], + ["account-other-account-home-search-home", "2"], + ["account-other-account-home-search-product", "12"], + ["account-other-account-home-search-search", "4"], + ["account-other-account-other-account-account", "99"], + ["account-other-account-other-account-end", "26"], + ["account-other-account-other-account-home", "5"], + ["account-other-account-other-account-other", "98"], + ["account-other-account-other-account-product", "40"], + ["account-other-account-other-account-search", "11"], + ["account-other-account-other-end", "163"], + ["account-other-account-other-home-account", "3"], + ["account-other-account-other-home-end", "12"], + ["account-other-account-other-home-home", "7"], + ["account-other-account-other-home-other", "7"], + ["account-other-account-other-home-product", "8"], + ["account-other-account-other-home-search", "1"], + ["account-other-account-other-other-account", "81"], + ["account-other-account-other-other-end", "80"], + ["account-other-account-other-other-home", "14"], + ["account-other-account-other-other-other", "132"], + ["account-other-account-other-other-product", "57"], + ["account-other-account-other-other-search", "5"], + ["account-other-account-other-product-account", "46"], + ["account-other-account-other-product-end", "71"], + ["account-other-account-other-product-home", "4"], + ["account-other-account-other-product-other", "31"], + ["account-other-account-other-product-product", "116"], + ["account-other-account-other-product-search", "8"], + ["account-other-account-other-search-account", "2"], + ["account-other-account-other-search-end", "2"], + ["account-other-account-other-search-other", "2"], + ["account-other-account-other-search-product", "11"], + ["account-other-account-other-search-search", "7"], + ["account-other-account-product-account-account", "193"], + ["account-other-account-product-account-end", "43"], + ["account-other-account-product-account-home", "8"], + ["account-other-account-product-account-other", "46"], + ["account-other-account-product-account-product", "144"], + ["account-other-account-product-account-search", "16"], + ["account-other-account-product-end", "331"], + ["account-other-account-product-home-account", "7"], + ["account-other-account-product-home-end", "7"], + ["account-other-account-product-home-home", "5"], + ["account-other-account-product-home-other", "3"], + ["account-other-account-product-home-product", "25"], + ["account-other-account-product-home-search", "8"], + ["account-other-account-product-other-account", "19"], + ["account-other-account-product-other-end", "12"], + ["account-other-account-product-other-home", "5"], + ["account-other-account-product-other-other", "36"], + ["account-other-account-product-other-product", "18"], + ["account-other-account-product-other-search", "1"], + ["account-other-account-product-product-account", "100"], + ["account-other-account-product-product-end", "97"], + ["account-other-account-product-product-home", "11"], + ["account-other-account-product-product-other", "23"], + ["account-other-account-product-product-product", "264"], + ["account-other-account-product-product-search", "22"], + ["account-other-account-product-search-account", "12"], + ["account-other-account-product-search-end", "2"], + ["account-other-account-product-search-product", "25"], + ["account-other-account-product-search-search", "6"], + ["account-other-account-search-account-account", "33"], + ["account-other-account-search-account-end", "8"], + ["account-other-account-search-account-home", "1"], + ["account-other-account-search-account-other", "1"], + ["account-other-account-search-account-product", "28"], + ["account-other-account-search-account-search", "4"], + ["account-other-account-search-end", "11"], + ["account-other-account-search-home-product", "1"], + ["account-other-account-search-home-search", "1"], + ["account-other-account-search-other-end", "1"], + ["account-other-account-search-other-other", "2"], + ["account-other-account-search-product-account", "16"], + ["account-other-account-search-product-end", "18"], + ["account-other-account-search-product-home", "5"], + ["account-other-account-search-product-other", "4"], + ["account-other-account-search-product-product", "77"], + ["account-other-account-search-product-search", "22"], + ["account-other-account-search-search-account", "7"], + ["account-other-account-search-search-end", "4"], + ["account-other-account-search-search-product", "18"], + ["account-other-account-search-search-search", "8"], + ["account-other-end", "6857"], + ["account-other-home-account-account-account", "62"], + ["account-other-home-account-account-end", "12"], + ["account-other-home-account-account-home", "17"], + ["account-other-home-account-account-other", "11"], + ["account-other-home-account-account-product", "33"], + ["account-other-home-account-account-search", "5"], + ["account-other-home-account-end", "37"], + ["account-other-home-account-home-account", "7"], + ["account-other-home-account-home-end", "4"], + ["account-other-home-account-home-home", "3"], + ["account-other-home-account-home-other", "6"], + ["account-other-home-account-home-product", "11"], + ["account-other-home-account-home-search", "2"], + ["account-other-home-account-other-account", "3"], + ["account-other-home-account-other-end", "2"], + ["account-other-home-account-other-home", "11"], + ["account-other-home-account-other-other", "7"], + ["account-other-home-account-other-product", "3"], + ["account-other-home-account-product-account", "22"], + ["account-other-home-account-product-end", "18"], + ["account-other-home-account-product-home", "9"], + ["account-other-home-account-product-other", "6"], + ["account-other-home-account-product-product", "16"], + ["account-other-home-account-product-search", "4"], + ["account-other-home-account-search-account", "3"], + ["account-other-home-account-search-home", "1"], + ["account-other-home-account-search-product", "5"], + ["account-other-home-account-search-search", "3"], + ["account-other-home-end", "478"], + ["account-other-home-home-account-account", "22"], + ["account-other-home-home-account-end", "3"], + ["account-other-home-home-account-home", "1"], + ["account-other-home-home-account-other", "8"], + ["account-other-home-home-account-product", "5"], + ["account-other-home-home-account-search", "1"], + ["account-other-home-home-end", "24"], + ["account-other-home-home-home-account", "3"], + ["account-other-home-home-home-end", "6"], + ["account-other-home-home-home-home", "6"], + ["account-other-home-home-home-other", "5"], + ["account-other-home-home-home-product", "6"], + ["account-other-home-home-home-search", "2"], + ["account-other-home-home-other-account", "19"], + ["account-other-home-home-other-end", "9"], + ["account-other-home-home-other-home", "2"], + ["account-other-home-home-other-other", "17"], + ["account-other-home-home-other-product", "12"], + ["account-other-home-home-other-search", "2"], + ["account-other-home-home-product-account", "11"], + ["account-other-home-home-product-end", "7"], + ["account-other-home-home-product-home", "10"], + ["account-other-home-home-product-other", "1"], + ["account-other-home-home-product-product", "11"], + ["account-other-home-home-product-search", "1"], + ["account-other-home-home-search-account", "4"], + ["account-other-home-home-search-end", "1"], + ["account-other-home-home-search-home", "1"], + ["account-other-home-home-search-product", "10"], + ["account-other-home-home-search-search", "5"], + ["account-other-home-other-account-account", "9"], + ["account-other-home-other-account-end", "6"], + ["account-other-home-other-account-home", "2"], + ["account-other-home-other-account-other", "2"], + ["account-other-home-other-account-product", "2"], + ["account-other-home-other-end", "15"], + ["account-other-home-other-home-account", "3"], + ["account-other-home-other-home-end", "6"], + ["account-other-home-other-home-home", "2"], + ["account-other-home-other-home-other", "2"], + ["account-other-home-other-home-product", "3"], + ["account-other-home-other-other-account", "2"], + ["account-other-home-other-other-end", "7"], + ["account-other-home-other-other-home", "4"], + ["account-other-home-other-other-other", "18"], + ["account-other-home-other-other-product", "10"], + ["account-other-home-other-product-account", "5"], + ["account-other-home-other-product-end", "9"], + ["account-other-home-other-product-home", "3"], + ["account-other-home-other-product-other", "1"], + ["account-other-home-other-product-product", "9"], + ["account-other-home-other-search-account", "2"], + ["account-other-home-other-search-end", "1"], + ["account-other-home-product-account-account", "70"], + ["account-other-home-product-account-end", "12"], + ["account-other-home-product-account-home", "20"], + ["account-other-home-product-account-other", "15"], + ["account-other-home-product-account-product", "48"], + ["account-other-home-product-account-search", "8"], + ["account-other-home-product-end", "227"], + ["account-other-home-product-home-account", "20"], + ["account-other-home-product-home-end", "35"], + ["account-other-home-product-home-home", "9"], + ["account-other-home-product-home-other", "9"], + ["account-other-home-product-home-product", "80"], + ["account-other-home-product-home-search", "10"], + ["account-other-home-product-other-account", "10"], + ["account-other-home-product-other-end", "3"], + ["account-other-home-product-other-home", "6"], + ["account-other-home-product-other-other", "11"], + ["account-other-home-product-other-product", "5"], + ["account-other-home-product-other-search", "1"], + ["account-other-home-product-product-account", "50"], + ["account-other-home-product-product-end", "69"], + ["account-other-home-product-product-home", "34"], + ["account-other-home-product-product-other", "13"], + ["account-other-home-product-product-product", "145"], + ["account-other-home-product-product-search", "24"], + ["account-other-home-product-search-account", "7"], + ["account-other-home-product-search-end", "4"], + ["account-other-home-product-search-product", "29"], + ["account-other-home-product-search-search", "8"], + ["account-other-home-search-account-account", "14"], + ["account-other-home-search-account-end", "5"], + ["account-other-home-search-account-home", "2"], + ["account-other-home-search-account-other", "3"], + ["account-other-home-search-account-product", "7"], + ["account-other-home-search-end", "5"], + ["account-other-home-search-home-end", "1"], + ["account-other-home-search-other-end", "1"], + ["account-other-home-search-product-account", "10"], + ["account-other-home-search-product-end", "21"], + ["account-other-home-search-product-home", "7"], + ["account-other-home-search-product-other", "3"], + ["account-other-home-search-product-product", "46"], + ["account-other-home-search-product-search", "14"], + ["account-other-home-search-search-account", "1"], + ["account-other-home-search-search-end", "2"], + ["account-other-home-search-search-product", "17"], + ["account-other-home-search-search-search", "12"], + ["account-other-other-account-account-account", "485"], + ["account-other-other-account-account-end", "124"], + ["account-other-other-account-account-home", "34"], + ["account-other-other-account-account-other", "173"], + ["account-other-other-account-account-product", "182"], + ["account-other-other-account-account-search", "29"], + ["account-other-other-account-end", "453"], + ["account-other-other-account-home-account", "26"], + ["account-other-other-account-home-end", "21"], + ["account-other-other-account-home-home", "12"], + ["account-other-other-account-home-other", "12"], + ["account-other-other-account-home-product", "38"], + ["account-other-other-account-home-search", "12"], + ["account-other-other-account-other-account", "66"], + ["account-other-other-account-other-end", "38"], + ["account-other-other-account-other-home", "11"], + ["account-other-other-account-other-other", "405"], + ["account-other-other-account-other-product", "25"], + ["account-other-other-account-other-search", "1"], + ["account-other-other-account-product-account", "129"], + ["account-other-other-account-product-end", "77"], + ["account-other-other-account-product-home", "7"], + ["account-other-other-account-product-other", "29"], + ["account-other-other-account-product-product", "119"], + ["account-other-other-account-product-search", "5"], + ["account-other-other-account-search-account", "19"], + ["account-other-other-account-search-end", "3"], + ["account-other-other-account-search-other", "2"], + ["account-other-other-account-search-product", "47"], + ["account-other-other-account-search-search", "10"], + ["account-other-other-end", "4032"], + ["account-other-other-home-account-account", "54"], + ["account-other-other-home-account-end", "15"], + ["account-other-other-home-account-home", "20"], + ["account-other-other-home-account-other", "18"], + ["account-other-other-home-account-product", "28"], + ["account-other-other-home-account-search", "1"], + ["account-other-other-home-end", "214"], + ["account-other-other-home-home-account", "17"], + ["account-other-other-home-home-end", "13"], + ["account-other-other-home-home-home", "13"], + ["account-other-other-home-home-other", "22"], + ["account-other-other-home-home-product", "17"], + ["account-other-other-home-home-search", "6"], + ["account-other-other-home-other-account", "8"], + ["account-other-other-home-other-end", "4"], + ["account-other-other-home-other-home", "15"], + ["account-other-other-home-other-other", "59"], + ["account-other-other-home-other-product", "9"], + ["account-other-other-home-other-search", "2"], + ["account-other-other-home-product-account", "70"], + ["account-other-other-home-product-end", "73"], + ["account-other-other-home-product-home", "56"], + ["account-other-other-home-product-other", "17"], + ["account-other-other-home-product-product", "97"], + ["account-other-other-home-product-search", "10"], + ["account-other-other-home-search-account", "19"], + ["account-other-other-home-search-home", "1"], + ["account-other-other-home-search-other", "1"], + ["account-other-other-home-search-product", "33"], + ["account-other-other-home-search-search", "6"], + ["account-other-other-other-account-account", "564"], + ["account-other-other-other-account-end", "258"], + ["account-other-other-other-account-home", "70"], + ["account-other-other-other-account-other", "258"], + ["account-other-other-other-account-product", "199"], + ["account-other-other-other-account-search", "52"], + ["account-other-other-other-end", "1689"], + ["account-other-other-other-home-account", "98"], + ["account-other-other-other-home-end", "113"], + ["account-other-other-other-home-home", "41"], + ["account-other-other-other-home-other", "25"], + ["account-other-other-other-home-product", "228"], + ["account-other-other-other-home-search", "24"], + ["account-other-other-other-other-account", "348"], + ["account-other-other-other-other-end", "444"], + ["account-other-other-other-other-home", "100"], + ["account-other-other-other-other-other", "1387"], + ["account-other-other-other-other-product", "454"], + ["account-other-other-other-other-search", "55"], + ["account-other-other-other-product-account", "322"], + ["account-other-other-other-product-end", "478"], + ["account-other-other-other-product-home", "77"], + ["account-other-other-other-product-other", "262"], + ["account-other-other-other-product-product", "664"], + ["account-other-other-other-product-search", "57"], + ["account-other-other-other-search-account", "39"], + ["account-other-other-other-search-end", "4"], + ["account-other-other-other-search-home", "2"], + ["account-other-other-other-search-other", "5"], + ["account-other-other-other-search-product", "95"], + ["account-other-other-other-search-search", "39"], + ["account-other-other-product-account-account", "236"], + ["account-other-other-product-account-end", "94"], + ["account-other-other-product-account-home", "20"], + ["account-other-other-product-account-other", "178"], + ["account-other-other-product-account-product", "148"], + ["account-other-other-product-account-search", "36"], + ["account-other-other-product-end", "1259"], + ["account-other-other-product-home-account", "28"], + ["account-other-other-product-home-end", "41"], + ["account-other-other-product-home-home", "12"], + ["account-other-other-product-home-other", "15"], + ["account-other-other-product-home-product", "62"], + ["account-other-other-product-home-search", "18"], + ["account-other-other-product-other-account", "61"], + ["account-other-other-product-other-end", "63"], + ["account-other-other-product-other-home", "10"], + ["account-other-other-product-other-other", "415"], + ["account-other-other-product-other-product", "130"], + ["account-other-other-product-other-search", "11"], + ["account-other-other-product-product-account", "203"], + ["account-other-other-product-product-end", "349"], + ["account-other-other-product-product-home", "38"], + ["account-other-other-product-product-other", "139"], + ["account-other-other-product-product-product", "889"], + ["account-other-other-product-product-search", "48"], + ["account-other-other-product-search-account", "16"], + ["account-other-other-product-search-end", "5"], + ["account-other-other-product-search-home", "1"], + ["account-other-other-product-search-other", "4"], + ["account-other-other-product-search-product", "100"], + ["account-other-other-product-search-search", "25"], + ["account-other-other-search-account-account", "48"], + ["account-other-other-search-account-end", "4"], + ["account-other-other-search-account-home", "1"], + ["account-other-other-search-account-other", "6"], + ["account-other-other-search-account-product", "22"], + ["account-other-other-search-account-search", "8"], + ["account-other-other-search-end", "19"], + ["account-other-other-search-home-product", "1"], + ["account-other-other-search-other-account", "3"], + ["account-other-other-search-other-end", "1"], + ["account-other-other-search-other-other", "5"], + ["account-other-other-search-other-search", "1"], + ["account-other-other-search-product-account", "34"], + ["account-other-other-search-product-end", "59"], + ["account-other-other-search-product-home", "6"], + ["account-other-other-search-product-other", "15"], + ["account-other-other-search-product-product", "108"], + ["account-other-other-search-product-search", "27"], + ["account-other-other-search-search-account", "8"], + ["account-other-other-search-search-end", "7"], + ["account-other-other-search-search-other", "2"], + ["account-other-other-search-search-product", "42"], + ["account-other-other-search-search-search", "14"], + ["account-other-product-account-account-account", "343"], + ["account-other-product-account-account-end", "75"], + ["account-other-product-account-account-home", "19"], + ["account-other-product-account-account-other", "81"], + ["account-other-product-account-account-product", "315"], + ["account-other-product-account-account-search", "27"], + ["account-other-product-account-end", "269"], + ["account-other-product-account-home-account", "10"], + ["account-other-product-account-home-end", "7"], + ["account-other-product-account-home-home", "5"], + ["account-other-product-account-home-other", "2"], + ["account-other-product-account-home-product", "17"], + ["account-other-product-account-home-search", "4"], + ["account-other-product-account-other-account", "44"], + ["account-other-product-account-other-end", "40"], + ["account-other-product-account-other-home", "4"], + ["account-other-product-account-other-other", "61"], + ["account-other-product-account-other-product", "198"], + ["account-other-product-account-other-search", "4"], + ["account-other-product-account-product-account", "138"], + ["account-other-product-account-product-end", "101"], + ["account-other-product-account-product-home", "13"], + ["account-other-product-account-product-other", "41"], + ["account-other-product-account-product-product", "230"], + ["account-other-product-account-product-search", "16"], + ["account-other-product-account-search-account", "10"], + ["account-other-product-account-search-end", "1"], + ["account-other-product-account-search-other", "2"], + ["account-other-product-account-search-product", "49"], + ["account-other-product-account-search-search", "18"], + ["account-other-product-end", "4577"], + ["account-other-product-home-account-account", "32"], + ["account-other-product-home-account-end", "8"], + ["account-other-product-home-account-home", "9"], + ["account-other-product-home-account-other", "7"], + ["account-other-product-home-account-product", "10"], + ["account-other-product-home-end", "99"], + ["account-other-product-home-home-account", "8"], + ["account-other-product-home-home-end", "7"], + ["account-other-product-home-home-home", "2"], + ["account-other-product-home-home-other", "5"], + ["account-other-product-home-home-product", "10"], + ["account-other-product-home-home-search", "5"], + ["account-other-product-home-other-account", "8"], + ["account-other-product-home-other-end", "4"], + ["account-other-product-home-other-home", "3"], + ["account-other-product-home-other-other", "17"], + ["account-other-product-home-other-product", "14"], + ["account-other-product-home-product-account", "26"], + ["account-other-product-home-product-end", "43"], + ["account-other-product-home-product-home", "30"], + ["account-other-product-home-product-other", "4"], + ["account-other-product-home-product-product", "66"], + ["account-other-product-home-product-search", "9"], + ["account-other-product-home-search-account", "17"], + ["account-other-product-home-search-end", "4"], + ["account-other-product-home-search-product", "38"], + ["account-other-product-home-search-search", "15"], + ["account-other-product-other-account-account", "54"], + ["account-other-product-other-account-end", "23"], + ["account-other-product-other-account-home", "1"], + ["account-other-product-other-account-other", "43"], + ["account-other-product-other-account-product", "42"], + ["account-other-product-other-account-search", "4"], + ["account-other-product-other-end", "158"], + ["account-other-product-other-home-account", "3"], + ["account-other-product-other-home-end", "8"], + ["account-other-product-other-home-home", "4"], + ["account-other-product-other-home-other", "1"], + ["account-other-product-other-home-product", "13"], + ["account-other-product-other-home-search", "3"], + ["account-other-product-other-other-account", "37"], + ["account-other-product-other-other-end", "41"], + ["account-other-product-other-other-home", "7"], + ["account-other-product-other-other-other", "106"], + ["account-other-product-other-other-product", "104"], + ["account-other-product-other-other-search", "4"], + ["account-other-product-other-product-account", "81"], + ["account-other-product-other-product-end", "149"], + ["account-other-product-other-product-home", "14"], + ["account-other-product-other-product-other", "169"], + ["account-other-product-other-product-product", "237"], + ["account-other-product-other-product-search", "22"], + ["account-other-product-other-search-account", "8"], + ["account-other-product-other-search-other", "3"], + ["account-other-product-other-search-product", "16"], + ["account-other-product-other-search-search", "3"], + ["account-other-product-product-account-account", "237"], + ["account-other-product-product-account-end", "78"], + ["account-other-product-product-account-home", "15"], + ["account-other-product-product-account-other", "132"], + ["account-other-product-product-account-product", "215"], + ["account-other-product-product-account-search", "26"], + ["account-other-product-product-end", "1749"], + ["account-other-product-product-home-account", "21"], + ["account-other-product-product-home-end", "34"], + ["account-other-product-product-home-home", "14"], + ["account-other-product-product-home-other", "12"], + ["account-other-product-product-home-product", "76"], + ["account-other-product-product-home-search", "37"], + ["account-other-product-product-other-account", "29"], + ["account-other-product-product-other-end", "38"], + ["account-other-product-product-other-home", "4"], + ["account-other-product-product-other-other", "71"], + ["account-other-product-product-other-product", "151"], + ["account-other-product-product-other-search", "9"], + ["account-other-product-product-product-account", "309"], + ["account-other-product-product-product-end", "856"], + ["account-other-product-product-product-home", "106"], + ["account-other-product-product-product-other", "137"], + ["account-other-product-product-product-product", "3142"], + ["account-other-product-product-product-search", "150"], + ["account-other-product-product-search-account", "27"], + ["account-other-product-product-search-end", "6"], + ["account-other-product-product-search-other", "5"], + ["account-other-product-product-search-product", "211"], + ["account-other-product-product-search-search", "41"], + ["account-other-product-search-account-account", "29"], + ["account-other-product-search-account-end", "1"], + ["account-other-product-search-account-home", "1"], + ["account-other-product-search-account-other", "6"], + ["account-other-product-search-account-product", "29"], + ["account-other-product-search-account-search", "6"], + ["account-other-product-search-end", "22"], + ["account-other-product-search-home-end", "1"], + ["account-other-product-search-home-search", "2"], + ["account-other-product-search-other-home", "1"], + ["account-other-product-search-other-other", "1"], + ["account-other-product-search-other-product", "2"], + ["account-other-product-search-product-account", "28"], + ["account-other-product-search-product-end", "95"], + ["account-other-product-search-product-home", "13"], + ["account-other-product-search-product-other", "18"], + ["account-other-product-search-product-product", "213"], + ["account-other-product-search-product-search", "88"], + ["account-other-product-search-search-account", "11"], + ["account-other-product-search-search-end", "7"], + ["account-other-product-search-search-home", "1"], + ["account-other-product-search-search-other", "1"], + ["account-other-product-search-search-product", "53"], + ["account-other-product-search-search-search", "27"], + ["account-other-search-account-account-account", "60"], + ["account-other-search-account-account-end", "12"], + ["account-other-search-account-account-home", "1"], + ["account-other-search-account-account-other", "5"], + ["account-other-search-account-account-product", "46"], + ["account-other-search-account-account-search", "7"], + ["account-other-search-account-end", "15"], + ["account-other-search-account-home-search", "1"], + ["account-other-search-account-other-account", "6"], + ["account-other-search-account-other-end", "1"], + ["account-other-search-account-other-home", "1"], + ["account-other-search-account-other-other", "4"], + ["account-other-search-account-other-product", "10"], + ["account-other-search-account-other-search", "1"], + ["account-other-search-account-product-account", "26"], + ["account-other-search-account-product-end", "30"], + ["account-other-search-account-product-home", "2"], + ["account-other-search-account-product-other", "3"], + ["account-other-search-account-product-product", "28"], + ["account-other-search-account-product-search", "6"], + ["account-other-search-account-search-account", "11"], + ["account-other-search-account-search-end", "2"], + ["account-other-search-account-search-other", "2"], + ["account-other-search-account-search-product", "7"], + ["account-other-search-end", "49"], + ["account-other-search-home-account-account", "1"], + ["account-other-search-home-home-account", "1"], + ["account-other-search-home-home-end", "1"], + ["account-other-search-home-other-other", "1"], + ["account-other-search-home-product-end", "1"], + ["account-other-search-home-search-account", "1"], + ["account-other-search-home-search-product", "1"], + ["account-other-search-other-account-account", "1"], + ["account-other-search-other-account-end", "1"], + ["account-other-search-other-account-other", "1"], + ["account-other-search-other-account-product", "2"], + ["account-other-search-other-account-search", "1"], + ["account-other-search-other-end", "2"], + ["account-other-search-other-other-end", "1"], + ["account-other-search-other-other-other", "2"], + ["account-other-search-other-product-account", "1"], + ["account-other-search-other-product-end", "2"], + ["account-other-search-other-product-other", "1"], + ["account-other-search-other-product-product", "4"], + ["account-other-search-other-product-search", "1"], + ["account-other-search-other-search-account", "1"], + ["account-other-search-other-search-other", "1"], + ["account-other-search-other-search-product", "1"], + ["account-other-search-product-account-account", "24"], + ["account-other-search-product-account-end", "8"], + ["account-other-search-product-account-other", "9"], + ["account-other-search-product-account-product", "19"], + ["account-other-search-product-account-search", "3"], + ["account-other-search-product-end", "139"], + ["account-other-search-product-home-end", "4"], + ["account-other-search-product-home-home", "1"], + ["account-other-search-product-home-product", "7"], + ["account-other-search-product-home-search", "4"], + ["account-other-search-product-other-account", "3"], + ["account-other-search-product-other-end", "3"], + ["account-other-search-product-other-home", "1"], + ["account-other-search-product-other-other", "10"], + ["account-other-search-product-other-product", "6"], + ["account-other-search-product-other-search", "3"], + ["account-other-search-product-product-account", "27"], + ["account-other-search-product-product-end", "51"], + ["account-other-search-product-product-home", "4"], + ["account-other-search-product-product-other", "10"], + ["account-other-search-product-product-product", "169"], + ["account-other-search-product-product-search", "50"], + ["account-other-search-product-search-account", "5"], + ["account-other-search-product-search-end", "3"], + ["account-other-search-product-search-product", "72"], + ["account-other-search-product-search-search", "12"], + ["account-other-search-search-account-account", "5"], + ["account-other-search-search-account-end", "3"], + ["account-other-search-search-account-product", "4"], + ["account-other-search-search-account-search", "4"], + ["account-other-search-search-end", "6"], + ["account-other-search-search-home-home", "1"], + ["account-other-search-search-other-other", "1"], + ["account-other-search-search-other-product", "2"], + ["account-other-search-search-other-search", "1"], + ["account-other-search-search-product-account", "3"], + ["account-other-search-search-product-end", "25"], + ["account-other-search-search-product-home", "2"], + ["account-other-search-search-product-other", "3"], + ["account-other-search-search-product-product", "41"], + ["account-other-search-search-product-search", "17"], + ["account-other-search-search-search-account", "6"], + ["account-other-search-search-search-end", "4"], + ["account-other-search-search-search-other", "2"], + ["account-other-search-search-search-product", "21"], + ["account-other-search-search-search-search", "14"], + ["account-product-account-account-account-account", "3718"], + ["account-product-account-account-account-end", "704"], + ["account-product-account-account-account-home", "206"], + ["account-product-account-account-account-other", "275"], + ["account-product-account-account-account-product", "2300"], + ["account-product-account-account-account-search", "146"], + ["account-product-account-account-end", "1992"], + ["account-product-account-account-home-account", "109"], + ["account-product-account-account-home-end", "83"], + ["account-product-account-account-home-home", "58"], + ["account-product-account-account-home-other", "20"], + ["account-product-account-account-home-product", "205"], + ["account-product-account-account-home-search", "61"], + ["account-product-account-account-other-account", "83"], + ["account-product-account-account-other-end", "48"], + ["account-product-account-account-other-home", "21"], + ["account-product-account-account-other-other", "182"], + ["account-product-account-account-other-product", "201"], + ["account-product-account-account-other-search", "11"], + ["account-product-account-account-product-account", "2329"], + ["account-product-account-account-product-end", "1781"], + ["account-product-account-account-product-home", "330"], + ["account-product-account-account-product-other", "97"], + ["account-product-account-account-product-product", "2958"], + ["account-product-account-account-product-search", "326"], + ["account-product-account-account-search-account", "153"], + ["account-product-account-account-search-end", "18"], + ["account-product-account-account-search-home", "9"], + ["account-product-account-account-search-product", "190"], + ["account-product-account-account-search-search", "60"], + ["account-product-account-end", "6445"], + ["account-product-account-home-account-account", "94"], + ["account-product-account-home-account-end", "19"], + ["account-product-account-home-account-home", "21"], + ["account-product-account-home-account-other", "13"], + ["account-product-account-home-account-product", "95"], + ["account-product-account-home-account-search", "11"], + ["account-product-account-home-end", "240"], + ["account-product-account-home-home-account", "22"], + ["account-product-account-home-home-end", "12"], + ["account-product-account-home-home-home", "18"], + ["account-product-account-home-home-other", "15"], + ["account-product-account-home-home-product", "53"], + ["account-product-account-home-home-search", "18"], + ["account-product-account-home-other-account", "14"], + ["account-product-account-home-other-end", "5"], + ["account-product-account-home-other-home", "6"], + ["account-product-account-home-other-other", "13"], + ["account-product-account-home-other-product", "8"], + ["account-product-account-home-product-account", "107"], + ["account-product-account-home-product-end", "135"], + ["account-product-account-home-product-home", "117"], + ["account-product-account-home-product-other", "8"], + ["account-product-account-home-product-product", "250"], + ["account-product-account-home-product-search", "38"], + ["account-product-account-home-search-account", "42"], + ["account-product-account-home-search-end", "12"], + ["account-product-account-home-search-home", "4"], + ["account-product-account-home-search-product", "126"], + ["account-product-account-home-search-search", "38"], + ["account-product-account-other-account-account", "94"], + ["account-product-account-other-account-end", "31"], + ["account-product-account-other-account-home", "6"], + ["account-product-account-other-account-other", "25"], + ["account-product-account-other-account-product", "42"], + ["account-product-account-other-account-search", "5"], + ["account-product-account-other-end", "135"], + ["account-product-account-other-home-account", "11"], + ["account-product-account-other-home-end", "4"], + ["account-product-account-other-home-home", "4"], + ["account-product-account-other-home-other", "2"], + ["account-product-account-other-home-product", "19"], + ["account-product-account-other-home-search", "2"], + ["account-product-account-other-other-account", "86"], + ["account-product-account-other-other-end", "82"], + ["account-product-account-other-other-home", "21"], + ["account-product-account-other-other-other", "182"], + ["account-product-account-other-other-product", "118"], + ["account-product-account-other-other-search", "13"], + ["account-product-account-other-product-account", "84"], + ["account-product-account-other-product-end", "118"], + ["account-product-account-other-product-home", "17"], + ["account-product-account-other-product-other", "38"], + ["account-product-account-other-product-product", "268"], + ["account-product-account-other-product-search", "16"], + ["account-product-account-other-search-account", "8"], + ["account-product-account-other-search-product", "10"], + ["account-product-account-other-search-search", "1"], + ["account-product-account-product-account-account", "1972"], + ["account-product-account-product-account-end", "643"], + ["account-product-account-product-account-home", "155"], + ["account-product-account-product-account-other", "130"], + ["account-product-account-product-account-product", "4264"], + ["account-product-account-product-account-search", "164"], + ["account-product-account-product-end", "5559"], + ["account-product-account-product-home-account", "122"], + ["account-product-account-product-home-end", "185"], + ["account-product-account-product-home-home", "91"], + ["account-product-account-product-home-other", "20"], + ["account-product-account-product-home-product", "448"], + ["account-product-account-product-home-search", "152"], + ["account-product-account-product-other-account", "59"], + ["account-product-account-product-other-end", "33"], + ["account-product-account-product-other-home", "14"], + ["account-product-account-product-other-other", "116"], + ["account-product-account-product-other-product", "88"], + ["account-product-account-product-other-search", "4"], + ["account-product-account-product-product-account", "1576"], + ["account-product-account-product-product-end", "1915"], + ["account-product-account-product-product-home", "319"], + ["account-product-account-product-product-other", "102"], + ["account-product-account-product-product-product", "4420"], + ["account-product-account-product-product-search", "365"], + ["account-product-account-product-search-account", "231"], + ["account-product-account-product-search-end", "23"], + ["account-product-account-product-search-home", "9"], + ["account-product-account-product-search-product", "550"], + ["account-product-account-product-search-search", "131"], + ["account-product-account-search-account-account", "180"], + ["account-product-account-search-account-end", "34"], + ["account-product-account-search-account-home", "10"], + ["account-product-account-search-account-other", "12"], + ["account-product-account-search-account-product", "185"], + ["account-product-account-search-account-search", "46"], + ["account-product-account-search-end", "44"], + ["account-product-account-search-home-end", "3"], + ["account-product-account-search-home-product", "3"], + ["account-product-account-search-home-search", "1"], + ["account-product-account-search-other-account", "3"], + ["account-product-account-search-other-end", "1"], + ["account-product-account-search-other-home", "1"], + ["account-product-account-search-other-product", "4"], + ["account-product-account-search-other-search", "1"], + ["account-product-account-search-product-account", "95"], + ["account-product-account-search-product-end", "157"], + ["account-product-account-search-product-home", "14"], + ["account-product-account-search-product-other", "5"], + ["account-product-account-search-product-product", "343"], + ["account-product-account-search-product-search", "121"], + ["account-product-account-search-search-account", "45"], + ["account-product-account-search-search-end", "11"], + ["account-product-account-search-search-home", "1"], + ["account-product-account-search-search-product", "118"], + ["account-product-account-search-search-search", "60"], + ["account-product-end", "85911"], + ["account-product-home-account-account-account", "235"], + ["account-product-home-account-account-end", "75"], + ["account-product-home-account-account-home", "40"], + ["account-product-home-account-account-other", "14"], + ["account-product-home-account-account-product", "300"], + ["account-product-home-account-account-search", "22"], + ["account-product-home-account-end", "170"], + ["account-product-home-account-home-account", "40"], + ["account-product-home-account-home-end", "36"], + ["account-product-home-account-home-home", "19"], + ["account-product-home-account-home-other", "4"], + ["account-product-home-account-home-product", "61"], + ["account-product-home-account-home-search", "8"], + ["account-product-home-account-other-account", "5"], + ["account-product-home-account-other-end", "4"], + ["account-product-home-account-other-home", "6"], + ["account-product-home-account-other-other", "20"], + ["account-product-home-account-other-product", "13"], + ["account-product-home-account-product-account", "138"], + ["account-product-home-account-product-end", "165"], + ["account-product-home-account-product-home", "96"], + ["account-product-home-account-product-other", "13"], + ["account-product-home-account-product-product", "233"], + ["account-product-home-account-product-search", "17"], + ["account-product-home-account-search-account", "16"], + ["account-product-home-account-search-end", "4"], + ["account-product-home-account-search-home", "2"], + ["account-product-home-account-search-product", "21"], + ["account-product-home-account-search-search", "15"], + ["account-product-home-end", "3093"], + ["account-product-home-home-account-account", "65"], + ["account-product-home-home-account-end", "13"], + ["account-product-home-home-account-home", "18"], + ["account-product-home-home-account-other", "12"], + ["account-product-home-home-account-product", "85"], + ["account-product-home-home-account-search", "8"], + ["account-product-home-home-end", "206"], + ["account-product-home-home-home-account", "28"], + ["account-product-home-home-home-end", "19"], + ["account-product-home-home-home-home", "39"], + ["account-product-home-home-home-other", "15"], + ["account-product-home-home-home-product", "75"], + ["account-product-home-home-home-search", "21"], + ["account-product-home-home-other-account", "18"], + ["account-product-home-home-other-end", "7"], + ["account-product-home-home-other-home", "8"], + ["account-product-home-home-other-other", "45"], + ["account-product-home-home-other-product", "21"], + ["account-product-home-home-other-search", "1"], + ["account-product-home-home-product-account", "71"], + ["account-product-home-home-product-end", "98"], + ["account-product-home-home-product-home", "110"], + ["account-product-home-home-product-other", "9"], + ["account-product-home-home-product-product", "217"], + ["account-product-home-home-product-search", "19"], + ["account-product-home-home-search-account", "29"], + ["account-product-home-home-search-end", "4"], + ["account-product-home-home-search-home", "4"], + ["account-product-home-home-search-other", "1"], + ["account-product-home-home-search-product", "86"], + ["account-product-home-home-search-search", "37"], + ["account-product-home-other-account-account", "25"], + ["account-product-home-other-account-end", "5"], + ["account-product-home-other-account-home", "8"], + ["account-product-home-other-account-other", "5"], + ["account-product-home-other-account-product", "10"], + ["account-product-home-other-account-search", "1"], + ["account-product-home-other-end", "37"], + ["account-product-home-other-home-account", "3"], + ["account-product-home-other-home-end", "15"], + ["account-product-home-other-home-home", "5"], + ["account-product-home-other-home-other", "3"], + ["account-product-home-other-home-product", "18"], + ["account-product-home-other-home-search", "7"], + ["account-product-home-other-other-account", "19"], + ["account-product-home-other-other-end", "32"], + ["account-product-home-other-other-home", "19"], + ["account-product-home-other-other-other", "44"], + ["account-product-home-other-other-product", "60"], + ["account-product-home-other-other-search", "2"], + ["account-product-home-other-product-account", "20"], + ["account-product-home-other-product-end", "25"], + ["account-product-home-other-product-home", "18"], + ["account-product-home-other-product-other", "6"], + ["account-product-home-other-product-product", "52"], + ["account-product-home-other-product-search", "4"], + ["account-product-home-other-search-account", "2"], + ["account-product-home-other-search-product", "8"], + ["account-product-home-other-search-search", "2"], + ["account-product-home-product-account-account", "316"], + ["account-product-home-product-account-end", "81"], + ["account-product-home-product-account-home", "80"], + ["account-product-home-product-account-other", "24"], + ["account-product-home-product-account-product", "331"], + ["account-product-home-product-account-search", "20"], + ["account-product-home-product-end", "1607"], + ["account-product-home-product-home-account", "167"], + ["account-product-home-product-home-end", "256"], + ["account-product-home-product-home-home", "77"], + ["account-product-home-product-home-other", "23"], + ["account-product-home-product-home-product", "808"], + ["account-product-home-product-home-search", "94"], + ["account-product-home-product-other-account", "11"], + ["account-product-home-product-other-end", "11"], + ["account-product-home-product-other-home", "5"], + ["account-product-home-product-other-other", "28"], + ["account-product-home-product-other-product", "28"], + ["account-product-home-product-other-search", "2"], + ["account-product-home-product-product-account", "279"], + ["account-product-home-product-product-end", "557"], + ["account-product-home-product-product-home", "411"], + ["account-product-home-product-product-other", "17"], + ["account-product-home-product-product-product", "1294"], + ["account-product-home-product-product-search", "125"], + ["account-product-home-product-search-account", "50"], + ["account-product-home-product-search-end", "9"], + ["account-product-home-product-search-home", "4"], + ["account-product-home-product-search-other", "1"], + ["account-product-home-product-search-product", "188"], + ["account-product-home-product-search-search", "47"], + ["account-product-home-search-account-account", "164"], + ["account-product-home-search-account-end", "31"], + ["account-product-home-search-account-home", "18"], + ["account-product-home-search-account-other", "3"], + ["account-product-home-search-account-product", "155"], + ["account-product-home-search-account-search", "18"], + ["account-product-home-search-end", "102"], + ["account-product-home-search-home-account", "4"], + ["account-product-home-search-home-end", "5"], + ["account-product-home-search-home-home", "6"], + ["account-product-home-search-home-other", "2"], + ["account-product-home-search-home-product", "7"], + ["account-product-home-search-home-search", "8"], + ["account-product-home-search-other-account", "2"], + ["account-product-home-search-other-other", "1"], + ["account-product-home-search-other-product", "1"], + ["account-product-home-search-product-account", "84"], + ["account-product-home-search-product-end", "345"], + ["account-product-home-search-product-home", "111"], + ["account-product-home-search-product-other", "10"], + ["account-product-home-search-product-product", "659"], + ["account-product-home-search-product-search", "230"], + ["account-product-home-search-search-account", "50"], + ["account-product-home-search-search-end", "24"], + ["account-product-home-search-search-home", "7"], + ["account-product-home-search-search-product", "240"], + ["account-product-home-search-search-search", "100"], + ["account-product-other-account-account-account", "94"], + ["account-product-other-account-account-end", "27"], + ["account-product-other-account-account-home", "6"], + ["account-product-other-account-account-other", "18"], + ["account-product-other-account-account-product", "89"], + ["account-product-other-account-account-search", "10"], + ["account-product-other-account-end", "91"], + ["account-product-other-account-home-account", "4"], + ["account-product-other-account-home-end", "4"], + ["account-product-other-account-home-home", "2"], + ["account-product-other-account-home-product", "5"], + ["account-product-other-account-home-search", "2"], + ["account-product-other-account-other-account", "21"], + ["account-product-other-account-other-end", "6"], + ["account-product-other-account-other-home", "5"], + ["account-product-other-account-other-other", "27"], + ["account-product-other-account-other-product", "11"], + ["account-product-other-account-other-search", "1"], + ["account-product-other-account-product-account", "68"], + ["account-product-other-account-product-end", "44"], + ["account-product-other-account-product-home", "5"], + ["account-product-other-account-product-other", "16"], + ["account-product-other-account-product-product", "69"], + ["account-product-other-account-product-search", "4"], + ["account-product-other-account-search-account", "8"], + ["account-product-other-account-search-end", "2"], + ["account-product-other-account-search-product", "17"], + ["account-product-other-account-search-search", "4"], + ["account-product-other-end", "630"], + ["account-product-other-home-account-account", "20"], + ["account-product-other-home-account-end", "3"], + ["account-product-other-home-account-home", "3"], + ["account-product-other-home-account-other", "1"], + ["account-product-other-home-account-product", "11"], + ["account-product-other-home-end", "39"], + ["account-product-other-home-home-account", "4"], + ["account-product-other-home-home-end", "7"], + ["account-product-other-home-home-home", "2"], + ["account-product-other-home-home-other", "3"], + ["account-product-other-home-home-product", "6"], + ["account-product-other-home-other-account", "3"], + ["account-product-other-home-other-home", "3"], + ["account-product-other-home-other-other", "3"], + ["account-product-other-home-other-product", "2"], + ["account-product-other-home-product-account", "17"], + ["account-product-other-home-product-end", "17"], + ["account-product-other-home-product-home", "18"], + ["account-product-other-home-product-other", "2"], + ["account-product-other-home-product-product", "31"], + ["account-product-other-home-product-search", "7"], + ["account-product-other-home-search-account", "3"], + ["account-product-other-home-search-home", "1"], + ["account-product-other-home-search-product", "9"], + ["account-product-other-home-search-search", "3"], + ["account-product-other-other-account-account", "88"], + ["account-product-other-other-account-end", "39"], + ["account-product-other-other-account-home", "10"], + ["account-product-other-other-account-other", "17"], + ["account-product-other-other-account-product", "65"], + ["account-product-other-other-account-search", "5"], + ["account-product-other-other-end", "328"], + ["account-product-other-other-home-account", "16"], + ["account-product-other-other-home-end", "20"], + ["account-product-other-other-home-home", "10"], + ["account-product-other-other-home-other", "8"], + ["account-product-other-other-home-product", "33"], + ["account-product-other-other-home-search", "3"], + ["account-product-other-other-other-account", "76"], + ["account-product-other-other-other-end", "90"], + ["account-product-other-other-other-home", "28"], + ["account-product-other-other-other-other", "234"], + ["account-product-other-other-other-product", "138"], + ["account-product-other-other-other-search", "17"], + ["account-product-other-other-product-account", "94"], + ["account-product-other-other-product-end", "105"], + ["account-product-other-other-product-home", "24"], + ["account-product-other-other-product-other", "104"], + ["account-product-other-other-product-product", "188"], + ["account-product-other-other-product-search", "15"], + ["account-product-other-other-search-account", "9"], + ["account-product-other-other-search-product", "19"], + ["account-product-other-other-search-search", "7"], + ["account-product-other-product-account-account", "93"], + ["account-product-other-product-account-end", "16"], + ["account-product-other-product-account-home", "5"], + ["account-product-other-product-account-other", "13"], + ["account-product-other-product-account-product", "81"], + ["account-product-other-product-account-search", "12"], + ["account-product-other-product-end", "374"], + ["account-product-other-product-home-account", "9"], + ["account-product-other-product-home-end", "11"], + ["account-product-other-product-home-home", "5"], + ["account-product-other-product-home-other", "6"], + ["account-product-other-product-home-product", "21"], + ["account-product-other-product-home-search", "7"], + ["account-product-other-product-other-account", "22"], + ["account-product-other-product-other-end", "26"], + ["account-product-other-product-other-home", "5"], + ["account-product-other-product-other-other", "33"], + ["account-product-other-product-other-product", "77"], + ["account-product-other-product-other-search", "6"], + ["account-product-other-product-product-account", "60"], + ["account-product-other-product-product-end", "151"], + ["account-product-other-product-product-home", "21"], + ["account-product-other-product-product-other", "36"], + ["account-product-other-product-product-product", "454"], + ["account-product-other-product-product-search", "30"], + ["account-product-other-product-search-account", "9"], + ["account-product-other-product-search-end", "1"], + ["account-product-other-product-search-product", "34"], + ["account-product-other-product-search-search", "8"], + ["account-product-other-search-account-account", "9"], + ["account-product-other-search-account-end", "1"], + ["account-product-other-search-account-other", "1"], + ["account-product-other-search-account-product", "9"], + ["account-product-other-search-account-search", "1"], + ["account-product-other-search-home-account", "1"], + ["account-product-other-search-other-product", "1"], + ["account-product-other-search-product-account", "7"], + ["account-product-other-search-product-end", "13"], + ["account-product-other-search-product-home", "4"], + ["account-product-other-search-product-other", "4"], + ["account-product-other-search-product-product", "32"], + ["account-product-other-search-product-search", "6"], + ["account-product-other-search-search-account", "5"], + ["account-product-other-search-search-end", "2"], + ["account-product-other-search-search-product", "7"], + ["account-product-other-search-search-search", "6"], + ["account-product-product-account-account-account", "1940"], + ["account-product-product-account-account-end", "549"], + ["account-product-product-account-account-home", "122"], + ["account-product-product-account-account-other", "139"], + ["account-product-product-account-account-product", "2330"], + ["account-product-product-account-account-search", "130"], + ["account-product-product-account-end", "1637"], + ["account-product-product-account-home-account", "52"], + ["account-product-product-account-home-end", "56"], + ["account-product-product-account-home-home", "34"], + ["account-product-product-account-home-other", "6"], + ["account-product-product-account-home-product", "170"], + ["account-product-product-account-home-search", "42"], + ["account-product-product-account-other-account", "52"], + ["account-product-product-account-other-end", "44"], + ["account-product-product-account-other-home", "11"], + ["account-product-product-account-other-other", "133"], + ["account-product-product-account-other-product", "172"], + ["account-product-product-account-other-search", "1"], + ["account-product-product-account-product-account", "1464"], + ["account-product-product-account-product-end", "1411"], + ["account-product-product-account-product-home", "246"], + ["account-product-product-account-product-other", "91"], + ["account-product-product-account-product-product", "3194"], + ["account-product-product-account-product-search", "226"], + ["account-product-product-account-search-account", "141"], + ["account-product-product-account-search-end", "13"], + ["account-product-product-account-search-home", "1"], + ["account-product-product-account-search-other", "2"], + ["account-product-product-account-search-product", "241"], + ["account-product-product-account-search-search", "67"], + ["account-product-product-end", "30394"], + ["account-product-product-home-account-account", "180"], + ["account-product-product-home-account-end", "46"], + ["account-product-product-home-account-home", "44"], + ["account-product-product-home-account-other", "24"], + ["account-product-product-home-account-product", "225"], + ["account-product-product-home-account-search", "13"], + ["account-product-product-home-end", "911"], + ["account-product-product-home-home-account", "49"], + ["account-product-product-home-home-end", "49"], + ["account-product-product-home-home-home", "56"], + ["account-product-product-home-home-other", "31"], + ["account-product-product-home-home-product", "161"], + ["account-product-product-home-home-search", "51"], + ["account-product-product-home-other-account", "18"], + ["account-product-product-home-other-end", "15"], + ["account-product-product-home-other-home", "9"], + ["account-product-product-home-other-other", "46"], + ["account-product-product-home-other-product", "43"], + ["account-product-product-home-other-search", "6"], + ["account-product-product-home-product-account", "262"], + ["account-product-product-home-product-end", "498"], + ["account-product-product-home-product-home", "446"], + ["account-product-product-home-product-other", "26"], + ["account-product-product-home-product-product", "1053"], + ["account-product-product-home-product-search", "121"], + ["account-product-product-home-search-account", "108"], + ["account-product-product-home-search-end", "35"], + ["account-product-product-home-search-home", "7"], + ["account-product-product-home-search-other", "2"], + ["account-product-product-home-search-product", "450"], + ["account-product-product-home-search-search", "130"], + ["account-product-product-other-account-account", "100"], + ["account-product-product-other-account-end", "23"], + ["account-product-product-other-account-home", "10"], + ["account-product-product-other-account-other", "19"], + ["account-product-product-other-account-product", "68"], + ["account-product-product-other-account-search", "2"], + ["account-product-product-other-end", "167"], + ["account-product-product-other-home-account", "9"], + ["account-product-product-other-home-end", "16"], + ["account-product-product-other-home-home", "8"], + ["account-product-product-other-home-other", "2"], + ["account-product-product-other-home-product", "24"], + ["account-product-product-other-home-search", "4"], + ["account-product-product-other-other-account", "58"], + ["account-product-product-other-other-end", "77"], + ["account-product-product-other-other-home", "18"], + ["account-product-product-other-other-other", "179"], + ["account-product-product-other-other-product", "195"], + ["account-product-product-other-other-search", "18"], + ["account-product-product-other-product-account", "65"], + ["account-product-product-other-product-end", "105"], + ["account-product-product-other-product-home", "14"], + ["account-product-product-other-product-other", "54"], + ["account-product-product-other-product-product", "285"], + ["account-product-product-other-product-search", "23"], + ["account-product-product-other-search-account", "9"], + ["account-product-product-other-search-end", "1"], + ["account-product-product-other-search-other", "2"], + ["account-product-product-other-search-product", "16"], + ["account-product-product-other-search-search", "6"], + ["account-product-product-product-account-account", "2069"], + ["account-product-product-product-account-end", "668"], + ["account-product-product-product-account-home", "129"], + ["account-product-product-product-account-other", "153"], + ["account-product-product-product-account-product", "2873"], + ["account-product-product-product-account-search", "228"], + ["account-product-product-product-end", "13692"], + ["account-product-product-product-home-account", "192"], + ["account-product-product-product-home-end", "404"], + ["account-product-product-product-home-home", "165"], + ["account-product-product-product-home-other", "52"], + ["account-product-product-product-home-product", "944"], + ["account-product-product-product-home-search", "358"], + ["account-product-product-product-other-account", "73"], + ["account-product-product-product-other-end", "70"], + ["account-product-product-product-other-home", "19"], + ["account-product-product-product-other-other", "218"], + ["account-product-product-product-other-product", "261"], + ["account-product-product-product-other-search", "11"], + ["account-product-product-product-product-account", "2995"], + ["account-product-product-product-product-end", "7864"], + ["account-product-product-product-product-home", "1099"], + ["account-product-product-product-product-other", "305"], + ["account-product-product-product-product-product", "27927"], + ["account-product-product-product-product-search", "1497"], + ["account-product-product-product-search-account", "340"], + ["account-product-product-product-search-end", "61"], + ["account-product-product-product-search-home", "13"], + ["account-product-product-product-search-other", "10"], + ["account-product-product-product-search-product", "1727"], + ["account-product-product-product-search-search", "426"], + ["account-product-product-search-account-account", "322"], + ["account-product-product-search-account-end", "47"], + ["account-product-product-search-account-home", "14"], + ["account-product-product-search-account-other", "19"], + ["account-product-product-search-account-product", "385"], + ["account-product-product-search-account-search", "59"], + ["account-product-product-search-end", "181"], + ["account-product-product-search-home-account", "1"], + ["account-product-product-search-home-end", "2"], + ["account-product-product-search-home-home", "4"], + ["account-product-product-search-home-other", "2"], + ["account-product-product-search-home-product", "11"], + ["account-product-product-search-home-search", "10"], + ["account-product-product-search-other-end", "1"], + ["account-product-product-search-other-other", "6"], + ["account-product-product-search-other-product", "5"], + ["account-product-product-search-other-search", "2"], + ["account-product-product-search-product-account", "246"], + ["account-product-product-search-product-end", "692"], + ["account-product-product-search-product-home", "110"], + ["account-product-product-search-product-other", "25"], + ["account-product-product-search-product-product", "1759"], + ["account-product-product-search-product-search", "590"], + ["account-product-product-search-search-account", "84"], + ["account-product-product-search-search-end", "35"], + ["account-product-product-search-search-home", "7"], + ["account-product-product-search-search-other", "2"], + ["account-product-product-search-search-product", "479"], + ["account-product-product-search-search-search", "175"], + ["account-product-search-account-account-account", "268"], + ["account-product-search-account-account-end", "60"], + ["account-product-search-account-account-home", "15"], + ["account-product-search-account-account-other", "20"], + ["account-product-search-account-account-product", "522"], + ["account-product-search-account-account-search", "74"], + ["account-product-search-account-end", "186"], + ["account-product-search-account-home-account", "4"], + ["account-product-search-account-home-end", "3"], + ["account-product-search-account-home-home", "7"], + ["account-product-search-account-home-product", "16"], + ["account-product-search-account-home-search", "8"], + ["account-product-search-account-other-account", "4"], + ["account-product-search-account-other-end", "4"], + ["account-product-search-account-other-home", "1"], + ["account-product-search-account-other-other", "6"], + ["account-product-search-account-other-product", "26"], + ["account-product-search-account-other-search", "2"], + ["account-product-search-account-product-account", "196"], + ["account-product-search-account-product-end", "272"], + ["account-product-search-account-product-home", "37"], + ["account-product-search-account-product-other", "11"], + ["account-product-search-account-product-product", "449"], + ["account-product-search-account-product-search", "160"], + ["account-product-search-account-search-account", "129"], + ["account-product-search-account-search-end", "4"], + ["account-product-search-account-search-product", "51"], + ["account-product-search-account-search-search", "23"], + ["account-product-search-end", "436"], + ["account-product-search-home-account-account", "5"], + ["account-product-search-home-account-end", "1"], + ["account-product-search-home-account-product", "1"], + ["account-product-search-home-end", "17"], + ["account-product-search-home-home-account", "2"], + ["account-product-search-home-home-home", "2"], + ["account-product-search-home-home-other", "2"], + ["account-product-search-home-home-product", "3"], + ["account-product-search-home-home-search", "2"], + ["account-product-search-home-other-account", "1"], + ["account-product-search-home-other-product", "1"], + ["account-product-search-home-product-account", "2"], + ["account-product-search-home-product-end", "11"], + ["account-product-search-home-product-home", "5"], + ["account-product-search-home-product-product", "13"], + ["account-product-search-home-product-search", "3"], + ["account-product-search-home-search-account", "1"], + ["account-product-search-home-search-end", "1"], + ["account-product-search-home-search-home", "2"], + ["account-product-search-home-search-product", "11"], + ["account-product-search-home-search-search", "6"], + ["account-product-search-other-account-account", "2"], + ["account-product-search-other-account-end", "1"], + ["account-product-search-other-account-product", "1"], + ["account-product-search-other-account-search", "1"], + ["account-product-search-other-end", "4"], + ["account-product-search-other-other-account", "1"], + ["account-product-search-other-other-end", "1"], + ["account-product-search-other-other-other", "3"], + ["account-product-search-other-other-product", "4"], + ["account-product-search-other-other-search", "1"], + ["account-product-search-other-product-account", "1"], + ["account-product-search-other-product-end", "1"], + ["account-product-search-other-product-home", "1"], + ["account-product-search-other-product-product", "6"], + ["account-product-search-other-search-account", "3"], + ["account-product-search-other-search-search", "1"], + ["account-product-search-product-account-account", "219"], + ["account-product-search-product-account-end", "52"], + ["account-product-search-product-account-home", "12"], + ["account-product-search-product-account-other", "23"], + ["account-product-search-product-account-product", "246"], + ["account-product-search-product-account-search", "65"], + ["account-product-search-product-end", "1646"], + ["account-product-search-product-home-account", "23"], + ["account-product-search-product-home-end", "46"], + ["account-product-search-product-home-home", "15"], + ["account-product-search-product-home-other", "1"], + ["account-product-search-product-home-product", "97"], + ["account-product-search-product-home-search", "70"], + ["account-product-search-product-other-account", "9"], + ["account-product-search-product-other-end", "3"], + ["account-product-search-product-other-home", "1"], + ["account-product-search-product-other-other", "14"], + ["account-product-search-product-other-product", "18"], + ["account-product-search-product-other-search", "4"], + ["account-product-search-product-product-account", "266"], + ["account-product-search-product-product-end", "718"], + ["account-product-search-product-product-home", "114"], + ["account-product-search-product-product-other", "40"], + ["account-product-search-product-product-product", "2052"], + ["account-product-search-product-product-search", "527"], + ["account-product-search-product-search-account", "78"], + ["account-product-search-product-search-end", "47"], + ["account-product-search-product-search-home", "10"], + ["account-product-search-product-search-other", "2"], + ["account-product-search-product-search-product", "1001"], + ["account-product-search-product-search-search", "197"], + ["account-product-search-search-account-account", "98"], + ["account-product-search-search-account-end", "17"], + ["account-product-search-search-account-home", "5"], + ["account-product-search-search-account-other", "2"], + ["account-product-search-search-account-product", "97"], + ["account-product-search-search-account-search", "11"], + ["account-product-search-search-end", "112"], + ["account-product-search-search-home-account", "3"], + ["account-product-search-search-home-end", "1"], + ["account-product-search-search-home-product", "5"], + ["account-product-search-search-home-search", "5"], + ["account-product-search-search-other-end", "1"], + ["account-product-search-search-other-home", "1"], + ["account-product-search-search-other-other", "3"], + ["account-product-search-search-other-product", "3"], + ["account-product-search-search-product-account", "91"], + ["account-product-search-search-product-end", "231"], + ["account-product-search-search-product-home", "36"], + ["account-product-search-search-product-other", "6"], + ["account-product-search-search-product-product", "546"], + ["account-product-search-search-product-search", "234"], + ["account-product-search-search-search-account", "51"], + ["account-product-search-search-search-end", "26"], + ["account-product-search-search-search-home", "6"], + ["account-product-search-search-search-other", "2"], + ["account-product-search-search-search-product", "247"], + ["account-product-search-search-search-search", "141"], + ["account-search-account-account-account-account", "669"], + ["account-search-account-account-account-end", "145"], + ["account-search-account-account-account-home", "37"], + ["account-search-account-account-account-other", "88"], + ["account-search-account-account-account-product", "436"], + ["account-search-account-account-account-search", "121"], + ["account-search-account-account-end", "424"], + ["account-search-account-account-home-account", "16"], + ["account-search-account-account-home-end", "18"], + ["account-search-account-account-home-home", "14"], + ["account-search-account-account-home-other", "3"], + ["account-search-account-account-home-product", "34"], + ["account-search-account-account-home-search", "26"], + ["account-search-account-account-other-account", "16"], + ["account-search-account-account-other-end", "4"], + ["account-search-account-account-other-home", "1"], + ["account-search-account-account-other-other", "23"], + ["account-search-account-account-other-product", "31"], + ["account-search-account-account-other-search", "6"], + ["account-search-account-account-product-account", "484"], + ["account-search-account-account-product-end", "519"], + ["account-search-account-account-product-home", "84"], + ["account-search-account-account-product-other", "21"], + ["account-search-account-account-product-product", "817"], + ["account-search-account-account-product-search", "204"], + ["account-search-account-account-search-account", "272"], + ["account-search-account-account-search-end", "14"], + ["account-search-account-account-search-home", "4"], + ["account-search-account-account-search-other", "2"], + ["account-search-account-account-search-product", "111"], + ["account-search-account-account-search-search", "61"], + ["account-search-account-end", "1028"], + ["account-search-account-home-account-account", "9"], + ["account-search-account-home-account-end", "2"], + ["account-search-account-home-account-home", "5"], + ["account-search-account-home-account-other", "1"], + ["account-search-account-home-account-product", "5"], + ["account-search-account-home-account-search", "5"], + ["account-search-account-home-end", "33"], + ["account-search-account-home-home-account", "5"], + ["account-search-account-home-home-end", "3"], + ["account-search-account-home-home-home", "2"], + ["account-search-account-home-home-other", "3"], + ["account-search-account-home-home-product", "9"], + ["account-search-account-home-home-search", "6"], + ["account-search-account-home-other-account", "2"], + ["account-search-account-home-other-other", "4"], + ["account-search-account-home-other-product", "1"], + ["account-search-account-home-other-search", "1"], + ["account-search-account-home-product-account", "11"], + ["account-search-account-home-product-end", "17"], + ["account-search-account-home-product-home", "15"], + ["account-search-account-home-product-other", "1"], + ["account-search-account-home-product-product", "34"], + ["account-search-account-home-product-search", "6"], + ["account-search-account-home-search-account", "23"], + ["account-search-account-home-search-end", "4"], + ["account-search-account-home-search-product", "24"], + ["account-search-account-home-search-search", "8"], + ["account-search-account-other-account-account", "7"], + ["account-search-account-other-account-end", "8"], + ["account-search-account-other-account-home", "1"], + ["account-search-account-other-account-other", "6"], + ["account-search-account-other-account-product", "10"], + ["account-search-account-other-account-search", "6"], + ["account-search-account-other-end", "24"], + ["account-search-account-other-home-end", "1"], + ["account-search-account-other-home-product", "2"], + ["account-search-account-other-home-search", "1"], + ["account-search-account-other-other-account", "5"], + ["account-search-account-other-other-end", "5"], + ["account-search-account-other-other-home", "2"], + ["account-search-account-other-other-other", "17"], + ["account-search-account-other-other-product", "26"], + ["account-search-account-other-other-search", "2"], + ["account-search-account-other-product-account", "17"], + ["account-search-account-other-product-end", "51"], + ["account-search-account-other-product-home", "1"], + ["account-search-account-other-product-other", "8"], + ["account-search-account-other-product-product", "74"], + ["account-search-account-other-product-search", "4"], + ["account-search-account-other-search-account", "4"], + ["account-search-account-other-search-end", "2"], + ["account-search-account-other-search-product", "5"], + ["account-search-account-other-search-search", "3"], + ["account-search-account-product-account-account", "248"], + ["account-search-account-product-account-end", "77"], + ["account-search-account-product-account-home", "9"], + ["account-search-account-product-account-other", "26"], + ["account-search-account-product-account-product", "351"], + ["account-search-account-product-account-search", "71"], + ["account-search-account-product-end", "946"], + ["account-search-account-product-home-account", "20"], + ["account-search-account-product-home-end", "17"], + ["account-search-account-product-home-home", "19"], + ["account-search-account-product-home-other", "2"], + ["account-search-account-product-home-product", "44"], + ["account-search-account-product-home-search", "28"], + ["account-search-account-product-other-account", "8"], + ["account-search-account-product-other-end", "6"], + ["account-search-account-product-other-home", "4"], + ["account-search-account-product-other-other", "11"], + ["account-search-account-product-other-product", "16"], + ["account-search-account-product-other-search", "1"], + ["account-search-account-product-product-account", "236"], + ["account-search-account-product-product-end", "331"], + ["account-search-account-product-product-home", "45"], + ["account-search-account-product-product-other", "11"], + ["account-search-account-product-product-product", "829"], + ["account-search-account-product-product-search", "140"], + ["account-search-account-product-search-account", "175"], + ["account-search-account-product-search-end", "11"], + ["account-search-account-product-search-product", "147"], + ["account-search-account-product-search-search", "48"], + ["account-search-account-search-account-account", "179"], + ["account-search-account-search-account-end", "57"], + ["account-search-account-search-account-home", "7"], + ["account-search-account-search-account-other", "15"], + ["account-search-account-search-account-product", "228"], + ["account-search-account-search-account-search", "141"], + ["account-search-account-search-end", "39"], + ["account-search-account-search-home-end", "3"], + ["account-search-account-search-home-home", "1"], + ["account-search-account-search-home-product", "1"], + ["account-search-account-search-home-search", "1"], + ["account-search-account-search-product-account", "45"], + ["account-search-account-search-product-end", "77"], + ["account-search-account-search-product-home", "7"], + ["account-search-account-search-product-other", "4"], + ["account-search-account-search-product-product", "141"], + ["account-search-account-search-product-search", "68"], + ["account-search-account-search-search-account", "44"], + ["account-search-account-search-search-end", "12"], + ["account-search-account-search-search-home", "4"], + ["account-search-account-search-search-product", "64"], + ["account-search-account-search-search-search", "42"], + ["account-search-end", "2555"], + ["account-search-home-account-account-account", "7"], + ["account-search-home-account-account-end", "4"], + ["account-search-home-account-account-home", "2"], + ["account-search-home-account-account-product", "5"], + ["account-search-home-account-end", "4"], + ["account-search-home-account-home-account", "6"], + ["account-search-home-account-home-end", "4"], + ["account-search-home-account-home-product", "6"], + ["account-search-home-account-product-account", "3"], + ["account-search-home-account-product-end", "3"], + ["account-search-home-account-product-home", "1"], + ["account-search-home-account-product-product", "3"], + ["account-search-home-account-product-search", "1"], + ["account-search-home-account-search-account", "2"], + ["account-search-home-account-search-end", "1"], + ["account-search-home-account-search-product", "1"], + ["account-search-home-account-search-search", "1"], + ["account-search-home-end", "70"], + ["account-search-home-home-account-account", "3"], + ["account-search-home-home-account-product", "1"], + ["account-search-home-home-end", "2"], + ["account-search-home-home-home-account", "3"], + ["account-search-home-home-home-end", "1"], + ["account-search-home-home-home-home", "6"], + ["account-search-home-home-home-search", "2"], + ["account-search-home-home-other-end", "1"], + ["account-search-home-home-other-other", "2"], + ["account-search-home-home-other-product", "1"], + ["account-search-home-home-product-account", "1"], + ["account-search-home-home-product-end", "5"], + ["account-search-home-home-product-home", "4"], + ["account-search-home-home-product-other", "1"], + ["account-search-home-home-product-product", "2"], + ["account-search-home-home-product-search", "1"], + ["account-search-home-home-search-account", "3"], + ["account-search-home-home-search-product", "3"], + ["account-search-home-home-search-search", "3"], + ["account-search-home-other-account-home", "1"], + ["account-search-home-other-home-home", "1"], + ["account-search-home-other-home-search", "1"], + ["account-search-home-other-other-account", "1"], + ["account-search-home-other-product-account", "1"], + ["account-search-home-other-product-end", "1"], + ["account-search-home-other-product-product", "1"], + ["account-search-home-other-search-search", "1"], + ["account-search-home-product-account-account", "5"], + ["account-search-home-product-account-end", "1"], + ["account-search-home-product-account-home", "2"], + ["account-search-home-product-account-product", "8"], + ["account-search-home-product-account-search", "2"], + ["account-search-home-product-end", "22"], + ["account-search-home-product-home-account", "2"], + ["account-search-home-product-home-end", "9"], + ["account-search-home-product-home-home", "2"], + ["account-search-home-product-home-other", "1"], + ["account-search-home-product-home-product", "14"], + ["account-search-home-product-home-search", "2"], + ["account-search-home-product-other-end", "1"], + ["account-search-home-product-product-account", "5"], + ["account-search-home-product-product-end", "10"], + ["account-search-home-product-product-home", "6"], + ["account-search-home-product-product-product", "29"], + ["account-search-home-product-product-search", "6"], + ["account-search-home-product-search-account", "3"], + ["account-search-home-product-search-end", "2"], + ["account-search-home-product-search-home", "1"], + ["account-search-home-product-search-product", "14"], + ["account-search-home-product-search-search", "6"], + ["account-search-home-search-account-account", "7"], + ["account-search-home-search-account-other", "1"], + ["account-search-home-search-account-product", "8"], + ["account-search-home-search-account-search", "3"], + ["account-search-home-search-end", "8"], + ["account-search-home-search-home-account", "1"], + ["account-search-home-search-home-home", "1"], + ["account-search-home-search-home-product", "5"], + ["account-search-home-search-product-account", "3"], + ["account-search-home-search-product-end", "14"], + ["account-search-home-search-product-home", "4"], + ["account-search-home-search-product-other", "1"], + ["account-search-home-search-product-product", "23"], + ["account-search-home-search-product-search", "8"], + ["account-search-home-search-search-account", "2"], + ["account-search-home-search-search-end", "1"], + ["account-search-home-search-search-product", "9"], + ["account-search-home-search-search-search", "8"], + ["account-search-other-account-account-account", "6"], + ["account-search-other-account-account-end", "2"], + ["account-search-other-account-account-home", "2"], + ["account-search-other-account-account-product", "3"], + ["account-search-other-account-account-search", "1"], + ["account-search-other-account-end", "5"], + ["account-search-other-account-other-product", "1"], + ["account-search-other-account-product-account", "1"], + ["account-search-other-account-product-product", "3"], + ["account-search-other-account-search-product", "1"], + ["account-search-other-end", "21"], + ["account-search-other-home-account-home", "1"], + ["account-search-other-home-other-other", "1"], + ["account-search-other-home-product-end", "2"], + ["account-search-other-home-product-product", "1"], + ["account-search-other-other-account-account", "4"], + ["account-search-other-other-account-end", "1"], + ["account-search-other-other-account-other", "1"], + ["account-search-other-other-account-product", "2"], + ["account-search-other-other-end", "5"], + ["account-search-other-other-home-end", "1"], + ["account-search-other-other-home-home", "1"], + ["account-search-other-other-other-account", "3"], + ["account-search-other-other-other-end", "6"], + ["account-search-other-other-other-other", "13"], + ["account-search-other-other-other-product", "5"], + ["account-search-other-other-other-search", "3"], + ["account-search-other-other-product-account", "4"], + ["account-search-other-other-product-end", "7"], + ["account-search-other-other-product-other", "5"], + ["account-search-other-other-product-product", "8"], + ["account-search-other-other-product-search", "2"], + ["account-search-other-other-search-account", "1"], + ["account-search-other-other-search-end", "2"], + ["account-search-other-other-search-home", "1"], + ["account-search-other-other-search-other", "2"], + ["account-search-other-other-search-product", "1"], + ["account-search-other-other-search-search", "1"], + ["account-search-other-product-account-account", "2"], + ["account-search-other-product-account-end", "1"], + ["account-search-other-product-account-other", "1"], + ["account-search-other-product-account-search", "1"], + ["account-search-other-product-end", "21"], + ["account-search-other-product-home-product", "1"], + ["account-search-other-product-home-search", "1"], + ["account-search-other-product-other-account", "1"], + ["account-search-other-product-other-product", "5"], + ["account-search-other-product-other-search", "1"], + ["account-search-other-product-product-end", "5"], + ["account-search-other-product-product-home", "4"], + ["account-search-other-product-product-other", "3"], + ["account-search-other-product-product-product", "31"], + ["account-search-other-product-product-search", "4"], + ["account-search-other-product-search-end", "1"], + ["account-search-other-product-search-product", "11"], + ["account-search-other-product-search-search", "9"], + ["account-search-other-search-account-account", "2"], + ["account-search-other-search-account-end", "1"], + ["account-search-other-search-product-account", "2"], + ["account-search-other-search-product-end", "2"], + ["account-search-other-search-product-home", "1"], + ["account-search-other-search-product-product", "2"], + ["account-search-other-search-product-search", "2"], + ["account-search-other-search-search-home", "1"], + ["account-search-other-search-search-product", "2"], + ["account-search-other-search-search-search", "3"], + ["account-search-product-account-account-account", "303"], + ["account-search-product-account-account-end", "89"], + ["account-search-product-account-account-home", "25"], + ["account-search-product-account-account-other", "43"], + ["account-search-product-account-account-product", "423"], + ["account-search-product-account-account-search", "81"], + ["account-search-product-account-end", "359"], + ["account-search-product-account-home-account", "9"], + ["account-search-product-account-home-end", "13"], + ["account-search-product-account-home-home", "6"], + ["account-search-product-account-home-other", "5"], + ["account-search-product-account-home-product", "40"], + ["account-search-product-account-home-search", "18"], + ["account-search-product-account-other-account", "17"], + ["account-search-product-account-other-end", "8"], + ["account-search-product-account-other-home", "5"], + ["account-search-product-account-other-other", "41"], + ["account-search-product-account-other-product", "64"], + ["account-search-product-account-other-search", "8"], + ["account-search-product-account-product-account", "199"], + ["account-search-product-account-product-end", "194"], + ["account-search-product-account-product-home", "27"], + ["account-search-product-account-product-other", "15"], + ["account-search-product-account-product-product", "423"], + ["account-search-product-account-product-search", "111"], + ["account-search-product-account-search-account", "71"], + ["account-search-product-account-search-end", "37"], + ["account-search-product-account-search-home", "1"], + ["account-search-product-account-search-other", "3"], + ["account-search-product-account-search-product", "536"], + ["account-search-product-account-search-search", "121"], + ["account-search-product-end", "11138"], + ["account-search-product-home-account-account", "24"], + ["account-search-product-home-account-end", "3"], + ["account-search-product-home-account-home", "6"], + ["account-search-product-home-account-other", "5"], + ["account-search-product-home-account-product", "20"], + ["account-search-product-home-account-search", "7"], + ["account-search-product-home-end", "149"], + ["account-search-product-home-home-account", "16"], + ["account-search-product-home-home-end", "8"], + ["account-search-product-home-home-home", "12"], + ["account-search-product-home-home-other", "7"], + ["account-search-product-home-home-product", "18"], + ["account-search-product-home-home-search", "14"], + ["account-search-product-home-other-account", "1"], + ["account-search-product-home-other-end", "1"], + ["account-search-product-home-other-other", "8"], + ["account-search-product-home-other-product", "3"], + ["account-search-product-home-other-search", "3"], + ["account-search-product-home-product-account", "39"], + ["account-search-product-home-product-end", "70"], + ["account-search-product-home-product-home", "39"], + ["account-search-product-home-product-other", "3"], + ["account-search-product-home-product-product", "125"], + ["account-search-product-home-product-search", "20"], + ["account-search-product-home-search-account", "19"], + ["account-search-product-home-search-end", "10"], + ["account-search-product-home-search-home", "3"], + ["account-search-product-home-search-product", "180"], + ["account-search-product-home-search-search", "31"], + ["account-search-product-other-account-account", "17"], + ["account-search-product-other-account-end", "5"], + ["account-search-product-other-account-other", "3"], + ["account-search-product-other-account-product", "13"], + ["account-search-product-other-account-search", "2"], + ["account-search-product-other-end", "33"], + ["account-search-product-other-home-home", "1"], + ["account-search-product-other-home-product", "2"], + ["account-search-product-other-home-search", "2"], + ["account-search-product-other-other-account", "10"], + ["account-search-product-other-other-end", "11"], + ["account-search-product-other-other-home", "6"], + ["account-search-product-other-other-other", "33"], + ["account-search-product-other-other-product", "22"], + ["account-search-product-other-other-search", "9"], + ["account-search-product-other-product-account", "12"], + ["account-search-product-other-product-end", "20"], + ["account-search-product-other-product-other", "8"], + ["account-search-product-other-product-product", "54"], + ["account-search-product-other-product-search", "12"], + ["account-search-product-other-search-end", "1"], + ["account-search-product-other-search-product", "17"], + ["account-search-product-other-search-search", "5"], + ["account-search-product-product-account-account", "361"], + ["account-search-product-product-account-end", "133"], + ["account-search-product-product-account-home", "31"], + ["account-search-product-product-account-other", "47"], + ["account-search-product-product-account-product", "446"], + ["account-search-product-product-account-search", "294"], + ["account-search-product-product-end", "4388"], + ["account-search-product-product-home-account", "23"], + ["account-search-product-product-home-end", "70"], + ["account-search-product-product-home-home", "28"], + ["account-search-product-product-home-other", "9"], + ["account-search-product-product-home-product", "146"], + ["account-search-product-product-home-search", "107"], + ["account-search-product-product-other-account", "14"], + ["account-search-product-product-other-end", "12"], + ["account-search-product-product-other-home", "8"], + ["account-search-product-product-other-other", "43"], + ["account-search-product-product-other-product", "59"], + ["account-search-product-product-other-search", "11"], + ["account-search-product-product-product-account", "584"], + ["account-search-product-product-product-end", "1929"], + ["account-search-product-product-product-home", "180"], + ["account-search-product-product-product-other", "59"], + ["account-search-product-product-product-product", "6730"], + ["account-search-product-product-product-search", "1269"], + ["account-search-product-product-search-account", "138"], + ["account-search-product-product-search-end", "103"], + ["account-search-product-product-search-home", "15"], + ["account-search-product-product-search-other", "7"], + ["account-search-product-product-search-product", "2119"], + ["account-search-product-product-search-search", "463"], + ["account-search-product-search-account-account", "111"], + ["account-search-product-search-account-end", "29"], + ["account-search-product-search-account-home", "6"], + ["account-search-product-search-account-other", "15"], + ["account-search-product-search-account-product", "99"], + ["account-search-product-search-account-search", "48"], + ["account-search-product-search-end", "287"], + ["account-search-product-search-home-account", "1"], + ["account-search-product-search-home-end", "7"], + ["account-search-product-search-home-home", "2"], + ["account-search-product-search-home-product", "6"], + ["account-search-product-search-home-search", "6"], + ["account-search-product-search-other-account", "1"], + ["account-search-product-search-other-other", "4"], + ["account-search-product-search-other-product", "10"], + ["account-search-product-search-other-search", "1"], + ["account-search-product-search-product-account", "281"], + ["account-search-product-search-product-end", "1216"], + ["account-search-product-search-product-home", "94"], + ["account-search-product-search-product-other", "29"], + ["account-search-product-search-product-product", "2276"], + ["account-search-product-search-product-search", "1414"], + ["account-search-product-search-search-account", "57"], + ["account-search-product-search-search-end", "76"], + ["account-search-product-search-search-home", "5"], + ["account-search-product-search-search-other", "7"], + ["account-search-product-search-search-product", "748"], + ["account-search-product-search-search-search", "308"], + ["account-search-search-account-account-account", "170"], + ["account-search-search-account-account-end", "69"], + ["account-search-search-account-account-home", "16"], + ["account-search-search-account-account-other", "11"], + ["account-search-search-account-account-product", "212"], + ["account-search-search-account-account-search", "51"], + ["account-search-search-account-end", "122"], + ["account-search-search-account-home-account", "1"], + ["account-search-search-account-home-end", "2"], + ["account-search-search-account-home-home", "4"], + ["account-search-search-account-home-other", "1"], + ["account-search-search-account-home-product", "3"], + ["account-search-search-account-home-search", "4"], + ["account-search-search-account-other-account", "10"], + ["account-search-search-account-other-end", "4"], + ["account-search-search-account-other-home", "2"], + ["account-search-search-account-other-other", "9"], + ["account-search-search-account-other-product", "17"], + ["account-search-search-account-other-search", "5"], + ["account-search-search-account-product-account", "78"], + ["account-search-search-account-product-end", "105"], + ["account-search-search-account-product-home", "7"], + ["account-search-search-account-product-other", "4"], + ["account-search-search-account-product-product", "160"], + ["account-search-search-account-product-search", "38"], + ["account-search-search-account-search-account", "40"], + ["account-search-search-account-search-end", "4"], + ["account-search-search-account-search-other", "1"], + ["account-search-search-account-search-product", "50"], + ["account-search-search-account-search-search", "38"], + ["account-search-search-end", "709"], + ["account-search-search-home-account-account", "10"], + ["account-search-search-home-account-end", "1"], + ["account-search-search-home-account-home", "1"], + ["account-search-search-home-account-product", "5"], + ["account-search-search-home-account-search", "1"], + ["account-search-search-home-end", "18"], + ["account-search-search-home-home-account", "1"], + ["account-search-search-home-home-end", "1"], + ["account-search-search-home-home-home", "3"], + ["account-search-search-home-home-other", "1"], + ["account-search-search-home-home-product", "3"], + ["account-search-search-home-product-account", "4"], + ["account-search-search-home-product-end", "8"], + ["account-search-search-home-product-home", "3"], + ["account-search-search-home-product-product", "17"], + ["account-search-search-home-product-search", "4"], + ["account-search-search-home-search-account", "5"], + ["account-search-search-home-search-end", "2"], + ["account-search-search-home-search-product", "15"], + ["account-search-search-home-search-search", "7"], + ["account-search-search-other-account-account", "1"], + ["account-search-search-other-account-end", "1"], + ["account-search-search-other-account-product", "1"], + ["account-search-search-other-end", "3"], + ["account-search-search-other-home-other", "1"], + ["account-search-search-other-other-account", "3"], + ["account-search-search-other-other-home", "1"], + ["account-search-search-other-other-other", "10"], + ["account-search-search-other-other-product", "6"], + ["account-search-search-other-other-search", "1"], + ["account-search-search-other-product-account", "1"], + ["account-search-search-other-product-end", "1"], + ["account-search-search-other-product-home", "2"], + ["account-search-search-other-product-other", "2"], + ["account-search-search-other-product-product", "7"], + ["account-search-search-other-product-search", "2"], + ["account-search-search-other-search-product", "3"], + ["account-search-search-other-search-search", "1"], + ["account-search-search-product-account-account", "176"], + ["account-search-search-product-account-end", "49"], + ["account-search-search-product-account-home", "13"], + ["account-search-search-product-account-other", "19"], + ["account-search-search-product-account-product", "174"], + ["account-search-search-product-account-search", "108"], + ["account-search-search-product-end", "1658"], + ["account-search-search-product-home-account", "10"], + ["account-search-search-product-home-end", "27"], + ["account-search-search-product-home-home", "19"], + ["account-search-search-product-home-other", "3"], + ["account-search-search-product-home-product", "45"], + ["account-search-search-product-home-search", "46"], + ["account-search-search-product-other-account", "6"], + ["account-search-search-product-other-end", "6"], + ["account-search-search-product-other-home", "1"], + ["account-search-search-product-other-other", "16"], + ["account-search-search-product-other-product", "17"], + ["account-search-search-product-product-account", "213"], + ["account-search-search-product-product-end", "652"], + ["account-search-search-product-product-home", "66"], + ["account-search-search-product-product-other", "24"], + ["account-search-search-product-product-product", "1627"], + ["account-search-search-product-product-search", "502"], + ["account-search-search-product-search-account", "55"], + ["account-search-search-product-search-end", "66"], + ["account-search-search-product-search-home", "8"], + ["account-search-search-product-search-other", "3"], + ["account-search-search-product-search-product", "857"], + ["account-search-search-product-search-search", "288"], + ["account-search-search-search-account-account", "137"], + ["account-search-search-search-account-end", "24"], + ["account-search-search-search-account-home", "5"], + ["account-search-search-search-account-other", "6"], + ["account-search-search-search-account-product", "79"], + ["account-search-search-search-account-search", "31"], + ["account-search-search-search-end", "236"], + ["account-search-search-search-home-account", "3"], + ["account-search-search-search-home-end", "6"], + ["account-search-search-search-home-home", "3"], + ["account-search-search-search-home-product", "6"], + ["account-search-search-search-home-search", "7"], + ["account-search-search-search-other-account", "1"], + ["account-search-search-search-other-end", "1"], + ["account-search-search-search-other-other", "3"], + ["account-search-search-search-other-product", "3"], + ["account-search-search-search-other-search", "2"], + ["account-search-search-search-product-account", "123"], + ["account-search-search-search-product-end", "325"], + ["account-search-search-search-product-home", "31"], + ["account-search-search-search-product-other", "8"], + ["account-search-search-search-product-product", "656"], + ["account-search-search-search-product-search", "305"], + ["account-search-search-search-search-account", "100"], + ["account-search-search-search-search-end", "90"], + ["account-search-search-search-search-home", "6"], + ["account-search-search-search-search-other", "7"], + ["account-search-search-search-search-product", "437"], + ["account-search-search-search-search-search", "422"], + ["home-account-account-account-account-account", "24329"], + ["home-account-account-account-account-end", "4114"], + ["home-account-account-account-account-home", "3220"], + ["home-account-account-account-account-other", "2251"], + ["home-account-account-account-account-product", "13362"], + ["home-account-account-account-account-search", "1508"], + ["home-account-account-account-end", "9126"], + ["home-account-account-account-home-account", "2002"], + ["home-account-account-account-home-end", "1384"], + ["home-account-account-account-home-home", "822"], + ["home-account-account-account-home-other", "300"], + ["home-account-account-account-home-product", "2438"], + ["home-account-account-account-home-search", "961"], + ["home-account-account-account-other-account", "854"], + ["home-account-account-account-other-end", "589"], + ["home-account-account-account-other-home", "368"], + ["home-account-account-account-other-other", "2101"], + ["home-account-account-account-other-product", "6649"], + ["home-account-account-account-other-search", "119"], + ["home-account-account-account-product-account", "6256"], + ["home-account-account-account-product-end", "7445"], + ["home-account-account-account-product-home", "3239"], + ["home-account-account-account-product-other", "753"], + ["home-account-account-account-product-product", "15393"], + ["home-account-account-account-product-search", "1474"], + ["home-account-account-account-search-account", "1051"], + ["home-account-account-account-search-end", "82"], + ["home-account-account-account-search-home", "39"], + ["home-account-account-account-search-other", "15"], + ["home-account-account-account-search-product", "1431"], + ["home-account-account-account-search-search", "575"], + ["home-account-account-end", "32747"], + ["home-account-account-home-account-account", "3264"], + ["home-account-account-home-account-end", "396"], + ["home-account-account-home-account-home", "592"], + ["home-account-account-home-account-other", "176"], + ["home-account-account-home-account-product", "1154"], + ["home-account-account-home-account-search", "141"], + ["home-account-account-home-end", "4746"], + ["home-account-account-home-home-account", "483"], + ["home-account-account-home-home-end", "492"], + ["home-account-account-home-home-home", "431"], + ["home-account-account-home-home-other", "155"], + ["home-account-account-home-home-product", "595"], + ["home-account-account-home-home-search", "306"], + ["home-account-account-home-other-account", "95"], + ["home-account-account-home-other-end", "62"], + ["home-account-account-home-other-home", "111"], + ["home-account-account-home-other-other", "334"], + ["home-account-account-home-other-product", "230"], + ["home-account-account-home-other-search", "24"], + ["home-account-account-home-product-account", "1116"], + ["home-account-account-home-product-end", "1831"], + ["home-account-account-home-product-home", "1881"], + ["home-account-account-home-product-other", "118"], + ["home-account-account-home-product-product", "2953"], + ["home-account-account-home-product-search", "454"], + ["home-account-account-home-search-account", "730"], + ["home-account-account-home-search-end", "106"], + ["home-account-account-home-search-home", "79"], + ["home-account-account-home-search-other", "10"], + ["home-account-account-home-search-product", "1842"], + ["home-account-account-home-search-search", "577"], + ["home-account-account-other-account-account", "721"], + ["home-account-account-other-account-end", "152"], + ["home-account-account-other-account-home", "98"], + ["home-account-account-other-account-other", "258"], + ["home-account-account-other-account-product", "280"], + ["home-account-account-other-account-search", "43"], + ["home-account-account-other-end", "1191"], + ["home-account-account-other-home-account", "175"], + ["home-account-account-other-home-end", "173"], + ["home-account-account-other-home-home", "91"], + ["home-account-account-other-home-other", "69"], + ["home-account-account-other-home-product", "242"], + ["home-account-account-other-home-search", "111"], + ["home-account-account-other-other-account", "670"], + ["home-account-account-other-other-end", "725"], + ["home-account-account-other-other-home", "486"], + ["home-account-account-other-other-other", "2082"], + ["home-account-account-other-other-product", "1546"], + ["home-account-account-other-other-search", "137"], + ["home-account-account-other-product-account", "478"], + ["home-account-account-other-product-end", "2459"], + ["home-account-account-other-product-home", "547"], + ["home-account-account-other-product-other", "413"], + ["home-account-account-other-product-product", "4145"], + ["home-account-account-other-product-search", "218"], + ["home-account-account-other-search-account", "70"], + ["home-account-account-other-search-end", "8"], + ["home-account-account-other-search-home", "6"], + ["home-account-account-other-search-other", "2"], + ["home-account-account-other-search-product", "167"], + ["home-account-account-other-search-search", "48"], + ["home-account-account-product-account-account", "13660"], + ["home-account-account-product-account-end", "1799"], + ["home-account-account-product-account-home", "1156"], + ["home-account-account-product-account-other", "714"], + ["home-account-account-product-account-product", "9298"], + ["home-account-account-product-account-search", "555"], + ["home-account-account-product-end", "40038"], + ["home-account-account-product-home-account", "3705"], + ["home-account-account-product-home-end", "3535"], + ["home-account-account-product-home-home", "1452"], + ["home-account-account-product-home-other", "514"], + ["home-account-account-product-home-product", "7051"], + ["home-account-account-product-home-search", "2676"], + ["home-account-account-product-other-account", "289"], + ["home-account-account-product-other-end", "235"], + ["home-account-account-product-other-home", "178"], + ["home-account-account-product-other-other", "1126"], + ["home-account-account-product-other-product", "827"], + ["home-account-account-product-other-search", "57"], + ["home-account-account-product-product-account", "7101"], + ["home-account-account-product-product-end", "14563"], + ["home-account-account-product-product-home", "6056"], + ["home-account-account-product-product-other", "615"], + ["home-account-account-product-product-product", "36422"], + ["home-account-account-product-product-search", "3026"], + ["home-account-account-product-search-account", "1859"], + ["home-account-account-product-search-end", "202"], + ["home-account-account-product-search-home", "98"], + ["home-account-account-product-search-other", "21"], + ["home-account-account-product-search-product", "4396"], + ["home-account-account-product-search-search", "1126"], + ["home-account-account-search-account-account", "2518"], + ["home-account-account-search-account-end", "214"], + ["home-account-account-search-account-home", "143"], + ["home-account-account-search-account-other", "58"], + ["home-account-account-search-account-product", "959"], + ["home-account-account-search-account-search", "281"], + ["home-account-account-search-end", "337"], + ["home-account-account-search-home-account", "30"], + ["home-account-account-search-home-end", "30"], + ["home-account-account-search-home-home", "18"], + ["home-account-account-search-home-other", "3"], + ["home-account-account-search-home-product", "41"], + ["home-account-account-search-home-search", "47"], + ["home-account-account-search-other-account", "5"], + ["home-account-account-search-other-end", "1"], + ["home-account-account-search-other-home", "4"], + ["home-account-account-search-other-other", "8"], + ["home-account-account-search-other-product", "15"], + ["home-account-account-search-other-search", "3"], + ["home-account-account-search-product-account", "488"], + ["home-account-account-search-product-end", "1253"], + ["home-account-account-search-product-home", "373"], + ["home-account-account-search-product-other", "55"], + ["home-account-account-search-product-product", "2645"], + ["home-account-account-search-product-search", "995"], + ["home-account-account-search-search-account", "372"], + ["home-account-account-search-search-end", "72"], + ["home-account-account-search-search-home", "44"], + ["home-account-account-search-search-other", "16"], + ["home-account-account-search-search-product", "962"], + ["home-account-account-search-search-search", "481"], + ["home-account-end", "98184"], + ["home-account-home-account-account-account", "1648"], + ["home-account-home-account-account-end", "417"], + ["home-account-home-account-account-home", "611"], + ["home-account-home-account-account-other", "175"], + ["home-account-home-account-account-product", "1489"], + ["home-account-home-account-account-search", "141"], + ["home-account-home-account-end", "1606"], + ["home-account-home-account-home-account", "1016"], + ["home-account-home-account-home-end", "443"], + ["home-account-home-account-home-home", "317"], + ["home-account-home-account-home-other", "80"], + ["home-account-home-account-home-product", "894"], + ["home-account-home-account-home-search", "287"], + ["home-account-home-account-other-account", "51"], + ["home-account-home-account-other-end", "33"], + ["home-account-home-account-other-home", "47"], + ["home-account-home-account-other-other", "233"], + ["home-account-home-account-other-product", "219"], + ["home-account-home-account-other-search", "11"], + ["home-account-home-account-product-account", "743"], + ["home-account-home-account-product-end", "970"], + ["home-account-home-account-product-home", "721"], + ["home-account-home-account-product-other", "62"], + ["home-account-home-account-product-product", "1765"], + ["home-account-home-account-product-search", "171"], + ["home-account-home-account-search-account", "149"], + ["home-account-home-account-search-end", "10"], + ["home-account-home-account-search-home", "10"], + ["home-account-home-account-search-other", "3"], + ["home-account-home-account-search-product", "202"], + ["home-account-home-account-search-search", "77"], + ["home-account-home-end", "13617"], + ["home-account-home-home-account-account", "481"], + ["home-account-home-home-account-end", "133"], + ["home-account-home-home-account-home", "272"], + ["home-account-home-home-account-other", "91"], + ["home-account-home-home-account-product", "336"], + ["home-account-home-home-account-search", "52"], + ["home-account-home-home-end", "1451"], + ["home-account-home-home-home-account", "201"], + ["home-account-home-home-home-end", "253"], + ["home-account-home-home-home-home", "387"], + ["home-account-home-home-home-other", "56"], + ["home-account-home-home-home-product", "342"], + ["home-account-home-home-home-search", "159"], + ["home-account-home-home-other-account", "58"], + ["home-account-home-home-other-end", "18"], + ["home-account-home-home-other-home", "38"], + ["home-account-home-home-other-other", "169"], + ["home-account-home-home-other-product", "98"], + ["home-account-home-home-other-search", "8"], + ["home-account-home-home-product-account", "196"], + ["home-account-home-home-product-end", "422"], + ["home-account-home-home-product-home", "551"], + ["home-account-home-home-product-other", "28"], + ["home-account-home-home-product-product", "771"], + ["home-account-home-home-product-search", "100"], + ["home-account-home-home-search-account", "171"], + ["home-account-home-home-search-end", "32"], + ["home-account-home-home-search-home", "39"], + ["home-account-home-home-search-other", "1"], + ["home-account-home-home-search-product", "575"], + ["home-account-home-home-search-search", "154"], + ["home-account-home-other-account-account", "89"], + ["home-account-home-other-account-end", "24"], + ["home-account-home-other-account-home", "43"], + ["home-account-home-other-account-other", "27"], + ["home-account-home-other-account-product", "50"], + ["home-account-home-other-account-search", "4"], + ["home-account-home-other-end", "141"], + ["home-account-home-other-home-account", "40"], + ["home-account-home-other-home-end", "64"], + ["home-account-home-other-home-home", "41"], + ["home-account-home-other-home-other", "27"], + ["home-account-home-other-home-product", "88"], + ["home-account-home-other-home-search", "21"], + ["home-account-home-other-other-account", "110"], + ["home-account-home-other-other-end", "133"], + ["home-account-home-other-other-home", "162"], + ["home-account-home-other-other-other", "325"], + ["home-account-home-other-other-product", "244"], + ["home-account-home-other-other-search", "14"], + ["home-account-home-other-product-account", "68"], + ["home-account-home-other-product-end", "138"], + ["home-account-home-other-product-home", "71"], + ["home-account-home-other-product-other", "46"], + ["home-account-home-other-product-product", "302"], + ["home-account-home-other-product-search", "40"], + ["home-account-home-other-search-account", "9"], + ["home-account-home-other-search-product", "34"], + ["home-account-home-other-search-search", "8"], + ["home-account-home-product-account-account", "912"], + ["home-account-home-product-account-end", "296"], + ["home-account-home-product-account-home", "378"], + ["home-account-home-product-account-other", "92"], + ["home-account-home-product-account-product", "968"], + ["home-account-home-product-account-search", "64"], + ["home-account-home-product-end", "5950"], + ["home-account-home-product-home-account", "829"], + ["home-account-home-product-home-end", "1267"], + ["home-account-home-product-home-home", "533"], + ["home-account-home-product-home-other", "126"], + ["home-account-home-product-home-product", "3171"], + ["home-account-home-product-home-search", "526"], + ["home-account-home-product-other-account", "23"], + ["home-account-home-product-other-end", "24"], + ["home-account-home-product-other-home", "29"], + ["home-account-home-product-other-other", "74"], + ["home-account-home-product-other-product", "97"], + ["home-account-home-product-other-search", "8"], + ["home-account-home-product-product-account", "747"], + ["home-account-home-product-product-end", "2059"], + ["home-account-home-product-product-home", "1566"], + ["home-account-home-product-product-other", "67"], + ["home-account-home-product-product-product", "4670"], + ["home-account-home-product-product-search", "546"], + ["home-account-home-product-search-account", "196"], + ["home-account-home-product-search-end", "28"], + ["home-account-home-product-search-home", "31"], + ["home-account-home-product-search-other", "2"], + ["home-account-home-product-search-product", "812"], + ["home-account-home-product-search-search", "193"], + ["home-account-home-search-account-account", "734"], + ["home-account-home-search-account-end", "155"], + ["home-account-home-search-account-home", "170"], + ["home-account-home-search-account-other", "48"], + ["home-account-home-search-account-product", "637"], + ["home-account-home-search-account-search", "116"], + ["home-account-home-search-end", "308"], + ["home-account-home-search-home-account", "38"], + ["home-account-home-search-home-end", "30"], + ["home-account-home-search-home-home", "28"], + ["home-account-home-search-home-other", "4"], + ["home-account-home-search-home-product", "62"], + ["home-account-home-search-home-search", "72"], + ["home-account-home-search-other-account", "2"], + ["home-account-home-search-other-end", "3"], + ["home-account-home-search-other-home", "3"], + ["home-account-home-search-other-other", "8"], + ["home-account-home-search-other-product", "13"], + ["home-account-home-search-other-search", "4"], + ["home-account-home-search-product-account", "344"], + ["home-account-home-search-product-end", "1421"], + ["home-account-home-search-product-home", "541"], + ["home-account-home-search-product-other", "37"], + ["home-account-home-search-product-product", "2944"], + ["home-account-home-search-product-search", "1063"], + ["home-account-home-search-search-account", "167"], + ["home-account-home-search-search-end", "70"], + ["home-account-home-search-search-home", "57"], + ["home-account-home-search-search-other", "7"], + ["home-account-home-search-search-product", "1072"], + ["home-account-home-search-search-search", "430"], + ["home-account-other-account-account-account", "770"], + ["home-account-other-account-account-end", "180"], + ["home-account-other-account-account-home", "164"], + ["home-account-other-account-account-other", "169"], + ["home-account-other-account-account-product", "493"], + ["home-account-other-account-account-search", "51"], + ["home-account-other-account-end", "542"], + ["home-account-other-account-home-account", "96"], + ["home-account-other-account-home-end", "55"], + ["home-account-other-account-home-home", "54"], + ["home-account-other-account-home-other", "18"], + ["home-account-other-account-home-product", "153"], + ["home-account-other-account-home-search", "37"], + ["home-account-other-account-other-account", "158"], + ["home-account-other-account-other-end", "59"], + ["home-account-other-account-other-home", "62"], + ["home-account-other-account-other-other", "211"], + ["home-account-other-account-other-product", "253"], + ["home-account-other-account-other-search", "23"], + ["home-account-other-account-product-account", "276"], + ["home-account-other-account-product-end", "273"], + ["home-account-other-account-product-home", "130"], + ["home-account-other-account-product-other", "49"], + ["home-account-other-account-product-product", "479"], + ["home-account-other-account-product-search", "44"], + ["home-account-other-account-search-account", "56"], + ["home-account-other-account-search-end", "3"], + ["home-account-other-account-search-home", "4"], + ["home-account-other-account-search-product", "71"], + ["home-account-other-account-search-search", "28"], + ["home-account-other-end", "4663"], + ["home-account-other-home-account-account", "180"], + ["home-account-other-home-account-end", "60"], + ["home-account-other-home-account-home", "55"], + ["home-account-other-home-account-other", "73"], + ["home-account-other-home-account-product", "135"], + ["home-account-other-home-account-search", "15"], + ["home-account-other-home-end", "740"], + ["home-account-other-home-home-account", "68"], + ["home-account-other-home-home-end", "60"], + ["home-account-other-home-home-home", "61"], + ["home-account-other-home-home-other", "52"], + ["home-account-other-home-home-product", "80"], + ["home-account-other-home-home-search", "32"], + ["home-account-other-home-other-account", "27"], + ["home-account-other-home-other-end", "21"], + ["home-account-other-home-other-home", "26"], + ["home-account-other-home-other-other", "87"], + ["home-account-other-home-other-product", "45"], + ["home-account-other-home-other-search", "3"], + ["home-account-other-home-product-account", "145"], + ["home-account-other-home-product-end", "235"], + ["home-account-other-home-product-home", "256"], + ["home-account-other-home-product-other", "20"], + ["home-account-other-home-product-product", "409"], + ["home-account-other-home-product-search", "51"], + ["home-account-other-home-search-account", "64"], + ["home-account-other-home-search-end", "9"], + ["home-account-other-home-search-home", "7"], + ["home-account-other-home-search-other", "1"], + ["home-account-other-home-search-product", "239"], + ["home-account-other-home-search-search", "71"], + ["home-account-other-other-account-account", "913"], + ["home-account-other-other-account-end", "397"], + ["home-account-other-other-account-home", "197"], + ["home-account-other-other-account-other", "466"], + ["home-account-other-other-account-product", "368"], + ["home-account-other-other-account-search", "69"], + ["home-account-other-other-end", "4206"], + ["home-account-other-other-home-account", "433"], + ["home-account-other-other-home-end", "405"], + ["home-account-other-other-home-home", "260"], + ["home-account-other-other-home-other", "242"], + ["home-account-other-other-home-product", "575"], + ["home-account-other-other-home-search", "254"], + ["home-account-other-other-other-account", "1206"], + ["home-account-other-other-other-end", "1697"], + ["home-account-other-other-other-home", "1178"], + ["home-account-other-other-other-other", "2816"], + ["home-account-other-other-other-product", "1776"], + ["home-account-other-other-other-search", "237"], + ["home-account-other-other-product-account", "607"], + ["home-account-other-other-product-end", "1371"], + ["home-account-other-other-product-home", "584"], + ["home-account-other-other-product-other", "744"], + ["home-account-other-other-product-product", "1942"], + ["home-account-other-other-product-search", "208"], + ["home-account-other-other-search-account", "125"], + ["home-account-other-other-search-end", "34"], + ["home-account-other-other-search-home", "15"], + ["home-account-other-other-search-other", "16"], + ["home-account-other-other-search-product", "311"], + ["home-account-other-other-search-search", "96"], + ["home-account-other-product-account-account", "526"], + ["home-account-other-product-account-end", "134"], + ["home-account-other-product-account-home", "78"], + ["home-account-other-product-account-other", "257"], + ["home-account-other-product-account-product", "420"], + ["home-account-other-product-account-search", "28"], + ["home-account-other-product-end", "5740"], + ["home-account-other-product-home-account", "262"], + ["home-account-other-product-home-end", "266"], + ["home-account-other-product-home-home", "110"], + ["home-account-other-product-home-other", "87"], + ["home-account-other-product-home-product", "551"], + ["home-account-other-product-home-search", "282"], + ["home-account-other-product-other-account", "143"], + ["home-account-other-product-other-end", "79"], + ["home-account-other-product-other-home", "56"], + ["home-account-other-product-other-other", "241"], + ["home-account-other-product-other-product", "598"], + ["home-account-other-product-other-search", "24"], + ["home-account-other-product-product-account", "500"], + ["home-account-other-product-product-end", "2505"], + ["home-account-other-product-product-home", "695"], + ["home-account-other-product-product-other", "271"], + ["home-account-other-product-product-product", "6414"], + ["home-account-other-product-product-search", "380"], + ["home-account-other-product-search-account", "85"], + ["home-account-other-product-search-end", "22"], + ["home-account-other-product-search-home", "7"], + ["home-account-other-product-search-other", "4"], + ["home-account-other-product-search-product", "497"], + ["home-account-other-product-search-search", "125"], + ["home-account-other-search-account-account", "86"], + ["home-account-other-search-account-end", "10"], + ["home-account-other-search-account-home", "12"], + ["home-account-other-search-account-other", "13"], + ["home-account-other-search-account-product", "103"], + ["home-account-other-search-account-search", "22"], + ["home-account-other-search-end", "32"], + ["home-account-other-search-home-account", "2"], + ["home-account-other-search-home-end", "3"], + ["home-account-other-search-home-home", "1"], + ["home-account-other-search-home-product", "3"], + ["home-account-other-search-home-search", "3"], + ["home-account-other-search-other-other", "4"], + ["home-account-other-search-other-product", "7"], + ["home-account-other-search-other-search", "1"], + ["home-account-other-search-product-account", "64"], + ["home-account-other-search-product-end", "154"], + ["home-account-other-search-product-home", "48"], + ["home-account-other-search-product-other", "15"], + ["home-account-other-search-product-product", "306"], + ["home-account-other-search-product-search", "122"], + ["home-account-other-search-search-account", "22"], + ["home-account-other-search-search-end", "8"], + ["home-account-other-search-search-home", "5"], + ["home-account-other-search-search-other", "3"], + ["home-account-other-search-search-product", "123"], + ["home-account-other-search-search-search", "52"], + ["home-account-product-account-account-account", "5517"], + ["home-account-product-account-account-end", "1373"], + ["home-account-product-account-account-home", "900"], + ["home-account-product-account-account-other", "504"], + ["home-account-product-account-account-product", "6863"], + ["home-account-product-account-account-search", "455"], + ["home-account-product-account-end", "4888"], + ["home-account-product-account-home-account", "828"], + ["home-account-product-account-home-end", "575"], + ["home-account-product-account-home-home", "268"], + ["home-account-product-account-home-other", "80"], + ["home-account-product-account-home-product", "1467"], + ["home-account-product-account-home-search", "446"], + ["home-account-product-account-other-account", "192"], + ["home-account-product-account-other-end", "122"], + ["home-account-product-account-other-home", "73"], + ["home-account-product-account-other-other", "566"], + ["home-account-product-account-other-product", "638"], + ["home-account-product-account-other-search", "36"], + ["home-account-product-account-product-account", "6727"], + ["home-account-product-account-product-end", "5049"], + ["home-account-product-account-product-home", "2377"], + ["home-account-product-account-product-other", "355"], + ["home-account-product-account-product-product", "9230"], + ["home-account-product-account-product-search", "1096"], + ["home-account-product-account-search-account", "436"], + ["home-account-product-account-search-end", "32"], + ["home-account-product-account-search-home", "16"], + ["home-account-product-account-search-other", "2"], + ["home-account-product-account-search-product", "662"], + ["home-account-product-account-search-search", "208"], + ["home-account-product-end", "91339"], + ["home-account-product-home-account-account", "2214"], + ["home-account-product-home-account-end", "696"], + ["home-account-product-home-account-home", "666"], + ["home-account-product-home-account-other", "223"], + ["home-account-product-home-account-product", "3772"], + ["home-account-product-home-account-search", "199"], + ["home-account-product-home-end", "7962"], + ["home-account-product-home-home-account", "494"], + ["home-account-product-home-home-end", "571"], + ["home-account-product-home-home-home", "526"], + ["home-account-product-home-home-other", "114"], + ["home-account-product-home-home-product", "1078"], + ["home-account-product-home-home-search", "412"], + ["home-account-product-home-other-account", "135"], + ["home-account-product-home-other-end", "83"], + ["home-account-product-home-other-home", "108"], + ["home-account-product-home-other-other", "364"], + ["home-account-product-home-other-product", "321"], + ["home-account-product-home-other-search", "14"], + ["home-account-product-home-product-account", "1953"], + ["home-account-product-home-product-end", "4111"], + ["home-account-product-home-product-home", "5226"], + ["home-account-product-home-product-other", "130"], + ["home-account-product-home-product-product", "6175"], + ["home-account-product-home-product-search", "845"], + ["home-account-product-home-search-account", "992"], + ["home-account-product-home-search-end", "213"], + ["home-account-product-home-search-home", "95"], + ["home-account-product-home-search-other", "8"], + ["home-account-product-home-search-product", "3649"], + ["home-account-product-home-search-search", "991"], + ["home-account-product-other-account-account", "211"], + ["home-account-product-other-account-end", "85"], + ["home-account-product-other-account-home", "51"], + ["home-account-product-other-account-other", "66"], + ["home-account-product-other-account-product", "189"], + ["home-account-product-other-account-search", "21"], + ["home-account-product-other-end", "539"], + ["home-account-product-other-home-account", "107"], + ["home-account-product-other-home-end", "77"], + ["home-account-product-other-home-home", "44"], + ["home-account-product-other-home-other", "18"], + ["home-account-product-other-home-product", "146"], + ["home-account-product-other-home-search", "45"], + ["home-account-product-other-other-account", "322"], + ["home-account-product-other-other-end", "392"], + ["home-account-product-other-other-home", "254"], + ["home-account-product-other-other-other", "801"], + ["home-account-product-other-other-product", "725"], + ["home-account-product-other-other-search", "66"], + ["home-account-product-other-product-account", "211"], + ["home-account-product-other-product-end", "413"], + ["home-account-product-other-product-home", "143"], + ["home-account-product-other-product-other", "113"], + ["home-account-product-other-product-product", "864"], + ["home-account-product-other-product-search", "84"], + ["home-account-product-other-search-account", "24"], + ["home-account-product-other-search-end", "6"], + ["home-account-product-other-search-other", "1"], + ["home-account-product-other-search-product", "70"], + ["home-account-product-other-search-search", "20"], + ["home-account-product-product-account-account", "4239"], + ["home-account-product-product-account-end", "1316"], + ["home-account-product-product-account-home", "818"], + ["home-account-product-product-account-other", "399"], + ["home-account-product-product-account-product", "6739"], + ["home-account-product-product-account-search", "364"], + ["home-account-product-product-end", "34238"], + ["home-account-product-product-home-account", "2438"], + ["home-account-product-product-home-end", "2525"], + ["home-account-product-product-home-home", "1116"], + ["home-account-product-product-home-other", "324"], + ["home-account-product-product-home-product", "6530"], + ["home-account-product-product-home-search", "2137"], + ["home-account-product-product-other-account", "155"], + ["home-account-product-product-other-end", "127"], + ["home-account-product-product-other-home", "74"], + ["home-account-product-product-other-other", "559"], + ["home-account-product-product-other-product", "567"], + ["home-account-product-product-other-search", "39"], + ["home-account-product-product-product-account", "6343"], + ["home-account-product-product-product-end", "16257"], + ["home-account-product-product-product-home", "6058"], + ["home-account-product-product-product-other", "601"], + ["home-account-product-product-product-product", "57209"], + ["home-account-product-product-product-search", "3989"], + ["home-account-product-product-search-account", "1160"], + ["home-account-product-product-search-end", "185"], + ["home-account-product-product-search-home", "91"], + ["home-account-product-product-search-other", "16"], + ["home-account-product-product-search-product", "5358"], + ["home-account-product-product-search-search", "1254"], + ["home-account-product-search-account-account", "1152"], + ["home-account-product-search-account-end", "230"], + ["home-account-product-search-account-home", "99"], + ["home-account-product-search-account-other", "80"], + ["home-account-product-search-account-product", "1602"], + ["home-account-product-search-account-search", "281"], + ["home-account-product-search-end", "465"], + ["home-account-product-search-home-account", "27"], + ["home-account-product-search-home-end", "17"], + ["home-account-product-search-home-home", "19"], + ["home-account-product-search-home-other", "3"], + ["home-account-product-search-home-product", "61"], + ["home-account-product-search-home-search", "49"], + ["home-account-product-search-other-end", "2"], + ["home-account-product-search-other-other", "9"], + ["home-account-product-search-other-product", "5"], + ["home-account-product-search-other-search", "3"], + ["home-account-product-search-product-account", "713"], + ["home-account-product-search-product-end", "2223"], + ["home-account-product-search-product-home", "698"], + ["home-account-product-search-product-other", "63"], + ["home-account-product-search-product-product", "5457"], + ["home-account-product-search-product-search", "2064"], + ["home-account-product-search-search-account", "302"], + ["home-account-product-search-search-end", "108"], + ["home-account-product-search-search-home", "46"], + ["home-account-product-search-search-other", "6"], + ["home-account-product-search-search-product", "1611"], + ["home-account-product-search-search-search", "623"], + ["home-account-search-account-account-account", "1125"], + ["home-account-search-account-account-end", "259"], + ["home-account-search-account-account-home", "198"], + ["home-account-search-account-account-other", "72"], + ["home-account-search-account-account-product", "1498"], + ["home-account-search-account-account-search", "296"], + ["home-account-search-account-end", "834"], + ["home-account-search-account-home-account", "97"], + ["home-account-search-account-home-end", "91"], + ["home-account-search-account-home-home", "51"], + ["home-account-search-account-home-other", "14"], + ["home-account-search-account-home-product", "144"], + ["home-account-search-account-home-search", "125"], + ["home-account-search-account-other-account", "20"], + ["home-account-search-account-other-end", "15"], + ["home-account-search-account-other-home", "14"], + ["home-account-search-account-other-other", "40"], + ["home-account-search-account-other-product", "114"], + ["home-account-search-account-other-search", "13"], + ["home-account-search-account-product-account", "615"], + ["home-account-search-account-product-end", "766"], + ["home-account-search-account-product-home", "309"], + ["home-account-search-account-product-other", "28"], + ["home-account-search-account-product-product", "1542"], + ["home-account-search-account-product-search", "360"], + ["home-account-search-account-search-account", "593"], + ["home-account-search-account-search-end", "14"], + ["home-account-search-account-search-home", "11"], + ["home-account-search-account-search-other", "2"], + ["home-account-search-account-search-product", "240"], + ["home-account-search-account-search-search", "120"], + ["home-account-search-end", "1004"], + ["home-account-search-home-account-account", "27"], + ["home-account-search-home-account-end", "10"], + ["home-account-search-home-account-home", "9"], + ["home-account-search-home-account-other", "4"], + ["home-account-search-home-account-product", "15"], + ["home-account-search-home-account-search", "5"], + ["home-account-search-home-end", "68"], + ["home-account-search-home-home-account", "7"], + ["home-account-search-home-home-end", "12"], + ["home-account-search-home-home-home", "10"], + ["home-account-search-home-home-other", "2"], + ["home-account-search-home-home-product", "7"], + ["home-account-search-home-home-search", "10"], + ["home-account-search-home-other-account", "1"], + ["home-account-search-home-other-end", "1"], + ["home-account-search-home-other-home", "1"], + ["home-account-search-home-other-other", "2"], + ["home-account-search-home-other-product", "1"], + ["home-account-search-home-product-account", "9"], + ["home-account-search-home-product-end", "17"], + ["home-account-search-home-product-home", "15"], + ["home-account-search-home-product-other", "2"], + ["home-account-search-home-product-product", "55"], + ["home-account-search-home-product-search", "9"], + ["home-account-search-home-search-account", "12"], + ["home-account-search-home-search-end", "5"], + ["home-account-search-home-search-home", "3"], + ["home-account-search-home-search-product", "80"], + ["home-account-search-home-search-search", "26"], + ["home-account-search-other-account-account", "7"], + ["home-account-search-other-account-home", "1"], + ["home-account-search-other-account-product", "1"], + ["home-account-search-other-account-search", "1"], + ["home-account-search-other-end", "7"], + ["home-account-search-other-home-end", "1"], + ["home-account-search-other-home-home", "1"], + ["home-account-search-other-home-other", "2"], + ["home-account-search-other-home-search", "1"], + ["home-account-search-other-other-account", "2"], + ["home-account-search-other-other-end", "3"], + ["home-account-search-other-other-home", "1"], + ["home-account-search-other-other-other", "10"], + ["home-account-search-other-other-product", "10"], + ["home-account-search-other-other-search", "5"], + ["home-account-search-other-product-account", "6"], + ["home-account-search-other-product-end", "19"], + ["home-account-search-other-product-home", "7"], + ["home-account-search-other-product-other", "7"], + ["home-account-search-other-product-product", "26"], + ["home-account-search-other-product-search", "5"], + ["home-account-search-other-search-account", "1"], + ["home-account-search-other-search-home", "1"], + ["home-account-search-other-search-product", "8"], + ["home-account-search-product-account-account", "471"], + ["home-account-search-product-account-end", "149"], + ["home-account-search-product-account-home", "73"], + ["home-account-search-product-account-other", "63"], + ["home-account-search-product-account-product", "604"], + ["home-account-search-product-account-search", "93"], + ["home-account-search-product-end", "4693"], + ["home-account-search-product-home-account", "144"], + ["home-account-search-product-home-end", "183"], + ["home-account-search-product-home-home", "83"], + ["home-account-search-product-home-other", "34"], + ["home-account-search-product-home-product", "359"], + ["home-account-search-product-home-search", "452"], + ["home-account-search-product-other-account", "22"], + ["home-account-search-product-other-end", "14"], + ["home-account-search-product-other-home", "5"], + ["home-account-search-product-other-other", "41"], + ["home-account-search-product-other-product", "65"], + ["home-account-search-product-other-search", "9"], + ["home-account-search-product-product-account", "542"], + ["home-account-search-product-product-end", "2076"], + ["home-account-search-product-product-home", "548"], + ["home-account-search-product-product-other", "51"], + ["home-account-search-product-product-product", "5731"], + ["home-account-search-product-product-search", "1544"], + ["home-account-search-product-search-account", "200"], + ["home-account-search-product-search-end", "117"], + ["home-account-search-product-search-home", "34"], + ["home-account-search-product-search-other", "13"], + ["home-account-search-product-search-product", "2872"], + ["home-account-search-product-search-search", "613"], + ["home-account-search-search-account-account", "320"], + ["home-account-search-search-account-end", "60"], + ["home-account-search-search-account-home", "42"], + ["home-account-search-search-account-other", "22"], + ["home-account-search-search-account-product", "288"], + ["home-account-search-search-account-search", "67"], + ["home-account-search-search-end", "258"], + ["home-account-search-search-home-account", "17"], + ["home-account-search-search-home-end", "14"], + ["home-account-search-search-home-home", "8"], + ["home-account-search-search-home-other", "3"], + ["home-account-search-search-home-product", "25"], + ["home-account-search-search-home-search", "43"], + ["home-account-search-search-other-account", "2"], + ["home-account-search-search-other-end", "1"], + ["home-account-search-search-other-home", "3"], + ["home-account-search-search-other-other", "12"], + ["home-account-search-search-other-product", "9"], + ["home-account-search-search-product-account", "225"], + ["home-account-search-search-product-end", "759"], + ["home-account-search-search-product-home", "182"], + ["home-account-search-search-product-other", "21"], + ["home-account-search-search-product-product", "1617"], + ["home-account-search-search-product-search", "672"], + ["home-account-search-search-search-account", "157"], + ["home-account-search-search-search-end", "76"], + ["home-account-search-search-search-home", "46"], + ["home-account-search-search-search-other", "5"], + ["home-account-search-search-search-product", "780"], + ["home-account-search-search-search-search", "487"], + ["home-end", "4177943"], + ["home-home-account-account-account-account", "7710"], + ["home-home-account-account-account-end", "985"], + ["home-home-account-account-account-home", "1308"], + ["home-home-account-account-account-other", "1624"], + ["home-home-account-account-account-product", "4759"], + ["home-home-account-account-account-search", "471"], + ["home-home-account-account-end", "3571"], + ["home-home-account-account-home-account", "842"], + ["home-home-account-account-home-end", "756"], + ["home-home-account-account-home-home", "649"], + ["home-home-account-account-home-other", "148"], + ["home-home-account-account-home-product", "1139"], + ["home-home-account-account-home-search", "440"], + ["home-home-account-account-other-account", "298"], + ["home-home-account-account-other-end", "141"], + ["home-home-account-account-other-home", "166"], + ["home-home-account-account-other-other", "1141"], + ["home-home-account-account-other-product", "1150"], + ["home-home-account-account-other-search", "49"], + ["home-home-account-account-product-account", "3758"], + ["home-home-account-account-product-end", "4507"], + ["home-home-account-account-product-home", "2695"], + ["home-home-account-account-product-other", "458"], + ["home-home-account-account-product-product", "8403"], + ["home-home-account-account-product-search", "906"], + ["home-home-account-account-search-account", "531"], + ["home-home-account-account-search-end", "49"], + ["home-home-account-account-search-home", "25"], + ["home-home-account-account-search-other", "8"], + ["home-home-account-account-search-product", "784"], + ["home-home-account-account-search-search", "270"], + ["home-home-account-end", "9861"], + ["home-home-account-home-account-account", "668"], + ["home-home-account-home-account-end", "198"], + ["home-home-account-home-account-home", "1098"], + ["home-home-account-home-account-other", "105"], + ["home-home-account-home-account-product", "612"], + ["home-home-account-home-account-search", "57"], + ["home-home-account-home-end", "2116"], + ["home-home-account-home-home-account", "369"], + ["home-home-account-home-home-end", "387"], + ["home-home-account-home-home-home", "638"], + ["home-home-account-home-home-other", "86"], + ["home-home-account-home-home-product", "521"], + ["home-home-account-home-home-search", "232"], + ["home-home-account-home-other-account", "42"], + ["home-home-account-home-other-end", "13"], + ["home-home-account-home-other-home", "145"], + ["home-home-account-home-other-other", "187"], + ["home-home-account-home-other-product", "95"], + ["home-home-account-home-other-search", "8"], + ["home-home-account-home-product-account", "369"], + ["home-home-account-home-product-end", "738"], + ["home-home-account-home-product-home", "1612"], + ["home-home-account-home-product-other", "41"], + ["home-home-account-home-product-product", "1370"], + ["home-home-account-home-product-search", "171"], + ["home-home-account-home-search-account", "240"], + ["home-home-account-home-search-end", "40"], + ["home-home-account-home-search-home", "110"], + ["home-home-account-home-search-other", "7"], + ["home-home-account-home-search-product", "770"], + ["home-home-account-home-search-search", "267"], + ["home-home-account-other-account-account", "351"], + ["home-home-account-other-account-end", "72"], + ["home-home-account-other-account-home", "88"], + ["home-home-account-other-account-other", "172"], + ["home-home-account-other-account-product", "247"], + ["home-home-account-other-account-search", "31"], + ["home-home-account-other-end", "468"], + ["home-home-account-other-home-account", "73"], + ["home-home-account-other-home-end", "129"], + ["home-home-account-other-home-home", "95"], + ["home-home-account-other-home-other", "28"], + ["home-home-account-other-home-product", "186"], + ["home-home-account-other-home-search", "67"], + ["home-home-account-other-other-account", "428"], + ["home-home-account-other-other-end", "449"], + ["home-home-account-other-other-home", "416"], + ["home-home-account-other-other-other", "1717"], + ["home-home-account-other-other-product", "971"], + ["home-home-account-other-other-search", "93"], + ["home-home-account-other-product-account", "249"], + ["home-home-account-other-product-end", "640"], + ["home-home-account-other-product-home", "249"], + ["home-home-account-other-product-other", "196"], + ["home-home-account-other-product-product", "1381"], + ["home-home-account-other-product-search", "104"], + ["home-home-account-other-search-account", "38"], + ["home-home-account-other-search-end", "4"], + ["home-home-account-other-search-home", "3"], + ["home-home-account-other-search-other", "3"], + ["home-home-account-other-search-product", "97"], + ["home-home-account-other-search-search", "41"], + ["home-home-account-product-account-account", "2088"], + ["home-home-account-product-account-end", "546"], + ["home-home-account-product-account-home", "521"], + ["home-home-account-product-account-other", "249"], + ["home-home-account-product-account-product", "3293"], + ["home-home-account-product-account-search", "174"], + ["home-home-account-product-end", "9860"], + ["home-home-account-product-home-account", "977"], + ["home-home-account-product-home-end", "1169"], + ["home-home-account-product-home-home", "812"], + ["home-home-account-product-home-other", "142"], + ["home-home-account-product-home-product", "2214"], + ["home-home-account-product-home-search", "643"], + ["home-home-account-product-other-account", "124"], + ["home-home-account-product-other-end", "65"], + ["home-home-account-product-other-home", "57"], + ["home-home-account-product-other-other", "517"], + ["home-home-account-product-other-product", "248"], + ["home-home-account-product-other-search", "19"], + ["home-home-account-product-product-account", "1817"], + ["home-home-account-product-product-end", "3668"], + ["home-home-account-product-product-home", "1927"], + ["home-home-account-product-product-other", "249"], + ["home-home-account-product-product-product", "10759"], + ["home-home-account-product-product-search", "894"], + ["home-home-account-product-search-account", "351"], + ["home-home-account-product-search-end", "61"], + ["home-home-account-product-search-home", "22"], + ["home-home-account-product-search-other", "4"], + ["home-home-account-product-search-product", "1319"], + ["home-home-account-product-search-search", "332"], + ["home-home-account-search-account-account", "420"], + ["home-home-account-search-account-end", "89"], + ["home-home-account-search-account-home", "81"], + ["home-home-account-search-account-other", "36"], + ["home-home-account-search-account-product", "376"], + ["home-home-account-search-account-search", "129"], + ["home-home-account-search-end", "90"], + ["home-home-account-search-home-account", "16"], + ["home-home-account-search-home-end", "8"], + ["home-home-account-search-home-home", "24"], + ["home-home-account-search-home-other", "2"], + ["home-home-account-search-home-product", "17"], + ["home-home-account-search-home-search", "22"], + ["home-home-account-search-other-account", "2"], + ["home-home-account-search-other-end", "2"], + ["home-home-account-search-other-home", "3"], + ["home-home-account-search-other-other", "5"], + ["home-home-account-search-other-product", "5"], + ["home-home-account-search-other-search", "1"], + ["home-home-account-search-product-account", "165"], + ["home-home-account-search-product-end", "463"], + ["home-home-account-search-product-home", "171"], + ["home-home-account-search-product-other", "23"], + ["home-home-account-search-product-product", "1188"], + ["home-home-account-search-product-search", "432"], + ["home-home-account-search-search-account", "113"], + ["home-home-account-search-search-end", "28"], + ["home-home-account-search-search-home", "15"], + ["home-home-account-search-search-other", "4"], + ["home-home-account-search-search-product", "419"], + ["home-home-account-search-search-search", "198"], + ["home-home-end", "385334"], + ["home-home-home-account-account-account", "3033"], + ["home-home-home-account-account-end", "554"], + ["home-home-home-account-account-home", "760"], + ["home-home-home-account-account-other", "518"], + ["home-home-home-account-account-product", "3230"], + ["home-home-home-account-account-search", "242"], + ["home-home-home-account-end", "1595"], + ["home-home-home-account-home-account", "890"], + ["home-home-home-account-home-end", "503"], + ["home-home-home-account-home-home", "792"], + ["home-home-home-account-home-other", "164"], + ["home-home-home-account-home-product", "1061"], + ["home-home-home-account-home-search", "280"], + ["home-home-home-account-other-account", "148"], + ["home-home-home-account-other-end", "76"], + ["home-home-home-account-other-home", "117"], + ["home-home-home-account-other-other", "839"], + ["home-home-home-account-other-product", "426"], + ["home-home-home-account-other-search", "33"], + ["home-home-home-account-product-account", "1115"], + ["home-home-home-account-product-end", "1437"], + ["home-home-home-account-product-home", "1082"], + ["home-home-home-account-product-other", "189"], + ["home-home-home-account-product-product", "2900"], + ["home-home-home-account-product-search", "359"], + ["home-home-home-account-search-account", "179"], + ["home-home-home-account-search-end", "14"], + ["home-home-home-account-search-home", "23"], + ["home-home-home-account-search-other", "4"], + ["home-home-home-account-search-product", "350"], + ["home-home-home-account-search-search", "117"], + ["home-home-home-end", "63743"], + ["home-home-home-home-account-account", "1734"], + ["home-home-home-home-account-end", "338"], + ["home-home-home-home-account-home", "1153"], + ["home-home-home-home-account-other", "326"], + ["home-home-home-home-account-product", "1374"], + ["home-home-home-home-account-search", "123"], + ["home-home-home-home-end", "16410"], + ["home-home-home-home-home-account", "1477"], + ["home-home-home-home-home-end", "5225"], + ["home-home-home-home-home-home", "21285"], + ["home-home-home-home-home-other", "1268"], + ["home-home-home-home-home-product", "8458"], + ["home-home-home-home-home-search", "3318"], + ["home-home-home-home-other-account", "378"], + ["home-home-home-home-other-end", "204"], + ["home-home-home-home-other-home", "626"], + ["home-home-home-home-other-other", "1867"], + ["home-home-home-home-other-product", "1407"], + ["home-home-home-home-other-search", "133"], + ["home-home-home-home-product-account", "1354"], + ["home-home-home-home-product-end", "5116"], + ["home-home-home-home-product-home", "9416"], + ["home-home-home-home-product-other", "369"], + ["home-home-home-home-product-product", "11766"], + ["home-home-home-home-product-search", "1280"], + ["home-home-home-home-search-account", "926"], + ["home-home-home-home-search-end", "358"], + ["home-home-home-home-search-home", "1496"], + ["home-home-home-home-search-other", "36"], + ["home-home-home-home-search-product", "7815"], + ["home-home-home-home-search-search", "2209"], + ["home-home-home-other-account-account", "950"], + ["home-home-home-other-account-end", "162"], + ["home-home-home-other-account-home", "260"], + ["home-home-home-other-account-other", "289"], + ["home-home-home-other-account-product", "398"], + ["home-home-home-other-account-search", "66"], + ["home-home-home-other-end", "1112"], + ["home-home-home-other-home-account", "230"], + ["home-home-home-other-home-end", "407"], + ["home-home-home-other-home-home", "727"], + ["home-home-home-other-home-other", "292"], + ["home-home-home-other-home-product", "853"], + ["home-home-home-other-home-search", "212"], + ["home-home-home-other-other-account", "601"], + ["home-home-home-other-other-end", "968"], + ["home-home-home-other-other-home", "1175"], + ["home-home-home-other-other-other", "3635"], + ["home-home-home-other-other-product", "2906"], + ["home-home-home-other-other-search", "252"], + ["home-home-home-other-product-account", "531"], + ["home-home-home-other-product-end", "1585"], + ["home-home-home-other-product-home", "725"], + ["home-home-home-other-product-other", "738"], + ["home-home-home-other-product-product", "4325"], + ["home-home-home-other-product-search", "418"], + ["home-home-home-other-search-account", "78"], + ["home-home-home-other-search-end", "13"], + ["home-home-home-other-search-home", "12"], + ["home-home-home-other-search-other", "12"], + ["home-home-home-other-search-product", "463"], + ["home-home-home-other-search-search", "113"], + ["home-home-home-product-account-account", "2677"], + ["home-home-home-product-account-end", "608"], + ["home-home-home-product-account-home", "642"], + ["home-home-home-product-account-other", "252"], + ["home-home-home-product-account-product", "3053"], + ["home-home-home-product-account-search", "211"], + ["home-home-home-product-end", "26436"], + ["home-home-home-product-home-account", "2104"], + ["home-home-home-product-home-end", "11438"], + ["home-home-home-product-home-home", "7650"], + ["home-home-home-product-home-other", "687"], + ["home-home-home-product-home-product", "16281"], + ["home-home-home-product-home-search", "2655"], + ["home-home-home-product-other-account", "157"], + ["home-home-home-product-other-end", "142"], + ["home-home-home-product-other-home", "180"], + ["home-home-home-product-other-other", "740"], + ["home-home-home-product-other-product", "859"], + ["home-home-home-product-other-search", "57"], + ["home-home-home-product-product-account", "2904"], + ["home-home-home-product-product-end", "12036"], + ["home-home-home-product-product-home", "7861"], + ["home-home-home-product-product-other", "697"], + ["home-home-home-product-product-product", "33619"], + ["home-home-home-product-product-search", "2984"], + ["home-home-home-product-search-account", "654"], + ["home-home-home-product-search-end", "195"], + ["home-home-home-product-search-home", "101"], + ["home-home-home-product-search-other", "16"], + ["home-home-home-product-search-product", "4820"], + ["home-home-home-product-search-search", "1195"], + ["home-home-home-search-account-account", "1710"], + ["home-home-home-search-account-end", "211"], + ["home-home-home-search-account-home", "253"], + ["home-home-home-search-account-other", "140"], + ["home-home-home-search-account-product", "1513"], + ["home-home-home-search-account-search", "291"], + ["home-home-home-search-end", "1546"], + ["home-home-home-search-home-account", "316"], + ["home-home-home-search-home-end", "235"], + ["home-home-home-search-home-home", "1186"], + ["home-home-home-search-home-other", "24"], + ["home-home-home-search-home-product", "2067"], + ["home-home-home-search-home-search", "803"], + ["home-home-home-search-other-account", "9"], + ["home-home-home-search-other-end", "9"], + ["home-home-home-search-other-home", "12"], + ["home-home-home-search-other-other", "44"], + ["home-home-home-search-other-product", "67"], + ["home-home-home-search-other-search", "25"], + ["home-home-home-search-product-account", "867"], + ["home-home-home-search-product-end", "7764"], + ["home-home-home-search-product-home", "2891"], + ["home-home-home-search-product-other", "269"], + ["home-home-home-search-product-product", "17652"], + ["home-home-home-search-product-search", "6626"], + ["home-home-home-search-search-account", "458"], + ["home-home-home-search-search-end", "448"], + ["home-home-home-search-search-home", "278"], + ["home-home-home-search-search-other", "49"], + ["home-home-home-search-search-product", "5919"], + ["home-home-home-search-search-search", "2582"], + ["home-home-other-account-account-account", "2495"], + ["home-home-other-account-account-end", "289"], + ["home-home-other-account-account-home", "445"], + ["home-home-other-account-account-other", "460"], + ["home-home-other-account-account-product", "1397"], + ["home-home-other-account-account-search", "149"], + ["home-home-other-account-end", "843"], + ["home-home-other-account-home-account", "141"], + ["home-home-other-account-home-end", "274"], + ["home-home-other-account-home-home", "259"], + ["home-home-other-account-home-other", "108"], + ["home-home-other-account-home-product", "380"], + ["home-home-other-account-home-search", "130"], + ["home-home-other-account-other-account", "310"], + ["home-home-other-account-other-end", "90"], + ["home-home-other-account-other-home", "172"], + ["home-home-other-account-other-other", "760"], + ["home-home-other-account-other-product", "298"], + ["home-home-other-account-other-search", "32"], + ["home-home-other-account-product-account", "630"], + ["home-home-other-account-product-end", "391"], + ["home-home-other-account-product-home", "333"], + ["home-home-other-account-product-other", "195"], + ["home-home-other-account-product-product", "827"], + ["home-home-other-account-product-search", "113"], + ["home-home-other-account-search-account", "112"], + ["home-home-other-account-search-end", "6"], + ["home-home-other-account-search-home", "5"], + ["home-home-other-account-search-other", "5"], + ["home-home-other-account-search-product", "172"], + ["home-home-other-account-search-search", "68"], + ["home-home-other-end", "7026"], + ["home-home-other-home-account-account", "368"], + ["home-home-other-home-account-end", "68"], + ["home-home-other-home-account-home", "212"], + ["home-home-other-home-account-other", "55"], + ["home-home-other-home-account-product", "257"], + ["home-home-other-home-account-search", "25"], + ["home-home-other-home-end", "2231"], + ["home-home-other-home-home-account", "156"], + ["home-home-other-home-home-end", "386"], + ["home-home-other-home-home-home", "672"], + ["home-home-other-home-home-other", "427"], + ["home-home-other-home-home-product", "526"], + ["home-home-other-home-home-search", "197"], + ["home-home-other-home-other-account", "87"], + ["home-home-other-home-other-end", "91"], + ["home-home-other-home-other-home", "261"], + ["home-home-other-home-other-other", "356"], + ["home-home-other-home-other-product", "328"], + ["home-home-other-home-other-search", "25"], + ["home-home-other-home-product-account", "353"], + ["home-home-other-home-product-end", "832"], + ["home-home-other-home-product-home", "1682"], + ["home-home-other-home-product-other", "135"], + ["home-home-other-home-product-product", "1539"], + ["home-home-other-home-product-search", "230"], + ["home-home-other-home-search-account", "169"], + ["home-home-other-home-search-end", "36"], + ["home-home-other-home-search-home", "74"], + ["home-home-other-home-search-other", "9"], + ["home-home-other-home-search-product", "816"], + ["home-home-other-home-search-search", "200"], + ["home-home-other-other-account-account", "1142"], + ["home-home-other-other-account-end", "294"], + ["home-home-other-other-account-home", "345"], + ["home-home-other-other-account-other", "496"], + ["home-home-other-other-account-product", "447"], + ["home-home-other-other-account-search", "86"], + ["home-home-other-other-end", "4460"], + ["home-home-other-other-home-account", "352"], + ["home-home-other-other-home-end", "952"], + ["home-home-other-other-home-home", "1012"], + ["home-home-other-other-home-other", "712"], + ["home-home-other-other-home-product", "1106"], + ["home-home-other-other-home-search", "458"], + ["home-home-other-other-other-account", "1949"], + ["home-home-other-other-other-end", "1689"], + ["home-home-other-other-other-home", "2376"], + ["home-home-other-other-other-other", "6849"], + ["home-home-other-other-other-product", "4977"], + ["home-home-other-other-other-search", "722"], + ["home-home-other-other-product-account", "928"], + ["home-home-other-other-product-end", "3605"], + ["home-home-other-other-product-home", "1654"], + ["home-home-other-other-product-other", "2506"], + ["home-home-other-other-product-product", "5778"], + ["home-home-other-other-product-search", "634"], + ["home-home-other-other-search-account", "172"], + ["home-home-other-other-search-end", "35"], + ["home-home-other-other-search-home", "16"], + ["home-home-other-other-search-other", "50"], + ["home-home-other-other-search-product", "793"], + ["home-home-other-other-search-search", "261"], + ["home-home-other-product-account-account", "1579"], + ["home-home-other-product-account-end", "228"], + ["home-home-other-product-account-home", "209"], + ["home-home-other-product-account-other", "317"], + ["home-home-other-product-account-product", "1010"], + ["home-home-other-product-account-search", "74"], + ["home-home-other-product-end", "11084"], + ["home-home-other-product-home-account", "224"], + ["home-home-other-product-home-end", "976"], + ["home-home-other-product-home-home", "599"], + ["home-home-other-product-home-other", "662"], + ["home-home-other-product-home-product", "1133"], + ["home-home-other-product-home-search", "696"], + ["home-home-other-product-other-account", "296"], + ["home-home-other-product-other-end", "224"], + ["home-home-other-product-other-home", "335"], + ["home-home-other-product-other-other", "902"], + ["home-home-other-product-other-product", "2884"], + ["home-home-other-product-other-search", "147"], + ["home-home-other-product-product-account", "854"], + ["home-home-other-product-product-end", "4478"], + ["home-home-other-product-product-home", "1459"], + ["home-home-other-product-product-other", "1217"], + ["home-home-other-product-product-product", "18166"], + ["home-home-other-product-product-search", "1255"], + ["home-home-other-product-search-account", "167"], + ["home-home-other-product-search-end", "56"], + ["home-home-other-product-search-home", "24"], + ["home-home-other-product-search-other", "30"], + ["home-home-other-product-search-product", "2102"], + ["home-home-other-product-search-search", "408"], + ["home-home-other-search-account-account", "240"], + ["home-home-other-search-account-end", "14"], + ["home-home-other-search-account-home", "12"], + ["home-home-other-search-account-other", "27"], + ["home-home-other-search-account-product", "142"], + ["home-home-other-search-account-search", "34"], + ["home-home-other-search-end", "77"], + ["home-home-other-search-home-account", "4"], + ["home-home-other-search-home-end", "11"], + ["home-home-other-search-home-home", "13"], + ["home-home-other-search-home-other", "1"], + ["home-home-other-search-home-product", "13"], + ["home-home-other-search-home-search", "16"], + ["home-home-other-search-other-account", "7"], + ["home-home-other-search-other-end", "6"], + ["home-home-other-search-other-home", "5"], + ["home-home-other-search-other-other", "16"], + ["home-home-other-search-other-product", "25"], + ["home-home-other-search-other-search", "11"], + ["home-home-other-search-product-account", "118"], + ["home-home-other-search-product-end", "604"], + ["home-home-other-search-product-home", "205"], + ["home-home-other-search-product-other", "173"], + ["home-home-other-search-product-product", "1265"], + ["home-home-other-search-product-search", "511"], + ["home-home-other-search-search-account", "37"], + ["home-home-other-search-search-end", "15"], + ["home-home-other-search-search-home", "18"], + ["home-home-other-search-search-other", "25"], + ["home-home-other-search-search-product", "443"], + ["home-home-other-search-search-search", "179"], + ["home-home-product-account-account-account", "5662"], + ["home-home-product-account-account-end", "1486"], + ["home-home-product-account-account-home", "1665"], + ["home-home-product-account-account-other", "601"], + ["home-home-product-account-account-product", "9533"], + ["home-home-product-account-account-search", "502"], + ["home-home-product-account-end", "4376"], + ["home-home-product-account-home-account", "465"], + ["home-home-product-account-home-end", "726"], + ["home-home-product-account-home-home", "545"], + ["home-home-product-account-home-other", "122"], + ["home-home-product-account-home-product", "2089"], + ["home-home-product-account-home-search", "427"], + ["home-home-product-account-other-account", "185"], + ["home-home-product-account-other-end", "131"], + ["home-home-product-account-other-home", "150"], + ["home-home-product-account-other-other", "512"], + ["home-home-product-account-other-product", "841"], + ["home-home-product-account-other-search", "36"], + ["home-home-product-account-product-account", "3910"], + ["home-home-product-account-product-end", "4055"], + ["home-home-product-account-product-home", "2764"], + ["home-home-product-account-product-other", "291"], + ["home-home-product-account-product-product", "10056"], + ["home-home-product-account-product-search", "960"], + ["home-home-product-account-search-account", "413"], + ["home-home-product-account-search-end", "33"], + ["home-home-product-account-search-home", "21"], + ["home-home-product-account-search-other", "4"], + ["home-home-product-account-search-product", "743"], + ["home-home-product-account-search-search", "233"], + ["home-home-product-end", "203202"], + ["home-home-product-home-account-account", "3240"], + ["home-home-product-home-account-end", "664"], + ["home-home-product-home-account-home", "2186"], + ["home-home-product-home-account-other", "358"], + ["home-home-product-home-account-product", "3426"], + ["home-home-product-home-account-search", "251"], + ["home-home-product-home-end", "37604"], + ["home-home-product-home-home-account", "1188"], + ["home-home-product-home-home-end", "5096"], + ["home-home-product-home-home-home", "6563"], + ["home-home-product-home-home-other", "584"], + ["home-home-product-home-home-product", "9027"], + ["home-home-product-home-home-search", "2601"], + ["home-home-product-home-other-account", "224"], + ["home-home-product-home-other-end", "213"], + ["home-home-product-home-other-home", "656"], + ["home-home-product-home-other-other", "1035"], + ["home-home-product-home-other-product", "1329"], + ["home-home-product-home-other-search", "98"], + ["home-home-product-home-product-account", "5117"], + ["home-home-product-home-product-end", "19465"], + ["home-home-product-home-product-home", "37771"], + ["home-home-product-home-product-other", "718"], + ["home-home-product-home-product-product", "29249"], + ["home-home-product-home-product-search", "3787"], + ["home-home-product-home-search-account", "1668"], + ["home-home-product-home-search-end", "524"], + ["home-home-product-home-search-home", "1338"], + ["home-home-product-home-search-other", "43"], + ["home-home-product-home-search-product", "10050"], + ["home-home-product-home-search-search", "2619"], + ["home-home-product-other-account-account", "449"], + ["home-home-product-other-account-end", "87"], + ["home-home-product-other-account-home", "134"], + ["home-home-product-other-account-other", "142"], + ["home-home-product-other-account-product", "256"], + ["home-home-product-other-account-search", "31"], + ["home-home-product-other-end", "996"], + ["home-home-product-other-home-account", "86"], + ["home-home-product-other-home-end", "289"], + ["home-home-product-other-home-home", "163"], + ["home-home-product-other-home-other", "65"], + ["home-home-product-other-home-product", "482"], + ["home-home-product-other-home-search", "107"], + ["home-home-product-other-other-account", "285"], + ["home-home-product-other-other-end", "412"], + ["home-home-product-other-other-home", "400"], + ["home-home-product-other-other-other", "1763"], + ["home-home-product-other-other-product", "1449"], + ["home-home-product-other-other-search", "129"], + ["home-home-product-other-product-account", "392"], + ["home-home-product-other-product-end", "1130"], + ["home-home-product-other-product-home", "490"], + ["home-home-product-other-product-other", "565"], + ["home-home-product-other-product-product", "3393"], + ["home-home-product-other-product-search", "299"], + ["home-home-product-other-search-account", "54"], + ["home-home-product-other-search-end", "9"], + ["home-home-product-other-search-home", "3"], + ["home-home-product-other-search-other", "5"], + ["home-home-product-other-search-product", "275"], + ["home-home-product-other-search-search", "58"], + ["home-home-product-product-account-account", "7756"], + ["home-home-product-product-account-end", "1681"], + ["home-home-product-product-account-home", "1390"], + ["home-home-product-product-account-other", "677"], + ["home-home-product-product-account-product", "9039"], + ["home-home-product-product-account-search", "534"], + ["home-home-product-product-end", "87481"], + ["home-home-product-product-home-account", "2620"], + ["home-home-product-product-home-end", "10100"], + ["home-home-product-product-home-home", "6489"], + ["home-home-product-product-home-other", "961"], + ["home-home-product-product-home-product", "27853"], + ["home-home-product-product-home-search", "5321"], + ["home-home-product-product-other-account", "369"], + ["home-home-product-product-other-end", "310"], + ["home-home-product-product-other-home", "346"], + ["home-home-product-product-other-other", "1468"], + ["home-home-product-product-other-product", "2334"], + ["home-home-product-product-other-search", "128"], + ["home-home-product-product-product-account", "9179"], + ["home-home-product-product-product-end", "40316"], + ["home-home-product-product-product-home", "18867"], + ["home-home-product-product-product-other", "2091"], + ["home-home-product-product-product-product", "155815"], + ["home-home-product-product-product-search", "10575"], + ["home-home-product-product-search-account", "1798"], + ["home-home-product-product-search-end", "565"], + ["home-home-product-product-search-home", "261"], + ["home-home-product-product-search-other", "55"], + ["home-home-product-product-search-product", "16148"], + ["home-home-product-product-search-search", "3533"], + ["home-home-product-search-account-account", "1857"], + ["home-home-product-search-account-end", "298"], + ["home-home-product-search-account-home", "220"], + ["home-home-product-search-account-other", "132"], + ["home-home-product-search-account-product", "1874"], + ["home-home-product-search-account-search", "325"], + ["home-home-product-search-end", "1443"], + ["home-home-product-search-home-account", "38"], + ["home-home-product-search-home-end", "102"], + ["home-home-product-search-home-home", "130"], + ["home-home-product-search-home-other", "15"], + ["home-home-product-search-home-product", "283"], + ["home-home-product-search-home-search", "157"], + ["home-home-product-search-other-account", "9"], + ["home-home-product-search-other-end", "8"], + ["home-home-product-search-other-home", "6"], + ["home-home-product-search-other-other", "34"], + ["home-home-product-search-other-product", "81"], + ["home-home-product-search-other-search", "5"], + ["home-home-product-search-product-account", "1212"], + ["home-home-product-search-product-end", "7102"], + ["home-home-product-search-product-home", "2819"], + ["home-home-product-search-product-other", "270"], + ["home-home-product-search-product-product", "17768"], + ["home-home-product-search-product-search", "6868"], + ["home-home-product-search-search-account", "471"], + ["home-home-product-search-search-end", "345"], + ["home-home-product-search-search-home", "166"], + ["home-home-product-search-search-other", "40"], + ["home-home-product-search-search-product", "5520"], + ["home-home-product-search-search-search", "2072"], + ["home-home-search-account-account-account", "3339"], + ["home-home-search-account-account-end", "846"], + ["home-home-search-account-account-home", "711"], + ["home-home-search-account-account-other", "295"], + ["home-home-search-account-account-product", "6718"], + ["home-home-search-account-account-search", "912"], + ["home-home-search-account-end", "2022"], + ["home-home-search-account-home-account", "154"], + ["home-home-search-account-home-end", "230"], + ["home-home-search-account-home-home", "255"], + ["home-home-search-account-home-other", "21"], + ["home-home-search-account-home-product", "442"], + ["home-home-search-account-home-search", "368"], + ["home-home-search-account-other-account", "81"], + ["home-home-search-account-other-end", "61"], + ["home-home-search-account-other-home", "33"], + ["home-home-search-account-other-other", "140"], + ["home-home-search-account-other-product", "535"], + ["home-home-search-account-other-search", "35"], + ["home-home-search-account-product-account", "1589"], + ["home-home-search-account-product-end", "2672"], + ["home-home-search-account-product-home", "1143"], + ["home-home-search-account-product-other", "145"], + ["home-home-search-account-product-product", "5129"], + ["home-home-search-account-product-search", "1002"], + ["home-home-search-account-search-account", "896"], + ["home-home-search-account-search-end", "56"], + ["home-home-search-account-search-home", "38"], + ["home-home-search-account-search-other", "6"], + ["home-home-search-account-search-product", "722"], + ["home-home-search-account-search-search", "310"], + ["home-home-search-end", "15129"], + ["home-home-search-home-account-account", "138"], + ["home-home-search-home-account-end", "26"], + ["home-home-search-home-account-home", "1144"], + ["home-home-search-home-account-other", "11"], + ["home-home-search-home-account-product", "87"], + ["home-home-search-home-account-search", "27"], + ["home-home-search-home-end", "1593"], + ["home-home-search-home-home-account", "82"], + ["home-home-search-home-home-end", "221"], + ["home-home-search-home-home-home", "722"], + ["home-home-search-home-home-other", "40"], + ["home-home-search-home-home-product", "590"], + ["home-home-search-home-home-search", "718"], + ["home-home-search-home-other-account", "8"], + ["home-home-search-home-other-end", "6"], + ["home-home-search-home-other-home", "34"], + ["home-home-search-home-other-other", "49"], + ["home-home-search-home-other-product", "44"], + ["home-home-search-home-other-search", "1"], + ["home-home-search-home-product-account", "93"], + ["home-home-search-home-product-end", "392"], + ["home-home-search-home-product-home", "12695"], + ["home-home-search-home-product-other", "16"], + ["home-home-search-home-product-product", "1091"], + ["home-home-search-home-product-search", "250"], + ["home-home-search-home-search-account", "141"], + ["home-home-search-home-search-end", "154"], + ["home-home-search-home-search-home", "3135"], + ["home-home-search-home-search-other", "8"], + ["home-home-search-home-search-product", "1777"], + ["home-home-search-home-search-search", "588"], + ["home-home-search-other-account-account", "28"], + ["home-home-search-other-account-end", "4"], + ["home-home-search-other-account-home", "4"], + ["home-home-search-other-account-other", "7"], + ["home-home-search-other-account-product", "14"], + ["home-home-search-other-account-search", "4"], + ["home-home-search-other-end", "79"], + ["home-home-search-other-home-account", "3"], + ["home-home-search-other-home-end", "16"], + ["home-home-search-other-home-home", "10"], + ["home-home-search-other-home-other", "1"], + ["home-home-search-other-home-product", "11"], + ["home-home-search-other-home-search", "12"], + ["home-home-search-other-other-account", "13"], + ["home-home-search-other-other-end", "19"], + ["home-home-search-other-other-home", "24"], + ["home-home-search-other-other-other", "114"], + ["home-home-search-other-other-product", "126"], + ["home-home-search-other-other-search", "30"], + ["home-home-search-other-product-account", "26"], + ["home-home-search-other-product-end", "116"], + ["home-home-search-other-product-home", "27"], + ["home-home-search-other-product-other", "26"], + ["home-home-search-other-product-product", "279"], + ["home-home-search-other-product-search", "49"], + ["home-home-search-other-search-account", "4"], + ["home-home-search-other-search-end", "4"], + ["home-home-search-other-search-home", "5"], + ["home-home-search-other-search-other", "4"], + ["home-home-search-other-search-product", "58"], + ["home-home-search-other-search-search", "14"], + ["home-home-search-product-account-account", "2653"], + ["home-home-search-product-account-end", "731"], + ["home-home-search-product-account-home", "368"], + ["home-home-search-product-account-other", "276"], + ["home-home-search-product-account-product", "3178"], + ["home-home-search-product-account-search", "455"], + ["home-home-search-product-end", "85363"], + ["home-home-search-product-home-account", "741"], + ["home-home-search-product-home-end", "4128"], + ["home-home-search-product-home-home", "4027"], + ["home-home-search-product-home-other", "446"], + ["home-home-search-product-home-product", "5917"], + ["home-home-search-product-home-search", "8465"], + ["home-home-search-product-other-account", "65"], + ["home-home-search-product-other-end", "115"], + ["home-home-search-product-other-home", "89"], + ["home-home-search-product-other-other", "549"], + ["home-home-search-product-other-product", "956"], + ["home-home-search-product-other-search", "103"], + ["home-home-search-product-product-account", "3475"], + ["home-home-search-product-product-end", "36011"], + ["home-home-search-product-product-home", "10736"], + ["home-home-search-product-product-other", "900"], + ["home-home-search-product-product-product", "87818"], + ["home-home-search-product-product-search", "27148"], + ["home-home-search-product-search-account", "1219"], + ["home-home-search-product-search-end", "2081"], + ["home-home-search-product-search-home", "990"], + ["home-home-search-product-search-other", "105"], + ["home-home-search-product-search-product", "49579"], + ["home-home-search-product-search-search", "10006"], + ["home-home-search-search-account-account", "1525"], + ["home-home-search-search-account-end", "207"], + ["home-home-search-search-account-home", "160"], + ["home-home-search-search-account-other", "130"], + ["home-home-search-search-account-product", "1291"], + ["home-home-search-search-account-search", "249"], + ["home-home-search-search-end", "4138"], + ["home-home-search-search-home-account", "82"], + ["home-home-search-search-home-end", "285"], + ["home-home-search-search-home-home", "376"], + ["home-home-search-search-home-other", "32"], + ["home-home-search-search-home-product", "489"], + ["home-home-search-search-home-search", "775"], + ["home-home-search-search-other-account", "12"], + ["home-home-search-search-other-end", "19"], + ["home-home-search-search-other-home", "13"], + ["home-home-search-search-other-other", "99"], + ["home-home-search-search-other-product", "159"], + ["home-home-search-search-other-search", "24"], + ["home-home-search-search-product-account", "1286"], + ["home-home-search-search-product-end", "11881"], + ["home-home-search-search-product-home", "3417"], + ["home-home-search-search-product-other", "279"], + ["home-home-search-search-product-product", "26058"], + ["home-home-search-search-product-search", "10635"], + ["home-home-search-search-search-account", "861"], + ["home-home-search-search-search-end", "1341"], + ["home-home-search-search-search-home", "579"], + ["home-home-search-search-search-other", "98"], + ["home-home-search-search-search-product", "11417"], + ["home-home-search-search-search-search", "7374"], + ["home-other-account-account-account-account", "5144"], + ["home-other-account-account-account-end", "1036"], + ["home-other-account-account-account-home", "851"], + ["home-other-account-account-account-other", "1003"], + ["home-other-account-account-account-product", "1974"], + ["home-other-account-account-account-search", "261"], + ["home-other-account-account-end", "2519"], + ["home-other-account-account-home-account", "324"], + ["home-other-account-account-home-end", "408"], + ["home-other-account-account-home-home", "241"], + ["home-other-account-account-home-other", "256"], + ["home-other-account-account-home-product", "650"], + ["home-other-account-account-home-search", "203"], + ["home-other-account-account-other-account", "347"], + ["home-other-account-account-other-end", "138"], + ["home-other-account-account-other-home", "134"], + ["home-other-account-account-other-other", "778"], + ["home-other-account-account-other-product", "394"], + ["home-other-account-account-other-search", "34"], + ["home-other-account-account-product-account", "1684"], + ["home-other-account-account-product-end", "1376"], + ["home-other-account-account-product-home", "853"], + ["home-other-account-account-product-other", "441"], + ["home-other-account-account-product-product", "2257"], + ["home-other-account-account-product-search", "300"], + ["home-other-account-account-search-account", "234"], + ["home-other-account-account-search-end", "18"], + ["home-other-account-account-search-home", "13"], + ["home-other-account-account-search-other", "11"], + ["home-other-account-account-search-product", "282"], + ["home-other-account-account-search-search", "105"], + ["home-other-account-end", "8189"], + ["home-other-account-home-account-account", "328"], + ["home-other-account-home-account-end", "84"], + ["home-other-account-home-account-home", "125"], + ["home-other-account-home-account-other", "65"], + ["home-other-account-home-account-product", "219"], + ["home-other-account-home-account-search", "20"], + ["home-other-account-home-end", "1252"], + ["home-other-account-home-home-account", "84"], + ["home-other-account-home-home-end", "115"], + ["home-other-account-home-home-home", "91"], + ["home-other-account-home-home-other", "152"], + ["home-other-account-home-home-product", "178"], + ["home-other-account-home-home-search", "78"], + ["home-other-account-home-other-account", "199"], + ["home-other-account-home-other-end", "72"], + ["home-other-account-home-other-home", "119"], + ["home-other-account-home-other-other", "234"], + ["home-other-account-home-other-product", "109"], + ["home-other-account-home-other-search", "8"], + ["home-other-account-home-product-account", "316"], + ["home-other-account-home-product-end", "441"], + ["home-other-account-home-product-home", "429"], + ["home-other-account-home-product-other", "79"], + ["home-other-account-home-product-product", "700"], + ["home-other-account-home-product-search", "88"], + ["home-other-account-home-search-account", "131"], + ["home-other-account-home-search-end", "21"], + ["home-other-account-home-search-home", "17"], + ["home-other-account-home-search-other", "5"], + ["home-other-account-home-search-product", "360"], + ["home-other-account-home-search-search", "121"], + ["home-other-account-other-account-account", "421"], + ["home-other-account-other-account-end", "91"], + ["home-other-account-other-account-home", "96"], + ["home-other-account-other-account-other", "325"], + ["home-other-account-other-account-product", "188"], + ["home-other-account-other-account-search", "21"], + ["home-other-account-other-end", "606"], + ["home-other-account-other-home-account", "74"], + ["home-other-account-other-home-end", "112"], + ["home-other-account-other-home-home", "66"], + ["home-other-account-other-home-other", "92"], + ["home-other-account-other-home-product", "230"], + ["home-other-account-other-home-search", "57"], + ["home-other-account-other-other-account", "470"], + ["home-other-account-other-other-end", "626"], + ["home-other-account-other-other-home", "439"], + ["home-other-account-other-other-other", "937"], + ["home-other-account-other-other-product", "716"], + ["home-other-account-other-other-search", "107"], + ["home-other-account-other-product-account", "160"], + ["home-other-account-other-product-end", "295"], + ["home-other-account-other-product-home", "116"], + ["home-other-account-other-product-other", "182"], + ["home-other-account-other-product-product", "544"], + ["home-other-account-other-product-search", "52"], + ["home-other-account-other-search-account", "30"], + ["home-other-account-other-search-end", "8"], + ["home-other-account-other-search-home", "2"], + ["home-other-account-other-search-other", "2"], + ["home-other-account-other-search-product", "102"], + ["home-other-account-other-search-search", "20"], + ["home-other-account-product-account-account", "1065"], + ["home-other-account-product-account-end", "274"], + ["home-other-account-product-account-home", "196"], + ["home-other-account-product-account-other", "216"], + ["home-other-account-product-account-product", "1029"], + ["home-other-account-product-account-search", "83"], + ["home-other-account-product-end", "2904"], + ["home-other-account-product-home-account", "219"], + ["home-other-account-product-home-end", "320"], + ["home-other-account-product-home-home", "153"], + ["home-other-account-product-home-other", "203"], + ["home-other-account-product-home-product", "564"], + ["home-other-account-product-home-search", "184"], + ["home-other-account-product-other-account", "190"], + ["home-other-account-product-other-end", "88"], + ["home-other-account-product-other-home", "64"], + ["home-other-account-product-other-other", "311"], + ["home-other-account-product-other-product", "186"], + ["home-other-account-product-other-search", "19"], + ["home-other-account-product-product-account", "618"], + ["home-other-account-product-product-end", "839"], + ["home-other-account-product-product-home", "367"], + ["home-other-account-product-product-other", "189"], + ["home-other-account-product-product-product", "2213"], + ["home-other-account-product-product-search", "187"], + ["home-other-account-product-search-account", "118"], + ["home-other-account-product-search-end", "13"], + ["home-other-account-product-search-home", "4"], + ["home-other-account-product-search-other", "7"], + ["home-other-account-product-search-product", "383"], + ["home-other-account-product-search-search", "76"], + ["home-other-account-search-account-account", "267"], + ["home-other-account-search-account-end", "33"], + ["home-other-account-search-account-home", "26"], + ["home-other-account-search-account-other", "17"], + ["home-other-account-search-account-product", "142"], + ["home-other-account-search-account-search", "43"], + ["home-other-account-search-end", "45"], + ["home-other-account-search-home-account", "5"], + ["home-other-account-search-home-end", "3"], + ["home-other-account-search-home-home", "2"], + ["home-other-account-search-home-other", "2"], + ["home-other-account-search-home-product", "3"], + ["home-other-account-search-home-search", "7"], + ["home-other-account-search-other-account", "1"], + ["home-other-account-search-other-end", "1"], + ["home-other-account-search-other-home", "1"], + ["home-other-account-search-other-other", "1"], + ["home-other-account-search-other-product", "5"], + ["home-other-account-search-product-account", "77"], + ["home-other-account-search-product-end", "193"], + ["home-other-account-search-product-home", "76"], + ["home-other-account-search-product-other", "23"], + ["home-other-account-search-product-product", "403"], + ["home-other-account-search-product-search", "162"], + ["home-other-account-search-search-account", "42"], + ["home-other-account-search-search-end", "13"], + ["home-other-account-search-search-home", "3"], + ["home-other-account-search-search-other", "4"], + ["home-other-account-search-search-product", "139"], + ["home-other-account-search-search-search", "51"], + ["home-other-end", "69982"], + ["home-other-home-account-account-account", "832"], + ["home-other-home-account-account-end", "183"], + ["home-other-home-account-account-home", "281"], + ["home-other-home-account-account-other", "99"], + ["home-other-home-account-account-product", "827"], + ["home-other-home-account-account-search", "60"], + ["home-other-home-account-end", "459"], + ["home-other-home-account-home-account", "115"], + ["home-other-home-account-home-end", "133"], + ["home-other-home-account-home-home", "69"], + ["home-other-home-account-home-other", "52"], + ["home-other-home-account-home-product", "192"], + ["home-other-home-account-home-search", "74"], + ["home-other-home-account-other-account", "31"], + ["home-other-home-account-other-end", "35"], + ["home-other-home-account-other-home", "30"], + ["home-other-home-account-other-other", "137"], + ["home-other-home-account-other-product", "81"], + ["home-other-home-account-other-search", "3"], + ["home-other-home-account-product-account", "198"], + ["home-other-home-account-product-end", "261"], + ["home-other-home-account-product-home", "243"], + ["home-other-home-account-product-other", "41"], + ["home-other-home-account-product-product", "441"], + ["home-other-home-account-product-search", "63"], + ["home-other-home-account-search-account", "41"], + ["home-other-home-account-search-end", "3"], + ["home-other-home-account-search-home", "2"], + ["home-other-home-account-search-other", "1"], + ["home-other-home-account-search-product", "53"], + ["home-other-home-account-search-search", "24"], + ["home-other-home-end", "13430"], + ["home-other-home-home-account-account", "185"], + ["home-other-home-home-account-end", "45"], + ["home-other-home-home-account-home", "68"], + ["home-other-home-home-account-other", "50"], + ["home-other-home-home-account-product", "105"], + ["home-other-home-home-account-search", "12"], + ["home-other-home-home-end", "1260"], + ["home-other-home-home-home-account", "81"], + ["home-other-home-home-home-end", "225"], + ["home-other-home-home-home-home", "358"], + ["home-other-home-home-home-other", "225"], + ["home-other-home-home-home-product", "238"], + ["home-other-home-home-home-search", "93"], + ["home-other-home-home-other-account", "200"], + ["home-other-home-home-other-end", "167"], + ["home-other-home-home-other-home", "348"], + ["home-other-home-home-other-other", "397"], + ["home-other-home-home-other-product", "398"], + ["home-other-home-home-other-search", "55"], + ["home-other-home-home-product-account", "124"], + ["home-other-home-home-product-end", "331"], + ["home-other-home-home-product-home", "419"], + ["home-other-home-home-product-other", "74"], + ["home-other-home-home-product-product", "629"], + ["home-other-home-home-product-search", "81"], + ["home-other-home-home-search-account", "120"], + ["home-other-home-home-search-end", "25"], + ["home-other-home-home-search-home", "26"], + ["home-other-home-home-search-other", "9"], + ["home-other-home-home-search-product", "445"], + ["home-other-home-home-search-search", "127"], + ["home-other-home-other-account-account", "199"], + ["home-other-home-other-account-end", "53"], + ["home-other-home-other-account-home", "60"], + ["home-other-home-other-account-other", "65"], + ["home-other-home-other-account-product", "96"], + ["home-other-home-other-account-search", "15"], + ["home-other-home-other-end", "870"], + ["home-other-home-other-home-account", "90"], + ["home-other-home-other-home-end", "291"], + ["home-other-home-other-home-home", "215"], + ["home-other-home-other-home-other", "299"], + ["home-other-home-other-home-product", "335"], + ["home-other-home-other-home-search", "110"], + ["home-other-home-other-other-account", "129"], + ["home-other-home-other-other-end", "221"], + ["home-other-home-other-other-home", "294"], + ["home-other-home-other-other-other", "525"], + ["home-other-home-other-other-product", "401"], + ["home-other-home-other-other-search", "43"], + ["home-other-home-other-product-account", "132"], + ["home-other-home-other-product-end", "423"], + ["home-other-home-other-product-home", "238"], + ["home-other-home-other-product-other", "162"], + ["home-other-home-other-product-product", "907"], + ["home-other-home-other-product-search", "102"], + ["home-other-home-other-search-account", "30"], + ["home-other-home-other-search-end", "7"], + ["home-other-home-other-search-home", "5"], + ["home-other-home-other-search-other", "7"], + ["home-other-home-other-search-product", "120"], + ["home-other-home-other-search-search", "37"], + ["home-other-home-product-account-account", "892"], + ["home-other-home-product-account-end", "185"], + ["home-other-home-product-account-home", "196"], + ["home-other-home-product-account-other", "70"], + ["home-other-home-product-account-product", "587"], + ["home-other-home-product-account-search", "52"], + ["home-other-home-product-end", "5414"], + ["home-other-home-product-home-account", "368"], + ["home-other-home-product-home-end", "1116"], + ["home-other-home-product-home-home", "486"], + ["home-other-home-product-home-other", "401"], + ["home-other-home-product-home-product", "2560"], + ["home-other-home-product-home-search", "484"], + ["home-other-home-product-other-account", "58"], + ["home-other-home-product-other-end", "119"], + ["home-other-home-product-other-home", "168"], + ["home-other-home-product-other-other", "183"], + ["home-other-home-product-other-product", "216"], + ["home-other-home-product-other-search", "28"], + ["home-other-home-product-product-account", "623"], + ["home-other-home-product-product-end", "1770"], + ["home-other-home-product-product-home", "1386"], + ["home-other-home-product-product-other", "232"], + ["home-other-home-product-product-product", "4165"], + ["home-other-home-product-product-search", "425"], + ["home-other-home-product-search-account", "129"], + ["home-other-home-product-search-end", "29"], + ["home-other-home-product-search-home", "15"], + ["home-other-home-product-search-other", "3"], + ["home-other-home-product-search-product", "750"], + ["home-other-home-product-search-search", "179"], + ["home-other-home-search-account-account", "408"], + ["home-other-home-search-account-end", "42"], + ["home-other-home-search-account-home", "57"], + ["home-other-home-search-account-other", "22"], + ["home-other-home-search-account-product", "266"], + ["home-other-home-search-account-search", "35"], + ["home-other-home-search-end", "202"], + ["home-other-home-search-home-account", "12"], + ["home-other-home-search-home-end", "25"], + ["home-other-home-search-home-home", "14"], + ["home-other-home-search-home-other", "16"], + ["home-other-home-search-home-product", "34"], + ["home-other-home-search-home-search", "55"], + ["home-other-home-search-other-account", "2"], + ["home-other-home-search-other-end", "5"], + ["home-other-home-search-other-home", "4"], + ["home-other-home-search-other-other", "12"], + ["home-other-home-search-other-product", "20"], + ["home-other-home-search-other-search", "5"], + ["home-other-home-search-product-account", "158"], + ["home-other-home-search-product-end", "896"], + ["home-other-home-search-product-home", "429"], + ["home-other-home-search-product-other", "115"], + ["home-other-home-search-product-product", "1993"], + ["home-other-home-search-product-search", "828"], + ["home-other-home-search-search-account", "67"], + ["home-other-home-search-search-end", "59"], + ["home-other-home-search-search-home", "43"], + ["home-other-home-search-search-other", "8"], + ["home-other-home-search-search-product", "681"], + ["home-other-home-search-search-search", "278"], + ["home-other-other-account-account-account", "2515"], + ["home-other-other-account-account-end", "711"], + ["home-other-other-account-account-home", "521"], + ["home-other-other-account-account-other", "633"], + ["home-other-other-account-account-product", "1208"], + ["home-other-other-account-account-search", "145"], + ["home-other-other-account-end", "3234"], + ["home-other-other-account-home-account", "239"], + ["home-other-other-account-home-end", "423"], + ["home-other-other-account-home-home", "239"], + ["home-other-other-account-home-other", "277"], + ["home-other-other-account-home-product", "462"], + ["home-other-other-account-home-search", "193"], + ["home-other-other-account-other-account", "251"], + ["home-other-other-account-other-end", "240"], + ["home-other-other-account-other-home", "159"], + ["home-other-other-account-other-other", "1620"], + ["home-other-other-account-other-product", "299"], + ["home-other-other-account-other-search", "36"], + ["home-other-other-account-product-account", "431"], + ["home-other-other-account-product-end", "512"], + ["home-other-other-account-product-home", "237"], + ["home-other-other-account-product-other", "236"], + ["home-other-other-account-product-product", "764"], + ["home-other-other-account-product-search", "106"], + ["home-other-other-account-search-account", "136"], + ["home-other-other-account-search-end", "20"], + ["home-other-other-account-search-home", "6"], + ["home-other-other-account-search-other", "10"], + ["home-other-other-account-search-product", "219"], + ["home-other-other-account-search-search", "79"], + ["home-other-other-end", "40323"], + ["home-other-other-home-account-account", "723"], + ["home-other-other-home-account-end", "225"], + ["home-other-other-home-account-home", "209"], + ["home-other-other-home-account-other", "165"], + ["home-other-other-home-account-product", "373"], + ["home-other-other-home-account-search", "26"], + ["home-other-other-home-end", "4579"], + ["home-other-other-home-home-account", "195"], + ["home-other-other-home-home-end", "463"], + ["home-other-other-home-home-home", "559"], + ["home-other-other-home-home-other", "802"], + ["home-other-other-home-home-product", "633"], + ["home-other-other-home-home-search", "272"], + ["home-other-other-home-other-account", "132"], + ["home-other-other-home-other-end", "147"], + ["home-other-other-home-other-home", "238"], + ["home-other-other-home-other-other", "2753"], + ["home-other-other-home-other-product", "349"], + ["home-other-other-home-other-search", "36"], + ["home-other-other-home-product-account", "515"], + ["home-other-other-home-product-end", "1357"], + ["home-other-other-home-product-home", "1217"], + ["home-other-other-home-product-other", "294"], + ["home-other-other-home-product-product", "2251"], + ["home-other-other-home-product-search", "248"], + ["home-other-other-home-search-account", "271"], + ["home-other-other-home-search-end", "82"], + ["home-other-other-home-search-home", "49"], + ["home-other-other-home-search-other", "40"], + ["home-other-other-home-search-product", "1424"], + ["home-other-other-home-search-search", "435"], + ["home-other-other-other-account-account", "3629"], + ["home-other-other-other-account-end", "2022"], + ["home-other-other-other-account-home", "1282"], + ["home-other-other-other-account-other", "1112"], + ["home-other-other-other-account-product", "1432"], + ["home-other-other-other-account-search", "287"], + ["home-other-other-other-end", "15475"], + ["home-other-other-other-home-account", "940"], + ["home-other-other-other-home-end", "2508"], + ["home-other-other-other-home-home", "1410"], + ["home-other-other-other-home-other", "1371"], + ["home-other-other-other-home-product", "3560"], + ["home-other-other-other-home-search", "1161"], + ["home-other-other-other-other-account", "2010"], + ["home-other-other-other-other-end", "3818"], + ["home-other-other-other-other-home", "2418"], + ["home-other-other-other-other-other", "15810"], + ["home-other-other-other-other-product", "6311"], + ["home-other-other-other-other-search", "806"], + ["home-other-other-other-product-account", "2183"], + ["home-other-other-other-product-end", "6242"], + ["home-other-other-other-product-home", "2558"], + ["home-other-other-other-product-other", "3399"], + ["home-other-other-other-product-product", "9800"], + ["home-other-other-other-product-search", "1231"], + ["home-other-other-other-search-account", "469"], + ["home-other-other-other-search-end", "117"], + ["home-other-other-other-search-home", "43"], + ["home-other-other-other-search-other", "68"], + ["home-other-other-other-search-product", "1972"], + ["home-other-other-other-search-search", "597"], + ["home-other-other-product-account-account", "1971"], + ["home-other-other-product-account-end", "689"], + ["home-other-other-product-account-home", "391"], + ["home-other-other-product-account-other", "612"], + ["home-other-other-product-account-product", "1321"], + ["home-other-other-product-account-search", "113"], + ["home-other-other-product-end", "24266"], + ["home-other-other-product-home-account", "524"], + ["home-other-other-product-home-end", "1535"], + ["home-other-other-product-home-home", "743"], + ["home-other-other-product-home-other", "1895"], + ["home-other-other-product-home-product", "2051"], + ["home-other-other-product-home-search", "1214"], + ["home-other-other-product-other-account", "309"], + ["home-other-other-product-other-end", "697"], + ["home-other-other-product-other-home", "412"], + ["home-other-other-product-other-other", "6893"], + ["home-other-other-product-other-product", "2768"], + ["home-other-other-product-other-search", "164"], + ["home-other-other-product-product-account", "1439"], + ["home-other-other-product-product-end", "6970"], + ["home-other-other-product-product-home", "2011"], + ["home-other-other-product-product-other", "2330"], + ["home-other-other-product-product-product", "17559"], + ["home-other-other-product-product-search", "1400"], + ["home-other-other-product-search-account", "282"], + ["home-other-other-product-search-end", "115"], + ["home-other-other-product-search-home", "42"], + ["home-other-other-product-search-other", "64"], + ["home-other-other-product-search-product", "2654"], + ["home-other-other-product-search-search", "597"], + ["home-other-other-search-account-account", "395"], + ["home-other-other-search-account-end", "70"], + ["home-other-other-search-account-home", "31"], + ["home-other-other-search-account-other", "30"], + ["home-other-other-search-account-product", "288"], + ["home-other-other-search-account-search", "48"], + ["home-other-other-search-end", "310"], + ["home-other-other-search-home-account", "8"], + ["home-other-other-search-home-end", "23"], + ["home-other-other-search-home-home", "16"], + ["home-other-other-search-home-other", "25"], + ["home-other-other-search-home-product", "22"], + ["home-other-other-search-home-search", "42"], + ["home-other-other-search-other-account", "10"], + ["home-other-other-search-other-end", "13"], + ["home-other-other-search-other-home", "2"], + ["home-other-other-search-other-other", "137"], + ["home-other-other-search-other-product", "30"], + ["home-other-other-search-other-search", "14"], + ["home-other-other-search-product-account", "197"], + ["home-other-other-search-product-end", "1105"], + ["home-other-other-search-product-home", "295"], + ["home-other-other-search-product-other", "254"], + ["home-other-other-search-product-product", "2067"], + ["home-other-other-search-product-search", "762"], + ["home-other-other-search-search-account", "113"], + ["home-other-other-search-search-end", "77"], + ["home-other-other-search-search-home", "40"], + ["home-other-other-search-search-other", "42"], + ["home-other-other-search-search-product", "683"], + ["home-other-other-search-search-search", "380"], + ["home-other-product-account-account-account", "2756"], + ["home-other-product-account-account-end", "658"], + ["home-other-product-account-account-home", "474"], + ["home-other-product-account-account-other", "531"], + ["home-other-product-account-account-product", "3335"], + ["home-other-product-account-account-search", "188"], + ["home-other-product-account-end", "1801"], + ["home-other-product-account-home-account", "141"], + ["home-other-product-account-home-end", "234"], + ["home-other-product-account-home-home", "101"], + ["home-other-product-account-home-other", "160"], + ["home-other-product-account-home-product", "388"], + ["home-other-product-account-home-search", "128"], + ["home-other-product-account-other-account", "167"], + ["home-other-product-account-other-end", "122"], + ["home-other-product-account-other-home", "86"], + ["home-other-product-account-other-other", "458"], + ["home-other-product-account-other-product", "570"], + ["home-other-product-account-other-search", "30"], + ["home-other-product-account-product-account", "1142"], + ["home-other-product-account-product-end", "1058"], + ["home-other-product-account-product-home", "475"], + ["home-other-product-account-product-other", "386"], + ["home-other-product-account-product-product", "2439"], + ["home-other-product-account-product-search", "254"], + ["home-other-product-account-search-account", "107"], + ["home-other-product-account-search-end", "9"], + ["home-other-product-account-search-home", "4"], + ["home-other-product-account-search-other", "2"], + ["home-other-product-account-search-product", "215"], + ["home-other-product-account-search-search", "63"], + ["home-other-product-end", "90379"], + ["home-other-product-home-account-account", "615"], + ["home-other-product-home-account-end", "111"], + ["home-other-product-home-account-home", "145"], + ["home-other-product-home-account-other", "108"], + ["home-other-product-home-account-product", "387"], + ["home-other-product-home-account-search", "34"], + ["home-other-product-home-end", "4401"], + ["home-other-product-home-home-account", "93"], + ["home-other-product-home-home-end", "304"], + ["home-other-product-home-home-home", "259"], + ["home-other-product-home-home-other", "362"], + ["home-other-product-home-home-product", "476"], + ["home-other-product-home-home-search", "260"], + ["home-other-product-home-other-account", "216"], + ["home-other-product-home-other-end", "308"], + ["home-other-product-home-other-home", "345"], + ["home-other-product-home-other-other", "644"], + ["home-other-product-home-other-product", "3143"], + ["home-other-product-home-other-search", "104"], + ["home-other-product-home-product-account", "562"], + ["home-other-product-home-product-end", "1688"], + ["home-other-product-home-product-home", "1585"], + ["home-other-product-home-product-other", "372"], + ["home-other-product-home-product-product", "3172"], + ["home-other-product-home-product-search", "429"], + ["home-other-product-home-search-account", "389"], + ["home-other-product-home-search-end", "182"], + ["home-other-product-home-search-home", "74"], + ["home-other-product-home-search-other", "41"], + ["home-other-product-home-search-product", "3604"], + ["home-other-product-home-search-search", "805"], + ["home-other-product-other-account-account", "558"], + ["home-other-product-other-account-end", "112"], + ["home-other-product-other-account-home", "83"], + ["home-other-product-other-account-other", "185"], + ["home-other-product-other-account-product", "299"], + ["home-other-product-other-account-search", "30"], + ["home-other-product-other-end", "2016"], + ["home-other-product-other-home-account", "87"], + ["home-other-product-other-home-end", "260"], + ["home-other-product-other-home-home", "132"], + ["home-other-product-other-home-other", "186"], + ["home-other-product-other-home-product", "516"], + ["home-other-product-other-home-search", "124"], + ["home-other-product-other-other-account", "291"], + ["home-other-product-other-other-end", "470"], + ["home-other-product-other-other-home", "249"], + ["home-other-product-other-other-other", "1373"], + ["home-other-product-other-other-product", "1730"], + ["home-other-product-other-other-search", "123"], + ["home-other-product-other-product-account", "673"], + ["home-other-product-other-product-end", "3465"], + ["home-other-product-other-product-home", "927"], + ["home-other-product-other-product-other", "3996"], + ["home-other-product-other-product-product", "6239"], + ["home-other-product-other-product-search", "991"], + ["home-other-product-other-search-account", "68"], + ["home-other-product-other-search-end", "23"], + ["home-other-product-other-search-home", "4"], + ["home-other-product-other-search-other", "17"], + ["home-other-product-other-search-product", "539"], + ["home-other-product-other-search-search", "96"], + ["home-other-product-product-account-account", "2104"], + ["home-other-product-product-account-end", "422"], + ["home-other-product-product-account-home", "189"], + ["home-other-product-product-account-other", "284"], + ["home-other-product-product-account-product", "1717"], + ["home-other-product-product-account-search", "124"], + ["home-other-product-product-end", "35855"], + ["home-other-product-product-home-account", "395"], + ["home-other-product-product-home-end", "1312"], + ["home-other-product-product-home-home", "528"], + ["home-other-product-product-home-other", "1505"], + ["home-other-product-product-home-product", "2787"], + ["home-other-product-product-home-search", "1804"], + ["home-other-product-product-other-account", "211"], + ["home-other-product-product-other-end", "511"], + ["home-other-product-product-other-home", "217"], + ["home-other-product-product-other-other", "1181"], + ["home-other-product-product-other-product", "4421"], + ["home-other-product-product-other-search", "224"], + ["home-other-product-product-product-account", "2144"], + ["home-other-product-product-product-end", "18602"], + ["home-other-product-product-product-home", "4050"], + ["home-other-product-product-product-other", "3454"], + ["home-other-product-product-product-product", "85772"], + ["home-other-product-product-product-search", "4871"], + ["home-other-product-product-search-account", "305"], + ["home-other-product-product-search-end", "161"], + ["home-other-product-product-search-home", "62"], + ["home-other-product-product-search-other", "58"], + ["home-other-product-product-search-product", "7057"], + ["home-other-product-product-search-search", "1244"], + ["home-other-product-search-account-account", "405"], + ["home-other-product-search-account-end", "40"], + ["home-other-product-search-account-home", "15"], + ["home-other-product-search-account-other", "36"], + ["home-other-product-search-account-product", "298"], + ["home-other-product-search-account-search", "39"], + ["home-other-product-search-end", "413"], + ["home-other-product-search-home-account", "4"], + ["home-other-product-search-home-end", "24"], + ["home-other-product-search-home-home", "11"], + ["home-other-product-search-home-other", "13"], + ["home-other-product-search-home-product", "39"], + ["home-other-product-search-home-search", "40"], + ["home-other-product-search-other-account", "8"], + ["home-other-product-search-other-end", "11"], + ["home-other-product-search-other-home", "6"], + ["home-other-product-search-other-other", "28"], + ["home-other-product-search-other-product", "125"], + ["home-other-product-search-other-search", "17"], + ["home-other-product-search-product-account", "325"], + ["home-other-product-search-product-end", "3409"], + ["home-other-product-search-product-home", "851"], + ["home-other-product-search-product-other", "863"], + ["home-other-product-search-product-product", "7131"], + ["home-other-product-search-product-search", "2891"], + ["home-other-product-search-search-account", "73"], + ["home-other-product-search-search-end", "71"], + ["home-other-product-search-search-home", "35"], + ["home-other-product-search-search-other", "44"], + ["home-other-product-search-search-product", "1785"], + ["home-other-product-search-search-search", "607"], + ["home-other-search-account-account-account", "340"], + ["home-other-search-account-account-end", "83"], + ["home-other-search-account-account-home", "62"], + ["home-other-search-account-account-other", "54"], + ["home-other-search-account-account-product", "686"], + ["home-other-search-account-account-search", "102"], + ["home-other-search-account-end", "150"], + ["home-other-search-account-home-account", "7"], + ["home-other-search-account-home-end", "11"], + ["home-other-search-account-home-home", "9"], + ["home-other-search-account-home-other", "6"], + ["home-other-search-account-home-product", "24"], + ["home-other-search-account-home-search", "20"], + ["home-other-search-account-other-account", "19"], + ["home-other-search-account-other-end", "16"], + ["home-other-search-account-other-home", "9"], + ["home-other-search-account-other-other", "19"], + ["home-other-search-account-other-product", "45"], + ["home-other-search-account-other-search", "3"], + ["home-other-search-account-product-account", "173"], + ["home-other-search-account-product-end", "232"], + ["home-other-search-account-product-home", "75"], + ["home-other-search-account-product-other", "46"], + ["home-other-search-account-product-product", "319"], + ["home-other-search-account-product-search", "92"], + ["home-other-search-account-search-account", "72"], + ["home-other-search-account-search-end", "4"], + ["home-other-search-account-search-home", "5"], + ["home-other-search-account-search-other", "1"], + ["home-other-search-account-search-product", "41"], + ["home-other-search-account-search-search", "22"], + ["home-other-search-end", "715"], + ["home-other-search-home-account-account", "7"], + ["home-other-search-home-account-end", "1"], + ["home-other-search-home-account-home", "1"], + ["home-other-search-home-account-other", "1"], + ["home-other-search-home-account-product", "2"], + ["home-other-search-home-account-search", "1"], + ["home-other-search-home-end", "34"], + ["home-other-search-home-home-account", "1"], + ["home-other-search-home-home-end", "3"], + ["home-other-search-home-home-home", "4"], + ["home-other-search-home-home-other", "6"], + ["home-other-search-home-home-product", "8"], + ["home-other-search-home-home-search", "6"], + ["home-other-search-home-other-account", "2"], + ["home-other-search-home-other-end", "4"], + ["home-other-search-home-other-home", "5"], + ["home-other-search-home-other-other", "9"], + ["home-other-search-home-other-product", "18"], + ["home-other-search-home-other-search", "6"], + ["home-other-search-home-product-account", "7"], + ["home-other-search-home-product-end", "11"], + ["home-other-search-home-product-home", "10"], + ["home-other-search-home-product-other", "5"], + ["home-other-search-home-product-product", "20"], + ["home-other-search-home-product-search", "9"], + ["home-other-search-home-search-account", "6"], + ["home-other-search-home-search-end", "1"], + ["home-other-search-home-search-home", "5"], + ["home-other-search-home-search-product", "59"], + ["home-other-search-home-search-search", "15"], + ["home-other-search-other-account-account", "6"], + ["home-other-search-other-account-home", "3"], + ["home-other-search-other-account-other", "9"], + ["home-other-search-other-account-product", "5"], + ["home-other-search-other-account-search", "1"], + ["home-other-search-other-end", "16"], + ["home-other-search-other-home-account", "1"], + ["home-other-search-other-home-end", "2"], + ["home-other-search-other-home-home", "3"], + ["home-other-search-other-home-other", "4"], + ["home-other-search-other-home-product", "11"], + ["home-other-search-other-home-search", "7"], + ["home-other-search-other-other-account", "4"], + ["home-other-search-other-other-end", "5"], + ["home-other-search-other-other-home", "7"], + ["home-other-search-other-other-other", "30"], + ["home-other-search-other-other-product", "18"], + ["home-other-search-other-other-search", "8"], + ["home-other-search-other-product-account", "6"], + ["home-other-search-other-product-end", "19"], + ["home-other-search-other-product-home", "4"], + ["home-other-search-other-product-other", "38"], + ["home-other-search-other-product-product", "70"], + ["home-other-search-other-product-search", "13"], + ["home-other-search-other-search-account", "3"], + ["home-other-search-other-search-end", "4"], + ["home-other-search-other-search-home", "1"], + ["home-other-search-other-search-other", "11"], + ["home-other-search-other-search-product", "21"], + ["home-other-search-other-search-search", "8"], + ["home-other-search-product-account-account", "259"], + ["home-other-search-product-account-end", "69"], + ["home-other-search-product-account-home", "25"], + ["home-other-search-product-account-other", "32"], + ["home-other-search-product-account-product", "187"], + ["home-other-search-product-account-search", "42"], + ["home-other-search-product-end", "4430"], + ["home-other-search-product-home-account", "49"], + ["home-other-search-product-home-end", "178"], + ["home-other-search-product-home-home", "74"], + ["home-other-search-product-home-other", "155"], + ["home-other-search-product-home-product", "242"], + ["home-other-search-product-home-search", "414"], + ["home-other-search-product-other-account", "22"], + ["home-other-search-product-other-end", "79"], + ["home-other-search-product-other-home", "35"], + ["home-other-search-product-other-other", "163"], + ["home-other-search-product-other-product", "535"], + ["home-other-search-product-other-search", "45"], + ["home-other-search-product-product-account", "235"], + ["home-other-search-product-product-end", "1609"], + ["home-other-search-product-product-home", "403"], + ["home-other-search-product-product-other", "347"], + ["home-other-search-product-product-product", "4187"], + ["home-other-search-product-product-search", "1181"], + ["home-other-search-product-search-account", "72"], + ["home-other-search-product-search-end", "99"], + ["home-other-search-product-search-home", "29"], + ["home-other-search-product-search-other", "43"], + ["home-other-search-product-search-product", "2383"], + ["home-other-search-product-search-search", "463"], + ["home-other-search-search-account-account", "147"], + ["home-other-search-search-account-end", "11"], + ["home-other-search-search-account-home", "5"], + ["home-other-search-search-account-other", "5"], + ["home-other-search-search-account-product", "74"], + ["home-other-search-search-account-search", "19"], + ["home-other-search-search-end", "173"], + ["home-other-search-search-home-account", "3"], + ["home-other-search-search-home-end", "6"], + ["home-other-search-search-home-home", "6"], + ["home-other-search-search-home-other", "7"], + ["home-other-search-search-home-product", "18"], + ["home-other-search-search-home-search", "25"], + ["home-other-search-search-other-account", "7"], + ["home-other-search-search-other-end", "3"], + ["home-other-search-search-other-home", "2"], + ["home-other-search-search-other-other", "23"], + ["home-other-search-search-other-product", "45"], + ["home-other-search-search-other-search", "10"], + ["home-other-search-search-product-account", "100"], + ["home-other-search-search-product-end", "528"], + ["home-other-search-search-product-home", "147"], + ["home-other-search-search-product-other", "108"], + ["home-other-search-search-product-product", "1101"], + ["home-other-search-search-product-search", "520"], + ["home-other-search-search-search-account", "69"], + ["home-other-search-search-search-end", "48"], + ["home-other-search-search-search-home", "23"], + ["home-other-search-search-search-other", "26"], + ["home-other-search-search-search-product", "478"], + ["home-other-search-search-search-search", "346"], + ["home-product-account-account-account-account", "18623"], + ["home-product-account-account-account-end", "3660"], + ["home-product-account-account-account-home", "3222"], + ["home-product-account-account-account-other", "3214"], + ["home-product-account-account-account-product", "17738"], + ["home-product-account-account-account-search", "1216"], + ["home-product-account-account-end", "15974"], + ["home-product-account-account-home-account", "1955"], + ["home-product-account-account-home-end", "2215"], + ["home-product-account-account-home-home", "1049"], + ["home-product-account-account-home-other", "344"], + ["home-product-account-account-home-product", "6634"], + ["home-product-account-account-home-search", "1425"], + ["home-product-account-account-other-account", "524"], + ["home-product-account-account-other-end", "353"], + ["home-product-account-account-other-home", "300"], + ["home-product-account-account-other-other", "1195"], + ["home-product-account-account-other-product", "2506"], + ["home-product-account-account-other-search", "86"], + ["home-product-account-account-product-account", "15914"], + ["home-product-account-account-product-end", "17784"], + ["home-product-account-account-product-home", "10860"], + ["home-product-account-account-product-other", "1148"], + ["home-product-account-account-product-product", "40390"], + ["home-product-account-account-product-search", "4370"], + ["home-product-account-account-search-account", "1694"], + ["home-product-account-account-search-end", "104"], + ["home-product-account-account-search-home", "61"], + ["home-product-account-account-search-other", "15"], + ["home-product-account-account-search-product", "2405"], + ["home-product-account-account-search-search", "706"], + ["home-product-account-end", "48383"], + ["home-product-account-home-account-account", "1646"], + ["home-product-account-home-account-end", "417"], + ["home-product-account-home-account-home", "575"], + ["home-product-account-home-account-other", "175"], + ["home-product-account-home-account-product", "1704"], + ["home-product-account-home-account-search", "131"], + ["home-product-account-home-end", "6052"], + ["home-product-account-home-home-account", "346"], + ["home-product-account-home-home-end", "485"], + ["home-product-account-home-home-home", "433"], + ["home-product-account-home-home-other", "98"], + ["home-product-account-home-home-product", "1113"], + ["home-product-account-home-home-search", "314"], + ["home-product-account-home-other-account", "75"], + ["home-product-account-home-other-end", "57"], + ["home-product-account-home-other-home", "107"], + ["home-product-account-home-other-other", "267"], + ["home-product-account-home-other-product", "270"], + ["home-product-account-home-other-search", "16"], + ["home-product-account-home-product-account", "2817"], + ["home-product-account-home-product-end", "4359"], + ["home-product-account-home-product-home", "5446"], + ["home-product-account-home-product-other", "178"], + ["home-product-account-home-product-product", "6799"], + ["home-product-account-home-product-search", "928"], + ["home-product-account-home-search-account", "746"], + ["home-product-account-home-search-end", "130"], + ["home-product-account-home-search-home", "75"], + ["home-product-account-home-search-other", "6"], + ["home-product-account-home-search-product", "2380"], + ["home-product-account-home-search-search", "665"], + ["home-product-account-other-account-account", "551"], + ["home-product-account-other-account-end", "149"], + ["home-product-account-other-account-home", "112"], + ["home-product-account-other-account-other", "221"], + ["home-product-account-other-account-product", "438"], + ["home-product-account-other-account-search", "36"], + ["home-product-account-other-end", "1178"], + ["home-product-account-other-home-account", "128"], + ["home-product-account-other-home-end", "173"], + ["home-product-account-other-home-home", "81"], + ["home-product-account-other-home-other", "34"], + ["home-product-account-other-home-product", "486"], + ["home-product-account-other-home-search", "80"], + ["home-product-account-other-other-account", "352"], + ["home-product-account-other-other-end", "439"], + ["home-product-account-other-other-home", "282"], + ["home-product-account-other-other-other", "1285"], + ["home-product-account-other-other-product", "1059"], + ["home-product-account-other-other-search", "91"], + ["home-product-account-other-product-account", "628"], + ["home-product-account-other-product-end", "1862"], + ["home-product-account-other-product-home", "660"], + ["home-product-account-other-product-other", "385"], + ["home-product-account-other-product-product", "4584"], + ["home-product-account-other-product-search", "265"], + ["home-product-account-other-search-account", "73"], + ["home-product-account-other-search-end", "6"], + ["home-product-account-other-search-home", "7"], + ["home-product-account-other-search-other", "7"], + ["home-product-account-other-search-product", "200"], + ["home-product-account-other-search-search", "54"], + ["home-product-account-product-account-account", "8282"], + ["home-product-account-product-account-end", "2448"], + ["home-product-account-product-account-home", "1986"], + ["home-product-account-product-account-other", "805"], + ["home-product-account-product-account-product", "18829"], + ["home-product-account-product-account-search", "820"], + ["home-product-account-product-end", "40782"], + ["home-product-account-product-home-account", "2330"], + ["home-product-account-product-home-end", "3754"], + ["home-product-account-product-home-home", "1473"], + ["home-product-account-product-home-other", "464"], + ["home-product-account-product-home-product", "12732"], + ["home-product-account-product-home-search", "2832"], + ["home-product-account-product-other-account", "271"], + ["home-product-account-product-other-end", "208"], + ["home-product-account-product-other-home", "177"], + ["home-product-account-product-other-other", "673"], + ["home-product-account-product-other-product", "1042"], + ["home-product-account-product-other-search", "63"], + ["home-product-account-product-product-account", "9970"], + ["home-product-account-product-product-end", "18100"], + ["home-product-account-product-product-home", "8691"], + ["home-product-account-product-product-other", "752"], + ["home-product-account-product-product-product", "53345"], + ["home-product-account-product-product-search", "4584"], + ["home-product-account-product-search-account", "1845"], + ["home-product-account-product-search-end", "225"], + ["home-product-account-product-search-home", "92"], + ["home-product-account-product-search-other", "11"], + ["home-product-account-product-search-product", "6164"], + ["home-product-account-product-search-search", "1409"], + ["home-product-account-search-account-account", "1377"], + ["home-product-account-search-account-end", "337"], + ["home-product-account-search-account-home", "207"], + ["home-product-account-search-account-other", "88"], + ["home-product-account-search-account-product", "1801"], + ["home-product-account-search-account-search", "423"], + ["home-product-account-search-end", "321"], + ["home-product-account-search-home-account", "17"], + ["home-product-account-search-home-end", "18"], + ["home-product-account-search-home-home", "12"], + ["home-product-account-search-home-other", "5"], + ["home-product-account-search-home-product", "64"], + ["home-product-account-search-home-search", "44"], + ["home-product-account-search-other-account", "3"], + ["home-product-account-search-other-end", "1"], + ["home-product-account-search-other-home", "2"], + ["home-product-account-search-other-other", "8"], + ["home-product-account-search-other-product", "18"], + ["home-product-account-search-other-search", "2"], + ["home-product-account-search-product-account", "692"], + ["home-product-account-search-product-end", "1329"], + ["home-product-account-search-product-home", "482"], + ["home-product-account-search-product-other", "53"], + ["home-product-account-search-product-product", "3597"], + ["home-product-account-search-product-search", "1262"], + ["home-product-account-search-search-account", "350"], + ["home-product-account-search-search-end", "82"], + ["home-product-account-search-search-home", "42"], + ["home-product-account-search-search-other", "12"], + ["home-product-account-search-search-product", "1156"], + ["home-product-account-search-search-search", "533"], + ["home-product-end", "2138550"], + ["home-product-home-account-account-account", "8824"], + ["home-product-home-account-account-end", "2164"], + ["home-product-home-account-account-home", "2962"], + ["home-product-home-account-account-other", "1057"], + ["home-product-home-account-account-product", "14157"], + ["home-product-home-account-account-search", "709"], + ["home-product-home-account-end", "6864"], + ["home-product-home-account-home-account", "1704"], + ["home-product-home-account-home-end", "1766"], + ["home-product-home-account-home-home", "849"], + ["home-product-home-account-home-other", "176"], + ["home-product-home-account-home-product", "3769"], + ["home-product-home-account-home-search", "945"], + ["home-product-home-account-other-account", "250"], + ["home-product-home-account-other-end", "207"], + ["home-product-home-account-other-home", "248"], + ["home-product-home-account-other-other", "785"], + ["home-product-home-account-other-product", "1606"], + ["home-product-home-account-other-search", "52"], + ["home-product-home-account-product-account", "4263"], + ["home-product-home-account-product-end", "6936"], + ["home-product-home-account-product-home", "6694"], + ["home-product-home-account-product-other", "295"], + ["home-product-home-account-product-product", "13218"], + ["home-product-home-account-product-search", "1262"], + ["home-product-home-account-search-account", "646"], + ["home-product-home-account-search-end", "45"], + ["home-product-home-account-search-home", "36"], + ["home-product-home-account-search-other", "9"], + ["home-product-home-account-search-product", "1027"], + ["home-product-home-account-search-search", "280"], + ["home-product-home-end", "267856"], + ["home-product-home-home-account-account", "2431"], + ["home-product-home-home-account-end", "561"], + ["home-product-home-home-account-home", "908"], + ["home-product-home-home-account-other", "297"], + ["home-product-home-home-account-product", "2301"], + ["home-product-home-home-account-search", "167"], + ["home-product-home-home-end", "21544"], + ["home-product-home-home-home-account", "975"], + ["home-product-home-home-home-end", "3179"], + ["home-product-home-home-home-home", "4269"], + ["home-product-home-home-home-other", "440"], + ["home-product-home-home-home-product", "5422"], + ["home-product-home-home-home-search", "1646"], + ["home-product-home-home-other-account", "231"], + ["home-product-home-home-other-end", "176"], + ["home-product-home-home-other-home", "431"], + ["home-product-home-home-other-other", "974"], + ["home-product-home-home-other-product", "1103"], + ["home-product-home-home-other-search", "72"], + ["home-product-home-home-product-account", "2688"], + ["home-product-home-home-product-end", "10136"], + ["home-product-home-home-product-home", "15661"], + ["home-product-home-home-product-other", "431"], + ["home-product-home-home-product-product", "15537"], + ["home-product-home-home-product-search", "1964"], + ["home-product-home-home-search-account", "1329"], + ["home-product-home-home-search-end", "434"], + ["home-product-home-home-search-home", "421"], + ["home-product-home-home-search-other", "34"], + ["home-product-home-home-search-product", "8465"], + ["home-product-home-home-search-search", "2214"], + ["home-product-home-other-account-account", "711"], + ["home-product-home-other-account-end", "217"], + ["home-product-home-other-account-home", "269"], + ["home-product-home-other-account-other", "207"], + ["home-product-home-other-account-product", "414"], + ["home-product-home-other-account-search", "39"], + ["home-product-home-other-end", "2277"], + ["home-product-home-other-home-account", "295"], + ["home-product-home-other-home-end", "684"], + ["home-product-home-other-home-home", "409"], + ["home-product-home-other-home-other", "237"], + ["home-product-home-other-home-product", "1327"], + ["home-product-home-other-home-search", "320"], + ["home-product-home-other-other-account", "414"], + ["home-product-home-other-other-end", "912"], + ["home-product-home-other-other-home", "918"], + ["home-product-home-other-other-other", "2820"], + ["home-product-home-other-other-product", "2269"], + ["home-product-home-other-other-search", "143"], + ["home-product-home-other-product-account", "685"], + ["home-product-home-other-product-end", "2405"], + ["home-product-home-other-product-home", "1361"], + ["home-product-home-other-product-other", "704"], + ["home-product-home-other-product-product", "5369"], + ["home-product-home-other-product-search", "552"], + ["home-product-home-other-search-account", "67"], + ["home-product-home-other-search-end", "11"], + ["home-product-home-other-search-home", "10"], + ["home-product-home-other-search-other", "2"], + ["home-product-home-other-search-product", "360"], + ["home-product-home-other-search-search", "97"], + ["home-product-home-product-account-account", "16201"], + ["home-product-home-product-account-end", "4048"], + ["home-product-home-product-account-home", "5601"], + ["home-product-home-product-account-other", "1159"], + ["home-product-home-product-account-product", "19039"], + ["home-product-home-product-account-search", "975"], + ["home-product-home-product-end", "197504"], + ["home-product-home-product-home-account", "14683"], + ["home-product-home-product-home-end", "48341"], + ["home-product-home-product-home-home", "17283"], + ["home-product-home-product-home-other", "3251"], + ["home-product-home-product-home-product", "178815"], + ["home-product-home-product-home-search", "18675"], + ["home-product-home-product-other-account", "355"], + ["home-product-home-product-other-end", "540"], + ["home-product-home-product-other-home", "710"], + ["home-product-home-product-other-other", "1287"], + ["home-product-home-product-other-product", "2614"], + ["home-product-home-product-other-search", "126"], + ["home-product-home-product-product-account", "13609"], + ["home-product-home-product-product-end", "60364"], + ["home-product-home-product-product-home", "52427"], + ["home-product-home-product-product-other", "1665"], + ["home-product-home-product-product-product", "132113"], + ["home-product-home-product-product-search", "12492"], + ["home-product-home-product-search-account", "3635"], + ["home-product-home-product-search-end", "928"], + ["home-product-home-product-search-home", "597"], + ["home-product-home-product-search-other", "57"], + ["home-product-home-product-search-product", "25273"], + ["home-product-home-product-search-search", "5547"], + ["home-product-home-search-account-account", "6653"], + ["home-product-home-search-account-end", "1207"], + ["home-product-home-search-account-home", "958"], + ["home-product-home-search-account-other", "387"], + ["home-product-home-search-account-product", "6050"], + ["home-product-home-search-account-search", "794"], + ["home-product-home-search-end", "5716"], + ["home-product-home-search-home-account", "203"], + ["home-product-home-search-home-end", "427"], + ["home-product-home-search-home-home", "298"], + ["home-product-home-search-home-other", "46"], + ["home-product-home-search-home-product", "1190"], + ["home-product-home-search-home-search", "1010"], + ["home-product-home-search-other-account", "17"], + ["home-product-home-search-other-end", "22"], + ["home-product-home-search-other-home", "14"], + ["home-product-home-search-other-other", "58"], + ["home-product-home-search-other-product", "148"], + ["home-product-home-search-other-search", "27"], + ["home-product-home-search-product-account", "3473"], + ["home-product-home-search-product-end", "26040"], + ["home-product-home-search-product-home", "10599"], + ["home-product-home-search-product-other", "494"], + ["home-product-home-search-product-product", "47321"], + ["home-product-home-search-product-search", "18312"], + ["home-product-home-search-search-account", "1594"], + ["home-product-home-search-search-end", "1461"], + ["home-product-home-search-search-home", "777"], + ["home-product-home-search-search-other", "79"], + ["home-product-home-search-search-product", "15700"], + ["home-product-home-search-search-search", "6390"], + ["home-product-other-account-account-account", "1182"], + ["home-product-other-account-account-end", "260"], + ["home-product-other-account-account-home", "236"], + ["home-product-other-account-account-other", "199"], + ["home-product-other-account-account-product", "949"], + ["home-product-other-account-account-search", "76"], + ["home-product-other-account-end", "843"], + ["home-product-other-account-home-account", "82"], + ["home-product-other-account-home-end", "113"], + ["home-product-other-account-home-home", "65"], + ["home-product-other-account-home-other", "45"], + ["home-product-other-account-home-product", "310"], + ["home-product-other-account-home-search", "53"], + ["home-product-other-account-other-account", "115"], + ["home-product-other-account-other-end", "51"], + ["home-product-other-account-other-home", "59"], + ["home-product-other-account-other-other", "308"], + ["home-product-other-account-other-product", "183"], + ["home-product-other-account-other-search", "10"], + ["home-product-other-account-product-account", "368"], + ["home-product-other-account-product-end", "351"], + ["home-product-other-account-product-home", "228"], + ["home-product-other-account-product-other", "132"], + ["home-product-other-account-product-product", "684"], + ["home-product-other-account-product-search", "72"], + ["home-product-other-account-search-account", "50"], + ["home-product-other-account-search-end", "6"], + ["home-product-other-account-search-home", "2"], + ["home-product-other-account-search-product", "105"], + ["home-product-other-account-search-search", "42"], + ["home-product-other-end", "9952"], + ["home-product-other-home-account-account", "278"], + ["home-product-other-home-account-end", "53"], + ["home-product-other-home-account-home", "52"], + ["home-product-other-home-account-other", "26"], + ["home-product-other-home-account-product", "197"], + ["home-product-other-home-account-search", "15"], + ["home-product-other-home-end", "1407"], + ["home-product-other-home-home-account", "36"], + ["home-product-other-home-home-end", "126"], + ["home-product-other-home-home-home", "97"], + ["home-product-other-home-home-other", "93"], + ["home-product-other-home-home-product", "186"], + ["home-product-other-home-home-search", "65"], + ["home-product-other-home-other-account", "44"], + ["home-product-other-home-other-end", "57"], + ["home-product-other-home-other-home", "86"], + ["home-product-other-home-other-other", "102"], + ["home-product-other-home-other-product", "144"], + ["home-product-other-home-other-search", "14"], + ["home-product-other-home-product-account", "350"], + ["home-product-other-home-product-end", "766"], + ["home-product-other-home-product-home", "876"], + ["home-product-other-home-product-other", "172"], + ["home-product-other-home-product-product", "1323"], + ["home-product-other-home-product-search", "171"], + ["home-product-other-home-search-account", "99"], + ["home-product-other-home-search-end", "20"], + ["home-product-other-home-search-home", "18"], + ["home-product-other-home-search-other", "4"], + ["home-product-other-home-search-product", "502"], + ["home-product-other-home-search-search", "104"], + ["home-product-other-other-account-account", "629"], + ["home-product-other-other-account-end", "259"], + ["home-product-other-other-account-home", "209"], + ["home-product-other-other-account-other", "255"], + ["home-product-other-other-account-product", "294"], + ["home-product-other-other-account-search", "41"], + ["home-product-other-other-end", "3380"], + ["home-product-other-other-home-account", "154"], + ["home-product-other-other-home-end", "415"], + ["home-product-other-other-home-home", "251"], + ["home-product-other-other-home-other", "222"], + ["home-product-other-other-home-product", "832"], + ["home-product-other-other-home-search", "231"], + ["home-product-other-other-other-account", "945"], + ["home-product-other-other-other-end", "1377"], + ["home-product-other-other-other-home", "1090"], + ["home-product-other-other-other-other", "3229"], + ["home-product-other-other-other-product", "2933"], + ["home-product-other-other-other-search", "278"], + ["home-product-other-other-product-account", "606"], + ["home-product-other-other-product-end", "1915"], + ["home-product-other-other-product-home", "753"], + ["home-product-other-other-product-other", "1226"], + ["home-product-other-other-product-product", "3929"], + ["home-product-other-other-product-search", "422"], + ["home-product-other-other-search-account", "82"], + ["home-product-other-other-search-end", "24"], + ["home-product-other-other-search-home", "8"], + ["home-product-other-other-search-other", "12"], + ["home-product-other-other-search-product", "460"], + ["home-product-other-other-search-search", "119"], + ["home-product-other-product-account-account", "1146"], + ["home-product-other-product-account-end", "244"], + ["home-product-other-product-account-home", "147"], + ["home-product-other-product-account-other", "197"], + ["home-product-other-product-account-product", "987"], + ["home-product-other-product-account-search", "56"], + ["home-product-other-product-end", "10187"], + ["home-product-other-product-home-account", "185"], + ["home-product-other-product-home-end", "520"], + ["home-product-other-product-home-home", "217"], + ["home-product-other-product-home-other", "411"], + ["home-product-other-product-home-product", "1363"], + ["home-product-other-product-home-search", "542"], + ["home-product-other-product-other-account", "154"], + ["home-product-other-product-other-end", "253"], + ["home-product-other-product-other-home", "177"], + ["home-product-other-product-other-other", "531"], + ["home-product-other-product-other-product", "2151"], + ["home-product-other-product-other-search", "89"], + ["home-product-other-product-product-account", "899"], + ["home-product-other-product-product-end", "4738"], + ["home-product-other-product-product-home", "1251"], + ["home-product-other-product-product-other", "1053"], + ["home-product-other-product-product-product", "16104"], + ["home-product-other-product-product-search", "1255"], + ["home-product-other-product-search-account", "114"], + ["home-product-other-product-search-end", "50"], + ["home-product-other-product-search-home", "20"], + ["home-product-other-product-search-other", "25"], + ["home-product-other-product-search-product", "1882"], + ["home-product-other-product-search-search", "340"], + ["home-product-other-search-account-account", "158"], + ["home-product-other-search-account-end", "22"], + ["home-product-other-search-account-home", "6"], + ["home-product-other-search-account-other", "10"], + ["home-product-other-search-account-product", "123"], + ["home-product-other-search-account-search", "21"], + ["home-product-other-search-end", "79"], + ["home-product-other-search-home-end", "6"], + ["home-product-other-search-home-home", "2"], + ["home-product-other-search-home-other", "4"], + ["home-product-other-search-home-product", "6"], + ["home-product-other-search-home-search", "10"], + ["home-product-other-search-other-account", "2"], + ["home-product-other-search-other-end", "5"], + ["home-product-other-search-other-home", "1"], + ["home-product-other-search-other-other", "10"], + ["home-product-other-search-other-product", "18"], + ["home-product-other-search-other-search", "5"], + ["home-product-other-search-product-account", "86"], + ["home-product-other-search-product-end", "402"], + ["home-product-other-search-product-home", "108"], + ["home-product-other-search-product-other", "79"], + ["home-product-other-search-product-product", "847"], + ["home-product-other-search-product-search", "299"], + ["home-product-other-search-search-account", "25"], + ["home-product-other-search-search-end", "15"], + ["home-product-other-search-search-home", "8"], + ["home-product-other-search-search-other", "11"], + ["home-product-other-search-search-product", "285"], + ["home-product-other-search-search-search", "115"], + ["home-product-product-account-account-account", "16982"], + ["home-product-product-account-account-end", "5750"], + ["home-product-product-account-account-home", "4115"], + ["home-product-product-account-account-other", "1576"], + ["home-product-product-account-account-product", "35533"], + ["home-product-product-account-account-search", "1720"], + ["home-product-product-account-end", "17161"], + ["home-product-product-account-home-account", "1266"], + ["home-product-product-account-home-end", "1693"], + ["home-product-product-account-home-home", "794"], + ["home-product-product-account-home-other", "195"], + ["home-product-product-account-home-product", "6297"], + ["home-product-product-account-home-search", "1233"], + ["home-product-product-account-other-account", "415"], + ["home-product-product-account-other-end", "404"], + ["home-product-product-account-other-home", "289"], + ["home-product-product-account-other-other", "1085"], + ["home-product-product-account-other-product", "3177"], + ["home-product-product-account-other-search", "103"], + ["home-product-product-account-product-account", "11714"], + ["home-product-product-account-product-end", "14827"], + ["home-product-product-account-product-home", "7356"], + ["home-product-product-account-product-other", "812"], + ["home-product-product-account-product-product", "41643"], + ["home-product-product-account-product-search", "3542"], + ["home-product-product-account-search-account", "1309"], + ["home-product-product-account-search-end", "93"], + ["home-product-product-account-search-home", "53"], + ["home-product-product-account-search-other", "12"], + ["home-product-product-account-search-product", "2608"], + ["home-product-product-account-search-search", "709"], + ["home-product-product-end", "877057"], + ["home-product-product-home-account-account", "8571"], + ["home-product-product-home-account-end", "1861"], + ["home-product-product-home-account-home", "2224"], + ["home-product-product-home-account-other", "877"], + ["home-product-product-home-account-product", "9535"], + ["home-product-product-home-account-search", "657"], + ["home-product-product-home-end", "76757"], + ["home-product-product-home-home-account", "1735"], + ["home-product-product-home-home-end", "6270"], + ["home-product-product-home-home-home", "4341"], + ["home-product-product-home-home-other", "826"], + ["home-product-product-home-home-product", "14360"], + ["home-product-product-home-home-search", "3952"], + ["home-product-product-home-other-account", "519"], + ["home-product-product-home-other-end", "597"], + ["home-product-product-home-other-home", "874"], + ["home-product-product-home-other-other", "2167"], + ["home-product-product-home-other-product", "3339"], + ["home-product-product-home-other-search", "196"], + ["home-product-product-home-product-account", "11987"], + ["home-product-product-home-product-end", "47200"], + ["home-product-product-home-product-home", "53651"], + ["home-product-product-home-product-other", "1438"], + ["home-product-product-home-product-product", "128665"], + ["home-product-product-home-product-search", "9557"], + ["home-product-product-home-search-account", "4978"], + ["home-product-product-home-search-end", "1833"], + ["home-product-product-home-search-home", "935"], + ["home-product-product-home-search-other", "83"], + ["home-product-product-home-search-product", "35338"], + ["home-product-product-home-search-search", "8509"], + ["home-product-product-other-account-account", "907"], + ["home-product-product-other-account-end", "227"], + ["home-product-product-other-account-home", "189"], + ["home-product-product-other-account-other", "246"], + ["home-product-product-other-account-product", "568"], + ["home-product-product-other-account-search", "55"], + ["home-product-product-other-end", "3113"], + ["home-product-product-other-home-account", "160"], + ["home-product-product-other-home-end", "456"], + ["home-product-product-other-home-home", "191"], + ["home-product-product-other-home-other", "122"], + ["home-product-product-other-home-product", "1138"], + ["home-product-product-other-home-search", "216"], + ["home-product-product-other-other-account", "495"], + ["home-product-product-other-other-end", "986"], + ["home-product-product-other-other-home", "651"], + ["home-product-product-other-other-other", "3252"], + ["home-product-product-other-other-product", "3051"], + ["home-product-product-other-other-search", "228"], + ["home-product-product-other-product-account", "858"], + ["home-product-product-other-product-end", "3185"], + ["home-product-product-other-product-home", "1039"], + ["home-product-product-other-product-other", "1201"], + ["home-product-product-other-product-product", "9370"], + ["home-product-product-other-product-search", "847"], + ["home-product-product-other-search-account", "97"], + ["home-product-product-other-search-end", "19"], + ["home-product-product-other-search-home", "11"], + ["home-product-product-other-search-other", "8"], + ["home-product-product-other-search-product", "630"], + ["home-product-product-other-search-search", "153"], + ["home-product-product-product-account-account", "26031"], + ["home-product-product-product-account-end", "7047"], + ["home-product-product-product-account-home", "3803"], + ["home-product-product-product-account-other", "2261"], + ["home-product-product-product-account-product", "34569"], + ["home-product-product-product-account-search", "1857"], + ["home-product-product-product-end", "389344"], + ["home-product-product-product-home-account", "7601"], + ["home-product-product-product-home-end", "25665"], + ["home-product-product-product-home-home", "10491"], + ["home-product-product-product-home-other", "2818"], + ["home-product-product-product-home-product", "87394"], + ["home-product-product-product-home-search", "19828"], + ["home-product-product-product-other-account", "753"], + ["home-product-product-product-other-end", "1245"], + ["home-product-product-product-other-home", "771"], + ["home-product-product-product-other-other", "3301"], + ["home-product-product-product-other-product", "6838"], + ["home-product-product-product-other-search", "360"], + ["home-product-product-product-product-account", "43509"], + ["home-product-product-product-product-end", "241849"], + ["home-product-product-product-product-home", "84877"], + ["home-product-product-product-product-other", "7865"], + ["home-product-product-product-product-product", "862616"], + ["home-product-product-product-product-search", "60547"], + ["home-product-product-product-search-account", "6400"], + ["home-product-product-product-search-end", "2350"], + ["home-product-product-product-search-home", "890"], + ["home-product-product-product-search-other", "172"], + ["home-product-product-product-search-product", "71910"], + ["home-product-product-product-search-search", "14607"], + ["home-product-product-search-account-account", "6319"], + ["home-product-product-search-account-end", "1075"], + ["home-product-product-search-account-home", "584"], + ["home-product-product-search-account-other", "414"], + ["home-product-product-search-account-product", "7269"], + ["home-product-product-search-account-search", "1136"], + ["home-product-product-search-end", "5447"], + ["home-product-product-search-home-account", "114"], + ["home-product-product-search-home-end", "264"], + ["home-product-product-search-home-home", "176"], + ["home-product-product-search-home-other", "36"], + ["home-product-product-search-home-product", "988"], + ["home-product-product-search-home-search", "635"], + ["home-product-product-search-other-account", "29"], + ["home-product-product-search-other-end", "28"], + ["home-product-product-search-other-home", "14"], + ["home-product-product-search-other-other", "64"], + ["home-product-product-search-other-product", "209"], + ["home-product-product-search-other-search", "29"], + ["home-product-product-search-product-account", "4150"], + ["home-product-product-search-product-end", "27941"], + ["home-product-product-search-product-home", "8267"], + ["home-product-product-search-product-other", "813"], + ["home-product-product-search-product-product", "89328"], + ["home-product-product-search-product-search", "26088"], + ["home-product-product-search-search-account", "1610"], + ["home-product-product-search-search-end", "1184"], + ["home-product-product-search-search-home", "475"], + ["home-product-product-search-search-other", "99"], + ["home-product-product-search-search-product", "21107"], + ["home-product-product-search-search-search", "7470"], + ["home-product-search-account-account-account", "4083"], + ["home-product-search-account-account-end", "997"], + ["home-product-search-account-account-home", "789"], + ["home-product-search-account-account-other", "289"], + ["home-product-search-account-account-product", "10445"], + ["home-product-search-account-account-search", "1249"], + ["home-product-search-account-end", "3107"], + ["home-product-search-account-home-account", "201"], + ["home-product-search-account-home-end", "245"], + ["home-product-search-account-home-home", "123"], + ["home-product-search-account-home-other", "31"], + ["home-product-search-account-home-product", "815"], + ["home-product-search-account-home-search", "397"], + ["home-product-search-account-other-account", "75"], + ["home-product-search-account-other-end", "60"], + ["home-product-search-account-other-home", "41"], + ["home-product-search-account-other-other", "123"], + ["home-product-search-account-other-product", "847"], + ["home-product-search-account-other-search", "50"], + ["home-product-search-account-product-account", "2556"], + ["home-product-search-account-product-end", "4190"], + ["home-product-search-account-product-home", "1805"], + ["home-product-search-account-product-other", "151"], + ["home-product-search-account-product-product", "9354"], + ["home-product-search-account-product-search", "2055"], + ["home-product-search-account-search-account", "1710"], + ["home-product-search-account-search-end", "72"], + ["home-product-search-account-search-home", "30"], + ["home-product-search-account-search-other", "6"], + ["home-product-search-account-search-product", "1171"], + ["home-product-search-account-search-search", "389"], + ["home-product-search-end", "15883"], + ["home-product-search-home-account-account", "115"], + ["home-product-search-home-account-end", "16"], + ["home-product-search-home-account-home", "30"], + ["home-product-search-home-account-other", "17"], + ["home-product-search-home-account-product", "124"], + ["home-product-search-home-account-search", "19"], + ["home-product-search-home-end", "824"], + ["home-product-search-home-home-account", "33"], + ["home-product-search-home-home-end", "65"], + ["home-product-search-home-home-home", "90"], + ["home-product-search-home-home-other", "16"], + ["home-product-search-home-home-product", "168"], + ["home-product-search-home-home-search", "128"], + ["home-product-search-home-other-account", "6"], + ["home-product-search-home-other-end", "5"], + ["home-product-search-home-other-home", "14"], + ["home-product-search-home-other-other", "27"], + ["home-product-search-home-other-product", "45"], + ["home-product-search-home-other-search", "3"], + ["home-product-search-home-product-account", "171"], + ["home-product-search-home-product-end", "524"], + ["home-product-search-home-product-home", "516"], + ["home-product-search-home-product-other", "23"], + ["home-product-search-home-product-product", "1030"], + ["home-product-search-home-product-search", "345"], + ["home-product-search-home-search-account", "115"], + ["home-product-search-home-search-end", "60"], + ["home-product-search-home-search-home", "67"], + ["home-product-search-home-search-other", "3"], + ["home-product-search-home-search-product", "1153"], + ["home-product-search-home-search-search", "398"], + ["home-product-search-other-account-account", "21"], + ["home-product-search-other-account-end", "4"], + ["home-product-search-other-account-home", "4"], + ["home-product-search-other-account-other", "9"], + ["home-product-search-other-account-product", "20"], + ["home-product-search-other-account-search", "3"], + ["home-product-search-other-end", "71"], + ["home-product-search-other-home-end", "4"], + ["home-product-search-other-home-home", "4"], + ["home-product-search-other-home-other", "1"], + ["home-product-search-other-home-product", "9"], + ["home-product-search-other-home-search", "11"], + ["home-product-search-other-other-account", "10"], + ["home-product-search-other-other-end", "17"], + ["home-product-search-other-other-home", "14"], + ["home-product-search-other-other-other", "69"], + ["home-product-search-other-other-product", "79"], + ["home-product-search-other-other-search", "16"], + ["home-product-search-other-product-account", "28"], + ["home-product-search-other-product-end", "117"], + ["home-product-search-other-product-home", "28"], + ["home-product-search-other-product-other", "27"], + ["home-product-search-other-product-product", "323"], + ["home-product-search-other-product-search", "46"], + ["home-product-search-other-search-account", "3"], + ["home-product-search-other-search-end", "5"], + ["home-product-search-other-search-other", "7"], + ["home-product-search-other-search-product", "50"], + ["home-product-search-other-search-search", "18"], + ["home-product-search-product-account-account", "4093"], + ["home-product-search-product-account-end", "993"], + ["home-product-search-product-account-home", "506"], + ["home-product-search-product-account-other", "346"], + ["home-product-search-product-account-product", "5205"], + ["home-product-search-product-account-search", "715"], + ["home-product-search-product-end", "84538"], + ["home-product-search-product-home-account", "1125"], + ["home-product-search-product-home-end", "3964"], + ["home-product-search-product-home-home", "1696"], + ["home-product-search-product-home-other", "494"], + ["home-product-search-product-home-product", "10997"], + ["home-product-search-product-home-search", "7924"], + ["home-product-search-product-other-account", "90"], + ["home-product-search-product-other-end", "180"], + ["home-product-search-product-other-home", "96"], + ["home-product-search-product-other-other", "466"], + ["home-product-search-product-other-product", "1227"], + ["home-product-search-product-other-search", "106"], + ["home-product-search-product-product-account", "5273"], + ["home-product-search-product-product-end", "36836"], + ["home-product-search-product-product-home", "11566"], + ["home-product-search-product-product-other", "1024"], + ["home-product-search-product-product-product", "109532"], + ["home-product-search-product-product-search", "28874"], + ["home-product-search-product-search-account", "1889"], + ["home-product-search-product-search-end", "1979"], + ["home-product-search-product-search-home", "776"], + ["home-product-search-product-search-other", "119"], + ["home-product-search-product-search-product", "58173"], + ["home-product-search-product-search-search", "10899"], + ["home-product-search-search-account-account", "1692"], + ["home-product-search-search-account-end", "254"], + ["home-product-search-search-account-home", "157"], + ["home-product-search-search-account-other", "122"], + ["home-product-search-search-account-product", "1831"], + ["home-product-search-search-account-search", "364"], + ["home-product-search-search-end", "3437"], + ["home-product-search-search-home-account", "81"], + ["home-product-search-search-home-end", "214"], + ["home-product-search-search-home-home", "128"], + ["home-product-search-search-home-other", "24"], + ["home-product-search-search-home-product", "638"], + ["home-product-search-search-home-search", "429"], + ["home-product-search-search-other-account", "11"], + ["home-product-search-search-other-end", "14"], + ["home-product-search-search-other-home", "19"], + ["home-product-search-search-other-other", "71"], + ["home-product-search-search-other-product", "124"], + ["home-product-search-search-other-search", "14"], + ["home-product-search-search-product-account", "1833"], + ["home-product-search-search-product-end", "10949"], + ["home-product-search-search-product-home", "3436"], + ["home-product-search-search-product-other", "256"], + ["home-product-search-search-product-product", "26732"], + ["home-product-search-search-product-search", "11418"], + ["home-product-search-search-search-account", "959"], + ["home-product-search-search-search-end", "966"], + ["home-product-search-search-search-home", "467"], + ["home-product-search-search-search-other", "67"], + ["home-product-search-search-search-product", "11075"], + ["home-product-search-search-search-search", "6109"], + ["home-search-account-account-account-account", "13239"], + ["home-search-account-account-account-end", "2358"], + ["home-search-account-account-account-home", "1437"], + ["home-search-account-account-account-other", "3005"], + ["home-search-account-account-account-product", "12523"], + ["home-search-account-account-account-search", "2266"], + ["home-search-account-account-end", "10896"], + ["home-search-account-account-home-account", "655"], + ["home-search-account-account-home-end", "1145"], + ["home-search-account-account-home-home", "604"], + ["home-search-account-account-home-other", "166"], + ["home-search-account-account-home-product", "1723"], + ["home-search-account-account-home-search", "1793"], + ["home-search-account-account-other-account", "289"], + ["home-search-account-account-other-end", "176"], + ["home-search-account-account-other-home", "132"], + ["home-search-account-account-other-other", "469"], + ["home-search-account-account-other-product", "1564"], + ["home-search-account-account-other-search", "114"], + ["home-search-account-account-product-account", "13069"], + ["home-search-account-account-product-end", "19734"], + ["home-search-account-account-product-home", "7010"], + ["home-search-account-account-product-other", "658"], + ["home-search-account-account-product-product", "30782"], + ["home-search-account-account-product-search", "6399"], + ["home-search-account-account-search-account", "4936"], + ["home-search-account-account-search-end", "305"], + ["home-search-account-account-search-home", "145"], + ["home-search-account-account-search-other", "20"], + ["home-search-account-account-search-product", "2965"], + ["home-search-account-account-search-search", "1490"], + ["home-search-account-end", "27786"], + ["home-search-account-home-account-account", "416"], + ["home-search-account-home-account-end", "130"], + ["home-search-account-home-account-home", "177"], + ["home-search-account-home-account-other", "48"], + ["home-search-account-home-account-product", "428"], + ["home-search-account-home-account-search", "103"], + ["home-search-account-home-end", "2300"], + ["home-search-account-home-home-account", "164"], + ["home-search-account-home-home-end", "199"], + ["home-search-account-home-home-home", "204"], + ["home-search-account-home-home-other", "73"], + ["home-search-account-home-home-product", "383"], + ["home-search-account-home-home-search", "303"], + ["home-search-account-home-other-account", "33"], + ["home-search-account-home-other-end", "12"], + ["home-search-account-home-other-home", "42"], + ["home-search-account-home-other-other", "77"], + ["home-search-account-home-other-product", "79"], + ["home-search-account-home-other-search", "12"], + ["home-search-account-home-product-account", "371"], + ["home-search-account-home-product-end", "908"], + ["home-search-account-home-product-home", "765"], + ["home-search-account-home-product-other", "33"], + ["home-search-account-home-product-product", "1444"], + ["home-search-account-home-product-search", "311"], + ["home-search-account-home-search-account", "1392"], + ["home-search-account-home-search-end", "119"], + ["home-search-account-home-search-home", "96"], + ["home-search-account-home-search-other", "8"], + ["home-search-account-home-search-product", "1865"], + ["home-search-account-home-search-search", "617"], + ["home-search-account-other-account-account", "224"], + ["home-search-account-other-account-end", "65"], + ["home-search-account-other-account-home", "34"], + ["home-search-account-other-account-other", "177"], + ["home-search-account-other-account-product", "160"], + ["home-search-account-other-account-search", "76"], + ["home-search-account-other-end", "779"], + ["home-search-account-other-home-account", "33"], + ["home-search-account-other-home-end", "56"], + ["home-search-account-other-home-home", "20"], + ["home-search-account-other-home-other", "16"], + ["home-search-account-other-home-product", "101"], + ["home-search-account-other-home-search", "121"], + ["home-search-account-other-other-account", "75"], + ["home-search-account-other-other-end", "125"], + ["home-search-account-other-other-home", "55"], + ["home-search-account-other-other-other", "281"], + ["home-search-account-other-other-product", "583"], + ["home-search-account-other-other-search", "71"], + ["home-search-account-other-product-account", "308"], + ["home-search-account-other-product-end", "1725"], + ["home-search-account-other-product-home", "349"], + ["home-search-account-other-product-other", "344"], + ["home-search-account-other-product-product", "3688"], + ["home-search-account-other-product-search", "346"], + ["home-search-account-other-search-account", "131"], + ["home-search-account-other-search-end", "21"], + ["home-search-account-other-search-home", "5"], + ["home-search-account-other-search-other", "6"], + ["home-search-account-other-search-product", "211"], + ["home-search-account-other-search-search", "98"], + ["home-search-account-product-account-account", "4679"], + ["home-search-account-product-account-end", "1512"], + ["home-search-account-product-account-home", "699"], + ["home-search-account-product-account-other", "403"], + ["home-search-account-product-account-product", "9692"], + ["home-search-account-product-account-search", "1185"], + ["home-search-account-product-end", "36759"], + ["home-search-account-product-home-account", "879"], + ["home-search-account-product-home-end", "1874"], + ["home-search-account-product-home-home", "970"], + ["home-search-account-product-home-other", "218"], + ["home-search-account-product-home-product", "3633"], + ["home-search-account-product-home-search", "3597"], + ["home-search-account-product-other-account", "111"], + ["home-search-account-product-other-end", "130"], + ["home-search-account-product-other-home", "72"], + ["home-search-account-product-other-other", "279"], + ["home-search-account-product-other-product", "437"], + ["home-search-account-product-other-search", "54"], + ["home-search-account-product-product-account", "4996"], + ["home-search-account-product-product-end", "13846"], + ["home-search-account-product-product-home", "4326"], + ["home-search-account-product-product-other", "470"], + ["home-search-account-product-product-product", "35956"], + ["home-search-account-product-product-search", "5469"], + ["home-search-account-product-search-account", "3989"], + ["home-search-account-product-search-end", "355"], + ["home-search-account-product-search-home", "138"], + ["home-search-account-product-search-other", "23"], + ["home-search-account-product-search-product", "6610"], + ["home-search-account-product-search-search", "1885"], + ["home-search-account-search-account-account", "2483"], + ["home-search-account-search-account-end", "1138"], + ["home-search-account-search-account-home", "576"], + ["home-search-account-search-account-other", "202"], + ["home-search-account-search-account-product", "3827"], + ["home-search-account-search-account-search", "2204"], + ["home-search-account-search-end", "756"], + ["home-search-account-search-home-account", "32"], + ["home-search-account-search-home-end", "67"], + ["home-search-account-search-home-home", "43"], + ["home-search-account-search-home-other", "2"], + ["home-search-account-search-home-product", "105"], + ["home-search-account-search-home-search", "143"], + ["home-search-account-search-other-account", "3"], + ["home-search-account-search-other-end", "2"], + ["home-search-account-search-other-home", "2"], + ["home-search-account-search-other-other", "17"], + ["home-search-account-search-other-product", "30"], + ["home-search-account-search-other-search", "7"], + ["home-search-account-search-product-account", "703"], + ["home-search-account-search-product-end", "1992"], + ["home-search-account-search-product-home", "470"], + ["home-search-account-search-product-other", "36"], + ["home-search-account-search-product-product", "4065"], + ["home-search-account-search-product-search", "1768"], + ["home-search-account-search-search-account", "817"], + ["home-search-account-search-search-end", "189"], + ["home-search-account-search-search-home", "78"], + ["home-search-account-search-search-other", "12"], + ["home-search-account-search-search-product", "1579"], + ["home-search-account-search-search-search", "1005"], + ["home-search-end", "244447"], + ["home-search-home-account-account-account", "311"], + ["home-search-home-account-account-end", "95"], + ["home-search-home-account-account-home", "81"], + ["home-search-home-account-account-other", "33"], + ["home-search-home-account-account-product", "462"], + ["home-search-home-account-account-search", "58"], + ["home-search-home-account-end", "233"], + ["home-search-home-account-home-account", "148"], + ["home-search-home-account-home-end", "59"], + ["home-search-home-account-home-home", "69"], + ["home-search-home-account-home-other", "14"], + ["home-search-home-account-home-product", "130"], + ["home-search-home-account-home-search", "62"], + ["home-search-home-account-other-account", "9"], + ["home-search-home-account-other-end", "9"], + ["home-search-home-account-other-home", "7"], + ["home-search-home-account-other-other", "32"], + ["home-search-home-account-other-product", "48"], + ["home-search-home-account-other-search", "8"], + ["home-search-home-account-product-account", "124"], + ["home-search-home-account-product-end", "229"], + ["home-search-home-account-product-home", "119"], + ["home-search-home-account-product-other", "8"], + ["home-search-home-account-product-product", "405"], + ["home-search-home-account-product-search", "91"], + ["home-search-home-account-search-account", "51"], + ["home-search-home-account-search-end", "9"], + ["home-search-home-account-search-home", "8"], + ["home-search-home-account-search-other", "2"], + ["home-search-home-account-search-product", "97"], + ["home-search-home-account-search-search", "37"], + ["home-search-home-end", "10828"], + ["home-search-home-home-account-account", "144"], + ["home-search-home-home-account-end", "22"], + ["home-search-home-home-account-home", "42"], + ["home-search-home-home-account-other", "16"], + ["home-search-home-home-account-product", "105"], + ["home-search-home-home-account-search", "20"], + ["home-search-home-home-end", "901"], + ["home-search-home-home-home-account", "55"], + ["home-search-home-home-home-end", "173"], + ["home-search-home-home-home-home", "551"], + ["home-search-home-home-home-other", "34"], + ["home-search-home-home-home-product", "299"], + ["home-search-home-home-home-search", "468"], + ["home-search-home-home-other-account", "23"], + ["home-search-home-home-other-end", "12"], + ["home-search-home-home-other-home", "24"], + ["home-search-home-home-other-other", "119"], + ["home-search-home-home-other-product", "118"], + ["home-search-home-home-other-search", "11"], + ["home-search-home-home-product-account", "80"], + ["home-search-home-home-product-end", "395"], + ["home-search-home-home-product-home", "411"], + ["home-search-home-home-product-other", "30"], + ["home-search-home-home-product-product", "848"], + ["home-search-home-home-product-search", "218"], + ["home-search-home-home-search-account", "163"], + ["home-search-home-home-search-end", "181"], + ["home-search-home-home-search-home", "196"], + ["home-search-home-home-search-other", "6"], + ["home-search-home-home-search-product", "2070"], + ["home-search-home-home-search-search", "725"], + ["home-search-home-other-account-account", "34"], + ["home-search-home-other-account-end", "7"], + ["home-search-home-other-account-home", "7"], + ["home-search-home-other-account-other", "6"], + ["home-search-home-other-account-product", "9"], + ["home-search-home-other-account-search", "2"], + ["home-search-home-other-end", "93"], + ["home-search-home-other-home-account", "9"], + ["home-search-home-other-home-end", "22"], + ["home-search-home-other-home-home", "21"], + ["home-search-home-other-home-other", "14"], + ["home-search-home-other-home-product", "27"], + ["home-search-home-other-home-search", "28"], + ["home-search-home-other-other-account", "20"], + ["home-search-home-other-other-end", "46"], + ["home-search-home-other-other-home", "51"], + ["home-search-home-other-other-other", "118"], + ["home-search-home-other-other-product", "117"], + ["home-search-home-other-other-search", "20"], + ["home-search-home-other-product-account", "21"], + ["home-search-home-other-product-end", "99"], + ["home-search-home-other-product-home", "49"], + ["home-search-home-other-product-other", "33"], + ["home-search-home-other-product-product", "244"], + ["home-search-home-other-product-search", "45"], + ["home-search-home-other-search-account", "5"], + ["home-search-home-other-search-end", "3"], + ["home-search-home-other-search-home", "1"], + ["home-search-home-other-search-other", "1"], + ["home-search-home-other-search-product", "48"], + ["home-search-home-other-search-search", "12"], + ["home-search-home-product-account-account", "366"], + ["home-search-home-product-account-end", "86"], + ["home-search-home-product-account-home", "86"], + ["home-search-home-product-account-other", "28"], + ["home-search-home-product-account-product", "429"], + ["home-search-home-product-account-search", "48"], + ["home-search-home-product-end", "4763"], + ["home-search-home-product-home-account", "182"], + ["home-search-home-product-home-end", "1133"], + ["home-search-home-product-home-home", "638"], + ["home-search-home-product-home-other", "49"], + ["home-search-home-product-home-product", "1889"], + ["home-search-home-product-home-search", "916"], + ["home-search-home-product-other-account", "10"], + ["home-search-home-product-other-end", "19"], + ["home-search-home-product-other-home", "8"], + ["home-search-home-product-other-other", "41"], + ["home-search-home-product-other-product", "79"], + ["home-search-home-product-other-search", "14"], + ["home-search-home-product-product-account", "419"], + ["home-search-home-product-product-end", "2134"], + ["home-search-home-product-product-home", "1085"], + ["home-search-home-product-product-other", "67"], + ["home-search-home-product-product-product", "4642"], + ["home-search-home-product-product-search", "1146"], + ["home-search-home-product-search-account", "152"], + ["home-search-home-product-search-end", "120"], + ["home-search-home-product-search-home", "88"], + ["home-search-home-product-search-other", "3"], + ["home-search-home-product-search-product", "2298"], + ["home-search-home-product-search-search", "525"], + ["home-search-home-search-account-account", "710"], + ["home-search-home-search-account-end", "122"], + ["home-search-home-search-account-home", "73"], + ["home-search-home-search-account-other", "38"], + ["home-search-home-search-account-product", "555"], + ["home-search-home-search-account-search", "129"], + ["home-search-home-search-end", "2818"], + ["home-search-home-search-home-account", "63"], + ["home-search-home-search-home-end", "217"], + ["home-search-home-search-home-home", "210"], + ["home-search-home-search-home-other", "10"], + ["home-search-home-search-home-product", "476"], + ["home-search-home-search-home-search", "1275"], + ["home-search-home-search-other-account", "2"], + ["home-search-home-search-other-end", "4"], + ["home-search-home-search-other-home", "11"], + ["home-search-home-search-other-other", "23"], + ["home-search-home-search-other-product", "33"], + ["home-search-home-search-other-search", "6"], + ["home-search-home-search-product-account", "505"], + ["home-search-home-search-product-end", "5741"], + ["home-search-home-search-product-home", "1886"], + ["home-search-home-search-product-other", "80"], + ["home-search-home-search-product-product", "11868"], + ["home-search-home-search-product-search", "4681"], + ["home-search-home-search-search-account", "276"], + ["home-search-home-search-search-end", "675"], + ["home-search-home-search-search-home", "326"], + ["home-search-home-search-search-other", "32"], + ["home-search-home-search-search-product", "4385"], + ["home-search-home-search-search-search", "2266"], + ["home-search-other-account-account-account", "67"], + ["home-search-other-account-account-end", "11"], + ["home-search-other-account-account-home", "21"], + ["home-search-other-account-account-other", "20"], + ["home-search-other-account-account-product", "76"], + ["home-search-other-account-account-search", "10"], + ["home-search-other-account-end", "55"], + ["home-search-other-account-home-account", "5"], + ["home-search-other-account-home-end", "3"], + ["home-search-other-account-home-home", "3"], + ["home-search-other-account-home-other", "5"], + ["home-search-other-account-home-product", "6"], + ["home-search-other-account-home-search", "10"], + ["home-search-other-account-other-account", "17"], + ["home-search-other-account-other-end", "7"], + ["home-search-other-account-other-home", "1"], + ["home-search-other-account-other-other", "19"], + ["home-search-other-account-other-product", "11"], + ["home-search-other-account-other-search", "8"], + ["home-search-other-account-product-account", "20"], + ["home-search-other-account-product-end", "28"], + ["home-search-other-account-product-home", "12"], + ["home-search-other-account-product-other", "2"], + ["home-search-other-account-product-product", "58"], + ["home-search-other-account-product-search", "13"], + ["home-search-other-account-search-account", "1"], + ["home-search-other-account-search-end", "2"], + ["home-search-other-account-search-product", "8"], + ["home-search-other-account-search-search", "4"], + ["home-search-other-end", "975"], + ["home-search-other-home-account-account", "14"], + ["home-search-other-home-account-home", "1"], + ["home-search-other-home-account-product", "6"], + ["home-search-other-home-account-search", "2"], + ["home-search-other-home-end", "79"], + ["home-search-other-home-home-account", "3"], + ["home-search-other-home-home-end", "5"], + ["home-search-other-home-home-home", "11"], + ["home-search-other-home-home-other", "6"], + ["home-search-other-home-home-product", "6"], + ["home-search-other-home-home-search", "19"], + ["home-search-other-home-other-account", "1"], + ["home-search-other-home-other-end", "1"], + ["home-search-other-home-other-home", "3"], + ["home-search-other-home-other-other", "13"], + ["home-search-other-home-other-product", "9"], + ["home-search-other-home-other-search", "2"], + ["home-search-other-home-product-account", "9"], + ["home-search-other-home-product-end", "30"], + ["home-search-other-home-product-home", "21"], + ["home-search-other-home-product-other", "3"], + ["home-search-other-home-product-product", "55"], + ["home-search-other-home-product-search", "8"], + ["home-search-other-home-search-account", "3"], + ["home-search-other-home-search-end", "14"], + ["home-search-other-home-search-home", "6"], + ["home-search-other-home-search-other", "9"], + ["home-search-other-home-search-product", "97"], + ["home-search-other-home-search-search", "37"], + ["home-search-other-other-account-account", "43"], + ["home-search-other-other-account-end", "10"], + ["home-search-other-other-account-home", "6"], + ["home-search-other-other-account-other", "17"], + ["home-search-other-other-account-product", "16"], + ["home-search-other-other-account-search", "7"], + ["home-search-other-other-end", "278"], + ["home-search-other-other-home-account", "7"], + ["home-search-other-other-home-end", "32"], + ["home-search-other-other-home-home", "29"], + ["home-search-other-other-home-other", "9"], + ["home-search-other-other-home-product", "31"], + ["home-search-other-other-home-search", "45"], + ["home-search-other-other-other-account", "50"], + ["home-search-other-other-other-end", "104"], + ["home-search-other-other-other-home", "55"], + ["home-search-other-other-other-other", "383"], + ["home-search-other-other-other-product", "299"], + ["home-search-other-other-other-search", "77"], + ["home-search-other-other-product-account", "59"], + ["home-search-other-other-product-end", "252"], + ["home-search-other-other-product-home", "74"], + ["home-search-other-other-product-other", "111"], + ["home-search-other-other-product-product", "415"], + ["home-search-other-other-product-search", "108"], + ["home-search-other-other-search-account", "16"], + ["home-search-other-other-search-end", "19"], + ["home-search-other-other-search-home", "4"], + ["home-search-other-other-search-other", "24"], + ["home-search-other-other-search-product", "134"], + ["home-search-other-other-search-search", "73"], + ["home-search-other-product-account-account", "100"], + ["home-search-other-product-account-end", "22"], + ["home-search-other-product-account-home", "7"], + ["home-search-other-product-account-other", "23"], + ["home-search-other-product-account-product", "77"], + ["home-search-other-product-account-search", "12"], + ["home-search-other-product-end", "1551"], + ["home-search-other-product-home-account", "14"], + ["home-search-other-product-home-end", "62"], + ["home-search-other-product-home-home", "21"], + ["home-search-other-product-home-other", "36"], + ["home-search-other-product-home-product", "86"], + ["home-search-other-product-home-search", "132"], + ["home-search-other-product-other-account", "7"], + ["home-search-other-product-other-end", "27"], + ["home-search-other-product-other-home", "13"], + ["home-search-other-product-other-other", "55"], + ["home-search-other-product-other-product", "199"], + ["home-search-other-product-other-search", "43"], + ["home-search-other-product-product-account", "74"], + ["home-search-other-product-product-end", "626"], + ["home-search-other-product-product-home", "136"], + ["home-search-other-product-product-other", "97"], + ["home-search-other-product-product-product", "1708"], + ["home-search-other-product-product-search", "232"], + ["home-search-other-product-search-account", "15"], + ["home-search-other-product-search-end", "38"], + ["home-search-other-product-search-home", "7"], + ["home-search-other-product-search-other", "22"], + ["home-search-other-product-search-product", "417"], + ["home-search-other-product-search-search", "122"], + ["home-search-other-search-account-account", "18"], + ["home-search-other-search-account-end", "1"], + ["home-search-other-search-account-home", "1"], + ["home-search-other-search-account-other", "4"], + ["home-search-other-search-account-product", "21"], + ["home-search-other-search-account-search", "1"], + ["home-search-other-search-end", "80"], + ["home-search-other-search-home-account", "2"], + ["home-search-other-search-home-end", "3"], + ["home-search-other-search-home-home", "4"], + ["home-search-other-search-home-other", "1"], + ["home-search-other-search-home-product", "11"], + ["home-search-other-search-home-search", "10"], + ["home-search-other-search-other-account", "1"], + ["home-search-other-search-other-end", "8"], + ["home-search-other-search-other-home", "2"], + ["home-search-other-search-other-other", "6"], + ["home-search-other-search-other-product", "23"], + ["home-search-other-search-other-search", "16"], + ["home-search-other-search-product-account", "27"], + ["home-search-other-search-product-end", "179"], + ["home-search-other-search-product-home", "30"], + ["home-search-other-search-product-other", "22"], + ["home-search-other-search-product-product", "291"], + ["home-search-other-search-product-search", "113"], + ["home-search-other-search-search-account", "12"], + ["home-search-other-search-search-end", "14"], + ["home-search-other-search-search-home", "10"], + ["home-search-other-search-search-other", "15"], + ["home-search-other-search-search-product", "126"], + ["home-search-other-search-search-search", "78"], + ["home-search-product-account-account-account", "8888"], + ["home-search-product-account-account-end", "3455"], + ["home-search-product-account-account-home", "1395"], + ["home-search-product-account-account-other", "801"], + ["home-search-product-account-account-product", "17999"], + ["home-search-product-account-account-search", "2227"], + ["home-search-product-account-end", "11348"], + ["home-search-product-account-home-account", "305"], + ["home-search-product-account-home-end", "631"], + ["home-search-product-account-home-home", "336"], + ["home-search-product-account-home-other", "91"], + ["home-search-product-account-home-product", "1204"], + ["home-search-product-account-home-search", "1347"], + ["home-search-product-account-other-account", "237"], + ["home-search-product-account-other-end", "242"], + ["home-search-product-account-other-home", "117"], + ["home-search-product-account-other-other", "551"], + ["home-search-product-account-other-product", "2080"], + ["home-search-product-account-other-search", "130"], + ["home-search-product-account-product-account", "6274"], + ["home-search-product-account-product-end", "8682"], + ["home-search-product-account-product-home", "2479"], + ["home-search-product-account-product-other", "341"], + ["home-search-product-account-product-product", "21994"], + ["home-search-product-account-product-search", "4752"], + ["home-search-product-account-search-account", "764"], + ["home-search-product-account-search-end", "294"], + ["home-search-product-account-search-home", "81"], + ["home-search-product-account-search-other", "22"], + ["home-search-product-account-search-product", "4360"], + ["home-search-product-account-search-search", "1138"], + ["home-search-product-end", "1515532"], + ["home-search-product-home-account-account", "3345"], + ["home-search-product-home-account-end", "831"], + ["home-search-product-home-account-home", "837"], + ["home-search-product-home-account-other", "376"], + ["home-search-product-home-account-product", "3437"], + ["home-search-product-home-account-search", "484"], + ["home-search-product-home-end", "47363"], + ["home-search-product-home-home-account", "925"], + ["home-search-product-home-home-end", "3216"], + ["home-search-product-home-home-home", "2973"], + ["home-search-product-home-home-other", "948"], + ["home-search-product-home-home-product", "5993"], + ["home-search-product-home-home-search", "7267"], + ["home-search-product-home-other-account", "301"], + ["home-search-product-home-other-end", "452"], + ["home-search-product-home-other-home", "447"], + ["home-search-product-home-other-other", "1914"], + ["home-search-product-home-other-product", "2572"], + ["home-search-product-home-other-search", "231"], + ["home-search-product-home-product-account", "4284"], + ["home-search-product-home-product-end", "19592"], + ["home-search-product-home-product-home", "16513"], + ["home-search-product-home-product-other", "630"], + ["home-search-product-home-product-product", "30616"], + ["home-search-product-home-product-search", "8475"], + ["home-search-product-home-search-account", "4646"], + ["home-search-product-home-search-end", "5241"], + ["home-search-product-home-search-home", "2189"], + ["home-search-product-home-search-other", "170"], + ["home-search-product-home-search-product", "110768"], + ["home-search-product-home-search-search", "22729"], + ["home-search-product-other-account-account", "267"], + ["home-search-product-other-account-end", "111"], + ["home-search-product-other-account-home", "63"], + ["home-search-product-other-account-other", "84"], + ["home-search-product-other-account-product", "199"], + ["home-search-product-other-account-search", "40"], + ["home-search-product-other-end", "2011"], + ["home-search-product-other-home-account", "52"], + ["home-search-product-other-home-end", "142"], + ["home-search-product-other-home-home", "88"], + ["home-search-product-other-home-other", "71"], + ["home-search-product-other-home-product", "229"], + ["home-search-product-other-home-search", "221"], + ["home-search-product-other-other-account", "181"], + ["home-search-product-other-other-end", "759"], + ["home-search-product-other-other-home", "384"], + ["home-search-product-other-other-other", "1753"], + ["home-search-product-other-other-product", "1829"], + ["home-search-product-other-other-search", "348"], + ["home-search-product-other-product-account", "308"], + ["home-search-product-other-product-end", "2199"], + ["home-search-product-other-product-home", "560"], + ["home-search-product-other-product-other", "762"], + ["home-search-product-other-product-product", "6333"], + ["home-search-product-other-product-search", "1126"], + ["home-search-product-other-search-account", "45"], + ["home-search-product-other-search-end", "46"], + ["home-search-product-other-search-home", "20"], + ["home-search-product-other-search-other", "16"], + ["home-search-product-other-search-product", "964"], + ["home-search-product-other-search-search", "197"], + ["home-search-product-product-account-account", "15831"], + ["home-search-product-product-account-end", "4902"], + ["home-search-product-product-account-home", "1778"], + ["home-search-product-product-account-other", "1645"], + ["home-search-product-product-account-product", "20943"], + ["home-search-product-product-account-search", "2744"], + ["home-search-product-product-end", "584384"], + ["home-search-product-product-home-account", "3995"], + ["home-search-product-product-home-end", "20980"], + ["home-search-product-product-home-home", "9271"], + ["home-search-product-product-home-other", "2397"], + ["home-search-product-product-home-product", "38731"], + ["home-search-product-product-home-search", "55116"], + ["home-search-product-product-other-account", "387"], + ["home-search-product-product-other-end", "925"], + ["home-search-product-product-other-home", "421"], + ["home-search-product-product-other-other", "2727"], + ["home-search-product-product-other-product", "5317"], + ["home-search-product-product-other-search", "537"], + ["home-search-product-product-product-account", "22050"], + ["home-search-product-product-product-end", "240682"], + ["home-search-product-product-product-home", "52982"], + ["home-search-product-product-product-other", "4225"], + ["home-search-product-product-product-product", "795266"], + ["home-search-product-product-product-search", "165938"], + ["home-search-product-product-search-account", "7014"], + ["home-search-product-product-search-end", "13154"], + ["home-search-product-product-search-home", "4410"], + ["home-search-product-product-search-other", "534"], + ["home-search-product-product-search-product", "309881"], + ["home-search-product-product-search-search", "60880"], + ["home-search-product-search-account-account", "5426"], + ["home-search-product-search-account-end", "1103"], + ["home-search-product-search-account-home", "447"], + ["home-search-product-search-account-other", "494"], + ["home-search-product-search-account-product", "7448"], + ["home-search-product-search-account-search", "1526"], + ["home-search-product-search-end", "34231"], + ["home-search-product-search-home-account", "309"], + ["home-search-product-search-home-end", "1917"], + ["home-search-product-search-home-home", "1063"], + ["home-search-product-search-home-other", "151"], + ["home-search-product-search-home-product", "3074"], + ["home-search-product-search-home-search", "4780"], + ["home-search-product-search-other-account", "36"], + ["home-search-product-search-other-end", "111"], + ["home-search-product-search-other-home", "59"], + ["home-search-product-search-other-other", "293"], + ["home-search-product-search-other-product", "644"], + ["home-search-product-search-other-search", "113"], + ["home-search-product-search-product-account", "10880"], + ["home-search-product-search-product-end", "182422"], + ["home-search-product-search-product-home", "39248"], + ["home-search-product-search-product-other", "2837"], + ["home-search-product-search-product-product", "313902"], + ["home-search-product-search-product-search", "226220"], + ["home-search-product-search-search-account", "2897"], + ["home-search-product-search-search-end", "7200"], + ["home-search-product-search-search-home", "1986"], + ["home-search-product-search-search-other", "306"], + ["home-search-product-search-search-product", "102188"], + ["home-search-product-search-search-search", "36777"], + ["home-search-search-account-account-account", "4579"], + ["home-search-search-account-account-end", "1285"], + ["home-search-search-account-account-home", "673"], + ["home-search-search-account-account-other", "348"], + ["home-search-search-account-account-product", "8411"], + ["home-search-search-account-account-search", "1245"], + ["home-search-search-account-end", "2953"], + ["home-search-search-account-home-account", "126"], + ["home-search-search-account-home-end", "236"], + ["home-search-search-account-home-home", "147"], + ["home-search-search-account-home-other", "31"], + ["home-search-search-account-home-product", "384"], + ["home-search-search-account-home-search", "459"], + ["home-search-search-account-other-account", "110"], + ["home-search-search-account-other-end", "103"], + ["home-search-search-account-other-home", "55"], + ["home-search-search-account-other-other", "174"], + ["home-search-search-account-other-product", "775"], + ["home-search-search-account-other-search", "70"], + ["home-search-search-account-product-account", "2201"], + ["home-search-search-account-product-end", "3839"], + ["home-search-search-account-product-home", "1157"], + ["home-search-search-account-product-other", "128"], + ["home-search-search-account-product-product", "7226"], + ["home-search-search-account-product-search", "1583"], + ["home-search-search-account-search-account", "812"], + ["home-search-search-account-search-end", "131"], + ["home-search-search-account-search-home", "61"], + ["home-search-search-account-search-other", "14"], + ["home-search-search-account-search-product", "1250"], + ["home-search-search-account-search-search", "796"], + ["home-search-search-end", "70629"], + ["home-search-search-home-account-account", "304"], + ["home-search-search-home-account-end", "63"], + ["home-search-search-home-account-home", "66"], + ["home-search-search-home-account-other", "36"], + ["home-search-search-home-account-product", "277"], + ["home-search-search-home-account-search", "31"], + ["home-search-search-home-end", "3071"], + ["home-search-search-home-home-account", "114"], + ["home-search-search-home-home-end", "258"], + ["home-search-search-home-home-home", "289"], + ["home-search-search-home-home-other", "93"], + ["home-search-search-home-home-product", "517"], + ["home-search-search-home-home-search", "692"], + ["home-search-search-home-other-account", "14"], + ["home-search-search-home-other-end", "31"], + ["home-search-search-home-other-home", "31"], + ["home-search-search-home-other-other", "113"], + ["home-search-search-home-other-product", "137"], + ["home-search-search-home-other-search", "24"], + ["home-search-search-home-product-account", "297"], + ["home-search-search-home-product-end", "1142"], + ["home-search-search-home-product-home", "885"], + ["home-search-search-home-product-other", "46"], + ["home-search-search-home-product-product", "2179"], + ["home-search-search-home-product-search", "540"], + ["home-search-search-home-search-account", "469"], + ["home-search-search-home-search-end", "747"], + ["home-search-search-home-search-home", "385"], + ["home-search-search-home-search-other", "27"], + ["home-search-search-home-search-product", "5669"], + ["home-search-search-home-search-search", "2696"], + ["home-search-search-other-account-account", "76"], + ["home-search-search-other-account-end", "13"], + ["home-search-search-other-account-home", "8"], + ["home-search-search-other-account-other", "20"], + ["home-search-search-other-account-product", "30"], + ["home-search-search-other-account-search", "9"], + ["home-search-search-other-end", "299"], + ["home-search-search-other-home-account", "13"], + ["home-search-search-other-home-end", "26"], + ["home-search-search-other-home-home", "14"], + ["home-search-search-other-home-other", "5"], + ["home-search-search-other-home-product", "53"], + ["home-search-search-other-home-search", "49"], + ["home-search-search-other-other-account", "35"], + ["home-search-search-other-other-end", "92"], + ["home-search-search-other-other-home", "52"], + ["home-search-search-other-other-other", "343"], + ["home-search-search-other-other-product", "349"], + ["home-search-search-other-other-search", "99"], + ["home-search-search-other-product-account", "60"], + ["home-search-search-other-product-end", "360"], + ["home-search-search-other-product-home", "92"], + ["home-search-search-other-product-other", "102"], + ["home-search-search-other-product-product", "715"], + ["home-search-search-other-product-search", "208"], + ["home-search-search-other-search-account", "16"], + ["home-search-search-other-search-end", "21"], + ["home-search-search-other-search-home", "7"], + ["home-search-search-other-search-other", "20"], + ["home-search-search-other-search-product", "169"], + ["home-search-search-other-search-search", "106"], + ["home-search-search-product-account-account", "5951"], + ["home-search-search-product-account-end", "1884"], + ["home-search-search-product-account-home", "631"], + ["home-search-search-product-account-other", "595"], + ["home-search-search-product-account-product", "7219"], + ["home-search-search-product-account-search", "1241"], + ["home-search-search-product-end", "199938"], + ["home-search-search-product-home-account", "1359"], + ["home-search-search-product-home-end", "6650"], + ["home-search-search-product-home-home", "3011"], + ["home-search-search-product-home-other", "830"], + ["home-search-search-product-home-product", "10987"], + ["home-search-search-product-home-search", "20511"], + ["home-search-search-product-other-account", "126"], + ["home-search-search-product-other-end", "258"], + ["home-search-search-product-other-home", "140"], + ["home-search-search-product-other-other", "799"], + ["home-search-search-product-other-product", "1349"], + ["home-search-search-product-other-search", "186"], + ["home-search-search-product-product-account", "7991"], + ["home-search-search-product-product-end", "81752"], + ["home-search-search-product-product-home", "18896"], + ["home-search-search-product-product-other", "1364"], + ["home-search-search-product-product-product", "183221"], + ["home-search-search-product-product-search", "63903"], + ["home-search-search-product-search-account", "2896"], + ["home-search-search-product-search-end", "7340"], + ["home-search-search-product-search-home", "1992"], + ["home-search-search-product-search-other", "262"], + ["home-search-search-product-search-product", "112789"], + ["home-search-search-product-search-search", "33806"], + ["home-search-search-search-account-account", "4446"], + ["home-search-search-search-account-end", "724"], + ["home-search-search-search-account-home", "361"], + ["home-search-search-search-account-other", "306"], + ["home-search-search-search-account-product", "3804"], + ["home-search-search-search-account-search", "860"], + ["home-search-search-search-end", "23115"], + ["home-search-search-search-home-account", "236"], + ["home-search-search-search-home-end", "1013"], + ["home-search-search-search-home-home", "684"], + ["home-search-search-search-home-other", "126"], + ["home-search-search-search-home-product", "1595"], + ["home-search-search-search-home-search", "3402"], + ["home-search-search-search-other-account", "61"], + ["home-search-search-search-other-end", "83"], + ["home-search-search-search-other-home", "51"], + ["home-search-search-search-other-other", "315"], + ["home-search-search-search-other-product", "435"], + ["home-search-search-search-other-search", "115"], + ["home-search-search-search-product-account", "4339"], + ["home-search-search-search-product-end", "39568"], + ["home-search-search-search-product-home", "9015"], + ["home-search-search-search-product-other", "614"], + ["home-search-search-search-product-product", "74347"], + ["home-search-search-search-product-search", "37258"], + ["home-search-search-search-search-account", "3418"], + ["home-search-search-search-search-end", "8408"], + ["home-search-search-search-search-home", "2651"], + ["home-search-search-search-search-other", "434"], + ["home-search-search-search-search-product", "48667"], + ["home-search-search-search-search-search", "41565"], + ["other-account-account-account-account-account", "1061"], + ["other-account-account-account-account-end", "219"], + ["other-account-account-account-account-home", "58"], + ["other-account-account-account-account-other", "161"], + ["other-account-account-account-account-product", "335"], + ["other-account-account-account-account-search", "40"], + ["other-account-account-account-end", "407"], + ["other-account-account-account-home-account", "15"], + ["other-account-account-account-home-end", "28"], + ["other-account-account-account-home-home", "9"], + ["other-account-account-account-home-other", "12"], + ["other-account-account-account-home-product", "36"], + ["other-account-account-account-home-search", "12"], + ["other-account-account-account-other-account", "81"], + ["other-account-account-account-other-end", "73"], + ["other-account-account-account-other-home", "16"], + ["other-account-account-account-other-other", "143"], + ["other-account-account-account-other-product", "195"], + ["other-account-account-account-other-search", "12"], + ["other-account-account-account-product-account", "175"], + ["other-account-account-account-product-end", "188"], + ["other-account-account-account-product-home", "29"], + ["other-account-account-account-product-other", "75"], + ["other-account-account-account-product-product", "319"], + ["other-account-account-account-product-search", "32"], + ["other-account-account-account-search-account", "23"], + ["other-account-account-account-search-end", "2"], + ["other-account-account-account-search-home", "1"], + ["other-account-account-account-search-other", "4"], + ["other-account-account-account-search-product", "30"], + ["other-account-account-account-search-search", "17"], + ["other-account-account-end", "1128"], + ["other-account-account-home-account-account", "27"], + ["other-account-account-home-account-end", "5"], + ["other-account-account-home-account-home", "6"], + ["other-account-account-home-account-other", "3"], + ["other-account-account-home-account-product", "14"], + ["other-account-account-home-account-search", "1"], + ["other-account-account-home-end", "74"], + ["other-account-account-home-home-account", "5"], + ["other-account-account-home-home-end", "7"], + ["other-account-account-home-home-home", "5"], + ["other-account-account-home-home-other", "6"], + ["other-account-account-home-home-product", "10"], + ["other-account-account-home-home-search", "3"], + ["other-account-account-home-other-account", "3"], + ["other-account-account-home-other-end", "4"], + ["other-account-account-home-other-home", "4"], + ["other-account-account-home-other-other", "9"], + ["other-account-account-home-other-product", "9"], + ["other-account-account-home-product-account", "19"], + ["other-account-account-home-product-end", "22"], + ["other-account-account-home-product-home", "19"], + ["other-account-account-home-product-other", "6"], + ["other-account-account-home-product-product", "41"], + ["other-account-account-home-product-search", "5"], + ["other-account-account-home-search-account", "6"], + ["other-account-account-home-search-end", "1"], + ["other-account-account-home-search-home", "1"], + ["other-account-account-home-search-product", "9"], + ["other-account-account-home-search-search", "2"], + ["other-account-account-other-account-account", "66"], + ["other-account-account-other-account-end", "9"], + ["other-account-account-other-account-home", "8"], + ["other-account-account-other-account-other", "22"], + ["other-account-account-other-account-product", "25"], + ["other-account-account-other-account-search", "3"], + ["other-account-account-other-end", "166"], + ["other-account-account-other-home-account", "4"], + ["other-account-account-other-home-end", "8"], + ["other-account-account-other-home-home", "5"], + ["other-account-account-other-home-other", "5"], + ["other-account-account-other-home-product", "6"], + ["other-account-account-other-home-search", "5"], + ["other-account-account-other-other-account", "47"], + ["other-account-account-other-other-end", "56"], + ["other-account-account-other-other-home", "12"], + ["other-account-account-other-other-other", "114"], + ["other-account-account-other-other-product", "65"], + ["other-account-account-other-other-search", "11"], + ["other-account-account-other-product-account", "32"], + ["other-account-account-other-product-end", "66"], + ["other-account-account-other-product-home", "3"], + ["other-account-account-other-product-other", "35"], + ["other-account-account-other-product-product", "117"], + ["other-account-account-other-product-search", "10"], + ["other-account-account-other-search-account", "8"], + ["other-account-account-other-search-end", "1"], + ["other-account-account-other-search-product", "11"], + ["other-account-account-other-search-search", "2"], + ["other-account-account-product-account-account", "287"], + ["other-account-account-product-account-end", "49"], + ["other-account-account-product-account-home", "9"], + ["other-account-account-product-account-other", "34"], + ["other-account-account-product-account-product", "182"], + ["other-account-account-product-account-search", "6"], + ["other-account-account-product-end", "766"], + ["other-account-account-product-home-account", "18"], + ["other-account-account-product-home-end", "25"], + ["other-account-account-product-home-home", "9"], + ["other-account-account-product-home-other", "14"], + ["other-account-account-product-home-product", "52"], + ["other-account-account-product-home-search", "10"], + ["other-account-account-product-other-account", "49"], + ["other-account-account-product-other-end", "42"], + ["other-account-account-product-other-home", "10"], + ["other-account-account-product-other-other", "89"], + ["other-account-account-product-other-product", "101"], + ["other-account-account-product-other-search", "16"], + ["other-account-account-product-product-account", "134"], + ["other-account-account-product-product-end", "249"], + ["other-account-account-product-product-home", "32"], + ["other-account-account-product-product-other", "97"], + ["other-account-account-product-product-product", "566"], + ["other-account-account-product-product-search", "38"], + ["other-account-account-product-search-account", "21"], + ["other-account-account-product-search-home", "1"], + ["other-account-account-product-search-other", "2"], + ["other-account-account-product-search-product", "50"], + ["other-account-account-product-search-search", "15"], + ["other-account-account-search-account-account", "27"], + ["other-account-account-search-account-end", "8"], + ["other-account-account-search-account-home", "2"], + ["other-account-account-search-account-other", "3"], + ["other-account-account-search-account-product", "8"], + ["other-account-account-search-account-search", "7"], + ["other-account-account-search-end", "11"], + ["other-account-account-search-home-end", "2"], + ["other-account-account-search-home-home", "1"], + ["other-account-account-search-home-search", "2"], + ["other-account-account-search-other-search", "1"], + ["other-account-account-search-product-account", "18"], + ["other-account-account-search-product-end", "13"], + ["other-account-account-search-product-home", "1"], + ["other-account-account-search-product-other", "4"], + ["other-account-account-search-product-product", "33"], + ["other-account-account-search-product-search", "22"], + ["other-account-account-search-search-account", "5"], + ["other-account-account-search-search-end", "3"], + ["other-account-account-search-search-home", "1"], + ["other-account-account-search-search-product", "17"], + ["other-account-account-search-search-search", "12"], + ["other-account-end", "3788"], + ["other-account-home-account-account-account", "21"], + ["other-account-home-account-account-end", "4"], + ["other-account-home-account-account-home", "2"], + ["other-account-home-account-account-other", "3"], + ["other-account-home-account-account-product", "16"], + ["other-account-home-account-account-search", "2"], + ["other-account-home-account-end", "14"], + ["other-account-home-account-home-account", "4"], + ["other-account-home-account-home-end", "3"], + ["other-account-home-account-home-home", "2"], + ["other-account-home-account-home-other", "1"], + ["other-account-home-account-home-product", "4"], + ["other-account-home-account-home-search", "1"], + ["other-account-home-account-other-home", "1"], + ["other-account-home-account-other-other", "4"], + ["other-account-home-account-other-product", "2"], + ["other-account-home-account-product-account", "3"], + ["other-account-home-account-product-end", "6"], + ["other-account-home-account-product-home", "2"], + ["other-account-home-account-product-other", "2"], + ["other-account-home-account-product-product", "8"], + ["other-account-home-account-search-account", "1"], + ["other-account-home-account-search-product", "2"], + ["other-account-home-account-search-search", "1"], + ["other-account-home-end", "218"], + ["other-account-home-home-account-account", "3"], + ["other-account-home-home-account-other", "3"], + ["other-account-home-home-account-product", "4"], + ["other-account-home-home-end", "16"], + ["other-account-home-home-home-end", "1"], + ["other-account-home-home-home-home", "2"], + ["other-account-home-home-home-other", "1"], + ["other-account-home-home-home-product", "2"], + ["other-account-home-home-home-search", "1"], + ["other-account-home-home-other-account", "5"], + ["other-account-home-home-other-home", "1"], + ["other-account-home-home-other-other", "8"], + ["other-account-home-home-other-product", "3"], + ["other-account-home-home-other-search", "1"], + ["other-account-home-home-product-account", "4"], + ["other-account-home-home-product-end", "3"], + ["other-account-home-home-product-home", "4"], + ["other-account-home-home-product-other", "1"], + ["other-account-home-home-product-product", "13"], + ["other-account-home-home-product-search", "1"], + ["other-account-home-home-search-account", "4"], + ["other-account-home-home-search-end", "1"], + ["other-account-home-home-search-product", "4"], + ["other-account-home-home-search-search", "1"], + ["other-account-home-other-account-account", "5"], + ["other-account-home-other-account-end", "1"], + ["other-account-home-other-account-home", "2"], + ["other-account-home-other-account-other", "6"], + ["other-account-home-other-account-product", "4"], + ["other-account-home-other-end", "15"], + ["other-account-home-other-home-account", "5"], + ["other-account-home-other-home-end", "3"], + ["other-account-home-other-home-product", "1"], + ["other-account-home-other-other-account", "5"], + ["other-account-home-other-other-end", "5"], + ["other-account-home-other-other-home", "3"], + ["other-account-home-other-other-other", "11"], + ["other-account-home-other-other-product", "8"], + ["other-account-home-other-product-account", "1"], + ["other-account-home-other-product-end", "3"], + ["other-account-home-other-product-home", "3"], + ["other-account-home-other-product-other", "3"], + ["other-account-home-other-product-product", "5"], + ["other-account-home-other-product-search", "1"], + ["other-account-home-other-search-product", "2"], + ["other-account-home-product-account-account", "20"], + ["other-account-home-product-account-end", "5"], + ["other-account-home-product-account-home", "6"], + ["other-account-home-product-account-other", "2"], + ["other-account-home-product-account-product", "18"], + ["other-account-home-product-account-search", "1"], + ["other-account-home-product-end", "75"], + ["other-account-home-product-home-account", "7"], + ["other-account-home-product-home-end", "15"], + ["other-account-home-product-home-home", "7"], + ["other-account-home-product-home-other", "6"], + ["other-account-home-product-home-product", "30"], + ["other-account-home-product-home-search", "2"], + ["other-account-home-product-other-account", "6"], + ["other-account-home-product-other-end", "4"], + ["other-account-home-product-other-home", "3"], + ["other-account-home-product-other-other", "8"], + ["other-account-home-product-other-product", "9"], + ["other-account-home-product-product-account", "10"], + ["other-account-home-product-product-end", "30"], + ["other-account-home-product-product-home", "17"], + ["other-account-home-product-product-other", "2"], + ["other-account-home-product-product-product", "60"], + ["other-account-home-product-product-search", "2"], + ["other-account-home-product-search-account", "3"], + ["other-account-home-product-search-product", "12"], + ["other-account-home-product-search-search", "4"], + ["other-account-home-search-account-account", "4"], + ["other-account-home-search-account-end", "1"], + ["other-account-home-search-account-product", "5"], + ["other-account-home-search-account-search", "1"], + ["other-account-home-search-end", "3"], + ["other-account-home-search-home-account", "1"], + ["other-account-home-search-home-end", "1"], + ["other-account-home-search-home-home", "1"], + ["other-account-home-search-home-product", "1"], + ["other-account-home-search-home-search", "1"], + ["other-account-home-search-product-account", "4"], + ["other-account-home-search-product-end", "24"], + ["other-account-home-search-product-home", "5"], + ["other-account-home-search-product-other", "2"], + ["other-account-home-search-product-product", "24"], + ["other-account-home-search-product-search", "10"], + ["other-account-home-search-search-account", "3"], + ["other-account-home-search-search-end", "3"], + ["other-account-home-search-search-product", "8"], + ["other-account-home-search-search-search", "1"], + ["other-account-other-account-account-account", "75"], + ["other-account-other-account-account-end", "14"], + ["other-account-other-account-account-home", "6"], + ["other-account-other-account-account-other", "18"], + ["other-account-other-account-account-product", "42"], + ["other-account-other-account-account-search", "8"], + ["other-account-other-account-end", "66"], + ["other-account-other-account-home-account", "2"], + ["other-account-other-account-home-end", "3"], + ["other-account-other-account-home-other", "2"], + ["other-account-other-account-home-product", "6"], + ["other-account-other-account-home-search", "2"], + ["other-account-other-account-other-account", "59"], + ["other-account-other-account-other-end", "31"], + ["other-account-other-account-other-home", "5"], + ["other-account-other-account-other-other", "42"], + ["other-account-other-account-other-product", "19"], + ["other-account-other-account-other-search", "5"], + ["other-account-other-account-product-account", "15"], + ["other-account-other-account-product-end", "30"], + ["other-account-other-account-product-home", "2"], + ["other-account-other-account-product-other", "19"], + ["other-account-other-account-product-product", "40"], + ["other-account-other-account-product-search", "4"], + ["other-account-other-account-search-account", "5"], + ["other-account-other-account-search-end", "1"], + ["other-account-other-account-search-product", "7"], + ["other-account-other-end", "483"], + ["other-account-other-home-account-account", "11"], + ["other-account-other-home-account-end", "2"], + ["other-account-other-home-account-home", "2"], + ["other-account-other-home-account-other", "3"], + ["other-account-other-home-account-product", "3"], + ["other-account-other-home-end", "29"], + ["other-account-other-home-home-other", "2"], + ["other-account-other-home-home-product", "4"], + ["other-account-other-home-other-end", "3"], + ["other-account-other-home-other-home", "1"], + ["other-account-other-home-other-other", "9"], + ["other-account-other-home-product-account", "4"], + ["other-account-other-home-product-end", "5"], + ["other-account-other-home-product-home", "4"], + ["other-account-other-home-product-other", "1"], + ["other-account-other-home-product-product", "14"], + ["other-account-other-home-search-account", "1"], + ["other-account-other-home-search-product", "7"], + ["other-account-other-home-search-search", "3"], + ["other-account-other-other-account-account", "52"], + ["other-account-other-other-account-end", "26"], + ["other-account-other-other-account-home", "6"], + ["other-account-other-other-account-other", "48"], + ["other-account-other-other-account-product", "23"], + ["other-account-other-other-account-search", "11"], + ["other-account-other-other-end", "315"], + ["other-account-other-other-home-account", "7"], + ["other-account-other-other-home-end", "9"], + ["other-account-other-other-home-home", "4"], + ["other-account-other-other-home-other", "6"], + ["other-account-other-other-home-product", "25"], + ["other-account-other-other-home-search", "5"], + ["other-account-other-other-other-account", "63"], + ["other-account-other-other-other-end", "72"], + ["other-account-other-other-other-home", "21"], + ["other-account-other-other-other-other", "188"], + ["other-account-other-other-other-product", "76"], + ["other-account-other-other-other-search", "8"], + ["other-account-other-other-product-account", "33"], + ["other-account-other-other-product-end", "57"], + ["other-account-other-other-product-home", "9"], + ["other-account-other-other-product-other", "43"], + ["other-account-other-other-product-product", "81"], + ["other-account-other-other-product-search", "11"], + ["other-account-other-other-search-account", "15"], + ["other-account-other-other-search-end", "2"], + ["other-account-other-other-search-other", "2"], + ["other-account-other-other-search-product", "20"], + ["other-account-other-other-search-search", "3"], + ["other-account-other-product-account-account", "43"], + ["other-account-other-product-account-end", "15"], + ["other-account-other-product-account-home", "2"], + ["other-account-other-product-account-other", "18"], + ["other-account-other-product-account-product", "22"], + ["other-account-other-product-account-search", "3"], + ["other-account-other-product-end", "225"], + ["other-account-other-product-home-account", "3"], + ["other-account-other-product-home-end", "6"], + ["other-account-other-product-home-home", "3"], + ["other-account-other-product-home-other", "3"], + ["other-account-other-product-home-product", "4"], + ["other-account-other-product-home-search", "1"], + ["other-account-other-product-other-account", "16"], + ["other-account-other-product-other-end", "20"], + ["other-account-other-product-other-home", "2"], + ["other-account-other-product-other-other", "29"], + ["other-account-other-product-other-product", "57"], + ["other-account-other-product-other-search", "5"], + ["other-account-other-product-product-account", "29"], + ["other-account-other-product-product-end", "63"], + ["other-account-other-product-product-home", "11"], + ["other-account-other-product-product-other", "22"], + ["other-account-other-product-product-product", "173"], + ["other-account-other-product-product-search", "3"], + ["other-account-other-product-search-account", "4"], + ["other-account-other-product-search-end", "2"], + ["other-account-other-product-search-product", "7"], + ["other-account-other-product-search-search", "4"], + ["other-account-other-search-account-account", "7"], + ["other-account-other-search-account-home", "1"], + ["other-account-other-search-account-other", "1"], + ["other-account-other-search-account-product", "8"], + ["other-account-other-search-account-search", "1"], + ["other-account-other-search-end", "3"], + ["other-account-other-search-other-other", "1"], + ["other-account-other-search-product-account", "10"], + ["other-account-other-search-product-end", "9"], + ["other-account-other-search-product-home", "1"], + ["other-account-other-search-product-other", "4"], + ["other-account-other-search-product-product", "19"], + ["other-account-other-search-product-search", "7"], + ["other-account-other-search-search-account", "3"], + ["other-account-other-search-search-end", "1"], + ["other-account-other-search-search-other", "1"], + ["other-account-other-search-search-product", "7"], + ["other-account-other-search-search-search", "2"], + ["other-account-product-account-account-account", "145"], + ["other-account-product-account-account-end", "37"], + ["other-account-product-account-account-home", "8"], + ["other-account-product-account-account-other", "26"], + ["other-account-product-account-account-product", "164"], + ["other-account-product-account-account-search", "10"], + ["other-account-product-account-end", "113"], + ["other-account-product-account-home-account", "1"], + ["other-account-product-account-home-end", "5"], + ["other-account-product-account-home-home", "2"], + ["other-account-product-account-home-other", "3"], + ["other-account-product-account-home-product", "8"], + ["other-account-product-account-home-search", "3"], + ["other-account-product-account-other-account", "13"], + ["other-account-product-account-other-end", "8"], + ["other-account-product-account-other-home", "6"], + ["other-account-product-account-other-other", "31"], + ["other-account-product-account-other-product", "33"], + ["other-account-product-account-other-search", "1"], + ["other-account-product-account-product-account", "135"], + ["other-account-product-account-product-end", "63"], + ["other-account-product-account-product-home", "13"], + ["other-account-product-account-product-other", "34"], + ["other-account-product-account-product-product", "154"], + ["other-account-product-account-product-search", "18"], + ["other-account-product-account-search-account", "6"], + ["other-account-product-account-search-product", "11"], + ["other-account-product-account-search-search", "2"], + ["other-account-product-end", "1488"], + ["other-account-product-home-account-account", "11"], + ["other-account-product-home-account-end", "2"], + ["other-account-product-home-account-home", "3"], + ["other-account-product-home-account-product", "7"], + ["other-account-product-home-account-search", "1"], + ["other-account-product-home-end", "43"], + ["other-account-product-home-home-account", "3"], + ["other-account-product-home-home-end", "4"], + ["other-account-product-home-home-home", "2"], + ["other-account-product-home-home-other", "6"], + ["other-account-product-home-home-product", "5"], + ["other-account-product-home-home-search", "2"], + ["other-account-product-home-other-account", "5"], + ["other-account-product-home-other-home", "4"], + ["other-account-product-home-other-other", "4"], + ["other-account-product-home-other-product", "5"], + ["other-account-product-home-other-search", "2"], + ["other-account-product-home-product-account", "14"], + ["other-account-product-home-product-end", "24"], + ["other-account-product-home-product-home", "22"], + ["other-account-product-home-product-other", "5"], + ["other-account-product-home-product-product", "30"], + ["other-account-product-home-product-search", "4"], + ["other-account-product-home-search-account", "1"], + ["other-account-product-home-search-product", "16"], + ["other-account-product-home-search-search", "4"], + ["other-account-product-other-account-account", "33"], + ["other-account-product-other-account-end", "15"], + ["other-account-product-other-account-home", "3"], + ["other-account-product-other-account-other", "19"], + ["other-account-product-other-account-product", "38"], + ["other-account-product-other-account-search", "4"], + ["other-account-product-other-end", "87"], + ["other-account-product-other-home-account", "4"], + ["other-account-product-other-home-end", "3"], + ["other-account-product-other-home-home", "1"], + ["other-account-product-other-home-other", "1"], + ["other-account-product-other-home-product", "6"], + ["other-account-product-other-home-search", "1"], + ["other-account-product-other-other-account", "23"], + ["other-account-product-other-other-end", "15"], + ["other-account-product-other-other-home", "6"], + ["other-account-product-other-other-other", "51"], + ["other-account-product-other-other-product", "41"], + ["other-account-product-other-other-search", "4"], + ["other-account-product-other-product-account", "14"], + ["other-account-product-other-product-end", "38"], + ["other-account-product-other-product-home", "4"], + ["other-account-product-other-product-other", "39"], + ["other-account-product-other-product-product", "55"], + ["other-account-product-other-product-search", "4"], + ["other-account-product-other-search-account", "3"], + ["other-account-product-other-search-end", "1"], + ["other-account-product-other-search-product", "19"], + ["other-account-product-other-search-search", "3"], + ["other-account-product-product-account-account", "92"], + ["other-account-product-product-account-end", "34"], + ["other-account-product-product-account-home", "6"], + ["other-account-product-product-account-other", "21"], + ["other-account-product-product-account-product", "102"], + ["other-account-product-product-account-search", "6"], + ["other-account-product-product-end", "439"], + ["other-account-product-product-home-account", "4"], + ["other-account-product-product-home-end", "9"], + ["other-account-product-product-home-home", "8"], + ["other-account-product-product-home-other", "2"], + ["other-account-product-product-home-product", "22"], + ["other-account-product-product-home-search", "15"], + ["other-account-product-product-other-account", "23"], + ["other-account-product-product-other-end", "34"], + ["other-account-product-product-other-home", "7"], + ["other-account-product-product-other-other", "50"], + ["other-account-product-product-other-product", "40"], + ["other-account-product-product-other-search", "8"], + ["other-account-product-product-product-account", "101"], + ["other-account-product-product-product-end", "207"], + ["other-account-product-product-product-home", "21"], + ["other-account-product-product-product-other", "43"], + ["other-account-product-product-product-product", "642"], + ["other-account-product-product-product-search", "31"], + ["other-account-product-product-search-account", "5"], + ["other-account-product-product-search-end", "5"], + ["other-account-product-product-search-other", "1"], + ["other-account-product-product-search-product", "53"], + ["other-account-product-product-search-search", "16"], + ["other-account-product-search-account-account", "19"], + ["other-account-product-search-account-other", "2"], + ["other-account-product-search-account-product", "12"], + ["other-account-product-search-account-search", "1"], + ["other-account-product-search-end", "14"], + ["other-account-product-search-home-product", "3"], + ["other-account-product-search-product-account", "10"], + ["other-account-product-search-product-end", "36"], + ["other-account-product-search-product-home", "3"], + ["other-account-product-search-product-other", "7"], + ["other-account-product-search-product-product", "58"], + ["other-account-product-search-product-search", "15"], + ["other-account-product-search-search-account", "6"], + ["other-account-product-search-search-end", "2"], + ["other-account-product-search-search-other", "1"], + ["other-account-product-search-search-product", "18"], + ["other-account-product-search-search-search", "4"], + ["other-account-search-account-account-account", "30"], + ["other-account-search-account-account-end", "9"], + ["other-account-search-account-account-home", "2"], + ["other-account-search-account-account-other", "5"], + ["other-account-search-account-account-product", "35"], + ["other-account-search-account-end", "13"], + ["other-account-search-account-home-account", "2"], + ["other-account-search-account-home-home", "1"], + ["other-account-search-account-home-product", "2"], + ["other-account-search-account-home-search", "1"], + ["other-account-search-account-other-account", "1"], + ["other-account-search-account-other-end", "3"], + ["other-account-search-account-other-other", "3"], + ["other-account-search-account-other-product", "3"], + ["other-account-search-account-other-search", "1"], + ["other-account-search-account-product-account", "14"], + ["other-account-search-account-product-end", "7"], + ["other-account-search-account-product-home", "1"], + ["other-account-search-account-product-other", "4"], + ["other-account-search-account-product-product", "18"], + ["other-account-search-account-product-search", "2"], + ["other-account-search-account-search-account", "3"], + ["other-account-search-account-search-product", "3"], + ["other-account-search-account-search-search", "1"], + ["other-account-search-end", "26"], + ["other-account-search-home-home-home", "1"], + ["other-account-search-home-home-other", "1"], + ["other-account-search-home-home-search", "1"], + ["other-account-search-home-search-product", "1"], + ["other-account-search-other-account-end", "1"], + ["other-account-search-other-end", "1"], + ["other-account-search-other-home-product", "1"], + ["other-account-search-other-other-account", "1"], + ["other-account-search-other-other-other", "2"], + ["other-account-search-other-other-product", "1"], + ["other-account-search-other-product-end", "1"], + ["other-account-search-other-product-product", "1"], + ["other-account-search-other-product-search", "1"], + ["other-account-search-other-search-account", "1"], + ["other-account-search-other-search-product", "2"], + ["other-account-search-product-account-account", "14"], + ["other-account-search-product-account-end", "4"], + ["other-account-search-product-account-home", "2"], + ["other-account-search-product-account-other", "6"], + ["other-account-search-product-account-product", "10"], + ["other-account-search-product-end", "76"], + ["other-account-search-product-home-end", "2"], + ["other-account-search-product-home-home", "1"], + ["other-account-search-product-home-search", "3"], + ["other-account-search-product-other-account", "1"], + ["other-account-search-product-other-end", "3"], + ["other-account-search-product-other-home", "1"], + ["other-account-search-product-other-other", "2"], + ["other-account-search-product-other-product", "6"], + ["other-account-search-product-other-search", "2"], + ["other-account-search-product-product-account", "8"], + ["other-account-search-product-product-end", "31"], + ["other-account-search-product-product-home", "1"], + ["other-account-search-product-product-other", "7"], + ["other-account-search-product-product-product", "79"], + ["other-account-search-product-product-search", "19"], + ["other-account-search-product-search-account", "3"], + ["other-account-search-product-search-end", "2"], + ["other-account-search-product-search-product", "42"], + ["other-account-search-product-search-search", "7"], + ["other-account-search-search-account-account", "15"], + ["other-account-search-search-account-end", "2"], + ["other-account-search-search-account-home", "1"], + ["other-account-search-search-account-product", "3"], + ["other-account-search-search-account-search", "1"], + ["other-account-search-search-end", "7"], + ["other-account-search-search-home-account", "1"], + ["other-account-search-search-other-account", "1"], + ["other-account-search-search-product-account", "6"], + ["other-account-search-search-product-end", "7"], + ["other-account-search-search-product-home", "4"], + ["other-account-search-search-product-other", "2"], + ["other-account-search-search-product-product", "22"], + ["other-account-search-search-product-search", "6"], + ["other-account-search-search-search-account", "4"], + ["other-account-search-search-search-end", "2"], + ["other-account-search-search-search-home", "1"], + ["other-account-search-search-search-product", "12"], + ["other-account-search-search-search-search", "10"], + ["other-end", "159823"], + ["other-home-account-account-account-account", "136"], + ["other-home-account-account-account-end", "27"], + ["other-home-account-account-account-home", "23"], + ["other-home-account-account-account-other", "23"], + ["other-home-account-account-account-product", "69"], + ["other-home-account-account-account-search", "3"], + ["other-home-account-account-end", "65"], + ["other-home-account-account-home-account", "15"], + ["other-home-account-account-home-end", "13"], + ["other-home-account-account-home-home", "5"], + ["other-home-account-account-home-other", "3"], + ["other-home-account-account-home-product", "16"], + ["other-home-account-account-home-search", "4"], + ["other-home-account-account-other-account", "4"], + ["other-home-account-account-other-end", "7"], + ["other-home-account-account-other-home", "9"], + ["other-home-account-account-other-other", "15"], + ["other-home-account-account-other-product", "15"], + ["other-home-account-account-other-search", "1"], + ["other-home-account-account-product-account", "65"], + ["other-home-account-account-product-end", "87"], + ["other-home-account-account-product-home", "29"], + ["other-home-account-account-product-other", "22"], + ["other-home-account-account-product-product", "130"], + ["other-home-account-account-product-search", "11"], + ["other-home-account-account-search-account", "4"], + ["other-home-account-account-search-end", "2"], + ["other-home-account-account-search-product", "3"], + ["other-home-account-account-search-search", "2"], + ["other-home-account-end", "176"], + ["other-home-account-home-account-account", "8"], + ["other-home-account-home-account-end", "4"], + ["other-home-account-home-account-home", "24"], + ["other-home-account-home-account-other", "2"], + ["other-home-account-home-account-product", "3"], + ["other-home-account-home-account-search", "1"], + ["other-home-account-home-end", "47"], + ["other-home-account-home-home-account", "5"], + ["other-home-account-home-home-end", "6"], + ["other-home-account-home-home-home", "6"], + ["other-home-account-home-home-other", "2"], + ["other-home-account-home-home-product", "8"], + ["other-home-account-home-other-account", "1"], + ["other-home-account-home-other-home", "9"], + ["other-home-account-home-other-other", "3"], + ["other-home-account-home-other-product", "2"], + ["other-home-account-home-product-account", "5"], + ["other-home-account-home-product-end", "5"], + ["other-home-account-home-product-home", "17"], + ["other-home-account-home-product-other", "3"], + ["other-home-account-home-product-product", "23"], + ["other-home-account-home-product-search", "4"], + ["other-home-account-home-search-account", "3"], + ["other-home-account-home-search-end", "1"], + ["other-home-account-home-search-home", "2"], + ["other-home-account-home-search-product", "10"], + ["other-home-account-other-account-account", "7"], + ["other-home-account-other-account-end", "4"], + ["other-home-account-other-account-other", "1"], + ["other-home-account-other-account-product", "2"], + ["other-home-account-other-end", "10"], + ["other-home-account-other-home-account", "3"], + ["other-home-account-other-home-end", "5"], + ["other-home-account-other-home-home", "1"], + ["other-home-account-other-home-other", "3"], + ["other-home-account-other-home-product", "10"], + ["other-home-account-other-home-search", "1"], + ["other-home-account-other-other-account", "10"], + ["other-home-account-other-other-end", "7"], + ["other-home-account-other-other-home", "9"], + ["other-home-account-other-other-other", "20"], + ["other-home-account-other-other-product", "17"], + ["other-home-account-other-other-search", "1"], + ["other-home-account-other-product-end", "6"], + ["other-home-account-other-product-home", "1"], + ["other-home-account-other-product-other", "8"], + ["other-home-account-other-product-product", "24"], + ["other-home-account-other-product-search", "4"], + ["other-home-account-other-search-account", "1"], + ["other-home-account-other-search-product", "3"], + ["other-home-account-product-account-account", "26"], + ["other-home-account-product-account-end", "9"], + ["other-home-account-product-account-home", "5"], + ["other-home-account-product-account-other", "7"], + ["other-home-account-product-account-product", "51"], + ["other-home-account-product-account-search", "2"], + ["other-home-account-product-end", "144"], + ["other-home-account-product-home-account", "14"], + ["other-home-account-product-home-end", "17"], + ["other-home-account-product-home-home", "2"], + ["other-home-account-product-home-other", "7"], + ["other-home-account-product-home-product", "34"], + ["other-home-account-product-home-search", "5"], + ["other-home-account-product-other-account", "2"], + ["other-home-account-product-other-end", "2"], + ["other-home-account-product-other-home", "8"], + ["other-home-account-product-other-other", "11"], + ["other-home-account-product-other-product", "6"], + ["other-home-account-product-other-search", "4"], + ["other-home-account-product-product-account", "33"], + ["other-home-account-product-product-end", "39"], + ["other-home-account-product-product-home", "25"], + ["other-home-account-product-product-other", "11"], + ["other-home-account-product-product-product", "90"], + ["other-home-account-product-product-search", "10"], + ["other-home-account-product-search-account", "1"], + ["other-home-account-product-search-product", "18"], + ["other-home-account-product-search-search", "5"], + ["other-home-account-search-account-account", "5"], + ["other-home-account-search-account-home", "1"], + ["other-home-account-search-account-product", "4"], + ["other-home-account-search-end", "2"], + ["other-home-account-search-other-account", "1"], + ["other-home-account-search-product-account", "2"], + ["other-home-account-search-product-end", "1"], + ["other-home-account-search-product-home", "1"], + ["other-home-account-search-product-product", "6"], + ["other-home-account-search-product-search", "6"], + ["other-home-account-search-search-end", "2"], + ["other-home-account-search-search-home", "1"], + ["other-home-account-search-search-product", "6"], + ["other-home-account-search-search-search", "1"], + ["other-home-end", "6728"], + ["other-home-home-account-account-account", "35"], + ["other-home-home-account-account-end", "2"], + ["other-home-home-account-account-home", "8"], + ["other-home-home-account-account-other", "5"], + ["other-home-home-account-account-product", "31"], + ["other-home-home-account-account-search", "1"], + ["other-home-home-account-end", "16"], + ["other-home-home-account-home-account", "4"], + ["other-home-home-account-home-end", "3"], + ["other-home-home-account-home-home", "9"], + ["other-home-home-account-home-other", "4"], + ["other-home-home-account-home-product", "6"], + ["other-home-home-account-other-account", "2"], + ["other-home-home-account-other-end", "1"], + ["other-home-home-account-other-home", "4"], + ["other-home-home-account-other-other", "9"], + ["other-home-home-account-other-product", "4"], + ["other-home-home-account-product-account", "8"], + ["other-home-home-account-product-end", "8"], + ["other-home-home-account-product-home", "11"], + ["other-home-home-account-product-other", "2"], + ["other-home-home-account-product-product", "10"], + ["other-home-home-account-product-search", "4"], + ["other-home-home-account-search-account", "1"], + ["other-home-home-account-search-product", "5"], + ["other-home-home-account-search-search", "1"], + ["other-home-home-end", "462"], + ["other-home-home-home-account-account", "13"], + ["other-home-home-home-account-home", "10"], + ["other-home-home-home-account-other", "4"], + ["other-home-home-home-account-product", "7"], + ["other-home-home-home-end", "60"], + ["other-home-home-home-home-account", "15"], + ["other-home-home-home-home-end", "28"], + ["other-home-home-home-home-home", "61"], + ["other-home-home-home-home-other", "19"], + ["other-home-home-home-home-product", "33"], + ["other-home-home-home-home-search", "6"], + ["other-home-home-home-other-account", "5"], + ["other-home-home-home-other-end", "7"], + ["other-home-home-home-other-home", "16"], + ["other-home-home-home-other-other", "19"], + ["other-home-home-home-other-product", "9"], + ["other-home-home-home-other-search", "1"], + ["other-home-home-home-product-account", "5"], + ["other-home-home-home-product-end", "15"], + ["other-home-home-home-product-home", "46"], + ["other-home-home-home-product-other", "7"], + ["other-home-home-home-product-product", "26"], + ["other-home-home-home-product-search", "5"], + ["other-home-home-home-search-account", "4"], + ["other-home-home-home-search-end", "2"], + ["other-home-home-home-search-home", "8"], + ["other-home-home-home-search-product", "16"], + ["other-home-home-home-search-search", "6"], + ["other-home-home-other-account-account", "22"], + ["other-home-home-other-account-end", "8"], + ["other-home-home-other-account-home", "5"], + ["other-home-home-other-account-other", "8"], + ["other-home-home-other-account-product", "9"], + ["other-home-home-other-end", "80"], + ["other-home-home-other-home-account", "8"], + ["other-home-home-other-home-end", "7"], + ["other-home-home-other-home-home", "42"], + ["other-home-home-other-home-other", "15"], + ["other-home-home-other-home-product", "22"], + ["other-home-home-other-home-search", "8"], + ["other-home-home-other-other-account", "11"], + ["other-home-home-other-other-end", "22"], + ["other-home-home-other-other-home", "15"], + ["other-home-home-other-other-other", "92"], + ["other-home-home-other-other-product", "47"], + ["other-home-home-other-other-search", "4"], + ["other-home-home-other-product-account", "17"], + ["other-home-home-other-product-end", "48"], + ["other-home-home-other-product-home", "18"], + ["other-home-home-other-product-other", "48"], + ["other-home-home-other-product-product", "107"], + ["other-home-home-other-product-search", "10"], + ["other-home-home-other-search-account", "2"], + ["other-home-home-other-search-other", "3"], + ["other-home-home-other-search-product", "9"], + ["other-home-home-other-search-search", "3"], + ["other-home-home-product-account-account", "28"], + ["other-home-home-product-account-end", "4"], + ["other-home-home-product-account-home", "6"], + ["other-home-home-product-account-other", "5"], + ["other-home-home-product-account-product", "18"], + ["other-home-home-product-account-search", "1"], + ["other-home-home-product-end", "210"], + ["other-home-home-product-home-account", "10"], + ["other-home-home-product-home-end", "58"], + ["other-home-home-product-home-home", "62"], + ["other-home-home-product-home-other", "17"], + ["other-home-home-product-home-product", "71"], + ["other-home-home-product-home-search", "12"], + ["other-home-home-product-other-account", "3"], + ["other-home-home-product-other-end", "12"], + ["other-home-home-product-other-home", "8"], + ["other-home-home-product-other-other", "16"], + ["other-home-home-product-other-product", "23"], + ["other-home-home-product-other-search", "2"], + ["other-home-home-product-product-account", "21"], + ["other-home-home-product-product-end", "62"], + ["other-home-home-product-product-home", "51"], + ["other-home-home-product-product-other", "25"], + ["other-home-home-product-product-product", "206"], + ["other-home-home-product-product-search", "16"], + ["other-home-home-product-search-account", "7"], + ["other-home-home-product-search-other", "1"], + ["other-home-home-product-search-product", "33"], + ["other-home-home-product-search-search", "10"], + ["other-home-home-search-account-account", "17"], + ["other-home-home-search-account-end", "2"], + ["other-home-home-search-account-home", "2"], + ["other-home-home-search-account-other", "3"], + ["other-home-home-search-account-product", "10"], + ["other-home-home-search-account-search", "1"], + ["other-home-home-search-end", "13"], + ["other-home-home-search-home-account", "3"], + ["other-home-home-search-home-home", "3"], + ["other-home-home-search-home-product", "5"], + ["other-home-home-search-home-search", "4"], + ["other-home-home-search-other-other", "1"], + ["other-home-home-search-other-product", "1"], + ["other-home-home-search-product-account", "4"], + ["other-home-home-search-product-end", "40"], + ["other-home-home-search-product-home", "12"], + ["other-home-home-search-product-other", "5"], + ["other-home-home-search-product-product", "95"], + ["other-home-home-search-product-search", "37"], + ["other-home-home-search-search-account", "4"], + ["other-home-home-search-search-end", "3"], + ["other-home-home-search-search-home", "2"], + ["other-home-home-search-search-other", "1"], + ["other-home-home-search-search-product", "35"], + ["other-home-home-search-search-search", "15"], + ["other-home-other-account-account-account", "27"], + ["other-home-other-account-account-end", "4"], + ["other-home-other-account-account-home", "4"], + ["other-home-other-account-account-other", "8"], + ["other-home-other-account-account-product", "8"], + ["other-home-other-account-end", "19"], + ["other-home-other-account-home-account", "1"], + ["other-home-other-account-home-end", "2"], + ["other-home-other-account-home-other", "2"], + ["other-home-other-account-home-product", "4"], + ["other-home-other-account-home-search", "3"], + ["other-home-other-account-other-account", "2"], + ["other-home-other-account-other-end", "4"], + ["other-home-other-account-other-home", "8"], + ["other-home-other-account-other-other", "9"], + ["other-home-other-account-other-product", "4"], + ["other-home-other-account-product-account", "6"], + ["other-home-other-account-product-end", "1"], + ["other-home-other-account-product-home", "5"], + ["other-home-other-account-product-other", "4"], + ["other-home-other-account-product-product", "9"], + ["other-home-other-account-product-search", "5"], + ["other-home-other-end", "370"], + ["other-home-other-home-account-account", "10"], + ["other-home-other-home-account-end", "3"], + ["other-home-other-home-account-home", "12"], + ["other-home-other-home-account-other", "5"], + ["other-home-other-home-account-product", "5"], + ["other-home-other-home-end", "123"], + ["other-home-other-home-home-account", "2"], + ["other-home-other-home-home-end", "22"], + ["other-home-other-home-home-home", "16"], + ["other-home-other-home-home-other", "22"], + ["other-home-other-home-home-product", "14"], + ["other-home-other-home-home-search", "1"], + ["other-home-other-home-other-account", "7"], + ["other-home-other-home-other-end", "12"], + ["other-home-other-home-other-home", "52"], + ["other-home-other-home-other-other", "16"], + ["other-home-other-home-other-product", "11"], + ["other-home-other-home-other-search", "4"], + ["other-home-other-home-product-account", "12"], + ["other-home-other-home-product-end", "28"], + ["other-home-other-home-product-home", "88"], + ["other-home-other-home-product-other", "17"], + ["other-home-other-home-product-product", "43"], + ["other-home-other-home-product-search", "7"], + ["other-home-other-home-search-account", "1"], + ["other-home-other-home-search-home", "12"], + ["other-home-other-home-search-other", "2"], + ["other-home-other-home-search-product", "14"], + ["other-home-other-home-search-search", "5"], + ["other-home-other-other-account-account", "22"], + ["other-home-other-other-account-end", "5"], + ["other-home-other-other-account-home", "4"], + ["other-home-other-other-account-other", "8"], + ["other-home-other-other-account-product", "4"], + ["other-home-other-other-end", "120"], + ["other-home-other-other-home-account", "9"], + ["other-home-other-other-home-end", "16"], + ["other-home-other-other-home-home", "12"], + ["other-home-other-other-home-other", "32"], + ["other-home-other-other-home-product", "35"], + ["other-home-other-other-home-search", "4"], + ["other-home-other-other-other-account", "18"], + ["other-home-other-other-other-end", "42"], + ["other-home-other-other-other-home", "27"], + ["other-home-other-other-other-other", "111"], + ["other-home-other-other-other-product", "46"], + ["other-home-other-other-other-search", "6"], + ["other-home-other-other-product-account", "8"], + ["other-home-other-other-product-end", "49"], + ["other-home-other-other-product-home", "30"], + ["other-home-other-other-product-other", "40"], + ["other-home-other-other-product-product", "54"], + ["other-home-other-other-product-search", "5"], + ["other-home-other-other-search-account", "3"], + ["other-home-other-other-search-end", "1"], + ["other-home-other-other-search-home", "1"], + ["other-home-other-other-search-other", "1"], + ["other-home-other-other-search-product", "19"], + ["other-home-other-other-search-search", "3"], + ["other-home-other-product-account-account", "18"], + ["other-home-other-product-account-end", "7"], + ["other-home-other-product-account-other", "2"], + ["other-home-other-product-account-product", "16"], + ["other-home-other-product-end", "171"], + ["other-home-other-product-home-account", "4"], + ["other-home-other-product-home-end", "28"], + ["other-home-other-product-home-home", "5"], + ["other-home-other-product-home-other", "11"], + ["other-home-other-product-home-product", "31"], + ["other-home-other-product-home-search", "5"], + ["other-home-other-product-other-account", "5"], + ["other-home-other-product-other-end", "15"], + ["other-home-other-product-other-home", "8"], + ["other-home-other-product-other-other", "17"], + ["other-home-other-product-other-product", "45"], + ["other-home-other-product-other-search", "8"], + ["other-home-other-product-product-account", "6"], + ["other-home-other-product-product-end", "51"], + ["other-home-other-product-product-home", "16"], + ["other-home-other-product-product-other", "24"], + ["other-home-other-product-product-product", "175"], + ["other-home-other-product-product-search", "11"], + ["other-home-other-product-search-account", "3"], + ["other-home-other-product-search-end", "1"], + ["other-home-other-product-search-home", "1"], + ["other-home-other-product-search-product", "20"], + ["other-home-other-product-search-search", "4"], + ["other-home-other-search-account-account", "5"], + ["other-home-other-search-account-end", "1"], + ["other-home-other-search-account-product", "4"], + ["other-home-other-search-account-search", "2"], + ["other-home-other-search-end", "3"], + ["other-home-other-search-home-home", "1"], + ["other-home-other-search-home-product", "6"], + ["other-home-other-search-other-search", "1"], + ["other-home-other-search-product-account", "3"], + ["other-home-other-search-product-end", "11"], + ["other-home-other-search-product-home", "2"], + ["other-home-other-search-product-other", "3"], + ["other-home-other-search-product-product", "26"], + ["other-home-other-search-product-search", "14"], + ["other-home-other-search-search-account", "1"], + ["other-home-other-search-search-end", "1"], + ["other-home-other-search-search-home", "1"], + ["other-home-other-search-search-product", "6"], + ["other-home-other-search-search-search", "2"], + ["other-home-product-account-account-account", "119"], + ["other-home-product-account-account-end", "39"], + ["other-home-product-account-account-home", "32"], + ["other-home-product-account-account-other", "18"], + ["other-home-product-account-account-product", "177"], + ["other-home-product-account-account-search", "10"], + ["other-home-product-account-end", "87"], + ["other-home-product-account-home-account", "5"], + ["other-home-product-account-home-end", "18"], + ["other-home-product-account-home-home", "6"], + ["other-home-product-account-home-other", "1"], + ["other-home-product-account-home-product", "34"], + ["other-home-product-account-home-search", "9"], + ["other-home-product-account-other-account", "6"], + ["other-home-product-account-other-end", "5"], + ["other-home-product-account-other-home", "11"], + ["other-home-product-account-other-other", "17"], + ["other-home-product-account-other-product", "12"], + ["other-home-product-account-product-account", "44"], + ["other-home-product-account-product-end", "64"], + ["other-home-product-account-product-home", "49"], + ["other-home-product-account-product-other", "19"], + ["other-home-product-account-product-product", "141"], + ["other-home-product-account-product-search", "11"], + ["other-home-product-account-search-account", "7"], + ["other-home-product-account-search-end", "1"], + ["other-home-product-account-search-product", "11"], + ["other-home-product-account-search-search", "5"], + ["other-home-product-end", "2745"], + ["other-home-product-home-account-account", "52"], + ["other-home-product-home-account-end", "11"], + ["other-home-product-home-account-home", "48"], + ["other-home-product-home-account-other", "4"], + ["other-home-product-home-account-product", "46"], + ["other-home-product-home-account-search", "1"], + ["other-home-product-home-end", "800"], + ["other-home-product-home-home-account", "10"], + ["other-home-product-home-home-end", "23"], + ["other-home-product-home-home-home", "36"], + ["other-home-product-home-home-other", "21"], + ["other-home-product-home-home-product", "104"], + ["other-home-product-home-home-search", "11"], + ["other-home-product-home-other-account", "8"], + ["other-home-product-home-other-end", "27"], + ["other-home-product-home-other-home", "184"], + ["other-home-product-home-other-other", "21"], + ["other-home-product-home-other-product", "43"], + ["other-home-product-home-other-search", "6"], + ["other-home-product-home-product-account", "70"], + ["other-home-product-home-product-end", "198"], + ["other-home-product-home-product-home", "514"], + ["other-home-product-home-product-other", "52"], + ["other-home-product-home-product-product", "333"], + ["other-home-product-home-product-search", "42"], + ["other-home-product-home-search-account", "15"], + ["other-home-product-home-search-end", "4"], + ["other-home-product-home-search-home", "15"], + ["other-home-product-home-search-other", "1"], + ["other-home-product-home-search-product", "93"], + ["other-home-product-home-search-search", "23"], + ["other-home-product-other-account-account", "11"], + ["other-home-product-other-account-end", "3"], + ["other-home-product-other-account-home", "2"], + ["other-home-product-other-account-other", "1"], + ["other-home-product-other-account-product", "9"], + ["other-home-product-other-end", "111"], + ["other-home-product-other-home-account", "17"], + ["other-home-product-other-home-end", "31"], + ["other-home-product-other-home-home", "15"], + ["other-home-product-other-home-other", "11"], + ["other-home-product-other-home-product", "78"], + ["other-home-product-other-home-search", "11"], + ["other-home-product-other-other-account", "6"], + ["other-home-product-other-other-end", "30"], + ["other-home-product-other-other-home", "17"], + ["other-home-product-other-other-other", "42"], + ["other-home-product-other-other-product", "44"], + ["other-home-product-other-other-search", "7"], + ["other-home-product-other-product-account", "9"], + ["other-home-product-other-product-end", "53"], + ["other-home-product-other-product-home", "12"], + ["other-home-product-other-product-other", "52"], + ["other-home-product-other-product-product", "86"], + ["other-home-product-other-product-search", "15"], + ["other-home-product-other-search-account", "6"], + ["other-home-product-other-search-end", "1"], + ["other-home-product-other-search-product", "35"], + ["other-home-product-other-search-search", "9"], + ["other-home-product-product-account-account", "127"], + ["other-home-product-product-account-end", "35"], + ["other-home-product-product-account-home", "20"], + ["other-home-product-product-account-other", "12"], + ["other-home-product-product-account-product", "117"], + ["other-home-product-product-account-search", "5"], + ["other-home-product-product-end", "1050"], + ["other-home-product-product-home-account", "27"], + ["other-home-product-product-home-end", "101"], + ["other-home-product-product-home-home", "30"], + ["other-home-product-product-home-other", "42"], + ["other-home-product-product-home-product", "247"], + ["other-home-product-product-home-search", "36"], + ["other-home-product-product-other-account", "8"], + ["other-home-product-product-other-end", "41"], + ["other-home-product-product-other-home", "48"], + ["other-home-product-product-other-other", "40"], + ["other-home-product-product-other-product", "47"], + ["other-home-product-product-other-search", "16"], + ["other-home-product-product-product-account", "134"], + ["other-home-product-product-product-end", "429"], + ["other-home-product-product-product-home", "152"], + ["other-home-product-product-product-other", "85"], + ["other-home-product-product-product-product", "1494"], + ["other-home-product-product-product-search", "92"], + ["other-home-product-product-search-account", "21"], + ["other-home-product-product-search-end", "11"], + ["other-home-product-product-search-product", "137"], + ["other-home-product-product-search-search", "27"], + ["other-home-product-search-account-account", "29"], + ["other-home-product-search-account-end", "5"], + ["other-home-product-search-account-other", "3"], + ["other-home-product-search-account-product", "21"], + ["other-home-product-search-account-search", "3"], + ["other-home-product-search-end", "14"], + ["other-home-product-search-home-end", "2"], + ["other-home-product-search-home-home", "1"], + ["other-home-product-search-home-product", "2"], + ["other-home-product-search-home-search", "2"], + ["other-home-product-search-other-end", "1"], + ["other-home-product-search-other-home", "1"], + ["other-home-product-search-other-other", "1"], + ["other-home-product-search-other-product", "2"], + ["other-home-product-search-product-account", "13"], + ["other-home-product-search-product-end", "75"], + ["other-home-product-search-product-home", "18"], + ["other-home-product-search-product-other", "9"], + ["other-home-product-search-product-product", "171"], + ["other-home-product-search-product-search", "59"], + ["other-home-product-search-search-account", "11"], + ["other-home-product-search-search-end", "7"], + ["other-home-product-search-search-home", "2"], + ["other-home-product-search-search-other", "1"], + ["other-home-product-search-search-product", "54"], + ["other-home-product-search-search-search", "21"], + ["other-home-search-account-account-account", "51"], + ["other-home-search-account-account-end", "13"], + ["other-home-search-account-account-home", "9"], + ["other-home-search-account-account-other", "6"], + ["other-home-search-account-account-product", "93"], + ["other-home-search-account-account-search", "12"], + ["other-home-search-account-end", "22"], + ["other-home-search-account-home-account", "1"], + ["other-home-search-account-home-end", "2"], + ["other-home-search-account-home-home", "3"], + ["other-home-search-account-home-other", "1"], + ["other-home-search-account-home-product", "2"], + ["other-home-search-account-home-search", "5"], + ["other-home-search-account-other-account", "3"], + ["other-home-search-account-other-end", "3"], + ["other-home-search-account-other-other", "1"], + ["other-home-search-account-other-product", "5"], + ["other-home-search-account-other-search", "1"], + ["other-home-search-account-product-account", "15"], + ["other-home-search-account-product-end", "22"], + ["other-home-search-account-product-home", "9"], + ["other-home-search-account-product-other", "4"], + ["other-home-search-account-product-product", "55"], + ["other-home-search-account-product-search", "11"], + ["other-home-search-account-search-account", "13"], + ["other-home-search-account-search-end", "1"], + ["other-home-search-account-search-product", "8"], + ["other-home-search-account-search-search", "3"], + ["other-home-search-end", "168"], + ["other-home-search-home-account-account", "1"], + ["other-home-search-home-account-end", "1"], + ["other-home-search-home-account-home", "14"], + ["other-home-search-home-end", "11"], + ["other-home-search-home-home-account", "1"], + ["other-home-search-home-home-end", "2"], + ["other-home-search-home-home-home", "3"], + ["other-home-search-home-home-product", "4"], + ["other-home-search-home-home-search", "2"], + ["other-home-search-home-other-home", "2"], + ["other-home-search-home-other-other", "2"], + ["other-home-search-home-other-product", "1"], + ["other-home-search-home-other-search", "1"], + ["other-home-search-home-product-account", "2"], + ["other-home-search-home-product-end", "3"], + ["other-home-search-home-product-home", "84"], + ["other-home-search-home-product-product", "7"], + ["other-home-search-home-product-search", "2"], + ["other-home-search-home-search-account", "2"], + ["other-home-search-home-search-end", "1"], + ["other-home-search-home-search-home", "26"], + ["other-home-search-home-search-product", "13"], + ["other-home-search-home-search-search", "8"], + ["other-home-search-other-account-other", "1"], + ["other-home-search-other-account-product", "1"], + ["other-home-search-other-end", "5"], + ["other-home-search-other-home-account", "1"], + ["other-home-search-other-home-search", "1"], + ["other-home-search-other-other-other", "4"], + ["other-home-search-other-product-end", "3"], + ["other-home-search-other-product-home", "1"], + ["other-home-search-other-product-product", "2"], + ["other-home-search-other-product-search", "2"], + ["other-home-search-other-search-account", "1"], + ["other-home-search-other-search-product", "2"], + ["other-home-search-other-search-search", "1"], + ["other-home-search-product-account-account", "43"], + ["other-home-search-product-account-end", "11"], + ["other-home-search-product-account-other", "8"], + ["other-home-search-product-account-product", "33"], + ["other-home-search-product-account-search", "4"], + ["other-home-search-product-end", "598"], + ["other-home-search-product-home-account", "7"], + ["other-home-search-product-home-end", "26"], + ["other-home-search-product-home-home", "15"], + ["other-home-search-product-home-other", "4"], + ["other-home-search-product-home-product", "37"], + ["other-home-search-product-home-search", "66"], + ["other-home-search-product-other-account", "4"], + ["other-home-search-product-other-end", "14"], + ["other-home-search-product-other-home", "13"], + ["other-home-search-product-other-other", "16"], + ["other-home-search-product-other-product", "20"], + ["other-home-search-product-other-search", "7"], + ["other-home-search-product-product-account", "25"], + ["other-home-search-product-product-end", "261"], + ["other-home-search-product-product-home", "52"], + ["other-home-search-product-product-other", "42"], + ["other-home-search-product-product-product", "614"], + ["other-home-search-product-product-search", "173"], + ["other-home-search-product-search-account", "8"], + ["other-home-search-product-search-end", "18"], + ["other-home-search-product-search-home", "5"], + ["other-home-search-product-search-other", "3"], + ["other-home-search-product-search-product", "367"], + ["other-home-search-product-search-search", "79"], + ["other-home-search-search-account-account", "13"], + ["other-home-search-search-account-end", "2"], + ["other-home-search-search-account-product", "11"], + ["other-home-search-search-account-search", "3"], + ["other-home-search-search-end", "51"], + ["other-home-search-search-home-end", "2"], + ["other-home-search-search-home-home", "3"], + ["other-home-search-search-home-other", "1"], + ["other-home-search-search-home-product", "4"], + ["other-home-search-search-home-search", "5"], + ["other-home-search-search-other-account", "1"], + ["other-home-search-search-other-other", "3"], + ["other-home-search-search-other-product", "2"], + ["other-home-search-search-product-account", "24"], + ["other-home-search-search-product-end", "93"], + ["other-home-search-search-product-home", "25"], + ["other-home-search-search-product-other", "13"], + ["other-home-search-search-product-product", "180"], + ["other-home-search-search-product-search", "94"], + ["other-home-search-search-search-account", "11"], + ["other-home-search-search-search-end", "11"], + ["other-home-search-search-search-home", "6"], + ["other-home-search-search-search-other", "5"], + ["other-home-search-search-search-product", "98"], + ["other-home-search-search-search-search", "71"], + ["other-other-account-account-account-account", "799"], + ["other-other-account-account-account-end", "173"], + ["other-other-account-account-account-home", "41"], + ["other-other-account-account-account-other", "288"], + ["other-other-account-account-account-product", "390"], + ["other-other-account-account-account-search", "27"], + ["other-other-account-account-end", "440"], + ["other-other-account-account-home-account", "14"], + ["other-other-account-account-home-end", "18"], + ["other-other-account-account-home-home", "17"], + ["other-other-account-account-home-other", "8"], + ["other-other-account-account-home-product", "33"], + ["other-other-account-account-home-search", "8"], + ["other-other-account-account-other-account", "48"], + ["other-other-account-account-other-end", "47"], + ["other-other-account-account-other-home", "9"], + ["other-other-account-account-other-other", "210"], + ["other-other-account-account-other-product", "123"], + ["other-other-account-account-other-search", "12"], + ["other-other-account-account-product-account", "200"], + ["other-other-account-account-product-end", "298"], + ["other-other-account-account-product-home", "25"], + ["other-other-account-account-product-other", "128"], + ["other-other-account-account-product-product", "469"], + ["other-other-account-account-product-search", "39"], + ["other-other-account-account-search-account", "22"], + ["other-other-account-account-search-end", "2"], + ["other-other-account-account-search-home", "1"], + ["other-other-account-account-search-other", "1"], + ["other-other-account-account-search-product", "40"], + ["other-other-account-account-search-search", "13"], + ["other-other-account-end", "1437"], + ["other-other-account-home-account-account", "17"], + ["other-other-account-home-account-end", "4"], + ["other-other-account-home-account-home", "8"], + ["other-other-account-home-account-other", "2"], + ["other-other-account-home-account-product", "10"], + ["other-other-account-home-account-search", "2"], + ["other-other-account-home-end", "88"], + ["other-other-account-home-home-account", "8"], + ["other-other-account-home-home-end", "5"], + ["other-other-account-home-home-home", "4"], + ["other-other-account-home-home-other", "8"], + ["other-other-account-home-home-product", "11"], + ["other-other-account-home-home-search", "1"], + ["other-other-account-home-other-account", "3"], + ["other-other-account-home-other-end", "3"], + ["other-other-account-home-other-home", "5"], + ["other-other-account-home-other-other", "20"], + ["other-other-account-home-other-product", "6"], + ["other-other-account-home-other-search", "1"], + ["other-other-account-home-product-account", "15"], + ["other-other-account-home-product-end", "19"], + ["other-other-account-home-product-home", "11"], + ["other-other-account-home-product-other", "10"], + ["other-other-account-home-product-product", "39"], + ["other-other-account-home-product-search", "2"], + ["other-other-account-home-search-account", "7"], + ["other-other-account-home-search-end", "2"], + ["other-other-account-home-search-other", "1"], + ["other-other-account-home-search-product", "15"], + ["other-other-account-home-search-search", "6"], + ["other-other-account-other-account-account", "68"], + ["other-other-account-other-account-end", "21"], + ["other-other-account-other-account-home", "1"], + ["other-other-account-other-account-other", "55"], + ["other-other-account-other-account-product", "32"], + ["other-other-account-other-account-search", "2"], + ["other-other-account-other-end", "187"], + ["other-other-account-other-home-account", "5"], + ["other-other-account-other-home-end", "7"], + ["other-other-account-other-home-home", "9"], + ["other-other-account-other-home-other", "7"], + ["other-other-account-other-home-product", "14"], + ["other-other-account-other-home-search", "3"], + ["other-other-account-other-other-account", "140"], + ["other-other-account-other-other-end", "184"], + ["other-other-account-other-other-home", "31"], + ["other-other-account-other-other-other", "319"], + ["other-other-account-other-other-product", "141"], + ["other-other-account-other-other-search", "18"], + ["other-other-account-other-product-account", "28"], + ["other-other-account-other-product-end", "85"], + ["other-other-account-other-product-home", "7"], + ["other-other-account-other-product-other", "66"], + ["other-other-account-other-product-product", "105"], + ["other-other-account-other-product-search", "10"], + ["other-other-account-other-search-account", "8"], + ["other-other-account-other-search-end", "2"], + ["other-other-account-other-search-other", "1"], + ["other-other-account-other-search-product", "19"], + ["other-other-account-other-search-search", "2"], + ["other-other-account-product-account-account", "102"], + ["other-other-account-product-account-end", "48"], + ["other-other-account-product-account-home", "10"], + ["other-other-account-product-account-other", "34"], + ["other-other-account-product-account-product", "126"], + ["other-other-account-product-account-search", "3"], + ["other-other-account-product-end", "405"], + ["other-other-account-product-home-account", "8"], + ["other-other-account-product-home-end", "10"], + ["other-other-account-product-home-home", "3"], + ["other-other-account-product-home-other", "6"], + ["other-other-account-product-home-product", "13"], + ["other-other-account-product-home-search", "4"], + ["other-other-account-product-other-account", "19"], + ["other-other-account-product-other-end", "31"], + ["other-other-account-product-other-home", "5"], + ["other-other-account-product-other-other", "97"], + ["other-other-account-product-other-product", "53"], + ["other-other-account-product-other-search", "9"], + ["other-other-account-product-product-account", "88"], + ["other-other-account-product-product-end", "140"], + ["other-other-account-product-product-home", "16"], + ["other-other-account-product-product-other", "59"], + ["other-other-account-product-product-product", "308"], + ["other-other-account-product-product-search", "26"], + ["other-other-account-product-search-account", "14"], + ["other-other-account-product-search-end", "2"], + ["other-other-account-product-search-product", "29"], + ["other-other-account-product-search-search", "11"], + ["other-other-account-search-account-account", "25"], + ["other-other-account-search-account-end", "6"], + ["other-other-account-search-account-other", "5"], + ["other-other-account-search-account-product", "15"], + ["other-other-account-search-account-search", "1"], + ["other-other-account-search-end", "13"], + ["other-other-account-search-home-product", "1"], + ["other-other-account-search-home-search", "1"], + ["other-other-account-search-other-account", "1"], + ["other-other-account-search-other-end", "1"], + ["other-other-account-search-other-search", "1"], + ["other-other-account-search-product-account", "7"], + ["other-other-account-search-product-end", "15"], + ["other-other-account-search-product-home", "3"], + ["other-other-account-search-product-other", "4"], + ["other-other-account-search-product-product", "48"], + ["other-other-account-search-product-search", "22"], + ["other-other-account-search-search-account", "4"], + ["other-other-account-search-search-end", "3"], + ["other-other-account-search-search-home", "1"], + ["other-other-account-search-search-product", "14"], + ["other-other-account-search-search-search", "9"], + ["other-other-end", "34138"], + ["other-other-home-account-account-account", "77"], + ["other-other-home-account-account-end", "20"], + ["other-other-home-account-account-home", "21"], + ["other-other-home-account-account-other", "15"], + ["other-other-home-account-account-product", "79"], + ["other-other-home-account-account-search", "5"], + ["other-other-home-account-end", "63"], + ["other-other-home-account-home-account", "15"], + ["other-other-home-account-home-end", "5"], + ["other-other-home-account-home-home", "5"], + ["other-other-home-account-home-other", "6"], + ["other-other-home-account-home-product", "13"], + ["other-other-home-account-home-search", "2"], + ["other-other-home-account-other-account", "6"], + ["other-other-home-account-other-end", "9"], + ["other-other-home-account-other-home", "2"], + ["other-other-home-account-other-other", "37"], + ["other-other-home-account-other-product", "5"], + ["other-other-home-account-product-account", "21"], + ["other-other-home-account-product-end", "28"], + ["other-other-home-account-product-home", "13"], + ["other-other-home-account-product-other", "4"], + ["other-other-home-account-product-product", "43"], + ["other-other-home-account-product-search", "4"], + ["other-other-home-account-search-account", "3"], + ["other-other-home-account-search-end", "1"], + ["other-other-home-account-search-home", "1"], + ["other-other-home-account-search-product", "9"], + ["other-other-home-account-search-search", "3"], + ["other-other-home-end", "1625"], + ["other-other-home-home-account-account", "18"], + ["other-other-home-home-account-end", "4"], + ["other-other-home-home-account-home", "10"], + ["other-other-home-home-account-other", "17"], + ["other-other-home-home-account-product", "15"], + ["other-other-home-home-account-search", "1"], + ["other-other-home-home-end", "129"], + ["other-other-home-home-home-account", "6"], + ["other-other-home-home-home-end", "22"], + ["other-other-home-home-home-home", "65"], + ["other-other-home-home-home-other", "27"], + ["other-other-home-home-home-product", "29"], + ["other-other-home-home-home-search", "16"], + ["other-other-home-home-other-account", "16"], + ["other-other-home-home-other-end", "23"], + ["other-other-home-home-other-home", "21"], + ["other-other-home-home-other-other", "155"], + ["other-other-home-home-other-product", "55"], + ["other-other-home-home-other-search", "4"], + ["other-other-home-home-product-account", "20"], + ["other-other-home-home-product-end", "40"], + ["other-other-home-home-product-home", "32"], + ["other-other-home-home-product-other", "14"], + ["other-other-home-home-product-product", "105"], + ["other-other-home-home-product-search", "14"], + ["other-other-home-home-search-account", "16"], + ["other-other-home-home-search-end", "1"], + ["other-other-home-home-search-other", "1"], + ["other-other-home-home-search-product", "53"], + ["other-other-home-home-search-search", "4"], + ["other-other-home-other-account-account", "11"], + ["other-other-home-other-account-end", "1"], + ["other-other-home-other-account-home", "5"], + ["other-other-home-other-account-other", "4"], + ["other-other-home-other-account-product", "5"], + ["other-other-home-other-end", "91"], + ["other-other-home-other-home-account", "6"], + ["other-other-home-other-home-end", "17"], + ["other-other-home-other-home-home", "12"], + ["other-other-home-other-home-other", "28"], + ["other-other-home-other-home-product", "24"], + ["other-other-home-other-home-search", "7"], + ["other-other-home-other-other-account", "33"], + ["other-other-home-other-other-end", "96"], + ["other-other-home-other-other-home", "72"], + ["other-other-home-other-other-other", "205"], + ["other-other-home-other-other-product", "100"], + ["other-other-home-other-other-search", "20"], + ["other-other-home-other-product-account", "6"], + ["other-other-home-other-product-end", "18"], + ["other-other-home-other-product-home", "19"], + ["other-other-home-other-product-other", "25"], + ["other-other-home-other-product-product", "42"], + ["other-other-home-other-product-search", "5"], + ["other-other-home-other-search-account", "3"], + ["other-other-home-other-search-other", "2"], + ["other-other-home-other-search-product", "14"], + ["other-other-home-other-search-search", "2"], + ["other-other-home-product-account-account", "97"], + ["other-other-home-product-account-end", "20"], + ["other-other-home-product-account-home", "19"], + ["other-other-home-product-account-other", "22"], + ["other-other-home-product-account-product", "77"], + ["other-other-home-product-account-search", "5"], + ["other-other-home-product-end", "636"], + ["other-other-home-product-home-account", "35"], + ["other-other-home-product-home-end", "110"], + ["other-other-home-product-home-home", "48"], + ["other-other-home-product-home-other", "47"], + ["other-other-home-product-home-product", "217"], + ["other-other-home-product-home-search", "30"], + ["other-other-home-product-other-account", "6"], + ["other-other-home-product-other-end", "22"], + ["other-other-home-product-other-home", "20"], + ["other-other-home-product-other-other", "105"], + ["other-other-home-product-other-product", "26"], + ["other-other-home-product-other-search", "6"], + ["other-other-home-product-product-account", "78"], + ["other-other-home-product-product-end", "222"], + ["other-other-home-product-product-home", "108"], + ["other-other-home-product-product-other", "65"], + ["other-other-home-product-product-product", "487"], + ["other-other-home-product-product-search", "41"], + ["other-other-home-product-search-account", "12"], + ["other-other-home-product-search-end", "5"], + ["other-other-home-product-search-other", "5"], + ["other-other-home-product-search-product", "72"], + ["other-other-home-product-search-search", "16"], + ["other-other-home-search-account-account", "49"], + ["other-other-home-search-account-end", "4"], + ["other-other-home-search-account-home", "4"], + ["other-other-home-search-account-other", "3"], + ["other-other-home-search-account-product", "27"], + ["other-other-home-search-account-search", "6"], + ["other-other-home-search-end", "29"], + ["other-other-home-search-home-account", "3"], + ["other-other-home-search-home-end", "1"], + ["other-other-home-search-home-home", "1"], + ["other-other-home-search-home-other", "1"], + ["other-other-home-search-home-product", "12"], + ["other-other-home-search-home-search", "8"], + ["other-other-home-search-other-account", "1"], + ["other-other-home-search-other-other", "3"], + ["other-other-home-search-product-account", "24"], + ["other-other-home-search-product-end", "111"], + ["other-other-home-search-product-home", "34"], + ["other-other-home-search-product-other", "19"], + ["other-other-home-search-product-product", "194"], + ["other-other-home-search-product-search", "69"], + ["other-other-home-search-search-account", "14"], + ["other-other-home-search-search-end", "16"], + ["other-other-home-search-search-home", "3"], + ["other-other-home-search-search-other", "2"], + ["other-other-home-search-search-product", "77"], + ["other-other-home-search-search-search", "32"], + ["other-other-other-account-account-account", "649"], + ["other-other-other-account-account-end", "157"], + ["other-other-other-account-account-home", "50"], + ["other-other-other-account-account-other", "175"], + ["other-other-other-account-account-product", "376"], + ["other-other-other-account-account-search", "26"], + ["other-other-other-account-end", "616"], + ["other-other-other-account-home-account", "20"], + ["other-other-other-account-home-end", "39"], + ["other-other-other-account-home-home", "21"], + ["other-other-other-account-home-other", "21"], + ["other-other-other-account-home-product", "46"], + ["other-other-other-account-home-search", "6"], + ["other-other-other-account-other-account", "50"], + ["other-other-other-account-other-end", "51"], + ["other-other-other-account-other-home", "15"], + ["other-other-other-account-other-other", "385"], + ["other-other-other-account-other-product", "101"], + ["other-other-other-account-other-search", "15"], + ["other-other-other-account-product-account", "116"], + ["other-other-other-account-product-end", "128"], + ["other-other-other-account-product-home", "18"], + ["other-other-other-account-product-other", "83"], + ["other-other-other-account-product-product", "201"], + ["other-other-other-account-product-search", "20"], + ["other-other-other-account-search-account", "26"], + ["other-other-other-account-search-other", "3"], + ["other-other-other-account-search-product", "32"], + ["other-other-other-account-search-search", "17"], + ["other-other-other-end", "8968"], + ["other-other-other-home-account-account", "75"], + ["other-other-other-home-account-end", "16"], + ["other-other-other-home-account-home", "25"], + ["other-other-other-home-account-other", "14"], + ["other-other-other-home-account-product", "34"], + ["other-other-other-home-account-search", "3"], + ["other-other-other-home-end", "397"], + ["other-other-other-home-home-account", "17"], + ["other-other-other-home-home-end", "33"], + ["other-other-other-home-home-home", "46"], + ["other-other-other-home-home-other", "87"], + ["other-other-other-home-home-product", "68"], + ["other-other-other-home-home-search", "15"], + ["other-other-other-home-other-account", "8"], + ["other-other-other-home-other-end", "20"], + ["other-other-other-home-other-home", "14"], + ["other-other-other-home-other-other", "154"], + ["other-other-other-home-other-product", "29"], + ["other-other-other-home-other-search", "3"], + ["other-other-other-home-product-account", "62"], + ["other-other-other-home-product-end", "162"], + ["other-other-other-home-product-home", "121"], + ["other-other-other-home-product-other", "59"], + ["other-other-other-home-product-product", "239"], + ["other-other-other-home-product-search", "40"], + ["other-other-other-home-search-account", "23"], + ["other-other-other-home-search-end", "8"], + ["other-other-other-home-search-home", "1"], + ["other-other-other-home-search-other", "2"], + ["other-other-other-home-search-product", "91"], + ["other-other-other-home-search-search", "33"], + ["other-other-other-other-account-account", "512"], + ["other-other-other-other-account-end", "185"], + ["other-other-other-other-account-home", "49"], + ["other-other-other-other-account-other", "286"], + ["other-other-other-other-account-product", "181"], + ["other-other-other-other-account-search", "25"], + ["other-other-other-other-end", "3328"], + ["other-other-other-other-home-account", "49"], + ["other-other-other-other-home-end", "120"], + ["other-other-other-other-home-home", "93"], + ["other-other-other-other-home-other", "121"], + ["other-other-other-other-home-product", "194"], + ["other-other-other-other-home-search", "42"], + ["other-other-other-other-other-account", "522"], + ["other-other-other-other-other-end", "1375"], + ["other-other-other-other-other-home", "271"], + ["other-other-other-other-other-other", "5099"], + ["other-other-other-other-other-product", "1527"], + ["other-other-other-other-other-search", "222"], + ["other-other-other-other-product-account", "278"], + ["other-other-other-other-product-end", "1012"], + ["other-other-other-other-product-home", "106"], + ["other-other-other-other-product-other", "1047"], + ["other-other-other-other-product-product", "1546"], + ["other-other-other-other-product-search", "119"], + ["other-other-other-other-search-account", "102"], + ["other-other-other-other-search-end", "44"], + ["other-other-other-other-search-home", "5"], + ["other-other-other-other-search-other", "30"], + ["other-other-other-other-search-product", "406"], + ["other-other-other-other-search-search", "137"], + ["other-other-other-product-account-account", "368"], + ["other-other-other-product-account-end", "104"], + ["other-other-other-product-account-home", "16"], + ["other-other-other-product-account-other", "116"], + ["other-other-other-product-account-product", "284"], + ["other-other-other-product-account-search", "18"], + ["other-other-other-product-end", "3125"], + ["other-other-other-product-home-account", "31"], + ["other-other-other-product-home-end", "81"], + ["other-other-other-product-home-home", "28"], + ["other-other-other-product-home-other", "47"], + ["other-other-other-product-home-product", "122"], + ["other-other-other-product-home-search", "47"], + ["other-other-other-product-other-account", "100"], + ["other-other-other-product-other-end", "359"], + ["other-other-other-product-other-home", "33"], + ["other-other-other-product-other-other", "1140"], + ["other-other-other-product-other-product", "778"], + ["other-other-other-product-other-search", "84"], + ["other-other-other-product-product-account", "250"], + ["other-other-other-product-product-end", "949"], + ["other-other-other-product-product-home", "114"], + ["other-other-other-product-product-other", "561"], + ["other-other-other-product-product-product", "2335"], + ["other-other-other-product-product-search", "160"], + ["other-other-other-product-search-account", "33"], + ["other-other-other-product-search-end", "14"], + ["other-other-other-product-search-home", "2"], + ["other-other-other-product-search-other", "9"], + ["other-other-other-product-search-product", "268"], + ["other-other-other-product-search-search", "74"], + ["other-other-other-search-account-account", "107"], + ["other-other-other-search-account-end", "7"], + ["other-other-other-search-account-home", "4"], + ["other-other-other-search-account-other", "13"], + ["other-other-other-search-account-product", "71"], + ["other-other-other-search-account-search", "7"], + ["other-other-other-search-end", "68"], + ["other-other-other-search-home-account", "1"], + ["other-other-other-search-home-end", "1"], + ["other-other-other-search-home-home", "2"], + ["other-other-other-search-home-product", "1"], + ["other-other-other-search-home-search", "2"], + ["other-other-other-search-other-account", "1"], + ["other-other-other-search-other-end", "11"], + ["other-other-other-search-other-home", "1"], + ["other-other-other-search-other-other", "18"], + ["other-other-other-search-other-product", "9"], + ["other-other-other-search-other-search", "5"], + ["other-other-other-search-product-account", "62"], + ["other-other-other-search-product-end", "231"], + ["other-other-other-search-product-home", "7"], + ["other-other-other-search-product-other", "102"], + ["other-other-other-search-product-product", "428"], + ["other-other-other-search-product-search", "175"], + ["other-other-other-search-search-account", "31"], + ["other-other-other-search-search-end", "23"], + ["other-other-other-search-search-home", "1"], + ["other-other-other-search-search-other", "14"], + ["other-other-other-search-search-product", "147"], + ["other-other-other-search-search-search", "65"], + ["other-other-product-account-account-account", "408"], + ["other-other-product-account-account-end", "142"], + ["other-other-product-account-account-home", "32"], + ["other-other-product-account-account-other", "114"], + ["other-other-product-account-account-product", "470"], + ["other-other-product-account-account-search", "16"], + ["other-other-product-account-end", "338"], + ["other-other-product-account-home-account", "7"], + ["other-other-product-account-home-end", "10"], + ["other-other-product-account-home-home", "1"], + ["other-other-product-account-home-other", "6"], + ["other-other-product-account-home-product", "20"], + ["other-other-product-account-home-search", "2"], + ["other-other-product-account-other-account", "19"], + ["other-other-product-account-other-end", "31"], + ["other-other-product-account-other-home", "7"], + ["other-other-product-account-other-other", "183"], + ["other-other-product-account-other-product", "91"], + ["other-other-product-account-other-search", "8"], + ["other-other-product-account-product-account", "157"], + ["other-other-product-account-product-end", "189"], + ["other-other-product-account-product-home", "20"], + ["other-other-product-account-product-other", "104"], + ["other-other-product-account-product-product", "344"], + ["other-other-product-account-product-search", "30"], + ["other-other-product-account-search-account", "23"], + ["other-other-product-account-search-end", "4"], + ["other-other-product-account-search-home", "1"], + ["other-other-product-account-search-other", "2"], + ["other-other-product-account-search-product", "22"], + ["other-other-product-account-search-search", "10"], + ["other-other-product-end", "12839"], + ["other-other-product-home-account-account", "35"], + ["other-other-product-home-account-end", "9"], + ["other-other-product-home-account-home", "7"], + ["other-other-product-home-account-other", "10"], + ["other-other-product-home-account-product", "23"], + ["other-other-product-home-account-search", "2"], + ["other-other-product-home-end", "283"], + ["other-other-product-home-home-account", "11"], + ["other-other-product-home-home-end", "15"], + ["other-other-product-home-home-home", "14"], + ["other-other-product-home-home-other", "29"], + ["other-other-product-home-home-product", "49"], + ["other-other-product-home-home-search", "10"], + ["other-other-product-home-other-account", "9"], + ["other-other-product-home-other-end", "18"], + ["other-other-product-home-other-home", "11"], + ["other-other-product-home-other-other", "109"], + ["other-other-product-home-other-product", "42"], + ["other-other-product-home-other-search", "1"], + ["other-other-product-home-product-account", "31"], + ["other-other-product-home-product-end", "95"], + ["other-other-product-home-product-home", "103"], + ["other-other-product-home-product-other", "26"], + ["other-other-product-home-product-product", "173"], + ["other-other-product-home-product-search", "17"], + ["other-other-product-home-search-account", "22"], + ["other-other-product-home-search-end", "4"], + ["other-other-product-home-search-home", "3"], + ["other-other-product-home-search-other", "5"], + ["other-other-product-home-search-product", "95"], + ["other-other-product-home-search-search", "25"], + ["other-other-product-other-account-account", "109"], + ["other-other-product-other-account-end", "24"], + ["other-other-product-other-account-home", "7"], + ["other-other-product-other-account-other", "51"], + ["other-other-product-other-account-product", "61"], + ["other-other-product-other-account-search", "3"], + ["other-other-product-other-end", "1473"], + ["other-other-product-other-home-account", "8"], + ["other-other-product-other-home-end", "24"], + ["other-other-product-other-home-home", "12"], + ["other-other-product-other-home-other", "19"], + ["other-other-product-other-home-product", "39"], + ["other-other-product-other-home-search", "11"], + ["other-other-product-other-other-account", "203"], + ["other-other-product-other-other-end", "686"], + ["other-other-product-other-other-home", "82"], + ["other-other-product-other-other-other", "1125"], + ["other-other-product-other-other-product", "1509"], + ["other-other-product-other-other-search", "130"], + ["other-other-product-other-product-account", "164"], + ["other-other-product-other-product-end", "788"], + ["other-other-product-other-product-home", "51"], + ["other-other-product-other-product-other", "1589"], + ["other-other-product-other-product-product", "963"], + ["other-other-product-other-product-search", "89"], + ["other-other-product-other-search-account", "38"], + ["other-other-product-other-search-end", "15"], + ["other-other-product-other-search-other", "7"], + ["other-other-product-other-search-product", "189"], + ["other-other-product-other-search-search", "55"], + ["other-other-product-product-account-account", "373"], + ["other-other-product-product-account-end", "99"], + ["other-other-product-product-account-home", "17"], + ["other-other-product-product-account-other", "71"], + ["other-other-product-product-account-product", "288"], + ["other-other-product-product-account-search", "12"], + ["other-other-product-product-end", "4015"], + ["other-other-product-product-home-account", "20"], + ["other-other-product-product-home-end", "64"], + ["other-other-product-product-home-home", "36"], + ["other-other-product-product-home-other", "49"], + ["other-other-product-product-home-product", "121"], + ["other-other-product-product-home-search", "53"], + ["other-other-product-product-other-account", "62"], + ["other-other-product-product-other-end", "330"], + ["other-other-product-product-other-home", "21"], + ["other-other-product-product-other-other", "808"], + ["other-other-product-product-other-product", "804"], + ["other-other-product-product-other-search", "80"], + ["other-other-product-product-product-account", "360"], + ["other-other-product-product-product-end", "1765"], + ["other-other-product-product-product-home", "139"], + ["other-other-product-product-product-other", "837"], + ["other-other-product-product-product-product", "6060"], + ["other-other-product-product-product-search", "319"], + ["other-other-product-product-search-account", "48"], + ["other-other-product-product-search-end", "14"], + ["other-other-product-product-search-home", "1"], + ["other-other-product-product-search-other", "10"], + ["other-other-product-product-search-product", "408"], + ["other-other-product-product-search-search", "83"], + ["other-other-product-search-account-account", "63"], + ["other-other-product-search-account-end", "6"], + ["other-other-product-search-account-other", "9"], + ["other-other-product-search-account-product", "53"], + ["other-other-product-search-account-search", "10"], + ["other-other-product-search-end", "64"], + ["other-other-product-search-home-end", "4"], + ["other-other-product-search-home-home", "2"], + ["other-other-product-search-home-other", "2"], + ["other-other-product-search-home-product", "2"], + ["other-other-product-search-home-search", "3"], + ["other-other-product-search-other-end", "5"], + ["other-other-product-search-other-other", "16"], + ["other-other-product-search-other-product", "14"], + ["other-other-product-search-other-search", "2"], + ["other-other-product-search-product-account", "55"], + ["other-other-product-search-product-end", "215"], + ["other-other-product-search-product-home", "16"], + ["other-other-product-search-product-other", "91"], + ["other-other-product-search-product-product", "477"], + ["other-other-product-search-product-search", "165"], + ["other-other-product-search-search-account", "8"], + ["other-other-product-search-search-end", "7"], + ["other-other-product-search-search-home", "4"], + ["other-other-product-search-search-other", "9"], + ["other-other-product-search-search-product", "148"], + ["other-other-product-search-search-search", "54"], + ["other-other-search-account-account-account", "130"], + ["other-other-search-account-account-end", "41"], + ["other-other-search-account-account-home", "5"], + ["other-other-search-account-account-other", "31"], + ["other-other-search-account-account-product", "247"], + ["other-other-search-account-account-search", "27"], + ["other-other-search-account-end", "46"], + ["other-other-search-account-home-account", "1"], + ["other-other-search-account-home-end", "2"], + ["other-other-search-account-home-other", "1"], + ["other-other-search-account-home-product", "2"], + ["other-other-search-account-other-account", "2"], + ["other-other-search-account-other-end", "7"], + ["other-other-search-account-other-home", "1"], + ["other-other-search-account-other-other", "21"], + ["other-other-search-account-other-product", "16"], + ["other-other-search-account-other-search", "2"], + ["other-other-search-account-product-account", "48"], + ["other-other-search-account-product-end", "81"], + ["other-other-search-account-product-home", "7"], + ["other-other-search-account-product-other", "23"], + ["other-other-search-account-product-product", "103"], + ["other-other-search-account-product-search", "20"], + ["other-other-search-account-search-account", "28"], + ["other-other-search-account-search-end", "1"], + ["other-other-search-account-search-other", "1"], + ["other-other-search-account-search-product", "16"], + ["other-other-search-account-search-search", "5"], + ["other-other-search-end", "397"], + ["other-other-search-home-account-account", "1"], + ["other-other-search-home-account-other", "1"], + ["other-other-search-home-end", "10"], + ["other-other-search-home-home-end", "2"], + ["other-other-search-home-home-home", "2"], + ["other-other-search-home-home-other", "3"], + ["other-other-search-home-home-search", "2"], + ["other-other-search-home-other-other", "3"], + ["other-other-search-home-product-account", "1"], + ["other-other-search-home-product-end", "3"], + ["other-other-search-home-product-home", "1"], + ["other-other-search-home-product-product", "4"], + ["other-other-search-home-search-account", "2"], + ["other-other-search-home-search-other", "1"], + ["other-other-search-home-search-product", "4"], + ["other-other-search-home-search-search", "2"], + ["other-other-search-other-account-account", "1"], + ["other-other-search-other-account-other", "1"], + ["other-other-search-other-account-product", "2"], + ["other-other-search-other-end", "19"], + ["other-other-search-other-home-account", "1"], + ["other-other-search-other-home-home", "2"], + ["other-other-search-other-home-product", "1"], + ["other-other-search-other-other-account", "3"], + ["other-other-search-other-other-end", "11"], + ["other-other-search-other-other-home", "4"], + ["other-other-search-other-other-other", "29"], + ["other-other-search-other-other-product", "23"], + ["other-other-search-other-other-search", "29"], + ["other-other-search-other-product-account", "1"], + ["other-other-search-other-product-end", "9"], + ["other-other-search-other-product-home", "2"], + ["other-other-search-other-product-other", "9"], + ["other-other-search-other-product-product", "15"], + ["other-other-search-other-product-search", "2"], + ["other-other-search-other-search-account", "2"], + ["other-other-search-other-search-end", "1"], + ["other-other-search-other-search-other", "2"], + ["other-other-search-other-search-product", "9"], + ["other-other-search-other-search-search", "5"], + ["other-other-search-product-account-account", "91"], + ["other-other-search-product-account-end", "18"], + ["other-other-search-product-account-home", "1"], + ["other-other-search-product-account-other", "18"], + ["other-other-search-product-account-product", "64"], + ["other-other-search-product-account-search", "3"], + ["other-other-search-product-end", "1563"], + ["other-other-search-product-home-account", "5"], + ["other-other-search-product-home-end", "18"], + ["other-other-search-product-home-home", "7"], + ["other-other-search-product-home-other", "7"], + ["other-other-search-product-home-product", "28"], + ["other-other-search-product-home-search", "23"], + ["other-other-search-product-other-account", "6"], + ["other-other-search-product-other-end", "61"], + ["other-other-search-product-other-home", "6"], + ["other-other-search-product-other-other", "233"], + ["other-other-search-product-other-product", "86"], + ["other-other-search-product-other-search", "52"], + ["other-other-search-product-product-account", "86"], + ["other-other-search-product-product-end", "588"], + ["other-other-search-product-product-home", "44"], + ["other-other-search-product-product-other", "165"], + ["other-other-search-product-product-product", "1457"], + ["other-other-search-product-product-search", "389"], + ["other-other-search-product-search-account", "34"], + ["other-other-search-product-search-end", "50"], + ["other-other-search-product-search-home", "8"], + ["other-other-search-product-search-other", "13"], + ["other-other-search-product-search-product", "748"], + ["other-other-search-product-search-search", "153"], + ["other-other-search-search-account-account", "49"], + ["other-other-search-search-account-end", "12"], + ["other-other-search-search-account-other", "11"], + ["other-other-search-search-account-product", "30"], + ["other-other-search-search-account-search", "5"], + ["other-other-search-search-end", "91"], + ["other-other-search-search-home-end", "2"], + ["other-other-search-search-home-home", "3"], + ["other-other-search-search-home-other", "1"], + ["other-other-search-search-home-product", "2"], + ["other-other-search-search-home-search", "2"], + ["other-other-search-search-other-account", "2"], + ["other-other-search-search-other-end", "3"], + ["other-other-search-search-other-home", "1"], + ["other-other-search-search-other-other", "21"], + ["other-other-search-search-other-product", "11"], + ["other-other-search-search-other-search", "5"], + ["other-other-search-search-product-account", "36"], + ["other-other-search-search-product-end", "202"], + ["other-other-search-search-product-home", "11"], + ["other-other-search-search-product-other", "54"], + ["other-other-search-search-product-product", "437"], + ["other-other-search-search-product-search", "169"], + ["other-other-search-search-search-account", "35"], + ["other-other-search-search-search-end", "40"], + ["other-other-search-search-search-home", "3"], + ["other-other-search-search-search-other", "20"], + ["other-other-search-search-search-product", "199"], + ["other-other-search-search-search-search", "117"], + ["other-product-account-account-account-account", "657"], + ["other-product-account-account-account-end", "139"], + ["other-product-account-account-account-home", "46"], + ["other-product-account-account-account-other", "222"], + ["other-product-account-account-account-product", "496"], + ["other-product-account-account-account-search", "16"], + ["other-product-account-account-end", "588"], + ["other-product-account-account-home-account", "11"], + ["other-product-account-account-home-end", "16"], + ["other-product-account-account-home-home", "6"], + ["other-product-account-account-home-other", "12"], + ["other-product-account-account-home-product", "47"], + ["other-product-account-account-home-search", "12"], + ["other-product-account-account-other-account", "39"], + ["other-product-account-account-other-end", "55"], + ["other-product-account-account-other-home", "6"], + ["other-product-account-account-other-other", "128"], + ["other-product-account-account-other-product", "209"], + ["other-product-account-account-other-search", "16"], + ["other-product-account-account-product-account", "369"], + ["other-product-account-account-product-end", "507"], + ["other-product-account-account-product-home", "52"], + ["other-product-account-account-product-other", "230"], + ["other-product-account-account-product-product", "935"], + ["other-product-account-account-product-search", "89"], + ["other-product-account-account-search-account", "18"], + ["other-product-account-account-search-end", "5"], + ["other-product-account-account-search-other", "1"], + ["other-product-account-account-search-product", "42"], + ["other-product-account-account-search-search", "15"], + ["other-product-account-end", "1396"], + ["other-product-account-home-account-account", "10"], + ["other-product-account-home-account-end", "5"], + ["other-product-account-home-account-home", "4"], + ["other-product-account-home-account-other", "1"], + ["other-product-account-home-account-product", "7"], + ["other-product-account-home-account-search", "1"], + ["other-product-account-home-end", "53"], + ["other-product-account-home-home-account", "3"], + ["other-product-account-home-home-end", "4"], + ["other-product-account-home-home-home", "3"], + ["other-product-account-home-home-other", "2"], + ["other-product-account-home-home-product", "7"], + ["other-product-account-home-home-search", "5"], + ["other-product-account-home-other-account", "1"], + ["other-product-account-home-other-end", "3"], + ["other-product-account-home-other-home", "2"], + ["other-product-account-home-other-other", "9"], + ["other-product-account-home-other-product", "11"], + ["other-product-account-home-other-search", "1"], + ["other-product-account-home-product-account", "22"], + ["other-product-account-home-product-end", "24"], + ["other-product-account-home-product-home", "18"], + ["other-product-account-home-product-other", "3"], + ["other-product-account-home-product-product", "36"], + ["other-product-account-home-product-search", "3"], + ["other-product-account-home-search-account", "4"], + ["other-product-account-home-search-end", "1"], + ["other-product-account-home-search-product", "13"], + ["other-product-account-home-search-search", "5"], + ["other-product-account-other-account-account", "43"], + ["other-product-account-other-account-end", "14"], + ["other-product-account-other-account-other", "16"], + ["other-product-account-other-account-product", "44"], + ["other-product-account-other-end", "195"], + ["other-product-account-other-home-account", "3"], + ["other-product-account-other-home-end", "8"], + ["other-product-account-other-home-home", "3"], + ["other-product-account-other-home-other", "3"], + ["other-product-account-other-home-product", "5"], + ["other-product-account-other-home-search", "1"], + ["other-product-account-other-other-account", "47"], + ["other-product-account-other-other-end", "58"], + ["other-product-account-other-other-home", "12"], + ["other-product-account-other-other-other", "100"], + ["other-product-account-other-other-product", "97"], + ["other-product-account-other-other-search", "3"], + ["other-product-account-other-product-account", "73"], + ["other-product-account-other-product-end", "132"], + ["other-product-account-other-product-home", "11"], + ["other-product-account-other-product-other", "143"], + ["other-product-account-other-product-product", "226"], + ["other-product-account-other-product-search", "21"], + ["other-product-account-other-search-account", "3"], + ["other-product-account-other-search-end", "3"], + ["other-product-account-other-search-home", "2"], + ["other-product-account-other-search-other", "2"], + ["other-product-account-other-search-product", "22"], + ["other-product-account-other-search-search", "8"], + ["other-product-account-product-account-account", "182"], + ["other-product-account-product-account-end", "50"], + ["other-product-account-product-account-home", "10"], + ["other-product-account-product-account-other", "57"], + ["other-product-account-product-account-product", "344"], + ["other-product-account-product-account-search", "7"], + ["other-product-account-product-end", "846"], + ["other-product-account-product-home-account", "7"], + ["other-product-account-product-home-end", "18"], + ["other-product-account-product-home-home", "7"], + ["other-product-account-product-home-other", "7"], + ["other-product-account-product-home-product", "46"], + ["other-product-account-product-home-search", "9"], + ["other-product-account-product-other-account", "19"], + ["other-product-account-product-other-end", "79"], + ["other-product-account-product-other-home", "11"], + ["other-product-account-product-other-other", "77"], + ["other-product-account-product-other-product", "182"], + ["other-product-account-product-other-search", "24"], + ["other-product-account-product-product-account", "195"], + ["other-product-account-product-product-end", "323"], + ["other-product-account-product-product-home", "32"], + ["other-product-account-product-product-other", "135"], + ["other-product-account-product-product-product", "895"], + ["other-product-account-product-product-search", "64"], + ["other-product-account-product-search-account", "26"], + ["other-product-account-product-search-product", "86"], + ["other-product-account-product-search-search", "18"], + ["other-product-account-search-account-account", "24"], + ["other-product-account-search-account-end", "5"], + ["other-product-account-search-account-home", "1"], + ["other-product-account-search-account-other", "5"], + ["other-product-account-search-account-product", "20"], + ["other-product-account-search-account-search", "1"], + ["other-product-account-search-end", "11"], + ["other-product-account-search-home-end", "1"], + ["other-product-account-search-other-product", "1"], + ["other-product-account-search-product-account", "9"], + ["other-product-account-search-product-end", "26"], + ["other-product-account-search-product-home", "2"], + ["other-product-account-search-product-other", "6"], + ["other-product-account-search-product-product", "57"], + ["other-product-account-search-product-search", "22"], + ["other-product-account-search-search-account", "5"], + ["other-product-account-search-search-end", "2"], + ["other-product-account-search-search-other", "2"], + ["other-product-account-search-search-product", "21"], + ["other-product-account-search-search-search", "7"], + ["other-product-end", "68278"], + ["other-product-home-account-account-account", "52"], + ["other-product-home-account-account-end", "17"], + ["other-product-home-account-account-home", "11"], + ["other-product-home-account-account-other", "16"], + ["other-product-home-account-account-product", "58"], + ["other-product-home-account-account-search", "6"], + ["other-product-home-account-end", "48"], + ["other-product-home-account-home-account", "9"], + ["other-product-home-account-home-end", "5"], + ["other-product-home-account-home-home", "3"], + ["other-product-home-account-home-other", "1"], + ["other-product-home-account-home-product", "8"], + ["other-product-home-account-home-search", "2"], + ["other-product-home-account-other-end", "2"], + ["other-product-home-account-other-home", "2"], + ["other-product-home-account-other-other", "5"], + ["other-product-home-account-other-product", "15"], + ["other-product-home-account-product-account", "14"], + ["other-product-home-account-product-end", "27"], + ["other-product-home-account-product-home", "19"], + ["other-product-home-account-product-other", "5"], + ["other-product-home-account-product-product", "45"], + ["other-product-home-account-product-search", "4"], + ["other-product-home-account-search-account", "4"], + ["other-product-home-account-search-product", "3"], + ["other-product-home-account-search-search", "1"], + ["other-product-home-end", "1367"], + ["other-product-home-home-account-account", "13"], + ["other-product-home-home-account-end", "1"], + ["other-product-home-home-account-home", "2"], + ["other-product-home-home-account-other", "1"], + ["other-product-home-home-account-product", "11"], + ["other-product-home-home-account-search", "2"], + ["other-product-home-home-end", "73"], + ["other-product-home-home-home-account", "3"], + ["other-product-home-home-home-end", "13"], + ["other-product-home-home-home-home", "16"], + ["other-product-home-home-home-other", "8"], + ["other-product-home-home-home-product", "17"], + ["other-product-home-home-home-search", "9"], + ["other-product-home-home-other-account", "6"], + ["other-product-home-home-other-end", "7"], + ["other-product-home-home-other-home", "9"], + ["other-product-home-home-other-other", "23"], + ["other-product-home-home-other-product", "22"], + ["other-product-home-home-product-account", "18"], + ["other-product-home-home-product-end", "31"], + ["other-product-home-home-product-home", "44"], + ["other-product-home-home-product-other", "11"], + ["other-product-home-home-product-product", "52"], + ["other-product-home-home-product-search", "4"], + ["other-product-home-home-search-account", "5"], + ["other-product-home-home-search-end", "1"], + ["other-product-home-home-search-other", "1"], + ["other-product-home-home-search-product", "31"], + ["other-product-home-home-search-search", "13"], + ["other-product-home-other-account-account", "8"], + ["other-product-home-other-account-end", "3"], + ["other-product-home-other-account-home", "5"], + ["other-product-home-other-account-other", "2"], + ["other-product-home-other-account-product", "4"], + ["other-product-home-other-end", "94"], + ["other-product-home-other-home-account", "7"], + ["other-product-home-other-home-end", "17"], + ["other-product-home-other-home-home", "16"], + ["other-product-home-other-home-other", "14"], + ["other-product-home-other-home-product", "30"], + ["other-product-home-other-home-search", "6"], + ["other-product-home-other-other-account", "9"], + ["other-product-home-other-other-end", "33"], + ["other-product-home-other-other-home", "14"], + ["other-product-home-other-other-other", "55"], + ["other-product-home-other-other-product", "62"], + ["other-product-home-other-other-search", "5"], + ["other-product-home-other-product-account", "27"], + ["other-product-home-other-product-end", "79"], + ["other-product-home-other-product-home", "50"], + ["other-product-home-other-product-other", "72"], + ["other-product-home-other-product-product", "130"], + ["other-product-home-other-product-search", "13"], + ["other-product-home-other-search-account", "1"], + ["other-product-home-other-search-end", "1"], + ["other-product-home-other-search-home", "1"], + ["other-product-home-other-search-product", "7"], + ["other-product-home-product-account-account", "61"], + ["other-product-home-product-account-end", "14"], + ["other-product-home-product-account-home", "13"], + ["other-product-home-product-account-other", "5"], + ["other-product-home-product-account-product", "64"], + ["other-product-home-product-account-search", "1"], + ["other-product-home-product-end", "550"], + ["other-product-home-product-home-account", "22"], + ["other-product-home-product-home-end", "79"], + ["other-product-home-product-home-home", "19"], + ["other-product-home-product-home-other", "36"], + ["other-product-home-product-home-product", "274"], + ["other-product-home-product-home-search", "30"], + ["other-product-home-product-other-account", "3"], + ["other-product-home-product-other-end", "24"], + ["other-product-home-product-other-home", "16"], + ["other-product-home-product-other-other", "26"], + ["other-product-home-product-other-product", "74"], + ["other-product-home-product-other-search", "5"], + ["other-product-home-product-product-account", "54"], + ["other-product-home-product-product-end", "215"], + ["other-product-home-product-product-home", "100"], + ["other-product-home-product-product-other", "53"], + ["other-product-home-product-product-product", "545"], + ["other-product-home-product-product-search", "50"], + ["other-product-home-product-search-account", "14"], + ["other-product-home-product-search-end", "7"], + ["other-product-home-product-search-home", "3"], + ["other-product-home-product-search-product", "80"], + ["other-product-home-product-search-search", "14"], + ["other-product-home-search-account-account", "68"], + ["other-product-home-search-account-end", "5"], + ["other-product-home-search-account-home", "2"], + ["other-product-home-search-account-other", "5"], + ["other-product-home-search-account-product", "28"], + ["other-product-home-search-account-search", "5"], + ["other-product-home-search-end", "38"], + ["other-product-home-search-home-account", "2"], + ["other-product-home-search-home-end", "1"], + ["other-product-home-search-home-home", "1"], + ["other-product-home-search-home-other", "3"], + ["other-product-home-search-home-product", "1"], + ["other-product-home-search-home-search", "9"], + ["other-product-home-search-other-end", "4"], + ["other-product-home-search-other-other", "1"], + ["other-product-home-search-other-product", "3"], + ["other-product-home-search-other-search", "1"], + ["other-product-home-search-product-account", "30"], + ["other-product-home-search-product-end", "174"], + ["other-product-home-search-product-home", "42"], + ["other-product-home-search-product-other", "16"], + ["other-product-home-search-product-product", "297"], + ["other-product-home-search-product-search", "111"], + ["other-product-home-search-search-account", "16"], + ["other-product-home-search-search-end", "10"], + ["other-product-home-search-search-home", "7"], + ["other-product-home-search-search-other", "2"], + ["other-product-home-search-search-product", "98"], + ["other-product-home-search-search-search", "41"], + ["other-product-other-account-account-account", "215"], + ["other-product-other-account-account-end", "48"], + ["other-product-other-account-account-home", "6"], + ["other-product-other-account-account-other", "70"], + ["other-product-other-account-account-product", "205"], + ["other-product-other-account-account-search", "7"], + ["other-product-other-account-end", "130"], + ["other-product-other-account-home-account", "2"], + ["other-product-other-account-home-end", "6"], + ["other-product-other-account-home-home", "6"], + ["other-product-other-account-home-other", "2"], + ["other-product-other-account-home-product", "12"], + ["other-product-other-account-other-account", "15"], + ["other-product-other-account-other-end", "33"], + ["other-product-other-account-other-home", "2"], + ["other-product-other-account-other-other", "43"], + ["other-product-other-account-other-product", "87"], + ["other-product-other-account-other-search", "3"], + ["other-product-other-account-product-account", "54"], + ["other-product-other-account-product-end", "72"], + ["other-product-other-account-product-home", "6"], + ["other-product-other-account-product-other", "62"], + ["other-product-other-account-product-product", "130"], + ["other-product-other-account-product-search", "13"], + ["other-product-other-account-search-account", "6"], + ["other-product-other-account-search-end", "1"], + ["other-product-other-account-search-product", "7"], + ["other-product-other-account-search-search", "3"], + ["other-product-other-end", "10960"], + ["other-product-other-home-account-account", "26"], + ["other-product-other-home-account-end", "1"], + ["other-product-other-home-account-home", "1"], + ["other-product-other-home-account-other", "4"], + ["other-product-other-home-account-product", "14"], + ["other-product-other-home-account-search", "2"], + ["other-product-other-home-end", "123"], + ["other-product-other-home-home-account", "5"], + ["other-product-other-home-home-end", "3"], + ["other-product-other-home-home-home", "6"], + ["other-product-other-home-home-other", "19"], + ["other-product-other-home-home-product", "9"], + ["other-product-other-home-home-search", "7"], + ["other-product-other-home-other-end", "13"], + ["other-product-other-home-other-home", "6"], + ["other-product-other-home-other-other", "17"], + ["other-product-other-home-other-product", "23"], + ["other-product-other-home-other-search", "3"], + ["other-product-other-home-product-account", "32"], + ["other-product-other-home-product-end", "55"], + ["other-product-other-home-product-home", "29"], + ["other-product-other-home-product-other", "39"], + ["other-product-other-home-product-product", "101"], + ["other-product-other-home-product-search", "10"], + ["other-product-other-home-search-account", "4"], + ["other-product-other-home-search-end", "4"], + ["other-product-other-home-search-other", "1"], + ["other-product-other-home-search-product", "45"], + ["other-product-other-home-search-search", "12"], + ["other-product-other-other-account-account", "241"], + ["other-product-other-other-account-end", "60"], + ["other-product-other-other-account-home", "10"], + ["other-product-other-other-account-other", "73"], + ["other-product-other-other-account-product", "107"], + ["other-product-other-other-account-search", "6"], + ["other-product-other-other-end", "1546"], + ["other-product-other-other-home-account", "22"], + ["other-product-other-other-home-end", "22"], + ["other-product-other-other-home-home", "10"], + ["other-product-other-other-home-other", "19"], + ["other-product-other-other-home-product", "47"], + ["other-product-other-other-home-search", "8"], + ["other-product-other-other-other-account", "147"], + ["other-product-other-other-other-end", "426"], + ["other-product-other-other-other-home", "42"], + ["other-product-other-other-other-other", "963"], + ["other-product-other-other-other-product", "740"], + ["other-product-other-other-other-search", "71"], + ["other-product-other-other-product-account", "192"], + ["other-product-other-other-product-end", "770"], + ["other-product-other-other-product-home", "41"], + ["other-product-other-other-product-other", "1298"], + ["other-product-other-other-product-product", "892"], + ["other-product-other-other-product-search", "80"], + ["other-product-other-other-search-account", "30"], + ["other-product-other-other-search-end", "17"], + ["other-product-other-other-search-other", "3"], + ["other-product-other-other-search-product", "153"], + ["other-product-other-other-search-search", "37"], + ["other-product-other-product-account-account", "417"], + ["other-product-other-product-account-end", "121"], + ["other-product-other-product-account-home", "15"], + ["other-product-other-product-account-other", "162"], + ["other-product-other-product-account-product", "314"], + ["other-product-other-product-account-search", "18"], + ["other-product-other-product-end", "6790"], + ["other-product-other-product-home-account", "24"], + ["other-product-other-product-home-end", "47"], + ["other-product-other-product-home-home", "19"], + ["other-product-other-product-home-other", "64"], + ["other-product-other-product-home-product", "118"], + ["other-product-other-product-home-search", "43"], + ["other-product-other-product-other-account", "164"], + ["other-product-other-product-other-end", "2205"], + ["other-product-other-product-other-home", "103"], + ["other-product-other-product-other-other", "1523"], + ["other-product-other-product-other-product", "9842"], + ["other-product-other-product-other-search", "341"], + ["other-product-other-product-product-account", "341"], + ["other-product-other-product-product-end", "1511"], + ["other-product-other-product-product-home", "89"], + ["other-product-other-product-product-other", "1629"], + ["other-product-other-product-product-product", "3275"], + ["other-product-other-product-product-search", "215"], + ["other-product-other-product-search-account", "80"], + ["other-product-other-product-search-end", "19"], + ["other-product-other-product-search-home", "2"], + ["other-product-other-product-search-other", "9"], + ["other-product-other-product-search-product", "470"], + ["other-product-other-product-search-search", "91"], + ["other-product-other-search-account-account", "131"], + ["other-product-other-search-account-end", "20"], + ["other-product-other-search-account-home", "1"], + ["other-product-other-search-account-other", "19"], + ["other-product-other-search-account-product", "68"], + ["other-product-other-search-account-search", "12"], + ["other-product-other-search-end", "75"], + ["other-product-other-search-home-end", "1"], + ["other-product-other-search-home-home", "1"], + ["other-product-other-search-home-search", "1"], + ["other-product-other-search-other-account", "2"], + ["other-product-other-search-other-end", "7"], + ["other-product-other-search-other-other", "3"], + ["other-product-other-search-other-product", "21"], + ["other-product-other-search-other-search", "12"], + ["other-product-other-search-product-account", "38"], + ["other-product-other-search-product-end", "250"], + ["other-product-other-search-product-home", "17"], + ["other-product-other-search-product-other", "126"], + ["other-product-other-search-product-product", "473"], + ["other-product-other-search-product-search", "187"], + ["other-product-other-search-search-account", "22"], + ["other-product-other-search-search-end", "19"], + ["other-product-other-search-search-other", "4"], + ["other-product-other-search-search-product", "163"], + ["other-product-other-search-search-search", "81"], + ["other-product-product-account-account-account", "517"], + ["other-product-product-account-account-end", "193"], + ["other-product-product-account-account-home", "32"], + ["other-product-product-account-account-other", "135"], + ["other-product-product-account-account-product", "948"], + ["other-product-product-account-account-search", "33"], + ["other-product-product-account-end", "446"], + ["other-product-product-account-home-account", "6"], + ["other-product-product-account-home-end", "13"], + ["other-product-product-account-home-home", "3"], + ["other-product-product-account-home-other", "8"], + ["other-product-product-account-home-product", "26"], + ["other-product-product-account-home-search", "7"], + ["other-product-product-account-other-account", "21"], + ["other-product-product-account-other-end", "40"], + ["other-product-product-account-other-home", "5"], + ["other-product-product-account-other-other", "88"], + ["other-product-product-account-other-product", "182"], + ["other-product-product-account-other-search", "11"], + ["other-product-product-account-product-account", "219"], + ["other-product-product-account-product-end", "292"], + ["other-product-product-account-product-home", "33"], + ["other-product-product-account-product-other", "124"], + ["other-product-product-account-product-product", "715"], + ["other-product-product-account-product-search", "47"], + ["other-product-product-account-search-account", "25"], + ["other-product-product-account-search-other", "1"], + ["other-product-product-account-search-product", "43"], + ["other-product-product-account-search-search", "11"], + ["other-product-product-end", "23834"], + ["other-product-product-home-account-account", "42"], + ["other-product-product-home-account-end", "12"], + ["other-product-product-home-account-home", "4"], + ["other-product-product-home-account-other", "3"], + ["other-product-product-home-account-product", "30"], + ["other-product-product-home-account-search", "3"], + ["other-product-product-home-end", "371"], + ["other-product-product-home-home-account", "7"], + ["other-product-product-home-home-end", "22"], + ["other-product-product-home-home-home", "8"], + ["other-product-product-home-home-other", "28"], + ["other-product-product-home-home-product", "40"], + ["other-product-product-home-home-search", "13"], + ["other-product-product-home-other-account", "10"], + ["other-product-product-home-other-end", "27"], + ["other-product-product-home-other-home", "12"], + ["other-product-product-home-other-other", "41"], + ["other-product-product-home-other-product", "96"], + ["other-product-product-home-other-search", "9"], + ["other-product-product-home-product-account", "52"], + ["other-product-product-home-product-end", "169"], + ["other-product-product-home-product-home", "122"], + ["other-product-product-home-product-other", "39"], + ["other-product-product-home-product-product", "363"], + ["other-product-product-home-product-search", "52"], + ["other-product-product-home-search-account", "32"], + ["other-product-product-home-search-end", "16"], + ["other-product-product-home-search-home", "4"], + ["other-product-product-home-search-product", "266"], + ["other-product-product-home-search-search", "70"], + ["other-product-product-other-account-account", "125"], + ["other-product-product-other-account-end", "36"], + ["other-product-product-other-account-home", "2"], + ["other-product-product-other-account-other", "45"], + ["other-product-product-other-account-product", "90"], + ["other-product-product-other-account-search", "5"], + ["other-product-product-other-end", "2170"], + ["other-product-product-other-home-account", "8"], + ["other-product-product-other-home-end", "19"], + ["other-product-product-other-home-home", "16"], + ["other-product-product-other-home-other", "14"], + ["other-product-product-other-home-product", "56"], + ["other-product-product-other-home-search", "19"], + ["other-product-product-other-other-account", "109"], + ["other-product-product-other-other-end", "351"], + ["other-product-product-other-other-home", "27"], + ["other-product-product-other-other-other", "526"], + ["other-product-product-other-other-product", "762"], + ["other-product-product-other-other-search", "63"], + ["other-product-product-other-product-account", "242"], + ["other-product-product-other-product-end", "1293"], + ["other-product-product-other-product-home", "80"], + ["other-product-product-other-product-other", "1751"], + ["other-product-product-other-product-product", "2291"], + ["other-product-product-other-product-search", "154"], + ["other-product-product-other-search-account", "60"], + ["other-product-product-other-search-end", "11"], + ["other-product-product-other-search-other", "11"], + ["other-product-product-other-search-product", "297"], + ["other-product-product-other-search-search", "78"], + ["other-product-product-product-account-account", "836"], + ["other-product-product-product-account-end", "204"], + ["other-product-product-product-account-home", "22"], + ["other-product-product-product-account-other", "149"], + ["other-product-product-product-account-product", "714"], + ["other-product-product-product-account-search", "40"], + ["other-product-product-product-end", "11306"], + ["other-product-product-product-home-account", "41"], + ["other-product-product-product-home-end", "154"], + ["other-product-product-product-home-home", "58"], + ["other-product-product-product-home-other", "76"], + ["other-product-product-product-home-product", "393"], + ["other-product-product-product-home-search", "176"], + ["other-product-product-product-other-account", "130"], + ["other-product-product-product-other-end", "872"], + ["other-product-product-product-other-home", "59"], + ["other-product-product-product-other-other", "726"], + ["other-product-product-product-other-product", "2517"], + ["other-product-product-product-other-search", "174"], + ["other-product-product-product-product-account", "1088"], + ["other-product-product-product-product-end", "6721"], + ["other-product-product-product-product-home", "555"], + ["other-product-product-product-product-other", "2416"], + ["other-product-product-product-product-product", "26888"], + ["other-product-product-product-product-search", "1140"], + ["other-product-product-product-search-account", "125"], + ["other-product-product-product-search-end", "53"], + ["other-product-product-product-search-home", "6"], + ["other-product-product-product-search-other", "21"], + ["other-product-product-product-search-product", "1442"], + ["other-product-product-product-search-search", "300"], + ["other-product-product-search-account-account", "168"], + ["other-product-product-search-account-end", "15"], + ["other-product-product-search-account-home", "2"], + ["other-product-product-search-account-other", "6"], + ["other-product-product-search-account-product", "108"], + ["other-product-product-search-account-search", "14"], + ["other-product-product-search-end", "93"], + ["other-product-product-search-home-account", "2"], + ["other-product-product-search-home-home", "1"], + ["other-product-product-search-home-other", "2"], + ["other-product-product-search-home-product", "3"], + ["other-product-product-search-home-search", "7"], + ["other-product-product-search-other-end", "3"], + ["other-product-product-search-other-home", "1"], + ["other-product-product-search-other-other", "10"], + ["other-product-product-search-other-product", "22"], + ["other-product-product-search-other-search", "8"], + ["other-product-product-search-product-account", "98"], + ["other-product-product-search-product-end", "521"], + ["other-product-product-search-product-home", "49"], + ["other-product-product-search-product-other", "135"], + ["other-product-product-search-product-product", "1380"], + ["other-product-product-search-product-search", "459"], + ["other-product-product-search-search-account", "27"], + ["other-product-product-search-search-end", "26"], + ["other-product-product-search-search-home", "1"], + ["other-product-product-search-search-other", "8"], + ["other-product-product-search-search-product", "391"], + ["other-product-product-search-search-search", "113"], + ["other-product-search-account-account-account", "91"], + ["other-product-search-account-account-end", "33"], + ["other-product-search-account-account-home", "4"], + ["other-product-search-account-account-other", "20"], + ["other-product-search-account-account-product", "202"], + ["other-product-search-account-account-search", "24"], + ["other-product-search-account-end", "45"], + ["other-product-search-account-home-end", "1"], + ["other-product-search-account-home-other", "1"], + ["other-product-search-account-home-product", "1"], + ["other-product-search-account-other-account", "1"], + ["other-product-search-account-other-end", "3"], + ["other-product-search-account-other-other", "8"], + ["other-product-search-account-other-product", "19"], + ["other-product-search-account-other-search", "1"], + ["other-product-search-account-product-account", "36"], + ["other-product-search-account-product-end", "49"], + ["other-product-search-account-product-home", "6"], + ["other-product-search-account-product-other", "17"], + ["other-product-search-account-product-product", "113"], + ["other-product-search-account-product-search", "32"], + ["other-product-search-account-search-account", "22"], + ["other-product-search-account-search-end", "2"], + ["other-product-search-account-search-product", "13"], + ["other-product-search-account-search-search", "5"], + ["other-product-search-end", "295"], + ["other-product-search-home-account-account", "1"], + ["other-product-search-home-account-product", "1"], + ["other-product-search-home-end", "3"], + ["other-product-search-home-home-end", "1"], + ["other-product-search-home-other-other", "2"], + ["other-product-search-home-other-product", "3"], + ["other-product-search-home-product-end", "6"], + ["other-product-search-home-product-home", "2"], + ["other-product-search-home-product-product", "4"], + ["other-product-search-home-product-search", "3"], + ["other-product-search-home-search-end", "1"], + ["other-product-search-home-search-product", "10"], + ["other-product-search-home-search-search", "2"], + ["other-product-search-other-account-account", "2"], + ["other-product-search-other-account-product", "2"], + ["other-product-search-other-end", "12"], + ["other-product-search-other-home-product", "1"], + ["other-product-search-other-home-search", "1"], + ["other-product-search-other-other-account", "1"], + ["other-product-search-other-other-end", "2"], + ["other-product-search-other-other-home", "2"], + ["other-product-search-other-other-other", "3"], + ["other-product-search-other-other-product", "12"], + ["other-product-search-other-other-search", "2"], + ["other-product-search-other-product-account", "2"], + ["other-product-search-other-product-end", "13"], + ["other-product-search-other-product-other", "8"], + ["other-product-search-other-product-product", "21"], + ["other-product-search-other-product-search", "8"], + ["other-product-search-other-search-account", "2"], + ["other-product-search-other-search-end", "2"], + ["other-product-search-other-search-product", "10"], + ["other-product-search-other-search-search", "2"], + ["other-product-search-product-account-account", "93"], + ["other-product-search-product-account-end", "16"], + ["other-product-search-product-account-home", "4"], + ["other-product-search-product-account-other", "13"], + ["other-product-search-product-account-product", "98"], + ["other-product-search-product-account-search", "18"], + ["other-product-search-product-end", "1319"], + ["other-product-search-product-home-account", "6"], + ["other-product-search-product-home-end", "22"], + ["other-product-search-product-home-home", "9"], + ["other-product-search-product-home-other", "16"], + ["other-product-search-product-home-product", "33"], + ["other-product-search-product-home-search", "52"], + ["other-product-search-product-other-account", "6"], + ["other-product-search-product-other-end", "56"], + ["other-product-search-product-other-home", "5"], + ["other-product-search-product-other-other", "72"], + ["other-product-search-product-other-product", "205"], + ["other-product-search-product-other-search", "42"], + ["other-product-search-product-product-account", "101"], + ["other-product-search-product-product-end", "587"], + ["other-product-search-product-product-home", "53"], + ["other-product-search-product-product-other", "168"], + ["other-product-search-product-product-product", "1597"], + ["other-product-search-product-product-search", "468"], + ["other-product-search-product-search-account", "28"], + ["other-product-search-product-search-end", "50"], + ["other-product-search-product-search-home", "5"], + ["other-product-search-product-search-other", "11"], + ["other-product-search-product-search-product", "818"], + ["other-product-search-product-search-search", "167"], + ["other-product-search-search-account-account", "33"], + ["other-product-search-search-account-end", "2"], + ["other-product-search-search-account-home", "2"], + ["other-product-search-search-account-other", "2"], + ["other-product-search-search-account-product", "30"], + ["other-product-search-search-account-search", "3"], + ["other-product-search-search-end", "66"], + ["other-product-search-search-home-account", "1"], + ["other-product-search-search-home-end", "1"], + ["other-product-search-search-home-home", "1"], + ["other-product-search-search-home-other", "2"], + ["other-product-search-search-home-product", "1"], + ["other-product-search-search-home-search", "2"], + ["other-product-search-search-other-account", "1"], + ["other-product-search-search-other-end", "3"], + ["other-product-search-search-other-other", "9"], + ["other-product-search-search-other-product", "19"], + ["other-product-search-search-other-search", "7"], + ["other-product-search-search-product-account", "44"], + ["other-product-search-search-product-end", "151"], + ["other-product-search-search-product-home", "19"], + ["other-product-search-search-product-other", "39"], + ["other-product-search-search-product-product", "404"], + ["other-product-search-search-product-search", "190"], + ["other-product-search-search-search-account", "18"], + ["other-product-search-search-search-end", "25"], + ["other-product-search-search-search-home", "4"], + ["other-product-search-search-search-other", "10"], + ["other-product-search-search-search-product", "143"], + ["other-product-search-search-search-search", "81"], + ["other-search-account-account-account-account", "212"], + ["other-search-account-account-account-end", "50"], + ["other-search-account-account-account-home", "4"], + ["other-search-account-account-account-other", "64"], + ["other-search-account-account-account-product", "170"], + ["other-search-account-account-account-search", "36"], + ["other-search-account-account-end", "166"], + ["other-search-account-account-home-account", "4"], + ["other-search-account-account-home-end", "3"], + ["other-search-account-account-home-home", "2"], + ["other-search-account-account-home-other", "3"], + ["other-search-account-account-home-product", "8"], + ["other-search-account-account-home-search", "2"], + ["other-search-account-account-other-account", "11"], + ["other-search-account-account-other-end", "19"], + ["other-search-account-account-other-home", "2"], + ["other-search-account-account-other-other", "20"], + ["other-search-account-account-other-product", "32"], + ["other-search-account-account-other-search", "14"], + ["other-search-account-account-product-account", "172"], + ["other-search-account-account-product-end", "249"], + ["other-search-account-account-product-home", "20"], + ["other-search-account-account-product-other", "103"], + ["other-search-account-account-product-product", "333"], + ["other-search-account-account-product-search", "55"], + ["other-search-account-account-search-account", "66"], + ["other-search-account-account-search-end", "5"], + ["other-search-account-account-search-other", "4"], + ["other-search-account-account-search-product", "22"], + ["other-search-account-account-search-search", "15"], + ["other-search-account-end", "289"], + ["other-search-account-home-account-product", "1"], + ["other-search-account-home-account-search", "1"], + ["other-search-account-home-end", "4"], + ["other-search-account-home-home-end", "1"], + ["other-search-account-home-home-product", "1"], + ["other-search-account-home-home-search", "1"], + ["other-search-account-home-other-product", "1"], + ["other-search-account-home-product-account", "1"], + ["other-search-account-home-product-home", "1"], + ["other-search-account-home-product-other", "1"], + ["other-search-account-home-product-product", "3"], + ["other-search-account-home-product-search", "2"], + ["other-search-account-home-search-account", "2"], + ["other-search-account-home-search-end", "1"], + ["other-search-account-home-search-product", "2"], + ["other-search-account-other-account-account", "7"], + ["other-search-account-other-account-end", "2"], + ["other-search-account-other-account-other", "6"], + ["other-search-account-other-account-product", "3"], + ["other-search-account-other-account-search", "3"], + ["other-search-account-other-end", "40"], + ["other-search-account-other-home-account", "1"], + ["other-search-account-other-home-end", "2"], + ["other-search-account-other-home-other", "1"], + ["other-search-account-other-other-account", "1"], + ["other-search-account-other-other-end", "6"], + ["other-search-account-other-other-home", "3"], + ["other-search-account-other-other-other", "24"], + ["other-search-account-other-other-product", "12"], + ["other-search-account-other-other-search", "2"], + ["other-search-account-other-product-account", "6"], + ["other-search-account-other-product-end", "22"], + ["other-search-account-other-product-other", "19"], + ["other-search-account-other-product-product", "53"], + ["other-search-account-other-product-search", "8"], + ["other-search-account-other-search-account", "17"], + ["other-search-account-other-search-end", "2"], + ["other-search-account-other-search-other", "1"], + ["other-search-account-other-search-product", "7"], + ["other-search-account-other-search-search", "5"], + ["other-search-account-product-account-account", "42"], + ["other-search-account-product-account-end", "6"], + ["other-search-account-product-account-home", "1"], + ["other-search-account-product-account-other", "10"], + ["other-search-account-product-account-product", "83"], + ["other-search-account-product-account-search", "11"], + ["other-search-account-product-end", "287"], + ["other-search-account-product-home-end", "2"], + ["other-search-account-product-home-home", "3"], + ["other-search-account-product-home-other", "3"], + ["other-search-account-product-home-product", "7"], + ["other-search-account-product-home-search", "3"], + ["other-search-account-product-other-account", "5"], + ["other-search-account-product-other-end", "17"], + ["other-search-account-product-other-home", "1"], + ["other-search-account-product-other-other", "16"], + ["other-search-account-product-other-product", "36"], + ["other-search-account-product-other-search", "20"], + ["other-search-account-product-product-account", "39"], + ["other-search-account-product-product-end", "109"], + ["other-search-account-product-product-home", "5"], + ["other-search-account-product-product-other", "23"], + ["other-search-account-product-product-product", "254"], + ["other-search-account-product-product-search", "40"], + ["other-search-account-product-search-account", "29"], + ["other-search-account-product-search-end", "4"], + ["other-search-account-product-search-product", "38"], + ["other-search-account-product-search-search", "13"], + ["other-search-account-search-account-account", "32"], + ["other-search-account-search-account-end", "12"], + ["other-search-account-search-account-home", "1"], + ["other-search-account-search-account-other", "3"], + ["other-search-account-search-account-product", "23"], + ["other-search-account-search-account-search", "16"], + ["other-search-account-search-end", "7"], + ["other-search-account-search-other-other", "1"], + ["other-search-account-search-other-product", "1"], + ["other-search-account-search-product-account", "10"], + ["other-search-account-search-product-end", "15"], + ["other-search-account-search-product-home", "1"], + ["other-search-account-search-product-other", "3"], + ["other-search-account-search-product-product", "19"], + ["other-search-account-search-product-search", "8"], + ["other-search-account-search-search-account", "7"], + ["other-search-account-search-search-end", "2"], + ["other-search-account-search-search-product", "7"], + ["other-search-account-search-search-search", "11"], + ["other-search-end", "1969"], + ["other-search-home-account-account-account", "2"], + ["other-search-home-account-account-home", "1"], + ["other-search-home-account-account-product", "1"], + ["other-search-home-account-end", "1"], + ["other-search-home-account-other-product", "1"], + ["other-search-home-account-product-home", "2"], + ["other-search-home-account-search-account", "1"], + ["other-search-home-end", "34"], + ["other-search-home-home-account-account", "1"], + ["other-search-home-home-end", "4"], + ["other-search-home-home-home-end", "2"], + ["other-search-home-home-home-product", "1"], + ["other-search-home-home-home-search", "1"], + ["other-search-home-home-other-home", "1"], + ["other-search-home-home-other-product", "1"], + ["other-search-home-home-product-end", "1"], + ["other-search-home-home-product-home", "1"], + ["other-search-home-home-product-other", "1"], + ["other-search-home-home-product-product", "6"], + ["other-search-home-home-search-product", "1"], + ["other-search-home-home-search-search", "1"], + ["other-search-home-other-end", "3"], + ["other-search-home-other-home-other", "1"], + ["other-search-home-other-home-search", "1"], + ["other-search-home-other-other-other", "2"], + ["other-search-home-other-other-product", "6"], + ["other-search-home-other-product-account", "1"], + ["other-search-home-other-product-end", "2"], + ["other-search-home-other-product-other", "1"], + ["other-search-home-other-product-product", "1"], + ["other-search-home-other-search-product", "1"], + ["other-search-home-product-account-home", "1"], + ["other-search-home-product-end", "16"], + ["other-search-home-product-home-end", "10"], + ["other-search-home-product-home-home", "1"], + ["other-search-home-product-home-product", "6"], + ["other-search-home-product-home-search", "1"], + ["other-search-home-product-other-end", "2"], + ["other-search-home-product-other-other", "1"], + ["other-search-home-product-other-search", "1"], + ["other-search-home-product-product-account", "1"], + ["other-search-home-product-product-end", "5"], + ["other-search-home-product-product-home", "3"], + ["other-search-home-product-product-product", "17"], + ["other-search-home-product-product-search", "1"], + ["other-search-home-product-search-account", "1"], + ["other-search-home-product-search-home", "1"], + ["other-search-home-product-search-product", "4"], + ["other-search-home-product-search-search", "3"], + ["other-search-home-search-account-account", "2"], + ["other-search-home-search-account-product", "1"], + ["other-search-home-search-end", "5"], + ["other-search-home-search-home-home", "2"], + ["other-search-home-search-home-search", "5"], + ["other-search-home-search-product-account", "4"], + ["other-search-home-search-product-end", "10"], + ["other-search-home-search-product-home", "1"], + ["other-search-home-search-product-other", "2"], + ["other-search-home-search-product-product", "23"], + ["other-search-home-search-product-search", "5"], + ["other-search-home-search-search-end", "1"], + ["other-search-home-search-search-product", "5"], + ["other-search-home-search-search-search", "4"], + ["other-search-other-account-account-account", "4"], + ["other-search-other-account-account-end", "2"], + ["other-search-other-account-account-home", "1"], + ["other-search-other-account-account-other", "1"], + ["other-search-other-account-account-product", "9"], + ["other-search-other-account-end", "2"], + ["other-search-other-account-home-account", "1"], + ["other-search-other-account-other-account", "1"], + ["other-search-other-account-other-end", "1"], + ["other-search-other-account-other-other", "1"], + ["other-search-other-account-other-product", "2"], + ["other-search-other-account-other-search", "1"], + ["other-search-other-account-product-account", "1"], + ["other-search-other-account-product-end", "2"], + ["other-search-other-account-product-other", "1"], + ["other-search-other-account-product-product", "2"], + ["other-search-other-account-product-search", "2"], + ["other-search-other-account-search-account", "1"], + ["other-search-other-account-search-end", "1"], + ["other-search-other-end", "115"], + ["other-search-other-home-end", "4"], + ["other-search-other-home-home-other", "1"], + ["other-search-other-home-other-account", "1"], + ["other-search-other-home-other-search", "1"], + ["other-search-other-home-product-account", "1"], + ["other-search-other-home-product-product", "2"], + ["other-search-other-home-search-end", "1"], + ["other-search-other-home-search-product", "1"], + ["other-search-other-other-account-account", "4"], + ["other-search-other-other-account-end", "2"], + ["other-search-other-other-account-product", "4"], + ["other-search-other-other-end", "24"], + ["other-search-other-other-home-account", "1"], + ["other-search-other-other-home-product", "2"], + ["other-search-other-other-other-account", "1"], + ["other-search-other-other-other-end", "7"], + ["other-search-other-other-other-other", "13"], + ["other-search-other-other-other-product", "11"], + ["other-search-other-other-other-search", "2"], + ["other-search-other-other-product-account", "1"], + ["other-search-other-other-product-end", "6"], + ["other-search-other-other-product-home", "1"], + ["other-search-other-other-product-other", "10"], + ["other-search-other-other-product-product", "17"], + ["other-search-other-other-product-search", "4"], + ["other-search-other-other-search-account", "1"], + ["other-search-other-other-search-end", "3"], + ["other-search-other-other-search-home", "1"], + ["other-search-other-other-search-other", "1"], + ["other-search-other-other-search-product", "12"], + ["other-search-other-other-search-search", "2"], + ["other-search-other-product-account-account", "5"], + ["other-search-other-product-account-product", "1"], + ["other-search-other-product-end", "52"], + ["other-search-other-product-home-home", "1"], + ["other-search-other-product-home-product", "1"], + ["other-search-other-product-home-search", "1"], + ["other-search-other-product-other-account", "2"], + ["other-search-other-product-other-end", "5"], + ["other-search-other-product-other-other", "12"], + ["other-search-other-product-other-product", "15"], + ["other-search-other-product-other-search", "4"], + ["other-search-other-product-product-account", "8"], + ["other-search-other-product-product-end", "19"], + ["other-search-other-product-product-other", "8"], + ["other-search-other-product-product-product", "66"], + ["other-search-other-product-product-search", "11"], + ["other-search-other-product-search-end", "1"], + ["other-search-other-product-search-home", "1"], + ["other-search-other-product-search-product", "12"], + ["other-search-other-product-search-search", "2"], + ["other-search-other-search-account-account", "6"], + ["other-search-other-search-account-end", "1"], + ["other-search-other-search-account-other", "4"], + ["other-search-other-search-account-product", "4"], + ["other-search-other-search-end", "14"], + ["other-search-other-search-other-end", "1"], + ["other-search-other-search-other-other", "4"], + ["other-search-other-search-other-search", "8"], + ["other-search-other-search-product-account", "5"], + ["other-search-other-search-product-end", "34"], + ["other-search-other-search-product-home", "3"], + ["other-search-other-search-product-other", "7"], + ["other-search-other-search-product-product", "61"], + ["other-search-other-search-product-search", "22"], + ["other-search-other-search-search-account", "2"], + ["other-search-other-search-search-end", "7"], + ["other-search-other-search-search-other", "1"], + ["other-search-other-search-search-product", "20"], + ["other-search-other-search-search-search", "10"], + ["other-search-product-account-account-account", "116"], + ["other-search-product-account-account-end", "33"], + ["other-search-product-account-account-home", "7"], + ["other-search-product-account-account-other", "23"], + ["other-search-product-account-account-product", "205"], + ["other-search-product-account-account-search", "30"], + ["other-search-product-account-end", "101"], + ["other-search-product-account-home-account", "3"], + ["other-search-product-account-home-end", "1"], + ["other-search-product-account-home-home", "1"], + ["other-search-product-account-home-product", "1"], + ["other-search-product-account-home-search", "2"], + ["other-search-product-account-other-account", "8"], + ["other-search-product-account-other-end", "7"], + ["other-search-product-account-other-home", "1"], + ["other-search-product-account-other-other", "17"], + ["other-search-product-account-other-product", "29"], + ["other-search-product-account-other-search", "8"], + ["other-search-product-account-product-account", "61"], + ["other-search-product-account-product-end", "74"], + ["other-search-product-account-product-home", "6"], + ["other-search-product-account-product-other", "20"], + ["other-search-product-account-product-product", "182"], + ["other-search-product-account-product-search", "34"], + ["other-search-product-account-search-account", "10"], + ["other-search-product-account-search-product", "30"], + ["other-search-product-account-search-search", "10"], + ["other-search-product-end", "8701"], + ["other-search-product-home-account-account", "10"], + ["other-search-product-home-account-end", "3"], + ["other-search-product-home-account-home", "1"], + ["other-search-product-home-account-other", "1"], + ["other-search-product-home-account-product", "9"], + ["other-search-product-home-account-search", "1"], + ["other-search-product-home-end", "101"], + ["other-search-product-home-home-account", "2"], + ["other-search-product-home-home-end", "3"], + ["other-search-product-home-home-home", "2"], + ["other-search-product-home-home-other", "4"], + ["other-search-product-home-home-product", "9"], + ["other-search-product-home-home-search", "10"], + ["other-search-product-home-other-account", "1"], + ["other-search-product-home-other-end", "7"], + ["other-search-product-home-other-home", "2"], + ["other-search-product-home-other-other", "11"], + ["other-search-product-home-other-product", "15"], + ["other-search-product-home-other-search", "8"], + ["other-search-product-home-product-account", "12"], + ["other-search-product-home-product-end", "33"], + ["other-search-product-home-product-home", "25"], + ["other-search-product-home-product-other", "6"], + ["other-search-product-home-product-product", "50"], + ["other-search-product-home-product-search", "15"], + ["other-search-product-home-search-account", "7"], + ["other-search-product-home-search-end", "9"], + ["other-search-product-home-search-home", "2"], + ["other-search-product-home-search-other", "1"], + ["other-search-product-home-search-product", "111"], + ["other-search-product-home-search-search", "20"], + ["other-search-product-other-account-account", "14"], + ["other-search-product-other-account-end", "4"], + ["other-search-product-other-account-home", "1"], + ["other-search-product-other-account-other", "5"], + ["other-search-product-other-account-product", "11"], + ["other-search-product-other-end", "319"], + ["other-search-product-other-home-account", "3"], + ["other-search-product-other-home-end", "10"], + ["other-search-product-other-home-home", "4"], + ["other-search-product-other-home-other", "1"], + ["other-search-product-other-home-product", "18"], + ["other-search-product-other-home-search", "8"], + ["other-search-product-other-other-account", "17"], + ["other-search-product-other-other-end", "54"], + ["other-search-product-other-other-home", "5"], + ["other-search-product-other-other-other", "105"], + ["other-search-product-other-other-product", "115"], + ["other-search-product-other-other-search", "32"], + ["other-search-product-other-product-account", "26"], + ["other-search-product-other-product-end", "161"], + ["other-search-product-other-product-home", "12"], + ["other-search-product-other-product-other", "151"], + ["other-search-product-other-product-product", "249"], + ["other-search-product-other-product-search", "67"], + ["other-search-product-other-search-account", "18"], + ["other-search-product-other-search-end", "16"], + ["other-search-product-other-search-home", "1"], + ["other-search-product-other-search-other", "11"], + ["other-search-product-other-search-product", "373"], + ["other-search-product-other-search-search", "65"], + ["other-search-product-product-account-account", "188"], + ["other-search-product-product-account-end", "36"], + ["other-search-product-product-account-home", "3"], + ["other-search-product-product-account-other", "23"], + ["other-search-product-product-account-product", "156"], + ["other-search-product-product-account-search", "20"], + ["other-search-product-product-end", "3229"], + ["other-search-product-product-home-account", "6"], + ["other-search-product-product-home-end", "32"], + ["other-search-product-product-home-home", "11"], + ["other-search-product-product-home-other", "21"], + ["other-search-product-product-home-product", "63"], + ["other-search-product-product-home-search", "56"], + ["other-search-product-product-other-account", "24"], + ["other-search-product-product-other-end", "149"], + ["other-search-product-product-other-home", "13"], + ["other-search-product-product-other-other", "133"], + ["other-search-product-product-other-product", "280"], + ["other-search-product-product-other-search", "193"], + ["other-search-product-product-product-account", "201"], + ["other-search-product-product-product-end", "1410"], + ["other-search-product-product-product-home", "93"], + ["other-search-product-product-product-other", "343"], + ["other-search-product-product-product-product", "4377"], + ["other-search-product-product-product-search", "928"], + ["other-search-product-product-search-account", "48"], + ["other-search-product-product-search-end", "87"], + ["other-search-product-product-search-home", "6"], + ["other-search-product-product-search-other", "35"], + ["other-search-product-product-search-product", "1583"], + ["other-search-product-product-search-search", "312"], + ["other-search-product-search-account-account", "55"], + ["other-search-product-search-account-end", "2"], + ["other-search-product-search-account-other", "4"], + ["other-search-product-search-account-product", "50"], + ["other-search-product-search-account-search", "14"], + ["other-search-product-search-end", "200"], + ["other-search-product-search-home-account", "1"], + ["other-search-product-search-home-end", "1"], + ["other-search-product-search-home-home", "1"], + ["other-search-product-search-home-other", "1"], + ["other-search-product-search-home-product", "2"], + ["other-search-product-search-home-search", "9"], + ["other-search-product-search-other-account", "4"], + ["other-search-product-search-other-end", "17"], + ["other-search-product-search-other-home", "1"], + ["other-search-product-search-other-other", "19"], + ["other-search-product-search-other-product", "17"], + ["other-search-product-search-other-search", "22"], + ["other-search-product-search-product-account", "73"], + ["other-search-product-search-product-end", "978"], + ["other-search-product-search-product-home", "75"], + ["other-search-product-search-product-other", "193"], + ["other-search-product-search-product-product", "1553"], + ["other-search-product-search-product-search", "1087"], + ["other-search-product-search-search-account", "15"], + ["other-search-product-search-search-end", "56"], + ["other-search-product-search-search-home", "1"], + ["other-search-product-search-search-other", "14"], + ["other-search-product-search-search-product", "523"], + ["other-search-product-search-search-search", "198"], + ["other-search-search-account-account-account", "57"], + ["other-search-search-account-account-end", "13"], + ["other-search-search-account-account-home", "4"], + ["other-search-search-account-account-other", "12"], + ["other-search-search-account-account-product", "107"], + ["other-search-search-account-account-search", "11"], + ["other-search-search-account-end", "29"], + ["other-search-search-account-home-account", "1"], + ["other-search-search-account-home-end", "1"], + ["other-search-search-account-home-search", "1"], + ["other-search-search-account-other-account", "1"], + ["other-search-search-account-other-end", "2"], + ["other-search-search-account-other-other", "5"], + ["other-search-search-account-other-product", "14"], + ["other-search-search-account-other-search", "5"], + ["other-search-search-account-product-account", "17"], + ["other-search-search-account-product-end", "27"], + ["other-search-search-account-product-other", "16"], + ["other-search-search-account-product-product", "43"], + ["other-search-search-account-product-search", "7"], + ["other-search-search-account-search-account", "5"], + ["other-search-search-account-search-other", "1"], + ["other-search-search-account-search-product", "10"], + ["other-search-search-account-search-search", "7"], + ["other-search-search-end", "522"], + ["other-search-search-home-account-end", "2"], + ["other-search-search-home-end", "2"], + ["other-search-search-home-home-end", "1"], + ["other-search-search-home-home-other", "1"], + ["other-search-search-home-home-product", "1"], + ["other-search-search-home-home-search", "1"], + ["other-search-search-home-other-end", "1"], + ["other-search-search-home-other-other", "1"], + ["other-search-search-home-other-search", "1"], + ["other-search-search-home-product-account", "2"], + ["other-search-search-home-product-end", "8"], + ["other-search-search-home-product-home", "3"], + ["other-search-search-home-product-product", "4"], + ["other-search-search-home-product-search", "1"], + ["other-search-search-home-search-account", "3"], + ["other-search-search-home-search-end", "1"], + ["other-search-search-home-search-product", "6"], + ["other-search-search-home-search-search", "7"], + ["other-search-search-other-account-account", "1"], + ["other-search-search-other-account-home", "1"], + ["other-search-search-other-account-product", "2"], + ["other-search-search-other-end", "30"], + ["other-search-search-other-home-other", "1"], + ["other-search-search-other-home-product", "3"], + ["other-search-search-other-other-account", "3"], + ["other-search-search-other-other-end", "4"], + ["other-search-search-other-other-other", "13"], + ["other-search-search-other-other-product", "6"], + ["other-search-search-other-other-search", "3"], + ["other-search-search-other-product-account", "1"], + ["other-search-search-other-product-end", "16"], + ["other-search-search-other-product-other", "9"], + ["other-search-search-other-product-product", "20"], + ["other-search-search-other-product-search", "4"], + ["other-search-search-other-search-account", "3"], + ["other-search-search-other-search-end", "3"], + ["other-search-search-other-search-product", "16"], + ["other-search-search-other-search-search", "20"], + ["other-search-search-product-account-account", "66"], + ["other-search-search-product-account-end", "21"], + ["other-search-search-product-account-other", "7"], + ["other-search-search-product-account-product", "51"], + ["other-search-search-product-account-search", "3"], + ["other-search-search-product-end", "1186"], + ["other-search-search-product-home-account", "1"], + ["other-search-search-product-home-end", "12"], + ["other-search-search-product-home-home", "3"], + ["other-search-search-product-home-other", "4"], + ["other-search-search-product-home-product", "18"], + ["other-search-search-product-home-search", "29"], + ["other-search-search-product-other-account", "8"], + ["other-search-search-product-other-end", "40"], + ["other-search-search-product-other-home", "9"], + ["other-search-search-product-other-other", "52"], + ["other-search-search-product-other-product", "93"], + ["other-search-search-product-other-search", "69"], + ["other-search-search-product-product-account", "66"], + ["other-search-search-product-product-end", "467"], + ["other-search-search-product-product-home", "30"], + ["other-search-search-product-product-other", "129"], + ["other-search-search-product-product-product", "1078"], + ["other-search-search-product-product-search", "349"], + ["other-search-search-product-search-account", "20"], + ["other-search-search-product-search-end", "44"], + ["other-search-search-product-search-home", "2"], + ["other-search-search-product-search-other", "19"], + ["other-search-search-product-search-product", "585"], + ["other-search-search-product-search-search", "208"], + ["other-search-search-search-account-account", "56"], + ["other-search-search-search-account-end", "7"], + ["other-search-search-search-account-other", "5"], + ["other-search-search-search-account-product", "34"], + ["other-search-search-search-account-search", "8"], + ["other-search-search-search-end", "178"], + ["other-search-search-search-home-account", "2"], + ["other-search-search-search-home-end", "2"], + ["other-search-search-search-home-home", "4"], + ["other-search-search-search-home-other", "1"], + ["other-search-search-search-home-product", "6"], + ["other-search-search-search-home-search", "1"], + ["other-search-search-search-other-account", "4"], + ["other-search-search-search-other-end", "11"], + ["other-search-search-search-other-home", "1"], + ["other-search-search-search-other-other", "18"], + ["other-search-search-search-other-product", "19"], + ["other-search-search-search-other-search", "20"], + ["other-search-search-search-product-account", "37"], + ["other-search-search-search-product-end", "247"], + ["other-search-search-search-product-home", "15"], + ["other-search-search-search-product-other", "49"], + ["other-search-search-search-product-product", "419"], + ["other-search-search-search-product-search", "219"], + ["other-search-search-search-search-account", "27"], + ["other-search-search-search-search-end", "56"], + ["other-search-search-search-search-home", "8"], + ["other-search-search-search-search-other", "20"], + ["other-search-search-search-search-product", "304"], + ["other-search-search-search-search-search", "272"], + ["product-account-account-account-account-account", "9803"], + ["product-account-account-account-account-end", "2495"], + ["product-account-account-account-account-home", "766"], + ["product-account-account-account-account-other", "714"], + ["product-account-account-account-account-product", "6391"], + ["product-account-account-account-account-search", "517"], + ["product-account-account-account-end", "6564"], + ["product-account-account-account-home-account", "254"], + ["product-account-account-account-home-end", "401"], + ["product-account-account-account-home-home", "180"], + ["product-account-account-account-home-other", "72"], + ["product-account-account-account-home-product", "853"], + ["product-account-account-account-home-search", "270"], + ["product-account-account-account-other-account", "331"], + ["product-account-account-account-other-end", "304"], + ["product-account-account-account-other-home", "86"], + ["product-account-account-account-other-other", "712"], + ["product-account-account-account-other-product", "1656"], + ["product-account-account-account-other-search", "60"], + ["product-account-account-account-product-account", "3579"], + ["product-account-account-account-product-end", "4209"], + ["product-account-account-account-product-home", "1036"], + ["product-account-account-account-product-other", "343"], + ["product-account-account-account-product-product", "8955"], + ["product-account-account-account-product-search", "887"], + ["product-account-account-account-search-account", "394"], + ["product-account-account-account-search-end", "55"], + ["product-account-account-account-search-home", "9"], + ["product-account-account-account-search-other", "7"], + ["product-account-account-account-search-product", "636"], + ["product-account-account-account-search-search", "222"], + ["product-account-account-end", "30523"], + ["product-account-account-home-account-account", "548"], + ["product-account-account-home-account-end", "85"], + ["product-account-account-home-account-home", "81"], + ["product-account-account-home-account-other", "33"], + ["product-account-account-home-account-product", "270"], + ["product-account-account-home-account-search", "21"], + ["product-account-account-home-end", "1859"], + ["product-account-account-home-home-account", "102"], + ["product-account-account-home-home-end", "134"], + ["product-account-account-home-home-home", "127"], + ["product-account-account-home-home-other", "41"], + ["product-account-account-home-home-product", "269"], + ["product-account-account-home-home-search", "101"], + ["product-account-account-home-other-account", "32"], + ["product-account-account-home-other-end", "25"], + ["product-account-account-home-other-home", "30"], + ["product-account-account-home-other-other", "125"], + ["product-account-account-home-other-product", "77"], + ["product-account-account-home-other-search", "7"], + ["product-account-account-home-product-account", "603"], + ["product-account-account-home-product-end", "852"], + ["product-account-account-home-product-home", "683"], + ["product-account-account-home-product-other", "49"], + ["product-account-account-home-product-product", "1486"], + ["product-account-account-home-product-search", "194"], + ["product-account-account-home-search-account", "219"], + ["product-account-account-home-search-end", "46"], + ["product-account-account-home-search-home", "19"], + ["product-account-account-home-search-other", "4"], + ["product-account-account-home-search-product", "663"], + ["product-account-account-home-search-search", "219"], + ["product-account-account-other-account-account", "278"], + ["product-account-account-other-account-end", "75"], + ["product-account-account-other-account-home", "17"], + ["product-account-account-other-account-other", "72"], + ["product-account-account-other-account-product", "132"], + ["product-account-account-other-account-search", "16"], + ["product-account-account-other-end", "513"], + ["product-account-account-other-home-account", "28"], + ["product-account-account-other-home-end", "29"], + ["product-account-account-other-home-home", "24"], + ["product-account-account-other-home-other", "8"], + ["product-account-account-other-home-product", "76"], + ["product-account-account-other-home-search", "18"], + ["product-account-account-other-other-account", "197"], + ["product-account-account-other-other-end", "224"], + ["product-account-account-other-other-home", "76"], + ["product-account-account-other-other-other", "570"], + ["product-account-account-other-other-product", "486"], + ["product-account-account-other-other-search", "44"], + ["product-account-account-other-product-account", "206"], + ["product-account-account-other-product-end", "494"], + ["product-account-account-other-product-home", "76"], + ["product-account-account-other-product-other", "126"], + ["product-account-account-other-product-product", "1030"], + ["product-account-account-other-product-search", "65"], + ["product-account-account-other-search-account", "30"], + ["product-account-account-other-search-end", "2"], + ["product-account-account-other-search-home", "1"], + ["product-account-account-other-search-other", "3"], + ["product-account-account-other-search-product", "41"], + ["product-account-account-other-search-search", "18"], + ["product-account-account-product-account-account", "8799"], + ["product-account-account-product-account-end", "1317"], + ["product-account-account-product-account-home", "405"], + ["product-account-account-product-account-other", "376"], + ["product-account-account-product-account-product", "5602"], + ["product-account-account-product-account-search", "284"], + ["product-account-account-product-end", "23993"], + ["product-account-account-product-home-account", "627"], + ["product-account-account-product-home-end", "1272"], + ["product-account-account-product-home-home", "487"], + ["product-account-account-product-home-other", "184"], + ["product-account-account-product-home-product", "2745"], + ["product-account-account-product-home-search", "919"], + ["product-account-account-product-other-account", "170"], + ["product-account-account-product-other-end", "146"], + ["product-account-account-product-other-home", "55"], + ["product-account-account-product-other-other", "466"], + ["product-account-account-product-other-product", "428"], + ["product-account-account-product-other-search", "28"], + ["product-account-account-product-product-account", "5558"], + ["product-account-account-product-product-end", "10120"], + ["product-account-account-product-product-home", "2286"], + ["product-account-account-product-product-other", "467"], + ["product-account-account-product-product-product", "24646"], + ["product-account-account-product-product-search", "1996"], + ["product-account-account-product-search-account", "775"], + ["product-account-account-product-search-end", "167"], + ["product-account-account-product-search-home", "40"], + ["product-account-account-product-search-other", "11"], + ["product-account-account-product-search-product", "2735"], + ["product-account-account-product-search-search", "726"], + ["product-account-account-search-account-account", "810"], + ["product-account-account-search-account-end", "77"], + ["product-account-account-search-account-home", "27"], + ["product-account-account-search-account-other", "23"], + ["product-account-account-search-account-product", "309"], + ["product-account-account-search-account-search", "77"], + ["product-account-account-search-end", "250"], + ["product-account-account-search-home-account", "8"], + ["product-account-account-search-home-end", "1"], + ["product-account-account-search-home-home", "5"], + ["product-account-account-search-home-other", "2"], + ["product-account-account-search-home-product", "22"], + ["product-account-account-search-home-search", "16"], + ["product-account-account-search-other-account", "2"], + ["product-account-account-search-other-end", "2"], + ["product-account-account-search-other-home", "1"], + ["product-account-account-search-other-other", "4"], + ["product-account-account-search-other-product", "6"], + ["product-account-account-search-other-search", "2"], + ["product-account-account-search-product-account", "329"], + ["product-account-account-search-product-end", "594"], + ["product-account-account-search-product-home", "121"], + ["product-account-account-search-product-other", "24"], + ["product-account-account-search-product-product", "1257"], + ["product-account-account-search-product-search", "467"], + ["product-account-account-search-search-account", "129"], + ["product-account-account-search-search-end", "59"], + ["product-account-account-search-search-home", "11"], + ["product-account-account-search-search-other", "4"], + ["product-account-account-search-search-product", "453"], + ["product-account-account-search-search-search", "252"], + ["product-account-end", "89985"], + ["product-account-home-account-account-account", "331"], + ["product-account-home-account-account-end", "87"], + ["product-account-home-account-account-home", "85"], + ["product-account-home-account-account-other", "32"], + ["product-account-home-account-account-product", "325"], + ["product-account-home-account-account-search", "23"], + ["product-account-home-account-end", "271"], + ["product-account-home-account-home-account", "77"], + ["product-account-home-account-home-end", "60"], + ["product-account-home-account-home-home", "34"], + ["product-account-home-account-home-other", "10"], + ["product-account-home-account-home-product", "125"], + ["product-account-home-account-home-search", "18"], + ["product-account-home-account-other-account", "10"], + ["product-account-home-account-other-end", "8"], + ["product-account-home-account-other-home", "5"], + ["product-account-home-account-other-other", "47"], + ["product-account-home-account-other-product", "27"], + ["product-account-home-account-other-search", "3"], + ["product-account-home-account-product-account", "166"], + ["product-account-home-account-product-end", "173"], + ["product-account-home-account-product-home", "100"], + ["product-account-home-account-product-other", "14"], + ["product-account-home-account-product-product", "310"], + ["product-account-home-account-product-search", "31"], + ["product-account-home-account-search-account", "30"], + ["product-account-home-account-search-end", "1"], + ["product-account-home-account-search-home", "5"], + ["product-account-home-account-search-other", "1"], + ["product-account-home-account-search-product", "30"], + ["product-account-home-account-search-search", "13"], + ["product-account-home-end", "4652"], + ["product-account-home-home-account-account", "87"], + ["product-account-home-home-account-end", "27"], + ["product-account-home-home-account-home", "26"], + ["product-account-home-home-account-other", "16"], + ["product-account-home-home-account-product", "85"], + ["product-account-home-home-account-search", "7"], + ["product-account-home-home-end", "325"], + ["product-account-home-home-home-account", "56"], + ["product-account-home-home-home-end", "35"], + ["product-account-home-home-home-home", "73"], + ["product-account-home-home-home-other", "18"], + ["product-account-home-home-home-product", "77"], + ["product-account-home-home-home-search", "24"], + ["product-account-home-home-other-account", "19"], + ["product-account-home-home-other-end", "1"], + ["product-account-home-home-other-home", "14"], + ["product-account-home-home-other-other", "67"], + ["product-account-home-home-other-product", "31"], + ["product-account-home-home-other-search", "1"], + ["product-account-home-home-product-account", "111"], + ["product-account-home-home-product-end", "147"], + ["product-account-home-home-product-home", "147"], + ["product-account-home-home-product-other", "19"], + ["product-account-home-home-product-product", "281"], + ["product-account-home-home-product-search", "29"], + ["product-account-home-home-search-account", "51"], + ["product-account-home-home-search-end", "10"], + ["product-account-home-home-search-home", "3"], + ["product-account-home-home-search-other", "1"], + ["product-account-home-home-search-product", "146"], + ["product-account-home-home-search-search", "39"], + ["product-account-home-other-account-account", "32"], + ["product-account-home-other-account-end", "8"], + ["product-account-home-other-account-home", "17"], + ["product-account-home-other-account-other", "15"], + ["product-account-home-other-account-product", "29"], + ["product-account-home-other-account-search", "2"], + ["product-account-home-other-end", "66"], + ["product-account-home-other-home-account", "8"], + ["product-account-home-other-home-end", "18"], + ["product-account-home-other-home-home", "5"], + ["product-account-home-other-home-other", "6"], + ["product-account-home-other-home-product", "28"], + ["product-account-home-other-home-search", "5"], + ["product-account-home-other-other-account", "29"], + ["product-account-home-other-other-end", "49"], + ["product-account-home-other-other-home", "24"], + ["product-account-home-other-other-other", "96"], + ["product-account-home-other-other-product", "94"], + ["product-account-home-other-other-search", "7"], + ["product-account-home-other-product-account", "26"], + ["product-account-home-other-product-end", "38"], + ["product-account-home-other-product-home", "26"], + ["product-account-home-other-product-other", "17"], + ["product-account-home-other-product-product", "96"], + ["product-account-home-other-product-search", "7"], + ["product-account-home-other-search-account", "4"], + ["product-account-home-other-search-product", "5"], + ["product-account-home-other-search-search", "3"], + ["product-account-home-product-account-account", "482"], + ["product-account-home-product-account-end", "142"], + ["product-account-home-product-account-home", "160"], + ["product-account-home-product-account-other", "36"], + ["product-account-home-product-account-product", "548"], + ["product-account-home-product-account-search", "44"], + ["product-account-home-product-end", "2384"], + ["product-account-home-product-home-account", "154"], + ["product-account-home-product-home-end", "414"], + ["product-account-home-product-home-home", "134"], + ["product-account-home-product-home-other", "40"], + ["product-account-home-product-home-product", "1045"], + ["product-account-home-product-home-search", "167"], + ["product-account-home-product-other-account", "17"], + ["product-account-home-product-other-end", "14"], + ["product-account-home-product-other-home", "12"], + ["product-account-home-product-other-other", "26"], + ["product-account-home-product-other-product", "45"], + ["product-account-home-product-other-search", "2"], + ["product-account-home-product-product-account", "404"], + ["product-account-home-product-product-end", "922"], + ["product-account-home-product-product-home", "560"], + ["product-account-home-product-product-other", "31"], + ["product-account-home-product-product-product", "2030"], + ["product-account-home-product-product-search", "173"], + ["product-account-home-product-search-account", "71"], + ["product-account-home-product-search-end", "15"], + ["product-account-home-product-search-home", "4"], + ["product-account-home-product-search-other", "2"], + ["product-account-home-product-search-product", "326"], + ["product-account-home-product-search-search", "59"], + ["product-account-home-search-account-account", "201"], + ["product-account-home-search-account-end", "56"], + ["product-account-home-search-account-home", "24"], + ["product-account-home-search-account-other", "5"], + ["product-account-home-search-account-product", "193"], + ["product-account-home-search-account-search", "28"], + ["product-account-home-search-end", "129"], + ["product-account-home-search-home-account", "5"], + ["product-account-home-search-home-end", "8"], + ["product-account-home-search-home-home", "3"], + ["product-account-home-search-home-product", "16"], + ["product-account-home-search-home-search", "25"], + ["product-account-home-search-other-account", "1"], + ["product-account-home-search-other-other", "1"], + ["product-account-home-search-other-product", "3"], + ["product-account-home-search-product-account", "129"], + ["product-account-home-search-product-end", "457"], + ["product-account-home-search-product-home", "119"], + ["product-account-home-search-product-other", "15"], + ["product-account-home-search-product-product", "870"], + ["product-account-home-search-product-search", "303"], + ["product-account-home-search-search-account", "59"], + ["product-account-home-search-search-end", "35"], + ["product-account-home-search-search-home", "12"], + ["product-account-home-search-search-other", "3"], + ["product-account-home-search-search-product", "329"], + ["product-account-home-search-search-search", "156"], + ["product-account-other-account-account-account", "248"], + ["product-account-other-account-account-end", "74"], + ["product-account-other-account-account-home", "25"], + ["product-account-other-account-account-other", "40"], + ["product-account-other-account-account-product", "175"], + ["product-account-other-account-account-search", "11"], + ["product-account-other-account-end", "238"], + ["product-account-other-account-home-account", "9"], + ["product-account-other-account-home-end", "16"], + ["product-account-other-account-home-home", "9"], + ["product-account-other-account-home-other", "7"], + ["product-account-other-account-home-product", "27"], + ["product-account-other-account-home-search", "7"], + ["product-account-other-account-other-account", "62"], + ["product-account-other-account-other-end", "33"], + ["product-account-other-account-other-home", "15"], + ["product-account-other-account-other-other", "66"], + ["product-account-other-account-other-product", "83"], + ["product-account-other-account-other-search", "7"], + ["product-account-other-account-product-account", "91"], + ["product-account-other-account-product-end", "86"], + ["product-account-other-account-product-home", "24"], + ["product-account-other-account-product-other", "20"], + ["product-account-other-account-product-product", "195"], + ["product-account-other-account-product-search", "26"], + ["product-account-other-account-search-account", "16"], + ["product-account-other-account-search-end", "2"], + ["product-account-other-account-search-product", "17"], + ["product-account-other-account-search-search", "13"], + ["product-account-other-end", "2075"], + ["product-account-other-home-account-account", "23"], + ["product-account-other-home-account-end", "11"], + ["product-account-other-home-account-home", "4"], + ["product-account-other-home-account-other", "6"], + ["product-account-other-home-account-product", "18"], + ["product-account-other-home-account-search", "2"], + ["product-account-other-home-end", "138"], + ["product-account-other-home-home-account", "10"], + ["product-account-other-home-home-end", "9"], + ["product-account-other-home-home-home", "7"], + ["product-account-other-home-home-other", "7"], + ["product-account-other-home-home-product", "18"], + ["product-account-other-home-home-search", "5"], + ["product-account-other-home-other-account", "6"], + ["product-account-other-home-other-end", "4"], + ["product-account-other-home-other-home", "4"], + ["product-account-other-home-other-other", "16"], + ["product-account-other-home-other-product", "7"], + ["product-account-other-home-other-search", "1"], + ["product-account-other-home-product-account", "36"], + ["product-account-other-home-product-end", "49"], + ["product-account-other-home-product-home", "47"], + ["product-account-other-home-product-other", "5"], + ["product-account-other-home-product-product", "96"], + ["product-account-other-home-product-search", "3"], + ["product-account-other-home-search-account", "17"], + ["product-account-other-home-search-end", "3"], + ["product-account-other-home-search-other", "1"], + ["product-account-other-home-search-product", "30"], + ["product-account-other-home-search-search", "12"], + ["product-account-other-other-account-account", "190"], + ["product-account-other-other-account-end", "113"], + ["product-account-other-other-account-home", "31"], + ["product-account-other-other-account-other", "99"], + ["product-account-other-other-account-product", "97"], + ["product-account-other-other-account-search", "11"], + ["product-account-other-other-end", "960"], + ["product-account-other-other-home-account", "42"], + ["product-account-other-other-home-end", "57"], + ["product-account-other-other-home-home", "40"], + ["product-account-other-other-home-other", "29"], + ["product-account-other-other-home-product", "77"], + ["product-account-other-other-home-search", "29"], + ["product-account-other-other-other-account", "255"], + ["product-account-other-other-other-end", "287"], + ["product-account-other-other-other-home", "120"], + ["product-account-other-other-other-other", "603"], + ["product-account-other-other-other-product", "395"], + ["product-account-other-other-other-search", "39"], + ["product-account-other-other-product-account", "208"], + ["product-account-other-other-product-end", "388"], + ["product-account-other-other-product-home", "87"], + ["product-account-other-other-product-other", "207"], + ["product-account-other-other-product-product", "627"], + ["product-account-other-other-product-search", "47"], + ["product-account-other-other-search-account", "28"], + ["product-account-other-other-search-end", "2"], + ["product-account-other-other-search-home", "3"], + ["product-account-other-other-search-other", "6"], + ["product-account-other-other-search-product", "66"], + ["product-account-other-other-search-search", "29"], + ["product-account-other-product-account-account", "248"], + ["product-account-other-product-account-end", "80"], + ["product-account-other-product-account-home", "20"], + ["product-account-other-product-account-other", "179"], + ["product-account-other-product-account-product", "209"], + ["product-account-other-product-account-search", "13"], + ["product-account-other-product-end", "1827"], + ["product-account-other-product-home-account", "33"], + ["product-account-other-product-home-end", "50"], + ["product-account-other-product-home-home", "25"], + ["product-account-other-product-home-other", "16"], + ["product-account-other-product-home-product", "133"], + ["product-account-other-product-home-search", "59"], + ["product-account-other-product-other-account", "64"], + ["product-account-other-product-other-end", "44"], + ["product-account-other-product-other-home", "13"], + ["product-account-other-product-other-other", "82"], + ["product-account-other-product-other-product", "232"], + ["product-account-other-product-other-search", "11"], + ["product-account-other-product-product-account", "317"], + ["product-account-other-product-product-end", "932"], + ["product-account-other-product-product-home", "172"], + ["product-account-other-product-product-other", "115"], + ["product-account-other-product-product-product", "2891"], + ["product-account-other-product-product-search", "155"], + ["product-account-other-product-search-account", "32"], + ["product-account-other-product-search-end", "8"], + ["product-account-other-product-search-home", "1"], + ["product-account-other-product-search-other", "1"], + ["product-account-other-product-search-product", "207"], + ["product-account-other-product-search-search", "36"], + ["product-account-other-search-account-account", "36"], + ["product-account-other-search-account-end", "8"], + ["product-account-other-search-account-home", "2"], + ["product-account-other-search-account-other", "7"], + ["product-account-other-search-account-product", "30"], + ["product-account-other-search-account-search", "2"], + ["product-account-other-search-end", "15"], + ["product-account-other-search-home-account", "1"], + ["product-account-other-search-home-end", "1"], + ["product-account-other-search-home-product", "1"], + ["product-account-other-search-home-search", "1"], + ["product-account-other-search-other-account", "1"], + ["product-account-other-search-other-product", "2"], + ["product-account-other-search-product-account", "16"], + ["product-account-other-search-product-end", "39"], + ["product-account-other-search-product-home", "4"], + ["product-account-other-search-product-other", "5"], + ["product-account-other-search-product-product", "105"], + ["product-account-other-search-product-search", "46"], + ["product-account-other-search-search-account", "7"], + ["product-account-other-search-search-end", "5"], + ["product-account-other-search-search-home", "2"], + ["product-account-other-search-search-product", "34"], + ["product-account-other-search-search-search", "18"], + ["product-account-product-account-account-account", "2910"], + ["product-account-product-account-account-end", "1000"], + ["product-account-product-account-account-home", "352"], + ["product-account-product-account-account-other", "238"], + ["product-account-product-account-account-product", "4206"], + ["product-account-product-account-account-search", "219"], + ["product-account-product-account-end", "3933"], + ["product-account-product-account-home-account", "124"], + ["product-account-product-account-home-end", "201"], + ["product-account-product-account-home-home", "84"], + ["product-account-product-account-home-other", "26"], + ["product-account-product-account-home-product", "504"], + ["product-account-product-account-home-search", "133"], + ["product-account-product-account-other-account", "76"], + ["product-account-product-account-other-end", "67"], + ["product-account-product-account-other-home", "29"], + ["product-account-product-account-other-other", "240"], + ["product-account-product-account-other-product", "349"], + ["product-account-product-account-other-search", "11"], + ["product-account-product-account-product-account", "5871"], + ["product-account-product-account-product-end", "4140"], + ["product-account-product-account-product-home", "977"], + ["product-account-product-account-product-other", "205"], + ["product-account-product-account-product-product", "8256"], + ["product-account-product-account-product-search", "802"], + ["product-account-product-account-search-account", "203"], + ["product-account-product-account-search-end", "35"], + ["product-account-product-account-search-home", "9"], + ["product-account-product-account-search-other", "2"], + ["product-account-product-account-search-product", "396"], + ["product-account-product-account-search-search", "133"], + ["product-account-product-end", "54009"], + ["product-account-product-home-account-account", "310"], + ["product-account-product-home-account-end", "95"], + ["product-account-product-home-account-home", "79"], + ["product-account-product-home-account-other", "39"], + ["product-account-product-home-account-product", "439"], + ["product-account-product-home-account-search", "33"], + ["product-account-product-home-end", "2302"], + ["product-account-product-home-home-account", "87"], + ["product-account-product-home-home-end", "137"], + ["product-account-product-home-home-home", "135"], + ["product-account-product-home-home-other", "50"], + ["product-account-product-home-home-product", "352"], + ["product-account-product-home-home-search", "118"], + ["product-account-product-home-other-account", "27"], + ["product-account-product-home-other-end", "19"], + ["product-account-product-home-other-home", "30"], + ["product-account-product-home-other-other", "122"], + ["product-account-product-home-other-product", "92"], + ["product-account-product-home-other-search", "5"], + ["product-account-product-home-product-account", "708"], + ["product-account-product-home-product-end", "1284"], + ["product-account-product-home-product-home", "1061"], + ["product-account-product-home-product-other", "52"], + ["product-account-product-home-product-product", "2188"], + ["product-account-product-home-product-search", "263"], + ["product-account-product-home-search-account", "248"], + ["product-account-product-home-search-end", "67"], + ["product-account-product-home-search-home", "26"], + ["product-account-product-home-search-other", "8"], + ["product-account-product-home-search-product", "1253"], + ["product-account-product-home-search-search", "355"], + ["product-account-product-other-account-account", "94"], + ["product-account-product-other-account-end", "33"], + ["product-account-product-other-account-home", "15"], + ["product-account-product-other-account-other", "26"], + ["product-account-product-other-account-product", "91"], + ["product-account-product-other-account-search", "7"], + ["product-account-product-other-end", "277"], + ["product-account-product-other-home-account", "11"], + ["product-account-product-other-home-end", "21"], + ["product-account-product-other-home-home", "12"], + ["product-account-product-other-home-other", "5"], + ["product-account-product-other-home-product", "41"], + ["product-account-product-other-home-search", "12"], + ["product-account-product-other-other-account", "97"], + ["product-account-product-other-other-end", "139"], + ["product-account-product-other-other-home", "58"], + ["product-account-product-other-other-other", "261"], + ["product-account-product-other-other-product", "293"], + ["product-account-product-other-other-search", "22"], + ["product-account-product-other-product-account", "111"], + ["product-account-product-other-product-end", "173"], + ["product-account-product-other-product-home", "35"], + ["product-account-product-other-product-other", "76"], + ["product-account-product-other-product-product", "471"], + ["product-account-product-other-product-search", "48"], + ["product-account-product-other-search-account", "12"], + ["product-account-product-other-search-end", "1"], + ["product-account-product-other-search-other", "1"], + ["product-account-product-other-search-product", "32"], + ["product-account-product-other-search-search", "9"], + ["product-account-product-product-account-account", "3063"], + ["product-account-product-product-account-end", "1175"], + ["product-account-product-product-account-home", "292"], + ["product-account-product-product-account-other", "257"], + ["product-account-product-product-account-product", "6090"], + ["product-account-product-product-account-search", "245"], + ["product-account-product-product-end", "23408"], + ["product-account-product-product-home-account", "376"], + ["product-account-product-product-home-end", "845"], + ["product-account-product-product-home-home", "376"], + ["product-account-product-product-home-other", "111"], + ["product-account-product-product-home-product", "2313"], + ["product-account-product-product-home-search", "795"], + ["product-account-product-product-other-account", "96"], + ["product-account-product-product-other-end", "100"], + ["product-account-product-product-other-home", "44"], + ["product-account-product-product-other-other", "330"], + ["product-account-product-product-other-product", "377"], + ["product-account-product-product-other-search", "22"], + ["product-account-product-product-product-account", "5135"], + ["product-account-product-product-product-end", "11752"], + ["product-account-product-product-product-home", "2204"], + ["product-account-product-product-product-other", "430"], + ["product-account-product-product-product-product", "36669"], + ["product-account-product-product-product-search", "2397"], + ["product-account-product-product-search-account", "522"], + ["product-account-product-product-search-end", "159"], + ["product-account-product-product-search-home", "25"], + ["product-account-product-product-search-other", "6"], + ["product-account-product-product-search-product", "3186"], + ["product-account-product-product-search-search", "710"], + ["product-account-product-search-account-account", "475"], + ["product-account-product-search-account-end", "82"], + ["product-account-product-search-account-home", "24"], + ["product-account-product-search-account-other", "20"], + ["product-account-product-search-account-product", "597"], + ["product-account-product-search-account-search", "84"], + ["product-account-product-search-end", "359"], + ["product-account-product-search-home-account", "1"], + ["product-account-product-search-home-end", "13"], + ["product-account-product-search-home-home", "9"], + ["product-account-product-search-home-other", "2"], + ["product-account-product-search-home-product", "33"], + ["product-account-product-search-home-search", "20"], + ["product-account-product-search-other-end", "4"], + ["product-account-product-search-other-other", "6"], + ["product-account-product-search-other-product", "10"], + ["product-account-product-search-product-account", "468"], + ["product-account-product-search-product-end", "1210"], + ["product-account-product-search-product-home", "220"], + ["product-account-product-search-product-other", "40"], + ["product-account-product-search-product-product", "3036"], + ["product-account-product-search-product-search", "1005"], + ["product-account-product-search-search-account", "137"], + ["product-account-product-search-search-end", "90"], + ["product-account-product-search-search-home", "25"], + ["product-account-product-search-search-other", "9"], + ["product-account-product-search-search-product", "850"], + ["product-account-product-search-search-search", "338"], + ["product-account-search-account-account-account", "372"], + ["product-account-search-account-account-end", "125"], + ["product-account-search-account-account-home", "36"], + ["product-account-search-account-account-other", "19"], + ["product-account-search-account-account-product", "569"], + ["product-account-search-account-account-search", "75"], + ["product-account-search-account-end", "315"], + ["product-account-search-account-home-account", "14"], + ["product-account-search-account-home-end", "20"], + ["product-account-search-account-home-home", "11"], + ["product-account-search-account-home-other", "3"], + ["product-account-search-account-home-product", "38"], + ["product-account-search-account-home-search", "13"], + ["product-account-search-account-other-account", "9"], + ["product-account-search-account-other-end", "6"], + ["product-account-search-account-other-home", "2"], + ["product-account-search-account-other-other", "9"], + ["product-account-search-account-other-product", "41"], + ["product-account-search-account-other-search", "5"], + ["product-account-search-account-product-account", "243"], + ["product-account-search-account-product-end", "296"], + ["product-account-search-account-product-home", "38"], + ["product-account-search-account-product-other", "12"], + ["product-account-search-account-product-product", "530"], + ["product-account-search-account-product-search", "140"], + ["product-account-search-account-search-account", "148"], + ["product-account-search-account-search-end", "9"], + ["product-account-search-account-search-home", "2"], + ["product-account-search-account-search-other", "1"], + ["product-account-search-account-search-product", "73"], + ["product-account-search-account-search-search", "36"], + ["product-account-search-end", "701"], + ["product-account-search-home-account-account", "3"], + ["product-account-search-home-account-home", "3"], + ["product-account-search-home-account-other", "1"], + ["product-account-search-home-account-product", "3"], + ["product-account-search-home-account-search", "1"], + ["product-account-search-home-end", "28"], + ["product-account-search-home-home-account", "1"], + ["product-account-search-home-home-end", "3"], + ["product-account-search-home-home-home", "1"], + ["product-account-search-home-home-other", "3"], + ["product-account-search-home-home-product", "4"], + ["product-account-search-home-home-search", "1"], + ["product-account-search-home-other-account", "1"], + ["product-account-search-home-other-product", "2"], + ["product-account-search-home-product-account", "2"], + ["product-account-search-home-product-end", "8"], + ["product-account-search-home-product-home", "11"], + ["product-account-search-home-product-other", "2"], + ["product-account-search-home-product-product", "22"], + ["product-account-search-home-product-search", "10"], + ["product-account-search-home-search-account", "6"], + ["product-account-search-home-search-home", "2"], + ["product-account-search-home-search-product", "18"], + ["product-account-search-home-search-search", "11"], + ["product-account-search-other-account-account", "3"], + ["product-account-search-other-account-end", "2"], + ["product-account-search-other-account-product", "2"], + ["product-account-search-other-end", "8"], + ["product-account-search-other-other-account", "1"], + ["product-account-search-other-other-end", "1"], + ["product-account-search-other-other-other", "6"], + ["product-account-search-other-other-product", "1"], + ["product-account-search-other-other-search", "1"], + ["product-account-search-other-product-account", "2"], + ["product-account-search-other-product-end", "6"], + ["product-account-search-other-product-home", "2"], + ["product-account-search-other-product-other", "2"], + ["product-account-search-other-product-product", "14"], + ["product-account-search-other-product-search", "2"], + ["product-account-search-product-account-account", "229"], + ["product-account-search-product-account-end", "80"], + ["product-account-search-product-account-home", "24"], + ["product-account-search-product-account-other", "21"], + ["product-account-search-product-account-product", "340"], + ["product-account-search-product-account-search", "76"], + ["product-account-search-product-end", "1863"], + ["product-account-search-product-home-account", "20"], + ["product-account-search-product-home-end", "50"], + ["product-account-search-product-home-home", "21"], + ["product-account-search-product-home-other", "9"], + ["product-account-search-product-home-product", "120"], + ["product-account-search-product-home-search", "93"], + ["product-account-search-product-other-account", "5"], + ["product-account-search-product-other-end", "11"], + ["product-account-search-product-other-home", "5"], + ["product-account-search-product-other-other", "7"], + ["product-account-search-product-other-product", "21"], + ["product-account-search-product-product-account", "334"], + ["product-account-search-product-product-end", "840"], + ["product-account-search-product-product-home", "165"], + ["product-account-search-product-product-other", "29"], + ["product-account-search-product-product-product", "2154"], + ["product-account-search-product-product-search", "517"], + ["product-account-search-product-search-account", "69"], + ["product-account-search-product-search-end", "57"], + ["product-account-search-product-search-home", "9"], + ["product-account-search-product-search-other", "2"], + ["product-account-search-product-search-product", "967"], + ["product-account-search-product-search-search", "228"], + ["product-account-search-search-account-account", "121"], + ["product-account-search-search-account-end", "37"], + ["product-account-search-search-account-home", "10"], + ["product-account-search-search-account-other", "23"], + ["product-account-search-search-account-product", "107"], + ["product-account-search-search-account-search", "24"], + ["product-account-search-search-end", "161"], + ["product-account-search-search-home-account", "3"], + ["product-account-search-search-home-end", "9"], + ["product-account-search-search-home-home", "3"], + ["product-account-search-search-home-other", "1"], + ["product-account-search-search-home-product", "11"], + ["product-account-search-search-home-search", "3"], + ["product-account-search-search-other-account", "2"], + ["product-account-search-search-other-end", "3"], + ["product-account-search-search-other-other", "2"], + ["product-account-search-search-other-product", "4"], + ["product-account-search-search-other-search", "1"], + ["product-account-search-search-product-account", "146"], + ["product-account-search-search-product-end", "276"], + ["product-account-search-search-product-home", "55"], + ["product-account-search-search-product-other", "5"], + ["product-account-search-search-product-product", "645"], + ["product-account-search-search-product-search", "233"], + ["product-account-search-search-search-account", "65"], + ["product-account-search-search-search-end", "54"], + ["product-account-search-search-search-home", "6"], + ["product-account-search-search-search-other", "4"], + ["product-account-search-search-search-product", "269"], + ["product-account-search-search-search-search", "206"], + ["product-end", "6530687"], + ["product-home-account-account-account-account", "2112"], + ["product-home-account-account-account-end", "408"], + ["product-home-account-account-account-home", "330"], + ["product-home-account-account-account-other", "394"], + ["product-home-account-account-account-product", "1642"], + ["product-home-account-account-account-search", "109"], + ["product-home-account-account-end", "1480"], + ["product-home-account-account-home-account", "254"], + ["product-home-account-account-home-end", "271"], + ["product-home-account-account-home-home", "96"], + ["product-home-account-account-home-other", "36"], + ["product-home-account-account-home-product", "439"], + ["product-home-account-account-home-search", "133"], + ["product-home-account-account-other-account", "66"], + ["product-home-account-account-other-end", "35"], + ["product-home-account-account-other-home", "29"], + ["product-home-account-account-other-other", "202"], + ["product-home-account-account-other-product", "316"], + ["product-home-account-account-other-search", "10"], + ["product-home-account-account-product-account", "1168"], + ["product-home-account-account-product-end", "1857"], + ["product-home-account-account-product-home", "1026"], + ["product-home-account-account-product-other", "107"], + ["product-home-account-account-product-product", "3266"], + ["product-home-account-account-product-search", "351"], + ["product-home-account-account-search-account", "111"], + ["product-home-account-account-search-end", "13"], + ["product-home-account-account-search-home", "7"], + ["product-home-account-account-search-other", "1"], + ["product-home-account-account-search-product", "224"], + ["product-home-account-account-search-search", "72"], + ["product-home-account-end", "4439"], + ["product-home-account-home-account-account", "207"], + ["product-home-account-home-account-end", "76"], + ["product-home-account-home-account-home", "729"], + ["product-home-account-home-account-other", "24"], + ["product-home-account-home-account-product", "200"], + ["product-home-account-home-account-search", "21"], + ["product-home-account-home-end", "923"], + ["product-home-account-home-home-account", "80"], + ["product-home-account-home-home-end", "107"], + ["product-home-account-home-home-home", "164"], + ["product-home-account-home-home-other", "21"], + ["product-home-account-home-home-product", "117"], + ["product-home-account-home-home-search", "42"], + ["product-home-account-home-other-account", "11"], + ["product-home-account-home-other-end", "7"], + ["product-home-account-home-other-home", "48"], + ["product-home-account-home-other-other", "48"], + ["product-home-account-home-other-product", "31"], + ["product-home-account-home-other-search", "2"], + ["product-home-account-home-product-account", "157"], + ["product-home-account-home-product-end", "288"], + ["product-home-account-home-product-home", "835"], + ["product-home-account-home-product-other", "7"], + ["product-home-account-home-product-product", "506"], + ["product-home-account-home-product-search", "55"], + ["product-home-account-home-search-account", "81"], + ["product-home-account-home-search-end", "22"], + ["product-home-account-home-search-home", "48"], + ["product-home-account-home-search-product", "248"], + ["product-home-account-home-search-search", "81"], + ["product-home-account-other-account-account", "44"], + ["product-home-account-other-account-end", "14"], + ["product-home-account-other-account-home", "13"], + ["product-home-account-other-account-other", "20"], + ["product-home-account-other-account-product", "39"], + ["product-home-account-other-account-search", "2"], + ["product-home-account-other-end", "156"], + ["product-home-account-other-home-account", "18"], + ["product-home-account-other-home-end", "34"], + ["product-home-account-other-home-home", "12"], + ["product-home-account-other-home-other", "12"], + ["product-home-account-other-home-product", "37"], + ["product-home-account-other-home-search", "13"], + ["product-home-account-other-other-account", "62"], + ["product-home-account-other-other-end", "123"], + ["product-home-account-other-other-home", "83"], + ["product-home-account-other-other-other", "281"], + ["product-home-account-other-other-product", "189"], + ["product-home-account-other-other-search", "12"], + ["product-home-account-other-product-account", "69"], + ["product-home-account-other-product-end", "205"], + ["product-home-account-other-product-home", "85"], + ["product-home-account-other-product-other", "38"], + ["product-home-account-other-product-product", "402"], + ["product-home-account-other-product-search", "33"], + ["product-home-account-other-search-account", "3"], + ["product-home-account-other-search-end", "3"], + ["product-home-account-other-search-product", "23"], + ["product-home-account-other-search-search", "6"], + ["product-home-account-product-account-account", "716"], + ["product-home-account-product-account-end", "248"], + ["product-home-account-product-account-home", "164"], + ["product-home-account-product-account-other", "62"], + ["product-home-account-product-account-product", "1127"], + ["product-home-account-product-account-search", "43"], + ["product-home-account-product-end", "3758"], + ["product-home-account-product-home-account", "369"], + ["product-home-account-product-home-end", "476"], + ["product-home-account-product-home-home", "171"], + ["product-home-account-product-home-other", "46"], + ["product-home-account-product-home-product", "1002"], + ["product-home-account-product-home-search", "267"], + ["product-home-account-product-other-account", "16"], + ["product-home-account-product-other-end", "16"], + ["product-home-account-product-other-home", "19"], + ["product-home-account-product-other-other", "87"], + ["product-home-account-product-other-product", "84"], + ["product-home-account-product-other-search", "3"], + ["product-home-account-product-product-account", "677"], + ["product-home-account-product-product-end", "1607"], + ["product-home-account-product-product-home", "820"], + ["product-home-account-product-product-other", "48"], + ["product-home-account-product-product-product", "4133"], + ["product-home-account-product-product-search", "304"], + ["product-home-account-product-search-account", "114"], + ["product-home-account-product-search-end", "21"], + ["product-home-account-product-search-home", "6"], + ["product-home-account-product-search-other", "2"], + ["product-home-account-product-search-product", "455"], + ["product-home-account-product-search-search", "111"], + ["product-home-account-search-account-account", "113"], + ["product-home-account-search-account-end", "27"], + ["product-home-account-search-account-home", "23"], + ["product-home-account-search-account-other", "5"], + ["product-home-account-search-account-product", "142"], + ["product-home-account-search-account-search", "37"], + ["product-home-account-search-end", "39"], + ["product-home-account-search-home-end", "1"], + ["product-home-account-search-home-home", "2"], + ["product-home-account-search-home-product", "2"], + ["product-home-account-search-home-search", "5"], + ["product-home-account-search-other-home", "1"], + ["product-home-account-search-other-other", "1"], + ["product-home-account-search-other-product", "1"], + ["product-home-account-search-other-search", "1"], + ["product-home-account-search-product-account", "53"], + ["product-home-account-search-product-end", "123"], + ["product-home-account-search-product-home", "44"], + ["product-home-account-search-product-other", "5"], + ["product-home-account-search-product-product", "330"], + ["product-home-account-search-product-search", "130"], + ["product-home-account-search-search-account", "30"], + ["product-home-account-search-search-end", "7"], + ["product-home-account-search-search-home", "4"], + ["product-home-account-search-search-other", "1"], + ["product-home-account-search-search-product", "127"], + ["product-home-account-search-search-search", "47"], + ["product-home-end", "225800"], + ["product-home-home-account-account-account", "546"], + ["product-home-home-account-account-end", "158"], + ["product-home-home-account-account-home", "167"], + ["product-home-home-account-account-other", "72"], + ["product-home-home-account-account-product", "733"], + ["product-home-home-account-account-search", "49"], + ["product-home-home-account-end", "381"], + ["product-home-home-account-home-account", "129"], + ["product-home-home-account-home-end", "116"], + ["product-home-home-account-home-home", "210"], + ["product-home-home-account-home-other", "13"], + ["product-home-home-account-home-product", "195"], + ["product-home-home-account-home-search", "44"], + ["product-home-home-account-other-account", "24"], + ["product-home-home-account-other-end", "20"], + ["product-home-home-account-other-home", "24"], + ["product-home-home-account-other-other", "114"], + ["product-home-home-account-other-product", "77"], + ["product-home-home-account-other-search", "3"], + ["product-home-home-account-product-account", "246"], + ["product-home-home-account-product-end", "339"], + ["product-home-home-account-product-home", "210"], + ["product-home-home-account-product-other", "42"], + ["product-home-home-account-product-product", "710"], + ["product-home-home-account-product-search", "75"], + ["product-home-home-account-search-account", "33"], + ["product-home-home-account-search-end", "4"], + ["product-home-home-account-search-home", "4"], + ["product-home-home-account-search-product", "73"], + ["product-home-home-account-search-search", "23"], + ["product-home-home-end", "16543"], + ["product-home-home-home-account-account", "246"], + ["product-home-home-home-account-end", "45"], + ["product-home-home-home-account-home", "220"], + ["product-home-home-home-account-other", "38"], + ["product-home-home-home-account-product", "252"], + ["product-home-home-home-account-search", "13"], + ["product-home-home-home-end", "2683"], + ["product-home-home-home-home-account", "210"], + ["product-home-home-home-home-end", "750"], + ["product-home-home-home-home-home", "2043"], + ["product-home-home-home-home-other", "178"], + ["product-home-home-home-home-product", "1594"], + ["product-home-home-home-home-search", "446"], + ["product-home-home-home-other-account", "36"], + ["product-home-home-home-other-end", "30"], + ["product-home-home-home-other-home", "112"], + ["product-home-home-home-other-other", "272"], + ["product-home-home-home-other-product", "151"], + ["product-home-home-home-other-search", "12"], + ["product-home-home-home-product-account", "280"], + ["product-home-home-home-product-end", "870"], + ["product-home-home-home-product-home", "1994"], + ["product-home-home-home-product-other", "64"], + ["product-home-home-home-product-product", "1819"], + ["product-home-home-home-product-search", "196"], + ["product-home-home-home-search-account", "125"], + ["product-home-home-home-search-end", "61"], + ["product-home-home-home-search-home", "566"], + ["product-home-home-home-search-other", "4"], + ["product-home-home-home-search-product", "955"], + ["product-home-home-home-search-search", "274"], + ["product-home-home-other-account-account", "147"], + ["product-home-home-other-account-end", "17"], + ["product-home-home-other-account-home", "42"], + ["product-home-home-other-account-other", "32"], + ["product-home-home-other-account-product", "62"], + ["product-home-home-other-account-search", "6"], + ["product-home-home-other-end", "219"], + ["product-home-home-other-home-account", "28"], + ["product-home-home-other-home-end", "72"], + ["product-home-home-other-home-home", "72"], + ["product-home-home-other-home-other", "29"], + ["product-home-home-other-home-product", "138"], + ["product-home-home-other-home-search", "36"], + ["product-home-home-other-other-account", "103"], + ["product-home-home-other-other-end", "149"], + ["product-home-home-other-other-home", "170"], + ["product-home-home-other-other-other", "534"], + ["product-home-home-other-other-product", "508"], + ["product-home-home-other-other-search", "31"], + ["product-home-home-other-product-account", "73"], + ["product-home-home-other-product-end", "229"], + ["product-home-home-other-product-home", "125"], + ["product-home-home-other-product-other", "91"], + ["product-home-home-other-product-product", "629"], + ["product-home-home-other-product-search", "76"], + ["product-home-home-other-search-account", "13"], + ["product-home-home-other-search-end", "5"], + ["product-home-home-other-search-home", "3"], + ["product-home-home-other-search-product", "65"], + ["product-home-home-other-search-search", "16"], + ["product-home-home-product-account-account", "759"], + ["product-home-home-product-account-end", "188"], + ["product-home-home-product-account-home", "219"], + ["product-home-home-product-account-other", "59"], + ["product-home-home-product-account-product", "898"], + ["product-home-home-product-account-search", "53"], + ["product-home-home-product-end", "7698"], + ["product-home-home-product-home-account", "389"], + ["product-home-home-product-home-end", "1597"], + ["product-home-home-product-home-home", "1677"], + ["product-home-home-product-home-other", "122"], + ["product-home-home-product-home-product", "3621"], + ["product-home-home-product-home-search", "620"], + ["product-home-home-product-other-account", "34"], + ["product-home-home-product-other-end", "35"], + ["product-home-home-product-other-home", "42"], + ["product-home-home-product-other-other", "168"], + ["product-home-home-product-other-product", "201"], + ["product-home-home-product-other-search", "12"], + ["product-home-home-product-product-account", "802"], + ["product-home-home-product-product-end", "3123"], + ["product-home-home-product-product-home", "2099"], + ["product-home-home-product-product-other", "168"], + ["product-home-home-product-product-product", "7622"], + ["product-home-home-product-product-search", "700"], + ["product-home-home-product-search-account", "155"], + ["product-home-home-product-search-end", "54"], + ["product-home-home-product-search-home", "32"], + ["product-home-home-product-search-other", "5"], + ["product-home-home-product-search-product", "1195"], + ["product-home-home-product-search-search", "263"], + ["product-home-home-search-account-account", "422"], + ["product-home-home-search-account-end", "66"], + ["product-home-home-search-account-home", "50"], + ["product-home-home-search-account-other", "34"], + ["product-home-home-search-account-product", "392"], + ["product-home-home-search-account-search", "46"], + ["product-home-home-search-end", "576"], + ["product-home-home-search-home-account", "29"], + ["product-home-home-search-home-end", "44"], + ["product-home-home-search-home-home", "214"], + ["product-home-home-search-home-other", "3"], + ["product-home-home-search-home-product", "265"], + ["product-home-home-search-home-search", "123"], + ["product-home-home-search-other-account", "1"], + ["product-home-home-search-other-end", "3"], + ["product-home-home-search-other-other", "6"], + ["product-home-home-search-other-product", "8"], + ["product-home-home-search-other-search", "1"], + ["product-home-home-search-product-account", "271"], + ["product-home-home-search-product-end", "2335"], + ["product-home-home-search-product-home", "790"], + ["product-home-home-search-product-other", "57"], + ["product-home-home-search-product-product", "4429"], + ["product-home-home-search-product-search", "1603"], + ["product-home-home-search-search-account", "125"], + ["product-home-home-search-search-end", "155"], + ["product-home-home-search-search-home", "54"], + ["product-home-home-search-search-other", "3"], + ["product-home-home-search-search-product", "1411"], + ["product-home-home-search-search-search", "602"], + ["product-home-other-account-account-account", "241"], + ["product-home-other-account-account-end", "77"], + ["product-home-other-account-account-home", "70"], + ["product-home-other-account-account-other", "34"], + ["product-home-other-account-account-product", "188"], + ["product-home-other-account-account-search", "15"], + ["product-home-other-account-end", "211"], + ["product-home-other-account-home-account", "23"], + ["product-home-other-account-home-end", "46"], + ["product-home-other-account-home-home", "19"], + ["product-home-other-account-home-other", "23"], + ["product-home-other-account-home-product", "68"], + ["product-home-other-account-home-search", "19"], + ["product-home-other-account-other-account", "33"], + ["product-home-other-account-other-end", "10"], + ["product-home-other-account-other-home", "26"], + ["product-home-other-account-other-other", "68"], + ["product-home-other-account-other-product", "31"], + ["product-home-other-account-other-search", "4"], + ["product-home-other-account-product-account", "67"], + ["product-home-other-account-product-end", "79"], + ["product-home-other-account-product-home", "51"], + ["product-home-other-account-product-other", "20"], + ["product-home-other-account-product-product", "131"], + ["product-home-other-account-product-search", "14"], + ["product-home-other-account-search-account", "11"], + ["product-home-other-account-search-end", "2"], + ["product-home-other-account-search-home", "1"], + ["product-home-other-account-search-product", "23"], + ["product-home-other-account-search-search", "9"], + ["product-home-other-end", "2240"], + ["product-home-other-home-account-account", "79"], + ["product-home-other-home-account-end", "10"], + ["product-home-other-home-account-home", "28"], + ["product-home-other-home-account-other", "8"], + ["product-home-other-home-account-product", "44"], + ["product-home-other-home-account-search", "7"], + ["product-home-other-home-end", "584"], + ["product-home-other-home-home-account", "15"], + ["product-home-other-home-home-end", "44"], + ["product-home-other-home-home-home", "69"], + ["product-home-other-home-home-other", "48"], + ["product-home-other-home-home-product", "86"], + ["product-home-other-home-home-search", "25"], + ["product-home-other-home-other-account", "12"], + ["product-home-other-home-other-end", "30"], + ["product-home-other-home-other-home", "57"], + ["product-home-other-home-other-other", "59"], + ["product-home-other-home-other-product", "68"], + ["product-home-other-home-other-search", "5"], + ["product-home-other-home-product-account", "79"], + ["product-home-other-home-product-end", "177"], + ["product-home-other-home-product-home", "279"], + ["product-home-other-home-product-other", "26"], + ["product-home-other-home-product-product", "361"], + ["product-home-other-home-product-search", "33"], + ["product-home-other-home-search-account", "26"], + ["product-home-other-home-search-end", "6"], + ["product-home-other-home-search-home", "11"], + ["product-home-other-home-search-product", "115"], + ["product-home-other-home-search-search", "31"], + ["product-home-other-other-account-account", "180"], + ["product-home-other-other-account-end", "66"], + ["product-home-other-other-account-home", "61"], + ["product-home-other-other-account-other", "62"], + ["product-home-other-other-account-product", "78"], + ["product-home-other-other-account-search", "8"], + ["product-home-other-other-end", "1443"], + ["product-home-other-other-home-account", "68"], + ["product-home-other-other-home-end", "267"], + ["product-home-other-other-home-home", "138"], + ["product-home-other-other-home-other", "129"], + ["product-home-other-other-home-product", "303"], + ["product-home-other-other-home-search", "97"], + ["product-home-other-other-other-account", "229"], + ["product-home-other-other-other-end", "472"], + ["product-home-other-other-other-home", "379"], + ["product-home-other-other-other-other", "1000"], + ["product-home-other-other-other-product", "846"], + ["product-home-other-other-other-search", "97"], + ["product-home-other-other-product-account", "186"], + ["product-home-other-other-product-end", "759"], + ["product-home-other-other-product-home", "356"], + ["product-home-other-other-product-other", "377"], + ["product-home-other-other-product-product", "1164"], + ["product-home-other-other-product-search", "136"], + ["product-home-other-other-search-account", "28"], + ["product-home-other-other-search-end", "14"], + ["product-home-other-other-search-home", "3"], + ["product-home-other-other-search-other", "10"], + ["product-home-other-other-search-product", "156"], + ["product-home-other-other-search-search", "40"], + ["product-home-other-product-account-account", "251"], + ["product-home-other-product-account-end", "49"], + ["product-home-other-product-account-home", "41"], + ["product-home-other-product-account-other", "43"], + ["product-home-other-product-account-product", "184"], + ["product-home-other-product-account-search", "7"], + ["product-home-other-product-end", "2290"], + ["product-home-other-product-home-account", "53"], + ["product-home-other-product-home-end", "169"], + ["product-home-other-product-home-home", "67"], + ["product-home-other-product-home-other", "140"], + ["product-home-other-product-home-product", "313"], + ["product-home-other-product-home-search", "161"], + ["product-home-other-product-other-account", "35"], + ["product-home-other-product-other-end", "44"], + ["product-home-other-product-other-home", "41"], + ["product-home-other-product-other-other", "129"], + ["product-home-other-product-other-product", "331"], + ["product-home-other-product-other-search", "21"], + ["product-home-other-product-product-account", "168"], + ["product-home-other-product-product-end", "960"], + ["product-home-other-product-product-home", "305"], + ["product-home-other-product-product-other", "198"], + ["product-home-other-product-product-product", "2904"], + ["product-home-other-product-product-search", "254"], + ["product-home-other-product-search-account", "19"], + ["product-home-other-product-search-end", "13"], + ["product-home-other-product-search-home", "6"], + ["product-home-other-product-search-other", "6"], + ["product-home-other-product-search-product", "421"], + ["product-home-other-product-search-search", "71"], + ["product-home-other-search-account-account", "34"], + ["product-home-other-search-account-end", "4"], + ["product-home-other-search-account-home", "5"], + ["product-home-other-search-account-product", "15"], + ["product-home-other-search-account-search", "3"], + ["product-home-other-search-end", "21"], + ["product-home-other-search-home-end", "1"], + ["product-home-other-search-home-home", "1"], + ["product-home-other-search-home-other", "2"], + ["product-home-other-search-home-product", "1"], + ["product-home-other-search-home-search", "5"], + ["product-home-other-search-other-account", "1"], + ["product-home-other-search-other-end", "2"], + ["product-home-other-search-other-home", "1"], + ["product-home-other-search-other-other", "5"], + ["product-home-other-search-other-product", "3"], + ["product-home-other-search-product-account", "20"], + ["product-home-other-search-product-end", "113"], + ["product-home-other-search-product-home", "43"], + ["product-home-other-search-product-other", "16"], + ["product-home-other-search-product-product", "221"], + ["product-home-other-search-product-search", "70"], + ["product-home-other-search-search-account", "6"], + ["product-home-other-search-search-end", "4"], + ["product-home-other-search-search-home", "1"], + ["product-home-other-search-search-product", "57"], + ["product-home-other-search-search-search", "24"], + ["product-home-product-account-account-account", "2427"], + ["product-home-product-account-account-end", "858"], + ["product-home-product-account-account-home", "798"], + ["product-home-product-account-account-other", "228"], + ["product-home-product-account-account-product", "4883"], + ["product-home-product-account-account-search", "239"], + ["product-home-product-account-end", "2659"], + ["product-home-product-account-home-account", "283"], + ["product-home-product-account-home-end", "437"], + ["product-home-product-account-home-home", "141"], + ["product-home-product-account-home-other", "49"], + ["product-home-product-account-home-product", "1216"], + ["product-home-product-account-home-search", "193"], + ["product-home-product-account-other-account", "62"], + ["product-home-product-account-other-end", "53"], + ["product-home-product-account-other-home", "41"], + ["product-home-product-account-other-other", "125"], + ["product-home-product-account-other-product", "385"], + ["product-home-product-account-other-search", "10"], + ["product-home-product-account-product-account", "1629"], + ["product-home-product-account-product-end", "2132"], + ["product-home-product-account-product-home", "1371"], + ["product-home-product-account-product-other", "106"], + ["product-home-product-account-product-product", "5257"], + ["product-home-product-account-product-search", "427"], + ["product-home-product-account-search-account", "173"], + ["product-home-product-account-search-end", "25"], + ["product-home-product-account-search-home", "6"], + ["product-home-product-account-search-other", "1"], + ["product-home-product-account-search-product", "349"], + ["product-home-product-account-search-search", "85"], + ["product-home-product-end", "105889"], + ["product-home-product-home-account-account", "1578"], + ["product-home-product-home-account-end", "352"], + ["product-home-product-home-account-home", "878"], + ["product-home-product-home-account-other", "145"], + ["product-home-product-home-account-product", "1813"], + ["product-home-product-home-account-search", "108"], + ["product-home-product-home-end", "21292"], + ["product-home-product-home-home-account", "384"], + ["product-home-product-home-home-end", "1378"], + ["product-home-product-home-home-home", "1560"], + ["product-home-product-home-home-other", "156"], + ["product-home-product-home-home-product", "2780"], + ["product-home-product-home-home-search", "687"], + ["product-home-product-home-other-account", "86"], + ["product-home-product-home-other-end", "94"], + ["product-home-product-home-other-home", "214"], + ["product-home-product-home-other-other", "381"], + ["product-home-product-home-other-product", "515"], + ["product-home-product-home-other-search", "20"], + ["product-home-product-home-product-account", "2873"], + ["product-home-product-home-product-end", "10743"], + ["product-home-product-home-product-home", "20148"], + ["product-home-product-home-product-other", "293"], + ["product-home-product-home-product-product", "16452"], + ["product-home-product-home-product-search", "1862"], + ["product-home-product-home-search-account", "818"], + ["product-home-product-home-search-end", "260"], + ["product-home-product-home-search-home", "662"], + ["product-home-product-home-search-other", "12"], + ["product-home-product-home-search-product", "5079"], + ["product-home-product-home-search-search", "1253"], + ["product-home-product-other-account-account", "82"], + ["product-home-product-other-account-end", "26"], + ["product-home-product-other-account-home", "42"], + ["product-home-product-other-account-other", "20"], + ["product-home-product-other-account-product", "74"], + ["product-home-product-other-account-search", "4"], + ["product-home-product-other-end", "373"], + ["product-home-product-other-home-account", "32"], + ["product-home-product-other-home-end", "76"], + ["product-home-product-other-home-home", "31"], + ["product-home-product-other-home-other", "24"], + ["product-home-product-other-home-product", "190"], + ["product-home-product-other-home-search", "37"], + ["product-home-product-other-other-account", "62"], + ["product-home-product-other-other-end", "128"], + ["product-home-product-other-other-home", "110"], + ["product-home-product-other-other-other", "369"], + ["product-home-product-other-other-product", "372"], + ["product-home-product-other-other-search", "16"], + ["product-home-product-other-product-account", "103"], + ["product-home-product-other-product-end", "379"], + ["product-home-product-other-product-home", "156"], + ["product-home-product-other-product-other", "115"], + ["product-home-product-other-product-product", "961"], + ["product-home-product-other-product-search", "90"], + ["product-home-product-other-search-account", "6"], + ["product-home-product-other-search-end", "2"], + ["product-home-product-other-search-home", "2"], + ["product-home-product-other-search-other", "2"], + ["product-home-product-other-search-product", "66"], + ["product-home-product-other-search-search", "13"], + ["product-home-product-product-account-account", "3571"], + ["product-home-product-product-account-end", "948"], + ["product-home-product-product-account-home", "636"], + ["product-home-product-product-account-other", "267"], + ["product-home-product-product-account-product", "4231"], + ["product-home-product-product-account-search", "223"], + ["product-home-product-product-end", "43089"], + ["product-home-product-product-home-account", "1184"], + ["product-home-product-product-home-end", "4767"], + ["product-home-product-product-home-home", "1660"], + ["product-home-product-product-home-other", "373"], + ["product-home-product-product-home-product", "13964"], + ["product-home-product-product-home-search", "2439"], + ["product-home-product-product-other-account", "77"], + ["product-home-product-product-other-end", "137"], + ["product-home-product-product-other-home", "83"], + ["product-home-product-product-other-other", "344"], + ["product-home-product-product-other-product", "612"], + ["product-home-product-product-other-search", "23"], + ["product-home-product-product-product-account", "4081"], + ["product-home-product-product-product-end", "19634"], + ["product-home-product-product-product-home", "8866"], + ["product-home-product-product-product-other", "526"], + ["product-home-product-product-product-product", "56224"], + ["product-home-product-product-product-search", "4190"], + ["product-home-product-product-search-account", "683"], + ["product-home-product-product-search-end", "269"], + ["product-home-product-product-search-home", "135"], + ["product-home-product-product-search-other", "17"], + ["product-home-product-product-search-product", "6793"], + ["product-home-product-product-search-search", "1379"], + ["product-home-product-search-account-account", "798"], + ["product-home-product-search-account-end", "140"], + ["product-home-product-search-account-home", "82"], + ["product-home-product-search-account-other", "53"], + ["product-home-product-search-account-product", "813"], + ["product-home-product-search-account-search", "115"], + ["product-home-product-search-end", "771"], + ["product-home-product-search-home-account", "20"], + ["product-home-product-search-home-end", "49"], + ["product-home-product-search-home-home", "26"], + ["product-home-product-search-home-other", "9"], + ["product-home-product-search-home-product", "249"], + ["product-home-product-search-home-search", "85"], + ["product-home-product-search-other-account", "5"], + ["product-home-product-search-other-end", "3"], + ["product-home-product-search-other-home", "4"], + ["product-home-product-search-other-other", "10"], + ["product-home-product-search-other-product", "11"], + ["product-home-product-search-other-search", "5"], + ["product-home-product-search-product-account", "570"], + ["product-home-product-search-product-end", "3456"], + ["product-home-product-search-product-home", "1278"], + ["product-home-product-search-product-other", "69"], + ["product-home-product-search-product-product", "8074"], + ["product-home-product-search-product-search", "2779"], + ["product-home-product-search-search-account", "199"], + ["product-home-product-search-search-end", "162"], + ["product-home-product-search-search-home", "83"], + ["product-home-product-search-search-other", "9"], + ["product-home-product-search-search-product", "2247"], + ["product-home-product-search-search-search", "840"], + ["product-home-search-account-account-account", "1257"], + ["product-home-search-account-account-end", "414"], + ["product-home-search-account-account-home", "237"], + ["product-home-search-account-account-other", "89"], + ["product-home-search-account-account-product", "2840"], + ["product-home-search-account-account-search", "301"], + ["product-home-search-account-end", "1024"], + ["product-home-search-account-home-account", "51"], + ["product-home-search-account-home-end", "77"], + ["product-home-search-account-home-home", "47"], + ["product-home-search-account-home-other", "10"], + ["product-home-search-account-home-product", "160"], + ["product-home-search-account-home-search", "140"], + ["product-home-search-account-other-account", "17"], + ["product-home-search-account-other-end", "35"], + ["product-home-search-account-other-home", "16"], + ["product-home-search-account-other-other", "42"], + ["product-home-search-account-other-product", "250"], + ["product-home-search-account-other-search", "14"], + ["product-home-search-account-product-account", "585"], + ["product-home-search-account-product-end", "1102"], + ["product-home-search-account-product-home", "438"], + ["product-home-search-account-product-other", "45"], + ["product-home-search-account-product-product", "2176"], + ["product-home-search-account-product-search", "345"], + ["product-home-search-account-search-account", "280"], + ["product-home-search-account-search-end", "29"], + ["product-home-search-account-search-home", "7"], + ["product-home-search-account-search-other", "3"], + ["product-home-search-account-search-product", "230"], + ["product-home-search-account-search-search", "107"], + ["product-home-search-end", "9411"], + ["product-home-search-home-account-account", "57"], + ["product-home-search-home-account-end", "8"], + ["product-home-search-home-account-home", "127"], + ["product-home-search-home-account-other", "4"], + ["product-home-search-home-account-product", "34"], + ["product-home-search-home-account-search", "9"], + ["product-home-search-home-end", "478"], + ["product-home-search-home-home-account", "18"], + ["product-home-search-home-home-end", "40"], + ["product-home-search-home-home-home", "119"], + ["product-home-search-home-home-other", "14"], + ["product-home-search-home-home-product", "126"], + ["product-home-search-home-home-search", "99"], + ["product-home-search-home-other-account", "2"], + ["product-home-search-home-other-end", "4"], + ["product-home-search-home-other-home", "6"], + ["product-home-search-home-other-other", "14"], + ["product-home-search-home-other-product", "22"], + ["product-home-search-home-other-search", "5"], + ["product-home-search-home-product-account", "60"], + ["product-home-search-home-product-end", "186"], + ["product-home-search-home-product-home", "1544"], + ["product-home-search-home-product-other", "4"], + ["product-home-search-home-product-product", "390"], + ["product-home-search-home-product-search", "108"], + ["product-home-search-home-search-account", "65"], + ["product-home-search-home-search-end", "106"], + ["product-home-search-home-search-home", "368"], + ["product-home-search-home-search-other", "2"], + ["product-home-search-home-search-product", "837"], + ["product-home-search-home-search-search", "251"], + ["product-home-search-other-account-account", "5"], + ["product-home-search-other-account-home", "1"], + ["product-home-search-other-account-other", "1"], + ["product-home-search-other-account-product", "1"], + ["product-home-search-other-end", "33"], + ["product-home-search-other-home-end", "1"], + ["product-home-search-other-home-home", "1"], + ["product-home-search-other-home-other", "3"], + ["product-home-search-other-home-product", "6"], + ["product-home-search-other-home-search", "5"], + ["product-home-search-other-other-account", "5"], + ["product-home-search-other-other-end", "13"], + ["product-home-search-other-other-home", "5"], + ["product-home-search-other-other-other", "19"], + ["product-home-search-other-other-product", "31"], + ["product-home-search-other-other-search", "7"], + ["product-home-search-other-product-account", "6"], + ["product-home-search-other-product-end", "45"], + ["product-home-search-other-product-home", "4"], + ["product-home-search-other-product-other", "9"], + ["product-home-search-other-product-product", "83"], + ["product-home-search-other-product-search", "14"], + ["product-home-search-other-search-account", "4"], + ["product-home-search-other-search-end", "1"], + ["product-home-search-other-search-other", "1"], + ["product-home-search-other-search-product", "12"], + ["product-home-search-other-search-search", "7"], + ["product-home-search-product-account-account", "1354"], + ["product-home-search-product-account-end", "445"], + ["product-home-search-product-account-home", "139"], + ["product-home-search-product-account-other", "104"], + ["product-home-search-product-account-product", "1595"], + ["product-home-search-product-account-search", "196"], + ["product-home-search-product-end", "41527"], + ["product-home-search-product-home-account", "330"], + ["product-home-search-product-home-end", "1562"], + ["product-home-search-product-home-home", "690"], + ["product-home-search-product-home-other", "175"], + ["product-home-search-product-home-product", "2948"], + ["product-home-search-product-home-search", "4893"], + ["product-home-search-product-other-account", "17"], + ["product-home-search-product-other-end", "73"], + ["product-home-search-product-other-home", "28"], + ["product-home-search-product-other-other", "162"], + ["product-home-search-product-other-product", "327"], + ["product-home-search-product-other-search", "33"], + ["product-home-search-product-product-account", "1869"], + ["product-home-search-product-product-end", "17460"], + ["product-home-search-product-product-home", "4638"], + ["product-home-search-product-product-other", "345"], + ["product-home-search-product-product-product", "36174"], + ["product-home-search-product-product-search", "10205"], + ["product-home-search-product-search-account", "531"], + ["product-home-search-product-search-end", "957"], + ["product-home-search-product-search-home", "308"], + ["product-home-search-product-search-other", "41"], + ["product-home-search-product-search-product", "19506"], + ["product-home-search-product-search-search", "3989"], + ["product-home-search-search-account-account", "649"], + ["product-home-search-search-account-end", "122"], + ["product-home-search-search-account-home", "58"], + ["product-home-search-search-account-other", "36"], + ["product-home-search-search-account-product", "516"], + ["product-home-search-search-account-search", "101"], + ["product-home-search-search-end", "2448"], + ["product-home-search-search-home-account", "18"], + ["product-home-search-search-home-end", "105"], + ["product-home-search-search-home-home", "55"], + ["product-home-search-search-home-other", "16"], + ["product-home-search-search-home-product", "188"], + ["product-home-search-search-home-search", "347"], + ["product-home-search-search-other-account", "4"], + ["product-home-search-search-other-end", "8"], + ["product-home-search-search-other-home", "4"], + ["product-home-search-search-other-other", "32"], + ["product-home-search-search-other-product", "39"], + ["product-home-search-search-other-search", "8"], + ["product-home-search-search-product-account", "678"], + ["product-home-search-search-product-end", "5827"], + ["product-home-search-search-product-home", "1495"], + ["product-home-search-search-product-other", "90"], + ["product-home-search-search-product-product", "10465"], + ["product-home-search-search-product-search", "4359"], + ["product-home-search-search-search-account", "349"], + ["product-home-search-search-search-end", "796"], + ["product-home-search-search-search-home", "224"], + ["product-home-search-search-search-other", "26"], + ["product-home-search-search-search-product", "4807"], + ["product-home-search-search-search-search", "3176"], + ["product-other-account-account-account-account", "591"], + ["product-other-account-account-account-end", "125"], + ["product-other-account-account-account-home", "52"], + ["product-other-account-account-account-other", "102"], + ["product-other-account-account-account-product", "273"], + ["product-other-account-account-account-search", "27"], + ["product-other-account-account-end", "311"], + ["product-other-account-account-home-account", "14"], + ["product-other-account-account-home-end", "20"], + ["product-other-account-account-home-home", "9"], + ["product-other-account-account-home-other", "7"], + ["product-other-account-account-home-product", "47"], + ["product-other-account-account-home-search", "12"], + ["product-other-account-account-other-account", "38"], + ["product-other-account-account-other-end", "28"], + ["product-other-account-account-other-home", "13"], + ["product-other-account-account-other-other", "91"], + ["product-other-account-account-other-product", "58"], + ["product-other-account-account-product-account", "190"], + ["product-other-account-account-product-end", "171"], + ["product-other-account-account-product-home", "56"], + ["product-other-account-account-product-other", "59"], + ["product-other-account-account-product-product", "384"], + ["product-other-account-account-product-search", "35"], + ["product-other-account-account-search-account", "12"], + ["product-other-account-account-search-end", "4"], + ["product-other-account-account-search-home", "3"], + ["product-other-account-account-search-other", "2"], + ["product-other-account-account-search-product", "31"], + ["product-other-account-account-search-search", "16"], + ["product-other-account-end", "1105"], + ["product-other-account-home-account-account", "18"], + ["product-other-account-home-account-end", "5"], + ["product-other-account-home-account-home", "9"], + ["product-other-account-home-account-product", "13"], + ["product-other-account-home-account-search", "1"], + ["product-other-account-home-end", "79"], + ["product-other-account-home-home-account", "2"], + ["product-other-account-home-home-end", "9"], + ["product-other-account-home-home-home", "5"], + ["product-other-account-home-home-other", "11"], + ["product-other-account-home-home-product", "11"], + ["product-other-account-home-home-search", "8"], + ["product-other-account-home-other-account", "5"], + ["product-other-account-home-other-end", "3"], + ["product-other-account-home-other-home", "6"], + ["product-other-account-home-other-other", "12"], + ["product-other-account-home-other-product", "4"], + ["product-other-account-home-product-account", "24"], + ["product-other-account-home-product-end", "28"], + ["product-other-account-home-product-home", "31"], + ["product-other-account-home-product-other", "7"], + ["product-other-account-home-product-product", "78"], + ["product-other-account-home-product-search", "9"], + ["product-other-account-home-search-account", "5"], + ["product-other-account-home-search-product", "20"], + ["product-other-account-home-search-search", "7"], + ["product-other-account-other-account-account", "41"], + ["product-other-account-other-account-end", "8"], + ["product-other-account-other-account-home", "2"], + ["product-other-account-other-account-other", "35"], + ["product-other-account-other-account-product", "40"], + ["product-other-account-other-account-search", "6"], + ["product-other-account-other-end", "96"], + ["product-other-account-other-home-account", "2"], + ["product-other-account-other-home-end", "7"], + ["product-other-account-other-home-home", "6"], + ["product-other-account-other-home-other", "5"], + ["product-other-account-other-home-product", "9"], + ["product-other-account-other-home-search", "2"], + ["product-other-account-other-other-account", "54"], + ["product-other-account-other-other-end", "66"], + ["product-other-account-other-other-home", "28"], + ["product-other-account-other-other-other", "109"], + ["product-other-account-other-other-product", "92"], + ["product-other-account-other-other-search", "18"], + ["product-other-account-other-product-account", "26"], + ["product-other-account-other-product-end", "57"], + ["product-other-account-other-product-home", "12"], + ["product-other-account-other-product-other", "31"], + ["product-other-account-other-product-product", "88"], + ["product-other-account-other-product-search", "10"], + ["product-other-account-other-search-account", "1"], + ["product-other-account-other-search-product", "9"], + ["product-other-account-other-search-search", "2"], + ["product-other-account-product-account-account", "159"], + ["product-other-account-product-account-end", "54"], + ["product-other-account-product-account-home", "11"], + ["product-other-account-product-account-other", "30"], + ["product-other-account-product-account-product", "162"], + ["product-other-account-product-account-search", "11"], + ["product-other-account-product-end", "447"], + ["product-other-account-product-home-account", "18"], + ["product-other-account-product-home-end", "25"], + ["product-other-account-product-home-home", "10"], + ["product-other-account-product-home-other", "5"], + ["product-other-account-product-home-product", "39"], + ["product-other-account-product-home-search", "21"], + ["product-other-account-product-other-account", "30"], + ["product-other-account-product-other-end", "16"], + ["product-other-account-product-other-home", "7"], + ["product-other-account-product-other-other", "46"], + ["product-other-account-product-other-product", "43"], + ["product-other-account-product-other-search", "3"], + ["product-other-account-product-product-account", "122"], + ["product-other-account-product-product-end", "159"], + ["product-other-account-product-product-home", "37"], + ["product-other-account-product-product-other", "45"], + ["product-other-account-product-product-product", "429"], + ["product-other-account-product-product-search", "48"], + ["product-other-account-product-search-account", "19"], + ["product-other-account-product-search-end", "1"], + ["product-other-account-product-search-product", "58"], + ["product-other-account-product-search-search", "16"], + ["product-other-account-search-account-account", "33"], + ["product-other-account-search-account-home", "1"], + ["product-other-account-search-account-other", "2"], + ["product-other-account-search-account-product", "18"], + ["product-other-account-search-account-search", "2"], + ["product-other-account-search-end", "6"], + ["product-other-account-search-home-end", "1"], + ["product-other-account-search-home-home", "3"], + ["product-other-account-search-other-account", "1"], + ["product-other-account-search-other-end", "1"], + ["product-other-account-search-other-product", "1"], + ["product-other-account-search-product-account", "14"], + ["product-other-account-search-product-end", "17"], + ["product-other-account-search-product-home", "4"], + ["product-other-account-search-product-other", "1"], + ["product-other-account-search-product-product", "44"], + ["product-other-account-search-product-search", "11"], + ["product-other-account-search-search-account", "8"], + ["product-other-account-search-search-product", "13"], + ["product-other-account-search-search-search", "2"], + ["product-other-end", "16467"], + ["product-other-home-account-account-account", "62"], + ["product-other-home-account-account-end", "24"], + ["product-other-home-account-account-home", "13"], + ["product-other-home-account-account-other", "11"], + ["product-other-home-account-account-product", "62"], + ["product-other-home-account-account-search", "1"], + ["product-other-home-account-end", "35"], + ["product-other-home-account-home-account", "2"], + ["product-other-home-account-home-end", "8"], + ["product-other-home-account-home-home", "2"], + ["product-other-home-account-home-other", "1"], + ["product-other-home-account-home-product", "12"], + ["product-other-home-account-home-search", "6"], + ["product-other-home-account-other-account", "1"], + ["product-other-home-account-other-end", "2"], + ["product-other-home-account-other-home", "1"], + ["product-other-home-account-other-other", "5"], + ["product-other-home-account-other-product", "6"], + ["product-other-home-account-other-search", "2"], + ["product-other-home-account-product-account", "21"], + ["product-other-home-account-product-end", "24"], + ["product-other-home-account-product-home", "18"], + ["product-other-home-account-product-other", "9"], + ["product-other-home-account-product-product", "32"], + ["product-other-home-account-product-search", "8"], + ["product-other-home-account-search-account", "2"], + ["product-other-home-account-search-product", "3"], + ["product-other-home-account-search-search", "1"], + ["product-other-home-end", "1130"], + ["product-other-home-home-account-account", "12"], + ["product-other-home-home-account-end", "2"], + ["product-other-home-home-account-home", "6"], + ["product-other-home-home-account-other", "4"], + ["product-other-home-home-account-product", "10"], + ["product-other-home-home-account-search", "1"], + ["product-other-home-home-end", "72"], + ["product-other-home-home-home-account", "5"], + ["product-other-home-home-home-end", "8"], + ["product-other-home-home-home-home", "22"], + ["product-other-home-home-home-other", "12"], + ["product-other-home-home-home-product", "10"], + ["product-other-home-home-home-search", "7"], + ["product-other-home-home-other-account", "16"], + ["product-other-home-home-other-end", "14"], + ["product-other-home-home-other-home", "10"], + ["product-other-home-home-other-other", "26"], + ["product-other-home-home-other-product", "32"], + ["product-other-home-home-other-search", "3"], + ["product-other-home-home-product-account", "10"], + ["product-other-home-home-product-end", "35"], + ["product-other-home-home-product-home", "22"], + ["product-other-home-home-product-other", "13"], + ["product-other-home-home-product-product", "58"], + ["product-other-home-home-product-search", "10"], + ["product-other-home-home-search-account", "8"], + ["product-other-home-home-search-end", "2"], + ["product-other-home-home-search-home", "1"], + ["product-other-home-home-search-product", "19"], + ["product-other-home-home-search-search", "13"], + ["product-other-home-other-account-account", "10"], + ["product-other-home-other-account-end", "3"], + ["product-other-home-other-account-home", "1"], + ["product-other-home-other-account-other", "3"], + ["product-other-home-other-account-product", "7"], + ["product-other-home-other-account-search", "1"], + ["product-other-home-other-end", "54"], + ["product-other-home-other-home-account", "3"], + ["product-other-home-other-home-end", "15"], + ["product-other-home-other-home-home", "7"], + ["product-other-home-other-home-other", "8"], + ["product-other-home-other-home-product", "16"], + ["product-other-home-other-home-search", "5"], + ["product-other-home-other-other-account", "5"], + ["product-other-home-other-other-end", "10"], + ["product-other-home-other-other-home", "13"], + ["product-other-home-other-other-other", "51"], + ["product-other-home-other-other-product", "39"], + ["product-other-home-other-other-search", "3"], + ["product-other-home-other-product-account", "4"], + ["product-other-home-other-product-end", "29"], + ["product-other-home-other-product-home", "9"], + ["product-other-home-other-product-other", "12"], + ["product-other-home-other-product-product", "47"], + ["product-other-home-other-product-search", "6"], + ["product-other-home-other-search-account", "2"], + ["product-other-home-other-search-home", "1"], + ["product-other-home-other-search-product", "8"], + ["product-other-home-other-search-search", "2"], + ["product-other-home-product-account-account", "125"], + ["product-other-home-product-account-end", "21"], + ["product-other-home-product-account-home", "23"], + ["product-other-home-product-account-other", "8"], + ["product-other-home-product-account-product", "90"], + ["product-other-home-product-account-search", "2"], + ["product-other-home-product-end", "515"], + ["product-other-home-product-home-account", "24"], + ["product-other-home-product-home-end", "84"], + ["product-other-home-product-home-home", "38"], + ["product-other-home-product-home-other", "26"], + ["product-other-home-product-home-product", "194"], + ["product-other-home-product-home-search", "29"], + ["product-other-home-product-other-account", "7"], + ["product-other-home-product-other-end", "20"], + ["product-other-home-product-other-home", "27"], + ["product-other-home-product-other-other", "19"], + ["product-other-home-product-other-product", "35"], + ["product-other-home-product-other-search", "6"], + ["product-other-home-product-product-account", "77"], + ["product-other-home-product-product-end", "200"], + ["product-other-home-product-product-home", "91"], + ["product-other-home-product-product-other", "38"], + ["product-other-home-product-product-product", "444"], + ["product-other-home-product-product-search", "46"], + ["product-other-home-product-search-account", "15"], + ["product-other-home-product-search-end", "3"], + ["product-other-home-product-search-home", "2"], + ["product-other-home-product-search-product", "78"], + ["product-other-home-product-search-search", "14"], + ["product-other-home-search-account-account", "29"], + ["product-other-home-search-account-end", "4"], + ["product-other-home-search-account-home", "2"], + ["product-other-home-search-account-other", "1"], + ["product-other-home-search-account-product", "20"], + ["product-other-home-search-account-search", "3"], + ["product-other-home-search-end", "21"], + ["product-other-home-search-home-end", "2"], + ["product-other-home-search-home-product", "4"], + ["product-other-home-search-home-search", "3"], + ["product-other-home-search-other-other", "2"], + ["product-other-home-search-other-product", "2"], + ["product-other-home-search-product-account", "19"], + ["product-other-home-search-product-end", "95"], + ["product-other-home-search-product-home", "21"], + ["product-other-home-search-product-other", "9"], + ["product-other-home-search-product-product", "185"], + ["product-other-home-search-product-search", "70"], + ["product-other-home-search-search-account", "8"], + ["product-other-home-search-search-end", "6"], + ["product-other-home-search-search-home", "1"], + ["product-other-home-search-search-other", "1"], + ["product-other-home-search-search-product", "56"], + ["product-other-home-search-search-search", "33"], + ["product-other-other-account-account-account", "365"], + ["product-other-other-account-account-end", "107"], + ["product-other-other-account-account-home", "47"], + ["product-other-other-account-account-other", "79"], + ["product-other-other-account-account-product", "233"], + ["product-other-other-account-account-search", "20"], + ["product-other-other-account-end", "433"], + ["product-other-other-account-home-account", "15"], + ["product-other-other-account-home-end", "33"], + ["product-other-other-account-home-home", "19"], + ["product-other-other-account-home-other", "12"], + ["product-other-other-account-home-product", "41"], + ["product-other-other-account-home-search", "12"], + ["product-other-other-account-other-account", "38"], + ["product-other-other-account-other-end", "26"], + ["product-other-other-account-other-home", "7"], + ["product-other-other-account-other-other", "219"], + ["product-other-other-account-other-product", "62"], + ["product-other-other-account-other-search", "9"], + ["product-other-other-account-product-account", "83"], + ["product-other-other-account-product-end", "105"], + ["product-other-other-account-product-home", "30"], + ["product-other-other-account-product-other", "36"], + ["product-other-other-account-product-product", "197"], + ["product-other-other-account-product-search", "19"], + ["product-other-other-account-search-account", "13"], + ["product-other-other-account-search-end", "4"], + ["product-other-other-account-search-product", "26"], + ["product-other-other-account-search-search", "8"], + ["product-other-other-end", "7493"], + ["product-other-other-home-account-account", "56"], + ["product-other-other-home-account-end", "16"], + ["product-other-other-home-account-home", "7"], + ["product-other-other-home-account-other", "23"], + ["product-other-other-home-account-product", "51"], + ["product-other-other-home-account-search", "4"], + ["product-other-other-home-end", "492"], + ["product-other-other-home-home-account", "22"], + ["product-other-other-home-home-end", "35"], + ["product-other-other-home-home-home", "37"], + ["product-other-other-home-home-other", "70"], + ["product-other-other-home-home-product", "67"], + ["product-other-other-home-home-search", "25"], + ["product-other-other-home-other-account", "7"], + ["product-other-other-home-other-end", "7"], + ["product-other-other-home-other-home", "23"], + ["product-other-other-home-other-other", "179"], + ["product-other-other-home-other-product", "31"], + ["product-other-other-home-product-account", "82"], + ["product-other-other-home-product-end", "143"], + ["product-other-other-home-product-home", "114"], + ["product-other-other-home-product-other", "55"], + ["product-other-other-home-product-product", "244"], + ["product-other-other-home-product-search", "34"], + ["product-other-other-home-search-account", "21"], + ["product-other-other-home-search-end", "12"], + ["product-other-other-home-search-home", "5"], + ["product-other-other-home-search-other", "7"], + ["product-other-other-home-search-product", "117"], + ["product-other-other-home-search-search", "46"], + ["product-other-other-other-account-account", "401"], + ["product-other-other-other-account-end", "192"], + ["product-other-other-other-account-home", "54"], + ["product-other-other-other-account-other", "151"], + ["product-other-other-other-account-product", "233"], + ["product-other-other-other-account-search", "32"], + ["product-other-other-other-end", "2088"], + ["product-other-other-other-home-account", "62"], + ["product-other-other-other-home-end", "193"], + ["product-other-other-other-home-home", "102"], + ["product-other-other-other-home-other", "69"], + ["product-other-other-other-home-product", "281"], + ["product-other-other-other-home-search", "78"], + ["product-other-other-other-other-account", "293"], + ["product-other-other-other-other-end", "655"], + ["product-other-other-other-other-home", "242"], + ["product-other-other-other-other-other", "2272"], + ["product-other-other-other-other-product", "1248"], + ["product-other-other-other-other-search", "133"], + ["product-other-other-other-product-account", "338"], + ["product-other-other-other-product-end", "914"], + ["product-other-other-other-product-home", "173"], + ["product-other-other-other-product-other", "574"], + ["product-other-other-other-product-product", "1644"], + ["product-other-other-other-product-search", "180"], + ["product-other-other-other-search-account", "54"], + ["product-other-other-other-search-end", "14"], + ["product-other-other-other-search-home", "5"], + ["product-other-other-other-search-other", "7"], + ["product-other-other-other-search-product", "192"], + ["product-other-other-other-search-search", "56"], + ["product-other-other-product-account-account", "343"], + ["product-other-other-product-account-end", "114"], + ["product-other-other-product-account-home", "44"], + ["product-other-other-product-account-other", "96"], + ["product-other-other-product-account-product", "307"], + ["product-other-other-product-account-search", "21"], + ["product-other-other-product-end", "3464"], + ["product-other-other-product-home-account", "42"], + ["product-other-other-product-home-end", "141"], + ["product-other-other-product-home-home", "71"], + ["product-other-other-product-home-other", "113"], + ["product-other-other-product-home-product", "239"], + ["product-other-other-product-home-search", "119"], + ["product-other-other-product-other-account", "59"], + ["product-other-other-product-other-end", "145"], + ["product-other-other-product-other-home", "38"], + ["product-other-other-product-other-other", "1375"], + ["product-other-other-product-other-product", "429"], + ["product-other-other-product-other-search", "32"], + ["product-other-other-product-product-account", "316"], + ["product-other-other-product-product-end", "1210"], + ["product-other-other-product-product-home", "200"], + ["product-other-other-product-product-other", "542"], + ["product-other-other-product-product-product", "2943"], + ["product-other-other-product-product-search", "279"], + ["product-other-other-product-search-account", "48"], + ["product-other-other-product-search-end", "24"], + ["product-other-other-product-search-home", "6"], + ["product-other-other-product-search-other", "11"], + ["product-other-other-product-search-product", "431"], + ["product-other-other-product-search-search", "81"], + ["product-other-other-search-account-account", "56"], + ["product-other-other-search-account-end", "14"], + ["product-other-other-search-account-home", "5"], + ["product-other-other-search-account-other", "5"], + ["product-other-other-search-account-product", "46"], + ["product-other-other-search-account-search", "3"], + ["product-other-other-search-end", "61"], + ["product-other-other-search-home-end", "1"], + ["product-other-other-search-home-home", "2"], + ["product-other-other-search-home-product", "2"], + ["product-other-other-search-home-search", "1"], + ["product-other-other-search-other-end", "1"], + ["product-other-other-search-other-other", "19"], + ["product-other-other-search-other-product", "4"], + ["product-other-other-search-other-search", "4"], + ["product-other-other-search-product-account", "38"], + ["product-other-other-search-product-end", "150"], + ["product-other-other-search-product-home", "18"], + ["product-other-other-search-product-other", "55"], + ["product-other-other-search-product-product", "314"], + ["product-other-other-search-product-search", "102"], + ["product-other-other-search-search-account", "16"], + ["product-other-other-search-search-end", "13"], + ["product-other-other-search-search-home", "3"], + ["product-other-other-search-search-other", "10"], + ["product-other-other-search-search-product", "118"], + ["product-other-other-search-search-search", "65"], + ["product-other-product-account-account-account", "373"], + ["product-other-product-account-account-end", "97"], + ["product-other-product-account-account-home", "39"], + ["product-other-product-account-account-other", "73"], + ["product-other-product-account-account-product", "545"], + ["product-other-product-account-account-search", "26"], + ["product-other-product-account-end", "301"], + ["product-other-product-account-home-account", "13"], + ["product-other-product-account-home-end", "22"], + ["product-other-product-account-home-home", "14"], + ["product-other-product-account-home-other", "11"], + ["product-other-product-account-home-product", "42"], + ["product-other-product-account-home-search", "2"], + ["product-other-product-account-other-account", "22"], + ["product-other-product-account-other-end", "26"], + ["product-other-product-account-other-home", "5"], + ["product-other-product-account-other-other", "51"], + ["product-other-product-account-other-product", "106"], + ["product-other-product-account-other-search", "4"], + ["product-other-product-account-product-account", "186"], + ["product-other-product-account-product-end", "204"], + ["product-other-product-account-product-home", "37"], + ["product-other-product-account-product-other", "64"], + ["product-other-product-account-product-product", "440"], + ["product-other-product-account-product-search", "33"], + ["product-other-product-account-search-account", "9"], + ["product-other-product-account-search-end", "4"], + ["product-other-product-account-search-product", "42"], + ["product-other-product-account-search-search", "7"], + ["product-other-product-end", "11861"], + ["product-other-product-home-account-account", "38"], + ["product-other-product-home-account-end", "4"], + ["product-other-product-home-account-home", "4"], + ["product-other-product-home-account-other", "9"], + ["product-other-product-home-account-product", "36"], + ["product-other-product-home-account-search", "2"], + ["product-other-product-home-end", "336"], + ["product-other-product-home-home-account", "8"], + ["product-other-product-home-home-end", "27"], + ["product-other-product-home-home-home", "23"], + ["product-other-product-home-home-other", "21"], + ["product-other-product-home-home-product", "40"], + ["product-other-product-home-home-search", "16"], + ["product-other-product-home-other-account", "10"], + ["product-other-product-home-other-end", "18"], + ["product-other-product-home-other-home", "15"], + ["product-other-product-home-other-other", "43"], + ["product-other-product-home-other-product", "130"], + ["product-other-product-home-other-search", "7"], + ["product-other-product-home-product-account", "53"], + ["product-other-product-home-product-end", "133"], + ["product-other-product-home-product-home", "114"], + ["product-other-product-home-product-other", "39"], + ["product-other-product-home-product-product", "321"], + ["product-other-product-home-product-search", "34"], + ["product-other-product-home-search-account", "25"], + ["product-other-product-home-search-end", "14"], + ["product-other-product-home-search-home", "7"], + ["product-other-product-home-search-other", "3"], + ["product-other-product-home-search-product", "279"], + ["product-other-product-home-search-search", "68"], + ["product-other-product-other-account-account", "85"], + ["product-other-product-other-account-end", "28"], + ["product-other-product-other-account-home", "3"], + ["product-other-product-other-account-other", "26"], + ["product-other-product-other-account-product", "60"], + ["product-other-product-other-account-search", "5"], + ["product-other-product-other-end", "572"], + ["product-other-product-other-home-account", "8"], + ["product-other-product-other-home-end", "25"], + ["product-other-product-other-home-home", "13"], + ["product-other-product-other-home-other", "11"], + ["product-other-product-other-home-product", "45"], + ["product-other-product-other-home-search", "17"], + ["product-other-product-other-other-account", "56"], + ["product-other-product-other-other-end", "100"], + ["product-other-product-other-other-home", "32"], + ["product-other-product-other-other-other", "303"], + ["product-other-product-other-other-product", "371"], + ["product-other-product-other-other-search", "30"], + ["product-other-product-other-product-account", "145"], + ["product-other-product-other-product-end", "555"], + ["product-other-product-other-product-home", "86"], + ["product-other-product-other-product-other", "749"], + ["product-other-product-other-product-product", "1018"], + ["product-other-product-other-product-search", "126"], + ["product-other-product-other-search-account", "10"], + ["product-other-product-other-search-end", "3"], + ["product-other-product-other-search-home", "1"], + ["product-other-product-other-search-other", "6"], + ["product-other-product-other-search-product", "101"], + ["product-other-product-other-search-search", "28"], + ["product-other-product-product-account-account", "417"], + ["product-other-product-product-account-end", "110"], + ["product-other-product-product-account-home", "19"], + ["product-other-product-product-account-other", "67"], + ["product-other-product-product-account-product", "354"], + ["product-other-product-product-account-search", "22"], + ["product-other-product-product-end", "5280"], + ["product-other-product-product-home-account", "29"], + ["product-other-product-product-home-end", "115"], + ["product-other-product-product-home-home", "44"], + ["product-other-product-product-home-other", "80"], + ["product-other-product-product-home-product", "280"], + ["product-other-product-product-home-search", "189"], + ["product-other-product-product-other-account", "61"], + ["product-other-product-product-other-end", "200"], + ["product-other-product-product-other-home", "44"], + ["product-other-product-product-other-other", "258"], + ["product-other-product-product-other-product", "823"], + ["product-other-product-product-other-search", "43"], + ["product-other-product-product-product-account", "449"], + ["product-other-product-product-product-end", "2778"], + ["product-other-product-product-product-home", "405"], + ["product-other-product-product-product-other", "711"], + ["product-other-product-product-product-product", "12005"], + ["product-other-product-product-product-search", "791"], + ["product-other-product-product-search-account", "61"], + ["product-other-product-product-search-end", "26"], + ["product-other-product-product-search-home", "4"], + ["product-other-product-product-search-other", "10"], + ["product-other-product-product-search-product", "1102"], + ["product-other-product-product-search-search", "185"], + ["product-other-product-search-account-account", "68"], + ["product-other-product-search-account-end", "3"], + ["product-other-product-search-account-home", "3"], + ["product-other-product-search-account-other", "7"], + ["product-other-product-search-account-product", "44"], + ["product-other-product-search-account-search", "5"], + ["product-other-product-search-end", "71"], + ["product-other-product-search-home-end", "5"], + ["product-other-product-search-home-home", "2"], + ["product-other-product-search-home-other", "2"], + ["product-other-product-search-home-product", "4"], + ["product-other-product-search-home-search", "3"], + ["product-other-product-search-other-end", "1"], + ["product-other-product-search-other-other", "3"], + ["product-other-product-search-other-product", "9"], + ["product-other-product-search-other-search", "1"], + ["product-other-product-search-product-account", "67"], + ["product-other-product-search-product-end", "442"], + ["product-other-product-search-product-home", "90"], + ["product-other-product-search-product-other", "117"], + ["product-other-product-search-product-product", "1075"], + ["product-other-product-search-product-search", "377"], + ["product-other-product-search-search-account", "15"], + ["product-other-product-search-search-end", "17"], + ["product-other-product-search-search-home", "4"], + ["product-other-product-search-search-other", "6"], + ["product-other-product-search-search-product", "222"], + ["product-other-product-search-search-search", "69"], + ["product-other-search-account-account-account", "57"], + ["product-other-search-account-account-end", "16"], + ["product-other-search-account-account-home", "3"], + ["product-other-search-account-account-other", "8"], + ["product-other-search-account-account-product", "100"], + ["product-other-search-account-account-search", "18"], + ["product-other-search-account-end", "20"], + ["product-other-search-account-home-other", "1"], + ["product-other-search-account-home-product", "1"], + ["product-other-search-account-home-search", "1"], + ["product-other-search-account-other-account", "3"], + ["product-other-search-account-other-end", "1"], + ["product-other-search-account-other-other", "1"], + ["product-other-search-account-other-product", "9"], + ["product-other-search-account-other-search", "1"], + ["product-other-search-account-product-account", "32"], + ["product-other-search-account-product-end", "36"], + ["product-other-search-account-product-home", "4"], + ["product-other-search-account-product-other", "7"], + ["product-other-search-account-product-product", "59"], + ["product-other-search-account-product-search", "16"], + ["product-other-search-account-search-account", "14"], + ["product-other-search-account-search-product", "5"], + ["product-other-search-account-search-search", "3"], + ["product-other-search-end", "133"], + ["product-other-search-home-account-product", "1"], + ["product-other-search-home-end", "4"], + ["product-other-search-home-home-home", "2"], + ["product-other-search-home-home-other", "3"], + ["product-other-search-home-home-search", "1"], + ["product-other-search-home-other-product", "2"], + ["product-other-search-home-product-account", "2"], + ["product-other-search-home-product-product", "6"], + ["product-other-search-home-search-product", "10"], + ["product-other-search-home-search-search", "1"], + ["product-other-search-other-account-account", "1"], + ["product-other-search-other-account-product", "2"], + ["product-other-search-other-end", "12"], + ["product-other-search-other-home-account", "1"], + ["product-other-search-other-home-product", "1"], + ["product-other-search-other-home-search", "1"], + ["product-other-search-other-other-account", "1"], + ["product-other-search-other-other-end", "2"], + ["product-other-search-other-other-home", "1"], + ["product-other-search-other-other-other", "1"], + ["product-other-search-other-other-product", "2"], + ["product-other-search-other-product-end", "8"], + ["product-other-search-other-product-other", "5"], + ["product-other-search-other-product-product", "15"], + ["product-other-search-other-product-search", "3"], + ["product-other-search-other-search-other", "3"], + ["product-other-search-other-search-product", "10"], + ["product-other-search-other-search-search", "1"], + ["product-other-search-product-account-account", "42"], + ["product-other-search-product-account-end", "9"], + ["product-other-search-product-account-home", "1"], + ["product-other-search-product-account-other", "13"], + ["product-other-search-product-account-product", "35"], + ["product-other-search-product-account-search", "7"], + ["product-other-search-product-end", "619"], + ["product-other-search-product-home-account", "3"], + ["product-other-search-product-home-end", "16"], + ["product-other-search-product-home-home", "3"], + ["product-other-search-product-home-other", "13"], + ["product-other-search-product-home-product", "29"], + ["product-other-search-product-home-search", "23"], + ["product-other-search-product-other-account", "5"], + ["product-other-search-product-other-end", "25"], + ["product-other-search-product-other-home", "2"], + ["product-other-search-product-other-other", "32"], + ["product-other-search-product-other-product", "54"], + ["product-other-search-product-other-search", "28"], + ["product-other-search-product-product-account", "31"], + ["product-other-search-product-product-end", "266"], + ["product-other-search-product-product-home", "38"], + ["product-other-search-product-product-other", "77"], + ["product-other-search-product-product-product", "625"], + ["product-other-search-product-product-search", "192"], + ["product-other-search-product-search-account", "13"], + ["product-other-search-product-search-end", "13"], + ["product-other-search-product-search-other", "7"], + ["product-other-search-product-search-product", "358"], + ["product-other-search-product-search-search", "79"], + ["product-other-search-search-account-account", "22"], + ["product-other-search-search-account-end", "3"], + ["product-other-search-search-account-home", "1"], + ["product-other-search-search-account-other", "1"], + ["product-other-search-search-account-product", "15"], + ["product-other-search-search-account-search", "4"], + ["product-other-search-search-end", "34"], + ["product-other-search-search-home-end", "1"], + ["product-other-search-search-home-product", "1"], + ["product-other-search-search-home-search", "1"], + ["product-other-search-search-other-end", "2"], + ["product-other-search-search-other-home", "2"], + ["product-other-search-search-other-other", "5"], + ["product-other-search-search-other-product", "4"], + ["product-other-search-search-other-search", "1"], + ["product-other-search-search-product-account", "16"], + ["product-other-search-search-product-end", "81"], + ["product-other-search-search-product-home", "13"], + ["product-other-search-search-product-other", "25"], + ["product-other-search-search-product-product", "190"], + ["product-other-search-search-product-search", "66"], + ["product-other-search-search-search-account", "15"], + ["product-other-search-search-search-end", "10"], + ["product-other-search-search-search-home", "5"], + ["product-other-search-search-search-other", "3"], + ["product-other-search-search-search-product", "84"], + ["product-other-search-search-search-search", "62"], + ["product-product-account-account-account-account", "6955"], + ["product-product-account-account-account-end", "1942"], + ["product-product-account-account-account-home", "554"], + ["product-product-account-account-account-other", "1130"], + ["product-product-account-account-account-product", "7048"], + ["product-product-account-account-account-search", "428"], + ["product-product-account-account-end", "8484"], + ["product-product-account-account-home-account", "278"], + ["product-product-account-account-home-end", "442"], + ["product-product-account-account-home-home", "206"], + ["product-product-account-account-home-other", "83"], + ["product-product-account-account-home-product", "960"], + ["product-product-account-account-home-search", "344"], + ["product-product-account-account-other-account", "186"], + ["product-product-account-account-other-end", "137"], + ["product-product-account-account-other-home", "51"], + ["product-product-account-account-other-other", "490"], + ["product-product-account-account-other-product", "773"], + ["product-product-account-account-other-search", "37"], + ["product-product-account-account-product-account", "5613"], + ["product-product-account-account-product-end", "7342"], + ["product-product-account-account-product-home", "1805"], + ["product-product-account-account-product-other", "481"], + ["product-product-account-account-product-product", "18321"], + ["product-product-account-account-product-search", "1561"], + ["product-product-account-account-search-account", "392"], + ["product-product-account-account-search-end", "72"], + ["product-product-account-account-search-home", "22"], + ["product-product-account-account-search-other", "9"], + ["product-product-account-account-search-product", "962"], + ["product-product-account-account-search-search", "304"], + ["product-product-account-end", "25006"], + ["product-product-account-home-account-account", "190"], + ["product-product-account-home-account-end", "73"], + ["product-product-account-home-account-home", "76"], + ["product-product-account-home-account-other", "19"], + ["product-product-account-home-account-product", "248"], + ["product-product-account-home-account-search", "16"], + ["product-product-account-home-end", "1191"], + ["product-product-account-home-home-account", "66"], + ["product-product-account-home-home-end", "84"], + ["product-product-account-home-home-home", "64"], + ["product-product-account-home-home-other", "32"], + ["product-product-account-home-home-product", "182"], + ["product-product-account-home-home-search", "58"], + ["product-product-account-home-other-account", "16"], + ["product-product-account-home-other-end", "17"], + ["product-product-account-home-other-home", "18"], + ["product-product-account-home-other-other", "70"], + ["product-product-account-home-other-product", "35"], + ["product-product-account-home-other-search", "4"], + ["product-product-account-home-product-account", "332"], + ["product-product-account-home-product-end", "591"], + ["product-product-account-home-product-home", "525"], + ["product-product-account-home-product-other", "36"], + ["product-product-account-home-product-product", "1246"], + ["product-product-account-home-product-search", "132"], + ["product-product-account-home-search-account", "131"], + ["product-product-account-home-search-end", "26"], + ["product-product-account-home-search-home", "15"], + ["product-product-account-home-search-other", "5"], + ["product-product-account-home-search-product", "500"], + ["product-product-account-home-search-search", "154"], + ["product-product-account-other-account-account", "157"], + ["product-product-account-other-account-end", "75"], + ["product-product-account-other-account-home", "19"], + ["product-product-account-other-account-other", "77"], + ["product-product-account-other-account-product", "142"], + ["product-product-account-other-account-search", "11"], + ["product-product-account-other-end", "581"], + ["product-product-account-other-home-account", "16"], + ["product-product-account-other-home-end", "32"], + ["product-product-account-other-home-home", "15"], + ["product-product-account-other-home-other", "4"], + ["product-product-account-other-home-product", "88"], + ["product-product-account-other-home-search", "25"], + ["product-product-account-other-other-account", "143"], + ["product-product-account-other-other-end", "197"], + ["product-product-account-other-other-home", "61"], + ["product-product-account-other-other-other", "505"], + ["product-product-account-other-other-product", "509"], + ["product-product-account-other-other-search", "36"], + ["product-product-account-other-product-account", "238"], + ["product-product-account-other-product-end", "657"], + ["product-product-account-other-product-home", "99"], + ["product-product-account-other-product-other", "127"], + ["product-product-account-other-product-product", "1819"], + ["product-product-account-other-product-search", "115"], + ["product-product-account-other-search-account", "28"], + ["product-product-account-other-search-end", "3"], + ["product-product-account-other-search-home", "1"], + ["product-product-account-other-search-other", "1"], + ["product-product-account-other-search-product", "73"], + ["product-product-account-other-search-search", "18"], + ["product-product-account-product-account-account", "3004"], + ["product-product-account-product-account-end", "1155"], + ["product-product-account-product-account-home", "300"], + ["product-product-account-product-account-other", "224"], + ["product-product-account-product-account-product", "6933"], + ["product-product-account-product-account-search", "271"], + ["product-product-account-product-end", "17242"], + ["product-product-account-product-home-account", "281"], + ["product-product-account-product-home-end", "694"], + ["product-product-account-product-home-home", "255"], + ["product-product-account-product-home-other", "85"], + ["product-product-account-product-home-product", "1699"], + ["product-product-account-product-home-search", "596"], + ["product-product-account-product-other-account", "86"], + ["product-product-account-product-other-end", "89"], + ["product-product-account-product-other-home", "34"], + ["product-product-account-product-other-other", "301"], + ["product-product-account-product-other-product", "363"], + ["product-product-account-product-other-search", "33"], + ["product-product-account-product-product-account", "4327"], + ["product-product-account-product-product-end", "8685"], + ["product-product-account-product-product-home", "1632"], + ["product-product-account-product-product-other", "345"], + ["product-product-account-product-product-product", "24884"], + ["product-product-account-product-product-search", "1777"], + ["product-product-account-product-search-account", "421"], + ["product-product-account-product-search-end", "127"], + ["product-product-account-product-search-home", "26"], + ["product-product-account-product-search-other", "8"], + ["product-product-account-product-search-product", "2276"], + ["product-product-account-product-search-search", "542"], + ["product-product-account-search-account-account", "396"], + ["product-product-account-search-account-end", "100"], + ["product-product-account-search-account-home", "29"], + ["product-product-account-search-account-other", "16"], + ["product-product-account-search-account-product", "384"], + ["product-product-account-search-account-search", "66"], + ["product-product-account-search-end", "172"], + ["product-product-account-search-home-account", "3"], + ["product-product-account-search-home-end", "5"], + ["product-product-account-search-home-home", "4"], + ["product-product-account-search-home-other", "1"], + ["product-product-account-search-home-product", "15"], + ["product-product-account-search-home-search", "12"], + ["product-product-account-search-other-account", "1"], + ["product-product-account-search-other-end", "3"], + ["product-product-account-search-other-other", "4"], + ["product-product-account-search-other-product", "6"], + ["product-product-account-search-other-search", "2"], + ["product-product-account-search-product-account", "286"], + ["product-product-account-search-product-end", "608"], + ["product-product-account-search-product-home", "123"], + ["product-product-account-search-product-other", "11"], + ["product-product-account-search-product-product", "1513"], + ["product-product-account-search-product-search", "430"], + ["product-product-account-search-search-account", "94"], + ["product-product-account-search-search-end", "51"], + ["product-product-account-search-search-home", "11"], + ["product-product-account-search-search-other", "3"], + ["product-product-account-search-search-product", "438"], + ["product-product-account-search-search-search", "185"], + ["product-product-end", "1748764"], + ["product-product-home-account-account-account", "1313"], + ["product-product-home-account-account-end", "329"], + ["product-product-home-account-account-home", "286"], + ["product-product-home-account-account-other", "153"], + ["product-product-home-account-account-product", "2170"], + ["product-product-home-account-account-search", "114"], + ["product-product-home-account-end", "1041"], + ["product-product-home-account-home-account", "217"], + ["product-product-home-account-home-end", "181"], + ["product-product-home-account-home-home", "84"], + ["product-product-home-account-home-other", "28"], + ["product-product-home-account-home-product", "363"], + ["product-product-home-account-home-search", "102"], + ["product-product-home-account-other-account", "44"], + ["product-product-home-account-other-end", "31"], + ["product-product-home-account-other-home", "26"], + ["product-product-home-account-other-other", "171"], + ["product-product-home-account-other-product", "230"], + ["product-product-home-account-other-search", "8"], + ["product-product-home-account-product-account", "566"], + ["product-product-home-account-product-end", "963"], + ["product-product-home-account-product-home", "566"], + ["product-product-home-account-product-other", "64"], + ["product-product-home-account-product-product", "2197"], + ["product-product-home-account-product-search", "200"], + ["product-product-home-account-search-account", "75"], + ["product-product-home-account-search-end", "9"], + ["product-product-home-account-search-home", "3"], + ["product-product-home-account-search-product", "196"], + ["product-product-home-account-search-search", "59"], + ["product-product-home-end", "50800"], + ["product-product-home-home-account-account", "455"], + ["product-product-home-home-account-end", "91"], + ["product-product-home-home-account-home", "116"], + ["product-product-home-home-account-other", "85"], + ["product-product-home-home-account-product", "412"], + ["product-product-home-home-account-search", "31"], + ["product-product-home-home-end", "3872"], + ["product-product-home-home-home-account", "186"], + ["product-product-home-home-home-end", "466"], + ["product-product-home-home-home-home", "892"], + ["product-product-home-home-home-other", "125"], + ["product-product-home-home-home-product", "1139"], + ["product-product-home-home-home-search", "432"], + ["product-product-home-home-other-account", "70"], + ["product-product-home-home-other-end", "45"], + ["product-product-home-home-other-home", "92"], + ["product-product-home-home-other-other", "376"], + ["product-product-home-home-other-product", "325"], + ["product-product-home-home-other-search", "20"], + ["product-product-home-home-product-account", "522"], + ["product-product-home-home-product-end", "1808"], + ["product-product-home-home-product-home", "1679"], + ["product-product-home-home-product-other", "125"], + ["product-product-home-home-product-product", "4161"], + ["product-product-home-home-product-search", "476"], + ["product-product-home-home-search-account", "254"], + ["product-product-home-home-search-end", "125"], + ["product-product-home-home-search-home", "115"], + ["product-product-home-home-search-other", "10"], + ["product-product-home-home-search-product", "2499"], + ["product-product-home-home-search-search", "635"], + ["product-product-home-other-account-account", "168"], + ["product-product-home-other-account-end", "41"], + ["product-product-home-other-account-home", "38"], + ["product-product-home-other-account-other", "41"], + ["product-product-home-other-account-product", "91"], + ["product-product-home-other-account-search", "10"], + ["product-product-home-other-end", "531"], + ["product-product-home-other-home-account", "47"], + ["product-product-home-other-home-end", "119"], + ["product-product-home-other-home-home", "57"], + ["product-product-home-other-home-other", "44"], + ["product-product-home-other-home-product", "263"], + ["product-product-home-other-home-search", "53"], + ["product-product-home-other-other-account", "88"], + ["product-product-home-other-other-end", "316"], + ["product-product-home-other-other-home", "256"], + ["product-product-home-other-other-other", "829"], + ["product-product-home-other-other-product", "798"], + ["product-product-home-other-other-search", "57"], + ["product-product-home-other-product-account", "155"], + ["product-product-home-other-product-end", "630"], + ["product-product-home-other-product-home", "272"], + ["product-product-home-other-product-other", "165"], + ["product-product-home-other-product-product", "1380"], + ["product-product-home-other-product-search", "141"], + ["product-product-home-other-search-account", "13"], + ["product-product-home-other-search-end", "4"], + ["product-product-home-other-search-home", "1"], + ["product-product-home-other-search-other", "2"], + ["product-product-home-other-search-product", "92"], + ["product-product-home-other-search-search", "26"], + ["product-product-home-product-account-account", "2471"], + ["product-product-home-product-account-end", "669"], + ["product-product-home-product-account-home", "618"], + ["product-product-home-product-account-other", "158"], + ["product-product-home-product-account-product", "3002"], + ["product-product-home-product-account-search", "184"], + ["product-product-home-product-end", "27184"], + ["product-product-home-product-home-account", "1124"], + ["product-product-home-product-home-end", "4439"], + ["product-product-home-product-home-home", "1541"], + ["product-product-home-product-home-other", "315"], + ["product-product-home-product-home-product", "12717"], + ["product-product-home-product-home-search", "2081"], + ["product-product-home-product-other-account", "62"], + ["product-product-home-product-other-end", "111"], + ["product-product-home-product-other-home", "97"], + ["product-product-home-product-other-other", "277"], + ["product-product-home-product-other-product", "468"], + ["product-product-home-product-other-search", "23"], + ["product-product-home-product-product-account", "2844"], + ["product-product-home-product-product-end", "12478"], + ["product-product-home-product-product-home", "7504"], + ["product-product-home-product-product-other", "389"], + ["product-product-home-product-product-product", "29551"], + ["product-product-home-product-product-search", "2675"], + ["product-product-home-product-search-account", "503"], + ["product-product-home-product-search-end", "220"], + ["product-product-home-product-search-home", "124"], + ["product-product-home-product-search-other", "14"], + ["product-product-home-product-search-product", "4628"], + ["product-product-home-product-search-search", "941"], + ["product-product-home-search-account-account", "1376"], + ["product-product-home-search-account-end", "247"], + ["product-product-home-search-account-home", "126"], + ["product-product-home-search-account-other", "83"], + ["product-product-home-search-account-product", "1286"], + ["product-product-home-search-account-search", "159"], + ["product-product-home-search-end", "2329"], + ["product-product-home-search-home-account", "34"], + ["product-product-home-search-home-end", "107"], + ["product-product-home-search-home-home", "74"], + ["product-product-home-search-home-other", "18"], + ["product-product-home-search-home-product", "358"], + ["product-product-home-search-home-search", "402"], + ["product-product-home-search-other-account", "1"], + ["product-product-home-search-other-end", "8"], + ["product-product-home-search-other-home", "9"], + ["product-product-home-search-other-other", "29"], + ["product-product-home-search-other-product", "39"], + ["product-product-home-search-other-search", "7"], + ["product-product-home-search-product-account", "1056"], + ["product-product-home-search-product-end", "10413"], + ["product-product-home-search-product-home", "2776"], + ["product-product-home-search-product-other", "172"], + ["product-product-home-search-product-product", "20989"], + ["product-product-home-search-product-search", "6827"], + ["product-product-home-search-search-account", "431"], + ["product-product-home-search-search-end", "637"], + ["product-product-home-search-search-home", "217"], + ["product-product-home-search-search-other", "31"], + ["product-product-home-search-search-product", "6374"], + ["product-product-home-search-search-search", "2478"], + ["product-product-other-account-account-account", "389"], + ["product-product-other-account-account-end", "94"], + ["product-product-other-account-account-home", "41"], + ["product-product-other-account-account-other", "86"], + ["product-product-other-account-account-product", "329"], + ["product-product-other-account-account-search", "22"], + ["product-product-other-account-end", "308"], + ["product-product-other-account-home-account", "15"], + ["product-product-other-account-home-end", "17"], + ["product-product-other-account-home-home", "17"], + ["product-product-other-account-home-other", "6"], + ["product-product-other-account-home-product", "44"], + ["product-product-other-account-home-search", "13"], + ["product-product-other-account-other-account", "46"], + ["product-product-other-account-other-end", "29"], + ["product-product-other-account-other-home", "8"], + ["product-product-other-account-other-other", "100"], + ["product-product-other-account-other-product", "76"], + ["product-product-other-account-other-search", "3"], + ["product-product-other-account-product-account", "122"], + ["product-product-other-account-product-end", "136"], + ["product-product-other-account-product-home", "31"], + ["product-product-other-account-product-other", "54"], + ["product-product-other-account-product-product", "280"], + ["product-product-other-account-product-search", "37"], + ["product-product-other-account-search-account", "15"], + ["product-product-other-account-search-end", "4"], + ["product-product-other-account-search-home", "1"], + ["product-product-other-account-search-product", "34"], + ["product-product-other-account-search-search", "7"], + ["product-product-other-end", "5172"], + ["product-product-other-home-account-account", "50"], + ["product-product-other-home-account-end", "5"], + ["product-product-other-home-account-home", "5"], + ["product-product-other-home-account-other", "8"], + ["product-product-other-home-account-product", "39"], + ["product-product-other-home-account-search", "3"], + ["product-product-other-home-end", "360"], + ["product-product-other-home-home-account", "17"], + ["product-product-other-home-home-end", "19"], + ["product-product-other-home-home-home", "22"], + ["product-product-other-home-home-other", "29"], + ["product-product-other-home-home-product", "47"], + ["product-product-other-home-home-search", "13"], + ["product-product-other-home-other-account", "6"], + ["product-product-other-home-other-end", "8"], + ["product-product-other-home-other-home", "15"], + ["product-product-other-home-other-other", "34"], + ["product-product-other-home-other-product", "42"], + ["product-product-other-home-other-search", "6"], + ["product-product-other-home-product-account", "62"], + ["product-product-other-home-product-end", "137"], + ["product-product-other-home-product-home", "129"], + ["product-product-other-home-product-other", "25"], + ["product-product-other-home-product-product", "304"], + ["product-product-other-home-product-search", "38"], + ["product-product-other-home-search-account", "30"], + ["product-product-other-home-search-end", "4"], + ["product-product-other-home-search-home", "3"], + ["product-product-other-home-search-product", "114"], + ["product-product-other-home-search-search", "27"], + ["product-product-other-other-account-account", "265"], + ["product-product-other-other-account-end", "110"], + ["product-product-other-other-account-home", "34"], + ["product-product-other-other-account-other", "92"], + ["product-product-other-other-account-product", "163"], + ["product-product-other-other-account-search", "16"], + ["product-product-other-other-end", "1967"], + ["product-product-other-other-home-account", "40"], + ["product-product-other-other-home-end", "176"], + ["product-product-other-other-home-home", "75"], + ["product-product-other-other-home-other", "79"], + ["product-product-other-other-home-product", "252"], + ["product-product-other-other-home-search", "52"], + ["product-product-other-other-other-account", "324"], + ["product-product-other-other-other-end", "594"], + ["product-product-other-other-other-home", "239"], + ["product-product-other-other-other-other", "1570"], + ["product-product-other-other-other-product", "1312"], + ["product-product-other-other-other-search", "112"], + ["product-product-other-other-product-account", "325"], + ["product-product-other-other-product-end", "975"], + ["product-product-other-other-product-home", "181"], + ["product-product-other-other-product-other", "655"], + ["product-product-other-other-product-product", "2093"], + ["product-product-other-other-product-search", "203"], + ["product-product-other-other-search-account", "31"], + ["product-product-other-other-search-end", "17"], + ["product-product-other-other-search-home", "6"], + ["product-product-other-other-search-other", "10"], + ["product-product-other-other-search-product", "235"], + ["product-product-other-other-search-search", "76"], + ["product-product-other-product-account-account", "389"], + ["product-product-other-product-account-end", "98"], + ["product-product-other-product-account-home", "25"], + ["product-product-other-product-account-other", "71"], + ["product-product-other-product-account-product", "382"], + ["product-product-other-product-account-search", "33"], + ["product-product-other-product-end", "3851"], + ["product-product-other-product-home-account", "27"], + ["product-product-other-product-home-end", "110"], + ["product-product-other-product-home-home", "52"], + ["product-product-other-product-home-other", "70"], + ["product-product-other-product-home-product", "232"], + ["product-product-other-product-home-search", "141"], + ["product-product-other-product-other-account", "71"], + ["product-product-other-product-other-end", "170"], + ["product-product-other-product-other-home", "32"], + ["product-product-other-product-other-other", "288"], + ["product-product-other-product-other-product", "951"], + ["product-product-other-product-other-search", "59"], + ["product-product-other-product-product-account", "365"], + ["product-product-other-product-product-end", "1891"], + ["product-product-other-product-product-home", "299"], + ["product-product-other-product-product-other", "610"], + ["product-product-other-product-product-product", "6674"], + ["product-product-other-product-product-search", "506"], + ["product-product-other-product-search-account", "40"], + ["product-product-other-product-search-end", "19"], + ["product-product-other-product-search-home", "7"], + ["product-product-other-product-search-other", "7"], + ["product-product-other-product-search-product", "680"], + ["product-product-other-product-search-search", "133"], + ["product-product-other-search-account-account", "65"], + ["product-product-other-search-account-end", "5"], + ["product-product-other-search-account-other", "5"], + ["product-product-other-search-account-product", "54"], + ["product-product-other-search-account-search", "8"], + ["product-product-other-search-end", "43"], + ["product-product-other-search-home-home", "1"], + ["product-product-other-search-home-other", "2"], + ["product-product-other-search-home-product", "1"], + ["product-product-other-search-home-search", "4"], + ["product-product-other-search-other-end", "3"], + ["product-product-other-search-other-other", "3"], + ["product-product-other-search-other-product", "11"], + ["product-product-other-search-other-search", "4"], + ["product-product-other-search-product-account", "43"], + ["product-product-other-search-product-end", "187"], + ["product-product-other-search-product-home", "22"], + ["product-product-other-search-product-other", "43"], + ["product-product-other-search-product-product", "466"], + ["product-product-other-search-product-search", "137"], + ["product-product-other-search-search-account", "19"], + ["product-product-other-search-search-end", "8"], + ["product-product-other-search-search-other", "4"], + ["product-product-other-search-search-product", "98"], + ["product-product-other-search-search-search", "54"], + ["product-product-product-account-account-account", "7640"], + ["product-product-product-account-account-end", "3180"], + ["product-product-product-account-account-home", "796"], + ["product-product-product-account-account-other", "691"], + ["product-product-product-account-account-product", "15586"], + ["product-product-product-account-account-search", "791"], + ["product-product-product-account-end", "10043"], + ["product-product-product-account-home-account", "229"], + ["product-product-product-account-home-end", "382"], + ["product-product-product-account-home-home", "198"], + ["product-product-product-account-home-other", "63"], + ["product-product-product-account-home-product", "1141"], + ["product-product-product-account-home-search", "339"], + ["product-product-product-account-other-account", "188"], + ["product-product-product-account-other-end", "238"], + ["product-product-product-account-other-home", "69"], + ["product-product-product-account-other-other", "544"], + ["product-product-product-account-other-product", "1523"], + ["product-product-product-account-other-search", "56"], + ["product-product-product-account-product-account", "5324"], + ["product-product-product-account-product-end", "7259"], + ["product-product-product-account-product-home", "1407"], + ["product-product-product-account-product-other", "365"], + ["product-product-product-account-product-product", "21128"], + ["product-product-product-account-product-search", "1633"], + ["product-product-product-account-search-account", "392"], + ["product-product-product-account-search-end", "74"], + ["product-product-product-account-search-home", "14"], + ["product-product-product-account-search-other", "8"], + ["product-product-product-account-search-product", "1400"], + ["product-product-product-account-search-search", "329"], + ["product-product-product-end", "719556"], + ["product-product-product-home-account-account", "1644"], + ["product-product-product-home-account-end", "382"], + ["product-product-product-home-account-home", "343"], + ["product-product-product-home-account-other", "202"], + ["product-product-product-home-account-product", "1780"], + ["product-product-product-home-account-search", "124"], + ["product-product-product-home-end", "18246"], + ["product-product-product-home-home-account", "440"], + ["product-product-product-home-home-end", "1311"], + ["product-product-product-home-home-home", "1218"], + ["product-product-product-home-home-other", "328"], + ["product-product-product-home-home-product", "3291"], + ["product-product-product-home-home-search", "1428"], + ["product-product-product-home-other-account", "132"], + ["product-product-product-home-other-end", "200"], + ["product-product-product-home-other-home", "200"], + ["product-product-product-home-other-other", "906"], + ["product-product-product-home-other-product", "1044"], + ["product-product-product-home-other-search", "59"], + ["product-product-product-home-product-account", "2851"], + ["product-product-product-home-product-end", "10482"], + ["product-product-product-home-product-home", "8006"], + ["product-product-product-home-product-other", "425"], + ["product-product-product-home-product-product", "22689"], + ["product-product-product-home-product-search", "2641"], + ["product-product-product-home-search-account", "1296"], + ["product-product-product-home-search-end", "860"], + ["product-product-product-home-search-home", "322"], + ["product-product-product-home-search-other", "48"], + ["product-product-product-home-search-product", "17515"], + ["product-product-product-home-search-search", "4157"], + ["product-product-product-other-account-account", "345"], + ["product-product-product-other-account-end", "122"], + ["product-product-product-other-account-home", "39"], + ["product-product-product-other-account-other", "101"], + ["product-product-product-other-account-product", "268"], + ["product-product-product-other-account-search", "24"], + ["product-product-product-other-end", "1922"], + ["product-product-product-other-home-account", "31"], + ["product-product-product-other-home-end", "121"], + ["product-product-product-other-home-home", "53"], + ["product-product-product-other-home-other", "34"], + ["product-product-product-other-home-product", "253"], + ["product-product-product-other-home-search", "68"], + ["product-product-product-other-other-account", "247"], + ["product-product-product-other-other-end", "661"], + ["product-product-product-other-other-home", "219"], + ["product-product-product-other-other-other", "1579"], + ["product-product-product-other-other-product", "1751"], + ["product-product-product-other-other-search", "157"], + ["product-product-product-other-product-account", "377"], + ["product-product-product-other-product-end", "1526"], + ["product-product-product-other-product-home", "247"], + ["product-product-product-other-product-other", "617"], + ["product-product-product-other-product-product", "4641"], + ["product-product-product-other-product-search", "372"], + ["product-product-product-other-search-account", "39"], + ["product-product-product-other-search-end", "18"], + ["product-product-product-other-search-home", "6"], + ["product-product-product-other-search-other", "6"], + ["product-product-product-other-search-product", "378"], + ["product-product-product-other-search-search", "94"], + ["product-product-product-product-account-account", "16559"], + ["product-product-product-product-account-end", "5138"], + ["product-product-product-product-account-home", "1148"], + ["product-product-product-product-account-other", "1446"], + ["product-product-product-product-account-product", "20633"], + ["product-product-product-product-account-search", "1189"], + ["product-product-product-product-end", "394374"], + ["product-product-product-product-home-account", "2287"], + ["product-product-product-product-home-end", "9149"], + ["product-product-product-product-home-home", "4060"], + ["product-product-product-product-home-other", "1315"], + ["product-product-product-product-home-product", "24692"], + ["product-product-product-product-home-search", "12474"], + ["product-product-product-product-other-account", "444"], + ["product-product-product-product-other-end", "991"], + ["product-product-product-product-other-home", "315"], + ["product-product-product-product-other-other", "2437"], + ["product-product-product-product-other-product", "4521"], + ["product-product-product-product-other-search", "291"], + ["product-product-product-product-product-account", "26234"], + ["product-product-product-product-product-end", "215654"], + ["product-product-product-product-product-home", "29223"], + ["product-product-product-product-product-other", "5155"], + ["product-product-product-product-product-product", "820886"], + ["product-product-product-product-product-search", "52109"], + ["product-product-product-product-search-account", "3178"], + ["product-product-product-product-search-end", "2630"], + ["product-product-product-product-search-home", "529"], + ["product-product-product-product-search-other", "140"], + ["product-product-product-product-search-product", "68434"], + ["product-product-product-product-search-search", "13163"], + ["product-product-product-search-account-account", "2248"], + ["product-product-product-search-account-end", "362"], + ["product-product-product-search-account-home", "89"], + ["product-product-product-search-account-other", "129"], + ["product-product-product-search-account-product", "2522"], + ["product-product-product-search-account-search", "322"], + ["product-product-product-search-end", "5115"], + ["product-product-product-search-home-account", "43"], + ["product-product-product-search-home-end", "118"], + ["product-product-product-search-home-home", "105"], + ["product-product-product-search-home-other", "26"], + ["product-product-product-search-home-product", "387"], + ["product-product-product-search-home-search", "370"], + ["product-product-product-search-other-account", "5"], + ["product-product-product-search-other-end", "21"], + ["product-product-product-search-other-home", "8"], + ["product-product-product-search-other-other", "66"], + ["product-product-product-search-other-product", "129"], + ["product-product-product-search-other-search", "16"], + ["product-product-product-search-product-account", "2658"], + ["product-product-product-search-product-end", "23927"], + ["product-product-product-search-product-home", "3523"], + ["product-product-product-search-product-other", "470"], + ["product-product-product-search-product-product", "67131"], + ["product-product-product-search-product-search", "21447"], + ["product-product-product-search-search-account", "640"], + ["product-product-product-search-search-end", "1080"], + ["product-product-product-search-search-home", "190"], + ["product-product-product-search-search-other", "56"], + ["product-product-product-search-search-product", "15718"], + ["product-product-product-search-search-search", "5424"], + ["product-product-search-account-account-account", "1122"], + ["product-product-search-account-account-end", "331"], + ["product-product-search-account-account-home", "115"], + ["product-product-search-account-account-other", "81"], + ["product-product-search-account-account-product", "2984"], + ["product-product-search-account-account-search", "281"], + ["product-product-search-account-end", "887"], + ["product-product-search-account-home-account", "20"], + ["product-product-search-account-home-end", "43"], + ["product-product-search-account-home-home", "22"], + ["product-product-search-account-home-other", "4"], + ["product-product-search-account-home-product", "89"], + ["product-product-search-account-home-search", "53"], + ["product-product-search-account-other-account", "26"], + ["product-product-search-account-other-end", "27"], + ["product-product-search-account-other-home", "2"], + ["product-product-search-account-other-other", "38"], + ["product-product-search-account-other-product", "230"], + ["product-product-search-account-other-search", "13"], + ["product-product-search-account-product-account", "707"], + ["product-product-search-account-product-end", "1136"], + ["product-product-search-account-product-home", "243"], + ["product-product-search-account-product-other", "54"], + ["product-product-search-account-product-product", "2959"], + ["product-product-search-account-product-search", "542"], + ["product-product-search-account-search-account", "272"], + ["product-product-search-account-search-end", "29"], + ["product-product-search-account-search-home", "5"], + ["product-product-search-account-search-product", "313"], + ["product-product-search-account-search-search", "124"], + ["product-product-search-end", "12207"], + ["product-product-search-home-account-account", "36"], + ["product-product-search-home-account-end", "6"], + ["product-product-search-home-account-home", "10"], + ["product-product-search-home-account-other", "1"], + ["product-product-search-home-account-product", "39"], + ["product-product-search-home-account-search", "7"], + ["product-product-search-home-end", "386"], + ["product-product-search-home-home-account", "15"], + ["product-product-search-home-home-end", "30"], + ["product-product-search-home-home-home", "30"], + ["product-product-search-home-home-other", "6"], + ["product-product-search-home-home-product", "68"], + ["product-product-search-home-home-search", "55"], + ["product-product-search-home-other-account", "4"], + ["product-product-search-home-other-end", "2"], + ["product-product-search-home-other-home", "3"], + ["product-product-search-home-other-other", "16"], + ["product-product-search-home-other-product", "21"], + ["product-product-search-home-product-account", "54"], + ["product-product-search-home-product-end", "161"], + ["product-product-search-home-product-home", "184"], + ["product-product-search-home-product-other", "8"], + ["product-product-search-home-product-product", "396"], + ["product-product-search-home-product-search", "109"], + ["product-product-search-home-search-account", "43"], + ["product-product-search-home-search-end", "38"], + ["product-product-search-home-search-home", "42"], + ["product-product-search-home-search-product", "523"], + ["product-product-search-home-search-search", "177"], + ["product-product-search-other-account-account", "10"], + ["product-product-search-other-account-end", "2"], + ["product-product-search-other-account-home", "3"], + ["product-product-search-other-account-other", "4"], + ["product-product-search-other-account-product", "10"], + ["product-product-search-other-account-search", "2"], + ["product-product-search-other-end", "42"], + ["product-product-search-other-home-account", "1"], + ["product-product-search-other-home-end", "4"], + ["product-product-search-other-home-home", "2"], + ["product-product-search-other-home-product", "5"], + ["product-product-search-other-home-search", "4"], + ["product-product-search-other-other-account", "5"], + ["product-product-search-other-other-end", "16"], + ["product-product-search-other-other-home", "12"], + ["product-product-search-other-other-other", "45"], + ["product-product-search-other-other-product", "45"], + ["product-product-search-other-other-search", "13"], + ["product-product-search-other-product-account", "11"], + ["product-product-search-other-product-end", "59"], + ["product-product-search-other-product-home", "12"], + ["product-product-search-other-product-other", "20"], + ["product-product-search-other-product-product", "127"], + ["product-product-search-other-product-search", "43"], + ["product-product-search-other-search-account", "4"], + ["product-product-search-other-search-end", "3"], + ["product-product-search-other-search-home", "2"], + ["product-product-search-other-search-other", "1"], + ["product-product-search-other-search-product", "35"], + ["product-product-search-other-search-search", "12"], + ["product-product-search-product-account-account", "1887"], + ["product-product-search-product-account-end", "531"], + ["product-product-search-product-account-home", "131"], + ["product-product-search-product-account-other", "149"], + ["product-product-search-product-account-product", "2389"], + ["product-product-search-product-account-search", "347"], + ["product-product-search-product-end", "54471"], + ["product-product-search-product-home-account", "265"], + ["product-product-search-product-home-end", "1231"], + ["product-product-search-product-home-home", "557"], + ["product-product-search-product-home-other", "176"], + ["product-product-search-product-home-product", "2823"], + ["product-product-search-product-home-search", "3044"], + ["product-product-search-product-other-account", "46"], + ["product-product-search-product-other-end", "98"], + ["product-product-search-product-other-home", "37"], + ["product-product-search-product-other-other", "294"], + ["product-product-search-product-other-product", "573"], + ["product-product-search-product-other-search", "85"], + ["product-product-search-product-product-account", "3167"], + ["product-product-search-product-product-end", "27769"], + ["product-product-search-product-product-home", "4295"], + ["product-product-search-product-product-other", "655"], + ["product-product-search-product-product-product", "74513"], + ["product-product-search-product-product-search", "20738"], + ["product-product-search-product-search-account", "798"], + ["product-product-search-product-search-end", "1492"], + ["product-product-search-product-search-home", "245"], + ["product-product-search-product-search-other", "58"], + ["product-product-search-product-search-product", "34970"], + ["product-product-search-product-search-search", "6716"], + ["product-product-search-search-account-account", "584"], + ["product-product-search-search-account-end", "111"], + ["product-product-search-search-account-home", "26"], + ["product-product-search-search-account-other", "53"], + ["product-product-search-search-account-product", "617"], + ["product-product-search-search-account-search", "110"], + ["product-product-search-search-end", "2491"], + ["product-product-search-search-home-account", "13"], + ["product-product-search-search-home-end", "72"], + ["product-product-search-search-home-home", "36"], + ["product-product-search-search-home-other", "12"], + ["product-product-search-search-home-product", "146"], + ["product-product-search-search-home-search", "167"], + ["product-product-search-search-other-account", "6"], + ["product-product-search-search-other-end", "6"], + ["product-product-search-search-other-home", "3"], + ["product-product-search-search-other-other", "36"], + ["product-product-search-search-other-product", "57"], + ["product-product-search-search-other-search", "9"], + ["product-product-search-search-product-account", "850"], + ["product-product-search-search-product-end", "7081"], + ["product-product-search-search-product-home", "1147"], + ["product-product-search-search-product-other", "150"], + ["product-product-search-search-product-product", "17404"], + ["product-product-search-search-product-search", "6790"], + ["product-product-search-search-search-account", "376"], + ["product-product-search-search-search-end", "752"], + ["product-product-search-search-search-home", "123"], + ["product-product-search-search-search-other", "37"], + ["product-product-search-search-search-product", "6816"], + ["product-product-search-search-search-search", "3653"], + ["product-search-account-account-account-account", "1380"], + ["product-search-account-account-account-end", "247"], + ["product-search-account-account-account-home", "78"], + ["product-search-account-account-account-other", "254"], + ["product-search-account-account-account-product", "1506"], + ["product-search-account-account-account-search", "238"], + ["product-search-account-account-end", "1110"], + ["product-search-account-account-home-account", "35"], + ["product-search-account-account-home-end", "67"], + ["product-search-account-account-home-home", "29"], + ["product-search-account-account-home-other", "5"], + ["product-search-account-account-home-product", "136"], + ["product-search-account-account-home-search", "60"], + ["product-search-account-account-other-account", "26"], + ["product-search-account-account-other-end", "18"], + ["product-search-account-account-other-home", "7"], + ["product-search-account-account-other-other", "46"], + ["product-search-account-account-other-product", "164"], + ["product-search-account-account-other-search", "7"], + ["product-search-account-account-product-account", "1314"], + ["product-search-account-account-product-end", "1889"], + ["product-search-account-account-product-home", "402"], + ["product-search-account-account-product-other", "80"], + ["product-search-account-account-product-product", "3795"], + ["product-search-account-account-product-search", "750"], + ["product-search-account-account-search-account", "375"], + ["product-search-account-account-search-end", "33"], + ["product-search-account-account-search-home", "10"], + ["product-search-account-account-search-other", "3"], + ["product-search-account-account-search-product", "305"], + ["product-search-account-account-search-search", "162"], + ["product-search-account-end", "3017"], + ["product-search-account-home-account-account", "21"], + ["product-search-account-home-account-end", "3"], + ["product-search-account-home-account-home", "5"], + ["product-search-account-home-account-other", "4"], + ["product-search-account-home-account-product", "32"], + ["product-search-account-home-account-search", "4"], + ["product-search-account-home-end", "149"], + ["product-search-account-home-home-account", "9"], + ["product-search-account-home-home-end", "8"], + ["product-search-account-home-home-home", "9"], + ["product-search-account-home-home-other", "5"], + ["product-search-account-home-home-product", "19"], + ["product-search-account-home-home-search", "9"], + ["product-search-account-home-other-account", "1"], + ["product-search-account-home-other-end", "2"], + ["product-search-account-home-other-home", "2"], + ["product-search-account-home-other-other", "7"], + ["product-search-account-home-other-product", "4"], + ["product-search-account-home-other-search", "1"], + ["product-search-account-home-product-account", "40"], + ["product-search-account-home-product-end", "61"], + ["product-search-account-home-product-home", "48"], + ["product-search-account-home-product-other", "2"], + ["product-search-account-home-product-product", "148"], + ["product-search-account-home-product-search", "26"], + ["product-search-account-home-search-account", "41"], + ["product-search-account-home-search-end", "9"], + ["product-search-account-home-search-home", "1"], + ["product-search-account-home-search-product", "97"], + ["product-search-account-home-search-search", "25"], + ["product-search-account-other-account-account", "17"], + ["product-search-account-other-account-end", "8"], + ["product-search-account-other-account-other", "14"], + ["product-search-account-other-account-product", "21"], + ["product-search-account-other-account-search", "6"], + ["product-search-account-other-end", "61"], + ["product-search-account-other-home-account", "2"], + ["product-search-account-other-home-end", "2"], + ["product-search-account-other-home-home", "3"], + ["product-search-account-other-home-product", "10"], + ["product-search-account-other-home-search", "6"], + ["product-search-account-other-other-account", "22"], + ["product-search-account-other-other-end", "12"], + ["product-search-account-other-other-home", "2"], + ["product-search-account-other-other-other", "40"], + ["product-search-account-other-other-product", "64"], + ["product-search-account-other-other-search", "2"], + ["product-search-account-other-product-account", "47"], + ["product-search-account-other-product-end", "146"], + ["product-search-account-other-product-home", "25"], + ["product-search-account-other-product-other", "26"], + ["product-search-account-other-product-product", "390"], + ["product-search-account-other-product-search", "42"], + ["product-search-account-other-search-account", "10"], + ["product-search-account-other-search-end", "1"], + ["product-search-account-other-search-home", "1"], + ["product-search-account-other-search-other", "1"], + ["product-search-account-other-search-product", "22"], + ["product-search-account-other-search-search", "11"], + ["product-search-account-product-account-account", "606"], + ["product-search-account-product-account-end", "167"], + ["product-search-account-product-account-home", "47"], + ["product-search-account-product-account-other", "51"], + ["product-search-account-product-account-product", "1189"], + ["product-search-account-product-account-search", "139"], + ["product-search-account-product-end", "3811"], + ["product-search-account-product-home-account", "50"], + ["product-search-account-product-home-end", "130"], + ["product-search-account-product-home-home", "54"], + ["product-search-account-product-home-other", "11"], + ["product-search-account-product-home-product", "279"], + ["product-search-account-product-home-search", "164"], + ["product-search-account-product-other-account", "15"], + ["product-search-account-product-other-end", "14"], + ["product-search-account-product-other-home", "8"], + ["product-search-account-product-other-other", "33"], + ["product-search-account-product-other-product", "64"], + ["product-search-account-product-other-search", "5"], + ["product-search-account-product-product-account", "650"], + ["product-search-account-product-product-end", "1679"], + ["product-search-account-product-product-home", "331"], + ["product-search-account-product-product-other", "62"], + ["product-search-account-product-product-product", "4641"], + ["product-search-account-product-product-search", "751"], + ["product-search-account-product-search-account", "474"], + ["product-search-account-product-search-end", "58"], + ["product-search-account-product-search-home", "4"], + ["product-search-account-product-search-other", "2"], + ["product-search-account-product-search-product", "845"], + ["product-search-account-product-search-search", "246"], + ["product-search-account-search-account-account", "289"], + ["product-search-account-search-account-end", "110"], + ["product-search-account-search-account-home", "41"], + ["product-search-account-search-account-other", "10"], + ["product-search-account-search-account-product", "362"], + ["product-search-account-search-account-search", "215"], + ["product-search-account-search-end", "69"], + ["product-search-account-search-home-account", "1"], + ["product-search-account-search-home-end", "4"], + ["product-search-account-search-home-home", "4"], + ["product-search-account-search-home-product", "6"], + ["product-search-account-search-home-search", "7"], + ["product-search-account-search-other-end", "1"], + ["product-search-account-search-other-other", "1"], + ["product-search-account-search-other-product", "4"], + ["product-search-account-search-product-account", "88"], + ["product-search-account-search-product-end", "212"], + ["product-search-account-search-product-home", "35"], + ["product-search-account-search-product-other", "6"], + ["product-search-account-search-product-product", "460"], + ["product-search-account-search-product-search", "205"], + ["product-search-account-search-search-account", "69"], + ["product-search-account-search-search-end", "21"], + ["product-search-account-search-search-home", "3"], + ["product-search-account-search-search-product", "161"], + ["product-search-account-search-search-search", "107"], + ["product-search-end", "39899"], + ["product-search-home-account-account-account", "39"], + ["product-search-home-account-account-end", "15"], + ["product-search-home-account-account-home", "6"], + ["product-search-home-account-account-other", "7"], + ["product-search-home-account-account-product", "50"], + ["product-search-home-account-account-search", "7"], + ["product-search-home-account-end", "35"], + ["product-search-home-account-home-account", "13"], + ["product-search-home-account-home-end", "2"], + ["product-search-home-account-home-home", "4"], + ["product-search-home-account-home-other", "4"], + ["product-search-home-account-home-product", "22"], + ["product-search-home-account-home-search", "5"], + ["product-search-home-account-other-account", "1"], + ["product-search-home-account-other-other", "6"], + ["product-search-home-account-other-product", "4"], + ["product-search-home-account-product-account", "14"], + ["product-search-home-account-product-end", "20"], + ["product-search-home-account-product-home", "15"], + ["product-search-home-account-product-other", "1"], + ["product-search-home-account-product-product", "54"], + ["product-search-home-account-product-search", "5"], + ["product-search-home-account-search-account", "2"], + ["product-search-home-account-search-end", "2"], + ["product-search-home-account-search-product", "6"], + ["product-search-home-account-search-search", "3"], + ["product-search-home-end", "1108"], + ["product-search-home-home-account-account", "13"], + ["product-search-home-home-account-end", "4"], + ["product-search-home-home-account-home", "8"], + ["product-search-home-home-account-product", "10"], + ["product-search-home-home-account-search", "1"], + ["product-search-home-home-end", "81"], + ["product-search-home-home-home-account", "3"], + ["product-search-home-home-home-end", "17"], + ["product-search-home-home-home-home", "44"], + ["product-search-home-home-home-other", "9"], + ["product-search-home-home-home-product", "38"], + ["product-search-home-home-home-search", "19"], + ["product-search-home-home-other-account", "1"], + ["product-search-home-home-other-end", "1"], + ["product-search-home-home-other-home", "2"], + ["product-search-home-home-other-other", "10"], + ["product-search-home-home-other-product", "7"], + ["product-search-home-home-other-search", "4"], + ["product-search-home-home-product-account", "19"], + ["product-search-home-home-product-end", "48"], + ["product-search-home-home-product-home", "72"], + ["product-search-home-home-product-other", "5"], + ["product-search-home-home-product-product", "98"], + ["product-search-home-home-product-search", "23"], + ["product-search-home-home-search-account", "10"], + ["product-search-home-home-search-end", "10"], + ["product-search-home-home-search-home", "12"], + ["product-search-home-home-search-product", "112"], + ["product-search-home-home-search-search", "45"], + ["product-search-home-other-account-account", "3"], + ["product-search-home-other-account-product", "1"], + ["product-search-home-other-end", "8"], + ["product-search-home-other-home-account", "1"], + ["product-search-home-other-home-end", "1"], + ["product-search-home-other-home-home", "2"], + ["product-search-home-other-home-other", "1"], + ["product-search-home-other-home-product", "6"], + ["product-search-home-other-other-account", "4"], + ["product-search-home-other-other-end", "9"], + ["product-search-home-other-other-home", "5"], + ["product-search-home-other-other-other", "19"], + ["product-search-home-other-other-product", "16"], + ["product-search-home-other-other-search", "1"], + ["product-search-home-other-product-account", "4"], + ["product-search-home-other-product-end", "18"], + ["product-search-home-other-product-home", "5"], + ["product-search-home-other-product-other", "4"], + ["product-search-home-other-product-product", "38"], + ["product-search-home-other-product-search", "6"], + ["product-search-home-other-search-home", "1"], + ["product-search-home-other-search-product", "3"], + ["product-search-home-other-search-search", "4"], + ["product-search-home-product-account-account", "70"], + ["product-search-home-product-account-end", "14"], + ["product-search-home-product-account-home", "8"], + ["product-search-home-product-account-other", "4"], + ["product-search-home-product-account-product", "64"], + ["product-search-home-product-account-search", "7"], + ["product-search-home-product-end", "575"], + ["product-search-home-product-home-account", "26"], + ["product-search-home-product-home-end", "179"], + ["product-search-home-product-home-home", "109"], + ["product-search-home-product-home-other", "12"], + ["product-search-home-product-home-product", "372"], + ["product-search-home-product-home-search", "102"], + ["product-search-home-product-other-account", "2"], + ["product-search-home-product-other-end", "4"], + ["product-search-home-product-other-home", "5"], + ["product-search-home-product-other-other", "8"], + ["product-search-home-product-other-product", "11"], + ["product-search-home-product-other-search", "1"], + ["product-search-home-product-product-account", "67"], + ["product-search-home-product-product-end", "280"], + ["product-search-home-product-product-home", "121"], + ["product-search-home-product-product-other", "9"], + ["product-search-home-product-product-product", "591"], + ["product-search-home-product-product-search", "96"], + ["product-search-home-product-search-account", "17"], + ["product-search-home-product-search-end", "14"], + ["product-search-home-product-search-home", "12"], + ["product-search-home-product-search-other", "1"], + ["product-search-home-product-search-product", "211"], + ["product-search-home-product-search-search", "60"], + ["product-search-home-search-account-account", "42"], + ["product-search-home-search-account-end", "3"], + ["product-search-home-search-account-home", "6"], + ["product-search-home-search-account-other", "3"], + ["product-search-home-search-account-product", "32"], + ["product-search-home-search-account-search", "12"], + ["product-search-home-search-end", "150"], + ["product-search-home-search-home-account", "4"], + ["product-search-home-search-home-end", "15"], + ["product-search-home-search-home-home", "15"], + ["product-search-home-search-home-product", "65"], + ["product-search-home-search-home-search", "64"], + ["product-search-home-search-other-other", "2"], + ["product-search-home-search-other-product", "2"], + ["product-search-home-search-other-search", "3"], + ["product-search-home-search-product-account", "42"], + ["product-search-home-search-product-end", "378"], + ["product-search-home-search-product-home", "89"], + ["product-search-home-search-product-other", "4"], + ["product-search-home-search-product-product", "779"], + ["product-search-home-search-product-search", "294"], + ["product-search-home-search-search-account", "19"], + ["product-search-home-search-search-end", "23"], + ["product-search-home-search-search-home", "16"], + ["product-search-home-search-search-other", "1"], + ["product-search-home-search-search-product", "293"], + ["product-search-home-search-search-search", "134"], + ["product-search-other-account-account-account", "14"], + ["product-search-other-account-account-end", "2"], + ["product-search-other-account-account-home", "1"], + ["product-search-other-account-account-other", "1"], + ["product-search-other-account-account-product", "11"], + ["product-search-other-account-account-search", "2"], + ["product-search-other-account-end", "10"], + ["product-search-other-account-home-end", "1"], + ["product-search-other-account-home-product", "3"], + ["prod"] +] diff --git a/globals.d.ts b/globals.d.ts new file mode 100644 index 0000000..910b72e --- /dev/null +++ b/globals.d.ts @@ -0,0 +1,5 @@ +declare module '*.svg' { + const content: string; + export default content; +} +//https://stackoverflow.com/questions/44717164/unable-to-import-svg-files-in-typescript \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 2656670..513831b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -12,9 +12,12 @@ "@clerk/nextjs": "^5.0.8", "@emotion/react": "^11.11.4", "@emotion/styled": "^11.11.5", + "@mdxeditor/editor": "^3.4.1", "@p5-wrapper/next": "^1.0.3", "@p5-wrapper/react": "^4.4.0", "@prisma/client": "^5.13.0", + "@uiw/react-md-editor": "^4.0.4", + "d3": "^7.9.0", "firebase": "^10.12.1", "formidable": "^3.5.1", "framer-motion": "^11.2.4", @@ -1484,6 +1487,430 @@ "node": ">=18.17.0" } }, + "node_modules/@codemirror/autocomplete": { + "version": "6.16.2", + "resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.16.2.tgz", + "integrity": "sha512-MjfDrHy0gHKlPWsvSsikhO1+BOh+eBHNgfH1OXs1+DAf30IonQldgMM3kxLDTG9ktE7kDLaA1j/l7KMPA4KNfw==", + "dependencies": { + "@codemirror/language": "^6.0.0", + "@codemirror/state": "^6.0.0", + "@codemirror/view": "^6.17.0", + "@lezer/common": "^1.0.0" + }, + "peerDependencies": { + "@codemirror/language": "^6.0.0", + "@codemirror/state": "^6.0.0", + "@codemirror/view": "^6.0.0", + "@lezer/common": "^1.0.0" + } + }, + "node_modules/@codemirror/commands": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/@codemirror/commands/-/commands-6.6.0.tgz", + "integrity": "sha512-qnY+b7j1UNcTS31Eenuc/5YJB6gQOzkUoNmJQc0rznwqSRpeaWWpjkWy2C/MPTcePpsKJEM26hXrOXl1+nceXg==", + "dependencies": { + "@codemirror/language": "^6.0.0", + "@codemirror/state": "^6.4.0", + "@codemirror/view": "^6.27.0", + "@lezer/common": "^1.1.0" + } + }, + "node_modules/@codemirror/lang-angular": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@codemirror/lang-angular/-/lang-angular-0.1.3.tgz", + "integrity": "sha512-xgeWGJQQl1LyStvndWtruUvb4SnBZDAu/gvFH/ZU+c0W25tQR8e5hq7WTwiIY2dNxnf+49mRiGI/9yxIwB6f5w==", + "dependencies": { + "@codemirror/lang-html": "^6.0.0", + "@codemirror/lang-javascript": "^6.1.2", + "@codemirror/language": "^6.0.0", + "@lezer/common": "^1.2.0", + "@lezer/highlight": "^1.0.0", + "@lezer/lr": "^1.3.3" + } + }, + "node_modules/@codemirror/lang-cpp": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@codemirror/lang-cpp/-/lang-cpp-6.0.2.tgz", + "integrity": "sha512-6oYEYUKHvrnacXxWxYa6t4puTlbN3dgV662BDfSH8+MfjQjVmP697/KYTDOqpxgerkvoNm7q5wlFMBeX8ZMocg==", + "dependencies": { + "@codemirror/language": "^6.0.0", + "@lezer/cpp": "^1.0.0" + } + }, + "node_modules/@codemirror/lang-css": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/@codemirror/lang-css/-/lang-css-6.2.1.tgz", + "integrity": "sha512-/UNWDNV5Viwi/1lpr/dIXJNWiwDxpw13I4pTUAsNxZdg6E0mI2kTQb0P2iHczg1Tu+H4EBgJR+hYhKiHKko7qg==", + "dependencies": { + "@codemirror/autocomplete": "^6.0.0", + "@codemirror/language": "^6.0.0", + "@codemirror/state": "^6.0.0", + "@lezer/common": "^1.0.2", + "@lezer/css": "^1.0.0" + } + }, + "node_modules/@codemirror/lang-go": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@codemirror/lang-go/-/lang-go-6.0.1.tgz", + "integrity": "sha512-7fNvbyNylvqCphW9HD6WFnRpcDjr+KXX/FgqXy5H5ZS0eC5edDljukm/yNgYkwTsgp2busdod50AOTIy6Jikfg==", + "dependencies": { + "@codemirror/autocomplete": "^6.0.0", + "@codemirror/language": "^6.6.0", + "@codemirror/state": "^6.0.0", + "@lezer/common": "^1.0.0", + "@lezer/go": "^1.0.0" + } + }, + "node_modules/@codemirror/lang-html": { + "version": "6.4.9", + "resolved": "https://registry.npmjs.org/@codemirror/lang-html/-/lang-html-6.4.9.tgz", + "integrity": "sha512-aQv37pIMSlueybId/2PVSP6NPnmurFDVmZwzc7jszd2KAF8qd4VBbvNYPXWQq90WIARjsdVkPbw29pszmHws3Q==", + "dependencies": { + "@codemirror/autocomplete": "^6.0.0", + "@codemirror/lang-css": "^6.0.0", + "@codemirror/lang-javascript": "^6.0.0", + "@codemirror/language": "^6.4.0", + "@codemirror/state": "^6.0.0", + "@codemirror/view": "^6.17.0", + "@lezer/common": "^1.0.0", + "@lezer/css": "^1.1.0", + "@lezer/html": "^1.3.0" + } + }, + "node_modules/@codemirror/lang-java": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@codemirror/lang-java/-/lang-java-6.0.1.tgz", + "integrity": "sha512-OOnmhH67h97jHzCuFaIEspbmsT98fNdhVhmA3zCxW0cn7l8rChDhZtwiwJ/JOKXgfm4J+ELxQihxaI7bj7mJRg==", + "dependencies": { + "@codemirror/language": "^6.0.0", + "@lezer/java": "^1.0.0" + } + }, + "node_modules/@codemirror/lang-javascript": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/@codemirror/lang-javascript/-/lang-javascript-6.2.2.tgz", + "integrity": "sha512-VGQfY+FCc285AhWuwjYxQyUQcYurWlxdKYT4bqwr3Twnd5wP5WSeu52t4tvvuWmljT4EmgEgZCqSieokhtY8hg==", + "dependencies": { + "@codemirror/autocomplete": "^6.0.0", + "@codemirror/language": "^6.6.0", + "@codemirror/lint": "^6.0.0", + "@codemirror/state": "^6.0.0", + "@codemirror/view": "^6.17.0", + "@lezer/common": "^1.0.0", + "@lezer/javascript": "^1.0.0" + } + }, + "node_modules/@codemirror/lang-json": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@codemirror/lang-json/-/lang-json-6.0.1.tgz", + "integrity": "sha512-+T1flHdgpqDDlJZ2Lkil/rLiRy684WMLc74xUnjJH48GQdfJo/pudlTRreZmKwzP8/tGdKf83wlbAdOCzlJOGQ==", + "dependencies": { + "@codemirror/language": "^6.0.0", + "@lezer/json": "^1.0.0" + } + }, + "node_modules/@codemirror/lang-less": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@codemirror/lang-less/-/lang-less-6.0.2.tgz", + "integrity": "sha512-EYdQTG22V+KUUk8Qq582g7FMnCZeEHsyuOJisHRft/mQ+ZSZ2w51NupvDUHiqtsOy7It5cHLPGfHQLpMh9bqpQ==", + "dependencies": { + "@codemirror/lang-css": "^6.2.0", + "@codemirror/language": "^6.0.0", + "@lezer/common": "^1.2.0", + "@lezer/highlight": "^1.0.0", + "@lezer/lr": "^1.0.0" + } + }, + "node_modules/@codemirror/lang-liquid": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/@codemirror/lang-liquid/-/lang-liquid-6.2.1.tgz", + "integrity": "sha512-J1Mratcm6JLNEiX+U2OlCDTysGuwbHD76XwuL5o5bo9soJtSbz2g6RU3vGHFyS5DC8rgVmFSzi7i6oBftm7tnA==", + "dependencies": { + "@codemirror/autocomplete": "^6.0.0", + "@codemirror/lang-html": "^6.0.0", + "@codemirror/language": "^6.0.0", + "@codemirror/state": "^6.0.0", + "@codemirror/view": "^6.0.0", + "@lezer/common": "^1.0.0", + "@lezer/highlight": "^1.0.0", + "@lezer/lr": "^1.3.1" + } + }, + "node_modules/@codemirror/lang-markdown": { + "version": "6.2.5", + "resolved": "https://registry.npmjs.org/@codemirror/lang-markdown/-/lang-markdown-6.2.5.tgz", + "integrity": "sha512-Hgke565YcO4fd9pe2uLYxnMufHO5rQwRr+AAhFq8ABuhkrjyX8R5p5s+hZUTdV60O0dMRjxKhBLxz8pu/MkUVA==", + "dependencies": { + "@codemirror/autocomplete": "^6.7.1", + "@codemirror/lang-html": "^6.0.0", + "@codemirror/language": "^6.3.0", + "@codemirror/state": "^6.0.0", + "@codemirror/view": "^6.0.0", + "@lezer/common": "^1.2.1", + "@lezer/markdown": "^1.0.0" + } + }, + "node_modules/@codemirror/lang-php": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@codemirror/lang-php/-/lang-php-6.0.1.tgz", + "integrity": "sha512-ublojMdw/PNWa7qdN5TMsjmqkNuTBD3k6ndZ4Z0S25SBAiweFGyY68AS3xNcIOlb6DDFDvKlinLQ40vSLqf8xA==", + "dependencies": { + "@codemirror/lang-html": "^6.0.0", + "@codemirror/language": "^6.0.0", + "@codemirror/state": "^6.0.0", + "@lezer/common": "^1.0.0", + "@lezer/php": "^1.0.0" + } + }, + "node_modules/@codemirror/lang-python": { + "version": "6.1.6", + "resolved": "https://registry.npmjs.org/@codemirror/lang-python/-/lang-python-6.1.6.tgz", + "integrity": "sha512-ai+01WfZhWqM92UqjnvorkxosZ2aq2u28kHvr+N3gu012XqY2CThD67JPMHnGceRfXPDBmn1HnyqowdpF57bNg==", + "dependencies": { + "@codemirror/autocomplete": "^6.3.2", + "@codemirror/language": "^6.8.0", + "@codemirror/state": "^6.0.0", + "@lezer/common": "^1.2.1", + "@lezer/python": "^1.1.4" + } + }, + "node_modules/@codemirror/lang-rust": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@codemirror/lang-rust/-/lang-rust-6.0.1.tgz", + "integrity": "sha512-344EMWFBzWArHWdZn/NcgkwMvZIWUR1GEBdwG8FEp++6o6vT6KL9V7vGs2ONsKxxFUPXKI0SPcWhyYyl2zPYxQ==", + "dependencies": { + "@codemirror/language": "^6.0.0", + "@lezer/rust": "^1.0.0" + } + }, + "node_modules/@codemirror/lang-sass": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@codemirror/lang-sass/-/lang-sass-6.0.2.tgz", + "integrity": "sha512-l/bdzIABvnTo1nzdY6U+kPAC51czYQcOErfzQ9zSm9D8GmNPD0WTW8st/CJwBTPLO8jlrbyvlSEcN20dc4iL0Q==", + "dependencies": { + "@codemirror/lang-css": "^6.2.0", + "@codemirror/language": "^6.0.0", + "@codemirror/state": "^6.0.0", + "@lezer/common": "^1.0.2", + "@lezer/sass": "^1.0.0" + } + }, + "node_modules/@codemirror/lang-sql": { + "version": "6.6.4", + "resolved": "https://registry.npmjs.org/@codemirror/lang-sql/-/lang-sql-6.6.4.tgz", + "integrity": "sha512-n+FVfKGut+frOvor9dU5pFUalcP614WBNQ9IT1kOUj1t6LFLjWHi2I9DdxXnJuxqFV9jTyYF79coDV3ilSJqCw==", + "dependencies": { + "@codemirror/autocomplete": "^6.0.0", + "@codemirror/language": "^6.0.0", + "@codemirror/state": "^6.0.0", + "@lezer/common": "^1.2.0", + "@lezer/highlight": "^1.0.0", + "@lezer/lr": "^1.0.0" + } + }, + "node_modules/@codemirror/lang-vue": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@codemirror/lang-vue/-/lang-vue-0.1.3.tgz", + "integrity": "sha512-QSKdtYTDRhEHCfo5zOShzxCmqKJvgGrZwDQSdbvCRJ5pRLWBS7pD/8e/tH44aVQT6FKm0t6RVNoSUWHOI5vNug==", + "dependencies": { + "@codemirror/lang-html": "^6.0.0", + "@codemirror/lang-javascript": "^6.1.2", + "@codemirror/language": "^6.0.0", + "@lezer/common": "^1.2.0", + "@lezer/highlight": "^1.0.0", + "@lezer/lr": "^1.3.1" + } + }, + "node_modules/@codemirror/lang-wast": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@codemirror/lang-wast/-/lang-wast-6.0.2.tgz", + "integrity": "sha512-Imi2KTpVGm7TKuUkqyJ5NRmeFWF7aMpNiwHnLQe0x9kmrxElndyH0K6H/gXtWwY6UshMRAhpENsgfpSwsgmC6Q==", + "dependencies": { + "@codemirror/language": "^6.0.0", + "@lezer/common": "^1.2.0", + "@lezer/highlight": "^1.0.0", + "@lezer/lr": "^1.0.0" + } + }, + "node_modules/@codemirror/lang-xml": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@codemirror/lang-xml/-/lang-xml-6.1.0.tgz", + "integrity": "sha512-3z0blhicHLfwi2UgkZYRPioSgVTo9PV5GP5ducFH6FaHy0IAJRg+ixj5gTR1gnT/glAIC8xv4w2VL1LoZfs+Jg==", + "dependencies": { + "@codemirror/autocomplete": "^6.0.0", + "@codemirror/language": "^6.4.0", + "@codemirror/state": "^6.0.0", + "@codemirror/view": "^6.0.0", + "@lezer/common": "^1.0.0", + "@lezer/xml": "^1.0.0" + } + }, + "node_modules/@codemirror/lang-yaml": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@codemirror/lang-yaml/-/lang-yaml-6.1.1.tgz", + "integrity": "sha512-HV2NzbK9bbVnjWxwObuZh5FuPCowx51mEfoFT9y3y+M37fA3+pbxx4I7uePuygFzDsAmCTwQSc/kXh/flab4uw==", + "dependencies": { + "@codemirror/autocomplete": "^6.0.0", + "@codemirror/language": "^6.0.0", + "@codemirror/state": "^6.0.0", + "@lezer/common": "^1.2.0", + "@lezer/highlight": "^1.2.0", + "@lezer/yaml": "^1.0.0" + } + }, + "node_modules/@codemirror/language": { + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/@codemirror/language/-/language-6.10.2.tgz", + "integrity": "sha512-kgbTYTo0Au6dCSc/TFy7fK3fpJmgHDv1sG1KNQKJXVi+xBTEeBPY/M30YXiU6mMXeH+YIDLsbrT4ZwNRdtF+SA==", + "dependencies": { + "@codemirror/state": "^6.0.0", + "@codemirror/view": "^6.23.0", + "@lezer/common": "^1.1.0", + "@lezer/highlight": "^1.0.0", + "@lezer/lr": "^1.0.0", + "style-mod": "^4.0.0" + } + }, + "node_modules/@codemirror/language-data": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@codemirror/language-data/-/language-data-6.5.1.tgz", + "integrity": "sha512-0sWxeUSNlBr6OmkqybUTImADFUP0M3P0IiSde4nc24bz/6jIYzqYSgkOSLS+CBIoW1vU8Q9KUWXscBXeoMVC9w==", + "dependencies": { + "@codemirror/lang-angular": "^0.1.0", + "@codemirror/lang-cpp": "^6.0.0", + "@codemirror/lang-css": "^6.0.0", + "@codemirror/lang-go": "^6.0.0", + "@codemirror/lang-html": "^6.0.0", + "@codemirror/lang-java": "^6.0.0", + "@codemirror/lang-javascript": "^6.0.0", + "@codemirror/lang-json": "^6.0.0", + "@codemirror/lang-less": "^6.0.0", + "@codemirror/lang-liquid": "^6.0.0", + "@codemirror/lang-markdown": "^6.0.0", + "@codemirror/lang-php": "^6.0.0", + "@codemirror/lang-python": "^6.0.0", + "@codemirror/lang-rust": "^6.0.0", + "@codemirror/lang-sass": "^6.0.0", + "@codemirror/lang-sql": "^6.0.0", + "@codemirror/lang-vue": "^0.1.1", + "@codemirror/lang-wast": "^6.0.0", + "@codemirror/lang-xml": "^6.0.0", + "@codemirror/lang-yaml": "^6.0.0", + "@codemirror/language": "^6.0.0", + "@codemirror/legacy-modes": "^6.4.0" + } + }, + "node_modules/@codemirror/legacy-modes": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/@codemirror/legacy-modes/-/legacy-modes-6.4.0.tgz", + "integrity": "sha512-5m/K+1A6gYR0e+h/dEde7LoGimMjRtWXZFg4Lo70cc8HzjSdHe3fLwjWMR0VRl5KFT1SxalSap7uMgPKF28wBA==", + "dependencies": { + "@codemirror/language": "^6.0.0" + } + }, + "node_modules/@codemirror/lint": { + "version": "6.8.0", + "resolved": "https://registry.npmjs.org/@codemirror/lint/-/lint-6.8.0.tgz", + "integrity": "sha512-lsFofvaw0lnPRJlQylNsC4IRt/1lI4OD/yYslrSGVndOJfStc58v+8p9dgGiD90ktOfL7OhBWns1ZETYgz0EJA==", + "dependencies": { + "@codemirror/state": "^6.0.0", + "@codemirror/view": "^6.0.0", + "crelt": "^1.0.5" + } + }, + "node_modules/@codemirror/merge": { + "version": "6.6.3", + "resolved": "https://registry.npmjs.org/@codemirror/merge/-/merge-6.6.3.tgz", + "integrity": "sha512-sui2Y/qKyvpPs1VJysAC4Q4w9Oe6MQM8LPOLphaQzhP6wfY28Flq/xuaBBUGDRP1Rtu7Ksf6zwdHPLbMn3zuBw==", + "dependencies": { + "@codemirror/language": "^6.0.0", + "@codemirror/state": "^6.0.0", + "@codemirror/view": "^6.17.0", + "@lezer/highlight": "^1.0.0", + "style-mod": "^4.1.0" + } + }, + "node_modules/@codemirror/search": { + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@codemirror/search/-/search-6.5.6.tgz", + "integrity": "sha512-rpMgcsh7o0GuCDUXKPvww+muLA1pDJaFrpq/CCHtpQJYz8xopu4D1hPcKRoDD0YlF8gZaqTNIRa4VRBWyhyy7Q==", + "dependencies": { + "@codemirror/state": "^6.0.0", + "@codemirror/view": "^6.0.0", + "crelt": "^1.0.5" + } + }, + "node_modules/@codemirror/state": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/@codemirror/state/-/state-6.4.1.tgz", + "integrity": "sha512-QkEyUiLhsJoZkbumGZlswmAhA7CBU02Wrz7zvH4SrcifbsqwlXShVXg65f3v/ts57W3dqyamEriMhij1Z3Zz4A==" + }, + "node_modules/@codemirror/view": { + "version": "6.27.0", + "resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.27.0.tgz", + "integrity": "sha512-8kqX1sHbVW1lVzWwrjAbh4dR7eKhV8eIQ952JKaBXOoXE04WncoqCy4DMU701LSrPZ3N2Q4zsTawz7GQ+2mrUw==", + "dependencies": { + "@codemirror/state": "^6.4.0", + "style-mod": "^4.1.0", + "w3c-keyname": "^2.2.4" + } + }, + "node_modules/@codesandbox/nodebox": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/@codesandbox/nodebox/-/nodebox-0.1.8.tgz", + "integrity": "sha512-2VRS6JDSk+M+pg56GA6CryyUSGPjBEe8Pnae0QL3jJF1mJZJVMDKr93gJRtBbLkfZN6LD/DwMtf+2L0bpWrjqg==", + "dependencies": { + "outvariant": "^1.4.0", + "strict-event-emitter": "^0.4.3" + } + }, + "node_modules/@codesandbox/sandpack-client": { + "version": "2.13.8", + "resolved": "https://registry.npmjs.org/@codesandbox/sandpack-client/-/sandpack-client-2.13.8.tgz", + "integrity": "sha512-IjVlqfVK0fascNyUVH9hs5UZBx4KhKtyZyDrxdiDyQBtLmgESNaFWelAf4a/PX4gJp+H+WW6/iC6KzR7XtK//w==", + "dependencies": { + "@codesandbox/nodebox": "0.1.8", + "buffer": "^6.0.3", + "dequal": "^2.0.2", + "outvariant": "1.4.0", + "static-browser-server": "1.0.3" + } + }, + "node_modules/@codesandbox/sandpack-react": { + "version": "2.14.2", + "resolved": "https://registry.npmjs.org/@codesandbox/sandpack-react/-/sandpack-react-2.14.2.tgz", + "integrity": "sha512-6yuy98zNqtwhQYZR7hg62s7SX5n4UejCtYJXW4TTa8xjfGSxICexx2j4Ub8ebgDLo3gCLl9ZKoMkaf+ZCQ6s3w==", + "dependencies": { + "@codemirror/autocomplete": "^6.4.0", + "@codemirror/commands": "^6.1.3", + "@codemirror/lang-css": "^6.0.1", + "@codemirror/lang-html": "^6.4.0", + "@codemirror/lang-javascript": "^6.1.2", + "@codemirror/language": "^6.3.2", + "@codemirror/state": "^6.2.0", + "@codemirror/view": "^6.7.1", + "@codesandbox/sandpack-client": "^2.13.8", + "@lezer/highlight": "^1.1.3", + "@react-hook/intersection-observer": "^3.1.1", + "@stitches/core": "^1.2.6", + "anser": "^2.1.1", + "clean-set": "^1.1.2", + "dequal": "^2.0.2", + "escape-carriage": "^1.3.1", + "lz-string": "^1.4.4", + "react-devtools-inline": "4.4.0", + "react-is": "^17.0.2" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17 || ^18", + "react-dom": "^16.8.0 || ^17 || ^18" + } + }, + "node_modules/@codesandbox/sandpack-react/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + }, "node_modules/@emotion/babel-plugin": { "version": "11.11.0", "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz", @@ -2553,6 +2980,40 @@ "resolved": "https://registry.npmjs.org/@firebase/webchannel-wrapper/-/webchannel-wrapper-1.0.0.tgz", "integrity": "sha512-zuWxyfXNbsKbm96HhXzainONPFqRcoZblQ++e9cAIGUuHfl2cFSBzW01jtesqWG/lqaUyX3H8O1y9oWboGNQBA==" }, + "node_modules/@floating-ui/core": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.2.tgz", + "integrity": "sha512-+2XpQV9LLZeanU4ZevzRnGFg2neDeKHgFLjP6YLW+tly0IvrhqT4u8enLGjLH3qeh85g19xY5rsAusfwTdn5lg==", + "dependencies": { + "@floating-ui/utils": "^0.2.0" + } + }, + "node_modules/@floating-ui/dom": { + "version": "1.6.5", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.5.tgz", + "integrity": "sha512-Nsdud2X65Dz+1RHjAIP0t8z5e2ff/IRbei6BqFrl1urT8sDVzM1HMQ+R0XcU5ceRfyO3I6ayeqIfh+6Wb8LGTw==", + "dependencies": { + "@floating-ui/core": "^1.0.0", + "@floating-ui/utils": "^0.2.0" + } + }, + "node_modules/@floating-ui/react-dom": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.0.tgz", + "integrity": "sha512-lNzj5EQmEKn5FFKc04+zasr09h/uX8RtJRNj5gUXsSQIXHVWTVh+hVAg1vOMCexkX8EgvemMvIFpQfkosnVNyA==", + "dependencies": { + "@floating-ui/dom": "^1.0.0" + }, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/@floating-ui/utils": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.2.tgz", + "integrity": "sha512-J4yDIIthosAsRZ5CPYP/jQvUAQtlZTTD/4suA08/FEnlxqW3sKS9iAhgsa9VYLZ6vDHn/ixJgIqRQPotoBjxIw==" + }, "node_modules/@fluentui/react-component-event-listener": { "version": "0.63.1", "resolved": "https://registry.npmjs.org/@fluentui/react-component-event-listener/-/react-component-event-listener-0.63.1.tgz", @@ -3198,6 +3659,477 @@ "node": ">=18" } }, + "node_modules/@lexical/clipboard": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@lexical/clipboard/-/clipboard-0.14.5.tgz", + "integrity": "sha512-22xbagoQ8jiwImRtMcRl3+pojsiqF0cSfMXbjsHc5fPAq3ULf8OvAMkiSWEOxGQA6I6VIHX30+HtwZ7TgdPJ7A==", + "dependencies": { + "@lexical/html": "0.14.5", + "@lexical/list": "0.14.5", + "@lexical/selection": "0.14.5", + "@lexical/utils": "0.14.5", + "lexical": "0.14.5" + } + }, + "node_modules/@lexical/code": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@lexical/code/-/code-0.14.5.tgz", + "integrity": "sha512-eBZ5GMx2VDg7tC085qCD2+hzwGm5b6M/b4LXiPW0In6/SmJIDnEOppSz7jmHezWkLIGL2xK43gw1oqTY9igwug==", + "dependencies": { + "@lexical/utils": "0.14.5", + "lexical": "0.14.5", + "prismjs": "^1.27.0" + } + }, + "node_modules/@lexical/devtools-core": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@lexical/devtools-core/-/devtools-core-0.14.5.tgz", + "integrity": "sha512-4yTZ8Q9sDkvA5n96wEstru2NonAJ6T/zuSTcYizddwDJr56tzanSdJUFbEIG6G3ankqbKMRYNetupD/Ks3sXEg==", + "dependencies": { + "@lexical/html": "0.14.5", + "@lexical/link": "0.14.5", + "@lexical/mark": "0.14.5", + "@lexical/table": "0.14.5", + "@lexical/utils": "0.14.5", + "lexical": "0.14.5" + }, + "peerDependencies": { + "react": ">=17.x", + "react-dom": ">=17.x" + } + }, + "node_modules/@lexical/dragon": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@lexical/dragon/-/dragon-0.14.5.tgz", + "integrity": "sha512-p+rybaKGcxC8SCerQaMxRf+GcD+0YEXiv8WHx4DaxrTnHdn+8gapFpwe9Sxjmga/6BqeLa3rF/fis3zN3oyMlg==", + "dependencies": { + "lexical": "0.14.5" + } + }, + "node_modules/@lexical/hashtag": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@lexical/hashtag/-/hashtag-0.14.5.tgz", + "integrity": "sha512-jfIFZRm99EIAOsztgFBodyR8Rn/6TI7ee5HonBH6xFY439DheQxTaWDP0Y1SeL7iiu8d3ak2+AXvne1kBziR2A==", + "dependencies": { + "@lexical/utils": "0.14.5", + "lexical": "0.14.5" + } + }, + "node_modules/@lexical/history": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@lexical/history/-/history-0.14.5.tgz", + "integrity": "sha512-Img2hPZ5QA0Sm2Y3HcHqK4qqluabhJrOm93vtOnk7eQU0JLTjFnprPIzRiKnNLpjbasJI6Be5z/3pI4LNIpIvw==", + "dependencies": { + "@lexical/utils": "0.14.5", + "lexical": "0.14.5" + } + }, + "node_modules/@lexical/html": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@lexical/html/-/html-0.14.5.tgz", + "integrity": "sha512-HITDaKld+039OGsEbNpZ16ykmuspptRuaN8UFGfy4Y/isVzF3V3DmgXtIuUe47S4jaXVSbCZG18o//om1ytkTw==", + "dependencies": { + "@lexical/selection": "0.14.5", + "@lexical/utils": "0.14.5", + "lexical": "0.14.5" + } + }, + "node_modules/@lexical/link": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@lexical/link/-/link-0.14.5.tgz", + "integrity": "sha512-NnMWRnMtigSBzM1zDSCzvwPPEOyelYy4Jlk9Iqq0KpRnzo248HAotMUTaYdMfWRgGIdPzflYZH5UhZJOAhH+qg==", + "dependencies": { + "@lexical/utils": "0.14.5", + "lexical": "0.14.5" + } + }, + "node_modules/@lexical/list": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@lexical/list/-/list-0.14.5.tgz", + "integrity": "sha512-kVD7FCbtbT5noydQQ6+AcBjkQS2cLb071uoDiKX+EHzDko08b8xdD63r1rqnj2kOvYlsNLVtf5yy6Cv4xNxWDw==", + "dependencies": { + "@lexical/utils": "0.14.5", + "lexical": "0.14.5" + } + }, + "node_modules/@lexical/mark": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@lexical/mark/-/mark-0.14.5.tgz", + "integrity": "sha512-Z8YTHLrKpNHkCPATd3bzJhkbOnK0/gpZtjxphn+JvhgLOvmHIWCPS+HixQn10RJbcCAnja6QuhfsbgmP+c2eKA==", + "dependencies": { + "@lexical/utils": "0.14.5", + "lexical": "0.14.5" + } + }, + "node_modules/@lexical/markdown": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@lexical/markdown/-/markdown-0.14.5.tgz", + "integrity": "sha512-lLVU2Vaj0cvh8lv8NBuxIhMLGuSroXf6Ls2CH81nN+eafL5X8yKGb2ae9EUdKxxppBKzZJxfe+phUlLgAqgVeg==", + "dependencies": { + "@lexical/code": "0.14.5", + "@lexical/link": "0.14.5", + "@lexical/list": "0.14.5", + "@lexical/rich-text": "0.14.5", + "@lexical/text": "0.14.5", + "@lexical/utils": "0.14.5", + "lexical": "0.14.5" + } + }, + "node_modules/@lexical/offset": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@lexical/offset/-/offset-0.14.5.tgz", + "integrity": "sha512-oUBr7SQhLHc0/SImyizgBXnfvmmh41i1nnaWJ1kflgXRXPpW1OxnFsuVB8EGKrc5nToxfrcwl6iryuDyJVrQ7g==", + "dependencies": { + "lexical": "0.14.5" + } + }, + "node_modules/@lexical/overflow": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@lexical/overflow/-/overflow-0.14.5.tgz", + "integrity": "sha512-mZSQID6GTxSrnx+SeUqmyB8OZUTHolXqm0Ck2L27fRIIUQGZTXR9+CrV4+t2jNFK3brTo2POB95xwBq+O463hA==", + "dependencies": { + "lexical": "0.14.5" + } + }, + "node_modules/@lexical/plain-text": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@lexical/plain-text/-/plain-text-0.14.5.tgz", + "integrity": "sha512-i0NiJ1RZ/990nArZcKcQOG+0SxO8ErUDT+QDCGOoGGqG02pQf+UuiLVWW9GdD+5unA7eRQDUza10MMyzsV+MJA==", + "dependencies": { + "@lexical/clipboard": "0.14.5", + "@lexical/selection": "0.14.5", + "@lexical/utils": "0.14.5", + "lexical": "0.14.5" + } + }, + "node_modules/@lexical/react": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@lexical/react/-/react-0.14.5.tgz", + "integrity": "sha512-dn7J07nxG6CZqm5jhLjhkQlJWMQrdm4BGTEF6/MYog5uUUwqDwBdVnZ3hwadibupAmNT7+Xia+4vrp0oJWM1lQ==", + "dependencies": { + "@lexical/clipboard": "0.14.5", + "@lexical/code": "0.14.5", + "@lexical/devtools-core": "0.14.5", + "@lexical/dragon": "0.14.5", + "@lexical/hashtag": "0.14.5", + "@lexical/history": "0.14.5", + "@lexical/link": "0.14.5", + "@lexical/list": "0.14.5", + "@lexical/mark": "0.14.5", + "@lexical/markdown": "0.14.5", + "@lexical/overflow": "0.14.5", + "@lexical/plain-text": "0.14.5", + "@lexical/rich-text": "0.14.5", + "@lexical/selection": "0.14.5", + "@lexical/table": "0.14.5", + "@lexical/text": "0.14.5", + "@lexical/utils": "0.14.5", + "@lexical/yjs": "0.14.5", + "lexical": "0.14.5", + "react-error-boundary": "^3.1.4" + }, + "peerDependencies": { + "react": ">=17.x", + "react-dom": ">=17.x" + } + }, + "node_modules/@lexical/rich-text": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@lexical/rich-text/-/rich-text-0.14.5.tgz", + "integrity": "sha512-hLZ8oBrc4ZuYK3KbviV0pUW1R9CvsN8dLTOdYpW5hxvCMDI6UFrtRmaURQY96M7JSYQsDMrtyKyFuID3RwOR1w==", + "dependencies": { + "@lexical/clipboard": "0.14.5", + "@lexical/selection": "0.14.5", + "@lexical/utils": "0.14.5", + "lexical": "0.14.5" + } + }, + "node_modules/@lexical/selection": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@lexical/selection/-/selection-0.14.5.tgz", + "integrity": "sha512-uK4X1wOSnlq2xvIIludnPb6i+grtV4IR7Y1Dg7ZGFJfk1q5FWuS9iA3iVjZbSiehgbZef5nDCPRez9WN/F5krA==", + "dependencies": { + "lexical": "0.14.5" + } + }, + "node_modules/@lexical/table": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@lexical/table/-/table-0.14.5.tgz", + "integrity": "sha512-K+R1w6KL9jIf9gKcXP1x3gPQxaVf+u9rjidKAZptgZYH/O4aLnE7MR+nrLFUYYw0NPOOgYTFxJOk9OW500TtKA==", + "dependencies": { + "@lexical/utils": "0.14.5", + "lexical": "0.14.5" + } + }, + "node_modules/@lexical/text": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@lexical/text/-/text-0.14.5.tgz", + "integrity": "sha512-qcoORBgy3MD1xmmm5hE248HmL3BJLU/+qGvJz7Ei/9Fh5p2+PIYoL90KRcOP6Pp3pDs3ocydb+YcCxLg9L+OOQ==", + "dependencies": { + "lexical": "0.14.5" + } + }, + "node_modules/@lexical/utils": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@lexical/utils/-/utils-0.14.5.tgz", + "integrity": "sha512-KoO63Y5lsgMxcLLIUC/Gwiof4BoKODY5i0NGUhUez/zGq4vCdXp+1DVJF7gmmvg9/vx0J16IrTcr/SAoAnhSFg==", + "dependencies": { + "@lexical/list": "0.14.5", + "@lexical/selection": "0.14.5", + "@lexical/table": "0.14.5", + "lexical": "0.14.5" + } + }, + "node_modules/@lexical/yjs": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@lexical/yjs/-/yjs-0.14.5.tgz", + "integrity": "sha512-Y9dMA/B0tlkQLRUmwnfkPKOOaFQSFSp257pDoQr5Gnpx1OjZWGbbesPn4h2dFhGeLme41nznGZNwxR5nH6lGaw==", + "dependencies": { + "@lexical/offset": "0.14.5", + "lexical": "0.14.5" + }, + "peerDependencies": { + "yjs": ">=13.5.22" + } + }, + "node_modules/@lezer/common": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@lezer/common/-/common-1.2.1.tgz", + "integrity": "sha512-yemX0ZD2xS/73llMZIK6KplkjIjf2EvAHcinDi/TfJ9hS25G0388+ClHt6/3but0oOxinTcQHJLDXh6w1crzFQ==" + }, + "node_modules/@lezer/cpp": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@lezer/cpp/-/cpp-1.1.2.tgz", + "integrity": "sha512-macwKtyeUO0EW86r3xWQCzOV9/CF8imJLpJlPv3sDY57cPGeUZ8gXWOWNlJr52TVByMV3PayFQCA5SHEERDmVQ==", + "dependencies": { + "@lezer/common": "^1.2.0", + "@lezer/highlight": "^1.0.0", + "@lezer/lr": "^1.0.0" + } + }, + "node_modules/@lezer/css": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/@lezer/css/-/css-1.1.8.tgz", + "integrity": "sha512-7JhxupKuMBaWQKjQoLtzhGj83DdnZY9MckEOG5+/iLKNK2ZJqKc6hf6uc0HjwCX7Qlok44jBNqZhHKDhEhZYLA==", + "dependencies": { + "@lezer/common": "^1.2.0", + "@lezer/highlight": "^1.0.0", + "@lezer/lr": "^1.0.0" + } + }, + "node_modules/@lezer/go": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@lezer/go/-/go-1.0.0.tgz", + "integrity": "sha512-co9JfT3QqX1YkrMmourYw2Z8meGC50Ko4d54QEcQbEYpvdUvN4yb0NBZdn/9ertgvjsySxHsKzH3lbm3vqJ4Jw==", + "dependencies": { + "@lezer/common": "^1.2.0", + "@lezer/highlight": "^1.0.0", + "@lezer/lr": "^1.0.0" + } + }, + "node_modules/@lezer/highlight": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@lezer/highlight/-/highlight-1.2.0.tgz", + "integrity": "sha512-WrS5Mw51sGrpqjlh3d4/fOwpEV2Hd3YOkp9DBt4k8XZQcoTHZFB7sx030A6OcahF4J1nDQAa3jXlTVVYH50IFA==", + "dependencies": { + "@lezer/common": "^1.0.0" + } + }, + "node_modules/@lezer/html": { + "version": "1.3.10", + "resolved": "https://registry.npmjs.org/@lezer/html/-/html-1.3.10.tgz", + "integrity": "sha512-dqpT8nISx/p9Do3AchvYGV3qYc4/rKr3IBZxlHmpIKam56P47RSHkSF5f13Vu9hebS1jM0HmtJIwLbWz1VIY6w==", + "dependencies": { + "@lezer/common": "^1.2.0", + "@lezer/highlight": "^1.0.0", + "@lezer/lr": "^1.0.0" + } + }, + "node_modules/@lezer/java": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@lezer/java/-/java-1.1.2.tgz", + "integrity": "sha512-3j8X70JvYf0BZt8iSRLXLkt0Ry1hVUgH6wT32yBxH/Xi55nW2VMhc1Az4SKwu4YGSmxCm1fsqDDcHTuFjC8pmg==", + "dependencies": { + "@lezer/common": "^1.2.0", + "@lezer/highlight": "^1.0.0", + "@lezer/lr": "^1.0.0" + } + }, + "node_modules/@lezer/javascript": { + "version": "1.4.16", + "resolved": "https://registry.npmjs.org/@lezer/javascript/-/javascript-1.4.16.tgz", + "integrity": "sha512-84UXR3N7s11MPQHWgMnjb9571fr19MmXnr5zTv2XX0gHXXUvW3uPJ8GCjKrfTXmSdfktjRK0ayKklw+A13rk4g==", + "dependencies": { + "@lezer/common": "^1.2.0", + "@lezer/highlight": "^1.1.3", + "@lezer/lr": "^1.3.0" + } + }, + "node_modules/@lezer/json": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@lezer/json/-/json-1.0.2.tgz", + "integrity": "sha512-xHT2P4S5eeCYECyKNPhr4cbEL9tc8w83SPwRC373o9uEdrvGKTZoJVAGxpOsZckMlEh9W23Pc72ew918RWQOBQ==", + "dependencies": { + "@lezer/common": "^1.2.0", + "@lezer/highlight": "^1.0.0", + "@lezer/lr": "^1.0.0" + } + }, + "node_modules/@lezer/lr": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@lezer/lr/-/lr-1.4.1.tgz", + "integrity": "sha512-CHsKq8DMKBf9b3yXPDIU4DbH+ZJd/sJdYOW2llbW/HudP5u0VS6Bfq1hLYfgU7uAYGFIyGGQIsSOXGPEErZiJw==", + "dependencies": { + "@lezer/common": "^1.0.0" + } + }, + "node_modules/@lezer/markdown": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@lezer/markdown/-/markdown-1.3.0.tgz", + "integrity": "sha512-ErbEQ15eowmJUyT095e9NJc3BI9yZ894fjSDtHftD0InkfUBGgnKSU6dvan9jqsZuNHg2+ag/1oyDRxNsENupQ==", + "dependencies": { + "@lezer/common": "^1.0.0", + "@lezer/highlight": "^1.0.0" + } + }, + "node_modules/@lezer/php": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@lezer/php/-/php-1.0.2.tgz", + "integrity": "sha512-GN7BnqtGRpFyeoKSEqxvGvhJQiI4zkgmYnDk/JIyc7H7Ifc1tkPnUn/R2R8meH3h/aBf5rzjvU8ZQoyiNDtDrA==", + "dependencies": { + "@lezer/common": "^1.2.0", + "@lezer/highlight": "^1.0.0", + "@lezer/lr": "^1.1.0" + } + }, + "node_modules/@lezer/python": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/@lezer/python/-/python-1.1.14.tgz", + "integrity": "sha512-ykDOb2Ti24n76PJsSa4ZoDF0zH12BSw1LGfQXCYJhJyOGiFTfGaX0Du66Ze72R+u/P35U+O6I9m8TFXov1JzsA==", + "dependencies": { + "@lezer/common": "^1.2.0", + "@lezer/highlight": "^1.0.0", + "@lezer/lr": "^1.0.0" + } + }, + "node_modules/@lezer/rust": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@lezer/rust/-/rust-1.0.2.tgz", + "integrity": "sha512-Lz5sIPBdF2FUXcWeCu1//ojFAZqzTQNRga0aYv6dYXqJqPfMdCAI0NzajWUd4Xijj1IKJLtjoXRPMvTKWBcqKg==", + "dependencies": { + "@lezer/common": "^1.2.0", + "@lezer/highlight": "^1.0.0", + "@lezer/lr": "^1.0.0" + } + }, + "node_modules/@lezer/sass": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@lezer/sass/-/sass-1.0.6.tgz", + "integrity": "sha512-w/RCO2dIzZH1To8p+xjs8cE+yfgGus8NZ/dXeWl/QzHyr+TeBs71qiE70KPImEwvTsmEjoWh0A5SxMzKd5BWBQ==", + "dependencies": { + "@lezer/common": "^1.2.0", + "@lezer/highlight": "^1.0.0", + "@lezer/lr": "^1.0.0" + } + }, + "node_modules/@lezer/xml": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@lezer/xml/-/xml-1.0.5.tgz", + "integrity": "sha512-VFouqOzmUWfIg+tfmpcdV33ewtK+NSwd4ngSe1aG7HFb4BN0ExyY1b8msp+ndFrnlG4V4iC8yXacjFtrwERnaw==", + "dependencies": { + "@lezer/common": "^1.2.0", + "@lezer/highlight": "^1.0.0", + "@lezer/lr": "^1.0.0" + } + }, + "node_modules/@lezer/yaml": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@lezer/yaml/-/yaml-1.0.3.tgz", + "integrity": "sha512-GuBLekbw9jDBDhGur82nuwkxKQ+a3W5H0GfaAthDXcAu+XdpS43VlnxA9E9hllkpSP5ellRDKjLLj7Lu9Wr6xA==", + "dependencies": { + "@lezer/common": "^1.2.0", + "@lezer/highlight": "^1.0.0", + "@lezer/lr": "^1.4.0" + } + }, + "node_modules/@mdxeditor/editor": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/@mdxeditor/editor/-/editor-3.4.1.tgz", + "integrity": "sha512-LLLEG3/uKxBHSv6IVmblT2ReDs9LLBjYySnqi7bGglNvpJCeLDGK6Fj9lYaZ1NKRW/fLgbEwVh+e9orokOTChw==", + "dependencies": { + "@codemirror/lang-markdown": "^6.2.3", + "@codemirror/language-data": "^6.5.1", + "@codemirror/merge": "^6.4.0", + "@codemirror/state": "^6.4.0", + "@codemirror/view": "^6.23.0", + "@codesandbox/sandpack-react": "^2.10.0", + "@lexical/clipboard": "^0.14.5", + "@lexical/link": "^0.14.5", + "@lexical/list": "^0.14.5", + "@lexical/markdown": "^0.14.5", + "@lexical/plain-text": "^0.14.5", + "@lexical/react": "^0.14.5", + "@lexical/rich-text": "^0.14.5", + "@lexical/selection": "^0.14.5", + "@lexical/utils": "^0.14.5", + "@mdxeditor/gurx": "^1.1.1", + "@radix-ui/colors": "^3.0.0", + "@radix-ui/react-dialog": "^1.0.5", + "@radix-ui/react-icons": "^1.3.0", + "@radix-ui/react-popover": "^1.0.7", + "@radix-ui/react-select": "^2.0.0", + "@radix-ui/react-toggle-group": "^1.0.4", + "@radix-ui/react-toolbar": "^1.0.4", + "@radix-ui/react-tooltip": "^1.0.7", + "classnames": "^2.3.2", + "cm6-theme-basic-light": "^0.2.0", + "codemirror": "^6.0.1", + "downshift": "^7.6.0", + "js-yaml": "4.1.0", + "lexical": "^0.14.5", + "mdast-util-directive": "^3.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-frontmatter": "^2.0.1", + "mdast-util-gfm-strikethrough": "^2.0.0", + "mdast-util-gfm-table": "^2.0.0", + "mdast-util-gfm-task-list-item": "^2.0.0", + "mdast-util-mdx": "^3.0.0", + "mdast-util-mdx-jsx": "^3.0.0", + "mdast-util-to-markdown": "^2.1.0", + "micromark-extension-directive": "^3.0.0", + "micromark-extension-frontmatter": "^2.0.0", + "micromark-extension-gfm-strikethrough": "^2.0.0", + "micromark-extension-gfm-table": "^2.0.0", + "micromark-extension-gfm-task-list-item": "^2.0.1", + "micromark-extension-mdx-jsx": "^3.0.0", + "micromark-extension-mdx-md": "^2.0.0", + "micromark-extension-mdxjs": "^3.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.1", + "micromark-util-symbol": "^2.0.0", + "react-hook-form": "^7.44.2", + "unidiff": "^1.0.2" + }, + "engines": { + "node": ">=16" + }, + "peerDependencies": { + "react": "^18.2.0", + "react-dom": "^18.2.0" + } + }, + "node_modules/@mdxeditor/gurx": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@mdxeditor/gurx/-/gurx-1.1.3.tgz", + "integrity": "sha512-ywPsQFJKqrESDJWmvVvSnSjliY7vOOEUkkUunV3A6crsTem7Ymo6FhaNsJWpU5DpkpzcU7kUQXZXoW3i8Nj+fw==", + "dependencies": { + "react": "^18.2.0", + "react-dom": "^18.2.0" + }, + "engines": { + "node": ">=16" + } + }, "node_modules/@next/env": { "version": "14.2.3", "resolved": "https://registry.npmjs.org/@next/env/-/env-14.2.3.tgz", @@ -3382,6 +4314,11 @@ "node": ">= 8" } }, + "node_modules/@open-draft/deferred-promise": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@open-draft/deferred-promise/-/deferred-promise-2.2.0.tgz", + "integrity": "sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==" + }, "node_modules/@p5-wrapper/next": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/@p5-wrapper/next/-/next-1.0.3.tgz", @@ -3541,560 +4478,536 @@ "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==" }, - "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.17.2.tgz", - "integrity": "sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ] + "node_modules/@radix-ui/colors": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@radix-ui/colors/-/colors-3.0.0.tgz", + "integrity": "sha512-FUOsGBkHrYJwCSEtWRCIfQbZG7q1e6DgxCIOe1SUQzDe/7rXXeA47s8yCn6fuTNQAj1Zq4oTFi9Yjp3wzElcxg==" }, - "node_modules/@rollup/rollup-android-arm64": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.17.2.tgz", - "integrity": "sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.17.2.tgz", - "integrity": "sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.17.2.tgz", - "integrity": "sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.17.2.tgz", - "integrity": "sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.17.2.tgz", - "integrity": "sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.17.2.tgz", - "integrity": "sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.17.2.tgz", - "integrity": "sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.17.2.tgz", - "integrity": "sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.17.2.tgz", - "integrity": "sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==", - "cpu": [ - "riscv64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.17.2.tgz", - "integrity": "sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==", - "cpu": [ - "s390x" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.17.2.tgz", - "integrity": "sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.17.2.tgz", - "integrity": "sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.17.2.tgz", - "integrity": "sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.17.2.tgz", - "integrity": "sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.17.2.tgz", - "integrity": "sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ] + "node_modules/@radix-ui/number": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.0.1.tgz", + "integrity": "sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==", + "dependencies": { + "@babel/runtime": "^7.13.10" + } }, - "node_modules/@rushstack/eslint-patch": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.10.2.tgz", - "integrity": "sha512-hw437iINopmQuxWPSUEvqE56NCPsiU8N4AYtfHmJFckclktzK9YQJieD3XkDCDH4OjL+C7zgPUh73R/nrcHrqw==", - "dev": true + "node_modules/@radix-ui/primitive": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.0.1.tgz", + "integrity": "sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==", + "dependencies": { + "@babel/runtime": "^7.13.10" + } }, - "node_modules/@semantic-ui-react/event-stack": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@semantic-ui-react/event-stack/-/event-stack-3.1.3.tgz", - "integrity": "sha512-FdTmJyWvJaYinHrKRsMLDrz4tTMGdFfds299Qory53hBugiDvGC0tEJf+cHsi5igDwWb/CLOgOiChInHwq8URQ==", + "node_modules/@radix-ui/react-arrow": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.0.3.tgz", + "integrity": "sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==", "dependencies": { - "exenv": "^1.2.2", - "prop-types": "^15.6.2" + "@babel/runtime": "^7.13.10", + "@radix-ui/react-primitive": "1.0.3" }, "peerDependencies": { - "react": "^16.0.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0" + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@sinclair/typebox": { - "version": "0.27.8", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", - "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", - "dev": true - }, - "node_modules/@swc/core": { - "version": "1.5.7", - "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.5.7.tgz", - "integrity": "sha512-U4qJRBefIJNJDRCCiVtkfa/hpiZ7w0R6kASea+/KLp+vkus3zcLSB8Ub8SvKgTIxjWpwsKcZlPf5nrv4ls46SQ==", - "dev": true, - "hasInstallScript": true, + "node_modules/@radix-ui/react-collection": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.0.3.tgz", + "integrity": "sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==", "dependencies": { - "@swc/counter": "^0.1.2", - "@swc/types": "0.1.7" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/swc" - }, - "optionalDependencies": { - "@swc/core-darwin-arm64": "1.5.7", - "@swc/core-darwin-x64": "1.5.7", - "@swc/core-linux-arm-gnueabihf": "1.5.7", - "@swc/core-linux-arm64-gnu": "1.5.7", - "@swc/core-linux-arm64-musl": "1.5.7", - "@swc/core-linux-x64-gnu": "1.5.7", - "@swc/core-linux-x64-musl": "1.5.7", - "@swc/core-win32-arm64-msvc": "1.5.7", - "@swc/core-win32-ia32-msvc": "1.5.7", - "@swc/core-win32-x64-msvc": "1.5.7" + "@babel/runtime": "^7.13.10", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-slot": "1.0.2" }, "peerDependencies": { - "@swc/helpers": "^0.5.0" + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" }, "peerDependenciesMeta": { - "@swc/helpers": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { "optional": true } } }, - "node_modules/@swc/core-darwin-arm64": { - "version": "1.5.7", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.5.7.tgz", - "integrity": "sha512-bZLVHPTpH3h6yhwVl395k0Mtx8v6CGhq5r4KQdAoPbADU974Mauz1b6ViHAJ74O0IVE5vyy7tD3OpkQxL/vMDQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=10" + "node_modules/@radix-ui/react-compose-refs": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.1.tgz", + "integrity": "sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==", + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@swc/core-darwin-x64": { - "version": "1.5.7", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.5.7.tgz", - "integrity": "sha512-RpUyu2GsviwTc2qVajPL0l8nf2vKj5wzO3WkLSHAHEJbiUZk83NJrZd1RVbEknIMO7+Uyjh54hEh8R26jSByaw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=10" + "node_modules/@radix-ui/react-context": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.0.1.tgz", + "integrity": "sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==", + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@swc/core-linux-arm-gnueabihf": { - "version": "1.5.7", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.5.7.tgz", - "integrity": "sha512-cTZWTnCXLABOuvWiv6nQQM0hP6ZWEkzdgDvztgHI/+u/MvtzJBN5lBQ2lue/9sSFYLMqzqff5EHKlFtrJCA9dQ==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=10" + "node_modules/@radix-ui/react-dialog": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.0.5.tgz", + "integrity": "sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-dismissable-layer": "1.0.5", + "@radix-ui/react-focus-guards": "1.0.1", + "@radix-ui/react-focus-scope": "1.0.4", + "@radix-ui/react-id": "1.0.1", + "@radix-ui/react-portal": "1.0.4", + "@radix-ui/react-presence": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-slot": "1.0.2", + "@radix-ui/react-use-controllable-state": "1.0.1", + "aria-hidden": "^1.1.1", + "react-remove-scroll": "2.5.5" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@swc/core-linux-arm64-gnu": { - "version": "1.5.7", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.5.7.tgz", - "integrity": "sha512-hoeTJFBiE/IJP30Be7djWF8Q5KVgkbDtjySmvYLg9P94bHg9TJPSQoC72tXx/oXOgXvElDe/GMybru0UxhKx4g==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], + "node_modules/@radix-ui/react-dialog/node_modules/react-remove-scroll": { + "version": "2.5.5", + "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.5.tgz", + "integrity": "sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==", + "dependencies": { + "react-remove-scroll-bar": "^2.3.3", + "react-style-singleton": "^2.2.1", + "tslib": "^2.1.0", + "use-callback-ref": "^1.3.0", + "use-sidecar": "^1.1.2" + }, "engines": { "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@swc/core-linux-arm64-musl": { - "version": "1.5.7", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.5.7.tgz", - "integrity": "sha512-+NDhK+IFTiVK1/o7EXdCeF2hEzCiaRSrb9zD7X2Z7inwWlxAntcSuzZW7Y6BRqGQH89KA91qYgwbnjgTQ22PiQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=10" + "node_modules/@radix-ui/react-direction": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.0.1.tgz", + "integrity": "sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==", + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@swc/core-linux-x64-gnu": { - "version": "1.5.7", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.5.7.tgz", - "integrity": "sha512-25GXpJmeFxKB+7pbY7YQLhWWjkYlR+kHz5I3j9WRl3Lp4v4UD67OGXwPe+DIcHqcouA1fhLhsgHJWtsaNOMBNg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=10" + "node_modules/@radix-ui/react-dismissable-layer": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.0.5.tgz", + "integrity": "sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-use-callback-ref": "1.0.1", + "@radix-ui/react-use-escape-keydown": "1.0.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@swc/core-linux-x64-musl": { - "version": "1.5.7", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.5.7.tgz", - "integrity": "sha512-0VN9Y5EAPBESmSPPsCJzplZHV26akC0sIgd3Hc/7S/1GkSMoeuVL+V9vt+F/cCuzr4VidzSkqftdP3qEIsXSpg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=10" + "node_modules/@radix-ui/react-focus-guards": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-guards/-/react-focus-guards-1.0.1.tgz", + "integrity": "sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==", + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@swc/core-win32-arm64-msvc": { - "version": "1.5.7", - "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.5.7.tgz", - "integrity": "sha512-RtoNnstBwy5VloNCvmvYNApkTmuCe4sNcoYWpmY7C1+bPR+6SOo8im1G6/FpNem8AR5fcZCmXHWQ+EUmRWJyuA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=10" + "node_modules/@radix-ui/react-focus-scope": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.0.4.tgz", + "integrity": "sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-use-callback-ref": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@swc/core-win32-ia32-msvc": { - "version": "1.5.7", - "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.5.7.tgz", - "integrity": "sha512-Xm0TfvcmmspvQg1s4+USL3x8D+YPAfX2JHygvxAnCJ0EHun8cm2zvfNBcsTlnwYb0ybFWXXY129aq1wgFC9TpQ==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=10" + "node_modules/@radix-ui/react-icons": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-icons/-/react-icons-1.3.0.tgz", + "integrity": "sha512-jQxj/0LKgp+j9BiTXz3O3sgs26RNet2iLWmsPyRz2SIcR4q/4SbazXfnYwbAr+vLYKSfc7qxzyGQA1HLlYiuNw==", + "peerDependencies": { + "react": "^16.x || ^17.x || ^18.x" } }, - "node_modules/@swc/core-win32-x64-msvc": { - "version": "1.5.7", - "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.5.7.tgz", - "integrity": "sha512-tp43WfJLCsKLQKBmjmY/0vv1slVywR5Q4qKjF5OIY8QijaEW7/8VwPyUyVoJZEnDgv9jKtUTG5PzqtIYPZGnyg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=10" + "node_modules/@radix-ui/react-id": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.0.1.tgz", + "integrity": "sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-use-layout-effect": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@swc/counter": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", - "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==" - }, - "node_modules/@swc/helpers": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.5.tgz", - "integrity": "sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==", - "dependencies": { - "@swc/counter": "^0.1.3", - "tslib": "^2.4.0" + "node_modules/@radix-ui/react-popover": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@radix-ui/react-popover/-/react-popover-1.0.7.tgz", + "integrity": "sha512-shtvVnlsxT6faMnK/a7n0wptwBD23xc1Z5mdrtKLwVEfsEMXodS0r5s0/g5P0hX//EKYZS2sxUjqfzlg52ZSnQ==", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-dismissable-layer": "1.0.5", + "@radix-ui/react-focus-guards": "1.0.1", + "@radix-ui/react-focus-scope": "1.0.4", + "@radix-ui/react-id": "1.0.1", + "@radix-ui/react-popper": "1.1.3", + "@radix-ui/react-portal": "1.0.4", + "@radix-ui/react-presence": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-slot": "1.0.2", + "@radix-ui/react-use-controllable-state": "1.0.1", + "aria-hidden": "^1.1.1", + "react-remove-scroll": "2.5.5" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@swc/types": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.7.tgz", - "integrity": "sha512-scHWahbHF0eyj3JsxG9CFJgFdFNaVQCNAimBlT6PzS3n/HptxqREjsm4OH6AN3lYcffZYSPxXW8ua2BEHp0lJQ==", - "dev": true, - "dependencies": { - "@swc/counter": "^0.1.3" - } - }, - "node_modules/@testing-library/dom": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.1.0.tgz", - "integrity": "sha512-wdsYKy5zupPyLCW2Je5DLHSxSfbIp6h80WoHOQc+RPtmPGA52O9x5MJEkv92Sjonpq+poOAtUKhh1kBGAXBrNA==", - "dev": true, + "node_modules/@radix-ui/react-popover/node_modules/react-remove-scroll": { + "version": "2.5.5", + "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.5.tgz", + "integrity": "sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==", "dependencies": { - "@babel/code-frame": "^7.10.4", - "@babel/runtime": "^7.12.5", - "@types/aria-query": "^5.0.1", - "aria-query": "5.3.0", - "chalk": "^4.1.0", - "dom-accessibility-api": "^0.5.9", - "lz-string": "^1.5.0", - "pretty-format": "^27.0.2" + "react-remove-scroll-bar": "^2.3.3", + "react-style-singleton": "^2.2.1", + "tslib": "^2.1.0", + "use-callback-ref": "^1.3.0", + "use-sidecar": "^1.1.2" }, "engines": { - "node": ">=18" + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@testing-library/dom/node_modules/dom-accessibility-api": { - "version": "0.5.16", - "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", - "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", - "dev": true + "node_modules/@radix-ui/react-popper": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.1.3.tgz", + "integrity": "sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@floating-ui/react-dom": "^2.0.0", + "@radix-ui/react-arrow": "1.0.3", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-use-callback-ref": "1.0.1", + "@radix-ui/react-use-layout-effect": "1.0.1", + "@radix-ui/react-use-rect": "1.0.1", + "@radix-ui/react-use-size": "1.0.1", + "@radix-ui/rect": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } }, - "node_modules/@testing-library/jest-dom": { - "version": "6.4.5", - "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-6.4.5.tgz", - "integrity": "sha512-AguB9yvTXmCnySBP1lWjfNNUwpbElsaQ567lt2VdGqAdHtpieLgjmcVyv1q7PMIvLbgpDdkWV5Ydv3FEejyp2A==", - "dev": true, + "node_modules/@radix-ui/react-portal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.0.4.tgz", + "integrity": "sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==", "dependencies": { - "@adobe/css-tools": "^4.3.2", - "@babel/runtime": "^7.9.2", - "aria-query": "^5.0.0", - "chalk": "^3.0.0", - "css.escape": "^1.5.1", - "dom-accessibility-api": "^0.6.3", - "lodash": "^4.17.21", - "redent": "^3.0.0" - }, - "engines": { - "node": ">=14", - "npm": ">=6", - "yarn": ">=1" + "@babel/runtime": "^7.13.10", + "@radix-ui/react-primitive": "1.0.3" }, "peerDependencies": { - "@jest/globals": ">= 28", - "@types/bun": "latest", - "@types/jest": ">= 28", - "jest": ">= 28", - "vitest": ">= 0.32" + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" }, "peerDependenciesMeta": { - "@jest/globals": { + "@types/react": { "optional": true }, - "@types/bun": { + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-presence": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.0.1.tgz", + "integrity": "sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-use-layout-effect": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { "optional": true }, - "@types/jest": { + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-primitive": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-1.0.3.tgz", + "integrity": "sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-slot": "1.0.2" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { "optional": true }, - "jest": { + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-roving-focus": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@radix-ui/react-roving-focus/-/react-roving-focus-1.0.4.tgz", + "integrity": "sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-collection": "1.0.3", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-direction": "1.0.1", + "@radix-ui/react-id": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-use-callback-ref": "1.0.1", + "@radix-ui/react-use-controllable-state": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { "optional": true }, - "vitest": { + "@types/react-dom": { "optional": true } } }, - "node_modules/@testing-library/jest-dom/node_modules/chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "node_modules/@radix-ui/react-select": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-select/-/react-select-2.0.0.tgz", + "integrity": "sha512-RH5b7af4oHtkcHS7pG6Sgv5rk5Wxa7XI8W5gvB1N/yiuDGZxko1ynvOiVhFM7Cis2A8zxF9bTOUVbRDzPepe6w==", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/number": "1.0.1", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-collection": "1.0.3", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-direction": "1.0.1", + "@radix-ui/react-dismissable-layer": "1.0.5", + "@radix-ui/react-focus-guards": "1.0.1", + "@radix-ui/react-focus-scope": "1.0.4", + "@radix-ui/react-id": "1.0.1", + "@radix-ui/react-popper": "1.1.3", + "@radix-ui/react-portal": "1.0.4", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-slot": "1.0.2", + "@radix-ui/react-use-callback-ref": "1.0.1", + "@radix-ui/react-use-controllable-state": "1.0.1", + "@radix-ui/react-use-layout-effect": "1.0.1", + "@radix-ui/react-use-previous": "1.0.1", + "@radix-ui/react-visually-hidden": "1.0.3", + "aria-hidden": "^1.1.1", + "react-remove-scroll": "2.5.5" }, - "engines": { - "node": ">=8" + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@testing-library/react": { - "version": "15.0.7", - "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-15.0.7.tgz", - "integrity": "sha512-cg0RvEdD1TIhhkm1IeYMQxrzy0MtUNfa3minv4MjbgcYzJAZ7yD0i0lwoPOTPr+INtiXFezt2o8xMSnyHhEn2Q==", - "dev": true, + "node_modules/@radix-ui/react-select/node_modules/react-remove-scroll": { + "version": "2.5.5", + "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.5.tgz", + "integrity": "sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==", "dependencies": { - "@babel/runtime": "^7.12.5", - "@testing-library/dom": "^10.0.0", - "@types/react-dom": "^18.0.0" + "react-remove-scroll-bar": "^2.3.3", + "react-style-singleton": "^2.2.1", + "tslib": "^2.1.0", + "use-callback-ref": "^1.3.0", + "use-sidecar": "^1.1.2" }, "engines": { - "node": ">=18" + "node": ">=10" }, "peerDependencies": { - "@types/react": "^18.0.0", - "react": "^18.0.0", - "react-dom": "^18.0.0" + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" }, "peerDependenciesMeta": { "@types/react": { @@ -4102,1489 +5015,1620 @@ } } }, - "node_modules/@types/aria-query": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", - "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==", - "dev": true - }, - "node_modules/@types/d3-array": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.1.tgz", - "integrity": "sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==" - }, - "node_modules/@types/d3-color": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz", - "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==" - }, - "node_modules/@types/d3-ease": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz", - "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==" - }, - "node_modules/@types/d3-interpolate": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz", - "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==", + "node_modules/@radix-ui/react-separator": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-separator/-/react-separator-1.0.3.tgz", + "integrity": "sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==", "dependencies": { - "@types/d3-color": "*" + "@babel/runtime": "^7.13.10", + "@radix-ui/react-primitive": "1.0.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@types/d3-path": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.0.tgz", - "integrity": "sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==" - }, - "node_modules/@types/d3-scale": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.8.tgz", - "integrity": "sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==", + "node_modules/@radix-ui/react-slot": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.2.tgz", + "integrity": "sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==", "dependencies": { - "@types/d3-time": "*" + "@babel/runtime": "^7.13.10", + "@radix-ui/react-compose-refs": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@types/d3-shape": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.6.tgz", - "integrity": "sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==", + "node_modules/@radix-ui/react-toggle": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-toggle/-/react-toggle-1.0.3.tgz", + "integrity": "sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==", "dependencies": { - "@types/d3-path": "*" + "@babel/runtime": "^7.13.10", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-use-controllable-state": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@types/d3-time": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.3.tgz", - "integrity": "sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==" - }, - "node_modules/@types/d3-timer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz", - "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==" + "node_modules/@radix-ui/react-toggle-group": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@radix-ui/react-toggle-group/-/react-toggle-group-1.0.4.tgz", + "integrity": "sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-direction": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-roving-focus": "1.0.4", + "@radix-ui/react-toggle": "1.0.3", + "@radix-ui/react-use-controllable-state": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } }, - "node_modules/@types/estree": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", - "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", - "dev": true + "node_modules/@radix-ui/react-toolbar": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@radix-ui/react-toolbar/-/react-toolbar-1.0.4.tgz", + "integrity": "sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-direction": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-roving-focus": "1.0.4", + "@radix-ui/react-separator": "1.0.3", + "@radix-ui/react-toggle-group": "1.0.4" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true - }, - "node_modules/@types/lodash": { - "version": "4.17.3", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.3.tgz", - "integrity": "sha512-zmNrEJaBvNskZXQWaUQq6bktF4IDGVfDS78M+YEk5aCn9M/b94/mB/6WCyfH2/MjwBdc6QuOor95CIlKWYRL3A==" - }, - "node_modules/@types/lodash.mergewith": { - "version": "4.6.7", - "resolved": "https://registry.npmjs.org/@types/lodash.mergewith/-/lodash.mergewith-4.6.7.tgz", - "integrity": "sha512-3m+lkO5CLRRYU0fhGRp7zbsGi6+BZj0uTVSwvcKU+nSlhjA9/QRNfuSGnD2mX6hQA7ZbmcCkzk5h4ZYGOtk14A==", - "dependencies": { - "@types/lodash": "*" - } - }, - "node_modules/@types/node": { - "version": "20.12.11", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.11.tgz", - "integrity": "sha512-vDg9PZ/zi+Nqp6boSOT7plNuthRugEKixDv5sFTIpkE89MmNtEArAShI4mxuX2+UrLEe9pxC1vm2cjm9YlWbJw==", - "dependencies": { - "undici-types": "~5.26.4" - } - }, - "node_modules/@types/node-fetch": { - "version": "2.6.11", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.11.tgz", - "integrity": "sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==", - "dependencies": { - "@types/node": "*", - "form-data": "^4.0.0" - } - }, - "node_modules/@types/parse-json": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", - "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" - }, - "node_modules/@types/prop-types": { - "version": "15.7.12", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.12.tgz", - "integrity": "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==", - "devOptional": true - }, - "node_modules/@types/react": { - "version": "18.3.2", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.2.tgz", - "integrity": "sha512-Btgg89dAnqD4vV7R3hlwOxgqobUQKgx3MmrQRi0yYbs/P0ym8XozIAlkqVilPqHQwXs4e9Tf63rrCgl58BcO4w==", - "devOptional": true, - "dependencies": { - "@types/prop-types": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/react-dom": { - "version": "18.3.0", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.0.tgz", - "integrity": "sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==", - "dev": true, - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" - }, - "node_modules/@types/uuid": { - "version": "9.0.8", - "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.8.tgz", - "integrity": "sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==" - }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.2.0.tgz", - "integrity": "sha512-Qh976RbQM/fYtjx9hs4XkayYujB/aPwglw2choHmf3zBjB4qOywWSdt9+KLRdHubGcoSwBnXUH2sR3hkyaERRg==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "7.2.0", - "@typescript-eslint/visitor-keys": "7.2.0" + "node_modules/@radix-ui/react-tooltip": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@radix-ui/react-tooltip/-/react-tooltip-1.0.7.tgz", + "integrity": "sha512-lPh5iKNFVQ/jav/j6ZrWq3blfDJ0OH9R6FlNUHPMqdLuQ9vwDgFsRxvl8b7Asuy5c8xmoojHUxKHQSOAvMHxyw==", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-dismissable-layer": "1.0.5", + "@radix-ui/react-id": "1.0.1", + "@radix-ui/react-popper": "1.1.3", + "@radix-ui/react-portal": "1.0.4", + "@radix-ui/react-presence": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-slot": "1.0.2", + "@radix-ui/react-use-controllable-state": "1.0.1", + "@radix-ui/react-visually-hidden": "1.0.3" }, - "engines": { - "node": "^16.0.0 || >=18.0.0" + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@typescript-eslint/types": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.2.0.tgz", - "integrity": "sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==", - "dev": true, - "engines": { - "node": "^16.0.0 || >=18.0.0" + "node_modules/@radix-ui/react-use-callback-ref": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.1.tgz", + "integrity": "sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==", + "dependencies": { + "@babel/runtime": "^7.13.10" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.2.0.tgz", - "integrity": "sha512-cyxS5WQQCoBwSakpMrvMXuMDEbhOo9bNHHrNcEWis6XHx6KF518tkF1wBvKIn/tpq5ZpUYK7Bdklu8qY0MsFIA==", - "dev": true, + "node_modules/@radix-ui/react-use-controllable-state": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.0.1.tgz", + "integrity": "sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==", "dependencies": { - "@typescript-eslint/types": "7.2.0", - "@typescript-eslint/visitor-keys": "7.2.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "minimatch": "9.0.3", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" + "@babel/runtime": "^7.13.10", + "@radix-ui/react-use-callback-ref": "1.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" }, "peerDependenciesMeta": { - "typescript": { + "@types/react": { "optional": true } } }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, + "node_modules/@radix-ui/react-use-escape-keydown": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.0.3.tgz", + "integrity": "sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==", "dependencies": { - "balanced-match": "^1.0.0" + "@babel/runtime": "^7.13.10", + "@radix-ui/react-use-callback-ref": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", - "dev": true, + "node_modules/@radix-ui/react-use-layout-effect": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.1.tgz", + "integrity": "sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==", "dependencies": { - "brace-expansion": "^2.0.1" + "@babel/runtime": "^7.13.10" }, - "engines": { - "node": ">=16 || 14 >=14.17" + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", - "dev": true, - "bin": { - "semver": "bin/semver.js" + "node_modules/@radix-ui/react-use-previous": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.0.1.tgz", + "integrity": "sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==", + "dependencies": { + "@babel/runtime": "^7.13.10" }, - "engines": { - "node": ">=10" + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.2.0.tgz", - "integrity": "sha512-c6EIQRHhcpl6+tO8EMR+kjkkV+ugUNXOmeASA1rlzkd8EPIriavpWoiEz1HR/VLhbVIdhqnV6E7JZm00cBDx2A==", - "dev": true, + "node_modules/@radix-ui/react-use-rect": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.0.1.tgz", + "integrity": "sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==", "dependencies": { - "@typescript-eslint/types": "7.2.0", - "eslint-visitor-keys": "^3.4.1" + "@babel/runtime": "^7.13.10", + "@radix-ui/rect": "1.0.1" }, - "engines": { - "node": "^16.0.0 || >=18.0.0" + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@vitejs/plugin-react-swc": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-3.6.0.tgz", - "integrity": "sha512-XFRbsGgpGxGzEV5i5+vRiro1bwcIaZDIdBRP16qwm+jP68ue/S8FJTBEgOeojtVDYrbSua3XFp71kC8VJE6v+g==", - "dev": true, + "node_modules/@radix-ui/react-use-size": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.0.1.tgz", + "integrity": "sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==", "dependencies": { - "@swc/core": "^1.3.107" + "@babel/runtime": "^7.13.10", + "@radix-ui/react-use-layout-effect": "1.0.1" }, "peerDependencies": { - "vite": "^4 || ^5" + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@vitest/expect": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-1.6.0.tgz", - "integrity": "sha512-ixEvFVQjycy/oNgHjqsL6AZCDduC+tflRluaHIzKIsdbzkLn2U/iBnVeJwB6HsIjQBdfMR8Z0tRxKUsvFJEeWQ==", - "dev": true, + "node_modules/@radix-ui/react-visually-hidden": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.0.3.tgz", + "integrity": "sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==", "dependencies": { - "@vitest/spy": "1.6.0", - "@vitest/utils": "1.6.0", - "chai": "^4.3.10" + "@babel/runtime": "^7.13.10", + "@radix-ui/react-primitive": "1.0.3" }, - "funding": { - "url": "https://opencollective.com/vitest" + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@vitest/runner": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-1.6.0.tgz", - "integrity": "sha512-P4xgwPjwesuBiHisAVz/LSSZtDjOTPYZVmNAnpHHSR6ONrf8eCJOFRvUwdHn30F5M1fxhqtl7QZQUk2dprIXAg==", - "dev": true, + "node_modules/@radix-ui/rect": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/rect/-/rect-1.0.1.tgz", + "integrity": "sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==", "dependencies": { - "@vitest/utils": "1.6.0", - "p-limit": "^5.0.0", - "pathe": "^1.1.1" - }, - "funding": { - "url": "https://opencollective.com/vitest" + "@babel/runtime": "^7.13.10" } }, - "node_modules/@vitest/runner/node_modules/p-limit": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-5.0.0.tgz", - "integrity": "sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==", - "dev": true, + "node_modules/@react-hook/intersection-observer": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@react-hook/intersection-observer/-/intersection-observer-3.1.1.tgz", + "integrity": "sha512-OTDx8/wFaRvzFtKl1dEUEXSOqK2zVJHporiTTdC2xO++0e9FEx9wIrPis5q3lqtXeZH9zYGLbk+aB75qNFbbuw==", "dependencies": { - "yocto-queue": "^1.0.0" - }, - "engines": { - "node": ">=18" + "@react-hook/passive-layout-effect": "^1.2.0", + "intersection-observer": "^0.10.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "react": ">=16.8" } }, - "node_modules/@vitest/runner/node_modules/yocto-queue": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", - "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", - "dev": true, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node_modules/@react-hook/passive-layout-effect": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@react-hook/passive-layout-effect/-/passive-layout-effect-1.2.1.tgz", + "integrity": "sha512-IwEphTD75liO8g+6taS+4oqz+nnroocNfWVHWz7j+N+ZO2vYrc6PV1q7GQhuahL0IOR7JccFTsFKQ/mb6iZWAg==", + "peerDependencies": { + "react": ">=16.8" } }, - "node_modules/@vitest/snapshot": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-1.6.0.tgz", - "integrity": "sha512-+Hx43f8Chus+DCmygqqfetcAZrDJwvTj0ymqjQq4CvmpKFSTVteEOBzCusu1x2tt4OJcvBflyHUE0DZSLgEMtQ==", + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.17.2.tgz", + "integrity": "sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==", + "cpu": [ + "arm" + ], "dev": true, - "dependencies": { - "magic-string": "^0.30.5", - "pathe": "^1.1.1", - "pretty-format": "^29.7.0" - }, - "funding": { - "url": "https://opencollective.com/vitest" - } + "optional": true, + "os": [ + "android" + ] }, - "node_modules/@vitest/snapshot/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.17.2.tgz", + "integrity": "sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw==", + "cpu": [ + "arm64" + ], "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } + "optional": true, + "os": [ + "android" + ] }, - "node_modules/@vitest/snapshot/node_modules/pretty-format": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", - "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.17.2.tgz", + "integrity": "sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "@jest/schemas": "^29.6.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } + "optional": true, + "os": [ + "darwin" + ] }, - "node_modules/@vitest/snapshot/node_modules/react-is": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.17.2.tgz", + "integrity": "sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] }, - "node_modules/@vitest/spy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-1.6.0.tgz", - "integrity": "sha512-leUTap6B/cqi/bQkXUu6bQV5TZPx7pmMBKBQiI0rJA8c3pB56ZsaTbREnF7CJfmvAS4V2cXIBAh/3rVwrrCYgw==", + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.17.2.tgz", + "integrity": "sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==", + "cpu": [ + "arm" + ], "dev": true, - "dependencies": { - "tinyspy": "^2.2.0" - }, - "funding": { - "url": "https://opencollective.com/vitest" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/@vitest/utils": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-1.6.0.tgz", - "integrity": "sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==", + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.17.2.tgz", + "integrity": "sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==", + "cpu": [ + "arm" + ], "dev": true, - "dependencies": { - "diff-sequences": "^29.6.3", - "estree-walker": "^3.0.3", - "loupe": "^2.3.7", - "pretty-format": "^29.7.0" - }, - "funding": { - "url": "https://opencollective.com/vitest" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/@vitest/utils/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.17.2.tgz", + "integrity": "sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==", + "cpu": [ + "arm64" + ], "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/@vitest/utils/node_modules/pretty-format": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", - "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.17.2.tgz", + "integrity": "sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "@jest/schemas": "^29.6.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/@vitest/utils/node_modules/react-is": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.17.2.tgz", + "integrity": "sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/@zag-js/dom-query": { - "version": "0.16.0", - "resolved": "https://registry.npmjs.org/@zag-js/dom-query/-/dom-query-0.16.0.tgz", - "integrity": "sha512-Oqhd6+biWyKnhKwFFuZrrf6lxBz2tX2pRQe6grUnYwO6HJ8BcbqZomy2lpOdr+3itlaUqx+Ywj5E5ZZDr/LBfQ==" + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.17.2.tgz", + "integrity": "sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/@zag-js/element-size": { - "version": "0.10.5", - "resolved": "https://registry.npmjs.org/@zag-js/element-size/-/element-size-0.10.5.tgz", - "integrity": "sha512-uQre5IidULANvVkNOBQ1tfgwTQcGl4hliPSe69Fct1VfYb2Fd0jdAcGzqQgPhfrXFpR62MxLPB7erxJ/ngtL8w==" + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.17.2.tgz", + "integrity": "sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/@zag-js/focus-visible": { - "version": "0.16.0", - "resolved": "https://registry.npmjs.org/@zag-js/focus-visible/-/focus-visible-0.16.0.tgz", - "integrity": "sha512-a7U/HSopvQbrDU4GLerpqiMcHKEkQkNPeDZJWz38cw/6Upunh41GjHetq5TB84hxyCaDzJ6q2nEdNoBQfC0FKA==", - "dependencies": { - "@zag-js/dom-query": "0.16.0" - } + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.17.2.tgz", + "integrity": "sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/abort-controller": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", - "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", - "dependencies": { - "event-target-shim": "^5.0.0" - }, - "engines": { - "node": ">=6.5" - } + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.17.2.tgz", + "integrity": "sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/acorn": { - "version": "8.11.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", - "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.17.2.tgz", + "integrity": "sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==", + "cpu": [ + "arm64" + ], "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } + "optional": true, + "os": [ + "win32" + ] }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.17.2.tgz", + "integrity": "sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ==", + "cpu": [ + "ia32" + ], "dev": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } + "optional": true, + "os": [ + "win32" + ] }, - "node_modules/acorn-walk": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.2.tgz", - "integrity": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==", + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.17.2.tgz", + "integrity": "sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w==", + "cpu": [ + "x64" + ], "dev": true, - "engines": { - "node": ">=0.4.0" - } + "optional": true, + "os": [ + "win32" + ] }, - "node_modules/agent-base": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", - "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", - "devOptional": true, - "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } + "node_modules/@rushstack/eslint-patch": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.10.2.tgz", + "integrity": "sha512-hw437iINopmQuxWPSUEvqE56NCPsiU8N4AYtfHmJFckclktzK9YQJieD3XkDCDH4OjL+C7zgPUh73R/nrcHrqw==", + "dev": true }, - "node_modules/agentkeepalive": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.5.0.tgz", - "integrity": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==", + "node_modules/@semantic-ui-react/event-stack": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@semantic-ui-react/event-stack/-/event-stack-3.1.3.tgz", + "integrity": "sha512-FdTmJyWvJaYinHrKRsMLDrz4tTMGdFfds299Qory53hBugiDvGC0tEJf+cHsi5igDwWb/CLOgOiChInHwq8URQ==", "dependencies": { - "humanize-ms": "^1.2.1" + "exenv": "^1.2.2", + "prop-types": "^15.6.2" }, - "engines": { - "node": ">= 8.0.0" + "peerDependencies": { + "react": "^16.0.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "dev": true }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "engines": { - "node": ">=8" - } + "node_modules/@stitches/core": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@stitches/core/-/core-1.2.8.tgz", + "integrity": "sha512-Gfkvwk9o9kE9r9XNBmJRfV8zONvXThnm1tcuojL04Uy5uRyqg93DC83lDebl0rocZCfKSjUv+fWYtMQmEDJldg==" }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@swc/core": { + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.5.7.tgz", + "integrity": "sha512-U4qJRBefIJNJDRCCiVtkfa/hpiZ7w0R6kASea+/KLp+vkus3zcLSB8Ub8SvKgTIxjWpwsKcZlPf5nrv4ls46SQ==", + "dev": true, + "hasInstallScript": true, "dependencies": { - "color-convert": "^2.0.1" + "@swc/counter": "^0.1.2", + "@swc/types": "0.1.7" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/swc" + }, + "optionalDependencies": { + "@swc/core-darwin-arm64": "1.5.7", + "@swc/core-darwin-x64": "1.5.7", + "@swc/core-linux-arm-gnueabihf": "1.5.7", + "@swc/core-linux-arm64-gnu": "1.5.7", + "@swc/core-linux-arm64-musl": "1.5.7", + "@swc/core-linux-x64-gnu": "1.5.7", + "@swc/core-linux-x64-musl": "1.5.7", + "@swc/core-win32-arm64-msvc": "1.5.7", + "@swc/core-win32-ia32-msvc": "1.5.7", + "@swc/core-win32-x64-msvc": "1.5.7" + }, + "peerDependencies": { + "@swc/helpers": "^0.5.0" + }, + "peerDependenciesMeta": { + "@swc/helpers": { + "optional": true + } } }, - "node_modules/any-promise": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", - "dev": true - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "node_modules/@swc/core-darwin-arm64": { + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.5.7.tgz", + "integrity": "sha512-bZLVHPTpH3h6yhwVl395k0Mtx8v6CGhq5r4KQdAoPbADU974Mauz1b6ViHAJ74O0IVE5vyy7tD3OpkQxL/vMDQ==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">= 8" + "node": ">=10" } }, - "node_modules/arg": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", - "dev": true - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - }, - "node_modules/aria-hidden": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.4.tgz", - "integrity": "sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==", - "dependencies": { - "tslib": "^2.0.0" - }, + "node_modules/@swc/core-darwin-x64": { + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.5.7.tgz", + "integrity": "sha512-RpUyu2GsviwTc2qVajPL0l8nf2vKj5wzO3WkLSHAHEJbiUZk83NJrZd1RVbEknIMO7+Uyjh54hEh8R26jSByaw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], "engines": { "node": ">=10" } }, - "node_modules/aria-query": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", - "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "node_modules/@swc/core-linux-arm-gnueabihf": { + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.5.7.tgz", + "integrity": "sha512-cTZWTnCXLABOuvWiv6nQQM0hP6ZWEkzdgDvztgHI/+u/MvtzJBN5lBQ2lue/9sSFYLMqzqff5EHKlFtrJCA9dQ==", + "cpu": [ + "arm" + ], "dev": true, - "dependencies": { - "dequal": "^2.0.3" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" } }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", - "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.5", - "is-array-buffer": "^3.0.4" - }, + "node_modules/@swc/core-linux-arm64-gnu": { + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.5.7.tgz", + "integrity": "sha512-hoeTJFBiE/IJP30Be7djWF8Q5KVgkbDtjySmvYLg9P94bHg9TJPSQoC72tXx/oXOgXvElDe/GMybru0UxhKx4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=10" } }, - "node_modules/array-includes": { - "version": "3.1.8", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", - "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", + "node_modules/@swc/core-linux-arm64-musl": { + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.5.7.tgz", + "integrity": "sha512-+NDhK+IFTiVK1/o7EXdCeF2hEzCiaRSrb9zD7X2Z7inwWlxAntcSuzZW7Y6BRqGQH89KA91qYgwbnjgTQ22PiQ==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-object-atoms": "^1.0.0", - "get-intrinsic": "^1.2.4", - "is-string": "^1.0.7" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=10" } }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "node_modules/@swc/core-linux-x64-gnu": { + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.5.7.tgz", + "integrity": "sha512-25GXpJmeFxKB+7pbY7YQLhWWjkYlR+kHz5I3j9WRl3Lp4v4UD67OGXwPe+DIcHqcouA1fhLhsgHJWtsaNOMBNg==", + "cpu": [ + "x64" + ], "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/array.prototype.findlast": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", - "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", + "node_modules/@swc/core-linux-x64-musl": { + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.5.7.tgz", + "integrity": "sha512-0VN9Y5EAPBESmSPPsCJzplZHV26akC0sIgd3Hc/7S/1GkSMoeuVL+V9vt+F/cCuzr4VidzSkqftdP3qEIsXSpg==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "es-shim-unscopables": "^1.0.2" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=10" } }, - "node_modules/array.prototype.findlastindex": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz", - "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==", + "node_modules/@swc/core-win32-arm64-msvc": { + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.5.7.tgz", + "integrity": "sha512-RtoNnstBwy5VloNCvmvYNApkTmuCe4sNcoYWpmY7C1+bPR+6SOo8im1G6/FpNem8AR5fcZCmXHWQ+EUmRWJyuA==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "es-shim-unscopables": "^1.0.2" - }, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=10" } }, - "node_modules/array.prototype.flat": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", - "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "node_modules/@swc/core-win32-ia32-msvc": { + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.5.7.tgz", + "integrity": "sha512-Xm0TfvcmmspvQg1s4+USL3x8D+YPAfX2JHygvxAnCJ0EHun8cm2zvfNBcsTlnwYb0ybFWXXY129aq1wgFC9TpQ==", + "cpu": [ + "ia32" + ], "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=10" } }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", - "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "node_modules/@swc/core-win32-x64-msvc": { + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.5.7.tgz", + "integrity": "sha512-tp43WfJLCsKLQKBmjmY/0vv1slVywR5Q4qKjF5OIY8QijaEW7/8VwPyUyVoJZEnDgv9jKtUTG5PzqtIYPZGnyg==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=10" } }, - "node_modules/array.prototype.toreversed": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/array.prototype.toreversed/-/array.prototype.toreversed-1.1.2.tgz", - "integrity": "sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==", - "dev": true, + "node_modules/@swc/counter": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", + "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==" + }, + "node_modules/@swc/helpers": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.5.tgz", + "integrity": "sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" + "@swc/counter": "^0.1.3", + "tslib": "^2.4.0" } }, - "node_modules/array.prototype.tosorted": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.3.tgz", - "integrity": "sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==", + "node_modules/@swc/types": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.7.tgz", + "integrity": "sha512-scHWahbHF0eyj3JsxG9CFJgFdFNaVQCNAimBlT6PzS3n/HptxqREjsm4OH6AN3lYcffZYSPxXW8ua2BEHp0lJQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.1.0", - "es-shim-unscopables": "^1.0.2" + "@swc/counter": "^0.1.3" } }, - "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", - "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "node_modules/@testing-library/dom": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.1.0.tgz", + "integrity": "sha512-wdsYKy5zupPyLCW2Je5DLHSxSfbIp6h80WoHOQc+RPtmPGA52O9x5MJEkv92Sjonpq+poOAtUKhh1kBGAXBrNA==", "dev": true, "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.2.1", - "get-intrinsic": "^1.2.3", - "is-array-buffer": "^3.0.4", - "is-shared-array-buffer": "^1.0.2" + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "5.3.0", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "pretty-format": "^27.0.2" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=18" } }, - "node_modules/asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + "node_modules/@testing-library/dom/node_modules/dom-accessibility-api": { + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", + "dev": true }, - "node_modules/assertion-error": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", - "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/ast-types-flow": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", - "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", - "dev": true - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - }, - "node_modules/available-typed-arrays": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", - "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "node_modules/@testing-library/jest-dom": { + "version": "6.4.5", + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-6.4.5.tgz", + "integrity": "sha512-AguB9yvTXmCnySBP1lWjfNNUwpbElsaQ567lt2VdGqAdHtpieLgjmcVyv1q7PMIvLbgpDdkWV5Ydv3FEejyp2A==", "dev": true, "dependencies": { - "possible-typed-array-names": "^1.0.0" + "@adobe/css-tools": "^4.3.2", + "@babel/runtime": "^7.9.2", + "aria-query": "^5.0.0", + "chalk": "^3.0.0", + "css.escape": "^1.5.1", + "dom-accessibility-api": "^0.6.3", + "lodash": "^4.17.21", + "redent": "^3.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=14", + "npm": ">=6", + "yarn": ">=1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "@jest/globals": ">= 28", + "@types/bun": "latest", + "@types/jest": ">= 28", + "jest": ">= 28", + "vitest": ">= 0.32" + }, + "peerDependenciesMeta": { + "@jest/globals": { + "optional": true + }, + "@types/bun": { + "optional": true + }, + "@types/jest": { + "optional": true + }, + "jest": { + "optional": true + }, + "vitest": { + "optional": true + } } }, - "node_modules/axe-core": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", - "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==", + "node_modules/@testing-library/jest-dom/node_modules/chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/axobject-query": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", - "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "node_modules/@testing-library/react": { + "version": "15.0.7", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-15.0.7.tgz", + "integrity": "sha512-cg0RvEdD1TIhhkm1IeYMQxrzy0MtUNfa3minv4MjbgcYzJAZ7yD0i0lwoPOTPr+INtiXFezt2o8xMSnyHhEn2Q==", "dev": true, - "dependencies": { - "dequal": "^2.0.3" - } - }, - "node_modules/babel-plugin-macros": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", - "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", "dependencies": { "@babel/runtime": "^7.12.5", - "cosmiconfig": "^7.0.0", - "resolve": "^1.19.0" + "@testing-library/dom": "^10.0.0", + "@types/react-dom": "^18.0.0" }, "engines": { - "node": ">=10", - "npm": ">=6" + "node": ">=18" + }, + "peerDependencies": { + "@types/react": "^18.0.0", + "react": "^18.0.0", + "react-dom": "^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "node_modules/@types/acorn": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz", + "integrity": "sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==", + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/@types/aria-query": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", + "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==", "dev": true }, - "node_modules/base-64": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/base-64/-/base-64-0.1.0.tgz", - "integrity": "sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA==" + "node_modules/@types/d3-array": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.1.tgz", + "integrity": "sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==" }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] + "node_modules/@types/d3-color": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz", + "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==" }, - "node_modules/binary-extensions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", - "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node_modules/@types/d3-ease": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz", + "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==" + }, + "node_modules/@types/d3-interpolate": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz", + "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==", + "dependencies": { + "@types/d3-color": "*" } }, - "node_modules/binary-search": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/binary-search/-/binary-search-1.3.6.tgz", - "integrity": "sha512-nbE1WxOTTrUWIfsfZ4aHGYu5DOuNkbxGokjV6Z2kxfJK3uaAb8zNK1muzOeipoLHZjInT4Br88BHpzevc681xA==" + "node_modules/@types/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==" }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, + "node_modules/@types/d3-scale": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.8.tgz", + "integrity": "sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "@types/d3-time": "*" } }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, + "node_modules/@types/d3-shape": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.6.tgz", + "integrity": "sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==", "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" + "@types/d3-path": "*" } }, - "node_modules/busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "node_modules/@types/d3-time": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.3.tgz", + "integrity": "sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==" + }, + "node_modules/@types/d3-timer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz", + "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==" + }, + "node_modules/@types/debug": { + "version": "4.1.12", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", + "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", "dependencies": { - "streamsearch": "^1.1.0" - }, - "engines": { - "node": ">=10.16.0" + "@types/ms": "*" } }, - "node_modules/cac": { - "version": "6.7.14", - "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", - "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", - "dev": true, - "engines": { - "node": ">=8" - } + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" }, - "node_modules/call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", - "dev": true, + "node_modules/@types/estree-jsx": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz", + "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==", "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "@types/estree": "*" } }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "engines": { - "node": ">=6" + "node_modules/@types/hast": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", + "dependencies": { + "@types/unist": "*" } }, - "node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true + }, + "node_modules/@types/lodash": { + "version": "4.17.3", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.3.tgz", + "integrity": "sha512-zmNrEJaBvNskZXQWaUQq6bktF4IDGVfDS78M+YEk5aCn9M/b94/mB/6WCyfH2/MjwBdc6QuOor95CIlKWYRL3A==" + }, + "node_modules/@types/lodash.mergewith": { + "version": "4.6.7", + "resolved": "https://registry.npmjs.org/@types/lodash.mergewith/-/lodash.mergewith-4.6.7.tgz", + "integrity": "sha512-3m+lkO5CLRRYU0fhGRp7zbsGi6+BZj0uTVSwvcKU+nSlhjA9/QRNfuSGnD2mX6hQA7ZbmcCkzk5h4ZYGOtk14A==", + "dependencies": { + "@types/lodash": "*" } }, - "node_modules/camelcase-css": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", - "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", - "dev": true, - "engines": { - "node": ">= 6" + "node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "dependencies": { + "@types/unist": "*" } }, - "node_modules/caniuse-lite": { - "version": "1.0.30001617", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001617.tgz", - "integrity": "sha512-mLyjzNI9I+Pix8zwcrpxEbGlfqOkF9kM3ptzmKNw5tizSyYwMe+nGLTqMK9cO+0E+Bh6TsBxNAaHWEM8xwSsmA==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] + "node_modules/@types/ms": { + "version": "0.7.34", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz", + "integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==" }, - "node_modules/chai": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/chai/-/chai-4.4.1.tgz", - "integrity": "sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==", - "dev": true, + "node_modules/@types/node": { + "version": "20.12.11", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.11.tgz", + "integrity": "sha512-vDg9PZ/zi+Nqp6boSOT7plNuthRugEKixDv5sFTIpkE89MmNtEArAShI4mxuX2+UrLEe9pxC1vm2cjm9YlWbJw==", "dependencies": { - "assertion-error": "^1.1.0", - "check-error": "^1.0.3", - "deep-eql": "^4.1.3", - "get-func-name": "^2.0.2", - "loupe": "^2.3.6", - "pathval": "^1.1.1", - "type-detect": "^4.0.8" - }, - "engines": { - "node": ">=4" + "undici-types": "~5.26.4" } }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@types/node-fetch": { + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==", + "dependencies": { + "@types/node": "*", + "form-data": "^4.0.0" + } + }, + "node_modules/@types/parse-json": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" + }, + "node_modules/@types/prismjs": { + "version": "1.26.4", + "resolved": "https://registry.npmjs.org/@types/prismjs/-/prismjs-1.26.4.tgz", + "integrity": "sha512-rlAnzkW2sZOjbqZ743IHUhFcvzaGbqijwOu8QZnZCjfQzBqFE3s4lOTJEsxikImav9uzz/42I+O7YUs1mWgMlg==" + }, + "node_modules/@types/prop-types": { + "version": "15.7.12", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.12.tgz", + "integrity": "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==" + }, + "node_modules/@types/react": { + "version": "18.3.2", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.2.tgz", + "integrity": "sha512-Btgg89dAnqD4vV7R3hlwOxgqobUQKgx3MmrQRi0yYbs/P0ym8XozIAlkqVilPqHQwXs4e9Tf63rrCgl58BcO4w==", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.3.0", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.0.tgz", + "integrity": "sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==", + "devOptional": true, + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" + }, + "node_modules/@types/unist": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.2.tgz", + "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==" + }, + "node_modules/@types/uuid": { + "version": "9.0.8", + "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.8.tgz", + "integrity": "sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==" + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.2.0.tgz", + "integrity": "sha512-Qh976RbQM/fYtjx9hs4XkayYujB/aPwglw2choHmf3zBjB4qOywWSdt9+KLRdHubGcoSwBnXUH2sR3hkyaERRg==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@typescript-eslint/types": "7.2.0", + "@typescript-eslint/visitor-keys": "7.2.0" }, "engines": { - "node": ">=10" + "node": "^16.0.0 || >=18.0.0" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/charenc": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", - "integrity": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==", + "node_modules/@typescript-eslint/types": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.2.0.tgz", + "integrity": "sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==", + "dev": true, "engines": { - "node": "*" + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/check-error": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.3.tgz", - "integrity": "sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==", + "node_modules/@typescript-eslint/typescript-estree": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.2.0.tgz", + "integrity": "sha512-cyxS5WQQCoBwSakpMrvMXuMDEbhOo9bNHHrNcEWis6XHx6KF518tkF1wBvKIn/tpq5ZpUYK7Bdklu8qY0MsFIA==", "dev": true, "dependencies": { - "get-func-name": "^2.0.2" + "@typescript-eslint/types": "7.2.0", + "@typescript-eslint/visitor-keys": "7.2.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "9.0.3", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" }, "engines": { - "node": "*" + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/chokidar": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">= 8.10.0" + "node": ">=16 || 14 >=14.17" }, "funding": { - "url": "https://paulmillr.com/funding/" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/chokidar/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", "dev": true, - "dependencies": { - "is-glob": "^4.0.1" + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">= 6" + "node": ">=10" } }, - "node_modules/client-only": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", - "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" - }, - "node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "node_modules/@typescript-eslint/visitor-keys": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.2.0.tgz", + "integrity": "sha512-c6EIQRHhcpl6+tO8EMR+kjkkV+ugUNXOmeASA1rlzkd8EPIriavpWoiEz1HR/VLhbVIdhqnV6E7JZm00cBDx2A==", + "dev": true, "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" + "@typescript-eslint/types": "7.2.0", + "eslint-visitor-keys": "^3.4.1" }, "engines": { - "node": ">=12" + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/cliui/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + "node_modules/@uiw/copy-to-clipboard": { + "version": "1.0.17", + "resolved": "https://registry.npmjs.org/@uiw/copy-to-clipboard/-/copy-to-clipboard-1.0.17.tgz", + "integrity": "sha512-O2GUHV90Iw2VrSLVLK0OmNIMdZ5fgEg4NhvtwINsX+eZ/Wf6DWD0TdsK9xwV7dNRnK/UI2mQtl0a2/kRgm1m1A==", + "funding": { + "url": "https://jaywcjlove.github.io/#/sponsor" + } }, - "node_modules/cliui/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "node_modules/@uiw/react-markdown-preview": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@uiw/react-markdown-preview/-/react-markdown-preview-5.1.1.tgz", + "integrity": "sha512-uN/1o53o+4F9jerU3ijZcukOSe+fBR6cmIWi3IjqPWqhc/JxUnbqE6sxiH6nDVJwLS2rx6TH8imb0r9r0aorqg==", + "dependencies": { + "@babel/runtime": "^7.17.2", + "@uiw/copy-to-clipboard": "~1.0.12", + "react-markdown": "~9.0.1", + "rehype-attr": "~3.0.1", + "rehype-autolink-headings": "~7.1.0", + "rehype-ignore": "^2.0.0", + "rehype-prism-plus": "2.0.0", + "rehype-raw": "^7.0.0", + "rehype-rewrite": "~4.0.0", + "rehype-slug": "~6.0.0", + "remark-gfm": "~4.0.0", + "remark-github-blockquote-alert": "^1.0.0", + "unist-util-visit": "^5.0.0" }, - "engines": { - "node": ">=8" + "funding": { + "url": "https://jaywcjlove.github.io/#/sponsor" + }, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" } }, - "node_modules/cliui/node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "node_modules/@uiw/react-md-editor": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@uiw/react-md-editor/-/react-md-editor-4.0.4.tgz", + "integrity": "sha512-JH9nDXXRhJtWPP4yE61VE+9ryFo9tg9v7KMwGfJCnaOOKuLF1MR3l/MNsiJCGkRjUwyto5WrU7kBSq8ODJEtYw==", "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" + "@babel/runtime": "^7.14.6", + "@uiw/react-markdown-preview": "^5.0.6", + "rehype": "~13.0.0", + "rehype-prism-plus": "~2.0.0" }, "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "url": "https://jaywcjlove.github.io/#/sponsor" + }, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" } }, - "node_modules/clsx": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", - "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", - "engines": { - "node": ">=6" - } + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==" }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/@vitejs/plugin-react-swc": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-3.6.0.tgz", + "integrity": "sha512-XFRbsGgpGxGzEV5i5+vRiro1bwcIaZDIdBRP16qwm+jP68ue/S8FJTBEgOeojtVDYrbSua3XFp71kC8VJE6v+g==", + "dev": true, "dependencies": { - "color-name": "~1.1.4" + "@swc/core": "^1.3.107" }, - "engines": { - "node": ">=7.0.0" + "peerDependencies": { + "vite": "^4 || ^5" } }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/color2k": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/color2k/-/color2k-2.0.3.tgz", - "integrity": "sha512-zW190nQTIoXcGCaU08DvVNFTmQhUpnJfVuAKfWqUQkflXKpaDdpaYoM0iluLS9lgJNHyBF58KKA2FBEwkD7wog==" - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "node_modules/@vitest/expect": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-1.6.0.tgz", + "integrity": "sha512-ixEvFVQjycy/oNgHjqsL6AZCDduC+tflRluaHIzKIsdbzkLn2U/iBnVeJwB6HsIjQBdfMR8Z0tRxKUsvFJEeWQ==", + "dev": true, "dependencies": { - "delayed-stream": "~1.0.0" + "@vitest/spy": "1.6.0", + "@vitest/utils": "1.6.0", + "chai": "^4.3.10" }, - "engines": { - "node": ">= 0.8" + "funding": { + "url": "https://opencollective.com/vitest" } }, - "node_modules/commander": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "node_modules/@vitest/runner": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-1.6.0.tgz", + "integrity": "sha512-P4xgwPjwesuBiHisAVz/LSSZtDjOTPYZVmNAnpHHSR6ONrf8eCJOFRvUwdHn30F5M1fxhqtl7QZQUk2dprIXAg==", "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/compute-scroll-into-view": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-3.0.3.tgz", - "integrity": "sha512-nadqwNxghAGTamwIqQSG433W6OADZx2vCo3UXHNrzTRHK/htu+7+L0zhjEoaeaQVNAi3YgqWDv8+tzf0hRfR+A==" - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "node_modules/confbox": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.1.7.tgz", - "integrity": "sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==", - "dev": true - }, - "node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" - }, - "node_modules/cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/copy-to-clipboard": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz", - "integrity": "sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==", "dependencies": { - "toggle-selection": "^1.0.6" + "@vitest/utils": "1.6.0", + "p-limit": "^5.0.0", + "pathe": "^1.1.1" + }, + "funding": { + "url": "https://opencollective.com/vitest" } }, - "node_modules/cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "node_modules/@vitest/runner/node_modules/p-limit": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-5.0.0.tgz", + "integrity": "sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==", + "dev": true, "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" + "yocto-queue": "^1.0.0" }, "engines": { - "node": ">=10" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cosmiconfig/node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "node_modules/@vitest/runner/node_modules/yocto-queue": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", + "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", + "dev": true, "engines": { - "node": ">= 6" + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "node_modules/@vitest/snapshot": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-1.6.0.tgz", + "integrity": "sha512-+Hx43f8Chus+DCmygqqfetcAZrDJwvTj0ymqjQq4CvmpKFSTVteEOBzCusu1x2tt4OJcvBflyHUE0DZSLgEMtQ==", "dev": true, "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "magic-string": "^0.30.5", + "pathe": "^1.1.1", + "pretty-format": "^29.7.0" }, - "engines": { - "node": ">= 8" + "funding": { + "url": "https://opencollective.com/vitest" } }, - "node_modules/crypt": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", - "integrity": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==", + "node_modules/@vitest/snapshot/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, "engines": { - "node": "*" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/crypto-js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz", - "integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==" - }, - "node_modules/css-box-model": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/css-box-model/-/css-box-model-1.2.1.tgz", - "integrity": "sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==", + "node_modules/@vitest/snapshot/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, "dependencies": { - "tiny-invariant": "^1.0.6" + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/css.escape": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", - "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==", + "node_modules/@vitest/snapshot/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", "dev": true }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "node_modules/@vitest/spy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-1.6.0.tgz", + "integrity": "sha512-leUTap6B/cqi/bQkXUu6bQV5TZPx7pmMBKBQiI0rJA8c3pB56ZsaTbREnF7CJfmvAS4V2cXIBAh/3rVwrrCYgw==", "dev": true, - "bin": { - "cssesc": "bin/cssesc" + "dependencies": { + "tinyspy": "^2.2.0" }, - "engines": { - "node": ">=4" + "funding": { + "url": "https://opencollective.com/vitest" } }, - "node_modules/cssstyle": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-4.0.1.tgz", - "integrity": "sha512-8ZYiJ3A/3OkDd093CBT/0UKDWry7ak4BdPTFP2+QEP7cmhouyq/Up709ASSj2cK02BbZiMgk7kYjZNS4QP5qrQ==", - "devOptional": true, + "node_modules/@vitest/utils": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-1.6.0.tgz", + "integrity": "sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==", + "dev": true, "dependencies": { - "rrweb-cssom": "^0.6.0" + "diff-sequences": "^29.6.3", + "estree-walker": "^3.0.3", + "loupe": "^2.3.7", + "pretty-format": "^29.7.0" }, - "engines": { - "node": ">=18" + "funding": { + "url": "https://opencollective.com/vitest" } }, - "node_modules/csstype": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz", - "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==" + "node_modules/@vitest/utils/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } }, - "node_modules/d3-array": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", - "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", + "node_modules/@vitest/utils/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, "dependencies": { - "internmap": "1 - 2" + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" }, "engines": { - "node": ">=12" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/d3-color": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", - "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", - "engines": { - "node": ">=12" - } + "node_modules/@vitest/utils/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true }, - "node_modules/d3-ease": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", - "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", - "engines": { - "node": ">=12" - } + "node_modules/@zag-js/dom-query": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/@zag-js/dom-query/-/dom-query-0.16.0.tgz", + "integrity": "sha512-Oqhd6+biWyKnhKwFFuZrrf6lxBz2tX2pRQe6grUnYwO6HJ8BcbqZomy2lpOdr+3itlaUqx+Ywj5E5ZZDr/LBfQ==" }, - "node_modules/d3-format": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", - "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", - "engines": { - "node": ">=12" + "node_modules/@zag-js/element-size": { + "version": "0.10.5", + "resolved": "https://registry.npmjs.org/@zag-js/element-size/-/element-size-0.10.5.tgz", + "integrity": "sha512-uQre5IidULANvVkNOBQ1tfgwTQcGl4hliPSe69Fct1VfYb2Fd0jdAcGzqQgPhfrXFpR62MxLPB7erxJ/ngtL8w==" + }, + "node_modules/@zag-js/focus-visible": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/@zag-js/focus-visible/-/focus-visible-0.16.0.tgz", + "integrity": "sha512-a7U/HSopvQbrDU4GLerpqiMcHKEkQkNPeDZJWz38cw/6Upunh41GjHetq5TB84hxyCaDzJ6q2nEdNoBQfC0FKA==", + "dependencies": { + "@zag-js/dom-query": "0.16.0" } }, - "node_modules/d3-interpolate": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", - "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", "dependencies": { - "d3-color": "1 - 3" + "event-target-shim": "^5.0.0" }, "engines": { - "node": ">=12" + "node": ">=6.5" } }, - "node_modules/d3-path": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", - "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", + "node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "bin": { + "acorn": "bin/acorn" + }, "engines": { - "node": ">=12" + "node": ">=0.4.0" } }, - "node_modules/d3-scale": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", - "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", - "dependencies": { - "d3-array": "2.10.0 - 3", - "d3-format": "1 - 3", - "d3-interpolate": "1.2.0 - 3", - "d3-time": "2.1.1 - 3", - "d3-time-format": "2 - 4" - }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.2.tgz", + "integrity": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==", + "dev": true, "engines": { - "node": ">=12" + "node": ">=0.4.0" } }, - "node_modules/d3-shape": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", - "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", + "node_modules/agent-base": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", + "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", + "devOptional": true, "dependencies": { - "d3-path": "^3.1.0" + "debug": "^4.3.4" }, "engines": { - "node": ">=12" + "node": ">= 14" } }, - "node_modules/d3-time": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", - "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", + "node_modules/agentkeepalive": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.5.0.tgz", + "integrity": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==", "dependencies": { - "d3-array": "2 - 3" + "humanize-ms": "^1.2.1" }, "engines": { - "node": ">=12" + "node": ">= 8.0.0" } }, - "node_modules/d3-time-format": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", - "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, "dependencies": { - "d3-time": "1 - 3" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" }, - "engines": { - "node": ">=12" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/d3-timer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", - "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", + "node_modules/anser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/anser/-/anser-2.1.1.tgz", + "integrity": "sha512-nqLm4HxOTpeLOxcmB3QWmV5TcDFhW9y/fyQ+hivtDFcK4OQ+pQ5fzPnXHM1Mfcm0VkLtvVi1TCPr++Qy0Q/3EQ==" + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/damerau-levenshtein": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", - "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", - "dev": true - }, - "node_modules/data-urls": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-5.0.0.tgz", - "integrity": "sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==", - "devOptional": true, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": { - "whatwg-mimetype": "^4.0.0", - "whatwg-url": "^14.0.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=18" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/data-urls/node_modules/tr46": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-5.0.0.tgz", - "integrity": "sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==", - "devOptional": true, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, "dependencies": { - "punycode": "^2.3.1" + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" }, "engines": { - "node": ">=18" + "node": ">= 8" } }, - "node_modules/data-urls/node_modules/webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", - "devOptional": true, - "engines": { - "node": ">=12" - } + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true }, - "node_modules/data-urls/node_modules/whatwg-url": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.0.0.tgz", - "integrity": "sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==", - "devOptional": true, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/aria-hidden": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.4.tgz", + "integrity": "sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==", "dependencies": { - "tr46": "^5.0.0", - "webidl-conversions": "^7.0.0" + "tslib": "^2.0.0" }, "engines": { - "node": ">=18" + "node": ">=10" } }, - "node_modules/data-view-buffer": { + "node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "dev": true, + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/array-buffer-byte-length": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", - "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", "dev": true, "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" }, "engines": { "node": ">= 0.4" @@ -5593,15 +6637,18 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/data-view-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", - "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "node_modules/array-includes": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", + "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", "dev": true, "dependencies": { "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.4", + "is-string": "^1.0.7" }, "engines": { "node": ">= 0.4" @@ -5610,15 +6657,27 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/data-view-byte-offset": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", - "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/array.prototype.findlast": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", + "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.6", + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -5627,69 +6686,54 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "devOptional": true, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz", + "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==", + "dev": true, "dependencies": { - "ms": "2.1.2" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" }, "engines": { - "node": ">=6.0" + "node": ">= 0.4" }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", - "engines": { - "node": ">=0.10.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/decimal.js": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", - "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", - "devOptional": true - }, - "node_modules/decimal.js-light": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz", - "integrity": "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==" - }, - "node_modules/deep-eql": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.3.tgz", - "integrity": "sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==", + "node_modules/array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", "dev": true, "dependencies": { - "type-detect": "^4.0.0" + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" }, "engines": { - "node": ">=6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "node_modules/define-data-property": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "node_modules/array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", "dev": true, "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -5698,15 +6742,45 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "node_modules/array.prototype.toreversed": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/array.prototype.toreversed/-/array.prototype.toreversed-1.1.2.tgz", + "integrity": "sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==", "dev": true, "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.3.tgz", + "integrity": "sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.1.0", + "es-shim-unscopables": "^1.0.2" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -5715,212 +6789,223 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "engines": { - "node": ">=0.4.0" - } + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "node_modules/assertion-error": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", + "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", "dev": true, "engines": { - "node": ">=6" + "node": "*" } }, - "node_modules/detect-node-es": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz", - "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==" + "node_modules/ast-types-flow": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", + "dev": true }, - "node_modules/dezalgo": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.4.tgz", - "integrity": "sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==", + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dev": true, "dependencies": { - "asap": "^2.0.0", - "wrappy": "1" + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/didyoumean": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", - "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", - "dev": true - }, - "node_modules/diff-sequences": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", - "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "node_modules/axe-core": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", + "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==", "dev": true, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=4" } }, - "node_modules/digest-fetch": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/digest-fetch/-/digest-fetch-1.3.0.tgz", - "integrity": "sha512-CGJuv6iKNM7QyZlM2T3sPAdZWd/p9zQiRNS9G+9COUCwzWFTs0Xp8NF5iePx7wtvhDykReiRRrSeNb4oMmB8lA==", + "node_modules/axobject-query": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "dev": true, "dependencies": { - "base-64": "^0.1.0", - "md5": "^2.3.0" + "dequal": "^2.0.3" } }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", "dependencies": { - "path-type": "^4.0.0" + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" }, "engines": { - "node": ">=8" + "node": ">=10", + "npm": ">=6" } }, - "node_modules/dlv": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", - "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", - "dev": true - }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" + "node_modules/bail": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/dom-accessibility-api": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.6.3.tgz", - "integrity": "sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==", + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, - "node_modules/dom-helpers": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", - "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", - "dependencies": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" + "node_modules/base-64": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/base-64/-/base-64-0.1.0.tgz", + "integrity": "sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA==" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/bcp-47-match": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/bcp-47-match/-/bcp-47-match-2.0.3.tgz", + "integrity": "sha512-JtTezzbAibu8G0R9op9zb3vcWZd9JF6M0xOYGPn0fNCd7wOpRB1mU2mH9T8gaBGbAAyIIVgB2G7xG0GP98zMAQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/dot-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true + "node_modules/binary-search": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/binary-search/-/binary-search-1.3.6.tgz", + "integrity": "sha512-nbE1WxOTTrUWIfsfZ4aHGYu5DOuNkbxGokjV6Z2kxfJK3uaAb8zNK1muzOeipoLHZjInT4Br88BHpzevc681xA==" }, - "node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" }, - "node_modules/enhanced-resolve": { - "version": "5.16.1", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.16.1.tgz", - "integrity": "sha512-4U5pNsuDl0EhuZpq46M5xPslstkviJuhrdobaRDBk2Jy2KO37FDAJl4lb2KlNabxT0m4MTK2UHNrsAcphE8nyw==", + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" }, "engines": { - "node": ">=10.13.0" + "node": ">=8" } }, - "node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "devOptional": true, - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" } }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", "dependencies": { - "is-arrayish": "^0.2.1" + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" } }, - "node_modules/es-abstract": { - "version": "1.23.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", - "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", + "node_modules/cac": { + "version": "6.7.14", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", "dev": true, "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "arraybuffer.prototype.slice": "^1.0.3", - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "data-view-buffer": "^1.0.1", - "data-view-byte-length": "^1.0.1", - "data-view-byte-offset": "^1.0.0", "es-define-property": "^1.0.0", "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "es-set-tostringtag": "^2.0.3", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.6", + "function-bind": "^1.1.2", "get-intrinsic": "^1.2.4", - "get-symbol-description": "^1.0.2", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.3", - "has-symbols": "^1.0.3", - "hasown": "^2.0.2", - "internal-slot": "^1.0.7", - "is-array-buffer": "^3.0.4", - "is-callable": "^1.2.7", - "is-data-view": "^1.0.1", - "is-negative-zero": "^2.0.3", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.3", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.13", - "is-weakref": "^1.0.2", - "object-inspect": "^1.13.1", - "object-keys": "^1.1.1", - "object.assign": "^4.1.5", - "regexp.prototype.flags": "^1.5.2", - "safe-array-concat": "^1.1.2", - "safe-regex-test": "^1.0.3", - "string.prototype.trim": "^1.2.9", - "string.prototype.trimend": "^1.0.8", - "string.prototype.trimstart": "^1.0.8", - "typed-array-buffer": "^1.0.2", - "typed-array-byte-length": "^1.0.1", - "typed-array-byte-offset": "^1.0.2", - "typed-array-length": "^1.0.6", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.15" + "set-function-length": "^1.2.1" }, "engines": { "node": ">= 0.4" @@ -5929,1003 +7014,1106 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.4" - }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "engines": { - "node": ">= 0.4" + "node": ">=6" } }, - "node_modules/es-errors": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", - "dev": true, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "engines": { - "node": ">= 0.4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/es-iterator-helpers": { - "version": "1.0.19", - "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.19.tgz", - "integrity": "sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==", + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.3", - "es-errors": "^1.3.0", - "es-set-tostringtag": "^2.0.3", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "globalthis": "^1.0.3", - "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.3", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.7", - "iterator.prototype": "^1.1.2", - "safe-array-concat": "^1.1.2" - }, "engines": { - "node": ">= 0.4" + "node": ">= 6" } }, - "node_modules/es-object-atoms": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", - "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "node_modules/caniuse-lite": { + "version": "1.0.30001617", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001617.tgz", + "integrity": "sha512-mLyjzNI9I+Pix8zwcrpxEbGlfqOkF9kM3ptzmKNw5tizSyYwMe+nGLTqMK9cO+0E+Bh6TsBxNAaHWEM8xwSsmA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/ccount": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/chai": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/chai/-/chai-4.4.1.tgz", + "integrity": "sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==", "dev": true, "dependencies": { - "es-errors": "^1.3.0" + "assertion-error": "^1.1.0", + "check-error": "^1.0.3", + "deep-eql": "^4.1.3", + "get-func-name": "^2.0.2", + "loupe": "^2.3.6", + "pathval": "^1.1.1", + "type-detect": "^4.0.8" }, "engines": { - "node": ">= 0.4" + "node": ">=4" } }, - "node_modules/es-set-tostringtag": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", - "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "get-intrinsic": "^1.2.4", - "has-tostringtag": "^1.0.2", - "hasown": "^2.0.1" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/es-shim-unscopables": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", - "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "node_modules/character-entities": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", + "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-html4": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-legacy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-reference-invalid": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", + "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/charenc": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", + "integrity": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==", + "engines": { + "node": "*" + } + }, + "node_modules/check-error": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.3.tgz", + "integrity": "sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==", "dev": true, "dependencies": { - "hasown": "^2.0.0" + "get-func-name": "^2.0.2" + }, + "engines": { + "node": "*" } }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", "dev": true, "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" }, "engines": { - "node": ">= 0.4" + "node": ">= 8.10.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "node_modules/esbuild": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", - "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" + "dependencies": { + "is-glob": "^4.0.1" }, "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.20.2", - "@esbuild/android-arm": "0.20.2", - "@esbuild/android-arm64": "0.20.2", - "@esbuild/android-x64": "0.20.2", - "@esbuild/darwin-arm64": "0.20.2", - "@esbuild/darwin-x64": "0.20.2", - "@esbuild/freebsd-arm64": "0.20.2", - "@esbuild/freebsd-x64": "0.20.2", - "@esbuild/linux-arm": "0.20.2", - "@esbuild/linux-arm64": "0.20.2", - "@esbuild/linux-ia32": "0.20.2", - "@esbuild/linux-loong64": "0.20.2", - "@esbuild/linux-mips64el": "0.20.2", - "@esbuild/linux-ppc64": "0.20.2", - "@esbuild/linux-riscv64": "0.20.2", - "@esbuild/linux-s390x": "0.20.2", - "@esbuild/linux-x64": "0.20.2", - "@esbuild/netbsd-x64": "0.20.2", - "@esbuild/openbsd-x64": "0.20.2", - "@esbuild/sunos-x64": "0.20.2", - "@esbuild/win32-arm64": "0.20.2", - "@esbuild/win32-ia32": "0.20.2", - "@esbuild/win32-x64": "0.20.2" + "node": ">= 6" } }, - "node_modules/escalade": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "node_modules/classnames": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz", + "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==" + }, + "node_modules/clean-set": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/clean-set/-/clean-set-1.1.2.tgz", + "integrity": "sha512-cA8uCj0qSoG9e0kevyOWXwPaELRPVg5Pxp6WskLMwerx257Zfnh8Nl0JBH59d7wQzij2CK7qEfJQK3RjuKKIug==" + }, + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, "engines": { - "node": ">=6" + "node": ">=12" } }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "engines": { - "node": ">=10" + "node_modules/cliui/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "node_modules/cliui/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=8" } }, - "node_modules/eslint": { - "version": "8.42.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.42.0.tgz", - "integrity": "sha512-ulg9Ms6E1WPf67PHaEY4/6E2tEn5/f7FXGzr3t9cBMugOmf1INYvuUwwh1aXQN4MfJ6a5K2iNwP3w4AColvI9A==", - "dev": true, + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.4.0", - "@eslint/eslintrc": "^2.0.3", - "@eslint/js": "8.42.0", - "@humanwhocodes/config-array": "^0.11.10", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.0", - "eslint-visitor-keys": "^3.4.1", - "espree": "^9.5.2", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=10" }, "funding": { - "url": "https://opencollective.com/eslint" + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/eslint-config-next": { - "version": "14.2.3", - "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-14.2.3.tgz", - "integrity": "sha512-ZkNztm3Q7hjqvB1rRlOX8P9E/cXRL9ajRcs8jufEtwMfTVYRqnmtnaSu57QqHyBlovMuiB8LEzfLBkh5RYV6Fg==", - "dev": true, - "dependencies": { - "@next/eslint-plugin-next": "14.2.3", - "@rushstack/eslint-patch": "^1.3.3", - "@typescript-eslint/parser": "^5.4.2 || ^6.0.0 || 7.0.0 - 7.2.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-import-resolver-typescript": "^3.5.2", - "eslint-plugin-import": "^2.28.1", - "eslint-plugin-jsx-a11y": "^6.7.1", - "eslint-plugin-react": "^7.33.2", - "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" - }, + "node_modules/clsx": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", + "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/cm6-theme-basic-light": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/cm6-theme-basic-light/-/cm6-theme-basic-light-0.2.0.tgz", + "integrity": "sha512-1prg2gv44sYfpHscP26uLT/ePrh0mlmVwMSoSd3zYKQ92Ab3jPRLzyCnpyOCQLJbK+YdNs4HvMRqMNYdy4pMhA==", "peerDependencies": { - "eslint": "^7.23.0 || ^8.0.0", - "typescript": ">=3.3.1" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "@codemirror/language": "^6.0.0", + "@codemirror/state": "^6.0.0", + "@codemirror/view": "^6.0.0", + "@lezer/highlight": "^1.0.0" } }, - "node_modules/eslint-config-next/node_modules/@typescript-eslint/parser": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.2.0.tgz", - "integrity": "sha512-5FKsVcHTk6TafQKQbuIVkXq58Fnbkd2wDL4LB7AURN7RUOu1utVP+G8+6u3ZhEroW3DF6hyo3ZEXxgKgp4KeCg==", - "dev": true, + "node_modules/codemirror": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/codemirror/-/codemirror-6.0.1.tgz", + "integrity": "sha512-J8j+nZ+CdWmIeFIGXEFbFPtpiYacFMDR8GlHK3IyHQJMCaVRfGx9NT+Hxivv1ckLWPvNdZqndbr/7lVhrf/Svg==", "dependencies": { - "@typescript-eslint/scope-manager": "7.2.0", - "@typescript-eslint/types": "7.2.0", - "@typescript-eslint/typescript-estree": "7.2.0", - "@typescript-eslint/visitor-keys": "7.2.0", - "debug": "^4.3.4" + "@codemirror/autocomplete": "^6.0.0", + "@codemirror/commands": "^6.0.0", + "@codemirror/language": "^6.0.0", + "@codemirror/lint": "^6.0.0", + "@codemirror/search": "^6.0.0", + "@codemirror/state": "^6.0.0", + "@codemirror/view": "^6.0.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/color2k": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/color2k/-/color2k-2.0.3.tgz", + "integrity": "sha512-zW190nQTIoXcGCaU08DvVNFTmQhUpnJfVuAKfWqUQkflXKpaDdpaYoM0iluLS9lgJNHyBF58KKA2FBEwkD7wog==" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.56.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", - "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", "dev": true, - "dependencies": { - "debug": "^3.2.7", - "is-core-module": "^2.13.0", - "resolve": "^1.22.4" + "engines": { + "node": ">= 6" } }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, + "node_modules/compute-scroll-into-view": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-3.0.3.tgz", + "integrity": "sha512-nadqwNxghAGTamwIqQSG433W6OADZx2vCo3UXHNrzTRHK/htu+7+L0zhjEoaeaQVNAi3YgqWDv8+tzf0hRfR+A==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/confbox": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.1.7.tgz", + "integrity": "sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==", + "dev": true + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/copy-to-clipboard": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz", + "integrity": "sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==", "dependencies": { - "ms": "^2.1.1" + "toggle-selection": "^1.0.6" } }, - "node_modules/eslint-import-resolver-typescript": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.1.tgz", - "integrity": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==", - "dev": true, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", "dependencies": { - "debug": "^4.3.4", - "enhanced-resolve": "^5.12.0", - "eslint-module-utils": "^2.7.4", - "fast-glob": "^3.3.1", - "get-tsconfig": "^4.5.0", - "is-core-module": "^2.11.0", - "is-glob": "^4.0.3" + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" }, "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" - }, - "peerDependencies": { - "eslint": "*", - "eslint-plugin-import": "*" + "node": ">=10" } }, - "node_modules/eslint-module-utils": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz", - "integrity": "sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==", + "node_modules/cosmiconfig/node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/crelt": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/crelt/-/crelt-1.0.6.tgz", + "integrity": "sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==" + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, "dependencies": { - "debug": "^3.2.7" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, "engines": { - "node": ">=4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } + "node": ">= 8" } }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, + "node_modules/crypt": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", + "integrity": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==", + "engines": { + "node": "*" + } + }, + "node_modules/crypto-js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz", + "integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==" + }, + "node_modules/css-box-model": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/css-box-model/-/css-box-model-1.2.1.tgz", + "integrity": "sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==", "dependencies": { - "ms": "^2.1.1" + "tiny-invariant": "^1.0.6" } }, - "node_modules/eslint-plugin-import": { - "version": "2.29.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", - "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", + "node_modules/css-selector-parser": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/css-selector-parser/-/css-selector-parser-3.0.5.tgz", + "integrity": "sha512-3itoDFbKUNx1eKmVpYMFyqKX04Ww9osZ+dLgrk6GEv6KMVeXUhUnp4I5X+evw+u3ZxVU6RFXSSRxlTeMh8bA+g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ] + }, + "node_modules/css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==", + "dev": true + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", "dev": true, - "dependencies": { - "array-includes": "^3.1.7", - "array.prototype.findlastindex": "^1.2.3", - "array.prototype.flat": "^1.3.2", - "array.prototype.flatmap": "^1.3.2", - "debug": "^3.2.7", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.9", - "eslint-module-utils": "^2.8.0", - "hasown": "^2.0.0", - "is-core-module": "^2.13.1", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.fromentries": "^2.0.7", - "object.groupby": "^1.0.1", - "object.values": "^1.1.7", - "semver": "^6.3.1", - "tsconfig-paths": "^3.15.0" + "bin": { + "cssesc": "bin/cssesc" }, "engines": { "node": ">=4" - }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" } }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, + "node_modules/cssstyle": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-4.0.1.tgz", + "integrity": "sha512-8ZYiJ3A/3OkDd093CBT/0UKDWry7ak4BdPTFP2+QEP7cmhouyq/Up709ASSj2cK02BbZiMgk7kYjZNS4QP5qrQ==", + "devOptional": true, "dependencies": { - "ms": "^2.1.1" + "rrweb-cssom": "^0.6.0" + }, + "engines": { + "node": ">=18" } }, - "node_modules/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, + "node_modules/csstype": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz", + "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==" + }, + "node_modules/d": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.2.tgz", + "integrity": "sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==", "dependencies": { - "esutils": "^2.0.2" + "es5-ext": "^0.10.64", + "type": "^2.7.2" }, "engines": { - "node": ">=0.10.0" + "node": ">=0.12" } }, - "node_modules/eslint-plugin-jsx-a11y": { - "version": "6.8.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz", - "integrity": "sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==", - "dev": true, - "dependencies": { - "@babel/runtime": "^7.23.2", - "aria-query": "^5.3.0", - "array-includes": "^3.1.7", - "array.prototype.flatmap": "^1.3.2", - "ast-types-flow": "^0.0.8", - "axe-core": "=4.7.0", - "axobject-query": "^3.2.1", - "damerau-levenshtein": "^1.0.8", - "emoji-regex": "^9.2.2", - "es-iterator-helpers": "^1.0.15", - "hasown": "^2.0.0", - "jsx-ast-utils": "^3.3.5", - "language-tags": "^1.0.9", - "minimatch": "^3.1.2", - "object.entries": "^1.1.7", - "object.fromentries": "^2.0.7" + "node_modules/d3": { + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/d3/-/d3-7.9.0.tgz", + "integrity": "sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==", + "dependencies": { + "d3-array": "3", + "d3-axis": "3", + "d3-brush": "3", + "d3-chord": "3", + "d3-color": "3", + "d3-contour": "4", + "d3-delaunay": "6", + "d3-dispatch": "3", + "d3-drag": "3", + "d3-dsv": "3", + "d3-ease": "3", + "d3-fetch": "3", + "d3-force": "3", + "d3-format": "3", + "d3-geo": "3", + "d3-hierarchy": "3", + "d3-interpolate": "3", + "d3-path": "3", + "d3-polygon": "3", + "d3-quadtree": "3", + "d3-random": "3", + "d3-scale": "4", + "d3-scale-chromatic": "3", + "d3-selection": "3", + "d3-shape": "3", + "d3-time": "3", + "d3-time-format": "4", + "d3-timer": "3", + "d3-transition": "3", + "d3-zoom": "3" }, "engines": { - "node": ">=4.0" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + "node": ">=12" } }, - "node_modules/eslint-plugin-react": { - "version": "7.34.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.34.1.tgz", - "integrity": "sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==", - "dev": true, + "node_modules/d3-array": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", + "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", "dependencies": { - "array-includes": "^3.1.7", - "array.prototype.findlast": "^1.2.4", - "array.prototype.flatmap": "^1.3.2", - "array.prototype.toreversed": "^1.1.2", - "array.prototype.tosorted": "^1.1.3", - "doctrine": "^2.1.0", - "es-iterator-helpers": "^1.0.17", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.7", - "object.fromentries": "^2.0.7", - "object.hasown": "^1.1.3", - "object.values": "^1.1.7", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.5", - "semver": "^6.3.1", - "string.prototype.matchall": "^4.0.10" + "internmap": "1 - 2" }, "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + "node": ">=12" } }, - "node_modules/eslint-plugin-react-hooks": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz", - "integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==", - "dev": true, + "node_modules/d3-axis": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz", + "integrity": "sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==", "engines": { - "node": ">=10" - }, - "peerDependencies": { - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + "node": ">=12" } }, - "node_modules/eslint-plugin-react/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, + "node_modules/d3-brush": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz", + "integrity": "sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==", "dependencies": { - "esutils": "^2.0.2" + "d3-dispatch": "1 - 3", + "d3-drag": "2 - 3", + "d3-interpolate": "1 - 3", + "d3-selection": "3", + "d3-transition": "3" }, "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.5", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", - "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", - "dev": true, + "node_modules/d3-chord": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-chord/-/d3-chord-3.0.1.tgz", + "integrity": "sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==", "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" + "d3-path": "1 - 3" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=12" } }, - "node_modules/eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", - "dev": true, + "node_modules/d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-contour": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz", + "integrity": "sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==", "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" + "d3-array": "^3.2.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=12" + } + }, + "node_modules/d3-delaunay": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.4.tgz", + "integrity": "sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==", + "dependencies": { + "delaunator": "5" }, - "funding": { - "url": "https://opencollective.com/eslint" + "engines": { + "node": ">=12" } }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true, + "node_modules/d3-dispatch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz", + "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==", "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": ">=12" } }, - "node_modules/espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", - "dev": true, + "node_modules/d3-drag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz", + "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==", "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" + "d3-dispatch": "1 - 3", + "d3-selection": "3" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": ">=12" } }, - "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", - "dev": true, + "node_modules/d3-dsv": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-2.0.0.tgz", + "integrity": "sha512-E+Pn8UJYx9mViuIUkoc93gJGGYut6mSDKy2+XaPwccwkRGlR+LO97L2VCCRjQivTwLHkSnAJG7yo00BWY6QM+w==", "dependencies": { - "estraverse": "^5.1.0" + "commander": "2", + "iconv-lite": "0.4", + "rw": "1" }, - "engines": { - "node": ">=0.10" + "bin": { + "csv2json": "bin/dsv2json", + "csv2tsv": "bin/dsv2dsv", + "dsv2dsv": "bin/dsv2dsv", + "dsv2json": "bin/dsv2json", + "json2csv": "bin/json2dsv", + "json2dsv": "bin/json2dsv", + "json2tsv": "bin/json2dsv", + "tsv2csv": "bin/dsv2dsv", + "tsv2json": "bin/dsv2json" } }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, + "node_modules/d3-dsv/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/d3-dsv/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dependencies": { - "estraverse": "^5.2.0" + "safer-buffer": ">= 2.1.2 < 3" }, "engines": { - "node": ">=4.0" + "node": ">=0.10.0" } }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, + "node_modules/d3-ease": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", + "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", "engines": { - "node": ">=4.0" + "node": ">=12" } }, - "node_modules/estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "dev": true, + "node_modules/d3-fetch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz", + "integrity": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==", "dependencies": { - "@types/estree": "^1.0.0" + "d3-dsv": "1 - 3" + }, + "engines": { + "node": ">=12" } }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, + "node_modules/d3-force": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz", + "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-quadtree": "1 - 3", + "d3-timer": "1 - 3" + }, "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/event-target-shim": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", - "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "node_modules/d3-format": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", + "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", "engines": { - "node": ">=6" + "node": ">=12" } }, - "node_modules/eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - }, - "node_modules/execa": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", - "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", - "dev": true, + "node_modules/d3-geo": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz", + "integrity": "sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==", "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^8.0.1", - "human-signals": "^5.0.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^3.0.0" + "d3-array": "2.5.0 - 3" }, "engines": { - "node": ">=16.17" + "node": ">=12" + } + }, + "node_modules/d3-hierarchy": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz", + "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-interpolate": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", + "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", + "dependencies": { + "d3-color": "1 - 3" }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "engines": { + "node": ">=12" } }, - "node_modules/exenv": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz", - "integrity": "sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==" + "node_modules/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", + "engines": { + "node": ">=12" + } }, - "node_modules/expr-eval": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/expr-eval/-/expr-eval-2.0.2.tgz", - "integrity": "sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==" + "node_modules/d3-polygon": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz", + "integrity": "sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==", + "engines": { + "node": ">=12" + } }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true + "node_modules/d3-quadtree": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz", + "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==", + "engines": { + "node": ">=12" + } }, - "node_modules/fast-equals": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-5.0.1.tgz", - "integrity": "sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==", + "node_modules/d3-random": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz", + "integrity": "sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==", "engines": { - "node": ">=6.0.0" + "node": ">=12" } }, - "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", - "dev": true, + "node_modules/d3-scale": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", + "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "d3-array": "2.10.0 - 3", + "d3-format": "1 - 3", + "d3-interpolate": "1.2.0 - 3", + "d3-time": "2.1.1 - 3", + "d3-time-format": "2 - 4" }, "engines": { - "node": ">=8.6.0" + "node": ">=12" } }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, + "node_modules/d3-scale-chromatic": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz", + "integrity": "sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==", "dependencies": { - "is-glob": "^4.0.1" + "d3-color": "1 - 3", + "d3-interpolate": "1 - 3" }, "engines": { - "node": ">= 6" + "node": ">=12" } }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true + "node_modules/d3-selection": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz", + "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==", + "engines": { + "node": ">=12" + } }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true + "node_modules/d3-shape": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", + "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", + "dependencies": { + "d3-path": "^3.1.0" + }, + "engines": { + "node": ">=12" + } }, - "node_modules/fastq": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", - "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", - "dev": true, + "node_modules/d3-time": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", + "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", "dependencies": { - "reusify": "^1.0.4" + "d3-array": "2 - 3" + }, + "engines": { + "node": ">=12" } }, - "node_modules/faye-websocket": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", - "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "node_modules/d3-time-format": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", + "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", "dependencies": { - "websocket-driver": ">=0.5.1" + "d3-time": "1 - 3" }, "engines": { - "node": ">=0.8.0" + "node": ">=12" } }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, + "node_modules/d3-timer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", + "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-transition": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz", + "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==", "dependencies": { - "flat-cache": "^3.0.4" + "d3-color": "1 - 3", + "d3-dispatch": "1 - 3", + "d3-ease": "1 - 3", + "d3-interpolate": "1 - 3", + "d3-timer": "1 - 3" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">=12" + }, + "peerDependencies": { + "d3-selection": "2 - 3" } }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, + "node_modules/d3-zoom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz", + "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==", "dependencies": { - "to-regex-range": "^5.0.1" + "d3-dispatch": "1 - 3", + "d3-drag": "2 - 3", + "d3-interpolate": "1 - 3", + "d3-selection": "2 - 3", + "d3-transition": "2 - 3" }, "engines": { - "node": ">=8" + "node": ">=12" } }, - "node_modules/find-root": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", - "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" + "node_modules/d3/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "engines": { + "node": ">= 10" + } }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, + "node_modules/d3/node_modules/d3-dsv": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz", + "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==", "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" + "commander": "7", + "iconv-lite": "0.6", + "rw": "1" }, - "engines": { - "node": ">=10" + "bin": { + "csv2json": "bin/dsv2json.js", + "csv2tsv": "bin/dsv2dsv.js", + "dsv2dsv": "bin/dsv2dsv.js", + "dsv2json": "bin/dsv2json.js", + "json2csv": "bin/json2dsv.js", + "json2dsv": "bin/json2dsv.js", + "json2tsv": "bin/json2dsv.js", + "tsv2csv": "bin/dsv2dsv.js", + "tsv2json": "bin/dsv2json.js" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=12" } }, - "node_modules/firebase": { - "version": "10.12.1", - "resolved": "https://registry.npmjs.org/firebase/-/firebase-10.12.1.tgz", - "integrity": "sha512-B/R3BX26OAgreA64JN0lYspYRHMS36E19/Sv9WsyQu1RqPGBzWkBlt1RW6+38SdtMDlAnk3ibKL/SRSQHb1xRw==", - "dependencies": { - "@firebase/analytics": "0.10.4", - "@firebase/analytics-compat": "0.2.10", - "@firebase/app": "0.10.4", - "@firebase/app-check": "0.8.4", - "@firebase/app-check-compat": "0.3.11", - "@firebase/app-compat": "0.2.34", - "@firebase/app-types": "0.9.2", - "@firebase/auth": "1.7.3", - "@firebase/auth-compat": "0.5.8", - "@firebase/database": "1.0.5", - "@firebase/database-compat": "1.0.5", - "@firebase/firestore": "4.6.3", - "@firebase/firestore-compat": "0.3.32", - "@firebase/functions": "0.11.5", - "@firebase/functions-compat": "0.3.11", - "@firebase/installations": "0.6.7", - "@firebase/installations-compat": "0.2.7", - "@firebase/messaging": "0.12.9", - "@firebase/messaging-compat": "0.2.9", - "@firebase/performance": "0.6.7", - "@firebase/performance-compat": "0.2.7", - "@firebase/remote-config": "0.4.7", - "@firebase/remote-config-compat": "0.2.7", - "@firebase/storage": "0.12.5", - "@firebase/storage-compat": "0.3.8", - "@firebase/util": "1.9.6", - "@firebase/vertexai-preview": "0.0.1" - } + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "dev": true }, - "node_modules/firebase/node_modules/@firebase/auth": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/@firebase/auth/-/auth-1.7.3.tgz", - "integrity": "sha512-RiU1PjziOxLuyswtYtLK2qSjHIQJQGCk1h986SUFRbMQfzLXbQg8ZgXwxac1UAfDOzgzqPNCXhBuIlSK2UomoQ==", + "node_modules/data-urls": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-5.0.0.tgz", + "integrity": "sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==", + "devOptional": true, "dependencies": { - "@firebase/component": "0.6.7", - "@firebase/logger": "0.4.2", - "@firebase/util": "1.9.6", - "tslib": "^2.1.0", - "undici": "5.28.4" - }, - "peerDependencies": { - "@firebase/app": "0.x", - "@react-native-async-storage/async-storage": "^1.18.1" + "whatwg-mimetype": "^4.0.0", + "whatwg-url": "^14.0.0" }, - "peerDependenciesMeta": { - "@react-native-async-storage/async-storage": { - "optional": true - } - } - }, - "node_modules/flat": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", - "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", - "bin": { - "flat": "cli.js" + "engines": { + "node": ">=18" } }, - "node_modules/flat-cache": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", - "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", - "dev": true, + "node_modules/data-urls/node_modules/tr46": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-5.0.0.tgz", + "integrity": "sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==", + "devOptional": true, "dependencies": { - "flatted": "^3.2.9", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" + "punycode": "^2.3.1" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">=18" } }, - "node_modules/flatted": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", - "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", - "dev": true + "node_modules/data-urls/node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "devOptional": true, + "engines": { + "node": ">=12" + } }, - "node_modules/focus-lock": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/focus-lock/-/focus-lock-1.3.5.tgz", - "integrity": "sha512-QFaHbhv9WPUeLYBDe/PAuLKJ4Dd9OPvKs9xZBr3yLXnUrDNaVXKu2baDBXe3naPY30hgHYSsf2JW4jzas2mDEQ==", + "node_modules/data-urls/node_modules/whatwg-url": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.0.0.tgz", + "integrity": "sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==", + "devOptional": true, "dependencies": { - "tslib": "^2.0.3" + "tr46": "^5.0.0", + "webidl-conversions": "^7.0.0" }, "engines": { - "node": ">=10" + "node": ">=18" } }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "node_modules/data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", "dev": true, "dependencies": { - "is-callable": "^1.1.3" + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/foreground-child": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", - "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "node_modules/data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", "dev": true, "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" }, "engines": { - "node": ">=14" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "node_modules/data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "dev": true, "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" }, "engines": { - "node": ">= 6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/form-data-encoder": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-1.7.2.tgz", - "integrity": "sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==" - }, - "node_modules/formdata-node": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-4.4.1.tgz", - "integrity": "sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==", + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dependencies": { - "node-domexception": "1.0.0", - "web-streams-polyfill": "4.0.0-beta.3" + "ms": "2.1.2" }, "engines": { - "node": ">= 12.20" + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/formdata-node/node_modules/web-streams-polyfill": { - "version": "4.0.0-beta.3", - "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz", - "integrity": "sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==", + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", "engines": { - "node": ">= 14" + "node": ">=0.10.0" } }, - "node_modules/formidable": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/formidable/-/formidable-3.5.1.tgz", - "integrity": "sha512-WJWKelbRHN41m5dumb0/k8TeAx7Id/y3a+Z7QfhxP/htI9Js5zYaEDtG8uMgG0vM0lOlqnmjE99/kfpOYi/0Og==", + "node_modules/decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", + "devOptional": true + }, + "node_modules/decimal.js-light": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz", + "integrity": "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==" + }, + "node_modules/decode-named-character-reference": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", + "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", "dependencies": { - "dezalgo": "^1.0.4", - "hexoid": "^1.0.0", - "once": "^1.4.0" + "character-entities": "^2.0.0" }, "funding": { - "url": "https://ko-fi.com/tunnckoCore/commissions" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/framer-motion": { - "version": "11.2.4", - "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-11.2.4.tgz", - "integrity": "sha512-D+EXd0lspaZijv3BJhAcSsyGz+gnvoEdnf+QWkPZdhoFzbeX/2skrH9XSVFb0osgUnCajW8x1frjhLuKwa/Reg==", + "node_modules/deep-eql": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.3.tgz", + "integrity": "sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==", + "dev": true, "dependencies": { - "tslib": "^2.4.0" - }, - "peerDependencies": { - "@emotion/is-prop-valid": "*", - "react": "^18.0.0", - "react-dom": "^18.0.0" + "type-detect": "^4.0.0" }, - "peerDependenciesMeta": { - "@emotion/is-prop-valid": { - "optional": true - }, - "react": { - "optional": true - }, - "react-dom": { - "optional": true - } + "engines": { + "node": ">=6" } }, - "node_modules/framesync": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/framesync/-/framesync-6.1.2.tgz", - "integrity": "sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g==", - "dependencies": { - "tslib": "2.4.0" - } - }, - "node_modules/framesync/node_modules/tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" }, "engines": { "node": ">= 0.4" @@ -6934,298 +8122,384 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node_modules/delaunator": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-5.0.1.tgz", + "integrity": "sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==", + "dependencies": { + "robust-predicates": "^3.0.2" } }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", "engines": { - "node": "6.* || 8.* || >= 10.*" + "node": ">=0.4.0" } }, - "node_modules/get-func-name": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz", - "integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==", - "dev": true, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", "engines": { - "node": "*" + "node": ">=6" } }, - "node_modules/get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - "dev": true, + "node_modules/detect-node-es": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz", + "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==" + }, + "node_modules/devlop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", + "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" - }, - "engines": { - "node": ">= 0.4" + "dequal": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/get-nonce": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz", - "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==", - "engines": { - "node": ">=6" + "node_modules/dezalgo": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.4.tgz", + "integrity": "sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==", + "dependencies": { + "asap": "^2.0.0", + "wrappy": "1" } }, - "node_modules/get-stream": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", - "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", - "dev": true, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true + }, + "node_modules/diff": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", + "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.3.1" } }, - "node_modules/get-symbol-description": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", - "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", "dev": true, - "dependencies": { - "call-bind": "^1.0.5", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/get-tsconfig": { - "version": "4.7.5", - "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.5.tgz", - "integrity": "sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==", - "dev": true, + "node_modules/digest-fetch": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/digest-fetch/-/digest-fetch-1.3.0.tgz", + "integrity": "sha512-CGJuv6iKNM7QyZlM2T3sPAdZWd/p9zQiRNS9G+9COUCwzWFTs0Xp8NF5iePx7wtvhDykReiRRrSeNb4oMmB8lA==", "dependencies": { - "resolve-pkg-maps": "^1.0.0" - }, - "funding": { - "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + "base-64": "^0.1.0", + "md5": "^2.3.0" } }, - "node_modules/glob": { - "version": "10.3.10", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" + "path-type": "^4.0.0" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=8" + } + }, + "node_modules/direction": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/direction/-/direction-2.0.1.tgz", + "integrity": "sha512-9S6m9Sukh1cZNknO1CWAr2QAWsbKLafQiyM5gZ7VgXHeuaoUwffKN4q6NC4A/Mf9iiPlOXQEKW/Mv/mh9/3YFA==", + "bin": { + "direction": "cli.js" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, "dependencies": { - "is-glob": "^4.0.3" + "esutils": "^2.0.2" }, "engines": { - "node": ">=10.13.0" + "node": ">=6.0.0" } }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + "node_modules/dom-accessibility-api": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.6.3.tgz", + "integrity": "sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==", + "dev": true }, - "node_modules/glob/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, + "node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", "dependencies": { - "balanced-match": "^1.0.0" + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" } }, - "node_modules/glob/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", - "dev": true, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", "dependencies": { - "brace-expansion": "^2.0.1" - }, + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dotenv": { + "version": "16.4.5", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", + "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://dotenvx.com" } }, - "node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "dev": true, + "node_modules/downshift": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/downshift/-/downshift-7.6.2.tgz", + "integrity": "sha512-iOv+E1Hyt3JDdL9yYcOgW7nZ7GQ2Uz6YbggwXvKUSleetYhU2nXD482Rz6CzvM4lvI1At34BYruKAL4swRGxaA==", "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" + "@babel/runtime": "^7.14.8", + "compute-scroll-into-view": "^2.0.4", + "prop-types": "^15.7.2", + "react-is": "^17.0.2", + "tslib": "^2.3.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "react": ">=16.12.0" } }, - "node_modules/globalthis": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", - "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "node_modules/downshift/node_modules/compute-scroll-into-view": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-2.0.4.tgz", + "integrity": "sha512-y/ZA3BGnxoM/QHHQ2Uy49CLtnWPbt4tTPpEEZiEmmiWBFKjej7nEyH8Ryz54jH0MLXflUYA3Er2zUxPSJu5R+g==" + }, + "node_modules/downshift/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/enhanced-resolve": { + "version": "5.16.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.16.1.tgz", + "integrity": "sha512-4U5pNsuDl0EhuZpq46M5xPslstkviJuhrdobaRDBk2Jy2KO37FDAJl4lb2KlNabxT0m4MTK2UHNrsAcphE8nyw==", "dev": true, "dependencies": { - "define-properties": "^1.2.1", - "gopd": "^1.0.1" + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=10.13.0" } }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", "engines": { - "node": ">=10" + "node": ">=0.12" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-abstract": { + "version": "1.23.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", + "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", "dev": true, "dependencies": { - "get-intrinsic": "^1.1.3" + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true - }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" } }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", "dev": true, "engines": { - "node": ">=8" + "node": ">= 0.4" } }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "node_modules/es-iterator-helpers": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.19.tgz", + "integrity": "sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==", "dev": true, "dependencies": { - "es-define-property": "^1.0.0" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.0.3", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "globalthis": "^1.0.3", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.7", + "iterator.prototype": "^1.1.2", + "safe-array-concat": "^1.1.2" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">= 0.4" } }, - "node_modules/has-proto": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "node_modules/es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", "dev": true, + "dependencies": { + "es-errors": "^1.3.0" + }, "engines": { "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "node_modules/es-set-tostringtag": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" + }, "engines": { "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-tostringtag": { + "node_modules/es-shim-unscopables": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", - "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", "dev": true, "dependencies": { - "has-symbols": "^1.0.3" + "hasown": "^2.0.0" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -7234,923 +8508,2604 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "node_modules/es5-ext": { + "version": "0.10.64", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.64.tgz", + "integrity": "sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==", + "hasInstallScript": true, "dependencies": { - "function-bind": "^1.1.2" + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.3", + "esniff": "^2.0.1", + "next-tick": "^1.1.0" }, "engines": { - "node": ">= 0.4" + "node": ">=0.10" } }, - "node_modules/hexoid": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/hexoid/-/hexoid-1.0.0.tgz", - "integrity": "sha512-QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g==", - "engines": { - "node": ">=8" - } - }, - "node_modules/hoist-non-react-statics": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", - "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "node_modules/es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", "dependencies": { - "react-is": "^16.7.0" + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" } }, - "node_modules/html-encoding-sniffer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz", - "integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==", - "devOptional": true, + "node_modules/es6-symbol": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.4.tgz", + "integrity": "sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==", "dependencies": { - "whatwg-encoding": "^3.1.1" + "d": "^1.0.2", + "ext": "^1.7.0" }, "engines": { - "node": ">=18" + "node": ">=0.12" } }, - "node_modules/http-parser-js": { - "version": "0.5.8", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", - "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" - }, - "node_modules/http-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", - "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", - "devOptional": true, - "dependencies": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" + "node_modules/esbuild": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", + "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" }, "engines": { - "node": ">= 14" - } - }, - "node_modules/https-proxy-agent": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz", - "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==", - "devOptional": true, - "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" + "node": ">=12" }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/human-signals": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", - "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", - "dev": true, - "engines": { - "node": ">=16.17.0" - } - }, - "node_modules/humanize-ms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", - "dependencies": { - "ms": "^2.0.0" + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.20.2", + "@esbuild/android-arm": "0.20.2", + "@esbuild/android-arm64": "0.20.2", + "@esbuild/android-x64": "0.20.2", + "@esbuild/darwin-arm64": "0.20.2", + "@esbuild/darwin-x64": "0.20.2", + "@esbuild/freebsd-arm64": "0.20.2", + "@esbuild/freebsd-x64": "0.20.2", + "@esbuild/linux-arm": "0.20.2", + "@esbuild/linux-arm64": "0.20.2", + "@esbuild/linux-ia32": "0.20.2", + "@esbuild/linux-loong64": "0.20.2", + "@esbuild/linux-mips64el": "0.20.2", + "@esbuild/linux-ppc64": "0.20.2", + "@esbuild/linux-riscv64": "0.20.2", + "@esbuild/linux-s390x": "0.20.2", + "@esbuild/linux-x64": "0.20.2", + "@esbuild/netbsd-x64": "0.20.2", + "@esbuild/openbsd-x64": "0.20.2", + "@esbuild/sunos-x64": "0.20.2", + "@esbuild/win32-arm64": "0.20.2", + "@esbuild/win32-ia32": "0.20.2", + "@esbuild/win32-x64": "0.20.2" } }, - "node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "devOptional": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/idb": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz", - "integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==" + "node_modules/escape-carriage": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/escape-carriage/-/escape-carriage-1.3.1.tgz", + "integrity": "sha512-GwBr6yViW3ttx1kb7/Oh+gKQ1/TrhYwxKqVmg5gS+BK+Qe2KrOa/Vh7w3HPBvgGf0LfcDGoY9I6NHKoA5Hozhw==" }, - "node_modules/ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", - "devOptional": true, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "engines": { - "node": ">= 4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "node_modules/eslint": { + "version": "8.42.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.42.0.tgz", + "integrity": "sha512-ulg9Ms6E1WPf67PHaEY4/6E2tEn5/f7FXGzr3t9cBMugOmf1INYvuUwwh1aXQN4MfJ6a5K2iNwP3w4AColvI9A==", + "dev": true, "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.4.0", + "@eslint/eslintrc": "^2.0.3", + "@eslint/js": "8.42.0", + "@humanwhocodes/config-array": "^0.11.10", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.0", + "eslint-visitor-keys": "^3.4.1", + "espree": "^9.5.2", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" }, "engines": { - "node": ">=6" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://opencollective.com/eslint" } }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "node_modules/eslint-config-next": { + "version": "14.2.3", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-14.2.3.tgz", + "integrity": "sha512-ZkNztm3Q7hjqvB1rRlOX8P9E/cXRL9ajRcs8jufEtwMfTVYRqnmtnaSu57QqHyBlovMuiB8LEzfLBkh5RYV6Fg==", "dev": true, - "engines": { - "node": ">=0.8.19" + "dependencies": { + "@next/eslint-plugin-next": "14.2.3", + "@rushstack/eslint-patch": "^1.3.3", + "@typescript-eslint/parser": "^5.4.2 || ^6.0.0 || 7.0.0 - 7.2.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-import-resolver-typescript": "^3.5.2", + "eslint-plugin-import": "^2.28.1", + "eslint-plugin-jsx-a11y": "^6.7.1", + "eslint-plugin-react": "^7.33.2", + "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" + }, + "peerDependencies": { + "eslint": "^7.23.0 || ^8.0.0", + "typescript": ">=3.3.1" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "node_modules/eslint-config-next/node_modules/@typescript-eslint/parser": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.2.0.tgz", + "integrity": "sha512-5FKsVcHTk6TafQKQbuIVkXq58Fnbkd2wDL4LB7AURN7RUOu1utVP+G8+6u3ZhEroW3DF6hyo3ZEXxgKgp4KeCg==", "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "7.2.0", + "@typescript-eslint/types": "7.2.0", + "@typescript-eslint/typescript-estree": "7.2.0", + "@typescript-eslint/visitor-keys": "7.2.0", + "debug": "^4.3.4" + }, "engines": { - "node": ">=8" + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.56.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", "dev": true, "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" } }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } }, - "node_modules/internal-slot": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", - "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "node_modules/eslint-import-resolver-typescript": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.1.tgz", + "integrity": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==", "dev": true, "dependencies": { - "es-errors": "^1.3.0", - "hasown": "^2.0.0", - "side-channel": "^1.0.4" + "debug": "^4.3.4", + "enhanced-resolve": "^5.12.0", + "eslint-module-utils": "^2.7.4", + "fast-glob": "^3.3.1", + "get-tsconfig": "^4.5.0", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3" }, "engines": { - "node": ">= 0.4" + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" + }, + "peerDependencies": { + "eslint": "*", + "eslint-plugin-import": "*" } }, - "node_modules/internmap": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", - "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", + "node_modules/eslint-module-utils": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz", + "integrity": "sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==", + "dev": true, + "dependencies": { + "debug": "^3.2.7" + }, "engines": { - "node": ">=12" + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } } }, - "node_modules/invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, "dependencies": { - "loose-envify": "^1.0.0" + "ms": "^2.1.1" } }, - "node_modules/is-any-array": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-any-array/-/is-any-array-2.0.1.tgz", - "integrity": "sha512-UtilS7hLRu++wb/WBAw9bNuP1Eg04Ivn1vERJck8zJthEvXCBEBpGR/33u/xLKWEQf95803oalHrVDptcAvFdQ==" - }, - "node_modules/is-array-buffer": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", - "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "node_modules/eslint-plugin-import": { + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", + "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1" + "array-includes": "^3.1.7", + "array.prototype.findlastindex": "^1.2.3", + "array.prototype.flat": "^1.3.2", + "array.prototype.flatmap": "^1.3.2", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.8.0", + "hasown": "^2.0.0", + "is-core-module": "^2.13.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.7", + "object.groupby": "^1.0.1", + "object.values": "^1.1.7", + "semver": "^6.3.1", + "tsconfig-paths": "^3.15.0" }, "engines": { - "node": ">= 0.4" + "node": ">=4" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" } }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" - }, - "node_modules/is-async-function": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", - "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "ms": "^2.1.1" } }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, "dependencies": { - "has-bigints": "^1.0.1" + "esutils": "^2.0.2" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.8.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz", + "integrity": "sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==", "dev": true, "dependencies": { - "binary-extensions": "^2.0.0" + "@babel/runtime": "^7.23.2", + "aria-query": "^5.3.0", + "array-includes": "^3.1.7", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "=4.7.0", + "axobject-query": "^3.2.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "es-iterator-helpers": "^1.0.15", + "hasown": "^2.0.0", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.entries": "^1.1.7", + "object.fromentries": "^2.0.7" }, "engines": { - "node": ">=8" + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" } }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "node_modules/eslint-plugin-react": { + "version": "7.34.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.34.1.tgz", + "integrity": "sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "array-includes": "^3.1.7", + "array.prototype.findlast": "^1.2.4", + "array.prototype.flatmap": "^1.3.2", + "array.prototype.toreversed": "^1.1.2", + "array.prototype.tosorted": "^1.1.3", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.0.17", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.7", + "object.fromentries": "^2.0.7", + "object.hasown": "^1.1.3", + "object.values": "^1.1.7", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.5", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.10" }, "engines": { - "node": ">= 0.4" + "node": ">=4" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" } }, - "node_modules/is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz", + "integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==", "dev": true, "engines": { - "node": ">= 0.4" + "node": ">=10" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" } }, - "node_modules/is-core-module": { - "version": "2.13.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", - "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, "dependencies": { - "hasown": "^2.0.0" + "esutils": "^2.0.2" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/is-data-view": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", - "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", "dev": true, "dependencies": { - "is-typed-array": "^1.1.13" + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" }, - "engines": { - "node": ">= 0.4" + "bin": { + "resolve": "bin/resolve" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", "dev": true, "dependencies": { - "has-tostringtag": "^1.0.0" + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" }, "engines": { - "node": ">= 0.4" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://opencollective.com/eslint" } }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-finalizationregistry": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", - "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://opencollective.com/eslint" } }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "node_modules/esniff": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/esniff/-/esniff-2.0.1.tgz", + "integrity": "sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==", + "dependencies": { + "d": "^1.0.1", + "es5-ext": "^0.10.62", + "event-emitter": "^0.3.5", + "type": "^2.7.2" + }, "engines": { - "node": ">=8" + "node": ">=0.10" } }, - "node_modules/is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", "dev": true, "dependencies": { - "has-tostringtag": "^1.0.0" + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" }, "engines": { - "node": ">= 0.4" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://opencollective.com/eslint" } }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", "dev": true, "dependencies": { - "is-extglob": "^2.1.1" + "estraverse": "^5.1.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=0.10" } }, - "node_modules/is-map": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", - "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, - "engines": { - "node": ">= 0.4" + "dependencies": { + "estraverse": "^5.2.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=4.0" } }, - "node_modules/is-negative-zero": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", - "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=4.0" } }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "engines": { - "node": ">=0.12.0" + "node_modules/estree-util-is-identifier-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz", + "integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dev": true, + "node_modules/estree-util-visit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-2.0.0.tgz", + "integrity": "sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==", "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" + "@types/estree-jsx": "^1.0.0", + "@types/unist": "^3.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/is-path-inside": { + "node_modules/estree-walker": { "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-potential-custom-element-name": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", - "devOptional": true - }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "@types/estree": "^1.0.0" } }, - "node_modules/is-set": { + "node_modules/esutils": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", - "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=0.10.0" } }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", - "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", - "dev": true, + "node_modules/event-emitter": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", + "integrity": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==", "dependencies": { - "call-bind": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "d": "1", + "es5-ext": "~0.10.14" } }, - "node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=6" } }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", "dev": true, "dependencies": { - "has-symbols": "^1.0.2" + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=16.17" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/is-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", - "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", - "dev": true, + "node_modules/exenv": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz", + "integrity": "sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==" + }, + "node_modules/expr-eval": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expr-eval/-/expr-eval-2.0.2.tgz", + "integrity": "sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==" + }, + "node_modules/ext": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", + "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", "dependencies": { - "which-typed-array": "^1.1.14" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "^2.7.2" } }, - "node_modules/is-weakmap": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", - "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", - "dev": true, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-equals": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-5.0.1.tgz", + "integrity": "sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==", "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=6.0.0" } }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", "dev": true, "dependencies": { - "call-bind": "^1.0.2" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=8.6.0" } }, - "node_modules/is-weakset": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", - "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "dependencies": { - "call-bind": "^1.0.7", - "get-intrinsic": "^1.2.4" + "is-glob": "^4.0.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 6" } }, - "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, - "node_modules/iterator.prototype": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", - "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", "dev": true, "dependencies": { - "define-properties": "^1.2.1", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "reflect.getprototypeof": "^1.0.4", - "set-function-name": "^2.0.1" + "reusify": "^1.0.4" } }, - "node_modules/jackspeak": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", - "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", - "dev": true, + "node_modules/fault": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fault/-/fault-2.0.1.tgz", + "integrity": "sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==", "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, - "engines": { - "node": ">=14" + "format": "^0.2.0" }, "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/jiti": { - "version": "1.21.0", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", - "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", - "dev": true, - "bin": { - "jiti": "bin/jiti.js" + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" } }, - "node_modules/jquery": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.7.1.tgz", - "integrity": "sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==" - }, - "node_modules/js-cookie": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.1.tgz", - "integrity": "sha512-+0rgsUXZu4ncpPxRL+lNEptWMOWl9etvPHc/koSRp6MPwpRYAhmk0dUG00J4bxVV3r9uUzfo24wW0knS07SKSw==", + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, "engines": { - "node": ">=12" + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/js-tiktoken": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/js-tiktoken/-/js-tiktoken-1.0.12.tgz", - "integrity": "sha512-L7wURW1fH9Qaext0VzaUDpFGVQgjkdE3Dgsy9/+yXyGEpBKnylTd0mU0bfbNkKDlXRb6TEsZkwuflu1B8uQbJQ==", + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, "dependencies": { - "base64-js": "^1.5.1" + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + "node_modules/find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, "dependencies": { - "argparse": "^2.0.1" + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jsdom": { - "version": "24.0.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-24.0.0.tgz", - "integrity": "sha512-UDS2NayCvmXSXVP6mpTj+73JnNQadZlr9N68189xib2tx5Mls7swlTNao26IoHv46BZJFvXygyRtyXd1feAk1A==", - "devOptional": true, + "node_modules/firebase": { + "version": "10.12.1", + "resolved": "https://registry.npmjs.org/firebase/-/firebase-10.12.1.tgz", + "integrity": "sha512-B/R3BX26OAgreA64JN0lYspYRHMS36E19/Sv9WsyQu1RqPGBzWkBlt1RW6+38SdtMDlAnk3ibKL/SRSQHb1xRw==", "dependencies": { - "cssstyle": "^4.0.1", - "data-urls": "^5.0.0", - "decimal.js": "^10.4.3", - "form-data": "^4.0.0", - "html-encoding-sniffer": "^4.0.0", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.2", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.7", - "parse5": "^7.1.2", - "rrweb-cssom": "^0.6.0", - "saxes": "^6.0.0", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.1.3", - "w3c-xmlserializer": "^5.0.0", - "webidl-conversions": "^7.0.0", - "whatwg-encoding": "^3.1.1", - "whatwg-mimetype": "^4.0.0", - "whatwg-url": "^14.0.0", - "ws": "^8.16.0", - "xml-name-validator": "^5.0.0" - }, - "engines": { - "node": ">=18" + "@firebase/analytics": "0.10.4", + "@firebase/analytics-compat": "0.2.10", + "@firebase/app": "0.10.4", + "@firebase/app-check": "0.8.4", + "@firebase/app-check-compat": "0.3.11", + "@firebase/app-compat": "0.2.34", + "@firebase/app-types": "0.9.2", + "@firebase/auth": "1.7.3", + "@firebase/auth-compat": "0.5.8", + "@firebase/database": "1.0.5", + "@firebase/database-compat": "1.0.5", + "@firebase/firestore": "4.6.3", + "@firebase/firestore-compat": "0.3.32", + "@firebase/functions": "0.11.5", + "@firebase/functions-compat": "0.3.11", + "@firebase/installations": "0.6.7", + "@firebase/installations-compat": "0.2.7", + "@firebase/messaging": "0.12.9", + "@firebase/messaging-compat": "0.2.9", + "@firebase/performance": "0.6.7", + "@firebase/performance-compat": "0.2.7", + "@firebase/remote-config": "0.4.7", + "@firebase/remote-config-compat": "0.2.7", + "@firebase/storage": "0.12.5", + "@firebase/storage-compat": "0.3.8", + "@firebase/util": "1.9.6", + "@firebase/vertexai-preview": "0.0.1" + } + }, + "node_modules/firebase/node_modules/@firebase/auth": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/@firebase/auth/-/auth-1.7.3.tgz", + "integrity": "sha512-RiU1PjziOxLuyswtYtLK2qSjHIQJQGCk1h986SUFRbMQfzLXbQg8ZgXwxac1UAfDOzgzqPNCXhBuIlSK2UomoQ==", + "dependencies": { + "@firebase/component": "0.6.7", + "@firebase/logger": "0.4.2", + "@firebase/util": "1.9.6", + "tslib": "^2.1.0", + "undici": "5.28.4" }, "peerDependencies": { - "canvas": "^2.11.2" + "@firebase/app": "0.x", + "@react-native-async-storage/async-storage": "^1.18.1" }, "peerDependenciesMeta": { - "canvas": { + "@react-native-async-storage/async-storage": { "optional": true } } }, - "node_modules/jsdom/node_modules/tr46": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-5.0.0.tgz", - "integrity": "sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==", - "devOptional": true, - "dependencies": { - "punycode": "^2.3.1" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/jsdom/node_modules/webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", - "devOptional": true, - "engines": { - "node": ">=12" + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "bin": { + "flat": "cli.js" } }, - "node_modules/jsdom/node_modules/whatwg-url": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.0.0.tgz", - "integrity": "sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==", - "devOptional": true, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dev": true, "dependencies": { - "tr46": "^5.0.0", - "webidl-conversions": "^7.0.0" + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" }, "engines": { - "node": ">=18" + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "node_modules/flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", "dev": true }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true + "node_modules/focus-lock": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/focus-lock/-/focus-lock-1.3.5.tgz", + "integrity": "sha512-QFaHbhv9WPUeLYBDe/PAuLKJ4Dd9OPvKs9xZBr3yLXnUrDNaVXKu2baDBXe3naPY30hgHYSsf2JW4jzas2mDEQ==", + "dependencies": { + "tslib": "^2.0.3" + }, + "engines": { + "node": ">=10" + } }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.3" + } }, - "node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "node_modules/foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", "dev": true, "dependencies": { - "minimist": "^1.2.0" + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" }, - "bin": { - "json5": "lib/cli.js" + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/jsonpointer": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", - "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 6" } }, - "node_modules/jsx-ast-utils": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", - "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", - "dev": true, + "node_modules/form-data-encoder": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-1.7.2.tgz", + "integrity": "sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==" + }, + "node_modules/format": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/format/-/format-0.2.2.tgz", + "integrity": "sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/formdata-node": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-4.4.1.tgz", + "integrity": "sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==", "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "object.assign": "^4.1.4", - "object.values": "^1.1.6" + "node-domexception": "1.0.0", + "web-streams-polyfill": "4.0.0-beta.3" }, "engines": { - "node": ">=4.0" + "node": ">= 12.20" } }, - "node_modules/keyboard-key": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/keyboard-key/-/keyboard-key-1.1.0.tgz", - "integrity": "sha512-qkBzPTi3rlAKvX7k0/ub44sqOfXeLc/jcnGGmj5c7BJpU8eDrEVPyhCvNYAaoubbsLm9uGWwQJO1ytQK1a9/dQ==" + "node_modules/formdata-node/node_modules/web-streams-polyfill": { + "version": "4.0.0-beta.3", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz", + "integrity": "sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==", + "engines": { + "node": ">= 14" + } }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", - "dev": true, + "node_modules/formidable": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/formidable/-/formidable-3.5.1.tgz", + "integrity": "sha512-WJWKelbRHN41m5dumb0/k8TeAx7Id/y3a+Z7QfhxP/htI9Js5zYaEDtG8uMgG0vM0lOlqnmjE99/kfpOYi/0Og==", "dependencies": { - "json-buffer": "3.0.1" + "dezalgo": "^1.0.4", + "hexoid": "^1.0.0", + "once": "^1.4.0" + }, + "funding": { + "url": "https://ko-fi.com/tunnckoCore/commissions" } }, - "node_modules/langchain": { - "version": "0.1.37", - "resolved": "https://registry.npmjs.org/langchain/-/langchain-0.1.37.tgz", - "integrity": "sha512-rpaLEJtRrLYhAViEp7/aHfSkxbgSqHJ5n10tXv3o4kHP/wOin85RpTgewwvGjEaKc3797jOg+sLSk6a7e0UlMg==", + "node_modules/framer-motion": { + "version": "11.2.4", + "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-11.2.4.tgz", + "integrity": "sha512-D+EXd0lspaZijv3BJhAcSsyGz+gnvoEdnf+QWkPZdhoFzbeX/2skrH9XSVFb0osgUnCajW8x1frjhLuKwa/Reg==", "dependencies": { - "@anthropic-ai/sdk": "^0.9.1", - "@langchain/community": "~0.0.47", - "@langchain/core": "~0.1.60", - "@langchain/openai": "~0.0.28", - "@langchain/textsplitters": "~0.0.0", - "binary-extensions": "^2.2.0", - "js-tiktoken": "^1.0.7", - "js-yaml": "^4.1.0", - "jsonpointer": "^5.0.1", - "langchainhub": "~0.0.8", - "langsmith": "~0.1.7", - "ml-distance": "^4.0.0", - "openapi-types": "^12.1.3", - "p-retry": "4", - "uuid": "^9.0.0", - "yaml": "^2.2.1", - "zod": "^3.22.4", - "zod-to-json-schema": "^3.22.3" - }, - "engines": { - "node": ">=18" + "tslib": "^2.4.0" }, "peerDependencies": { - "@aws-sdk/client-s3": "^3.310.0", - "@aws-sdk/client-sagemaker-runtime": "^3.310.0", - "@aws-sdk/client-sfn": "^3.310.0", - "@aws-sdk/credential-provider-node": "^3.388.0", - "@azure/storage-blob": "^12.15.0", - "@browserbasehq/sdk": "*", - "@gomomento/sdk": "^1.51.1", - "@gomomento/sdk-core": "^1.51.1", - "@gomomento/sdk-web": "^1.51.1", - "@google-ai/generativelanguage": "^0.2.1", - "@google-cloud/storage": "^6.10.1 || ^7.7.0", - "@mendable/firecrawl-js": "^0.0.13", - "@notionhq/client": "^2.2.10", - "@pinecone-database/pinecone": "*", - "@supabase/supabase-js": "^2.10.0", - "@vercel/kv": "^0.2.3", - "@xata.io/client": "^0.28.0", - "apify-client": "^2.7.1", - "assemblyai": "^4.0.0", - "axios": "*", - "cheerio": "^1.0.0-rc.12", - "chromadb": "*", - "convex": "^1.3.1", - "couchbase": "^4.3.0", - "d3-dsv": "^2.0.0", - "epub2": "^3.0.1", - "fast-xml-parser": "*", - "google-auth-library": "^8.9.0", - "handlebars": "^4.7.8", - "html-to-text": "^9.0.5", - "ignore": "^5.2.0", - "ioredis": "^5.3.2", - "jsdom": "*", - "mammoth": "^1.6.0", - "mongodb": ">=5.2.0", - "node-llama-cpp": "*", - "notion-to-md": "^3.1.0", - "officeparser": "^4.0.4", - "pdf-parse": "1.1.1", - "peggy": "^3.0.2", - "playwright": "^1.32.1", - "puppeteer": "^19.7.2", - "pyodide": "^0.24.1", - "redis": "^4.6.4", - "sonix-speech-recognition": "^2.1.1", - "srt-parser-2": "^1.2.3", - "typeorm": "^0.3.12", - "weaviate-ts-client": "*", - "web-auth-library": "^1.0.3", - "ws": "^8.14.2", - "youtube-transcript": "^1.0.6", - "youtubei.js": "^9.1.0" + "@emotion/is-prop-valid": "*", + "react": "^18.0.0", + "react-dom": "^18.0.0" }, "peerDependenciesMeta": { - "@aws-sdk/client-s3": { + "@emotion/is-prop-valid": { "optional": true }, - "@aws-sdk/client-sagemaker-runtime": { + "react": { "optional": true }, - "@aws-sdk/client-sfn": { + "react-dom": { "optional": true - }, - "@aws-sdk/credential-provider-node": { + } + } + }, + "node_modules/framesync": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/framesync/-/framesync-6.1.2.tgz", + "integrity": "sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g==", + "dependencies": { + "tslib": "2.4.0" + } + }, + "node_modules/framesync/node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-func-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz", + "integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-nonce": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz", + "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==", + "engines": { + "node": ">=6" + } + }, + "node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "dev": true, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-tsconfig": { + "version": "4.7.5", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.5.tgz", + "integrity": "sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==", + "dev": true, + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "node_modules/github-slugger": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-2.0.0.tgz", + "integrity": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==" + }, + "node_modules/glob": { + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "node_modules/glob/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/glob/node_modules/minimatch": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "dev": true, + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hast-util-from-html": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/hast-util-from-html/-/hast-util-from-html-2.0.1.tgz", + "integrity": "sha512-RXQBLMl9kjKVNkJTIO6bZyb2n+cUH8LFaSSzo82jiLT6Tfc+Pt7VQCS+/h3YwG4jaNE2TA2sdJisGWR+aJrp0g==", + "dependencies": { + "@types/hast": "^3.0.0", + "devlop": "^1.1.0", + "hast-util-from-parse5": "^8.0.0", + "parse5": "^7.0.0", + "vfile": "^6.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-from-parse5": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.1.tgz", + "integrity": "sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "devlop": "^1.0.0", + "hastscript": "^8.0.0", + "property-information": "^6.0.0", + "vfile": "^6.0.0", + "vfile-location": "^5.0.0", + "web-namespaces": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-has-property": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-has-property/-/hast-util-has-property-3.0.0.tgz", + "integrity": "sha512-MNilsvEKLFpV604hwfhVStK0usFY/QmM5zX16bo7EjnAEGofr5YyI37kzopBlZJkHD4t887i+q/C8/tr5Q94cA==", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-heading-rank": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-heading-rank/-/hast-util-heading-rank-3.0.0.tgz", + "integrity": "sha512-EJKb8oMUXVHcWZTDepnr+WNbfnXKFNf9duMesmr4S8SXTJBJ9M4Yok08pu9vxdJwdlGRhVumk9mEhkEvKGifwA==", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-is-element": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-3.0.0.tgz", + "integrity": "sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-parse-selector": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz", + "integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-raw": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-9.0.3.tgz", + "integrity": "sha512-ICWvVOF2fq4+7CMmtCPD5CM4QKjPbHpPotE6+8tDooV0ZuyJVUzHsrNX+O5NaRbieTf0F7FfeBOMAwi6Td0+yQ==", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "@ungap/structured-clone": "^1.0.0", + "hast-util-from-parse5": "^8.0.0", + "hast-util-to-parse5": "^8.0.0", + "html-void-elements": "^3.0.0", + "mdast-util-to-hast": "^13.0.0", + "parse5": "^7.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-select": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/hast-util-select/-/hast-util-select-6.0.2.tgz", + "integrity": "sha512-hT/SD/d/Meu+iobvgkffo1QecV8WeKWxwsNMzcTJsKw1cKTQKSR/7ArJeURLNJF9HDjp9nVoORyNNJxrvBye8Q==", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "bcp-47-match": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "css-selector-parser": "^3.0.0", + "devlop": "^1.0.0", + "direction": "^2.0.0", + "hast-util-has-property": "^3.0.0", + "hast-util-to-string": "^3.0.0", + "hast-util-whitespace": "^3.0.0", + "not": "^0.1.0", + "nth-check": "^2.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "unist-util-visit": "^5.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-html": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.1.tgz", + "integrity": "sha512-hZOofyZANbyWo+9RP75xIDV/gq+OUKx+T46IlwERnKmfpwp81XBFbT9mi26ws+SJchA4RVUQwIBJpqEOBhMzEQ==", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "ccount": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-raw": "^9.0.0", + "hast-util-whitespace": "^3.0.0", + "html-void-elements": "^3.0.0", + "mdast-util-to-hast": "^13.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "stringify-entities": "^4.0.0", + "zwitch": "^2.0.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-jsx-runtime": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.0.tgz", + "integrity": "sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==", + "dependencies": { + "@types/estree": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "devlop": "^1.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "hast-util-whitespace": "^3.0.0", + "mdast-util-mdx-expression": "^2.0.0", + "mdast-util-mdx-jsx": "^3.0.0", + "mdast-util-mdxjs-esm": "^2.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "style-to-object": "^1.0.0", + "unist-util-position": "^5.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-parse5": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-8.0.0.tgz", + "integrity": "sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==", + "dependencies": { + "@types/hast": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "devlop": "^1.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-string": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-to-string/-/hast-util-to-string-3.0.0.tgz", + "integrity": "sha512-OGkAxX1Ua3cbcW6EJ5pT/tslVb90uViVkcJ4ZZIMW/R33DX/AkcJcRrPebPwJkHYwlDHXz4aIwvAAaAdtrACFA==", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-whitespace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", + "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hastscript": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-8.0.0.tgz", + "integrity": "sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==", + "dependencies": { + "@types/hast": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-parse-selector": "^4.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hexoid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hexoid/-/hexoid-1.0.0.tgz", + "integrity": "sha512-QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g==", + "engines": { + "node": ">=8" + } + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/html-encoding-sniffer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz", + "integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==", + "devOptional": true, + "dependencies": { + "whatwg-encoding": "^3.1.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/html-url-attributes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-url-attributes/-/html-url-attributes-3.0.0.tgz", + "integrity": "sha512-/sXbVCWayk6GDVg3ctOX6nxaVj7So40FcFAnWlWGNAB1LpYKcV5Cd10APjPjW80O7zYW2MsjBV4zZ7IZO5fVow==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/html-void-elements": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz", + "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" + }, + "node_modules/http-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", + "devOptional": true, + "dependencies": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/https-proxy-agent": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz", + "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==", + "devOptional": true, + "dependencies": { + "agent-base": "^7.0.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "dev": true, + "engines": { + "node": ">=16.17.0" + } + }, + "node_modules/humanize-ms": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", + "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", + "dependencies": { + "ms": "^2.0.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/idb": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz", + "integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==" + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "devOptional": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/inline-style-parser": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.3.tgz", + "integrity": "sha512-qlD8YNDqyTKTyuITrDOffsl6Tdhv+UC4hcdAVuQsK4IMQ99nSgd1MIA/Q+jQYoh9r3hVUXhYh7urSRmXPkW04g==" + }, + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/internmap": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", + "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", + "engines": { + "node": ">=12" + } + }, + "node_modules/intersection-observer": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/intersection-observer/-/intersection-observer-0.10.0.tgz", + "integrity": "sha512-fn4bQ0Xq8FTej09YC/jqKZwtijpvARlRp6wxL5WTA6yPe2YWSJ5RJh7Nm79rK2qB0wr6iDQzH60XGq5V/7u8YQ==" + }, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/is-alphabetical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", + "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-alphanumerical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", + "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", + "dependencies": { + "is-alphabetical": "^2.0.0", + "is-decimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-any-array": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-any-array/-/is-any-array-2.0.1.tgz", + "integrity": "sha512-UtilS7hLRu++wb/WBAw9bNuP1Eg04Ivn1vERJck8zJthEvXCBEBpGR/33u/xLKWEQf95803oalHrVDptcAvFdQ==" + }, + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "node_modules/is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-view": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "dev": true, + "dependencies": { + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-decimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", + "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-hexadecimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", + "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "devOptional": true + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "dev": true, + "dependencies": { + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", + "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/isomorphic.js": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/isomorphic.js/-/isomorphic.js-0.2.5.tgz", + "integrity": "sha512-PIeMbHqMt4DnUP3MA/Flc0HElYjMXArsw1qwJZcm9sqR8mq3l8NYizFMty0pWwE/tzIGH3EKK5+jes5mAr85yw==", + "peer": true, + "funding": { + "type": "GitHub Sponsors ❤", + "url": "https://github.com/sponsors/dmonad" + } + }, + "node_modules/iterator.prototype": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", + "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "dev": true, + "dependencies": { + "define-properties": "^1.2.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "reflect.getprototypeof": "^1.0.4", + "set-function-name": "^2.0.1" + } + }, + "node_modules/jackspeak": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "dev": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jiti": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", + "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", + "dev": true, + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/jquery": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.7.1.tgz", + "integrity": "sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==" + }, + "node_modules/js-cookie": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.1.tgz", + "integrity": "sha512-+0rgsUXZu4ncpPxRL+lNEptWMOWl9etvPHc/koSRp6MPwpRYAhmk0dUG00J4bxVV3r9uUzfo24wW0knS07SKSw==", + "engines": { + "node": ">=12" + } + }, + "node_modules/js-tiktoken": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/js-tiktoken/-/js-tiktoken-1.0.12.tgz", + "integrity": "sha512-L7wURW1fH9Qaext0VzaUDpFGVQgjkdE3Dgsy9/+yXyGEpBKnylTd0mU0bfbNkKDlXRb6TEsZkwuflu1B8uQbJQ==", + "dependencies": { + "base64-js": "^1.5.1" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsdom": { + "version": "24.0.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-24.0.0.tgz", + "integrity": "sha512-UDS2NayCvmXSXVP6mpTj+73JnNQadZlr9N68189xib2tx5Mls7swlTNao26IoHv46BZJFvXygyRtyXd1feAk1A==", + "devOptional": true, + "dependencies": { + "cssstyle": "^4.0.1", + "data-urls": "^5.0.0", + "decimal.js": "^10.4.3", + "form-data": "^4.0.0", + "html-encoding-sniffer": "^4.0.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.2", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.7", + "parse5": "^7.1.2", + "rrweb-cssom": "^0.6.0", + "saxes": "^6.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.1.3", + "w3c-xmlserializer": "^5.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^3.1.1", + "whatwg-mimetype": "^4.0.0", + "whatwg-url": "^14.0.0", + "ws": "^8.16.0", + "xml-name-validator": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "canvas": "^2.11.2" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsdom/node_modules/tr46": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-5.0.0.tgz", + "integrity": "sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==", + "devOptional": true, + "dependencies": { + "punycode": "^2.3.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/jsdom/node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "devOptional": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/jsdom/node_modules/whatwg-url": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.0.0.tgz", + "integrity": "sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==", + "devOptional": true, + "dependencies": { + "tr46": "^5.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/jsonpointer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", + "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/keyboard-key": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/keyboard-key/-/keyboard-key-1.1.0.tgz", + "integrity": "sha512-qkBzPTi3rlAKvX7k0/ub44sqOfXeLc/jcnGGmj5c7BJpU8eDrEVPyhCvNYAaoubbsLm9uGWwQJO1ytQK1a9/dQ==" + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/langchain": { + "version": "0.1.37", + "resolved": "https://registry.npmjs.org/langchain/-/langchain-0.1.37.tgz", + "integrity": "sha512-rpaLEJtRrLYhAViEp7/aHfSkxbgSqHJ5n10tXv3o4kHP/wOin85RpTgewwvGjEaKc3797jOg+sLSk6a7e0UlMg==", + "dependencies": { + "@anthropic-ai/sdk": "^0.9.1", + "@langchain/community": "~0.0.47", + "@langchain/core": "~0.1.60", + "@langchain/openai": "~0.0.28", + "@langchain/textsplitters": "~0.0.0", + "binary-extensions": "^2.2.0", + "js-tiktoken": "^1.0.7", + "js-yaml": "^4.1.0", + "jsonpointer": "^5.0.1", + "langchainhub": "~0.0.8", + "langsmith": "~0.1.7", + "ml-distance": "^4.0.0", + "openapi-types": "^12.1.3", + "p-retry": "4", + "uuid": "^9.0.0", + "yaml": "^2.2.1", + "zod": "^3.22.4", + "zod-to-json-schema": "^3.22.3" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@aws-sdk/client-s3": "^3.310.0", + "@aws-sdk/client-sagemaker-runtime": "^3.310.0", + "@aws-sdk/client-sfn": "^3.310.0", + "@aws-sdk/credential-provider-node": "^3.388.0", + "@azure/storage-blob": "^12.15.0", + "@browserbasehq/sdk": "*", + "@gomomento/sdk": "^1.51.1", + "@gomomento/sdk-core": "^1.51.1", + "@gomomento/sdk-web": "^1.51.1", + "@google-ai/generativelanguage": "^0.2.1", + "@google-cloud/storage": "^6.10.1 || ^7.7.0", + "@mendable/firecrawl-js": "^0.0.13", + "@notionhq/client": "^2.2.10", + "@pinecone-database/pinecone": "*", + "@supabase/supabase-js": "^2.10.0", + "@vercel/kv": "^0.2.3", + "@xata.io/client": "^0.28.0", + "apify-client": "^2.7.1", + "assemblyai": "^4.0.0", + "axios": "*", + "cheerio": "^1.0.0-rc.12", + "chromadb": "*", + "convex": "^1.3.1", + "couchbase": "^4.3.0", + "d3-dsv": "^2.0.0", + "epub2": "^3.0.1", + "fast-xml-parser": "*", + "google-auth-library": "^8.9.0", + "handlebars": "^4.7.8", + "html-to-text": "^9.0.5", + "ignore": "^5.2.0", + "ioredis": "^5.3.2", + "jsdom": "*", + "mammoth": "^1.6.0", + "mongodb": ">=5.2.0", + "node-llama-cpp": "*", + "notion-to-md": "^3.1.0", + "officeparser": "^4.0.4", + "pdf-parse": "1.1.1", + "peggy": "^3.0.2", + "playwright": "^1.32.1", + "puppeteer": "^19.7.2", + "pyodide": "^0.24.1", + "redis": "^4.6.4", + "sonix-speech-recognition": "^2.1.1", + "srt-parser-2": "^1.2.3", + "typeorm": "^0.3.12", + "weaviate-ts-client": "*", + "web-auth-library": "^1.0.3", + "ws": "^8.14.2", + "youtube-transcript": "^1.0.6", + "youtubei.js": "^9.1.0" + }, + "peerDependenciesMeta": { + "@aws-sdk/client-s3": { + "optional": true + }, + "@aws-sdk/client-sagemaker-runtime": { + "optional": true + }, + "@aws-sdk/client-sfn": { + "optional": true + }, + "@aws-sdk/credential-provider-node": { "optional": true }, "@azure/storage-blob": { @@ -8302,241 +11257,1328 @@ } } }, - "node_modules/langchainhub": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/langchainhub/-/langchainhub-0.0.10.tgz", - "integrity": "sha512-mOVso7TGTMSlvTTUR1b4zUIMtu8zgie/pcwRm1SeooWwuHYMQovoNXjT6gEjvWEZ6cjt4gVH+1lu2tp1/phyIQ==" + "node_modules/langchainhub": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/langchainhub/-/langchainhub-0.0.10.tgz", + "integrity": "sha512-mOVso7TGTMSlvTTUR1b4zUIMtu8zgie/pcwRm1SeooWwuHYMQovoNXjT6gEjvWEZ6cjt4gVH+1lu2tp1/phyIQ==" + }, + "node_modules/langsmith": { + "version": "0.1.25", + "resolved": "https://registry.npmjs.org/langsmith/-/langsmith-0.1.25.tgz", + "integrity": "sha512-Hft4Y1yoMgFgCUXVQklRZ7ndmLQ/6FmRZE9P3u5BRdMq5Fa0hpg8R7jd7bLLBXkAjqcFvWo0AGhpb8MMY5FAiA==", + "dependencies": { + "@types/uuid": "^9.0.1", + "commander": "^10.0.1", + "p-queue": "^6.6.2", + "p-retry": "4", + "uuid": "^9.0.0" + }, + "peerDependencies": { + "openai": "*" + }, + "peerDependenciesMeta": { + "openai": { + "optional": true + } + } + }, + "node_modules/langsmith/node_modules/commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "engines": { + "node": ">=14" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", + "dev": true + }, + "node_modules/language-tags": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "dev": true, + "dependencies": { + "language-subtag-registry": "^0.3.20" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lexical": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/lexical/-/lexical-0.14.5.tgz", + "integrity": "sha512-ouV7Gyr9+3WT3WTrCgRAD3iZnlJWfs2/kBl2x3J2Q3X9uCWJn/zn21fQ8G1EUHlu0dvXPBmdk9hXb/FjTClt6Q==" + }, + "node_modules/lib0": { + "version": "0.2.94", + "resolved": "https://registry.npmjs.org/lib0/-/lib0-0.2.94.tgz", + "integrity": "sha512-hZ3p54jL4Wpu7IOg26uC7dnEWiMyNlUrb9KoG7+xYs45WkQwpVvKFndVq2+pqLYKe1u8Fp3+zAfZHVvTK34PvQ==", + "peer": true, + "dependencies": { + "isomorphic.js": "^0.2.4" + }, + "bin": { + "0ecdsa-generate-keypair": "bin/0ecdsa-generate-keypair.js", + "0gentesthtml": "bin/gentesthtml.js", + "0serve": "bin/0serve.js" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "type": "GitHub Sponsors ❤", + "url": "https://github.com/sponsors/dmonad" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "node_modules/local-pkg": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.5.0.tgz", + "integrity": "sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==", + "dev": true, + "dependencies": { + "mlly": "^1.4.2", + "pkg-types": "^1.0.3" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lodash.mergewith": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz", + "integrity": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==" + }, + "node_modules/long": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", + "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==" + }, + "node_modules/longest-streak": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", + "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/loupe": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.7.tgz", + "integrity": "sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==", + "dev": true, + "dependencies": { + "get-func-name": "^2.0.1" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lru-cache": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", + "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", + "dev": true, + "engines": { + "node": "14 || >=16.14" + } + }, + "node_modules/lz-string": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", + "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", + "bin": { + "lz-string": "bin/bin.js" + } + }, + "node_modules/magic-string": { + "version": "0.30.10", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", + "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", + "dev": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.15" + } + }, + "node_modules/map-obj": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/markdown-table": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.3.tgz", + "integrity": "sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/md5": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", + "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", + "dependencies": { + "charenc": "0.0.2", + "crypt": "0.0.2", + "is-buffer": "~1.1.6" + } + }, + "node_modules/mdast-util-directive": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-directive/-/mdast-util-directive-3.0.0.tgz", + "integrity": "sha512-JUpYOqKI4mM3sZcNxmF/ox04XYFFkNwr0CFlrQIkCwbvH0xzMCqkMqAde9wRd80VAhaUrwFwKm2nxretdT1h7Q==", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "parse-entities": "^4.0.0", + "stringify-entities": "^4.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-find-and-replace": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.1.tgz", + "integrity": "sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==", + "dependencies": { + "@types/mdast": "^4.0.0", + "escape-string-regexp": "^5.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mdast-util-from-markdown": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.1.tgz", + "integrity": "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark": "^4.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-frontmatter": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-frontmatter/-/mdast-util-frontmatter-2.0.1.tgz", + "integrity": "sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "escape-string-regexp": "^5.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "micromark-extension-frontmatter": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-frontmatter/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mdast-util-gfm": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.0.0.tgz", + "integrity": "sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==", + "dependencies": { + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-gfm-autolink-literal": "^2.0.0", + "mdast-util-gfm-footnote": "^2.0.0", + "mdast-util-gfm-strikethrough": "^2.0.0", + "mdast-util-gfm-table": "^2.0.0", + "mdast-util-gfm-task-list-item": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-autolink-literal": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.0.tgz", + "integrity": "sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg==", + "dependencies": { + "@types/mdast": "^4.0.0", + "ccount": "^2.0.0", + "devlop": "^1.0.0", + "mdast-util-find-and-replace": "^3.0.0", + "micromark-util-character": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } }, - "node_modules/langsmith": { - "version": "0.1.25", - "resolved": "https://registry.npmjs.org/langsmith/-/langsmith-0.1.25.tgz", - "integrity": "sha512-Hft4Y1yoMgFgCUXVQklRZ7ndmLQ/6FmRZE9P3u5BRdMq5Fa0hpg8R7jd7bLLBXkAjqcFvWo0AGhpb8MMY5FAiA==", + "node_modules/mdast-util-gfm-footnote": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.0.0.tgz", + "integrity": "sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==", "dependencies": { - "@types/uuid": "^9.0.1", - "commander": "^10.0.1", - "p-queue": "^6.6.2", - "p-retry": "4", - "uuid": "^9.0.0" + "@types/mdast": "^4.0.0", + "devlop": "^1.1.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0" }, - "peerDependencies": { - "openai": "*" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-strikethrough": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz", + "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" }, - "peerDependenciesMeta": { - "openai": { - "optional": true - } + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/langsmith/node_modules/commander": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", - "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", - "engines": { - "node": ">=14" + "node_modules/mdast-util-gfm-table": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz", + "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "markdown-table": "^3.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/language-subtag-registry": { - "version": "0.3.22", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", - "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", - "dev": true + "node_modules/mdast-util-gfm-task-list-item": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz", + "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } }, - "node_modules/language-tags": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", - "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", - "dev": true, + "node_modules/mdast-util-mdx": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-3.0.0.tgz", + "integrity": "sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==", "dependencies": { - "language-subtag-registry": "^0.3.20" + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-mdx-expression": "^2.0.0", + "mdast-util-mdx-jsx": "^3.0.0", + "mdast-util-mdxjs-esm": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" }, - "engines": { - "node": ">=0.10" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, + "node_modules/mdast-util-mdx-expression": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.0.tgz", + "integrity": "sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw==", "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" }, - "engines": { - "node": ">= 0.8.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/lilconfig": { + "node_modules/mdast-util-mdx-jsx": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.1.2.tgz", + "integrity": "sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA==", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "ccount": "^2.0.0", + "devlop": "^1.1.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "parse-entities": "^4.0.0", + "stringify-entities": "^4.0.0", + "unist-util-remove-position": "^5.0.0", + "unist-util-stringify-position": "^4.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdxjs-esm": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz", + "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-phrasing": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", + "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==", + "dependencies": { + "@types/mdast": "^4.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-hast": { + "version": "13.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz", + "integrity": "sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@ungap/structured-clone": "^1.0.0", + "devlop": "^1.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "trim-lines": "^3.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-markdown": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.0.tgz", + "integrity": "sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^4.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark-util-decode-string": "^2.0.0", + "unist-util-visit": "^5.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", + "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", + "dependencies": { + "@types/mdast": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, "engines": { - "node": ">=10" + "node": ">= 8" } }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + "node_modules/microdiff": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/microdiff/-/microdiff-1.4.0.tgz", + "integrity": "sha512-OBKBOa1VBznvLPb/3ljeJaENVe0fO0lnWl77lR4vhPlQD71UpjEoRV5P0KdQkcjbFlBu1Oy2mEUBMU3wxcBAGg==" }, - "node_modules/local-pkg": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.5.0.tgz", - "integrity": "sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==", - "dev": true, + "node_modules/micromark": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.0.tgz", + "integrity": "sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "dependencies": { - "mlly": "^1.4.2", - "pkg-types": "^1.0.3" + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-core-commonmark": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.1.tgz", + "integrity": "sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-destination": "^2.0.0", + "micromark-factory-label": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-factory-title": "^2.0.0", + "micromark-factory-whitespace": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-html-tag-name": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-directive": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-directive/-/micromark-extension-directive-3.0.0.tgz", + "integrity": "sha512-61OI07qpQrERc+0wEysLHMvoiO3s2R56x5u7glHq2Yqq6EHbH4dW25G9GfDdGCDYqA21KE6DWgNSzxSwHc2hSg==", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-factory-whitespace": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "parse-entities": "^4.0.0" }, - "engines": { - "node": ">=14" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-frontmatter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-frontmatter/-/micromark-extension-frontmatter-2.0.0.tgz", + "integrity": "sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg==", + "dependencies": { + "fault": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz", + "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==", + "dependencies": { + "micromark-extension-gfm-autolink-literal": "^2.0.0", + "micromark-extension-gfm-footnote": "^2.0.0", + "micromark-extension-gfm-strikethrough": "^2.0.0", + "micromark-extension-gfm-table": "^2.0.0", + "micromark-extension-gfm-tagfilter": "^2.0.0", + "micromark-extension-gfm-task-list-item": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.0.0.tgz", + "integrity": "sha512-rTHfnpt/Q7dEAK1Y5ii0W8bhfJlVJFnJMHIPisfPK3gpVNuOP0VnRl96+YJ3RYWV/P4gFeQoGKNlT3RhuvpqAg==", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-footnote": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.0.0.tgz", + "integrity": "sha512-6Rzu0CYRKDv3BfLAUnZsSlzx3ak6HAoI85KTiijuKIz5UxZxbUI+pD6oHgw+6UtQuiRwnGRhzMmPRv4smcz0fg==", + "dependencies": { + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-strikethrough": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.0.0.tgz", + "integrity": "sha512-c3BR1ClMp5fxxmwP6AoOY2fXO9U8uFMKs4ADD66ahLTNcwzSCyRVU4k7LPV5Nxo/VJiR4TdzxRQY2v3qIUceCw==", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-table": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.0.0.tgz", + "integrity": "sha512-PoHlhypg1ItIucOaHmKE8fbin3vTLpDOUg8KAr8gRCF1MOZI9Nquq2i/44wFvviM4WuxJzc3demT8Y3dkfvYrw==", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-tagfilter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz", + "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==", + "dependencies": { + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-task-list-item": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.0.1.tgz", + "integrity": "sha512-cY5PzGcnULaN5O7T+cOzfMoHjBW7j+T9D2sucA5d/KbsBTPcYdebm9zUd9zzdgJGCwahV+/W78Z3nbulBYVbTw==", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdx-expression": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-3.0.0.tgz", + "integrity": "sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "@types/estree": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-mdx-expression": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-events-to-acorn": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-mdx-jsx": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-3.0.0.tgz", + "integrity": "sha512-uvhhss8OGuzR4/N17L1JwvmJIpPhAd8oByMawEKx6NVdBCbesjH4t+vjEp3ZXft9DwvlKSD07fCeI44/N0Vf2w==", + "dependencies": { + "@types/acorn": "^4.0.0", + "@types/estree": "^1.0.0", + "devlop": "^1.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "micromark-factory-mdx-expression": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdx-md": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-2.0.0.tgz", + "integrity": "sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==", + "dependencies": { + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdxjs": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-3.0.0.tgz", + "integrity": "sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==", + "dependencies": { + "acorn": "^8.0.0", + "acorn-jsx": "^5.0.0", + "micromark-extension-mdx-expression": "^3.0.0", + "micromark-extension-mdx-jsx": "^3.0.0", + "micromark-extension-mdx-md": "^2.0.0", + "micromark-extension-mdxjs-esm": "^3.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-mdxjs-esm": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-3.0.0.tgz", + "integrity": "sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==", + "dependencies": { + "@types/estree": "^1.0.0", + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-events-to-acorn": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-position-from-estree": "^2.0.0", + "vfile-message": "^4.0.0" }, "funding": { - "url": "https://github.com/sponsors/antfu" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, + "node_modules/micromark-factory-destination": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.0.tgz", + "integrity": "sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" } }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + "node_modules/micromark-factory-label": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.0.tgz", + "integrity": "sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } }, - "node_modules/lodash-es": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", - "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + "node_modules/micromark-factory-mdx-expression": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-2.0.1.tgz", + "integrity": "sha512-F0ccWIUHRLRrYp5TC9ZYXmZo+p2AM13ggbsW4T0b5CRKP8KHVRB8t4pwtBgTxtjRmwrK0Irwm7vs2JOZabHZfg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "@types/estree": "^1.0.0", + "devlop": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-events-to-acorn": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-position-from-estree": "^2.0.0", + "vfile-message": "^4.0.0" + } }, - "node_modules/lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" + "node_modules/micromark-factory-space": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.0.tgz", + "integrity": "sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true + "node_modules/micromark-factory-title": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.0.tgz", + "integrity": "sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } }, - "node_modules/lodash.mergewith": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz", - "integrity": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==" + "node_modules/micromark-factory-whitespace": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.0.tgz", + "integrity": "sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } }, - "node_modules/long": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", - "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==" + "node_modules/micromark-util-character": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.0.tgz", + "integrity": "sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "node_modules/micromark-util-chunked": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.0.tgz", + "integrity": "sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" + "micromark-util-symbol": "^2.0.0" } }, - "node_modules/loupe": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.7.tgz", - "integrity": "sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==", - "dev": true, + "node_modules/micromark-util-classify-character": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.0.tgz", + "integrity": "sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "dependencies": { - "get-func-name": "^2.0.1" + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" } }, - "node_modules/lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "node_modules/micromark-util-combine-extensions": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.0.tgz", + "integrity": "sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "dependencies": { - "tslib": "^2.0.3" + "micromark-util-chunked": "^2.0.0", + "micromark-util-types": "^2.0.0" } }, - "node_modules/lru-cache": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", - "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", - "dev": true, - "engines": { - "node": "14 || >=16.14" + "node_modules/micromark-util-decode-numeric-character-reference": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.1.tgz", + "integrity": "sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^2.0.0" } }, - "node_modules/lz-string": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", - "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", - "dev": true, - "bin": { - "lz-string": "bin/bin.js" + "node_modules/micromark-util-decode-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.0.tgz", + "integrity": "sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-symbol": "^2.0.0" } }, - "node_modules/magic-string": { - "version": "0.30.10", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", - "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", - "dev": true, + "node_modules/micromark-util-encode": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz", + "integrity": "sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-events-to-acorn": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-2.0.2.tgz", + "integrity": "sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.15" + "@types/acorn": "^4.0.0", + "@types/estree": "^1.0.0", + "@types/unist": "^3.0.0", + "devlop": "^1.0.0", + "estree-util-visit": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "vfile-message": "^4.0.0" } }, - "node_modules/map-obj": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", - "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node_modules/micromark-util-html-tag-name": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.0.tgz", + "integrity": "sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-normalize-identifier": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.0.tgz", + "integrity": "sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^2.0.0" } }, - "node_modules/md5": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", - "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", + "node_modules/micromark-util-resolve-all": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.0.tgz", + "integrity": "sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "dependencies": { - "charenc": "0.0.2", - "crypt": "0.0.2", - "is-buffer": "~1.1.6" + "micromark-util-types": "^2.0.0" } }, - "node_modules/merge-stream": { + "node_modules/micromark-util-sanitize-uri": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz", + "integrity": "sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "engines": { - "node": ">= 8" + "node_modules/micromark-util-subtokenize": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.1.tgz", + "integrity": "sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" } }, - "node_modules/microdiff": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/microdiff/-/microdiff-1.4.0.tgz", - "integrity": "sha512-OBKBOa1VBznvLPb/3ljeJaENVe0fO0lnWl77lR4vhPlQD71UpjEoRV5P0KdQkcjbFlBu1Oy2mEUBMU3wxcBAGg==" + "node_modules/micromark-util-symbol": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz", + "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-types": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.0.tgz", + "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] }, "node_modules/micromatch": { "version": "4.0.5", @@ -8769,6 +12811,11 @@ } } }, + "node_modules/next-tick": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", + "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" + }, "node_modules/next/node_modules/postcss": { "version": "8.4.31", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", @@ -8851,6 +12898,11 @@ "node": ">=0.10.0" } }, + "node_modules/not": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/not/-/not-0.1.0.tgz", + "integrity": "sha512-5PDmaAsVfnWUgTUbJ3ERwn7u79Z0dYxN9ErxCpVJJqe2RK0PJ3z+iFUxuqjwtlDDegXvtWoxD/3Fzxox7tFGWA==" + }, "node_modules/npm-run-path": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", @@ -8878,6 +12930,17 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, "node_modules/num-sort": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/num-sort/-/num-sort-2.1.0.tgz", @@ -9099,6 +13162,11 @@ "node": ">= 0.8.0" } }, + "node_modules/outvariant": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/outvariant/-/outvariant-1.4.0.tgz", + "integrity": "sha512-AlWY719RF02ujitly7Kk/0QlV+pXGFDHrHf9O2OKqyqgBieaPOIeuSkL8sRK6j2WK+/ZAURq2kZsY0d8JapUiw==" + }, "node_modules/p-finally": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", @@ -9191,6 +13259,30 @@ "node": ">=6" } }, + "node_modules/parse-entities": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.1.tgz", + "integrity": "sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==", + "dependencies": { + "@types/unist": "^2.0.0", + "character-entities": "^2.0.0", + "character-entities-legacy": "^3.0.0", + "character-reference-invalid": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "is-alphanumerical": "^2.0.0", + "is-decimal": "^2.0.0", + "is-hexadecimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/parse-entities/node_modules/@types/unist": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz", + "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==" + }, "node_modules/parse-json": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", @@ -9208,11 +13300,15 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/parse-numeric-range": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/parse-numeric-range/-/parse-numeric-range-1.3.0.tgz", + "integrity": "sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==" + }, "node_modules/parse5": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", - "devOptional": true, "dependencies": { "entities": "^4.4.0" }, @@ -9557,6 +13653,14 @@ "node": ">=16.13" } }, + "node_modules/prismjs": { + "version": "1.29.0", + "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz", + "integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==", + "engines": { + "node": ">=6" + } + }, "node_modules/prop-types": { "version": "15.8.1", "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", @@ -9567,6 +13671,15 @@ "react-is": "^16.13.1" } }, + "node_modules/property-information": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz", + "integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, "node_modules/protobufjs": { "version": "7.3.0", "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.3.0.tgz", @@ -9662,6 +13775,14 @@ "react": "^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0" } }, + "node_modules/react-devtools-inline": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/react-devtools-inline/-/react-devtools-inline-4.4.0.tgz", + "integrity": "sha512-ES0GolSrKO8wsKbsEkVeiR/ZAaHQTY4zDh1UW8DImVmm8oaGLl3ijJDvSGe+qDRKPZdPRnDtWWnSvvrgxXdThQ==", + "dependencies": { + "es6-symbol": "^3" + } + }, "node_modules/react-dom": { "version": "18.3.1", "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", @@ -9674,6 +13795,21 @@ "react": "^18.3.1" } }, + "node_modules/react-error-boundary": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/react-error-boundary/-/react-error-boundary-3.1.4.tgz", + "integrity": "sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==", + "dependencies": { + "@babel/runtime": "^7.12.5" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + }, + "peerDependencies": { + "react": ">=16.13.1" + } + }, "node_modules/react-fast-compare": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz", @@ -9701,11 +13837,51 @@ } } }, + "node_modules/react-hook-form": { + "version": "7.51.5", + "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.51.5.tgz", + "integrity": "sha512-J2ILT5gWx1XUIJRETiA7M19iXHlG74+6O3KApzvqB/w8S5NQR7AbU8HVZrMALdmDgWpRPYiZJl0zx8Z4L2mP6Q==", + "engines": { + "node": ">=12.22.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/react-hook-form" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17 || ^18" + } + }, "node_modules/react-is": { "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" }, + "node_modules/react-markdown": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-9.0.1.tgz", + "integrity": "sha512-186Gw/vF1uRkydbsOIkcGXw7aHq0sZOCRFFjGrr7b9+nVZg4UfA4enXCaxm4fUzecU38sWfrNDitGhshuU7rdg==", + "dependencies": { + "@types/hast": "^3.0.0", + "devlop": "^1.0.0", + "hast-util-to-jsx-runtime": "^2.0.0", + "html-url-attributes": "^3.0.0", + "mdast-util-to-hast": "^13.0.0", + "remark-parse": "^11.0.0", + "remark-rehype": "^11.0.0", + "unified": "^11.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + }, + "peerDependencies": { + "@types/react": ">=18", + "react": ">=18" + } + }, "node_modules/react-popper": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-2.3.0.tgz", @@ -9816,120 +13992,402 @@ "react-dom": ">=16.6.0" } }, - "node_modules/read-cache": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", - "dev": true, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/recharts": { + "version": "2.12.7", + "resolved": "https://registry.npmjs.org/recharts/-/recharts-2.12.7.tgz", + "integrity": "sha512-hlLJMhPQfv4/3NBSAyq3gzGg4h2v69RJh6KU7b3pXYNNAELs9kEoXOjbkxdXpALqKBoVmVptGfLpxdaVYqjmXQ==", + "dependencies": { + "clsx": "^2.0.0", + "eventemitter3": "^4.0.1", + "lodash": "^4.17.21", + "react-is": "^16.10.2", + "react-smooth": "^4.0.0", + "recharts-scale": "^0.4.4", + "tiny-invariant": "^1.3.1", + "victory-vendor": "^36.6.8" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "react": "^16.0.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/recharts-scale": { + "version": "0.4.5", + "resolved": "https://registry.npmjs.org/recharts-scale/-/recharts-scale-0.4.5.tgz", + "integrity": "sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==", + "dependencies": { + "decimal.js-light": "^2.4.1" + } + }, + "node_modules/recharts/node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dev": true, + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz", + "integrity": "sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.1", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "globalthis": "^1.0.3", + "which-builtin-type": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/refractor": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/refractor/-/refractor-4.8.1.tgz", + "integrity": "sha512-/fk5sI0iTgFYlmVGYVew90AoYnNMP6pooClx/XKqyeeCQXrL0Kvgn8V0VEht5ccdljbzzF1i3Q213gcntkRExg==", + "dependencies": { + "@types/hast": "^2.0.0", + "@types/prismjs": "^1.0.0", + "hastscript": "^7.0.0", + "parse-entities": "^4.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/refractor/node_modules/@types/hast": { + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz", + "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==", + "dependencies": { + "@types/unist": "^2" + } + }, + "node_modules/refractor/node_modules/@types/unist": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz", + "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==" + }, + "node_modules/refractor/node_modules/hast-util-parse-selector": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-3.1.1.tgz", + "integrity": "sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==", + "dependencies": { + "@types/hast": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/refractor/node_modules/hastscript": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-7.2.0.tgz", + "integrity": "sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==", + "dependencies": { + "@types/hast": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-parse-selector": "^3.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.6", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/rehype": { + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/rehype/-/rehype-13.0.1.tgz", + "integrity": "sha512-AcSLS2mItY+0fYu9xKxOu1LhUZeBZZBx8//5HKzF+0XP+eP8+6a5MXn2+DW2kfXR6Dtp1FEXMVrjyKAcvcU8vg==", + "dependencies": { + "@types/hast": "^3.0.0", + "rehype-parse": "^9.0.0", + "rehype-stringify": "^10.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-attr": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/rehype-attr/-/rehype-attr-3.0.3.tgz", + "integrity": "sha512-Up50Xfra8tyxnkJdCzLBIBtxOcB2M1xdeKe1324U06RAvSjYm7ULSeoM+b/nYPQPVd7jsXJ9+39IG1WAJPXONw==", + "dependencies": { + "unified": "~11.0.0", + "unist-util-visit": "~5.0.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://jaywcjlove.github.io/#/sponsor" + } + }, + "node_modules/rehype-autolink-headings": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/rehype-autolink-headings/-/rehype-autolink-headings-7.1.0.tgz", + "integrity": "sha512-rItO/pSdvnvsP4QRB1pmPiNHUskikqtPojZKJPPPAVx9Hj8i8TwMBhofrrAYRhYOOBZH9tgmG5lPqDLuIWPWmw==", + "dependencies": { + "@types/hast": "^3.0.0", + "@ungap/structured-clone": "^1.0.0", + "hast-util-heading-rank": "^3.0.0", + "hast-util-is-element": "^3.0.0", + "unified": "^11.0.0", + "unist-util-visit": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-ignore": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/rehype-ignore/-/rehype-ignore-2.0.2.tgz", + "integrity": "sha512-BpAT/3lU9DMJ2siYVD/dSR0A/zQgD6Fb+fxkJd4j+wDVy6TYbYpK+FZqu8eM9EuNKGvi4BJR7XTZ/+zF02Dq8w==", + "dependencies": { + "hast-util-select": "^6.0.0", + "unified": "^11.0.0", + "unist-util-visit": "^5.0.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://jaywcjlove.github.io/#/sponsor" + } + }, + "node_modules/rehype-parse": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/rehype-parse/-/rehype-parse-9.0.0.tgz", + "integrity": "sha512-WG7nfvmWWkCR++KEkZevZb/uw41E8TsH4DsY9UxsTbIXCVGbAs4S+r8FrQ+OtH5EEQAs+5UxKC42VinkmpA1Yw==", + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-from-html": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-prism-plus": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/rehype-prism-plus/-/rehype-prism-plus-2.0.0.tgz", + "integrity": "sha512-FeM/9V2N7EvDZVdR2dqhAzlw5YI49m9Tgn7ZrYJeYHIahM6gcXpH0K1y2gNnKanZCydOMluJvX2cB9z3lhY8XQ==", "dependencies": { - "pify": "^2.3.0" + "hast-util-to-string": "^3.0.0", + "parse-numeric-range": "^1.3.0", + "refractor": "^4.8.0", + "rehype-parse": "^9.0.0", + "unist-util-filter": "^5.0.0", + "unist-util-visit": "^5.0.0" } }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, + "node_modules/rehype-raw": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/rehype-raw/-/rehype-raw-7.0.0.tgz", + "integrity": "sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==", "dependencies": { - "picomatch": "^2.2.1" + "@types/hast": "^3.0.0", + "hast-util-raw": "^9.0.0", + "vfile": "^6.0.0" }, - "engines": { - "node": ">=8.10.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/recharts": { - "version": "2.12.7", - "resolved": "https://registry.npmjs.org/recharts/-/recharts-2.12.7.tgz", - "integrity": "sha512-hlLJMhPQfv4/3NBSAyq3gzGg4h2v69RJh6KU7b3pXYNNAELs9kEoXOjbkxdXpALqKBoVmVptGfLpxdaVYqjmXQ==", + "node_modules/rehype-rewrite": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/rehype-rewrite/-/rehype-rewrite-4.0.2.tgz", + "integrity": "sha512-rjLJ3z6fIV11phwCqHp/KRo8xuUCO8o9bFJCNw5o6O2wlLk6g8r323aRswdGBQwfXPFYeSuZdAjp4tzo6RGqEg==", "dependencies": { - "clsx": "^2.0.0", - "eventemitter3": "^4.0.1", - "lodash": "^4.17.21", - "react-is": "^16.10.2", - "react-smooth": "^4.0.0", - "recharts-scale": "^0.4.4", - "tiny-invariant": "^1.3.1", - "victory-vendor": "^36.6.8" + "hast-util-select": "^6.0.0", + "unified": "^11.0.3", + "unist-util-visit": "^5.0.0" }, "engines": { - "node": ">=14" + "node": ">=16.0.0" }, - "peerDependencies": { - "react": "^16.0.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0" + "funding": { + "url": "https://jaywcjlove.github.io/#/sponsor" } }, - "node_modules/recharts-scale": { - "version": "0.4.5", - "resolved": "https://registry.npmjs.org/recharts-scale/-/recharts-scale-0.4.5.tgz", - "integrity": "sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==", + "node_modules/rehype-slug": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/rehype-slug/-/rehype-slug-6.0.0.tgz", + "integrity": "sha512-lWyvf/jwu+oS5+hL5eClVd3hNdmwM1kAC0BUvEGD19pajQMIzcNUd/k9GsfQ+FfECvX+JE+e9/btsKH0EjJT6A==", "dependencies": { - "decimal.js-light": "^2.4.1" + "@types/hast": "^3.0.0", + "github-slugger": "^2.0.0", + "hast-util-heading-rank": "^3.0.0", + "hast-util-to-string": "^3.0.0", + "unist-util-visit": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/recharts/node_modules/clsx": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", - "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", - "engines": { - "node": ">=6" + "node_modules/rehype-stringify": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/rehype-stringify/-/rehype-stringify-10.0.0.tgz", + "integrity": "sha512-1TX1i048LooI9QoecrXy7nGFFbFSufxVRAfc6Y9YMRAi56l+oB0zP51mLSV312uRuvVLPV1opSlJmslozR1XHQ==", + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-to-html": "^9.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/redent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", - "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", - "dev": true, + "node_modules/remark-gfm": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.0.tgz", + "integrity": "sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==", "dependencies": { - "indent-string": "^4.0.0", - "strip-indent": "^3.0.0" + "@types/mdast": "^4.0.0", + "mdast-util-gfm": "^3.0.0", + "micromark-extension-gfm": "^3.0.0", + "remark-parse": "^11.0.0", + "remark-stringify": "^11.0.0", + "unified": "^11.0.0" }, - "engines": { - "node": ">=8" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/reflect.getprototypeof": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz", - "integrity": "sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==", - "dev": true, + "node_modules/remark-github-blockquote-alert": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/remark-github-blockquote-alert/-/remark-github-blockquote-alert-1.2.1.tgz", + "integrity": "sha512-qNf2mSAoZgh3Cl23/9Y1L7S4Kbf9NsdHvYK398ab/52yEsDPDU5I4cuTcgDRrdIX7Ltc6RK+KCLRtWkbFnL6Dg==", "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.1", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "globalthis": "^1.0.3", - "which-builtin-type": "^1.1.3" + "unist-util-visit": "^5.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=16" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://jaywcjlove.github.io/#/sponsor" } }, - "node_modules/regenerator-runtime": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + "node_modules/remark-parse": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz", + "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-from-markdown": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", - "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", - "dev": true, + "node_modules/remark-rehype": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.0.tgz", + "integrity": "sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==", "dependencies": { - "call-bind": "^1.0.6", - "define-properties": "^1.2.1", - "es-errors": "^1.3.0", - "set-function-name": "^2.0.1" + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "mdast-util-to-hast": "^13.0.0", + "unified": "^11.0.0", + "vfile": "^6.0.0" }, - "engines": { - "node": ">= 0.4" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-stringify": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz", + "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-to-markdown": "^2.0.0", + "unified": "^11.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, "node_modules/require-directory": { @@ -10032,6 +14490,11 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/robust-predicates": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.2.tgz", + "integrity": "sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==" + }, "node_modules/rollup": { "version": "4.17.2", "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.17.2.tgz", @@ -10096,6 +14559,11 @@ "queue-microtask": "^1.2.2" } }, + "node_modules/rw": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", + "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==" + }, "node_modules/safe-array-concat": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", @@ -10153,8 +14621,7 @@ "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "devOptional": true + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "node_modules/saxes": { "version": "6.0.0", @@ -10369,12 +14836,32 @@ "node": ">=0.10.0" } }, + "node_modules/space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, "node_modules/stackback": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", "dev": true }, + "node_modules/static-browser-server": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/static-browser-server/-/static-browser-server-1.0.3.tgz", + "integrity": "sha512-ZUyfgGDdFRbZGGJQ1YhiM930Yczz5VlbJObrQLlk24+qNHVQx4OlLcYswEUo3bIyNAbQUIUR9Yr5/Hqjzqb4zA==", + "dependencies": { + "@open-draft/deferred-promise": "^2.1.0", + "dotenv": "^16.0.3", + "mime-db": "^1.52.0", + "outvariant": "^1.3.0" + } + }, "node_modules/std-env": { "version": "3.7.0", "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.7.0.tgz", @@ -10388,6 +14875,11 @@ "node": ">=10.0.0" } }, + "node_modules/strict-event-emitter": { + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/strict-event-emitter/-/strict-event-emitter-0.4.6.tgz", + "integrity": "sha512-12KWeb+wixJohmnwNFerbyiBrAlq5qJLwIt38etRtKtmmHyDSoGlIqFE9wx+4IwG0aDjI7GV8tc8ZccjWZZtTg==" + }, "node_modules/string-width": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", @@ -10528,6 +15020,19 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/stringify-entities": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", + "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", + "dependencies": { + "character-entities-html4": "^2.0.0", + "character-entities-legacy": "^3.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, "node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", @@ -10615,6 +15120,19 @@ "integrity": "sha512-WriZw1luRMlmV3LGJaR6QOJjWwgLUTf89OwT2lUOyjX2dJGBwgmIkbcz+7WFZjrZM635JOIR517++e/67CP9dQ==", "dev": true }, + "node_modules/style-mod": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/style-mod/-/style-mod-4.1.2.tgz", + "integrity": "sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw==" + }, + "node_modules/style-to-object": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.6.tgz", + "integrity": "sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA==", + "dependencies": { + "inline-style-parser": "0.2.3" + } + }, "node_modules/styled-jsx": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", @@ -10851,6 +15369,24 @@ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" }, + "node_modules/trim-lines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", + "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/trough": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", + "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, "node_modules/ts-api-utils": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", @@ -10886,6 +15422,11 @@ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" }, + "node_modules/type": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.3.tgz", + "integrity": "sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==" + }, "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", @@ -11042,6 +15583,130 @@ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" }, + "node_modules/unidiff": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unidiff/-/unidiff-1.0.4.tgz", + "integrity": "sha512-ynU0vsAXw0ir8roa+xPCUHmnJ5goc5BTM2Kuc3IJd8UwgaeRs7VSD5+eeaQL+xp1JtB92hu/Zy/Lgy7RZcr1pQ==", + "dependencies": { + "diff": "^5.1.0" + } + }, + "node_modules/unified": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.4.tgz", + "integrity": "sha512-apMPnyLjAX+ty4OrNap7yumyVAMlKx5IWU2wlzzUdYJO9A8f1p9m/gywF/GM2ZDFcjQPrx59Mc90KwmxsoklxQ==", + "dependencies": { + "@types/unist": "^3.0.0", + "bail": "^2.0.0", + "devlop": "^1.0.0", + "extend": "^3.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-filter": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/unist-util-filter/-/unist-util-filter-5.0.1.tgz", + "integrity": "sha512-pHx7D4Zt6+TsfwylH9+lYhBhzyhEnCXs/lbq/Hstxno5z4gVdyc2WEW0asfjGKPyG4pEKrnBv5hdkO6+aRnQJw==", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + } + }, + "node_modules/unist-util-is": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz", + "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-position": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", + "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-position-from-estree": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-2.0.0.tgz", + "integrity": "sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-remove-position": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-5.0.0.tgz", + "integrity": "sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-visit": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-stringify-position": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", + "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz", + "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-parents": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz", + "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, "node_modules/universalify": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", @@ -11137,6 +15802,46 @@ "uuid": "dist/bin/uuid" } }, + "node_modules/vfile": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.1.tgz", + "integrity": "sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-stringify-position": "^4.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-location": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.2.tgz", + "integrity": "sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==", + "dependencies": { + "@types/unist": "^3.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-message": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.2.tgz", + "integrity": "sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, "node_modules/victory-vendor": { "version": "36.9.2", "resolved": "https://registry.npmjs.org/victory-vendor/-/victory-vendor-36.9.2.tgz", @@ -11300,6 +16005,11 @@ } } }, + "node_modules/w3c-keyname": { + "version": "2.2.8", + "resolved": "https://registry.npmjs.org/w3c-keyname/-/w3c-keyname-2.2.8.tgz", + "integrity": "sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==" + }, "node_modules/w3c-xmlserializer": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz", @@ -11320,6 +16030,15 @@ "loose-envify": "^1.0.0" } }, + "node_modules/web-namespaces": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz", + "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, "node_modules/web-streams-polyfill": { "version": "3.3.3", "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz", @@ -11700,6 +16419,23 @@ "node": ">=8" } }, + "node_modules/yjs": { + "version": "13.6.15", + "resolved": "https://registry.npmjs.org/yjs/-/yjs-13.6.15.tgz", + "integrity": "sha512-moFv4uNYhp8BFxIk3AkpoAnnjts7gwdpiG8RtyFiKbMtxKCS0zVZ5wPaaGpwC3V2N/K8TK8MwtSI3+WO9CHWjQ==", + "peer": true, + "dependencies": { + "lib0": "^0.2.86" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=8.0.0" + }, + "funding": { + "type": "GitHub Sponsors ❤", + "url": "https://github.com/sponsors/dmonad" + } + }, "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", @@ -11727,6 +16463,15 @@ "peerDependencies": { "zod": "^3.23.3" } + }, + "node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } } } } diff --git a/package.json b/package.json index 5ff5e0b..a6b1396 100644 --- a/package.json +++ b/package.json @@ -14,9 +14,12 @@ "@clerk/nextjs": "^5.0.8", "@emotion/react": "^11.11.4", "@emotion/styled": "^11.11.5", + "@mdxeditor/editor": "^3.4.1", "@p5-wrapper/next": "^1.0.3", "@p5-wrapper/react": "^4.4.0", "@prisma/client": "^5.13.0", + "@uiw/react-md-editor": "^4.0.4", + "d3": "^7.9.0", "firebase": "^10.12.1", "formidable": "^3.5.1", "framer-motion": "^11.2.4", diff --git a/styles/PieChart.css b/styles/PieChart.css new file mode 100644 index 0000000..7139198 --- /dev/null +++ b/styles/PieChart.css @@ -0,0 +1,11 @@ +.tooltip { + position: absolute; + top: 10px; + left: 10px; + padding: 5px; + background-color: rgba(0, 0, 0, 0.7); + color: white; + border-radius: 3px; + pointer-events: none; + font-size: 14px; +} \ No newline at end of file diff --git a/styles/rotation.scss b/styles/rotation.scss new file mode 100644 index 0000000..dc062cb --- /dev/null +++ b/styles/rotation.scss @@ -0,0 +1,8 @@ +#grayData { + fill: gray; +} + +#redData { + fill: red; + transform: rotate(12deg); +} diff --git a/tsconfig.json b/tsconfig.json index 4cac796..99a2b2d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,6 +12,7 @@ "isolatedModules": true, "jsx": "preserve", "incremental": true, + "types": ["vite/client", "node"], "plugins": [ { "name": "next" @@ -21,6 +22,7 @@ "@/*": ["./*"] } }, + "files": ["globals.d.ts"], "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], "exclude": ["node_modules"] } From 9dd5535c57daf01351f55c67d87c801a6238f13b Mon Sep 17 00:00:00 2001 From: Alessandra Vertrees Date: Sun, 16 Jun 2024 14:15:15 -0400 Subject: [PATCH 3/3] working sunchart with emotions --- .vscode/settings.json | 9 +- app/(dashboard)/feelings/feelings.png | Bin 0 -> 1145394 bytes app/(dashboard)/feelings/markdown/page.tsx | 25 - app/(dashboard)/feelings/page.tsx | 31 +- app/(dashboard)/layout.tsx | 30 +- app/(dashboard)/markdown/page.tsx | 64 + components/FeelingsWheel.tsx | 204 +- components/SequencesSunburst.ts | 4 - data/data.json | 1040 - data/feelings/data.js | 73 + data/feelings/emotions.ts | 32 + data/feelings/feelings.js | 10 + data/sequences-sunburst.json | 13634 ------ package-lock.json | 41963 ++++++++++++++----- package.json | 4 + public/EnergyFields.png | Bin 0 -> 252696 bytes 16 files changed, 32150 insertions(+), 24973 deletions(-) create mode 100644 app/(dashboard)/feelings/feelings.png delete mode 100644 app/(dashboard)/feelings/markdown/page.tsx create mode 100644 app/(dashboard)/markdown/page.tsx delete mode 100644 components/SequencesSunburst.ts delete mode 100644 data/data.json create mode 100644 data/feelings/data.js create mode 100644 data/feelings/emotions.ts create mode 100644 data/feelings/feelings.js delete mode 100644 data/sequences-sunburst.json create mode 100644 public/EnergyFields.png diff --git a/.vscode/settings.json b/.vscode/settings.json index 2e02810..0e6c0b6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,6 @@ { - "typescript.tsdk": "node_modules/typescript/lib", - "editor.formatOnSave": true, - "editor.defaultFormatter": "esbenp.prettier-vscode", -} \ No newline at end of file + "typescript.tsdk": "node_modules/typescript/lib", + "editor.formatOnSave": true, + "editor.defaultFormatter": "esbenp.prettier-vscode", + "WillLuke.nextjs.hasPrompted": true +} diff --git a/app/(dashboard)/feelings/feelings.png b/app/(dashboard)/feelings/feelings.png new file mode 100644 index 0000000000000000000000000000000000000000..c959d0482fa1640ed560bfc72191b40964ac9024 GIT binary patch literal 1145394 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 vG59meh8Ph3J18b!ey#&{@_ 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

bY#@q=MulOB~IsFhkfG<+f4 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℘OItvxUYOJdo*olU*%g%0B3h7bci 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

>4fkzG7JvM9WtvpJ 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 z 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

DaTBmYG<5FoZ`i23@>o~BNI~J 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 Z&#oNHC-Opb;Xk;~4FePXvTKe}{{pQ9Hs1gM literal 0 HcmV?d00001 diff --git a/app/(dashboard)/feelings/markdown/page.tsx b/app/(dashboard)/feelings/markdown/page.tsx deleted file mode 100644 index 8e7bb3c..0000000 --- a/app/(dashboard)/feelings/markdown/page.tsx +++ /dev/null @@ -1,25 +0,0 @@ -//https://contentlayer.dev/ -// "use client" -// import { MDXEditor, MDXEditorMethods } from "@mdxeditor/editor" -// import { useRef } from "react" - -// create a ref to the editor component -// const MarkdownPage = () => { -// const ref = useRef(null) -// return ( -// <> -// -// -// -// -// ) -// } - -// export default MarkdownPage; - - -// import { MDXEditor, headingsPlugin, listsPlugin, quotePlugin, thematicBreakPlugin } from '@mdxeditor/editor' - -// function App() { -// return -// } \ No newline at end of file diff --git a/app/(dashboard)/feelings/page.tsx b/app/(dashboard)/feelings/page.tsx index 96aa546..27e2d51 100644 --- a/app/(dashboard)/feelings/page.tsx +++ b/app/(dashboard)/feelings/page.tsx @@ -1,24 +1,17 @@ +'use client' +import FeelingsWheel from '@/components/FeelingsWheel' +// import SunburstAnyChart from '@/components/Sunburst' import Image from 'next/image' -import dynamic from 'next/dynamic' -import { Suspense } from 'react' - -const EditorComp = dynamic(() => import('@/components/MDXEditor'), { ssr: false }) - -const markdown = ` -Hello **world**! -` - -export default function Home() { +export default function Feelings() { return ( <> -

This is a bare-bones unstyled MDX editor without any plugins and no toolbar. Check the EditorComponent.tsx file for the code.

-
-
-
- - - -
+ {/* feelings wheel */} + ) -} \ No newline at end of file +} diff --git a/app/(dashboard)/layout.tsx b/app/(dashboard)/layout.tsx index daa42d6..ed7b1f1 100644 --- a/app/(dashboard)/layout.tsx +++ b/app/(dashboard)/layout.tsx @@ -1,23 +1,25 @@ -import { UserButton } from "@clerk/nextjs" -import Link from "next/link" +import { UserButton } from '@clerk/nextjs' +import Link from 'next/link' - -const DashboardLayout = ({children}) => { +const DashboardLayout = ({ children }) => { const links = [ - {label: 'home', href: '/' }, - {label: 'journal', href: '/journal'}, - {label: 'history', href: '/history'}, - {label: 'visualizer', href: '/visualizer'}, - {label: 'feelings', href: '/feelings'}, + { label: 'home', href: '/' }, + { label: 'journal', href: '/journal' }, + { label: 'history', href: '/history' }, + { label: 'visualizer', href: '/visualizer' }, + { label: 'feelings', href: '/feelings' }, + { label: 'markdown', href: '/markdown' }, ] return (
-

To enable more features, add the respective plugins to your instance - see the docs for more details.