diff --git a/.vscode/settings.json b/.vscode/settings.json
index a490b61..3d4d142 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,5 +1,9 @@
{
"githubPullRequests.ignoredPullRequestBranches": [
"main"
- ]
+ ],
+ "[python]": {
+ "editor.defaultFormatter": "ms-python.black-formatter"
+ },
+ "python.formatting.provider": "none"
}
\ No newline at end of file
diff --git a/audiodata.csv b/audiodata.csv
new file mode 100644
index 0000000..e16c76d
--- /dev/null
+++ b/audiodata.csv
@@ -0,0 +1 @@
+""
diff --git a/nulrdcscripts/staging/vqc/QCScript.py b/nulrdcscripts/staging/vqc/QCScript.py
index e69de29..53cefc3 100644
--- a/nulrdcscripts/staging/vqc/QCScript.py
+++ b/nulrdcscripts/staging/vqc/QCScript.py
@@ -0,0 +1,8 @@
+import videoanalyses.fbyfYUV as fbyfYUV
+from setupsteps import setup
+
+videoBitDepth = setup.setVideoBitDepth("--10bit")
+videoBitDepth = setup.setvideobitdepthstandard(videoBitDepth)
+videodata = "data\data.txt"
+
+errors = fbyfYUV.checkerrors(videodata, videoBitDepth)
diff --git a/nulrdcscripts/staging/vqc/README.md b/nulrdcscripts/staging/vqc/__init__.py
similarity index 100%
rename from nulrdcscripts/staging/vqc/README.md
rename to nulrdcscripts/staging/vqc/__init__.py
diff --git a/nulrdcscripts/staging/vqc/data/ReferenceData10Bit.txt b/nulrdcscripts/staging/vqc/data/ReferenceData10Bit.txt
new file mode 100644
index 0000000..6aa84be
--- /dev/null
+++ b/nulrdcscripts/staging/vqc/data/ReferenceData10Bit.txt
@@ -0,0 +1,36 @@
+10 Bit Data Ranges for Average Videos
+
+Digital Luma Range: 64-940
+Digital Chroma Range: 64 - 960
+Ideal U & V Range: 340 - 680
+Yav: ~512
+Yrang: ~516 - 876
+Uav: ~512
+Vav: ~512
+TOUT: 0 - 0.009
+TOUTc: <10
+SAT Ideal Range: 0 - 88.7
+SATb: <1000 frames
+SATi: <1000 frames
+Hue Ideal Range: 480 - 588 (for skin tones)
+BRNGav: <0.02
+BRNGc: <1000
+MSEf: ~0
+MSEfY: <10
+VREP Ideal: 0
+
+Y Channel Range: 0-1020 IRE
+Y Channel Ideal Range: 64 - 940 IRE
+ Y LOW : 64 IRE
+ Y AVG : 512 IRE
+ Y HIGH : 940 IRE
+
+U Channel Ideal Range: 340 - 680 IRE
+V Channel Ideal Range: 340 - 680 IRE
+
+
+YUV Diff : Closer to 0 the better
+
+SAT Ideal RAnge: 0 - 354.8
+
+
diff --git a/nulrdcscripts/staging/vqc/ReferenceData.txt b/nulrdcscripts/staging/vqc/data/__init__.py
similarity index 100%
rename from nulrdcscripts/staging/vqc/ReferenceData.txt
rename to nulrdcscripts/staging/vqc/data/__init__.py
diff --git a/nulrdcscripts/staging/vqc/data/dataframe.py b/nulrdcscripts/staging/vqc/data/dataframe.py
new file mode 100644
index 0000000..45179bd
--- /dev/null
+++ b/nulrdcscripts/staging/vqc/data/dataframe.py
@@ -0,0 +1,10 @@
+import pandas as pd
+
+csv = "Video8BitValues.csv"
+
+df = pd.read_csv(csv, index_col="criteria")
+criteriaToCheck = "brngout"
+criteria = "uhigh"
+extraction = df.at[criteria, criteriaToCheck]
+
+print(extraction)
diff --git a/nulrdcscripts/staging/vqc/data/severityLevels.py b/nulrdcscripts/staging/vqc/data/severityLevels.py
new file mode 100644
index 0000000..0723dfa
--- /dev/null
+++ b/nulrdcscripts/staging/vqc/data/severityLevels.py
@@ -0,0 +1,4 @@
+vrep = "CRITICAL"
+tout = "CRITICAL"
+brngout = "MODERATE"
+clipping = "CRITICAL"
diff --git a/nulrdcscripts/staging/vqc/data/test.py b/nulrdcscripts/staging/vqc/data/test.py
new file mode 100644
index 0000000..a54e870
--- /dev/null
+++ b/nulrdcscripts/staging/vqc/data/test.py
@@ -0,0 +1,90 @@
+import videovalues10Bit
+
+videodata = "baddata.csv"
+
+
+def runLOW(criteria):
+ criteria = criteria + "low"
+ return criteria
+
+
+def runHIGH(criteria):
+ criteria = criteria + "high"
+ return criteria
+
+
+def checkLOWHIGH(videodata, videoBitDepth, fullCriteria):
+ criteriaBRNG = videoBitDepth.get(fullCriteria["BRNG"])
+ criteriaClipping = videoBitDepth.get(fullCriteria["clipping"])
+ selectColumns = "" + fullCriteria + "," + "Frame Time" + ""
+ BRNGErrors = setAndRunBRNG(criteriaBRNG, fullCriteria, selectColumns, videodata)
+ clippingErrors = setAndRunClipping(
+ criteriaClipping, fullCriteria, selectColumns, videodata
+ )
+
+ if BRNGErrors.isEmpty and clippingErrors.isEmpty:
+ pass
+ elif BRNGErrors.isEmpty or clippingErrors.isEmpty:
+ if BRNGErrors.isEmpty:
+ videoYUVErrors = clippingErrors
+ else:
+ videoYUVErrors = BRNGErrors
+ else:
+ videoYUVErrors = [clippingErrors, BRNGErrors]
+ return videoYUVErrors
+
+
+def setAndRunClipping(criteria, criteriaClipping, selectColumns, videodata):
+ criteriaEquation = "" + criteria + "==" + criteriaClipping + ""
+ clippingErrors = {}
+ subDF = videodata[[selectColumns]]
+
+ clippingErrors = subDF.query(criteriaEquation)
+ if subDF.empty:
+ pass
+ else:
+ if criteria.contains("low"):
+ errortype = "Low Clipping"
+ elif criteria.contains("high"):
+ errortype = "High Clipping"
+ clippingErrors.assign(errortype)
+
+ return clippingErrors
+
+
+def setAndRunBRNG(criteria, criteriaBRNG, selectColumns, videodata):
+ if criteria.contains("low"):
+ firstOp = "=<"
+ clipVal = 0
+ elif criteria.contains("high"):
+ firstOp = ">="
+ clipVal = 1023
+ criteriaEquation = (
+ "" + criteria + firstOp + criteriaBRNG + "&" + criteria + "!=" + clipVal + ""
+ )
+ BRNGErrors = {}
+ subDF = videodata[[selectColumns]]
+
+ BRNGErrors = subDF.query(criteriaEquation)
+ if BRNGErrors.isEmpty:
+ pass
+ else:
+ if criteria.contains("low"):
+ errortype = "Low BRNG"
+ elif criteria.contains("high"):
+ errortype = "High BRNG"
+ BRNGErrors.assign(errortype)
+ return BRNGErrors
+
+
+def check():
+ videodata = "baddata.csv"
+ criteria = "Y"
+ videoBitDepth = videovalues10Bit
+ fullCriteria = runLOW(criteria)
+ checkLOWHIGH(videodata, videoBitDepth, fullCriteria)
+ fullCriteria = runHIGH(criteria)
+ checkLOWHIGH(videodata, videoBitDepth, fullCriteria)
+
+
+check()
diff --git a/nulrdcscripts/staging/vqc/docs/continue.py b/nulrdcscripts/staging/vqc/docs/continue.py
new file mode 100644
index 0000000..05481c3
--- /dev/null
+++ b/nulrdcscripts/staging/vqc/docs/continue.py
@@ -0,0 +1,59 @@
+import pandas as pd
+import xml.etree.ElementTree as etree
+import cleaners
+
+audiodata = {}
+videodata = {}
+framenumberA = 0
+framenumberV = 0
+
+
+file = input("file")
+data = "data.json"
+tree = etree.parse(file)
+root = tree.getroot()
+
+
+for event, elem in etree.iterparse(file, events=["start", "end"]):
+ if event == "start":
+ if elem.tag == "frame":
+ if elem.get("media_type") == "audio":
+ framenumberA = framenumberA + 1
+ frametime = elem.get("pkt_pts_time")
+ audiodata[framenumberA] = {}
+ for tag in elem.iter("tag"):
+ criteria = tag.attrib["key"]
+ criteria = cleaners.criteriacleaner(criteria)
+ value = tag.attrib["value"]
+ audiodata[framenumberA]["Frame Time"] = float(frametime)
+ audiodata[framenumberA][criteria] = value
+ else:
+ pass
+ else:
+ pass
+ elif event == "end":
+ elem.clear()
+
+
+for event, elem in etree.iterparse(file, events=["end"]):
+ if event == "end":
+ if elem.tag == "frame":
+ if elem.get("media_type") == "video":
+ framenumberV = framenumberV + 1
+ frametime = elem.get("pkt_pts_time")
+ videodata[framenumberV] = {}
+ for tag in elem.iter("tag"):
+ criteria = tag.attrib["key"]
+ criteria = cleaners.criteriacleaner(criteria)
+ value = tag.attrib["value"]
+ videodata[framenumberV]["Frame Time"] = float(frametime)
+ videodata[framenumberV][criteria] = float(value)
+ elem.clear()
+
+dfAudio = pd.DataFrame.from_dict(audiodata)
+dfAudio = dfAudio.transpose()
+dfAudio.to_csv("audiodata.csv", sep=",")
+
+dfVideo = pd.DataFrame.from_dict(videodata)
+dfVideo = dfVideo.transpose()
+dfVideo.to_csv("videodatashort.csv", sep=",")
diff --git a/nulrdcscripts/staging/vqc/docs/summarizationStats.md b/nulrdcscripts/staging/vqc/docs/summarizationStats.md
new file mode 100644
index 0000000..db4854b
--- /dev/null
+++ b/nulrdcscripts/staging/vqc/docs/summarizationStats.md
@@ -0,0 +1,36 @@
+## Standards from QC Tools that have been altered for this script
+
+|Criteria|Original Value|
+|:---:|:---:|
+|TOUTc|<10 frames|
+|SATb|<1000 frames|
+|SATi|<1000 frames|
+|BRNGc|<1000 frames|
+|MSEfY|<10 frames|
+
+
+## Knowns (rounded frames per second)
+
+30 frames/sec
+3,600 sec/hr
+108,000 frames/hr
+
+### Calculations for TOUTc and MSEfY
+Equation: 10/((3600*timeHRs) \* 30) (This makes no sense as the values are E-5)
+
+### Calculations for SATb, SATi, BRNGc
+Equation: 1000/((3600*timeHRs) \* 30)
+
+#### If we can assume that the 1000 benchmark value came from a video in the range of 1-2 hrs
+
+|Time|Percent Error Allowed Exact| Percent Error Allowed Rounded|
+|:---:|:---:|:---:|
+1 hr|0.92592593%|0.93%
+1.25 hr|0.74074074%|0.74%
+1.5 hr|0.61728395%|0.62%
+1.75 hr| 0.52910053%|0.53%
+2 hr|0.4629629%|0.46%
+||
+AVG| 0.65520282%|0.66%
+
+Theoretically 0.66% of the videos frames are allowed to be greater
\ No newline at end of file
diff --git a/nulrdcscripts/staging/vqc/parseandclean/__init__.py b/nulrdcscripts/staging/vqc/parseandclean/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/nulrdcscripts/staging/vqc/parseandclean/schema.xsd b/nulrdcscripts/staging/vqc/parseandclean/schema.xsd
new file mode 100644
index 0000000..a29715b
--- /dev/null
+++ b/nulrdcscripts/staging/vqc/parseandclean/schema.xsd
@@ -0,0 +1,409 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/nulrdcscripts/staging/vqc/parseandclean/validate.py b/nulrdcscripts/staging/vqc/parseandclean/validate.py
new file mode 100644
index 0000000..0338a57
--- /dev/null
+++ b/nulrdcscripts/staging/vqc/parseandclean/validate.py
@@ -0,0 +1,7 @@
+import xmlschema
+from pprint import pprint
+
+file = "example.xml"
+schema = xmlschema.XMLSchema("schema.xsd")
+
+schema.validate(file)
diff --git a/nulrdcscripts/staging/vqc/setupsteps/__init__.py b/nulrdcscripts/staging/vqc/setupsteps/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/nulrdcscripts/staging/vqc/testbuilds/example.xml b/nulrdcscripts/staging/vqc/testbuilds/example.xml
new file mode 100644
index 0000000..a52173b
--- /dev/null
+++ b/nulrdcscripts/staging/vqc/testbuilds/example.xml
@@ -0,0 +1,108983 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/nulrdcscripts/staging/vqc/videoanalyses/__init__.py b/nulrdcscripts/staging/vqc/videoanalyses/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/nulrdcscripts/staging/vqc/videoanalyses/errortiers.py b/nulrdcscripts/staging/vqc/videoanalyses/errortiers.py
new file mode 100644
index 0000000..99a60b0
--- /dev/null
+++ b/nulrdcscripts/staging/vqc/videoanalyses/errortiers.py
@@ -0,0 +1,56 @@
+import json
+tier1errors = ["SAT", "VREP", "BRNG"]
+tier2errors = [""]
+def errorsvideo (summaryvideoerrors):
+ if summaryvideoerrors.contains(tier1errors):
+ pass
+
+
+
+
+
+
+
+
+
+failstier1 = {}
+failstier2 = {}
+failstier3 = {}
+videoreportbycriteria = [failstier1, failstier2, failstier3]
+# A fail for tier one is a critical failure and should be top priority for assessment
+
+def tier1error (criteria, description, value):
+ failstier1 = {criteria[value, description]}
+ return failstier1
+
+# A fail for tier two is a moderate failure, requires attention but is not as severe as a tier one
+
+def tier2error(criteria, description, value):
+ failstier2 = {criteria[value, description]}
+ return failstier2
+
+# A fail for tier three is a mild error that is of the lowest priority for assessment, but should still be assessed
+
+def tier3error (criteria, description, value):
+ failstier3 = {criteria[value, description]}
+ return failstier3
+
+
+def assignVideoSummaryTiers (failstier1,failstier2,failstier3):
+ if failstier1:
+ videosummaryreport = "Error Rank: Critical - High priority for assessment"
+ elif failstier2:
+ videosummaryreport = "Error Rank: Moderate - Mid-level priority for assessment"
+ elif failstier3:
+ videosummaryreport = "Error Rank: Mild - Lowest priority for assessment"
+ else:
+ videosummaryreport = "Cleared Automated QC"
+ return videosummaryreport
+
+
+
+
+
+
+
+# These results will now be pooled into a JSON file that will list the ranking of videos criterias as well as an overall score.
\ No newline at end of file
diff --git a/nulrdcscripts/staging/vqc/videoanalyses/fbyfTOUTVREP.py b/nulrdcscripts/staging/vqc/videoanalyses/fbyfTOUTVREP.py
new file mode 100644
index 0000000..3e10b23
--- /dev/null
+++ b/nulrdcscripts/staging/vqc/videoanalyses/fbyfTOUTVREP.py
@@ -0,0 +1,75 @@
+import pandas as pd
+
+levels = ["ideal", "max"]
+criteria = ["tout", "vrep"]
+level = 0
+item = 0
+
+videodata = "YHighData.csv"
+
+
+def runCriteria(videoBitDepth, videodata):
+ while item <= len(criteria):
+ criteriaToCheck = criteria[item]
+ errors = runLevels(videoBitDepth, videodata, criteriaToCheck)
+ item = item + 1
+ print(errors)
+
+
+def runLevels(videoBitDepth, videodata, criteriaToCheck):
+ while level <= len(levels):
+ levelToCheck = levels[level]
+ errors = setUpCheckErrors(
+ levelToCheck, criteriaToCheck, videoBitDepth, videodata
+ )
+ level = level + 1
+ return errors
+
+
+def setUpCheckErrors(levelToCheck, criteriaToCheck, videoBitDepth, videodata):
+ criteriaValue = videoBitDepth.at[criteriaToCheck, levelToCheck]
+ criteria = criteriaToCheck + levelToCheck
+ data = setColumn(videodata, criteriaToCheck)
+ equationSign = setEquationSign(criteriaValue)
+ equation = setEquation(equationSign, criteriaToCheck, criteriaValue)
+ errorType = setErrorType(criteriaToCheck)
+ errors = checkErrors(equation, data, errorType)
+ return errors
+
+
+def checkErrors(Equation, data, errorType):
+ errors = data.query(Equation)
+ errors = assignETColumn(data, errorType)
+ print(errors)
+ return errors
+
+
+def setEquation(equationSign, criteriaValue, criteria):
+ equation = "" + criteria + equationSign + criteriaValue + ""
+ return equation
+
+
+def setEquationSign(criteriaValue):
+ # Ideal Value
+ if criteriaValue == 0:
+ equationSign = "=="
+ # Max Value
+ elif criteriaValue > 0:
+ equationSign = ">="
+ return equationSign
+
+
+def setColumn(criteriaToCheck, videodata):
+ viewColumns = "" + criteriaToCheck + "Frame Time" + "Frame" + ""
+ data = videodata(viewColumns)
+ return data
+
+
+def setErrorType(criteriaToCheck):
+ errorType = criteriaToCheck
+ return errorType
+
+
+def assignETColumn(data, errorType):
+ data = data.assign(ErrorType=errorType)
+ return data
diff --git a/nulrdcscripts/staging/vqc/videoanalyses/fbyfYUV.py b/nulrdcscripts/staging/vqc/videoanalyses/fbyfYUV.py
new file mode 100644
index 0000000..0045c62
--- /dev/null
+++ b/nulrdcscripts/staging/vqc/videoanalyses/fbyfYUV.py
@@ -0,0 +1,107 @@
+import pandas as pd
+
+
+def checkerrors(videodata, videoBitDepth):
+ prefix = ["y", "u", "v"]
+ value = 0
+ videoerrors = pd.DataFrame()
+ while value < len(prefix):
+ prefix = prefix[value]
+ if prefix == "y":
+ videoerrors = check(videodata, videoBitDepth, videoerrors, prefix)
+ elif prefix == "u":
+ videoerrors = check(videodata, videoBitDepth, videoerrors, prefix)
+ if prefix == "v":
+ videoerrors = check(videodata, videoBitDepth, videoerrors, prefix)
+ value = value + 1
+ return videoerrors
+
+
+def check(prefix, videodata, videoBitDepth, videoerrors):
+ fullCriteria = runLOW(prefix)
+ checkLOWHIGH(videodata, videoBitDepth, fullCriteria, videoerrors)
+ fullCriteria = runHIGH(prefix)
+ checkLOWHIGH(videodata, videoBitDepth, fullCriteria, videoerrors)
+
+
+def runLOW(prefix):
+ criteria = prefix + "low"
+ return criteria
+
+
+def runHIGH(prefix):
+ criteria = prefix + "high"
+ return criteria
+
+
+def checkLOWHIGH(videodata, videoBitDepth, fullCriteria, videoerrors):
+ valuecriteria = str(fullCriteria)
+ criteriaBRNG = videoBitDepth.loc[fullCriteria, "brngout"]
+ criteriaClipping = videoBitDepth.loc[fullCriteria, "clipping"]
+ selectColumns = "" + fullCriteria + "," + "Frame Time" + ""
+ BRNGErrors = setAndRunBRNG(criteriaBRNG, fullCriteria, selectColumns, videodata)
+ clippingErrors = setAndRunClipping(
+ criteriaClipping, fullCriteria, selectColumns, videodata
+ )
+
+ if BRNGErrors.isEmpty and clippingErrors.isEmpty:
+ pass
+ elif BRNGErrors.isEmpty or clippingErrors.isEmpty:
+ if BRNGErrors.isEmpty:
+ videoerrors = clippingErrors
+ else:
+ videoerrors = BRNGErrors
+ else:
+ videoerrors = [clippingErrors, BRNGErrors]
+ return videoerrors
+
+
+def setAndRunClipping(fullCriteria, criteriaClipping, selectColumns, videodata):
+ criteriaEquation = "" + fullCriteria + "==" + criteriaClipping + ""
+ clippingErrors = {}
+ subDF = videodata[[selectColumns]]
+
+ clippingErrors = subDF.query(criteriaEquation)
+ if subDF.empty:
+ pass
+ else:
+ if fullCriteria.contains("low"):
+ errortype = "Low Clipping"
+ elif fullCriteria.contains("high"):
+ errortype = "High Clipping"
+ clippingErrors.assign(errortype)
+
+ return clippingErrors
+
+
+def setAndRunBRNG(fullCriteria, criteriaBRNG, selectColumns, videodata):
+ if fullCriteria.contains("low"):
+ firstOp = "=<"
+ clipVal = 0
+ elif fullCriteria.contains("high"):
+ firstOp = ">="
+ clipVal = 1023
+ criteriaEquation = (
+ ""
+ + fullCriteria
+ + firstOp
+ + criteriaBRNG
+ + "&"
+ + fullCriteria
+ + "!="
+ + clipVal
+ + ""
+ )
+ BRNGErrors = {}
+ subDF = videodata[[selectColumns]]
+
+ BRNGErrors = subDF.query(criteriaEquation)
+ if BRNGErrors.isEmpty:
+ pass
+ else:
+ if fullCriteria.contains("low"):
+ errortype = "Low BRNG"
+ elif fullCriteria.contains("high"):
+ errortype = "High BRNG"
+ BRNGErrors.assign(errortype)
+ return BRNGErrors
diff --git a/nulrdcscripts/staging/vqc/videoanalyses/overallstatistics.py b/nulrdcscripts/staging/vqc/videoanalyses/overallstatistics.py
new file mode 100644
index 0000000..3f4f90d
--- /dev/null
+++ b/nulrdcscripts/staging/vqc/videoanalyses/overallstatistics.py
@@ -0,0 +1,35 @@
+import pandas as pd
+
+
+# Gathers general video data for summary report
+def videodatastatistics(videodata):
+ videostats = videodata.describe()
+ return videostats
+
+# Outputs summary video stats as a dictionary - which will be used for comparison analysis
+def videostatstodict (videostats):
+ summarydatavideodict = videostats.to_dict()
+ return summarydatavideodict
+
+#Outputs summary video stats as a csv
+def videostatstocsv (videostats):
+ summarydatavideocsv = videostats.to_csv("videosummarystats.csv", index=True)
+ return summarydatavideocsv
+
+#Gathers general audio data for summary report
+def audiodatastatistics(audiodata):
+ audiodata = audiodata.describe()
+ return audiodata
+
+#Output summary audio stats as dictionary - which will be used for comparison analysis
+def audiostatstodict (audiostats):
+ summarydataaudiodict = audiostats.to_dict()
+ return summarydataaudiodict
+
+#Output summary audio stats as a csv
+def audiostatstocsv (audiostats):
+ summarydataaudiocsv = audiostats.to_csv("audiosummarystats.csv", index = True)
+ return summarydataaudiocsv
+
+
+
diff --git a/nulrdcscripts/staging/vqc/videoanalyses/specificerrorchecks.py b/nulrdcscripts/staging/vqc/videoanalyses/specificerrorchecks.py
new file mode 100644
index 0000000..b31a2ff
--- /dev/null
+++ b/nulrdcscripts/staging/vqc/videoanalyses/specificerrorchecks.py
@@ -0,0 +1,53 @@
+# Checks for TBC errors
+
+def checkVideoGainError ():
+ pass
+ # will use the Y AVG (range?) and look for dramatic peaks
+
+def checkChrominanceNoiseBW ():
+ pass
+ # will use the U and V readings to make sure that this is at zero as this is solely for BW video
+
+def checkColorDropout ():
+ pass
+ # will use the U and V readings to make sure that there is activity. Solely for color video
+
+def checkChrominanceNoiseColor ():
+ pass
+ # will look for abrupt spikes in Min and Max values for UV
+
+def checkLuminanceNoise ():
+ pass
+ # will use the BRNG and TOUT values & Y High and Low.
+
+# Checks for mechanical errors
+
+def checkTrackingError ():
+ pass
+ # will use TOUT and VREP (VREP rules out color errors)
+
+def checkVideoHeadClog ():
+ pass
+ # will use PSNRf and MSEf along with the YUV difference. Lower PSNRf, higher MSEf, and large difference and prolonged spikes in YUV
+
+# Checks for tape damage
+
+def checkDropouts ():
+ pass
+ # VREP and TOUT
+
+def standardChecks ():
+ checkVideoGainError()
+ checkLuminanceNoise()
+ checkTrackingError()
+ checkVideoHeadClog()
+ checkDropouts()
+
+def checkBWVideo():
+ checkChrominanceNoiseBW()
+ standardChecks()
+
+def checkColorVideo ():
+ checkChrominanceNoiseColor()
+ checkColorDropout()
+ standardChecks()
\ No newline at end of file
diff --git a/nulrdcscripts/staging/vqc/videoanalyses/videoanalysis.py b/nulrdcscripts/staging/vqc/videoanalyses/videoanalysis.py
new file mode 100644
index 0000000..5154e15
--- /dev/null
+++ b/nulrdcscripts/staging/vqc/videoanalyses/videoanalysis.py
@@ -0,0 +1,65 @@
+import pandas as pd
+from argparser import args
+
+videoerrors = {}
+
+
+def checkAllVideo(videostats, videoBitDepth):
+ MINsCheck(videostats, videoBitDepth)
+ LOWsCheck(videostats, videoBitDepth)
+ AVGsCheck(videostats, videoBitDepth)
+ HIGHsCheck(videostats, videoBitDepth)
+ MAXsCheck(videostats, videoBitDepth)
+
+ def check(criteria, videostats, videoBitDepth):
+ setcriteria = videoBitDepth.get[criteria]
+ lowEnd = videostats.at[3, criteria]
+ highEnd = videostats.at[8, criteria]
+ if highEnd < setcriteria > lowEnd:
+ values = [lowEnd, highEnd]
+ videoerrors[criteria] = values
+ else:
+ pass
+ return videoerrors
+
+ def MINsCheck():
+ criteriaprefix = ["Y", "U", "V", "SAT"]
+ i = 0
+ while i < len(criteriaprefix):
+ criteria = criteriaprefix[i] + "MIN"
+ check(criteria)
+ i = i + 1
+
+ def MAXsCheck():
+ criteriaprefix = ["Y", "U", "V", "SAT", "BRNG", "VREP", "TOUT"]
+ i = 0
+ while i < len(criteriaprefix):
+ criteria = criteriaprefix[i] + "MAX"
+ check(criteria)
+ i = i + 1
+
+ def AVGsCheck():
+ criteriaprefix = ["Y", "U", "V", "SAT"]
+ i = 0
+ while i < len(criteriaprefix):
+ criteria = criteriaprefix[i] + "AVG"
+ check(criteria)
+ i = i + 1
+
+ def LOWsCheck():
+ criteriaprefix = ["Y", "U", "V", "SAT"]
+ i = 0
+ while i < len(criteriaprefix):
+ criteria = criteriaprefix[i] + "LOW"
+ check(criteria)
+ i = i + 1
+
+ def HIGHsCheck():
+ criteriaprefix = ["Y", "U", "V", "SAT"]
+ i = 0
+ while i < len(criteriaprefix):
+ criteria = criteriaprefix[i] + "HIGH"
+ check(criteria)
+ i = i + 1
+
+ return videoerrors
diff --git a/nulrdcscripts/tools/ffprobedata/try.py b/nulrdcscripts/tools/ffprobedata/try.py
new file mode 100644
index 0000000..630c8df
--- /dev/null
+++ b/nulrdcscripts/tools/ffprobedata/try.py
@@ -0,0 +1,26 @@
+from params import args
+import subprocess
+import os
+
+
+def swapSlashes(item):
+ fixed_path = item.replace("\\", "/")
+ fixed_path = fixed_path.replace(":", "\\\\:")
+ return fixed_path
+
+
+norm_input = os.path.normpath(args.input_path)
+fixed_input = swapSlashes(norm_input)
+filepath = norm_input.replace(".mp4", "_framebyframe.xml")
+command = [
+ args.ffprobe_path,
+ "-f",
+ "lavfi",
+ "movie=" + fixed_input + ",signalstats='stat=tout+vrep+brng'",
+ "-show_frames",
+ "-of",
+ "xml",
+]
+with open(filepath, "w") as f:
+ subprocess.run(command, stdout=f)
+ f.close()
diff --git a/nulrdcscripts/vproc/checks.py b/nulrdcscripts/vproc/checks.py
index e1c1b00..b3e373d 100644
--- a/nulrdcscripts/vproc/checks.py
+++ b/nulrdcscripts/vproc/checks.py
@@ -2,6 +2,7 @@
def inventory_check(item_csvDict):
+ """Checks if item is in the inventory csv provided"""
if item_csvDict is None:
print("unable to locate file in csv data!")
inventoryCheck = "FAIL"
diff --git a/nulrdcscripts/vproc/docs/FFMPEGArgumentsDecoded.md b/nulrdcscripts/vproc/docs/FFMPEGArgumentsDecoded.md
new file mode 100644
index 0000000..e69de29
diff --git a/nulrdcscripts/vqc/.gitignore b/nulrdcscripts/vqc/.gitignore
new file mode 100644
index 0000000..b5f5686
--- /dev/null
+++ b/nulrdcscripts/vqc/.gitignore
@@ -0,0 +1,12 @@
+# Prevents CSVs from being uploaded to GitHub and wasting space
+*.csv
+*.conda
+*.vscode
+
+
+# Exceptions
+!Video8BitValues.csv
+!Video10BitValues.csv
+!testdata.csv
+!data.csv
+!ExampleVideoDataCSV.csv
\ No newline at end of file
diff --git a/nulrdcscripts/vqc/ExampleVideoDataCSV.csv b/nulrdcscripts/vqc/ExampleVideoDataCSV.csv
new file mode 100644
index 0000000..9d5f620
--- /dev/null
+++ b/nulrdcscripts/vqc/ExampleVideoDataCSV.csv
@@ -0,0 +1,596 @@
+Frame,Frame Time,ymin,ylow,yavg,yhigh,ymax,umin,ulow,uavg,uhigh,umax,vmin,vlow,vavg,vhigh,vmax,vdif,udif,ydif,satmin,satlow,satavg,sathigh,satmax,huemed,hueavg,tout,vrep,brng,vbitdepth,ubitdepth,ybitdepth,psnr mse v,psnr mse u,psnr mse y,psnr psnr v,psnr psnr u,psnr psnr y,psnr mse avg,psnr psnr avg
+1,0,4,130,308.942,607,927,428,496,504.94,512,538,477,498,507.424,513,552,0,0,0,0,2,9.86364,21,89,71,88.089,0.024217,0,0.015409,10,10,10,19.83686,42.1919,2513.076,47.22279,43.94522,26.19546,1272.045,29.15249
+2,0.033367,4,131,309.752,608,921,428,496,504.98,512,537,476,499,507.769,514,558,3.41559,4.96636,12.1676,0,2,9.68,21,88,71,90.6784,0.022391,0,0.015378,10,10,10,19.50628,43.33405,3734.214,47.29577,43.82922,24.47552,1882.817,27.44943
+3,0.066733,4,132,310.883,610,928,424,496,504.836,512,551,477,498,507.624,514,540,3.37086,4.95113,13.2429,0,2,9.85045,21,91,71,88.3575,0.022031,0,0.015366,10,10,10,19.36941,44.97586,3934.834,47.32635,43.66772,24.24825,1983.503,27.22318
+4,0.1001,4,132,310.724,611,935,423,496,504.78,512,538,474,498,507.526,514,544,3.34909,4.90158,15.3419,0,2,9.95884,22,93,71,88.6069,0.020968,0,0.015412,10,10,10,19.29672,43.26735,3825.373,47.34268,43.83591,24.37078,1928.328,27.34571
+5,0.133467,4,131,310.531,610,930,428,496,504.841,512,586,476,498,507.5,514,569,3.40554,4.98656,12.4051,0,2,9.96192,22,93,71,88.7756,0.022785,0,0.015478,10,10,10,19.14269,42.26197,2653.343,47.37748,43.93802,25.95958,1342.023,28.91991
+6,0.166834,4,131,310.395,607,921,428,496,504.634,512,531,478,499,507.709,514,538,3.36287,4.94647,16.7365,0,2,9.93983,21,89,71,88.8404,0.021091,0,0.015444,10,10,10,18.66174,43.39672,1520.878,47.48799,43.82295,28.37657,775.9535,31.29916
+7,0.2002,4,132,311.023,608,934,428,496,504.591,512,537,478,499,507.761,514,536,3.32238,4.99223,15.3041,0,2,9.97369,21,89,71,89.4918,0.022828,0,0.015358,10,10,10,18.84257,44.36812,2927.2,47.44611,43.7268,25.53299,1479.403,28.49665
+8,0.233567,4,131,311.273,609,933,424,496,504.946,512,539,479,499,507.809,514,550,3.39652,5.05618,10.2234,0,2,9.7502,21,91,71,91.9165,0.022377,0,0.015412,10,10,10,18.53213,43.89336,3469.918,47.51826,43.77353,24.79432,1750.566,27.76573
+9,0.266934,4,131,310.8,610,929,422,496,504.71,512,542,476,499,507.631,514,593,3.44408,5.06487,10.0148,0,2,9.98477,21,93,71,88.5099,0.02384,0,0.015421,10,10,10,20.85815,45.36344,3481.938,47.00475,43.63045,24.7793,1757.524,27.7485
+10,0.3003,4,131,309.571,608,933,422,496,504.765,512,538,476,499,507.599,513,596,3.40333,4.99396,12.3685,0,2,9.87782,21,93,71,87.9736,0.024126,0,0.015423,10,10,10,19.3003,43.15958,2999.826,47.34187,43.84674,25.42655,1515.528,28.39187
+11,0.333667,4,130,310.109,609,928,428,496,504.79,512,535,478,498,507.5,513,537,3.43301,5.01963,11.7921,0,2,9.94719,22,89,71,88.4381,0.023811,0,0.015349,10,10,10,18.58578,43.08672,2650.142,47.5057,43.85408,25.96482,1340.489,28.92488
+12,0.367034,4,131,310.94,610,922,428,496,505.067,512,536,477,498,507.503,514,538,3.35742,4.90758,12.2586,0,2,9.74991,21,89,71,89.583,0.020462,0,0.015398,10,10,10,20.24827,43.67962,3987.236,47.13363,43.79472,24.19079,2009.6,27.16642
+13,0.4004,4,132,311.477,611,936,424,496,505.172,512,533,478,498,507.373,513,537,3.37623,4.8989,15.306,0,2,9.7931,21,92,71,89.8129,0.016895,0,0.015286,10,10,10,20.17976,43.63437,3667.58,47.14835,43.79923,24.55372,1849.744,27.5264
+14,0.433767,4,132,310.458,610,934,422,497,505.131,512,557,474,498,507.382,513,602,3.42758,4.84555,15.0427,0,2,9.73171,21,100,70,88.166,0.02007,0,0.015338,10,10,10,19.89446,42.65729,3682.901,47.21019,43.89758,24.53561,1857.088,27.50919
+15,0.467134,4,133,311.212,611,931,424,496,505.298,512,532,476,498,507.475,513,558,3.41748,4.9328,14.0674,0,2,9.62247,21,91,71,91.0375,0.022188,0,0.015358,10,10,10,19.32188,42.93194,3448.693,47.33702,43.86971,24.82097,1739.91,27.79225
+16,0.500501,4,132,311.511,611,934,423,497,505.536,513,535,474,498,507.586,514,572,3.40465,4.94655,11.4614,0,2,9.4513,21,94,71,92.3462,0.023085,0,0.015358,10,10,10,19.68785,42.67381,2978.398,47.25553,43.8959,25.45769,1504.79,28.42275
+17,0.533867,4,131,310.026,609,934,407,497,505.534,512,546,476,498,507.605,514,538,3.3532,4.84138,11.8953,0,2,9.37626,21,107,71,92.0469,0.02382,0,0.015361,10,10,10,18.96863,44.01701,2815.551,47.41715,43.76131,25.70188,1423.522,28.66387
+18,0.567234,4,131,310.214,609,933,428,496,505.151,512,572,452,498,507.677,514,538,3.33692,4.84611,12.6115,0,2,9.62504,21,89,71,90.5623,0.018899,0,0.015386,10,10,10,18.97931,43.1505,3798.322,47.41471,43.84765,24.4016,1914.693,27.37652
+19,0.600601,4,132,311.33,610,923,424,496,505.094,512,534,478,498,507.673,514,539,3.29437,4.81475,13.4288,0,2,9.64362,21,92,71,90.4996,0.022334,0,0.015372,10,10,10,18.75084,41.52189,2625.485,47.46731,44.01474,26.00542,1327.811,28.96615
+20,0.633967,4,132,310.496,609,940,423,496,505.103,512,550,476,499,507.592,514,538,3.37067,4.90065,13.6462,0,2,9.68212,21,91,71,89.9244,0.0235,0,0.015361,10,10,10,18.72252,42.18712,2698.618,47.47387,43.94571,25.8861,1364.536,28.84766
+21,0.667334,4,132,310.586,610,936,422,496,504.986,512,538,478,498,507.491,514,536,3.3852,4.92354,16.4888,0,2,9.83348,21,93,71,89.4491,0.024074,0,0.015364,10,10,10,19.98208,43.69127,3132.654,47.19111,43.79357,25.23839,1582.245,28.20478
+22,0.700701,4,132,311.426,611,940,422,496,505.062,512,536,476,498,507.615,514,540,3.40981,4.95546,11.4466,0,2,9.68434,21,93,71,89.5224,0.023825,0,0.015375,10,10,10,19.38935,45.43813,3215.444,47.32188,43.62331,25.1251,1623.929,28.09184
+23,0.734067,4,131,310.011,608,924,425,496,505.006,512,532,478,498,507.592,513,545,3.33373,4.87782,13.312,0,2,9.72864,21,90,71,89.8223,0.020951,0,0.015441,10,10,10,19.26019,43.0379,3782.224,47.35091,43.859,24.42004,1906.687,27.39472
+24,0.767434,4,130,310.037,609,928,422,497,505.356,512,534,475,499,507.675,514,547,3.36696,4.88171,11.9116,0,2,9.44417,20,94,71,91.0598,0.022582,0,0.015438,10,10,10,19.50072,43.54967,3126.52,47.29701,43.80766,25.2469,1579.022,28.21363
+25,0.800801,4,131,310.953,610,939,384,497,505.575,513,543,478,499,507.698,514,536,3.37103,4.89377,9.64296,0,2,9.3329,20,131,71,92.9396,0.023228,0,0.015398,10,10,10,19.48015,45.43417,2916.942,47.30159,43.62369,25.54824,1474.699,28.51048
+26,0.834168,4,131,310.484,609,926,424,497,505.641,513,536,470,499,507.608,513,543,3.34821,4.89399,10.2181,0,2,9.33281,20,91,71,93.4476,0.023494,0,0.015409,10,10,10,19.33167,41.47985,3450.01,47.33482,44.01914,24.81931,1740.208,27.7915
+27,0.867534,4,131,311.932,611,935,423,497,505.51,513,534,473,499,507.617,514,541,3.3731,4.92399,10.0084,0,2,9.43857,20,92,71,92.4713,0.02288,0,0.015381,10,10,10,19.50265,43.38821,3872.045,47.29658,43.8238,24.31811,1951.745,27.29328
+28,0.900901,4,132,313.059,613,932,423,497,505.555,513,537,475,499,507.854,514,552,3.31938,4.8135,13.1741,0,2,9.32562,20,92,72,94.3464,0.021645,0,0.015423,10,10,10,18.89966,43.35534,3836.005,47.43297,43.82709,24.35872,1933.566,27.33392
+29,0.934268,4,132,312.262,611,926,424,497,505.262,512,559,478,499,507.762,514,544,3.30901,4.83137,11.1645,0,2,9.4461,20,91,71,90.1738,0.024028,0,0.015412,10,10,10,18.71843,42.07508,2754.396,47.47482,43.95726,25.79725,1392.396,28.75988
+30,0.967634,4,131,311.92,610,935,428,497,505.123,512,561,472,499,507.867,514,543,3.30822,4.85708,12.7417,0,2,9.50806,20,88,71,90.3432,0.022694,0,0.015386,10,10,10,18.39275,41.01115,2066.077,47.55104,44.06849,27.04605,1047.89,29.99436
+31,1.001001,4,131,311.645,610,935,423,497,505.297,512,533,478,499,507.825,514,540,3.35397,4.85649,12.195,0,2,9.42183,20,92,71,91.4628,0.023242,0,0.015415,10,10,10,18.66611,42.0749,3206.943,47.48698,43.95728,25.1366,1618.657,28.10597
+32,1.034368,4,131,311.658,611,937,428,496,504.958,512,533,476,499,507.624,513,556,3.39934,4.92035,11.531,0,2,9.74885,21,88,71,89.1295,0.023408,0,0.015423,10,10,10,19.09518,42.42821,3406.137,47.38828,43.92097,24.87489,1718.449,27.84615
+33,1.067734,4,132,312.441,612,931,422,496,504.931,512,535,476,499,507.638,514,550,3.36026,4.91457,10.3745,0,2,9.76424,21,94,71,87.4564,0.023828,0,0.015421,10,10,10,19.5172,43.55413,3644.856,47.29334,43.80722,24.58071,1838.196,27.5536
+34,1.101101,4,132,311.513,610,934,423,496,504.902,512,532,478,499,507.769,514,543,3.36064,4.97523,10.7396,0,2,9.68968,21,93,71,90.0839,0.023545,0,0.015429,10,10,10,18.50106,43.86605,3508.384,47.52555,43.77623,24.74644,1769.784,27.71831
+35,1.134468,4,132,312.319,613,934,422,496,504.802,512,534,478,498,507.646,514,549,3.34292,4.89586,10.8781,0,2,9.87337,21,93,71,89.4473,0.022551,0,0.015401,10,10,10,19.33611,44.81574,3413.283,47.33382,43.68321,24.86579,1722.679,27.83547
+36,1.167835,4,132,313.848,614,939,425,496,504.734,512,552,476,499,507.652,514,619,3.34664,4.93408,12.5054,0,2,9.9219,21,110,71,88.7417,0.020376,0,0.015415,10,10,10,19.3745,43.91667,3634.083,47.32521,43.77122,24.59357,1832.864,27.56621
+37,1.201201,4,132,314.37,615,930,424,496,504.638,512,540,476,499,507.889,514,537,3.34869,4.93502,12.9074,0,2,9.92962,22,91,74,90.4329,0.02296,0,0.015449,10,10,10,19.26831,43.18837,3536.523,47.34908,43.84385,24.71175,1783.876,27.68387
+38,1.234568,4,132,313.159,614,936,422,496,504.546,512,543,475,499,507.86,514,536,3.3767,5.03672,13.2653,0,2,9.94148,21,94,72,89.8282,0.024088,0,0.015438,10,10,10,18.42651,43.79355,2920.319,47.54308,43.78341,25.54321,1475.714,28.50749
+39,1.267935,4,132,312.765,613,938,424,496,504.584,512,542,452,499,507.752,514,540,3.36902,5.03588,12.9567,0,2,9.99831,22,92,71,89.0088,0.024554,0,0.015404,10,10,10,19.11668,45.92756,3155.853,47.38339,43.57678,25.20635,1594.188,28.17212
+40,1.301301,4,132,313.078,614,939,424,496,504.716,512,535,478,499,507.714,514,536,3.32957,4.99455,12.5707,0,2,9.92541,22,91,71,89.2053,0.023177,0,0.015404,10,10,10,19.05112,44.42075,3106.257,47.39831,43.72165,25.27514,1568.997,28.24129
+41,1.334668,4,132,313.457,614,931,423,494,504.331,512,529,477,498,507.515,513,591,3.40714,5.04853,10.998,0,2,10.2956,22,92,71,86.8769,0.0226,0,0.015406,10,10,10,19.28447,46.17597,3519.228,47.34544,43.55335,24.73304,1775.979,27.70314
+42,1.368035,4,132,313.319,614,923,422,494,504.267,512,547,474,499,507.583,513,540,3.35752,4.98338,10.3853,0,2,10.2908,22,94,71,87.0301,0.023805,0,0.015364,10,10,10,19.19962,46.51157,2573.212,47.36459,43.5219,26.09276,1303.034,29.04796
+43,1.401401,4,132,312.6,612,934,422,495,504.348,512,542,478,499,507.549,513,542,3.3909,5.09423,11.4202,0,2,10.2227,22,92,71,86.5717,0.023591,0,0.015395,10,10,10,19.21455,45.6078,2562.474,47.36121,43.60712,26.11092,1297.442,29.06663
+44,1.434768,4,132,312.573,611,945,419,496,504.317,512,535,478,499,507.679,513,540,3.41765,5.12761,13.3672,0,2,10.1791,21,95,71,86.4827,0.023834,0,0.015366,10,10,10,18.84055,46.45463,2822.99,47.44658,43.52722,25.69042,1427.819,28.65078
+45,1.468135,4,132,313.195,613,938,424,494,504.311,512,535,476,499,507.615,514,541,3.43009,5.07116,14.5197,0,2,10.2546,22,91,71,88.3809,0.023594,0,0.015432,10,10,10,20.14198,49.11507,3342.641,47.15649,43.28537,24.95662,1688.635,27.92216
+46,1.501502,4,132,312.24,611,930,424,496,504.619,512,559,464,499,507.599,513,538,3.44701,5.10135,11.0192,0,2,10.0003,21,91,71,88.46,0.022408,0,0.015406,10,10,10,19.74914,45.57904,3513.263,47.24203,43.60986,24.74041,1772.964,27.71051
+47,1.534868,4,132,314.039,614,937,421,496,504.611,512,568,467,499,507.604,514,539,3.38076,5.01715,15.9914,0,2,10.0215,21,95,71,87.9361,0.019359,0,0.015338,10,10,10,19.75031,46.22354,4094.951,47.24178,43.54888,24.07503,2063.969,27.05048
+48,1.568235,4,132,313.946,615,933,430,496,504.583,512,527,455,499,507.653,513,544,3.36863,5.00319,12.3832,0,2,9.9897,21,87,71,88.0936,0.024068,0,0.015286,10,10,10,19.28216,44.13492,2465.057,47.34596,43.74969,26.27924,1248.383,29.23404
+49,1.601602,4,132,312.973,612,939,428,496,504.609,512,528,476,500,507.899,514,540,3.38666,4.99081,10.7498,0,2,9.89909,21,89,72,89.8947,0.02404,0,0.015312,10,10,10,19.41327,44.0312,2887.688,47.31653,43.75991,25.59201,1459.705,28.55486
+50,1.634968,4,132,313.195,613,944,424,496,504.827,512,529,478,499,507.916,514,542,3.37726,4.96704,10.5294,0,2,9.68413,21,92,71,89.6426,0.023002,0,0.015318,10,10,10,19.0967,42.91182,3656.221,47.38793,43.87174,24.56719,1843.613,27.54082
+51,1.668335,4,133,315.466,617,940,423,496,504.841,512,534,478,499,507.727,514,539,3.38291,4.97522,12.3919,0,2,9.82553,21,92,71,90.4585,0.022445,0,0.015286,10,10,10,19.14898,44.61373,4000.076,47.37606,43.70283,24.17683,2015.979,27.15265
+52,1.701702,4,133,315.98,617,939,428,496,504.888,512,533,478,499,507.827,514,542,3.33779,4.94736,13.5402,0,2,9.71191,21,89,71,90.374,0.022888,0,0.015272,10,10,10,18.6178,45.47443,3784.729,47.49823,43.61984,24.41716,1908.388,27.39085
+53,1.735068,4,133,315.852,617,946,428,496,504.685,512,567,477,499,507.703,514,546,3.36349,5.0181,13.2786,0,2,9.93536,21,89,71,89.2014,0.024363,0,0.015315,10,10,10,19.16764,45.43165,2349.767,47.37183,43.62393,26.48727,1191.033,29.43827
+54,1.768435,4,132,314.382,614,932,428,496,504.486,512,550,472,499,507.805,514,550,3.38888,5.00112,13.2218,0,2,10.0128,21,89,71,87.3312,0.02326,0,0.015321,10,10,10,18.7178,43.9435,2304.982,47.47496,43.76857,26.57084,1168.156,29.5225
+55,1.801802,4,133,313.358,612,944,424,496,504.535,512,529,476,498,507.642,514,542,3.34715,4.96743,12.9749,0,2,10.0626,22,91,71,87.4417,0.020327,0,0.015246,10,10,10,19.38259,44.98671,3914.236,47.3234,43.66667,24.27104,1973.21,27.24578
+56,1.835169,4,133,313.599,613,932,400,496,504.508,512,540,478,499,507.563,513,542,3.33713,4.91563,17.0977,0,2,10.1202,22,115,71,86.9783,0.022074,0,0.015369,10,10,10,19.31455,47.47849,3805.478,47.33867,43.43255,24.39342,1919.437,27.36577
+57,1.868535,4,134,316.232,618,946,428,496,504.619,512,537,478,498,507.589,514,539,3.38164,5.07655,13.046,0,2,10.0657,21,88,71,88.3343,0.024108,0,0.015389,10,10,10,19.65003,48.02441,3385.009,47.26388,43.38289,24.90192,1709.423,27.86902
+58,1.901902,4,134,313.609,613,930,424,496,504.53,512,589,477,499,507.633,514,555,3.36843,4.98122,16.8221,0,2,10.0703,21,90,71,87.7002,0.023608,0,0.015361,10,10,10,19.26565,46.52323,2562.961,47.34968,43.52081,26.11009,1297.928,29.06501
+59,1.935269,4,133,312.577,610,927,422,496,504.829,512,596,479,499,507.69,514,541,3.35482,4.95705,16.5209,0,2,9.86059,21,94,71,89.1505,0.022557,0,0.015369,10,10,10,19.16479,47.01136,2210.69,47.37247,43.47548,26.75224,1121.889,29.69801
+60,1.968635,4,133,313.199,611,932,423,496,504.791,512,540,478,498,507.544,514,542,3.37402,4.9961,13.3559,0,2,9.9949,21,94,71,88.5945,0.019041,0,0.015306,10,10,10,19.606,44.7113,3678.384,47.27362,43.69334,24.54094,1855.271,27.51344
+61,2.002002,4,133,314.895,615,937,423,496,504.821,512,540,457,499,507.68,514,543,3.41651,5.0098,15.8201,0,2,9.88821,21,92,71,89.5336,0.017713,0,0.015292,10,10,10,19.97236,43.47173,4052.313,47.19322,43.81545,24.12048,2042.018,27.09692
+62,2.035369,4,133,315.354,618,938,423,496,504.871,512,536,479,498,507.6,514,558,3.38137,4.89664,17.1212,0,2,9.90918,21,92,71,88.4266,0.021456,0,0.015338,10,10,10,19.82575,43.93453,3372.063,47.22522,43.76945,24.91856,1701.972,27.88799
+63,2.068735,4,133,312.975,612,937,422,496,504.852,512,534,475,498,507.546,514,578,3.34003,4.89613,13.6808,0,2,9.98478,21,93,71,88.9711,0.023914,0,0.015426,10,10,10,20.17694,43.91429,3181.822,47.14896,43.77145,25.17075,1606.934,28.13753
+64,2.102102,4,133,314.08,614,941,422,496,505.129,512,533,478,498,507.375,513,545,3.37706,4.88193,16.0602,0,2,9.80635,21,93,70,88.3219,0.023585,0,0.015404,10,10,10,19.57383,44.76914,2654.383,47.28075,43.68773,25.95788,1343.277,28.91586
+65,2.135469,4,132,313.662,614,930,426,496,505.142,512,535,478,498,507.343,513,562,3.43034,4.97212,11.4912,0,2,9.82899,21,90,70,88.1632,0.02288,0,0.015415,10,10,10,19.45716,44.0048,2967.29,47.30672,43.76251,25.47391,1499.51,28.43802
+66,2.168836,4,131,312.466,613,928,428,496,505.157,512,534,459,498,507.41,513,543,3.32366,4.90868,11.0872,0,2,9.77772,21,89,71,89.9674,0.023554,0,0.015415,10,10,10,20.1402,44.18549,3390.482,47.15688,43.74472,24.8949,1711.322,27.8642
+67,2.202202,4,131,312.146,612,938,424,496,505.226,512,532,476,498,507.343,513,558,3.42317,4.97422,10.6949,0,2,9.80221,21,91,71,90.0008,0.024037,0,0.015295,10,10,10,20.19453,43.53611,2921.618,47.14518,43.80902,25.54128,1476.742,28.50447
+68,2.235569,4,132,312.735,612,944,422,496,504.921,512,549,476,499,507.673,514,544,3.42463,4.97219,11.5576,0,2,9.83986,21,93,71,89.5453,0.024657,0,0.015341,10,10,10,18.81606,42.81261,2900.557,47.45223,43.88179,25.5727,1465.686,28.5371
+69,2.268936,4,132,311.593,609,933,422,496,504.94,512,615,478,498,507.601,514,550,3.35831,4.90427,13.666,0,2,9.8371,21,108,71,88.9706,0.023325,0,0.015281,10,10,10,19.47473,46.61578,3394.053,47.3028,43.51218,24.89033,1713.549,27.85855
+70,2.302302,4,132,311.841,610,933,420,496,504.985,512,536,480,500,507.969,514,556,3.41016,5.00172,11.7334,0,2,9.54295,20,95,71,90.4889,0.021919,0,0.015326,10,10,10,18.44132,44.31064,3627.679,47.53959,43.73243,24.60123,1829.527,27.57412
+71,2.335669,4,132,313.432,613,931,424,496,504.856,512,538,449,499,507.825,514,544,3.37733,4.98759,11.6307,0,2,9.74962,21,91,71,89.5212,0.022748,0,0.015321,10,10,10,19.3094,44.31712,3364.262,47.33983,43.7318,24.92861,1698.038,27.89804
+72,2.369036,4,132,313.528,613,928,422,496,504.99,512,533,472,499,507.75,514,546,3.41147,4.99675,10.9621,0,2,9.63929,20,94,71,87.7569,0.023528,0,0.015346,10,10,10,19.30498,43.00078,3319.123,47.34082,43.86275,24.98728,1675.138,27.95701
+73,2.402402,4,131,312.54,612,935,422,496,504.832,512,553,465,499,507.646,513,547,3.31444,4.87986,10.5036,0,2,9.77257,21,95,71,88.1904,0.024074,0,0.015361,10,10,10,18.5025,43.79826,2660.543,47.52521,43.78294,25.94781,1345.847,28.90756
+74,2.435769,4,132,311.965,610,929,422,496,505.029,512,554,480,498,507.598,513,554,3.33771,4.89043,11.3651,0,2,9.74969,21,93,71,89.5953,0.023954,0,0.015338,10,10,10,19.16463,42.61869,3384.341,47.37251,43.90151,24.90277,1707.616,27.87361
+75,2.469136,4,132,312.101,610,939,419,497,505.288,512,538,478,499,507.677,514,549,3.38495,4.91935,10.4489,0,2,9.53492,20,96,71,90.8652,0.02328,0,0.015381,10,10,10,19.94934,45.28368,3961.142,47.19823,43.6381,24.21931,1996.88,27.194
+76,2.502503,4,132,312.914,612,938,423,497,505.561,512,591,476,498,507.335,513,545,3.42751,4.91162,14.1865,0,2,9.5479,21,93,69,89.8435,0.021108,0,0.015423,10,10,10,21.37271,43.36121,3935.785,46.89891,43.8265,24.2472,1984.076,27.22193
+77,2.535869,4,132,311.881,611,925,420,497,505.33,512,535,479,498,507.602,514,547,3.39059,4.75633,11.6002,0,2,9.50989,20,97,71,89.9455,0.022897,0,0.015478,10,10,10,19.4249,44.58819,3381.174,47.31393,43.70532,24.90684,1706.59,27.87622
+78,2.569236,4,131,311.403,610,923,416,497,505.415,512,535,476,498,507.5,513,546,3.32736,4.75665,13.2329,0,2,9.58064,20,101,71,90.3641,0.024394,0,0.015458,10,10,10,19.60429,42.97945,2179.468,47.274,43.86491,26.81401,1105.38,29.7624
+79,2.602603,4,132,311.412,609,924,419,497,505.126,512,533,477,498,507.437,513,551,3.34051,4.83095,16.5955,0,2,9.77958,21,97,71,88.0668,0.023651,0,0.015381,10,10,10,18.47454,41.69848,2178.869,47.53178,43.99631,26.8152,1104.478,29.76594
+80,2.635969,4,132,310.522,608,949,410,496,505.051,512,584,478,499,507.704,513,608,3.3513,4.81738,15.5107,0,2,9.64484,20,118,71,88.913,0.024446,0,0.015343,10,10,10,19.36818,42.4939,3270.998,47.32663,43.91425,25.05071,1650.964,28.02014
+81,2.669336,4,132,309.847,608,937,416,496,504.9,512,535,478,498,507.646,514,546,3.33772,4.94497,14.7085,0,2,9.85673,21,100,71,89.6244,0.024314,0,0.015343,10,10,10,19.1287,45.27847,3660.134,47.38066,43.6386,24.56254,1846.169,27.5348
+82,2.702703,4,132,311.478,612,937,420,496,504.864,512,591,463,499,507.795,514,546,3.38111,4.9482,12.8885,0,2,9.82211,21,97,72,91.1045,0.023968,0,0.015318,10,10,10,19.82179,45.44062,3518.165,47.22609,43.62307,24.73435,1775.398,27.70456
+83,2.736069,4,131,310.118,609,936,414,496,504.984,512,540,476,499,507.791,514,549,3.38754,5.0117,10.1016,0,2,9.68185,21,100,71,90.1185,0.024414,0,0.015372,10,10,10,19.11854,43.82369,3074.782,47.38297,43.78042,25.31937,1553.127,28.28544
+84,2.769436,4,131,309.902,607,925,418,496,505.044,512,533,476,499,507.747,514,550,3.30943,4.79063,14.6655,0,2,9.66136,21,98,71,89.5756,0.021033,0,0.015352,10,10,10,19.24814,41.35389,3650.794,47.35363,44.03235,24.57364,1840.548,27.54804
+85,2.802803,4,132,310.288,608,934,418,496,504.922,512,531,477,498,507.649,514,563,3.3491,4.7964,13.4946,0,2,9.87028,21,97,71,90.5202,0.021625,0,0.015352,10,10,10,19.47006,43.81501,3362.751,47.30384,43.78128,24.93057,1697.197,27.90019
+86,2.83617,4,132,309.48,607,933,418,497,505.321,512,570,478,499,507.798,514,556,3.31867,4.81433,12.5994,0,2,9.42573,20,99,71,90.2917,0.022399,0,0.015361,10,10,10,18.03775,39.89543,3087.91,47.63569,44.18828,25.30087,1558.438,28.27062
+87,2.869536,4,132,309.334,607,938,416,497,505.235,512,534,478,500,508.16,514,550,3.33489,4.85375,10.6782,0,2,9.289,20,100,73,92.3145,0.02296,0,0.015418,10,10,10,18.5169,42.22078,3297.774,47.52183,43.94225,25.01531,1664.071,27.98579
+88,2.902903,4,131,308.067,605,938,414,496,504.877,512,575,478,500,508.103,514,551,3.3199,4.91083,10.4616,0,2,9.56381,20,104,72,90.0626,0.023411,0,0.015409,10,10,10,18.69717,42.19369,3291.158,47.47976,43.94504,25.02403,1660.802,27.99434
+89,2.93627,4,131,307.839,605,936,419,496,504.898,512,533,469,500,508.04,514,550,3.31552,4.91122,9.38897,0,2,9.55072,20,98,71,89.6865,0.023188,0,0.015401,10,10,10,18.14832,41.55196,3100.457,47.60915,44.0116,25.28326,1565.153,28.25194
+90,2.969636,4,130,308.663,607,932,420,496,504.813,512,529,470,500,507.984,514,546,3.32004,4.89814,9.70247,0,2,9.66224,20,95,71,89.5006,0.023491,0,0.015446,10,10,10,18.11482,42.22502,2791.935,47.61717,43.94181,25.73846,1411.053,28.70208
+91,3.003003,4,131,309.008,607,932,419,496,504.813,512,534,478,500,507.997,514,548,3.2629,4.81273,9.74108,0,2,9.65205,21,98,71,89.1756,0.024146,0,0.015449,10,10,10,18.74606,43.34364,2750.511,47.46841,43.82826,25.80338,1390.778,28.76494
+92,3.03637,4,131,308.49,606,937,416,496,504.723,512,542,479,500,508.134,514,548,3.28367,4.77478,11.0908,0,2,9.62965,20,102,71,89.6759,0.023774,0,0.015429,10,10,10,19.09648,42.20759,2768.344,47.38798,43.94361,25.77531,1399.498,28.73779
+93,3.069736,4,132,309.173,607,931,418,496,504.351,512,536,478,500,508.008,514,552,3.30704,4.87539,12.1847,0,2,9.96117,21,99,71,87.6849,0.024343,0,0.015566,10,10,10,18.31545,44.92459,3612.789,47.56934,43.67267,24.61909,1822.204,27.59154
+94,3.103103,4,132,310.249,609,938,424,495,504.374,512,592,478,500,508.068,514,552,3.34327,4.97299,10.9559,0,2,9.9616,21,92,71,89.509,0.023897,0,0.015532,10,10,10,18.45814,48.02691,3663.131,47.53563,43.38267,24.55899,1848.187,27.53005
+95,3.13647,4,132,310.497,610,930,424,496,504.598,512,536,478,500,508.064,514,549,3.27914,4.882,10.1416,0,2,9.78679,21,94,72,89.808,0.024303,0,0.015515,10,10,10,18.38049,45.17947,3114.86,47.55394,43.6481,25.26313,1573.32,28.22934
+96,3.169837,4,131,309.775,609,913,421,496,504.806,512,577,438,500,508.07,514,547,3.28185,4.84022,11.2559,0,2,9.63789,21,97,72,90.7512,0.025071,0,0.015498,10,10,10,18.62254,44.08298,2506.059,47.49712,43.7548,26.2076,1268.706,29.1639
+97,3.203203,4,132,309.838,608,925,422,496,504.878,512,532,475,499,507.843,514,549,3.24227,4.72517,12.7618,0,2,9.67876,21,96,71,89.5516,0.0238,0,0.015486,10,10,10,18.89573,43.4315,2271.739,47.43388,43.81947,26.63393,1151.451,29.58506
+98,3.23657,4,133,310.239,607,927,418,496,505.018,512,549,474,498,507.675,514,548,3.37985,4.86716,14.4474,0,2,9.70733,21,99,71,89.0988,0.017061,0,0.015535,10,10,10,19.1139,43.38448,4135.293,47.38402,43.82417,24.03245,2083.271,27.01006
+99,3.269937,4,134,311.99,610,939,422,496,505.084,512,557,479,498,507.591,513,549,3.33074,4.7463,20.3992,0,2,9.69669,21,95,71,88.8448,0.017887,0,0.015538,10,10,10,19.43522,44.24998,3926.198,47.31162,43.73838,24.25779,1979.02,27.23301
+100,3.303303,4,134,312.623,613,928,422,496,505.022,512,574,478,498,507.602,513,549,3.34247,4.78965,16.2838,0,2,9.73232,21,93,71,89.1246,0.020625,0,0.015389,10,10,10,19.14102,41.94398,3509.961,47.37787,43.97082,24.74449,1770.252,27.71716
+101,3.33667,4,134,312.129,612,929,420,496,504.795,512,533,478,499,507.704,514,546,3.28113,4.75018,11.8378,0,2,9.82458,21,94,71,88.3076,0.022188,0,0.015444,10,10,10,19.47986,40.39454,2648.929,47.30166,44.13429,25.96681,1339.433,28.9283
+102,3.370037,4,133,310.257,607,935,420,496,504.974,512,536,470,499,507.607,513,548,3.34898,4.78317,15.3382,0,2,9.72181,20,97,69,87.4002,0.021099,0,0.015426,10,10,10,18.12965,40.66233,1716.324,47.61362,44.10559,27.85152,872.86,30.78807
+103,3.403403,4,132,309.456,608,937,422,496,504.945,512,578,461,499,507.807,514,547,3.31524,4.8186,13.6082,0,2,9.66974,20,93,71,88.7437,0.022934,0,0.015472,10,10,10,18.54024,41.99235,3154.581,47.51636,43.96581,25.2081,1592.424,28.17693
+104,3.43677,4,132,310.852,611,933,422,496,504.709,512,533,476,499,507.795,514,548,3.33138,4.8747,12.6078,0,2,9.84875,21,94,71,88.298,0.021753,0,0.015429,10,10,10,18.91471,42.02432,3417.542,47.42952,43.96251,24.86037,1724.006,27.83213
+105,3.470137,4,132,310.995,612,936,422,496,504.787,512,533,478,499,507.657,513,550,3.2955,4.85444,11.6361,0,2,9.85883,21,93,71,87.4898,0.023694,0,0.015449,10,10,10,19.62355,43.62368,3205.511,47.26974,43.80029,25.13854,1618.567,28.10621
+106,3.503504,4,133,310.688,611,934,425,497,505.11,512,557,478,498,507.582,514,549,3.3192,4.83723,14.4073,0,2,9.73268,21,91,71,89.5749,0.024217,0,0.015449,10,10,10,19.67665,41.7851,3025.218,47.258,43.9873,25.38995,1527.974,28.35635
+107,3.53687,4,133,310.62,611,930,417,497,505.269,512,534,478,498,507.734,514,553,3.34165,4.78859,14.7574,0,2,9.53448,21,99,71,90.7871,0.023623,0,0.015412,10,10,10,18.54172,41.39566,2499.94,47.51601,44.02797,26.21822,1264.955,29.17676
+108,3.570237,4,132,310.571,611,929,423,497,505.34,512,542,474,499,507.74,514,558,3.32441,4.78226,11.711,0,2,9.47395,20,93,71,90.9929,0.02051,0,0.015429,10,10,10,18.78715,40.96138,3234.511,47.4589,44.07377,25.09943,1632.193,28.0698
+109,3.603604,4,133,311.069,611,939,420,497,505.331,512,534,468,498,507.673,513,548,3.28943,4.77847,15.2748,0,2,9.52748,21,96,71,91.8864,0.017393,0,0.015452,10,10,10,18.79798,42.29501,3982.252,47.4564,43.93462,24.19623,2006.399,27.17334
+110,3.63697,4,132,311.252,613,946,422,497,505.281,512,534,475,498,507.726,514,549,3.27306,4.72333,15.5081,0,2,9.53212,21,93,71,91.2835,0.022054,0,0.015466,10,10,10,18.23091,40.46272,2740.683,47.58943,44.12696,25.81892,1385.015,28.78297
+111,3.670337,4,133,311.2,612,929,422,497,505.062,512,621,480,499,507.747,514,572,3.32191,4.80262,13.438,0,2,9.64023,21,124,71,88.9295,0.023543,0,0.015541,10,10,10,19.23393,45.60134,3124.59,47.35683,43.60774,25.24958,1578.504,28.21506
+112,3.703704,4,133,311.249,611,933,424,497,505.067,512,531,470,498,507.786,514,546,3.30222,4.82736,12.392,0,2,9.65896,21,92,71,90.9626,0.02412,0,0.015498,10,10,10,18.62299,45.02684,3245.495,47.49702,43.6628,25.0847,1638.66,28.05263
+113,3.73707,4,132,311.367,613,936,422,497,505.084,512,555,476,499,507.802,514,547,3.2785,4.83945,10.16,0,2,9.57277,21,94,71,89.0261,0.023788,0,0.015572,10,10,10,18.95507,45.03087,3229.951,47.42026,43.66241,25.10555,1630.972,28.07305
+114,3.770437,4,131,310.939,613,930,422,497,505.158,512,547,479,498,507.643,513,548,3.35574,4.88644,12.2133,0,2,9.60914,21,95,71,88.6161,0.024463,0,0.015509,10,10,10,19.00793,42.54636,3129.991,47.40817,43.90889,25.24208,1580.384,28.20989
+115,3.803804,4,132,310.389,612,932,423,497,505.192,512,536,466,498,507.662,513,550,3.32391,4.75342,12.8248,0,2,9.5866,20,93,71,89.3842,0.022522,0,0.015515,10,10,10,18.85374,44.00748,2314.469,47.44354,43.76225,26.553,1172.95,29.50472
+116,3.837171,4,132,309.532,608,936,421,497,504.909,512,579,473,498,507.512,513,547,3.33784,4.73864,16.5526,0,2,9.82709,21,94,70,86.7248,0.022511,0,0.015486,10,10,10,18.62533,42.33317,1953.887,47.49647,43.93071,27.28852,992.1834,30.23159
+117,3.870537,4,133,311.453,610,932,420,496,504.972,512,539,446,498,507.558,513,549,3.3173,4.75093,20.1441,0,2,9.80186,21,95,71,88.7718,0.023171,0,0.015524,10,10,10,19.68931,44.6014,3096.151,47.25521,43.70403,25.28929,1564.148,28.25473
+118,3.903904,4,133,312.322,613,934,422,496,504.907,512,533,474,498,507.605,513,546,3.32653,4.81431,11.7805,0,2,9.82595,21,93,71,87.6556,0.022382,0,0.015512,10,10,10,19.00992,46.04667,3609.821,47.40771,43.56553,24.62266,1821.175,27.594
+119,3.937271,4,133,313.273,615,936,424,496,504.962,512,533,476,498,507.673,514,551,3.37356,4.90509,17.1378,0,2,9.76822,21,93,71,87.2052,0.018399,0,0.015332,10,10,10,18.90787,42.81035,3858.431,47.43109,43.88203,24.33341,1944.645,27.30911
+120,3.970637,4,133,313.412,616,929,423,496,504.768,512,536,476,498,507.653,514,546,3.3189,4.84452,14.2657,0,2,9.91141,21,93,71,88.4602,0.021676,0,0.015364,10,10,10,18.74659,44.4579,3414.292,47.46829,43.71803,24.86451,1722.947,27.83479
+121,4.004004,4,133,313.378,617,926,420,496,504.855,512,538,478,498,507.55,514,548,3.28118,4.81718,12.4899,0,2,9.9533,22,95,71,89.6525,0.023131,0,0.015498,10,10,10,18.95465,44.05119,2485.729,47.42035,43.75794,26.24298,1258.616,29.19858
+122,4.037371,4,134,313.956,615,938,422,496,505.022,512,678,478,498,507.673,514,549,3.30563,4.85462,14.2969,0,2,9.80851,21,168,71,90.3548,0.018478,0,0.015501,10,10,10,18.7522,44.91686,4111.65,47.46699,43.67342,24.05735,2071.742,27.03416
+123,4.070737,4,135,315.563,620,936,423,496,505.08,512,539,477,498,507.561,514,547,3.33692,4.81447,19.9193,0,2,9.75047,21,94,71,89.6759,0.018699,0,0.015404,10,10,10,19.11431,42.02286,3794.134,47.38393,43.96266,24.40639,1912.351,27.38184
+124,4.104104,4,135,315.499,620,939,420,497,505.087,512,533,478,498,507.551,513,547,3.34538,4.8402,14.0523,0,2,9.69071,21,94,71,88.0474,0.021691,0,0.015455,10,10,10,18.64855,40.61495,3448.606,47.49106,44.11065,24.82108,1739.119,27.79422
+125,4.137471,4,135,314.315,617,943,418,497,505.12,512,532,476,498,507.624,514,547,3.35006,4.79476,13.8035,0,2,9.63805,21,96,71,89.1086,0.022191,0,0.015412,10,10,10,19.16007,40.43864,2384.519,47.37354,44.12955,26.4235,1207.159,29.37987
+126,4.170838,4,133,313.97,617,928,428,496,504.844,512,541,478,498,507.599,513,550,3.37628,4.82967,14.6534,0,2,9.82096,21,89,71,86.8691,0.022494,0,0.015421,10,10,10,18.31343,40.32713,2039.517,47.56982,44.14154,27.10224,1034.419,30.05055
+127,4.204204,4,133,314.195,617,931,425,496,504.806,512,529,478,498,507.537,513,559,3.37308,4.84171,12.9862,0,2,9.9464,21,90,71,88.0135,0.022825,0,0.015463,10,10,10,19.90735,42.78511,3189.524,47.20738,43.88459,25.16025,1610.435,28.12808
+128,4.237571,4,133,313.452,615,938,424,496,504.747,512,543,476,499,507.711,514,551,3.32395,4.7762,11.8022,0,2,9.88577,21,91,71,88.0989,0.023277,0,0.015435,10,10,10,17.77505,40.93694,3165.953,47.69941,44.07636,25.19247,1597.654,28.16268
+129,4.270938,4,133,313.453,615,934,424,496,505.042,512,533,476,498,507.602,514,543,3.3288,4.79592,10.6903,0,2,9.74113,21,91,71,88.9701,0.024917,0,0.015458,10,10,10,19.3773,42.4155,3117.753,47.32458,43.92227,25.25909,1574.325,28.22657
+130,4.304304,4,133,312.72,615,933,422,496,505.021,512,545,476,499,507.834,514,545,3.36363,4.82338,15.2532,0,2,9.64263,20,94,71,90.0716,0.0246,0,0.015484,10,10,10,18.79057,40.92576,2967.158,47.45812,44.07755,25.47411,1498.508,28.44092
+131,4.337671,4,133,313.068,613,941,424,496,504.941,512,584,471,499,507.859,514,546,3.33488,4.80726,15.7421,0,2,9.68816,20,93,71,89.5214,0.023614,0,0.015546,10,10,10,18.26655,43.42179,2499.998,47.58095,43.82044,26.21812,1265.421,29.17516
+132,4.371038,4,133,313.205,613,928,422,496,504.805,512,534,477,499,507.805,514,544,3.24002,4.79108,12.9442,0,2,9.808,21,94,71,89.2666,0.021828,0,0.015512,10,10,10,18.28297,44.64073,3779.969,47.57705,43.7002,24.42263,1905.715,27.39693
+133,4.404404,4,133,313.981,617,930,428,496,504.826,512,587,478,499,507.902,514,544,3.27638,4.85706,14.3504,0,2,9.74858,21,89,71,89.0398,0.022134,0,0.015506,10,10,10,18.00143,45.37988,3626.945,47.64444,43.62888,24.6021,1829.318,27.57462
+134,4.437771,4,134,315.079,618,938,423,496,504.869,512,577,474,499,507.79,514,545,3.3124,4.92039,13.6967,0,2,9.80254,21,93,71,90.5222,0.021514,0,0.015498,10,10,10,18.71189,48.01918,3724.688,47.47634,43.38337,24.48661,1879.027,27.45818
+135,4.471138,4,134,315.03,618,927,424,496,504.649,512,535,476,499,507.885,514,542,3.33076,4.97413,13.2234,0,2,9.91042,21,92,71,89.1538,0.023045,0,0.015503,10,10,10,19.08012,45.44607,3315.663,47.3917,43.62255,24.99181,1673.963,27.96005
+136,4.504505,4,134,315.582,619,937,424,496,504.535,512,623,474,499,507.741,514,546,3.27901,4.84982,12.9975,0,2,9.99274,21,117,71,87.5541,0.024183,0,0.015489,10,10,10,18.19845,45.68679,3296.122,47.59717,43.59961,25.01748,1664.032,27.9859
+137,4.537871,4,133,316.618,621,929,424,496,504.31,512,550,474,498,507.543,514,544,3.36181,4.94755,11.7807,0,2,10.299,22,93,71,86.0489,0.023497,0,0.015503,10,10,10,19.68647,46.54951,3529.314,47.25584,43.51836,24.72061,1781.216,27.69035
+138,4.571238,4,133,316.651,622,921,428,493,503.738,512,573,476,499,507.63,514,568,3.40378,5.03664,12.2698,0,2,10.6251,22,89,71,83.4459,0.0241,0,0.015395,10,10,10,18.67372,42.68994,3142.912,47.4852,43.89426,25.22419,1586.797,28.1923
+139,4.604605,4,134,317.268,622,941,424,493,504.048,512,550,478,499,507.68,514,568,3.27902,4.94646,12.489,0,2,10.4393,22,91,71,86.7709,0.024217,0,0.015326,10,10,10,19.02835,45.25273,2757.462,47.4035,43.64106,25.79242,1394.801,28.75239
+140,4.637971,4,134,316.752,621,926,425,493,503.771,512,539,470,499,507.752,514,541,3.34425,5.04616,13.4948,0,2,10.5638,22,90,71,85.6385,0.024023,0,0.015392,10,10,10,18.32837,45.45876,2336.161,47.56627,43.62134,26.51249,1184.027,29.4639
+141,4.671338,4,135,317.234,621,932,424,493,503.85,512,615,478,499,507.716,514,541,3.34493,5.06972,15.3635,0,2,10.542,22,104,71,85.3444,0.023217,0,0.015381,10,10,10,18.59126,45.62775,3374.53,47.50443,43.60522,24.91538,1703.319,27.88455
+142,4.704705,4,135,315.749,618,948,420,493,503.981,512,570,478,499,507.685,514,548,3.30208,5.01264,11.2946,0,2,10.4465,22,95,71,85.9006,0.022419,0,0.015355,10,10,10,18.47996,45.56913,3619.357,47.5305,43.61081,24.6112,1825.691,27.58324
+143,4.738071,4,134,317.017,621,936,422,493,503.93,512,532,480,499,507.767,514,546,3.26417,4.92482,13.859,0,2,10.435,22,94,71,85.4856,0.022542,0,0.015398,10,10,10,18.42133,42.60226,3591.083,47.5443,43.90319,24.64526,1810.797,27.61881
+144,4.771438,4,133,316.994,621,945,429,494,504.074,512,538,476,499,507.81,514,546,3.30589,4.91414,12.2838,0,2,10.2942,22,88,71,86.8896,0.024251,0,0.015435,10,10,10,18.78368,45.08105,2960.82,47.45971,43.65757,25.48339,1496.376,28.44711
+145,4.804805,4,134,316.737,620,936,424,495,504.21,512,534,475,499,507.657,514,543,3.33948,4.93413,10.5761,0,2,10.2522,22,91,71,86.0286,0.024165,0,0.015298,10,10,10,19.1155,44.90093,2847.479,47.38366,43.67496,25.65291,1439.744,28.61466
+146,4.838172,4,134,316.685,620,937,422,496,504.619,512,535,478,498,507.604,514,542,3.28839,4.92587,10.9325,0,2,10.0606,22,93,71,88.648,0.023443,0,0.015343,10,10,10,18.98636,44.06236,3397.34,47.41309,43.75684,24.88612,1714.432,27.85631
+147,4.871538,4,134,318.009,622,944,422,496,504.492,512,561,477,498,507.531,514,573,3.30653,4.88897,11.0197,0,2,10.1712,22,93,71,87.9162,0.023297,0,0.015349,10,10,10,18.68187,45.11974,3716.416,47.48331,43.65385,24.49627,1874.158,27.46945
+148,4.904905,4,135,319.562,624,933,423,495,504.297,512,556,474,498,507.251,513,541,3.35167,4.97682,12.0142,0,2,10.4941,23,93,71,86.7072,0.022762,0,0.015355,10,10,10,18.85789,44.70073,3673.827,47.44258,43.69437,24.54633,1852.803,27.51922
+149,4.938272,4,134,318.301,621,944,424,495,504.209,512,662,474,498,507.159,513,546,3.38319,5.01061,10.539,0,2,10.602,22,151,69,84.7491,0.023391,0,0.015383,10,10,10,19.16597,45.89282,3161.299,47.3722,43.58007,25.19886,1596.914,28.1647
+150,4.971638,4,134,317.757,620,931,428,494,504.149,512,538,478,498,507.305,514,541,3.35504,4.99487,12.6088,0,2,10.5521,22,89,71,85.5326,0.02388,0,0.015446,10,10,10,19.62051,46.14311,2541.259,47.27041,43.55645,26.14702,1287.07,29.10149
+151,5.005005,4,134,319.086,622,936,428,494,503.951,512,534,479,498,507.261,513,542,3.40373,4.97345,12.188,0,2,10.7165,22,89,71,84.1446,0.025271,0,0.015412,10,10,10,18.96666,45.82836,2831.564,47.41761,43.58617,25.67725,1431.981,28.63814
+152,5.038372,4,135,321.288,625,936,428,493,503.77,512,563,478,498,507.203,513,541,3.40638,5.05801,11.6942,0,2,10.9096,23,89,71,84.8256,0.024094,0,0.015386,10,10,10,20.01905,47.68617,3281.263,47.18308,43.41359,25.0371,1657.558,28.00283
+153,5.071738,4,136,322.143,626,936,422,493,504.001,512,563,477,498,507.146,513,544,3.42215,5.12671,11.4418,0,2,10.7783,23,93,70,84.7076,0.024914,0,0.015372,10,10,10,19.77275,49.05641,3657.136,47.23684,43.29055,24.5661,1845.776,27.53573
+154,5.105105,4,135,321.41,625,941,424,492,503.77,512,536,476,498,507.064,513,543,3.3824,5.05797,10.6753,0,2,10.9597,23,92,69,84.0675,0.025137,0,0.015303,10,10,10,19.90663,48.83617,3630.49,47.20754,43.3101,24.59786,1832.43,27.56724
+155,5.138472,4,135,319.692,622,937,424,494,504.161,512,533,478,498,507.115,513,542,3.34926,5.01674,11.9422,0,2,10.6606,22,93,70,85.839,0.024417,0,0.015389,10,10,10,19.01173,46.68794,3054.27,47.4073,43.50547,25.34844,1543.56,28.31228
+156,5.171839,4,135,319.502,621,920,428,495,504.395,512,548,477,498,507.145,513,541,3.37855,4.95129,16.4161,0,2,10.5394,22,89,71,87.3755,0.016281,0,0.015389,10,10,10,19.02454,47.59638,4268.586,47.40437,43.42177,23.89467,2150.948,26.87121
+157,5.205205,4,135,320.937,625,923,428,495,504.353,512,536,474,498,507.26,514,545,3.38848,4.95222,17.4376,0,2,10.5,22,89,71,86.9117,0.020822,0,0.015364,10,10,10,20.66389,48.83173,3489.185,47.04539,43.31049,24.77027,1761.966,27.73754
+158,5.238572,4,136,321.945,626,952,424,495,504.347,512,528,478,498,507.221,513,570,3.41756,5.00215,13.0019,0,2,10.4629,22,92,70,85.7683,0.023197,0,0.015332,10,10,10,19.41864,47.19093,2897.347,47.31532,43.45893,25.57751,1465.326,28.53817
+159,5.271939,4,136,321.072,624,939,428,496,504.466,512,546,479,498,507.362,514,551,3.4179,4.97379,12.4544,0,2,10.3542,22,89,71,87.8111,0.023768,0,0.015312,10,10,10,20.12598,45.83307,3342.158,47.15994,43.58572,24.95724,1687.569,27.9249
+160,5.305305,4,136,323.39,628,930,424,496,504.635,512,546,480,498,506.995,513,541,3.43631,4.9638,13.5723,0,2,10.3464,22,92,68,85.8069,0.025034,0,0.015406,10,10,10,20.91657,45.027,3551.645,46.99261,43.66278,24.69322,1792.308,27.66339
+161,5.338672,4,135,322.315,627,937,424,496,504.649,512,535,479,498,507.274,513,543,3.50411,5.07639,11.3724,0,2,10.2809,22,91,71,87.4902,0.023817,0,0.015381,10,10,10,20.82155,47.72046,3512.209,47.01238,43.41047,24.74171,1773.24,27.70984
+162,5.372039,4,134,322.294,628,937,422,495,504.206,512,546,449,498,507.212,513,542,3.49118,5.0517,12.474,0,2,10.5827,22,94,70,84.9662,0.024969,0,0.015341,10,10,10,20.14202,47.58622,3484.476,47.15648,43.4227,24.77614,1759.17,27.74443
+163,5.405405,4,134,322.483,628,934,424,494,504.076,512,532,478,498,507.123,513,544,3.39931,4.96411,12.4714,0,2,10.7801,22,92,71,85.5802,0.024828,0,0.015401,10,10,10,20.73463,49.32472,2757.473,47.03055,43.26687,25.7924,1396.251,28.74788
+164,5.438772,4,135,322.667,626,936,424,494,503.983,512,537,476,498,507.11,513,542,3.4362,5.10512,12.7281,0,2,10.8023,23,91,70,84.0423,0.0238,0,0.015312,10,10,10,20.06464,48.90837,3064.236,47.1732,43.30368,25.33429,1549.361,28.29599
+165,5.472139,4,135,322.476,625,935,422,492,503.757,512,533,476,498,507.139,514,609,3.42773,5.05877,14.6255,0,2,11.0313,23,97,71,84.8377,0.02426,0,0.015244,10,10,10,21.1849,46.81883,3375.534,46.93725,43.49331,24.91409,1704.768,27.88086
+166,5.505506,4,136,324.086,628,938,426,493,503.875,512,570,476,498,507.223,514,573,3.41837,5.06546,12.4308,0,2,10.8956,23,89,71,85.5784,0.02432,0,0.015235,10,10,10,20.37125,47.95789,3572.068,47.10733,43.38891,24.66832,1803.116,27.63728
+167,5.538872,4,135,323.171,627,933,424,493,503.923,512,583,476,498,507.148,513,550,3.42654,5.15516,16.2376,0,2,10.9031,23,92,71,85.8157,0.022316,0,0.015201,10,10,10,19.78044,47.16657,3892.292,47.23515,43.46117,24.29546,1962.882,27.26857
+168,5.572239,4,134,322.768,628,935,422,493,503.9,512,566,471,498,507.216,513,545,3.37598,5.14689,12.711,0,2,10.8712,23,94,71,85.9067,0.024423,0,0.015244,10,10,10,20.04856,48.32773,3122.765,47.17668,43.35555,25.25212,1578.477,28.21513
+169,5.605606,4,135,323.328,628,931,426,493,504.031,512,608,474,498,507.101,513,542,3.37419,5.00892,10.8864,0,2,10.8546,23,99,70,86.5634,0.024077,0,0.015232,10,10,10,20.4536,50.07979,2829.627,47.08981,43.20089,25.68022,1432.447,28.63673
+170,5.638972,4,135,323.292,628,944,422,492,503.919,512,625,476,498,507.203,514,548,3.45783,5.17038,12.0882,0,2,10.8838,23,118,71,87.1754,0.022508,0,0.015255,10,10,10,19.46229,50.17002,4019.441,47.30557,43.19307,24.15586,2027.129,27.1287
+171,5.672339,4,135,322.438,627,940,424,492,503.746,512,534,477,498,507.319,514,545,3.41288,5.12086,15.3008,0,2,10.8983,23,93,71,85.8004,0.020533,0,0.015258,10,10,10,20.43596,49.96899,4144.502,47.09356,43.21051,24.02279,2089.852,26.99636
+172,5.705706,4,136,323.917,629,948,424,492,503.859,512,533,478,498,507.148,513,540,3.42619,5.14401,17.7214,0,2,10.8796,23,91,71,85.4848,0.021002,0,0.015249,10,10,10,20.76328,51.06684,3867.856,47.02455,43.11612,24.32281,1951.886,27.29297
+173,5.739072,4,136,323.531,628,925,424,492,503.7,512,546,418,498,507.134,513,544,3.45075,5.20728,14.5795,0,2,11.0481,23,101,71,84.5489,0.022742,0,0.015215,10,10,10,20.55848,49.51666,2502.886,47.0676,43.25,26.2131,1268.962,29.16303
+174,5.772439,4,136,323.036,625,942,424,493,503.817,512,569,476,498,507.081,513,540,3.44015,5.15461,18.1823,0,2,10.9921,23,93,70,84.668,0.020779,0,0.015301,10,10,10,19.83719,49.21863,1736.255,47.22271,43.27622,27.80138,885.3914,30.72616
+175,5.805806,4,135,322.541,625,926,422,492,503.558,512,552,476,498,506.985,513,588,3.48797,5.23941,15.0836,0,2,11.2212,23,94,70,83.5955,0.022922,0,0.015218,10,10,10,22.14222,50.34765,3346.385,46.7453,43.17772,24.95175,1691.315,27.91527
+176,5.839173,4,136,323.326,626,926,423,492,503.451,512,576,478,498,507.329,514,541,3.51047,5.23263,12.5005,0,2,11.144,23,92,71,85.9235,0.020808,0,0.015218,10,10,10,19.80471,50.87242,4005.856,47.22983,43.13269,24.17056,2020.598,27.14271
+177,5.872539,4,135,323.354,628,936,422,492,503.885,512,536,470,498,507.117,513,552,3.46691,5.20228,14.6424,0,2,10.9394,23,93,71,85.4423,0.023311,0,0.015263,10,10,10,20.13512,50.05227,3643.483,47.15797,43.20327,24.58235,1839.288,27.55101
+178,5.905906,4,136,322.333,625,935,424,492,503.623,512,532,473,498,507.357,514,540,3.4705,5.2185,11.1205,0,2,11.0658,23,91,71,86.9842,0.024168,0,0.015218,10,10,10,20.00833,51.74048,3548.572,47.1854,43.05921,24.69698,1792.223,27.66359
+179,5.939273,4,136,323.825,628,928,421,493,503.973,512,544,477,498,507.269,514,544,3.44061,5.16083,11.7637,0,2,10.8373,23,94,71,87.1149,0.023883,0,0.015272,10,10,10,20.16109,48.81079,3189.631,47.15237,43.31236,25.16011,1612.058,28.12371
+180,5.972639,4,135,323.009,627,932,424,493,504.027,512,644,477,498,507.302,514,542,3.39989,5.13236,12.3244,0,2,10.7806,23,133,71,87.6965,0.021765,0,0.015232,10,10,10,20.27286,51.82317,3760.73,47.12836,43.05227,24.44479,1898.389,27.41366
+181,6.006006,4,135,323.216,628,923,424,494,504.167,512,547,418,498,507.274,514,540,3.36415,5.0245,15.1871,0,2,10.7245,22,113,71,88.0537,0.023511,0,0.015209,10,10,10,20.94626,48.40794,3858.251,46.98645,43.34835,24.33361,1946.464,27.30505
+182,6.039373,4,135,323.491,628,924,422,493,503.858,512,578,453,498,507.257,514,544,3.46599,5.08743,12.8125,0,2,10.9347,23,92,71,86.7136,0.02426,0,0.015201,10,10,10,20.0576,49.67268,3127.719,47.17472,43.23634,25.24524,1581.292,28.20739
+183,6.072739,4,135,322.73,626,934,422,493,503.918,512,529,475,498,507.155,514,554,3.48005,5.12151,11.2448,0,2,10.9295,23,94,71,86.8732,0.024823,0,0.015255,10,10,10,19.96342,50.00873,3087.37,47.19516,43.20705,25.30163,1561.178,28.26299
+184,6.106106,4,135,322.62,625,935,424,493,503.985,512,562,476,498,506.978,513,544,3.52218,5.17691,14.5666,0,2,10.9422,23,92,70,85.5979,0.023648,0,0.015175,10,10,10,21.17785,48.86836,3544.482,46.93869,43.30724,24.70198,1789.752,27.66958
+185,6.139473,4,135,322.556,625,938,421,493,503.995,512,536,474,498,507.153,514,546,3.50151,5.16808,12.7563,0,2,10.8474,23,94,71,85.9307,0.023037,0,0.015255,10,10,10,20.88002,48.61459,3895.468,47.0002,43.32985,24.29192,1965.108,27.26365
+186,6.17284,4,135,323.873,627,931,425,493,503.944,512,562,452,498,507.349,514,541,3.49062,5.19857,13.3906,0,2,10.8007,22,91,71,88.07,0.023434,0,0.015172,10,10,10,19.78344,47.66831,3580.014,47.2345,43.41522,24.65867,1806.87,27.62824
+187,6.206206,4,134,323.719,628,925,428,493,504.043,512,529,478,498,507.541,514,542,3.42316,5.1828,12.0922,0,2,10.6169,22,89,71,89.0554,0.024914,0,0.015226,10,10,10,21.12287,50.23507,2992.778,46.94998,43.18744,25.43677,1514.228,28.3956
+188,6.239573,4,135,322.94,625,932,423,494,504.172,512,619,466,499,507.716,514,542,3.41422,5.12651,14.3424,0,2,10.4196,22,116,72,88.6141,0.021831,0,0.015246,10,10,10,19.6774,48.46535,1870.636,47.25784,43.3432,27.47762,952.3538,30.40953
+189,6.27294,4,136,321.622,623,937,421,492,503.919,512,562,477,498,507.589,514,558,3.40287,5.15005,20.8444,0,2,10.7142,22,94,71,88.2531,0.023474,0,0.015249,10,10,10,20.13217,49.66813,2969.313,47.15861,43.23674,25.47095,1502.106,28.43051
+190,6.306306,4,136,323.338,625,927,423,492,503.631,512,532,477,499,507.738,514,563,3.46287,5.19271,14.4346,0,2,10.8386,23,92,74,88.3184,0.02324,0,0.015241,10,10,10,19.71566,51.77195,3739.552,47.2494,43.05657,24.46932,1887.648,27.4383
+191,6.339673,4,136,323.595,627,944,424,492,503.639,512,543,468,499,507.684,514,542,3.43764,5.26658,14.2643,0,2,10.8186,22,91,72,87.5746,0.021611,0,0.015284,10,10,10,20.17442,50.98313,4028.261,47.1495,43.12325,24.14634,2031.92,27.11845
+192,6.37304,4,135,323.041,627,928,423,492,503.631,512,556,446,499,507.926,514,545,3.4362,5.19656,11.9902,0,2,10.7281,22,93,74,88.3524,0.024774,0,0.015221,10,10,10,19.92442,50.34346,2853.542,47.20366,43.17808,25.64367,1444.338,28.60082
+193,6.406406,4,135,322.809,626,938,424,492,503.783,512,533,478,499,507.838,514,545,3.3884,5.10885,10.7789,0,2,10.6536,22,92,74,89.1398,0.023394,0,0.015215,10,10,10,19.90628,49.54494,3509.904,47.20761,43.24752,24.74456,1772.315,27.71211
+194,6.439773,4,135,322.705,626,944,422,492,503.674,512,546,476,499,507.792,514,544,3.36974,5.15227,12.7248,0,2,10.7416,22,93,73,87.9851,0.01975,0,0.015201,10,10,10,19.30984,50.51848,3952.074,47.33973,43.16301,24.22926,1993.494,27.20136
+195,6.47314,4,136,322.748,626,932,422,492,503.808,512,540,478,498,507.594,514,546,3.5178,5.3043,14.8839,0,2,10.776,23,93,71,88.8943,0.021248,0,0.015229,10,10,10,20.44747,51.49927,3929.467,47.09112,43.0795,24.25418,1982.72,27.2249
+196,6.506507,4,136,323.728,628,932,425,492,503.749,512,596,463,498,507.553,514,544,3.47171,5.34117,13.5778,0,2,10.8112,23,96,71,87.3487,0.022839,0,0.015178,10,10,10,20.38605,50.99322,3967.692,47.10418,43.12239,24.21213,2001.691,27.18354
+197,6.539873,4,135,323.238,627,941,424,493,503.969,512,533,475,498,507.401,513,543,3.48016,5.21967,11.1391,0,2,10.683,22,93,71,87.0794,0.023897,0,0.015232,10,10,10,20.28259,48.01974,3654.052,47.12628,43.38332,24.56977,1844.102,27.53967
+198,6.57324,4,135,322.592,625,928,422,492,503.386,512,562,476,498,507.297,514,542,3.43615,5.15678,13.9301,0,2,11.1468,23,94,71,83.6755,0.024308,0,0.015238,10,10,10,19.60846,48.64494,2522.786,47.27308,43.32714,26.17871,1278.457,29.13065
+199,6.606607,4,135,323.805,626,939,428,492,503.698,512,583,476,498,507.239,513,545,3.40518,5.22615,14.2176,0,2,11.0053,23,89,71,85.5628,0.02348,0,0.015206,10,10,10,20.23984,48.34622,2557.05,47.13544,43.35389,26.12012,1295.672,29.07256
+200,6.639973,4,135,324.62,627,938,424,492,503.703,512,584,476,498,507.199,513,545,3.46015,5.18954,12.1019,0,2,11.062,23,91,71,85.7683,0.022899,0,0.015212,10,10,10,20.12402,50.54473,3470.905,47.16037,43.16076,24.79309,1753.12,27.7594
+201,6.67334,4,135,324.014,626,942,422,493,503.86,512,557,476,498,506.978,513,546,3.46016,5.15207,11.9,0,2,11.0587,23,94,70,84.7172,0.02454,0,0.015281,10,10,10,20.90939,50.79279,3520.553,46.9941,43.13949,24.7314,1778.202,27.6977
+202,6.706707,4,136,322.74,625,947,424,492,503.782,512,615,475,498,507.221,513,543,3.48564,5.26804,13.3563,0,2,11.0013,23,103,71,86.8611,0.024629,0,0.015278,10,10,10,20.80274,49.05751,3591.299,47.01631,43.29046,24.645,1813.114,27.61326
+203,6.740073,4,136,324.036,626,935,425,492,503.889,512,538,474,498,507.323,514,544,3.42591,5.21455,13.7315,0,2,10.9327,23,90,71,87.2945,0.023946,0,0.015275,10,10,10,19.97777,47.79552,3241.804,47.19204,43.40364,25.08965,1637.845,28.05478
+204,6.77344,4,136,325.661,628,943,428,493,504.065,512,534,478,498,507.368,514,544,3.51833,5.16479,11.5582,0,2,10.7389,23,88,71,87.857,0.024245,0,0.015232,10,10,10,21.03653,48.52444,3258.082,46.96777,43.33791,25.06789,1646.431,28.03208
+205,6.806807,4,135,324.851,627,930,424,492,503.887,512,586,476,498,507.141,513,542,3.49872,5.20247,12.2403,0,2,10.9273,23,92,71,85.323,0.024963,0,0.015258,10,10,10,20.34294,49.81698,3551.481,47.11338,43.22374,24.69342,1793.281,27.66103
+206,6.840174,4,135,323.303,625,938,425,493,503.997,512,534,465,498,507.353,514,542,3.43822,5.17511,13.3119,0,2,10.7604,23,90,71,87.1506,0.022214,0,0.015212,10,10,10,20.098,49.32198,3961.826,47.16599,43.26711,24.21856,1998.268,27.19098
+207,6.87354,4,136,323.437,625,952,423,492,503.797,512,545,474,498,507.121,513,545,3.4753,5.2329,14.9417,0,2,11.0743,23,92,71,86.692,0.023502,0,0.015252,10,10,10,20.59677,51.81305,3474.527,47.05952,43.05312,24.78856,1755.366,27.75384
+208,6.906907,4,136,322.402,623,948,424,493,504,512,542,472,498,507.268,514,540,3.51642,5.22333,12.624,0,2,10.7836,23,91,71,86.4849,0.02328,0,0.015241,10,10,10,20.67205,49.15138,3883.86,47.04368,43.28215,24.30488,1959.386,27.27631
+209,6.940274,4,136,324.521,627,947,417,493,503.798,512,552,472,498,507.339,514,553,3.49579,5.1529,13.0586,0,2,10.937,23,103,71,86.0657,0.023248,0,0.015289,10,10,10,21.22341,50.89829,3904.419,46.92936,43.13048,24.28195,1970.24,27.25232
+210,6.97364,4,136,323.663,625,939,422,492,503.528,512,613,474,498,507.465,514,540,3.47049,5.21673,12.7497,0,2,11.0526,23,102,71,86.3214,0.024411,0,0.015284,10,10,10,20.10088,50.94041,2838.909,47.16536,43.12689,25.666,1437.215,28.6223
+211,7.007007,4,134,322.288,624,936,428,492,503.917,512,552,478,498,507.62,514,544,3.45074,5.19818,12.9515,0,2,10.6925,22,89,72,87.6544,0.024874,0,0.015272,10,10,10,19.26055,48.86709,3089.385,47.35083,43.30735,25.29879,1561.724,28.26147
+212,7.040374,4,135,322.224,623,931,421,492,503.763,512,536,476,499,507.774,514,541,3.40548,5.23667,12.0598,0,2,10.7324,22,94,74,88.0074,0.023428,0,0.015278,10,10,10,20.45773,51.29832,2876.781,47.08894,43.09648,25.60844,1456.33,28.56492
+213,7.07374,4,135,322.289,623,932,422,492,503.822,512,567,475,499,507.927,514,551,3.45746,5.26665,12.5488,0,2,10.5969,22,93,74,88.7042,0.0228,0,0.015278,10,10,10,20.26426,49.95834,3933.891,47.13021,43.21143,24.24929,1984.501,27.221
+214,7.107107,4,135,323.593,626,930,422,493,504.052,512,538,478,499,507.834,514,546,3.428,5.12807,14.2289,0,2,10.4423,22,94,73,89.0346,0.024071,0,0.015326,10,10,10,20.23503,50.14578,4004.743,47.13648,43.19517,24.17177,2019.967,27.14407
+215,7.140474,4,136,323.867,626,938,425,493,504.055,512,624,446,499,507.908,514,545,3.40764,5.13744,10.2604,0,2,10.4117,22,130,74,88.903,0.02442,0,0.015269,10,10,10,19.41447,50.25719,3649.791,47.31626,43.18553,24.57483,1842.313,27.54388
+216,7.173841,4,135,323.047,625,932,424,494,504.192,512,532,478,500,507.994,514,543,3.3499,5.0709,11.5979,0,2,10.2494,21,91,74,89.2825,0.024757,0,0.015295,10,10,10,19.14483,47.27394,3093.322,47.377,43.45129,25.29326,1563.266,28.25719
+217,7.207207,4,135,322.949,624,931,424,492,503.686,512,559,478,500,507.824,514,544,3.32536,5.09024,11.0247,0,2,10.6919,22,93,72,87.5352,0.023297,0,0.015232,10,10,10,19.39875,50.98443,3381.412,47.31978,43.12314,24.90653,1708.302,27.87187
+218,7.240574,4,135,323.13,625,924,422,492,503.612,512,548,478,500,507.866,514,542,3.36316,5.18252,12.376,0,2,10.7269,22,94,72,87.3117,0.022194,0,0.015204,10,10,10,19.22972,52.00134,3990.69,47.35778,43.03737,24.18703,2013.153,27.15875
+219,7.273941,4,136,322.581,625,941,424,492,503.334,512,580,478,499,507.801,514,539,3.4282,5.28911,13.7563,0,2,10.9922,23,92,74,85.9788,0.023348,0,0.015204,10,10,10,19.54159,51.58283,3675.324,47.28791,43.07246,24.54456,1855.443,27.51304
+220,7.307307,4,135,322.206,624,939,423,492,503.253,512,557,478,499,507.856,514,545,3.5089,5.36097,11.1059,0,2,11.0058,23,92,72,85.7383,0.024654,0,0.015272,10,10,10,20.97994,53.50417,3700.441,46.97947,42.91364,24.51498,1868.841,27.48179
+221,7.340674,4,135,321.261,622,932,422,492,503.123,512,553,429,500,507.814,514,541,3.39277,5.2535,12.1171,0,2,11.0567,23,93,71,84.104,0.023968,0,0.015312,10,10,10,19.74033,51.03737,3242.146,47.24397,43.11863,25.08919,1638.767,28.05234
+222,7.374041,4,135,321.688,622,946,424,492,503.001,512,583,449,499,507.913,514,540,3.38828,5.22905,14.8722,0,2,11.1791,23,92,74,85.645,0.023391,0,0.015292,10,10,10,19.10821,51.74345,2524.066,47.38532,43.05896,26.1765,1279.746,29.12627
+223,7.407407,4,135,322.574,624,933,423,491,502.928,512,590,417,499,507.867,514,546,3.44887,5.29969,11.5572,0,2,11.2688,23,120,74,85.8803,0.023571,0,0.015326,10,10,10,20.55197,54.10959,3599.179,47.06898,42.86477,24.63548,1818.255,27.60097
+224,7.440774,4,135,323.457,626,944,422,491,502.901,512,529,472,500,507.985,514,545,3.42274,5.31874,10.9799,0,2,11.2439,23,94,74,85.7463,0.024751,0,0.015306,10,10,10,19.19215,52.84523,3245.272,47.36628,42.96745,25.085,1640.645,28.04737
+225,7.474141,4,135,323.13,625,939,422,492,503.304,512,608,479,500,507.89,514,556,3.40398,5.31151,12.4377,0,2,10.9484,22,105,73,86.5824,0.025103,0,0.015252,10,10,10,19.78533,51.34737,3303.365,47.23408,43.09233,25.00795,1669.466,27.97174
+226,7.507508,4,136,322.346,623,928,422,492,503.233,512,534,478,499,507.882,514,544,3.43753,5.3063,13.3631,0,2,11.019,23,94,74,86.6128,0.02432,0,0.015281,10,10,10,20.13601,53.06084,3524.094,47.15778,42.94977,24.72704,1780.346,27.69247
+227,7.540874,4,135,320.092,620,937,422,492,503.93,512,540,479,500,507.944,514,544,3.43359,5.30299,12.2635,0,2,10.4501,22,94,74,89.5985,0.02406,0,0.015346,10,10,10,19.85362,50.2012,3416.551,47.21912,43.19037,24.86163,1725.789,27.82764
+228,7.574241,4,135,319.186,619,928,422,492,503.613,512,534,478,500,507.958,514,550,3.41221,5.21776,15.1378,0,2,10.6626,22,93,74,87.9519,0.018181,0,0.015289,10,10,10,19.3095,51.41684,3991.275,47.3398,43.08646,24.1864,2013.319,27.15839
+229,7.607608,4,135,319.471,619,934,422,492,503.502,512,606,474,499,507.769,514,543,3.40079,5.2539,17.7861,0,2,10.8206,22,94,71,85.5686,0.018176,0,0.015292,10,10,10,20.32989,53.31561,4168.358,47.11616,42.92897,23.99786,2102.59,26.96997
+230,7.640974,4,135,320.317,621,940,420,492,503.552,512,554,447,499,507.64,514,542,3.3915,5.24939,14.4349,0,2,10.8234,22,95,71,85.2866,0.023774,0,0.015289,10,10,10,19.70759,48.87222,2712.544,47.25118,43.30689,25.86375,1373.417,28.81949
+231,7.674341,4,135,321.015,621,938,421,492,503.516,512,528,478,499,507.684,514,549,3.47838,5.29363,12.3879,0,2,10.86,22,94,71,85.6884,0.024714,0,0.015281,10,10,10,20.36404,50.52665,3011.964,47.10888,43.16231,25.40902,1523.705,28.36851
+232,7.707708,4,135,318.795,617,936,424,492,503.729,512,536,440,499,507.754,514,542,3.44998,5.22755,15.0343,0,2,10.6832,22,110,72,88.0099,0.024048,0,0.015289,10,10,10,20.98194,53.60634,3603.275,46.97906,42.90535,24.63054,1820.284,27.59612
+233,7.741074,4,134,320.344,622,939,420,492,503.437,512,547,476,499,507.682,514,543,3.38012,5.21662,12.5788,0,2,10.9507,23,95,72,86.5146,0.022917,0,0.015346,10,10,10,20.42066,52.34515,3978.48,47.09682,43.00875,24.20034,2007.431,27.17111
+234,7.774441,4,134,319.834,622,932,423,492,503.77,512,563,476,499,507.797,514,542,3.4299,5.19123,10.9509,0,2,10.6833,22,92,73,87.8483,0.02378,0,0.015381,10,10,10,19.57493,49.25159,3492.488,47.28051,43.27331,24.76617,1763.45,27.73388
+235,7.807808,4,133,319.092,620,925,424,492,503.717,512,608,402,499,507.755,514,541,3.37249,5.17011,12.2174,0,2,10.6928,22,146,71,85.8982,0.023623,0,0.015321,10,10,10,19.89733,51.86799,2382.855,47.20956,43.04852,26.42654,1209.369,29.37193
+236,7.841175,4,133,317.91,619,926,423,492,503.783,512,528,477,498,507.732,514,550,3.39492,5.1495,13.7697,0,2,10.692,22,93,71,86.7423,0.022957,0,0.015306,10,10,10,20.30135,49.48671,2588.106,47.12227,43.25263,26.06769,1311.5,29.01983
+237,7.874541,4,134,318.284,618,927,423,492,503.748,512,533,478,499,507.954,514,543,3.51344,5.25942,13.3817,0,2,10.6223,22,93,74,88.0329,0.023411,0,0.015278,10,10,10,20.70773,53.27591,3812.41,47.03619,42.93221,24.38552,1924.701,27.35388
+238,7.907908,4,134,319.165,620,943,423,493,503.846,512,553,478,499,507.815,514,543,3.42557,5.2312,11.786,0,2,10.4939,22,93,71,86.8709,0.024243,0,0.015329,10,10,10,20.02066,49.33582,3875.92,47.18273,43.26589,24.31377,1955.299,27.28538
+239,7.941275,4,133,318.144,619,948,423,492,503.88,512,543,474,498,507.588,514,541,3.39895,5.07932,10.4263,0,2,10.6789,22,93,71,86.9643,0.024886,0,0.015381,10,10,10,20.04763,50.53804,3508.169,47.17688,43.16133,24.74671,1771.731,27.71354
+240,7.974641,4,133,318.784,620,939,422,492,503.808,512,535,476,499,507.795,514,550,3.4298,5.15772,11.6192,0,2,10.6275,22,94,73,87.4386,0.024191,0,0.015303,10,10,10,19.97148,50.53528,3052.619,47.19341,43.16157,25.35079,1543.936,28.31122
+241,8.008008,4,133,318.645,619,922,428,492,503.649,512,529,477,498,507.513,514,544,3.48853,5.27543,12.829,0,2,10.8357,22,88,71,85.4362,0.02424,0,0.015235,10,10,10,19.78505,48.17084,2411.584,47.23414,43.36967,26.37449,1222.781,29.32403
+242,8.041375,4,133,317.98,618,927,422,492,503.75,512,536,474,499,507.713,514,542,3.52577,5.31609,13.312,0,2,10.7184,22,94,72,87.1156,0.022076,0,0.015295,10,10,10,20.09736,51.36047,4067.302,47.16612,43.09122,24.10445,2051.516,27.07676
+243,8.074741,4,135,318.893,619,940,424,492,503.565,512,533,478,499,507.806,514,543,3.48616,5.24482,14.8669,0,2,10.8161,23,92,72,86.22,0.020622,0,0.015249,10,10,10,20.82758,53.55087,4132.303,47.01112,42.90985,24.03559,2084.746,27.00698
+244,8.108108,4,134,318.579,620,930,422,492,503.337,512,536,478,499,507.706,514,539,3.39207,5.19158,15.2206,0,2,10.981,23,94,71,85.8689,0.021705,0,0.015303,10,10,10,20.39498,51.94059,3989.271,47.10228,43.04244,24.18858,2012.719,27.15968
+245,8.141475,4,134,319.79,622,934,422,492,503.303,512,627,478,499,507.714,514,542,3.4349,5.24564,10.8302,0,2,11.0211,23,115,71,85.7668,0.023731,0,0.015275,10,10,10,19.86535,52.5753,3563.297,47.21655,42.9897,24.67899,1799.759,27.64537
+246,8.174842,4,134,319.982,621,937,428,492,503.563,512,581,397,498,507.711,514,542,3.42116,5.27811,16.3071,0,2,10.8507,23,133,72,87.0837,0.022902,0,0.015358,10,10,10,20.56892,50.8444,2121.476,47.0654,43.13508,26.93113,1078.591,29.86894
+247,8.208208,4,134,319.305,621,928,428,492,503.363,512,533,477,499,507.828,514,546,3.48727,5.38029,13.1326,0,2,10.9652,23,88,74,87.4898,0.024071,0,0.015332,10,10,10,20.24967,54.16981,2914.042,47.13334,42.85994,25.55256,1475.626,28.50775
+248,8.241575,4,133,318.936,620,935,424,492,503.685,512,536,470,499,507.857,514,538,3.46254,5.30804,10.5835,0,2,10.6943,22,91,73,87.8672,0.023171,0,0.015364,10,10,10,20.14162,51.89891,3619.943,47.15657,43.04593,24.6105,1827.982,27.57779
+249,8.274942,4,134,319.514,621,937,422,492,503.74,512,534,474,499,507.909,514,540,3.3551,5.15036,10.9003,0,2,10.5969,22,93,74,88.0893,0.024263,0,0.015346,10,10,10,19.42506,50.84988,3471.941,47.31389,43.13461,24.79179,1753.539,27.75836
+250,8.308308,4,133,318.702,620,935,422,492,503.675,512,534,476,499,507.862,514,541,3.42899,5.32909,11.0121,0,2,10.7066,23,93,74,88.061,0.02412,0,0.015355,10,10,10,19.6283,53.49951,3867.807,47.26868,42.91401,24.32287,1952.185,27.2923
+251,8.341675,4,133,319.339,621,932,423,492,503.831,512,534,479,499,507.907,514,548,3.49242,5.27084,11.0068,0,2,10.5271,22,93,74,88.5921,0.023677,0,0.015343,10,10,10,19.97564,52.61184,3892.824,47.19251,42.98668,24.29487,1964.559,27.26486
+252,8.375042,4,133,317.969,619,933,423,492,503.57,512,552,478,499,507.874,514,541,3.40273,5.21184,11.6174,0,2,10.7588,22,91,74,87.0396,0.022371,0,0.015275,10,10,10,19.78951,52.71341,3584.562,47.23316,42.9783,24.65315,1810.407,27.61975
+253,8.408408,4,134,319.4,619,925,424,492,503.885,512,547,468,499,507.707,514,537,3.38764,5.14795,18.7276,0,2,10.5969,22,91,71,87.8104,0.013803,0,0.015301,10,10,10,21.12393,50.99403,4807.263,46.94977,43.12232,23.37853,2421.661,26.35638
+254,8.441775,4,134,320.084,622,927,422,492,503.74,512,550,470,499,507.779,514,537,3.3617,5.09787,17.424,0,2,10.6518,22,93,72,86.7841,0.022985,0,0.015258,10,10,10,19.5347,49.27433,2592.644,47.28944,43.27131,26.06008,1313.524,29.01313
+255,8.475142,4,134,319.58,620,944,422,492,503.817,512,566,476,499,507.772,514,535,3.42255,5.19815,16.1859,0,2,10.6354,22,93,73,87.4164,0.023337,0,0.015284,10,10,10,19.73281,50.3449,2501.671,47.24563,43.17796,26.21521,1268.355,29.1651
+256,8.508509,4,135,319.445,619,937,422,492,503.767,512,561,478,499,507.71,514,568,3.43877,5.2561,19.5433,0,2,10.6483,22,94,71,87.0975,0.022994,0,0.015338,10,10,10,20.45926,51.51093,3166.962,47.08862,43.07852,25.19108,1601.474,28.15232
+257,8.541875,4,135,320.538,622,939,422,492,503.555,512,552,464,499,507.869,514,536,3.41511,5.18262,12.3368,0,2,10.7755,22,94,74,87.2191,0.022079,0,0.015329,10,10,10,20.56063,52.42594,3691.014,47.06715,43.00205,24.52605,1863.754,27.49363
+258,8.575242,4,134,319.665,620,928,424,493,504.012,512,612,477,499,507.695,514,533,3.40638,5.17742,14.2019,0,2,10.4765,22,100,71,87.7346,0.021545,0,0.015284,10,10,10,19.64774,52.60014,3756.009,47.26439,42.98764,24.45025,1896.067,27.41898
+259,8.608609,4,134,319.028,621,925,428,492,503.72,512,536,478,499,507.811,514,533,3.42863,5.17015,12.3309,0,2,10.6244,22,89,73,87.1488,0.023863,0,0.015303,10,10,10,20.60881,50.41461,2739.126,47.05698,43.17195,25.82139,1387.319,28.77575
+260,8.641975,4,134,318.974,620,940,422,492,503.848,512,536,478,498,507.72,514,532,3.47506,5.3113,13.0719,0,2,10.6136,22,94,73,88.1342,0.023748,0,0.015281,10,10,10,19.90097,50.73113,2347.738,47.20877,43.14477,26.49102,1191.527,29.43647
+261,8.675342,4,134,318.237,617,942,423,492,503.397,512,628,467,499,507.965,514,534,3.44546,5.25122,15.4248,0,2,10.8904,23,124,75,88.2088,0.023743,0,0.015332,10,10,10,19.3223,51.35156,3364.387,47.33693,43.09198,24.92845,1699.862,27.89338
+262,8.708709,4,134,318.746,618,932,422,492,503.279,512,533,457,500,508.135,514,536,3.46539,5.39565,10.6313,0,2,10.8687,23,94,75,88.7509,0.023342,0,0.015321,10,10,10,20.43837,53.99345,3923.177,47.09305,42.8741,24.26113,1980.197,27.23043
+263,8.742075,4,134,319.23,620,937,424,492,503.466,512,538,480,500,508.048,514,535,3.44094,5.3678,12.9859,0,2,10.6896,22,91,74,87.3227,0.022694,0,0.015301,10,10,10,19.51152,52.24772,3975.774,47.2946,43.01684,24.2033,2005.827,27.17458
+264,8.775442,4,133,318.675,620,934,425,492,503.283,512,532,478,500,508.138,514,536,3.36602,5.37622,11.0849,0,2,10.8222,22,92,75,87.9442,0.02382,0,0.015343,10,10,10,19.47597,52.22298,3571.12,47.30252,43.0189,24.66947,1803.485,27.63639
+265,8.808809,4,133,319.355,621,926,424,491,503.076,512,533,474,500,508.042,514,535,3.46,5.41566,10.971,0,2,10.9805,23,92,74,86.7045,0.022937,0,0.015309,10,10,10,19.11861,52.17356,3415.636,47.38295,43.02301,24.8628,1725.641,27.82801
+266,8.842176,4,134,319.347,621,935,422,491,502.902,512,526,478,500,508.186,514,537,3.31737,5.30353,11.4738,0,2,11.0511,23,94,75,86.3742,0.02288,0,0.015266,10,10,10,18.56574,52.61778,3663.004,47.51039,42.98619,24.55914,1849.298,27.52744
+267,8.875542,4,134,318.885,620,935,424,490,502.795,512,571,474,500,508.06,514,538,3.368,5.36413,12.0298,0,2,11.1854,23,92,74,84.8867,0.022048,0,0.015309,10,10,10,19.52259,53.30882,3915.852,47.29214,42.92952,24.26925,1976.134,27.23935
+268,8.908909,4,133,318.351,620,941,420,491,502.61,512,534,478,500,508.013,514,540,3.3682,5.31335,11.4567,0,2,11.3577,23,95,74,85.2609,0.02376,0,0.015378,10,10,10,19.17438,52.13118,3829.584,47.3703,43.02654,24.366,1932.619,27.33605
+269,8.942276,4,133,318.257,619,928,421,490,502.735,512,527,459,500,508.158,514,540,3.41732,5.4685,11.4243,0,2,11.2514,23,94,75,87.2339,0.023877,0,0.015383,10,10,10,19.72751,53.46292,3355.625,47.24679,42.91699,24.93978,1696.11,27.90297
+270,8.975642,4,133,318.93,620,924,424,491,502.657,512,562,479,500,508.219,514,538,3.39135,5.38426,11.5446,0,2,11.2559,23,92,75,86.527,0.023374,0,0.015329,10,10,10,19.13557,52.6019,2974.081,47.3791,42.9875,25.46399,1504.975,28.42222
+271,9.009009,4,133,319.209,620,926,328,491,502.683,512,528,470,500,508.274,514,538,3.35975,5.38737,9.98788,0,2,11.2567,23,187,75,86.7789,0.024717,0,0.015284,10,10,10,19.58406,57.18545,3262.833,47.27848,42.62466,25.06156,1650.609,28.02107
+272,9.042376,4,133,319.237,621,919,422,491,502.785,512,534,474,500,508.25,514,577,3.40694,5.46684,9.8349,0,2,11.197,23,93,75,88.0207,0.0239,0,0.015309,10,10,10,18.93139,53.88907,3246.462,47.42569,42.88251,25.08341,1641.436,28.04527
+273,9.075742,4,133,319.053,621,933,420,491,502.807,512,582,430,500,508.175,514,543,3.39934,5.44624,10.4698,0,2,11.1964,23,107,75,86.2283,0.024606,0,0.015286,10,10,10,19.61949,54.77633,3535.5,47.27063,42.81158,24.71301,1786.349,27.67785
+274,9.109109,4,134,318.544,620,939,423,492,503.306,512,542,478,500,508.3,514,540,3.35774,5.29817,10.3933,0,2,10.7477,22,92,75,88.4335,0.024251,0,0.015229,10,10,10,19.23227,52.79335,3415.041,47.35721,42.97172,24.86355,1725.527,27.8283
+275,9.142476,4,134,318.389,618,941,420,492,503.453,512,534,480,500,508.151,514,542,3.32795,5.20223,13.3306,0,2,10.6816,22,95,74,87.7905,0.025017,0,0.015286,10,10,10,18.93061,53.14847,3340.736,47.42587,42.9426,24.95909,1688.388,27.92279
+276,9.175843,4,133,318.473,620,938,423,492,503.517,512,533,475,500,508.157,514,539,3.35574,5.18351,10.2656,0,2,10.6575,22,94,75,89.4182,0.024388,0,0.015266,10,10,10,19.84042,52.86421,3476.448,47.222,42.9659,24.78616,1756.4,27.75128
+277,9.209209,4,133,319.302,621,932,423,492,503.666,512,527,476,500,508.134,514,548,3.3724,5.24849,11.6679,0,2,10.5575,22,93,75,88.9717,0.024263,0,0.015212,10,10,10,20.55909,51.52342,3761.09,47.06747,43.07747,24.44437,1898.566,27.41326
+278,9.242576,4,133,318.475,620,933,413,492,503.375,512,538,464,500,508.11,514,540,3.43095,5.33157,10.6626,0,2,10.757,22,110,74,87.594,0.02422,0,0.015249,10,10,10,19.44467,54.60935,3382.176,47.30951,42.82484,24.90555,1709.601,27.86857
+279,9.275943,4,133,316.998,617,937,423,492,503.547,512,540,474,499,508.035,514,591,3.42747,5.29256,11.1083,0,2,10.7204,22,92,74,88.8,0.021919,0,0.015238,10,10,10,21.02044,53.32528,3915.145,46.9711,42.92818,24.27004,1976.159,27.23929
+280,9.309309,4,133,317.868,617,941,423,492,503.301,512,532,448,500,508.265,514,538,3.42025,5.22234,13.0248,0,2,10.7651,22,94,75,87.9538,0.022539,0,0.015306,10,10,10,19.97982,53.21236,3991.953,47.1916,42.93739,24.18566,2014.275,27.15633
+281,9.342676,4,134,319.529,620,937,401,492,503.112,512,533,461,500,508.273,514,541,3.37384,5.35109,11.1835,0,2,10.934,22,122,75,87.351,0.022811,0,0.015246,10,10,10,20.45741,56.33591,3924.917,47.08901,42.68966,24.25921,1981.656,27.22723
+282,9.376043,4,134,319.868,621,936,423,491,503.103,512,536,452,500,508.373,514,540,3.37255,5.39831,10.5153,0,2,10.8728,22,92,75,87.8658,0.024003,0,0.015261,10,10,10,19.51492,53.47042,3549.62,47.29385,42.91638,24.69569,1793.056,27.66157
+283,9.409409,4,133,318.696,619,915,428,492,503.284,512,532,480,500,508.2,514,540,3.38757,5.40002,13.2638,0,2,10.7773,23,89,75,87.7587,0.024503,0,0.015298,10,10,10,19.11532,53.16721,2394.584,47.3837,42.94107,26.40521,1215.363,29.35045
+284,9.442776,4,133,318.338,618,927,422,491,503.032,512,532,478,500,508.243,514,574,3.35334,5.31814,14.4659,0,2,10.9462,23,95,75,86.7317,0.023594,0,0.015343,10,10,10,19.40569,53.65394,2311.735,47.31822,42.9015,26.55813,1174.133,29.50034
+285,9.476143,4,134,319.408,619,944,424,491,502.847,512,537,435,500,508.394,514,539,3.38883,5.39177,13.114,0,2,11.0372,23,91,75,88.2339,0.022282,0,0.015346,10,10,10,19.66966,52.72788,3876.162,47.25954,42.97711,24.31349,1956.18,27.28342
+286,9.50951,4,135,319.819,620,938,422,491,503.048,512,535,478,500,508.255,514,549,3.43781,5.40564,12.5973,0,2,10.952,23,94,75,87.335,0.023308,0,0.015312,10,10,10,19.76907,52.70321,3897.703,47.23765,42.97914,24.28943,1966.97,27.25954
+287,9.542876,4,134,319.913,621,934,422,491,503.023,512,526,474,500,508.184,514,539,3.42233,5.35163,9.99169,0,2,11.0035,23,94,75,87.2807,0.024863,0,0.015324,10,10,10,20.2439,52.99975,3676.955,47.13457,42.95477,24.54263,1856.789,27.50989
+288,9.576243,4,135,319.462,620,936,422,491,503.073,512,553,478,500,508.305,514,588,3.41467,5.3403,14.2845,0,2,10.9436,22,93,75,87.9451,0.0237,0,0.015392,10,10,10,19.67648,52.03677,2684.914,47.25804,43.03441,25.90821,1360.385,28.86089
+289,9.60961,4,133,319.32,620,924,424,491,502.909,512,558,468,500,508.307,514,541,3.40595,5.35657,12.9805,0,2,11.0964,23,93,75,87.6131,0.02404,0,0.015398,10,10,10,20.35287,53.84697,2691.754,47.11126,42.8859,25.89716,1364.427,28.84801
+290,9.642976,4,133,319.839,620,928,425,491,502.863,512,548,471,500,508.213,514,540,3.43399,5.35045,11.4917,0,2,11.1726,23,92,75,86.3639,0.022782,0,0.015406,10,10,10,20.15741,52.63919,3874.725,47.15317,42.98442,24.3151,1955.561,27.2848
+291,9.676343,4,134,320.398,622,933,420,490,502.303,512,529,462,500,508.127,514,540,3.43771,5.37868,13.1228,0,2,11.6214,24,95,75,85.8454,0.022288,0,0.015364,10,10,10,20.34257,54.07505,3822.202,47.11345,42.86754,24.37438,1929.706,27.3426
+292,9.70971,4,134,318.201,619,937,422,490,502.421,512,529,478,500,508.467,514,550,3.42962,5.48553,12.9981,0,2,11.3695,23,94,75,87.0229,0.023851,0,0.015335,10,10,10,19.3614,56.25917,3454.631,47.32814,42.69558,24.8135,1746.221,27.77652
+293,9.743076,4,134,318.896,619,929,421,490,502.49,512,532,478,500,508.242,514,546,3.43072,5.42097,14.4291,0,2,11.4196,23,94,75,86.6315,0.024294,0,0.015364,10,10,10,19.66087,54.7531,3327.891,47.26149,42.81343,24.97582,1682.549,27.93784
+294,9.776443,4,134,317.332,617,947,426,491,502.899,512,532,478,500,508.499,514,560,3.38084,5.36313,12.7064,0,2,10.938,23,92,75,87.8304,0.024348,0,0.015375,10,10,10,18.7199,52.81556,2956.393,47.47448,42.96989,25.48989,1496.08,28.44796
+295,9.80981,4,134,319.394,619,934,428,491,503.01,512,533,480,500,508.312,514,546,3.37265,5.37362,14.5267,0,2,10.9841,23,88,75,88.473,0.020108,0,0.015326,10,10,10,18.86798,54.32003,4177.632,47.44026,42.84791,23.98821,2107.113,26.96063
+296,9.843177,4,134,320.799,622,932,422,492,503.168,512,541,480,500,508.425,514,544,3.34933,5.29424,13.5436,0,2,10.8498,22,94,76,89.6221,0.022022,0,0.015369,10,10,10,19.16094,54.31288,3204.015,47.37334,42.84848,25.14057,1620.376,28.10136
+297,9.876543,4,135,320.884,622,934,422,492,503.551,512,533,478,500,508.426,514,544,3.41899,5.31543,10.6363,0,2,10.5456,22,95,75,89.9543,0.023305,0,0.015324,10,10,10,19.76599,52.55282,3208.479,47.23833,42.99155,25.13452,1622.319,28.09615
+298,9.90991,4,134,319.852,620,938,423,492,503.359,512,549,470,500,508.247,514,543,3.39255,5.17152,12.6581,0,2,10.6756,22,93,74,87.1943,0.024088,0,0.015295,10,10,10,19.83393,50.27872,3041.87,47.22343,43.18367,25.36611,1538.463,28.32664
+299,9.943277,4,135,318.499,615,948,422,492,503.401,512,558,480,500,508.273,514,541,3.39451,5.23094,17.1566,0,2,10.6525,22,93,75,88.2688,0.02368,0,0.015324,10,10,10,19.49801,53.00755,3190.654,47.29761,42.95414,25.15872,1613.453,28.11995
+300,9.976643,4,135,319.112,617,945,416,492,503.355,512,529,474,500,508.127,514,556,3.4112,5.2985,17.0737,0,2,10.7988,22,105,74,88.609,0.017921,0,0.015315,10,10,10,19.52728,55.55216,4169.275,47.2911,42.7505,23.99691,2103.408,26.96828
+301,10.01001,4,135,320.192,621,926,428,492,503.548,512,539,480,500,508.056,514,542,3.37312,5.29479,18.451,0,2,10.6912,22,89,74,88.1834,0.017352,0,0.015355,10,10,10,20.29192,53.1507,4016.912,47.12428,42.94243,24.15859,2026.817,27.12937
+302,10.04338,4,135,320.733,622,930,422,492,503.251,512,534,479,500,508.279,514,543,3.39534,5.33575,14.0538,0,2,10.8138,22,94,75,88.1576,0.021688,0,0.015278,10,10,10,19.51917,56.11424,2371.156,47.2929,42.70678,26.44791,1204.486,29.38949
+303,10.07674,4,135,319.65,619,931,415,491,502.819,512,533,480,500,508.215,514,542,3.35609,5.35836,14.5995,0,2,11.1503,23,98,75,86.7545,0.022534,0,0.015303,10,10,10,18.78784,52.46867,2298.603,47.45874,42.99851,26.58287,1167.116,29.52637
+304,10.11011,4,134,317.616,615,937,424,492,503.117,512,619,472,500,508.39,514,546,3.33867,5.27377,16.5677,0,2,10.821,22,107,75,87.564,0.022559,0,0.015381,10,10,10,19.42102,52.21149,3549.797,47.31479,43.01985,24.69548,1792.807,27.66218
+305,10.14348,4,134,318.577,618,933,428,491,503.013,512,533,475,500,508.311,514,543,3.40756,5.37219,12.4871,0,2,10.9516,23,88,75,87.8326,0.022474,0,0.015341,10,10,10,19.84905,54.35601,3852.455,47.22012,42.84504,24.34014,1944.779,27.30881
+306,10.17684,4,134,317.933,619,937,386,492,503.193,512,558,449,500,508.34,514,543,3.40539,5.33118,10.7075,0,2,10.8429,22,140,75,89.5575,0.023051,0,0.015383,10,10,10,19.67952,54.3639,3571.25,47.25737,42.84441,24.66931,1804.136,27.63482
+307,10.21021,4,133,318.01,619,924,425,492,503.349,512,533,466,500,508.126,514,544,3.41793,5.34924,10.1106,0,2,10.8241,22,92,75,89.034,0.024403,0,0.015326,10,10,10,19.51494,53.62374,2954.061,47.29384,42.90394,25.49332,1495.315,28.45019
+308,10.24358,4,133,318.206,618,938,425,492,503.639,512,537,474,500,508.228,514,558,3.36355,5.21357,14.0195,0,2,10.555,22,92,75,89.7932,0.022039,0,0.015378,10,10,10,19.06484,50.46302,1773.653,47.39518,43.16778,27.70883,904.2083,30.63483
+309,10.27694,4,134,318.215,617,935,428,492,503.827,512,535,476,500,508.09,514,543,3.38317,5.20744,15.6474,0,2,10.515,22,89,74,89.9775,0.021471,0,0.015355,10,10,10,20.3102,51.43633,3816.833,47.12037,43.08481,24.38048,1926.353,27.35016
+310,10.31031,4,134,317.407,616,945,425,492,503.64,512,610,478,500,508.179,514,541,3.42263,5.24437,13.7797,0,2,10.5448,22,98,74,89.0448,0.022136,0,0.015364,10,10,10,18.80337,51.14704,3988.25,47.45515,43.10931,24.18969,2011.613,27.16207
+311,10.34368,4,133,317.401,618,938,429,492,503.366,512,537,480,500,508.047,514,543,3.36668,5.1812,12.1316,0,2,10.8052,23,88,75,88.5362,0.022765,0,0.015378,10,10,10,19.61749,51.17634,3837.515,47.27108,43.10682,24.35701,1936.456,27.32744
+312,10.37704,4,133,316.472,617,932,425,492,503.639,512,552,479,500,508.04,514,545,3.36232,5.24938,10.0646,0,2,10.5602,22,92,74,87.9744,0.023537,0,0.015412,10,10,10,18.73329,49.51086,3357.634,47.47138,43.25051,24.93718,1695.878,27.90357
+313,10.41041,4,132,316.67,617,925,424,492,503.296,512,529,458,500,508.057,514,544,3.42238,5.26283,11.5134,0,2,10.892,23,93,74,87.794,0.024208,0,0.015398,10,10,10,19.90123,50.74135,2499.558,47.20871,43.14389,26.21888,1267.44,29.16824
+314,10.44378,4,132,316.575,616,928,424,492,503.159,512,531,477,500,508.207,514,542,3.36223,5.19884,11.0633,0,2,10.8915,22,93,75,87.4546,0.022054,0,0.015389,10,10,10,18.8381,51.77858,3745.201,47.44714,43.05601,24.46276,1890.255,27.43231
+315,10.47714,4,133,316.216,617,944,424,491,502.951,512,640,464,500,507.996,514,541,3.36891,5.28357,13.7982,0,2,11.1195,23,134,74,85.8722,0.020293,0,0.015383,10,10,10,18.91623,53.65167,4102.41,47.42917,42.90168,24.06712,2069.347,27.03918
+316,10.51051,4,133,318.26,621,940,424,492,503.401,512,539,480,500,507.948,514,622,3.41219,5.29112,15.6074,0,2,10.8048,22,111,73,87.0015,0.021925,0,0.015318,10,10,10,20.23535,52.00312,3879.743,47.13641,43.03722,24.30948,1957.931,27.27954
+317,10.54388,4,133,317.204,619,932,423,492,503.415,512,533,464,499,507.843,514,543,3.47166,5.24283,10.0706,0,2,10.8653,23,92,74,86.4798,0.023808,0,0.015332,10,10,10,20.7214,50.73968,3622.653,47.03332,43.14404,24.60724,1829.192,27.57492
+318,10.57724,4,133,317.603,620,929,422,492,503.271,512,558,456,499,507.876,514,542,3.4267,5.22094,11.411,0,2,10.955,23,94,74,86.5059,0.024737,0,0.015389,10,10,10,19.45248,51.55087,2941.865,47.30776,43.07515,25.51129,1488.683,28.46949
+319,10.61061,4,133,317.674,618,922,425,492,503.814,512,529,477,499,507.851,514,543,3.40339,5.23122,15.1538,0,2,10.5695,22,92,74,88.8787,0.024251,0,0.015343,10,10,10,19.23311,51.12666,2289.732,47.35702,43.11104,26.59967,1162.456,29.54375
+320,10.64398,4,133,317.821,618,934,423,492,503.72,512,533,478,499,507.83,514,541,3.37226,5.12703,12.9872,0,2,10.6345,22,92,73,87.4773,0.021742,0,0.015372,10,10,10,20.61865,52.69021,3963.371,47.05491,42.98021,24.21687,2000.013,27.18719
+321,10.67734,4,133,318.488,620,938,425,492,503.892,512,528,479,500,507.911,514,542,3.40469,5.12746,13.184,0,2,10.4813,22,92,74,89.2775,0.024303,0,0.015372,10,10,10,19.37998,49.76536,3259.629,47.32398,43.22824,25.06583,1647.101,28.03031
+322,10.71071,4,133,317.789,618,938,424,492,503.752,512,528,477,500,508.073,514,545,3.34138,5.09454,12.5144,0,2,10.5355,22,92,75,88.9702,0.024946,0,0.015324,10,10,10,18.82703,48.66064,2841.277,47.44969,43.32573,25.66238,1437.51,28.6214
+323,10.74408,4,134,315.416,612,943,424,492,503.678,512,574,476,500,508.052,514,543,3.36323,5.12036,21.6209,0,2,10.5667,22,93,74,88.1577,0.023751,0,0.015338,10,10,10,19.36235,48.91116,2702.493,47.32793,43.30343,25.87987,1368.315,28.83565
+324,10.77744,4,133,315.805,614,937,422,492,503.747,512,550,468,500,508.013,514,547,3.36807,5.1427,13.4381,0,2,10.5382,22,94,74,88.3821,0.024211,0,0.015372,10,10,10,19.66126,51.46464,3220.78,47.2614,43.08242,25.1179,1628.172,28.08051
+325,10.81081,4,133,315.721,615,936,423,492,503.46,512,532,478,500,507.945,514,544,3.41368,5.27606,13.6978,0,2,10.764,22,93,73,87.1804,0.020528,0,0.015301,10,10,10,20.59123,51.33064,4034.276,47.06069,43.09375,24.13986,2035.118,27.11162
+326,10.84418,4,133,315.922,615,938,424,492,503.638,512,533,478,500,508.065,514,547,3.34102,5.15784,14.9518,0,2,10.6207,22,89,74,88.8695,0.021348,0,0.015295,10,10,10,18.97261,53.83388,3513.994,47.41624,42.88696,24.7395,1775.198,27.70504
+327,10.87754,4,134,316.438,615,939,422,492,503.234,512,535,480,500,507.997,514,586,3.34547,5.20019,12.0995,0,2,10.8992,22,94,74,87.0133,0.023248,0,0.015223,10,10,10,18.9372,49.98367,2735.11,47.42436,43.20923,25.82777,1384.785,28.78369
+328,10.91091,4,134,317.756,617,945,425,492,503.569,512,544,473,500,508.02,514,546,3.37283,5.18911,12.6041,0,2,10.6762,22,93,74,87.9713,0.024117,0,0.015272,10,10,10,19.49582,50.11085,3584.654,47.2981,43.1982,24.65304,1809.729,27.62138
+329,10.94428,4,133,317.949,619,933,423,491,502.874,512,539,460,500,507.957,514,547,3.42123,5.28921,12.0691,0,2,11.2142,23,93,74,85.0848,0.024174,0,0.015361,10,10,10,20.80334,54.04616,3811.955,47.01618,42.86987,24.38604,1924.69,27.35391
+330,10.97764,4,133,318.289,619,937,424,492,503.263,512,538,478,499,507.793,514,542,3.38603,5.27311,10.7149,0,2,11.0183,23,93,73,86.4742,0.023537,0,0.015301,10,10,10,19.43835,50.45321,3709.161,47.31092,43.16863,24.50476,1872.053,27.47433
+331,11.01101,4,133,317.782,617,925,428,492,503.409,512,527,478,499,507.899,514,546,3.38127,5.19783,11.0837,0,2,10.8434,23,89,74,87.2007,0.024611,0,0.015306,10,10,10,19.64767,49.03277,2860.33,47.2644,43.29265,25.63335,1447.335,28.59182
+332,11.04438,4,132,317.424,617,933,423,492,503.56,512,532,480,500,507.983,514,540,3.37892,5.21719,12.2205,0,2,10.6757,22,93,74,87.6916,0.024226,0,0.015326,10,10,10,19.19257,49.97065,2520.676,47.36618,43.21036,26.18234,1277.629,29.13347
+333,11.07774,4,133,318.04,618,939,424,492,503.498,512,529,481,500,507.946,514,547,3.40163,5.22451,11.6538,0,2,10.7723,23,92,74,88.7379,0.023625,0,0.015355,10,10,10,19.78972,49.855,3435.933,47.23312,43.22043,24.83707,1735.378,27.80357
+334,11.11111,4,133,317.692,617,929,425,492,503.471,512,535,476,499,507.874,514,542,3.3825,5.17521,10.3853,0,2,10.8164,22,92,74,87.588,0.024448,0,0.015361,10,10,10,19.46164,50.18742,3857.057,47.30572,43.19156,24.33495,1945.941,27.30622
+335,11.14448,4,133,318.414,619,938,425,491,502.998,512,581,478,499,507.723,514,545,3.41273,5.27787,10.0062,0,2,11.2057,23,92,71,84.7283,0.024886,0,0.015352,10,10,10,20.3211,54.19241,3888.43,47.11804,42.85813,24.29977,1962.844,27.26866
+336,11.17784,4,133,318.16,619,929,422,491,502.968,512,532,466,499,507.651,514,544,3.44197,5.32407,9.85218,0,2,11.236,23,95,71,82.727,0.023705,0,0.015369,10,10,10,19.40767,52.21791,3594.831,47.31778,43.01932,24.64073,1815.322,27.60798
+337,11.21121,4,132,316.812,617,923,424,491,503.079,512,624,477,499,507.562,514,542,3.44837,5.32311,9.87974,0,2,11.2414,23,113,71,83.9512,0.024523,0,0.015321,10,10,10,19.93041,52.10924,3231.883,47.20235,43.02837,25.10296,1633.952,28.06512
+338,11.24458,4,132,316.443,617,928,422,492,503.328,512,532,478,499,507.593,514,578,3.41271,5.2369,11.1155,0,2,11.0244,23,93,71,85.3543,0.021902,0,0.015324,10,10,10,20.18444,52.09378,3778.918,47.14735,43.02966,24.42384,1907.529,27.3928
+339,11.27794,4,133,317.327,618,941,423,492,503.427,512,527,478,499,507.752,514,545,3.4302,5.23985,11.5253,0,2,10.9294,23,93,72,87.2835,0.023623,0,0.015332,10,10,10,20.27474,51.76256,3290.916,47.12796,43.05735,25.02435,1663.467,27.98737
+340,11.31131,4,133,316.951,617,928,423,492,503.262,512,536,472,499,507.834,514,558,3.3811,5.17487,9.93116,0,2,10.989,23,93,73,86.4087,0.024828,0,0.015355,10,10,10,19.37243,51.73186,3436.63,47.32567,43.05993,24.83619,1736.091,27.80179
+341,11.34468,4,133,315.545,615,929,422,492,503.397,512,539,478,500,507.897,514,546,3.38639,5.21472,12.6657,0,2,10.8544,22,93,73,86.6343,0.02438,0,0.015409,10,10,10,19.5742,51.86143,3306.176,47.28067,43.04907,25.00425,1670.947,27.96789
+342,11.37804,4,133,316.493,616,931,426,492,503.594,512,568,478,500,508.313,514,548,3.39257,5.21612,13.2462,0,2,10.5984,22,91,75,90.1046,0.023574,0,0.015455,10,10,10,18.6673,51.55297,2782.965,47.4867,43.07497,25.75244,1409.037,28.70829
+343,11.41141,4,132,317.344,617,936,428,492,503.397,512,534,462,500,508.199,514,544,3.37547,5.24009,12.1509,0,2,10.7767,22,89,75,88.8257,0.022288,0,0.015421,10,10,10,20.3862,53.91733,3271.409,47.10415,42.88023,25.05016,1654.281,28.01142
+344,11.44478,4,133,318.462,619,924,421,492,503.557,512,543,474,500,508.247,514,574,3.37508,5.22957,11.8021,0,2,10.5944,22,96,75,88.9513,0.022854,0,0.015306,10,10,10,19.62587,49.91698,3618.314,47.26922,43.21503,24.61245,1826.543,27.58122
+345,11.47814,4,134,318.603,619,940,422,492,503.326,512,535,480,500,508.081,514,545,3.39354,5.24664,11.5264,0,2,10.8726,22,94,74,87.5214,0.024223,0,0.015343,10,10,10,19.12581,52.02169,2748.198,47.38131,43.03567,25.80703,1391.886,28.76148
+346,11.51151,4,133,317.635,618,932,423,491,502.989,512,542,456,500,508.018,514,544,3.42929,5.36638,13.844,0,2,11.0987,23,92,74,85.7669,0.024377,0,0.015418,10,10,10,20.06512,52.73181,3373.882,47.1731,42.97678,24.91621,1705.14,27.87991
+347,11.54488,4,134,318.755,619,931,423,491,503.015,512,539,480,500,507.748,514,548,3.45432,5.33034,11.3372,0,2,11.1961,23,92,71,84.9034,0.024414,0,0.015389,10,10,10,19.18457,55.00555,3610.834,47.36799,42.79345,24.62144,1823.964,27.58735
+348,11.57824,4,134,319.355,620,933,422,492,503.217,512,527,480,500,507.974,514,544,3.44617,5.30099,11.4575,0,2,10.9627,23,94,73,86.5324,0.022551,0,0.015389,10,10,10,19.88187,50.27908,3733.381,47.21294,43.18364,24.47649,1884.231,27.44617
+349,11.61161,4,133,319.811,621,939,425,491,503.142,512,532,478,500,507.95,514,545,3.41738,5.27028,11.737,0,2,11.0082,23,92,73,86.4149,0.023305,0,0.015335,10,10,10,20.02144,53.91987,3672.363,47.18256,42.88002,24.54806,1854.667,27.51485
+350,11.64498,4,133,319.744,621,936,423,491,503.077,512,550,480,500,508.092,514,543,3.37901,5.279,11.0708,0,2,11.0214,23,93,74,87.783,0.024477,0,0.015346,10,10,10,19.26185,53.42986,2604.043,47.35053,42.91967,26.04103,1320.194,28.99114
+351,11.67835,4,133,318.852,619,939,421,492,503.205,512,606,480,500,508.098,514,540,3.37198,5.25705,12.0269,0,2,10.8483,22,96,74,86.5773,0.024294,0,0.015378,10,10,10,18.71156,51.20431,3232.867,47.47641,43.10445,25.10163,1633.913,28.06522
+352,11.71171,4,134,318.233,617,928,424,492,503.467,512,532,478,500,508.329,514,542,3.41046,5.30701,10.9375,0,2,10.6196,22,93,75,89.9083,0.023451,0,0.015366,10,10,10,19.32674,51.84088,4052.292,47.33593,43.05079,24.1205,2043.938,27.09283
+353,11.74508,4,134,320.629,622,940,424,492,503.267,512,533,478,500,508.16,514,540,3.39459,5.26272,13.8878,0,2,10.8465,23,93,75,88.9074,0.02338,0,0.015426,10,10,10,19.61639,52.95733,4081.386,47.27132,42.95825,24.08944,2058.836,27.0613
+354,11.77845,4,133,321.13,624,927,381,492,503.542,512,534,470,500,508.131,514,541,3.4101,5.34104,10.569,0,2,10.6633,22,133,75,88.8648,0.024494,0,0.015372,10,10,10,19.1427,51.99521,3558.202,47.37748,43.03788,24.68521,1796.886,27.65231
+355,11.81181,4,133,320.167,622,926,423,492,503.608,512,566,471,500,508.335,514,543,3.36547,5.2273,10.9812,0,2,10.5126,22,93,75,90.2138,0.024766,0,0.015332,10,10,10,19.33338,50.58027,3004.978,47.33444,43.1577,25.4191,1519.967,28.37917
+356,11.84518,4,133,320.047,621,926,426,492,503.671,512,654,478,500,508.315,514,562,3.35637,5.2176,13.8922,0,2,10.4484,22,148,75,89.0047,0.023825,0,0.015389,10,10,10,18.60101,51.04713,2117.176,47.50215,43.1178,26.93994,1076,29.87939
+357,11.87855,4,134,321.124,622,928,423,492,503.523,512,538,478,500,508.346,514,546,3.30549,5.17974,14.5129,0,2,10.5954,22,93,75,90.2159,0.022911,0,0.015324,10,10,10,18.89977,49.61483,3830.574,47.43295,43.2414,24.36487,1932.416,27.33651
+358,11.91191,4,134,321.254,623,933,424,492,503.479,512,533,444,500,508.214,514,538,3.38026,5.3427,12.7805,0,2,10.6199,22,92,75,88.7748,0.022742,0,0.015324,10,10,10,18.59302,50.64119,4084.53,47.50401,43.15247,24.08609,2059.573,27.05974
+359,11.94528,4,134,320.017,622,931,424,492,503.545,512,595,478,500,508.036,514,543,3.37554,5.20323,13.6831,0,2,10.7349,22,92,74,88.6836,0.022845,0,0.015326,10,10,10,20.40181,51.51011,3970.144,47.10083,43.07859,24.20945,2003.05,27.1806
+360,11.97865,4,134,320.919,622,934,390,492,503.34,512,532,476,500,508.185,514,545,3.37268,5.19324,12.8219,0,2,10.7802,22,122,74,87.1281,0.02448,0,0.015321,10,10,10,19.07542,51.85521,3322.39,47.39277,43.04959,24.98301,1678.928,27.94719
+361,12.01201,4,134,321,621,928,424,491,502.984,512,538,480,500,508.239,514,547,3.34672,5.23385,17.5456,0,2,11.0699,23,93,75,88.7483,0.021976,0,0.015341,10,10,10,19.14911,50.9526,1845.785,47.37603,43.12585,27.5357,940.4181,30.4643
+362,12.04538,4,134,321.068,620,938,425,491,503.085,512,538,478,500,508.319,514,544,3.37411,5.21452,15.0785,0,2,11.0165,23,93,75,90.0532,0.021488,0,0.015349,10,10,10,19.67964,52.96699,4140.322,47.25734,42.95746,24.02717,2088.323,26.99954
+363,12.07875,4,134,321.155,622,934,417,491,502.714,512,528,478,500,508.152,514,544,3.40273,5.3353,15.5783,0,2,11.3412,23,97,75,86.5293,0.021594,0,0.015369,10,10,10,19.41927,53.33864,3993.976,47.31518,42.92709,24.18346,2015.177,27.15438
+364,12.11211,4,134,321.725,623,935,422,490,502.609,512,534,478,500,508.444,514,542,3.37518,5.37908,13.7807,0,2,11.3235,23,94,77,87.7462,0.02446,0,0.015292,10,10,10,19.38975,58.16373,3365.343,47.32179,42.55099,24.92722,1702.06,27.88776
+365,12.14548,4,135,321.707,622,933,428,491,502.738,512,529,478,500,508.186,514,539,3.42733,5.49339,16.862,0,2,11.295,23,89,75,87.6121,0.024848,0,0.015341,10,10,10,19.40229,51.60232,3198.909,47.31899,43.07082,25.14749,1617.206,28.10986
+366,12.17885,4,135,321.403,620,938,425,491,503.173,512,533,478,500,508.215,514,618,3.39095,5.34139,14.8478,0,2,10.9728,23,108,75,89.2583,0.023963,0,0.015298,10,10,10,20.22214,52.85023,2892.021,47.13924,42.96705,25.5855,1464.278,28.54128
+367,12.21221,4,134,321.735,622,927,428,492,503.519,512,571,479,500,508.362,514,543,3.44087,5.40429,12.231,0,2,10.607,22,89,75,90.5596,0.022754,0,0.015281,10,10,10,19.73925,53.97915,3775.886,47.24421,42.87525,24.42732,1906.373,27.39544
+368,12.24558,4,134,321.835,622,925,423,492,503.277,512,544,466,500,508.154,514,538,3.49572,5.44418,11.9604,0,2,10.8839,22,94,74,88.6565,0.023988,0,0.015375,10,10,10,19.57023,53.22754,3557.033,47.28155,42.93615,24.68663,1796.716,27.65272
+369,12.27895,4,134,321.547,622,937,428,491,502.827,512,553,478,500,508.153,514,546,3.44575,5.40633,11.4439,0,2,11.2693,23,89,75,88.4337,0.023337,0,0.015341,10,10,10,19.66625,53.63078,3615.104,47.2603,42.90337,24.6163,1825.876,27.5828
+370,12.31231,4,134,320.458,620,937,422,491,502.868,512,529,474,500,508.127,514,540,3.35242,5.25022,11.6234,0,2,11.1916,23,94,75,87.0729,0.024886,0,0.015369,10,10,10,19.6562,53.21528,3200.117,47.26252,42.93715,25.14586,1618.276,28.10699
+371,12.34568,4,135,321.596,619,938,424,491,502.732,512,527,480,500,508.239,514,540,3.32834,5.23094,20.9206,0,2,11.2549,23,92,75,87.7791,0.026029,0,0.015324,10,10,10,19.69134,52.11652,3105.106,47.25476,43.02776,25.27675,1570.505,28.23712
+372,12.37905,4,135,322.445,622,932,378,490,502.858,512,536,479,500,508.289,514,547,3.42286,5.40662,12.2877,0,2,11.2023,23,138,75,89.5269,0.02478,0,0.015364,10,10,10,19.12293,52.2567,3299.051,47.38197,43.01609,25.01362,1667.37,27.97719
+373,12.41241,4,134,322.106,623,934,428,490,502.51,512,529,480,500,508.094,514,540,3.39985,5.41996,13.692,0,2,11.4605,24,89,75,85.3368,0.021456,0,0.015315,10,10,10,19.66891,53.31747,4409.537,47.25971,42.92882,23.75358,2223.015,26.72809
+374,12.44578,4,134,321.215,622,924,428,490,502.787,512,534,472,500,508.196,514,547,3.3935,5.41887,12.7847,0,2,11.2314,23,88,75,87.3278,0.024786,0,0.015361,10,10,10,19.1512,51.46804,3029.064,47.37555,43.08214,25.38443,1532.187,28.3444
+375,12.47915,4,134,320.123,620,927,428,491,503.118,512,532,481,500,508.225,514,539,3.46366,5.39449,11.5027,0,2,10.9833,23,88,75,89.1812,0.023911,0,0.015355,10,10,10,19.13298,50.27554,2772.666,47.37969,43.18395,25.76854,1403.685,28.72482
+376,12.51251,4,133,318.576,618,928,428,491,503.099,512,528,476,500,508.229,514,534,3.35308,5.25035,13.5213,0,2,10.94,23,87,75,87.8329,0.024185,0,0.015329,10,10,10,18.73032,50.7934,3689.847,47.47206,43.13944,24.52743,1862.304,27.49701
+377,12.54588,4,133,318.944,618,942,423,492,503.461,512,532,478,500,508.224,514,529,3.39684,5.24931,10.286,0,2,10.6701,22,93,75,90.1319,0.024929,0,0.015401,10,10,10,19.62098,51.20009,3994.588,47.27031,43.10481,24.18279,2014.999,27.15476
+378,12.57925,4,133,320.885,622,935,422,491,503.318,512,614,478,500,508.33,514,538,3.41788,5.30362,11.3117,0,2,10.7887,23,102,75,90.2619,0.024486,0,0.015378,10,10,10,19.6754,55.37716,3874.503,47.25828,42.76421,24.31535,1956.015,27.28379
+379,12.61261,4,133,319.873,621,933,425,492,503.406,512,548,481,500,508.26,514,561,3.38657,5.34377,12.8059,0,2,10.7005,22,92,75,88.616,0.025054,0,0.015378,10,10,10,19.19033,50.57346,3100.976,47.36669,43.15829,25.28253,1567.929,28.24425
+380,12.64598,4,133,319.122,619,923,425,492,503.28,512,535,480,500,508.358,514,536,3.38512,5.31526,15.471,0,2,10.7629,22,92,75,89.5021,0.023205,0,0.015338,10,10,10,19.38778,51.04129,1996.873,47.32223,43.1183,27.19401,1016.044,30.12839
+381,12.67935,4,133,319.226,618,934,423,491,503.011,512,528,478,500,508.192,514,539,3.39921,5.36195,14.0453,0,2,11.043,23,93,75,88.2444,0.021396,0,0.015343,10,10,10,20.14759,53.97962,3754.57,47.15528,42.87521,24.45191,1895.817,27.41955
+382,12.71271,4,134,319.321,619,935,409,491,503.191,512,533,478,500,508.184,514,557,3.43361,5.37844,13.2364,0,2,10.9292,23,112,75,88.8957,0.023925,0,0.015352,10,10,10,19.31616,53.72981,3670.449,47.3383,42.89536,24.55032,1853.486,27.51762
+383,12.74608,4,134,319.447,620,941,386,491,502.887,512,530,480,500,508.133,514,552,3.44402,5.49758,10.6563,0,2,11.1238,23,131,74,87.072,0.024566,0,0.015383,10,10,10,19.54757,56.3215,3878.633,47.28659,42.69077,24.31073,1958.284,27.27876
+384,12.77945,4,133,319.194,619,948,422,491,502.855,512,619,480,500,508.218,514,538,3.49028,5.40446,9.93742,0,2,11.1269,23,107,74,86.2162,0.02444,0,0.015426,10,10,10,19.93612,54.47413,3656.32,47.20111,42.83561,24.56707,1846.762,27.5334
+385,12.81281,4,132,318.208,618,932,422,491,502.704,512,529,478,500,508.552,514,540,3.38858,5.3219,10.5847,0,2,11.0855,23,94,75,87.5986,0.024709,0,0.015446,10,10,10,19.14381,53.27863,3180.127,47.37723,42.93198,25.17307,1608.169,28.1342
+386,12.84618,4,132,318.395,618,922,428,490,502.779,512,529,480,500,508.484,514,540,3.35542,5.3152,9.67479,0,2,11.0975,23,89,75,89.1165,0.024826,0,0.015455,10,10,10,19.27881,54.04714,3393.098,47.34671,42.86979,24.89155,1714.88,27.85518
+387,12.87955,4,132,319.458,619,931,421,491,503.212,512,533,480,500,508.458,514,539,3.35793,5.3651,9.73451,0,2,10.7728,22,95,75,89.3935,0.024148,0,0.015409,10,10,10,18.544,52.82622,3287.351,47.51548,42.96902,25.02905,1661.518,27.99246
+388,12.91291,4,133,319.343,619,935,413,492,503.646,512,536,478,500,508.468,514,537,3.32763,5.19013,10.2796,0,2,10.4354,22,99,75,90.4631,0.023914,0,0.015423,10,10,10,18.60279,51.35759,3847.672,47.50173,43.09147,24.34553,1941.326,27.31653
+389,12.94628,4,133,317.747,616,940,423,492,503.511,512,543,478,500,508.383,514,542,3.33908,5.30752,10.4037,0,2,10.5195,22,93,75,89.8039,0.024388,0,0.015446,10,10,10,19.10537,53.79326,3952.849,47.38596,42.89024,24.22841,1994.649,27.19885
+390,12.97965,4,132,318.584,618,933,423,492,503.734,512,572,480,500,508.42,514,570,3.35893,5.27713,9.90404,0,2,10.3422,22,93,75,88.7559,0.024197,0,0.015501,10,10,10,19.15484,49.05031,3764.326,47.37473,43.2911,24.44064,1899.214,27.41177
+391,13.01301,4,134,319.972,619,933,424,492,503.726,512,528,480,500,508.284,514,543,3.3136,5.14343,13.614,0,2,10.4663,22,92,75,90.1616,0.020913,0,0.015463,10,10,10,19.43576,51.85482,4024.503,47.3115,43.04962,24.15039,2030.074,27.1224
+392,13.04638,4,134,320.37,620,928,422,492,503.564,512,589,478,500,508.181,514,544,3.35211,5.23241,14.187,0,2,10.6089,22,94,74,88.372,0.020556,0,0.015423,10,10,10,19.36289,52.50009,3884.79,47.32781,42.99591,24.30384,1960.361,27.27415
+393,13.07975,4,133,320.411,621,932,425,492,503.418,512,529,462,500,508.025,514,538,3.36195,5.23978,11.3902,0,2,10.8194,22,92,74,87.9467,0.023197,0,0.015461,10,10,10,19.57773,52.71742,2898.06,47.27989,42.97797,25.57644,1467.104,28.5329
+394,13.11311,4,133,319.045,618,932,428,492,503.191,512,529,476,500,508.174,514,542,3.37896,5.30064,11.0446,0,2,10.8528,22,89,74,85.8444,0.023708,0,0.015472,10,10,10,18.9348,52.22903,3274.719,47.42491,43.01839,25.04577,1655.151,28.00914
+395,13.14648,4,133,318.245,616,936,422,492,503.5,512,541,480,500,508.046,514,541,3.35509,5.24794,11.6998,0,2,10.6951,22,93,73,87.4023,0.024085,0,0.015495,10,10,10,19.81182,52.00283,3707.29,47.22827,43.03724,24.50695,1871.599,27.47539
+396,13.17985,4,133,317.704,617,930,421,492,503.629,512,533,477,500,508.029,514,543,3.41119,5.23559,9.46476,0,2,10.5793,22,95,73,87.7051,0.024214,0,0.015492,10,10,10,19.33922,50.03458,3731.818,47.33312,43.20481,24.47831,1883.253,27.44843
+397,13.21321,4,133,318.468,618,924,422,492,503.7,512,529,476,500,508.096,514,544,3.30297,5.14961,9.97064,0,2,10.5794,22,94,74,87.9504,0.024983,0,0.015498,10,10,10,19.7754,51.90296,3136.728,47.23626,43.04559,25.23274,1586.284,28.19371
+398,13.24658,4,132,316.701,615,924,361,493,503.957,512,532,477,500,508.16,514,544,3.34848,5.21921,14.3126,0,2,10.3002,22,151,74,88.2347,0.024057,0,0.015472,10,10,10,19.46383,51.86068,2367.99,47.30523,43.04913,26.45371,1201.826,29.3991
+399,13.27995,4,132,315.479,613,935,424,492,503.783,512,528,476,500,508.274,514,583,3.32523,5.11602,13.7423,0,2,10.4278,22,92,74,88.845,0.022737,0,0.015472,10,10,10,19.77851,50.35525,3251.645,47.23558,43.17707,25.07648,1643.356,28.0402
+400,13.31331,4,133,317.312,616,932,422,492,503.776,512,528,465,500,508.44,514,542,3.40676,5.2439,11.8745,0,2,10.3296,21,93,75,90.9822,0.021348,0,0.015501,10,10,10,19.13631,52.8714,4178.885,47.37893,42.96531,23.98691,2107.444,26.95995
+401,13.34668,4,134,317.778,617,936,422,492,503.707,512,534,474,500,508.361,514,547,3.41155,5.28357,15.8265,0,2,10.467,22,93,75,89.7206,0.021919,0,0.015498,10,10,10,19.90396,53.36626,4068.915,47.20812,42.92485,24.10273,2052.775,27.0741
+402,13.38005,4,133,318.296,618,937,422,492,503.847,512,549,477,500,508.25,514,549,3.4499,5.30061,11.6512,0,2,10.4099,22,94,74,89.8594,0.022185,0,0.015538,10,10,10,19.35703,50.55877,3824.007,47.32912,43.15955,24.37233,1929.482,27.34311
+403,13.41341,4,133,318.003,617,933,425,492,503.328,512,527,478,500,508.073,514,595,3.39942,5.24823,11.1225,0,2,10.8645,22,92,74,88.2053,0.02386,0,0.015518,10,10,10,20.26761,52.03858,3154.124,47.12949,43.03426,25.20873,1595.139,28.16953
+404,13.44678,4,132,317.373,616,922,422,492,503.658,512,552,456,500,508.308,514,545,3.3906,5.19108,12.1328,0,2,10.4291,21,93,74,87.8692,0.024054,0,0.015455,10,10,10,18.68065,51.29336,2489.563,47.48359,43.0969,26.23628,1262.275,29.18597
+405,13.48015,4,132,317.359,616,937,422,492,503.516,512,529,478,500,508.259,514,558,3.34452,5.1692,11.7619,0,2,10.644,22,94,74,88.3061,0.02416,0,0.015503,10,10,10,19.7255,51.64329,3667.01,47.24723,43.06738,24.55439,1851.348,27.52263
+406,13.51351,4,133,317.605,617,932,424,492,503.402,512,544,480,500,508.141,514,550,3.35036,5.11149,11.4469,0,2,10.7316,22,92,72,86.7171,0.024354,0,0.015475,10,10,10,19.7757,51.49942,3660.254,47.2362,43.07949,24.5624,1847.946,27.53062
+407,13.54688,4,133,318.482,619,942,421,492,503.21,512,534,476,500,508.034,514,547,3.48054,5.32964,10.1709,0,2,11.033,23,96,74,87.3483,0.025566,0,0.015484,10,10,10,20.45534,56.11021,3746.802,47.08945,42.70709,24.46091,1892.542,27.42706
+408,13.58025,4,133,317.792,617,941,422,492,503.145,512,546,479,500,508.192,514,548,3.41877,5.28176,11.2065,0,2,10.964,22,94,74,85.9309,0.024597,0,0.015466,10,10,10,19.33234,52.98181,3320.092,47.33467,42.95625,24.98601,1678.125,27.94927
+409,13.61361,4,133,316.123,614,933,423,492,503.279,512,545,478,500,508.274,514,547,3.37423,5.23831,13.8824,0,2,10.833,22,92,74,87.7056,0.024428,0,0.015449,10,10,10,19.79609,50.84483,2694.6,47.23172,43.13504,25.89257,1364.96,28.84631
+410,13.64698,4,132,315.703,612,929,422,492,503.102,512,526,479,500,508.278,514,548,3.36433,5.21076,13.9926,0,2,10.9648,22,93,74,87.2388,0.021365,0,0.015441,10,10,10,19.67469,52.57852,3967.284,47.25843,42.98943,24.21258,2001.705,27.18351
+411,13.68035,4,132,316.496,615,922,420,491,502.968,512,532,480,500,508.336,514,546,3.38206,5.25747,13.9045,0,2,11.0328,22,95,75,87.071,0.022742,0,0.015458,10,10,10,19.5671,52.78617,3717.809,47.28225,42.97231,24.49464,1876.993,27.46289
+412,13.71371,4,132,316.987,617,931,421,492,503.013,512,571,473,500,508.379,514,547,3.44483,5.3498,11.6788,0,2,10.9537,22,94,75,87.078,0.024346,0,0.015506,10,10,10,18.84404,53.88284,3134.163,47.44577,42.88301,25.2363,1585.263,28.1965
+413,13.74708,4,133,315.083,613,925,422,491,503.089,512,546,478,500,508.347,514,547,3.36511,5.27298,13.8774,0,2,10.9086,22,94,74,87.503,0.024108,0,0.015572,10,10,10,19.06385,52.59652,3391.372,47.39541,42.98794,24.89376,1713.601,27.85842
+414,13.78045,4,132,314.562,613,925,421,492,503.304,512,528,478,500,508.391,514,548,3.35178,5.22933,11.6109,0,2,10.7372,22,94,75,88.2376,0.0237,0,0.015541,10,10,10,19.03376,52.00545,3300.742,47.40227,43.03703,25.0114,1668.131,27.97521
+415,13.81381,4,132,314.612,613,935,424,492,503.189,512,532,478,500,508.303,514,547,3.39305,5.25712,12.0362,0,2,10.8892,22,92,75,89.1554,0.02278,0,0.015532,10,10,10,19.55323,52.28792,3786.534,47.28533,43.0135,24.41509,1911.228,27.38439
+416,13.84718,4,132,314.561,613,921,422,492,503.214,512,571,478,500,508.082,514,546,3.36019,5.24017,13.8546,0,2,10.8843,22,92,73,86.516,0.020765,0,0.015541,10,10,10,18.99116,51.43012,3773.903,47.412,43.08534,24.42961,1904.557,27.39957
+417,13.88055,4,132,313.969,613,931,425,492,503.005,512,528,456,500,508.26,514,546,3.37904,5.31081,12.7128,0,2,10.9992,22,92,74,86.4495,0.021859,0,0.015558,10,10,10,19.83197,51.89835,2176.778,47.22385,43.04598,26.81937,1106.322,29.7587
+418,13.91391,4,132,312.86,610,933,420,492,503.088,512,529,480,500,508.459,514,546,3.33654,5.25884,16.6783,0,2,10.7838,22,95,74,86.4163,0.023597,0,0.015529,10,10,10,18.62508,51.45103,2654.159,47.49653,43.08357,25.95824,1344.599,28.91159
+419,13.94728,4,132,311.818,607,931,422,491,503.002,512,541,469,500,508.363,514,547,3.36662,5.29254,16.2339,0,2,10.9764,23,94,75,87.9879,0.023651,0,0.015595,10,10,10,19.35017,52.53215,3251.977,47.33067,42.99326,25.07604,1643.959,28.0386
+420,13.98065,4,131,312.739,611,931,425,492,503.239,512,533,478,500,508.453,514,541,3.3555,5.3111,10.9419,0,2,10.7029,22,92,75,88.4513,0.023077,0,0.015584,10,10,10,18.25561,52.48033,3684.667,47.58355,42.99755,24.53353,1860.017,27.50234
+421,14.01401,4,131,313.498,612,918,425,492,503.08,512,529,476,500,508.472,514,544,3.33362,5.21161,10.6402,0,2,10.877,22,91,75,88.1757,0.023425,0,0.015555,10,10,10,19.07381,50.70216,3485.207,47.39314,43.14725,24.77523,1760.047,27.74227
+422,14.04738,4,131,312.565,611,923,427,492,503.344,512,528,480,500,508.482,514,545,3.26833,5.21883,10.7878,0,2,10.6384,22,90,75,89.7468,0.024383,0,0.015529,10,10,10,19.25739,51.22268,2923.458,47.35154,43.10289,25.53854,1479.349,28.49681
+423,14.08075,4,130,311.238,609,937,425,492,503.587,512,533,477,500,508.447,514,544,3.34886,5.22164,11.3418,0,2,10.4579,22,92,75,89.8301,0.024211,0,0.015578,10,10,10,18.97778,50.60709,2713.021,47.41506,43.1554,25.86298,1373.907,28.81794
+424,14.11411,4,130,311.479,609,937,428,492,503.676,512,532,478,500,508.545,514,542,3.32318,5.238,11.4346,0,2,10.3474,22,88,75,89.8646,0.022451,0,0.015609,10,10,10,18.41943,50.68583,3903.561,47.54475,43.14865,24.2829,1969.057,27.25493
+425,14.14748,4,131,312.186,609,934,424,492,503.648,512,533,478,500,508.204,514,544,3.36123,5.16703,13.3793,0,2,10.4672,22,91,73,86.9379,0.021553,0,0.015598,10,10,10,20.03436,50.47416,4173.514,47.17976,43.16682,23.9925,2104.384,26.96626
+426,14.18085,4,131,311.066,608,939,424,492,503.541,512,533,474,500,508.49,514,545,3.34895,5.13964,15.0652,0,2,10.4037,22,93,75,88.2599,0.021202,0,0.015586,10,10,10,18.47178,50.40153,3950.158,47.53243,43.17308,24.23137,1992.297,27.20397
+427,14.21421,4,130,311.699,611,928,422,492,503.336,512,599,478,500,508.262,514,545,3.37141,5.24032,11.1856,0,2,10.715,22,94,74,86.9416,0.023685,0,0.015609,10,10,10,19.14773,50.96094,3190.893,47.37634,43.12514,25.15839,1612.974,28.12124
+428,14.24758,4,131,311.951,608,922,425,492,503.384,512,557,478,500,508.186,514,541,3.34982,5.17992,17.9252,0,2,10.6873,22,91,74,86.9853,0.019379,0,0.015609,10,10,10,17.82638,48.42428,1439.435,47.68688,43.34688,28.61559,736.2803,31.52708
+429,14.28095,4,131,312.142,609,922,428,492,503.224,512,528,479,500,508.212,514,547,3.3426,5.18701,17.5454,0,2,10.8774,22,88,74,86.3785,0.021491,0,0.015612,10,10,10,19.6849,51.54502,3472.651,47.25618,43.07565,24.7909,1754.133,27.75689
+430,14.31431,4,131,311.985,608,929,421,492,503.218,512,539,478,500,508.29,514,583,3.37035,5.25913,12.8188,0,2,10.8044,22,97,74,86.1722,0.02051,0,0.015601,10,10,10,19.14452,51.18612,3870.864,47.37707,43.10599,24.31943,1953.015,27.29046
+431,14.34768,4,131,311.244,608,935,422,491,502.837,512,529,478,500,508.431,514,547,3.3548,5.28465,14.1762,0,2,11.095,23,94,75,87.2723,0.021588,0,0.015632,10,10,10,18.70118,52.88797,3817.616,47.47883,42.96394,24.37959,1926.705,27.34936
+432,14.38105,4,131,311.325,609,933,423,491,502.817,512,529,476,500,508.222,514,545,3.36165,5.27986,12.2664,0,2,11.1868,23,94,74,84.9582,0.023568,0,0.015638,10,10,10,18.79144,52.58428,3397.44,47.45791,42.98895,24.88599,1716.564,27.85091
+433,14.41441,4,130,310.476,606,924,430,492,502.946,512,534,478,500,508.483,514,599,3.3282,5.23478,16.8866,0,2,10.9931,22,87,75,87.6899,0.022791,0,0.015652,10,10,10,18.20612,48.81523,2007.373,47.59534,43.31196,27.17123,1020.442,30.10963
+434,14.44778,4,130,310.715,607,929,428,491,503.113,512,528,476,500,508.662,514,544,3.33688,5.29227,12.7447,0,2,10.757,22,89,76,90.2677,0.021868,0,0.015581,10,10,10,18.43802,51.9834,3688.421,47.54037,43.03886,24.52911,1861.816,27.49815
+435,14.48115,4,131,310.847,607,938,422,492,503.085,512,528,478,500,508.621,514,544,3.28721,5.22362,14.9992,0,2,10.7216,22,95,75,87.976,0.019182,0,0.015598,10,10,10,18.577,51.84105,4018.899,47.50776,43.05077,24.15644,2027.054,27.12886
+436,14.51451,4,131,310.386,607,937,422,492,503.552,512,529,401,500,508.567,514,545,3.32837,5.15846,15.3256,0,2,10.4186,22,114,75,88.8978,0.023577,0,0.015586,10,10,10,19.50385,50.15953,3202.367,47.29631,43.19398,25.1428,1618.599,28.10612
+437,14.54788,4,131,308.108,603,929,357,495,504.366,512,529,465,501,508.759,514,540,3.35125,5.18679,10.4171,0,2,9.68925,20,161,75,92.4595,0.024543,0,0.015604,10,10,10,18.31253,50.59588,3283.859,47.57003,43.15636,25.03367,1659.157,27.99864
+438,14.58125,4,130,307.669,604,928,422,494,504.119,512,533,478,500,508.683,514,556,3.24896,4.994,11.495,0,2,9.87418,21,93,75,91.1778,0.023966,0,0.015629,10,10,10,17.78829,47.66148,3032.905,47.69617,43.41584,25.37892,1532.815,28.34262
+439,14.61461,4,130,308.904,606,933,425,495,504.414,512,536,478,500,508.744,514,543,3.23685,4.97936,10.0669,0,2,9.69306,20,92,76,92.2748,0.023871,0,0.015626,10,10,10,17.70952,48.02665,2983.787,47.71544,43.38269,25.44984,1508.328,28.41256
+440,14.64798,4,129,308.163,605,933,423,496,504.47,512,560,480,500,508.422,514,545,3.31397,5.04731,9.20185,0,2,9.72189,20,93,74,90.9722,0.02496,0,0.015675,10,10,10,18.2059,48.7516,3001.237,47.59539,43.31762,25.42451,1517.358,28.38663
+441,14.68135,4,129,307.406,604,932,423,496,504.397,512,549,474,500,508.581,514,545,3.25917,4.95841,10.4005,0,2,9.70858,20,93,75,90.3163,0.024606,0,0.015652,10,10,10,19.22531,46.46088,2411.726,47.35878,43.52664,26.37423,1222.284,29.32579
+442,14.71471,4,130,307.003,602,933,424,496,504.314,512,534,478,501,508.726,514,544,3.25873,4.98014,13.3764,0,2,9.63193,20,91,75,90.2103,0.024486,0,0.015649,10,10,10,18.19226,46.21525,3068.852,47.59864,43.54966,25.32775,1550.528,28.29272
+443,14.74808,4,131,306.708,601,935,423,494,504.092,512,536,476,501,508.75,514,545,3.2548,4.97769,10.8439,0,2,9.81548,20,92,75,89.8267,0.024503,0,0.015644,10,10,10,18.23788,47.43101,3385.726,47.58777,43.43689,24.90099,1709.28,27.86938
+444,14.78145,4,131,307.092,602,925,420,494,504.162,512,532,477,501,508.859,514,544,3.22995,4.94352,10.6433,0,2,9.81079,20,94,78,92.3166,0.024503,0,0.015655,10,10,10,18.23473,47.91844,3368.248,47.58852,43.39249,24.92347,1700.662,27.89133
+445,14.81481,4,130,307.15,603,932,428,493,503.975,512,529,480,501,509.012,514,544,3.20632,4.94797,12.3733,0,2,9.8945,21,89,79,92.601,0.022188,0,0.015606,10,10,10,18.38489,47.85982,3669.95,47.5529,43.3978,24.55091,1851.536,27.52219
+446,14.84818,4,130,307.572,603,919,428,493,503.981,512,534,476,502,509.089,514,545,3.23077,5.01429,12.6222,0,2,9.83233,21,88,78,92.672,0.02304,0,0.015632,10,10,10,18.4159,48.57235,3506.833,47.54558,43.33362,24.74836,1770.164,27.71738
+447,14.88155,4,130,308.453,604,936,428,493,503.903,512,527,471,502,509.084,514,542,3.23038,5.07306,10.9336,0,2,9.89082,21,89,78,91.9125,0.0244,0,0.015649,10,10,10,17.39377,46.98143,2623.075,47.79358,43.47825,26.00941,1327.631,28.96674
+448,14.91491,4,130,308.217,604,932,424,495,504.455,512,547,478,502,509.001,514,550,3.26207,5.11661,11.6876,0,2,9.52773,20,92,78,94.1269,0.024343,0,0.015609,10,10,10,17.35196,46.96662,3313.362,47.80403,43.47962,24.99482,1672.761,27.96318
+449,14.94828,4,131,309.426,606,935,423,496,504.418,512,536,478,500,508.536,514,542,3.2915,4.93439,9.42017,0,2,9.74934,20,93,75,91.3091,0.023997,0,0.015601,10,10,10,18.97518,47.09098,3662.716,47.41565,43.46814,24.55948,1847.874,27.53079
+450,14.98165,4,131,308.371,604,944,422,496,504.448,512,528,478,500,508.484,514,567,3.27245,4.989,10.1534,0,2,9.7362,20,95,75,91.4488,0.023654,0,0.015644,10,10,10,18.90017,46.41366,3573.06,47.43285,43.53106,24.66711,1802.858,27.6379
+451,15.01502,4,131,308.065,603,944,423,496,504.441,512,529,478,500,508.36,514,543,3.27807,4.96295,11.1634,0,2,9.82645,20,94,74,91.1455,0.023551,0,0.015609,10,10,10,18.55278,46.67715,3433.499,47.51342,43.50647,24.84014,1733.057,27.80939
+452,15.04838,4,130,307.859,603,928,423,496,504.349,512,552,477,500,508.298,514,569,3.29634,4.88812,10.2763,0,2,9.90301,21,94,73,88.7588,0.025314,0,0.015666,10,10,10,18.6928,46.58233,2504.907,47.48077,43.5153,26.2096,1268.772,29.16368
+453,15.08175,4,130,308.159,604,925,424,496,504.217,512,549,473,500,508.493,514,541,3.25384,4.92361,9.86295,0,2,9.92341,20,92,75,89.9701,0.024817,0,0.015638,10,10,10,18.71461,47.99384,3237.675,47.4757,43.38566,25.09518,1635.515,28.06097
+454,15.11512,4,131,309.461,607,941,422,492,503.648,512,573,480,500,508.558,514,542,3.2935,5.12841,10.2565,0,2,10.3632,21,94,75,89.2593,0.02464,0,0.015575,10,10,10,19.49659,50.75484,3590.642,47.29792,43.14274,24.64579,1812.884,27.61381
+455,15.14848,4,131,309.958,607,947,422,493,503.83,512,529,478,500,508.432,514,548,3.34689,5.1147,9.57612,0,2,10.2059,21,94,74,87.9906,0.024729,0,0.015535,10,10,10,18.79568,49.93008,3670.397,47.45693,43.21389,24.55038,1852.38,27.52021
+456,15.18185,4,131,308.643,606,926,422,494,503.977,512,534,480,500,508.649,514,545,3.3281,4.99822,9.6704,0,2,10.0894,21,93,75,89.9555,0.024626,0,0.015598,10,10,10,18.63071,50.03523,3325.26,47.49522,43.20475,24.97926,1679.796,27.94495
+457,15.21522,4,130,307.54,605,923,428,495,504.234,512,533,478,501,508.74,514,544,3.25781,4.99807,9.9921,0,2,9.79199,20,89,75,91.3922,0.024245,0,0.015601,10,10,10,18.1567,47.35665,3212.438,47.60714,43.4437,25.12916,1622.598,28.0954
+458,15.24858,4,130,306.632,603,917,423,496,504.741,512,552,477,500,508.664,514,544,3.27627,5.03225,9.7732,0,2,9.40401,20,93,75,92.6823,0.024763,0,0.015618,10,10,10,18.24315,46.32174,3190.684,47.58651,43.53967,25.15867,1611.483,28.12525
+459,15.28195,4,130,306.569,604,933,425,496,504.947,512,534,478,500,508.658,514,546,3.24211,4.87014,9.82243,0,2,9.28925,20,92,75,94.0512,0.024543,0,0.015632,10,10,10,17.74275,44.74993,3371.211,47.7073,43.68959,24.91965,1701.229,27.88989
+460,15.31532,4,130,307.374,604,929,422,496,504.887,512,534,478,501,508.714,514,548,3.25137,4.87968,10.8066,0,2,9.26313,20,94,75,92.9983,0.024651,0,0.015606,10,10,10,18.24402,44.52271,3623.392,47.58631,43.7117,24.60636,1827.388,27.57921
+461,15.34868,4,130,306.618,603,936,422,496,504.721,512,536,478,500,508.483,514,546,3.28729,4.91437,9.82088,0,2,9.47686,20,94,74,91.7551,0.024771,0,0.015529,10,10,10,18.76171,46.91018,3667.762,47.46479,43.48484,24.5535,1850.299,27.52509
+462,15.38205,4,130,306.243,602,941,422,496,504.608,512,533,480,500,508.417,514,545,3.30448,4.87118,11.2588,0,2,9.55633,20,93,74,89.5271,0.02504,0,0.015566,10,10,10,17.90576,45.38027,3348.611,47.66758,43.62884,24.94887,1690.127,27.91832
+463,15.41542,4,129,306.54,604,924,423,496,504.567,512,536,480,500,508.349,514,544,3.32661,4.95222,11.0112,0,2,9.69416,20,93,74,89.8022,0.023668,0,0.015632,10,10,10,18.93242,46.84732,3523.329,47.42545,43.49067,24.72798,1778.109,27.69793
+464,15.44878,4,129,305.536,601,913,428,496,504.761,512,553,478,500,508.37,514,544,3.30646,4.89738,12.9156,0,2,9.47402,20,89,72,89.721,0.022882,0,0.015658,10,10,10,18.26806,47.24377,3451.331,47.58059,43.45407,24.81765,1742.043,27.78692
+465,15.48215,4,130,305.119,600,931,428,496,504.547,512,537,478,500,508.364,514,542,3.26833,4.89358,12.9955,0,2,9.68263,20,89,74,89.9739,0.023751,0,0.015609,10,10,10,18.40747,47.375,2030.832,47.54757,43.44202,27.12077,1031.862,30.0613
+466,15.51552,4,130,305.609,601,935,420,496,504.413,512,532,478,500,508.469,514,570,3.26085,4.96322,15.3049,0,2,9.74393,20,95,75,90.066,0.02422,0,0.015624,10,10,10,18.0496,47.19342,3131.716,47.63284,43.4587,25.23969,1582.169,28.20499
+467,15.54888,4,130,303.439,598,938,411,496,504.774,512,536,464,500,508.474,514,542,3.28874,4.95226,10.1996,0,2,9.41722,20,111,74,90.3938,0.022805,0,0.015615,10,10,10,19.32493,45.64935,3807.508,47.33633,43.60317,24.39111,1919.997,27.36451
+468,15.58225,4,130,304.989,601,929,423,496,504.85,512,533,478,500,508.67,514,547,3.29568,4.91642,11.868,0,2,9.34083,20,92,75,93.2803,0.023463,0,0.015681,10,10,10,18.07578,46.9344,3610.029,47.62654,43.4826,24.62241,1821.267,27.59378
+469,15.61562,4,129,306.029,603,940,425,496,505.044,512,546,476,500,508.319,514,543,3.31114,4.85437,9.72092,0,2,9.33108,20,92,73,92.0129,0.024517,0,0.015678,10,10,10,18.65912,44.95132,2924.549,47.4886,43.67009,25.53692,1478.177,28.50025
+470,15.64898,4,129,304.218,599,915,425,497,505.264,512,537,479,500,508.25,514,541,3.25581,4.80719,12.8385,0,2,9.2143,19,92,74,92.2338,0.023771,0,0.015698,10,10,10,18.16353,45.36054,2056.417,47.60551,43.63073,27.0664,1044.089,30.01014
+471,15.68235,4,130,303.55,598,927,422,497,505.329,512,528,423,500,508.339,514,542,3.28208,4.84166,12.1038,0,2,9.12606,20,114,74,93.3058,0.023928,0,0.015669,10,10,10,18.63582,42.01622,2864.086,47.49403,43.96335,25.62765,1447.206,28.59221
+472,15.71572,4,129,304.915,601,930,383,497,505.178,512,528,479,500,508.268,514,538,3.31393,4.82139,12.2636,0,2,9.25818,20,129,73,92.3022,0.021868,0,0.015695,10,10,10,19.96256,46.08121,3800.505,47.19535,43.56228,24.3991,1916.764,27.37183
+473,15.74908,4,130,305.515,602,935,423,496,504.902,512,529,476,500,508.269,514,565,3.34128,4.88729,13.2955,0,2,9.44951,20,93,74,90.1226,0.021225,0,0.015675,10,10,10,19.3804,45.62579,3994.59,47.32389,43.60541,24.18279,2013.547,27.1579
+474,15.78245,4,130,303.989,599,929,422,496,505.038,512,543,478,500,508.181,514,538,3.32864,4.94238,14.7096,0,2,9.3634,20,94,71,90.1959,0.022034,0,0.015729,10,10,10,18.6372,46.22731,3698.501,47.49371,43.54853,24.51726,1865.467,27.48964
+475,15.81582,4,129,304.606,601,926,423,496,504.861,512,612,477,500,508.24,514,541,3.30897,4.89139,12.0693,0,2,9.50711,20,100,72,89.8447,0.023654,0,0.015712,10,10,10,18.89071,44.92314,2962.548,47.43503,43.67281,25.48086,1497.227,28.44464
+476,15.84918,4,130,304.128,597,911,425,497,505.104,512,534,478,500,508.207,514,542,3.29091,4.89148,17.6125,0,2,9.22607,19,92,71,89.7166,0.020682,0,0.015712,10,10,10,17.45355,43.17046,1519.536,47.77868,43.84565,28.3804,774.9238,31.30492
+477,15.88255,4,130,304.126,597,937,428,496,504.854,512,538,461,500,508.078,514,538,3.27598,4.91656,13.7728,0,2,9.4938,20,89,71,88.0182,0.022497,0,0.015612,10,10,10,18.85129,46.40643,3238.882,47.4441,43.53173,25.09356,1635.755,28.06033
+478,15.91592,4,130,304.429,599,928,407,496,504.936,512,533,443,500,508.269,514,540,3.3007,4.92086,10.1114,0,2,9.34055,20,125,71,88.7031,0.023671,0,0.015632,10,10,10,18.18073,45.66658,3009.43,47.6014,43.60153,25.41267,1520.677,28.37714
+479,15.94928,4,130,304.136,599,935,424,497,505.252,512,588,480,500,508.568,514,540,3.19572,4.72804,10.004,0,2,9.04242,19,92,75,92.2909,0.024803,0,0.015624,10,10,10,17.50717,44.05896,2932.427,47.76535,43.75717,25.52524,1481.605,28.49019
+480,15.98265,4,130,302.693,596,928,402,497,505.45,512,535,476,501,508.575,514,547,3.24547,4.78053,16.5131,0,2,8.81361,18,110,74,92.7275,0.024406,0,0.015578,10,10,10,17.71849,44.35661,2732.239,47.71325,43.72793,25.83233,1381.638,28.79357
+481,16.01602,4,130,300.684,592,927,424,497,505.611,513,540,478,500,508.479,514,540,3.23615,4.81049,19.0588,0,2,8.78868,19,91,75,95.2103,0.021819,0,0.015704,10,10,10,18.04802,43.57966,1969.952,47.63322,43.80467,27.25296,1000.383,30.19585
+482,16.04938,4,129,302.099,596,919,424,497,505.449,512,538,458,500,508.558,514,541,3.28448,4.78734,11.9122,0,2,8.84871,19,92,75,92.8489,0.021005,0,0.015649,10,10,10,18.77093,45.09172,3271.434,47.46265,43.65654,25.05013,1651.683,28.01825
+483,16.08275,4,129,302.73,597,930,420,497,505.207,512,532,477,500,508.465,514,538,3.25612,4.72224,13.0683,0,2,9.05793,19,93,74,91.9481,0.021579,0,0.015678,10,10,10,18.82991,45.79062,3394.246,47.44903,43.58975,24.89008,1713.278,27.85923
+484,16.11612,4,130,302.869,596,929,428,497,505.123,512,538,478,500,508.264,514,539,3.25302,4.74443,12.7456,0,2,9.16962,20,89,71,89.426,0.024023,0,0.015666,10,10,10,18.10518,43.56085,2443.723,47.61948,43.80655,26.31699,1237.278,29.27284
+485,16.14948,4,129,302.101,595,943,422,497,505.21,512,548,477,500,508.39,514,546,3.28523,4.80959,15.5453,0,2,9.13189,19,94,74,91.5825,0.024663,0,0.015721,10,10,10,18.32529,43.45219,2604.831,47.56701,43.81739,26.03972,1317.86,28.99882
+486,16.18285,4,130,298.962,589,926,423,497,505.263,512,542,478,500,508.342,514,542,3.29788,4.79181,24.8296,0,2,9.1024,19,94,73,91.2933,0.023714,0,0.015747,10,10,10,18.61451,43.03122,2709.732,47.499,43.85968,25.86825,1370.277,28.82943
+487,16.21622,4,129,301.308,594,930,422,497,505.337,512,536,479,500,508.337,514,541,3.28098,4.79052,13.5717,0,2,9.05818,19,93,72,91.9597,0.019879,0,0.015735,10,10,10,18.7905,43.808,3576.72,47.45813,43.78198,24.66266,1804.01,27.63512
+488,16.24958,4,130,302.275,596,918,424,497,505.067,512,532,476,500,508.262,514,538,3.2408,4.80843,15.7818,0,2,9.26716,19,92,71,90.4982,0.018427,0,0.015704,10,10,10,18.10429,44.82907,3769.167,47.6197,43.68192,24.43506,1900.317,27.40925
+489,16.28295,4,129,302.763,598,924,424,496,505.116,512,554,478,500,508.246,514,590,3.26447,4.82926,12.6014,0,2,9.30633,20,93,73,91.5323,0.023623,0,0.015658,10,10,10,19.20178,44.74194,2659.296,47.3641,43.69037,25.94985,1345.634,28.90824
+490,16.31632,4,130,303.034,596,932,423,497,505.193,512,569,466,500,508.446,514,543,3.31786,4.79503,12.1296,0,2,9.15968,20,93,74,92.4443,0.023014,0,0.015666,10,10,10,18.00213,42.91906,1965.731,47.64428,43.87101,27.26227,998.0956,30.20579
+491,16.34968,4,131,302.798,594,937,424,497,505.162,512,537,478,500,508.462,514,542,3.22517,4.75016,17.9156,0,2,9.13724,19,92,74,91.762,0.023597,0,0.015695,10,10,10,18.30089,43.38094,3061.287,47.57279,43.82452,25.33847,1546.064,28.30524
+492,16.38305,4,130,304.107,598,928,402,497,505.107,512,535,462,500,508.484,514,543,3.23696,4.81711,10.18,0,2,9.14187,19,113,74,92.3099,0.023834,0,0.015635,10,10,10,18.75461,45.83417,3494.595,47.46643,43.58562,24.76354,1763.445,27.73389
+493,16.41642,4,129,303.504,598,936,426,497,505.06,512,538,478,500,508.533,514,545,3.21911,4.80027,14.5373,0,2,9.14467,19,90,74,91.1198,0.024823,0,0.015695,10,10,10,18.80454,43.4536,3347.317,47.45489,43.81725,24.95054,1689.223,27.92064
+494,16.44978,4,129,303.434,598,922,423,497,505.224,512,537,478,500,508.376,514,572,3.25746,4.87511,12.1094,0,2,9.09008,19,94,71,91.2584,0.024706,0,0.015675,10,10,10,18.13445,45.75343,2463.925,47.61247,43.59328,26.28124,1247.934,29.2356
+495,16.48315,4,129,303.37,596,926,425,496,504.97,512,532,478,500,508.313,514,543,3.27874,4.91528,11.3645,0,2,9.3813,20,93,74,90.6658,0.024817,0,0.015638,10,10,10,18.44394,43.93035,2603.478,47.53898,43.76987,26.04197,1317.333,29.00056
+496,16.51652,4,129,302.741,596,923,422,497,505.24,512,534,478,500,508.433,514,544,3.2843,4.87976,10.8722,0,2,9.0477,19,94,73,91.0209,0.023225,0,0.015709,10,10,10,18.40348,43.67342,3418.467,47.54852,43.79534,24.8592,1724.753,27.83024
+497,16.54988,4,129,303.707,598,925,426,497,505.205,512,546,477,500,508.301,514,544,3.20341,4.70385,12.0244,0,2,9.16102,19,90,71,89.667,0.023703,0,0.015701,10,10,10,18.11903,43.36171,3828.043,47.61616,43.82645,24.36774,1929.392,27.34331
+498,16.58325,4,129,303.411,597,931,422,497,505.361,512,546,476,500,508.23,514,543,3.29741,4.82964,12.4422,0,2,9.07068,19,94,71,89.7841,0.024517,0,0.015727,10,10,10,18.54885,43.539,3645.229,47.51434,43.80873,24.58027,1838.136,27.55374
+499,16.61662,4,129,302.738,595,927,423,498,505.489,513,542,476,500,508.176,514,541,3.35506,4.85587,12.7473,0,2,9.10067,19,93,71,92.8397,0.025857,0,0.015661,10,10,10,17.85136,42.62317,2647.082,47.6808,43.90105,25.96984,1338.659,28.93081
+500,16.64998,4,129,301.488,592,915,410,497,505.424,512,534,422,500,508.243,514,542,3.28507,4.79511,16.5283,0,2,9.03368,19,136,71,91.2337,0.023474,0,0.015689,10,10,10,18.96583,42.94206,1900.967,47.41779,43.86868,27.40777,965.9603,30.34792
+501,16.68335,4,129,301.576,593,935,388,497,505.382,512,537,474,500,508.4,514,544,3.30348,4.75784,13.1893,0,2,9.02389,19,126,72,92.042,0.025057,0,0.015706,10,10,10,18.75935,45.47372,2883.373,47.46534,43.61991,25.59851,1457.745,28.5607
+502,16.71672,4,129,302.638,595,935,425,497,505.319,512,533,476,500,508.495,514,542,3.37968,4.90878,11.2044,0,2,9.04894,19,92,74,92.2364,0.024331,0,0.015695,10,10,10,19.02454,43.95442,3631.08,47.40437,43.76749,24.59716,1831.285,27.56995
+503,16.75008,4,129,302.801,597,935,428,497,505.164,512,532,478,500,508.437,514,580,3.33825,4.87672,12.0183,0,2,9.14526,19,88,74,91.3213,0.024308,0,0.015692,10,10,10,18.76647,45.00352,3590.305,47.46369,43.66505,24.6462,1811.095,27.6181
+504,16.78345,4,129,301.059,592,934,425,498,505.546,513,557,468,500,508.545,514,543,3.25989,4.7917,9.66347,0,2,8.85601,18,92,75,94.5992,0.025163,0,0.015646,10,10,10,18.42287,43.4978,3363.853,47.54394,43.81284,24.92914,1697.407,27.89965
+505,16.81682,4,129,301.407,592,924,423,497,505.406,512,536,478,500,508.532,514,542,3.22222,4.77934,14.7113,0,2,8.93962,19,92,74,93.0376,0.026006,0,0.015666,10,10,10,17.45996,44.84742,2456.084,47.77708,43.68014,26.29508,1243.619,29.25064
+506,16.85018,4,128,301.462,594,922,424,497,505.379,512,538,458,500,508.503,514,544,3.19594,4.71564,10.5167,0,2,8.97091,19,92,74,93.0538,0.0259,0,0.015712,10,10,10,17.68443,42.47958,2847.193,47.7216,43.91571,25.65334,1438.638,28.618
+507,16.88355,4,129,301.109,593,917,389,497,505.29,512,533,478,500,508.467,514,548,3.17837,4.70489,10.7484,0,2,9.06752,19,128,74,92.1329,0.022419,0,0.015672,10,10,10,18.40213,45.85304,3645.794,47.54883,43.58383,24.57959,1838.961,27.55179
+508,16.91692,4,129,300.483,593,927,422,497,505.175,512,541,420,501,508.551,514,547,3.18748,4.73358,11.7145,0,2,9.07271,19,94,74,91.2695,0.024626,0,0.015721,10,10,10,18.49353,43.63532,3053.24,47.52731,43.79913,25.3499,1542.152,28.31624
+509,16.95028,4,130,300.439,593,930,425,496,504.932,512,533,475,501,508.722,514,546,3.2684,4.84781,9.98303,0,2,9.17076,19,93,75,90.6618,0.024949,0,0.015721,10,10,10,17.83304,44.57352,3184.103,47.68526,43.70674,25.16764,1607.653,28.13559
+510,16.98365,4,129,300.1,592,933,423,496,504.583,512,536,478,501,508.612,514,543,3.23146,4.80629,11.4483,0,2,9.39515,20,94,73,87.8,0.025229,0,0.015718,10,10,10,18.14561,45.0863,3281.351,47.6098,43.65707,25.03699,1656.483,28.00564
+511,17.01702,4,129,301.171,594,935,422,496,504.506,512,535,441,501,508.644,514,544,3.25186,4.86209,10.8766,0,2,9.50085,20,94,74,88.9619,0.024191,0,0.015704,10,10,10,18.97174,45.34731,3556.111,47.41644,43.632,24.68776,1794.135,27.65896
+512,17.05038,4,128,301.809,596,914,425,496,504.725,512,536,480,501,508.747,514,578,3.28799,4.94615,10.5189,0,2,9.32832,20,92,75,91.4233,0.025829,0,0.015684,10,10,10,18.108,46.02354,3116.241,47.61881,43.56771,25.2612,1574.153,28.22704
+513,17.08375,4,129,301.781,595,930,423,496,504.838,512,586,479,501,508.697,514,548,3.17976,4.83206,11.4965,0,2,9.24395,19,93,75,90.427,0.024151,0,0.015686,10,10,10,17.2182,45.25044,2052.124,47.83764,43.64129,27.07548,1041.679,30.02017
+514,17.11712,4,129,301.131,592,932,424,496,504.621,512,529,478,501,508.638,514,546,3.216,4.82542,15.3112,0,2,9.41504,20,93,74,88.4844,0.023751,0,0.015698,10,10,10,18.2083,44.41655,2319.773,47.59482,43.72207,26.54306,1175.543,29.49513
+515,17.15048,4,130,302.511,593,930,424,496,504.901,512,563,478,501,508.576,514,546,3.24718,4.89376,15.3393,0,2,9.24453,20,93,74,91.4468,0.024131,0,0.015681,10,10,10,18.03707,44.97434,3181.969,47.63585,43.66787,25.17055,1606.737,28.13807
+516,17.18385,4,130,301.657,592,926,425,496,505.055,512,532,474,501,508.589,514,542,3.26557,4.9406,9.97261,0,2,9.14889,19,92,75,92.0705,0.024477,0,0.015686,10,10,10,17.71772,43.91088,3388.127,47.71344,43.77179,24.89792,1709.471,27.8689
+517,17.21722,4,129,300.786,592,924,423,497,505.106,512,562,476,501,508.527,514,540,3.25919,4.86786,9.98771,0,2,9.09249,19,95,74,90.9861,0.024028,0,0.015666,10,10,10,17.83253,45.39035,3149.568,47.68538,43.62788,25.215,1590.589,28.18193
+518,17.25058,4,128,300.02,591,914,422,497,505.095,512,561,478,501,508.629,514,541,3.19962,4.79045,9.76511,0,2,9.05509,19,94,75,91.8486,0.025063,0,0.015609,10,10,10,17.93248,43.6936,2706.834,47.66111,43.79334,25.8729,1368.824,28.83404
+519,17.28395,4,128,299.326,590,925,422,497,505.378,512,541,426,501,508.64,514,541,3.22725,4.77158,10.8226,0,2,8.84031,18,94,75,93.125,0.025763,0,0.015661,10,10,10,18.203,43.26731,2779.725,47.59609,43.83592,25.75749,1405.23,28.72004
+520,17.31732,4,128,298.883,588,927,425,498,505.535,512,550,480,502,508.791,514,541,3.21133,4.72659,11.4571,0,2,8.65206,18,91,75,94.5057,0.024486,0,0.015669,10,10,10,17.68888,43.85822,3154.231,47.72051,43.777,25.20858,1592.502,28.17671
+521,17.35068,4,129,299.206,589,939,420,497,505.244,512,531,480,502,508.847,514,543,3.22778,4.8189,9.81064,0,2,8.83232,18,93,75,91.9843,0.023068,0,0.015609,10,10,10,17.12637,43.18743,3889.019,47.86086,43.84394,24.29911,1959.588,27.27587
+522,17.38405,4,129,299.72,588,925,423,497,505.126,512,535,479,501,508.819,514,541,3.24114,4.84126,16.5121,0,2,8.97558,18,94,75,93.4103,0.023283,0,0.015638,10,10,10,17.80489,45.02852,3722.406,47.69212,43.66264,24.48928,1876.912,27.46307
+523,17.41742,4,129,298.653,587,927,412,497,505.07,512,538,442,502,508.875,514,546,3.24088,4.81989,11.6699,0,2,8.95083,18,122,75,92.8275,0.024549,0,0.015689,10,10,10,17.6294,44.85847,2769.151,47.73514,43.67907,25.77405,1400.198,28.73562
+524,17.45078,4,128,297.859,587,928,426,497,505.117,512,534,479,502,509.085,514,614,3.17737,4.79899,11.352,0,2,8.8062,18,102,77,93.2991,0.0253,0,0.015638,10,10,10,17.19371,43.07895,2589.154,47.84382,43.85486,26.06593,1309.645,29.02598
+525,17.48415,4,128,298.2,588,941,428,496,504.621,512,534,478,502,509.037,514,541,3.19084,4.80094,11.316,0,2,9.21792,19,89,75,91.0458,0.025917,0,0.015701,10,10,10,16.98813,43.67748,2812.372,47.89606,43.79494,25.70679,1421.352,28.67049
+526,17.51752,4,128,299.942,590,933,425,497,505.269,512,528,478,502,509.154,514,604,3.19801,4.84274,10.7748,0,2,8.69374,18,106,77,95.3697,0.025274,0,0.015669,10,10,10,17.37471,43.7008,2979.584,47.79834,43.79262,25.45596,1505.061,28.42197
+527,17.55088,4,129,300.654,590,926,425,497,505.034,512,529,478,502,509.096,514,566,3.20138,4.82771,11.882,0,2,8.88811,18,92,75,92.8492,0.02514,0,0.015641,10,10,10,17.21151,42.21644,2516.819,47.83932,43.9427,26.18899,1273.267,29.14832
+528,17.58425,4,131,298.94,583,930,426,497,505.163,512,533,480,502,509.156,514,543,3.18198,4.75465,29.8861,0,2,8.73014,18,91,77,93.5598,0.020705,0,0.015709,10,10,10,17.15831,42.89973,2079.792,47.85277,43.87297,27.01732,1054.91,29.96536
+529,17.61762,4,130,298.722,584,927,428,497,505.343,512,534,479,502,509.211,514,544,3.17758,4.79789,17.6349,0,2,8.60998,18,89,78,95.36,0.0231,0,0.015686,10,10,10,16.56423,42.18708,2185.876,48.0058,43.94572,26.80126,1107.626,29.75358
+530,17.65098,4,129,298.089,585,914,423,497,505.097,512,592,470,502,509.16,514,545,3.18556,4.80069,10.9869,0,2,8.78944,18,94,77,93.3533,0.022568,0,0.015758,10,10,10,16.98796,42.69936,3131.422,47.8961,43.8933,25.2401,1580.633,28.2092
+531,17.68435,4,129,298.022,585,918,429,497,505.002,512,534,472,502,509.015,514,543,3.11199,4.67109,12.5218,0,2,8.85161,18,88,75,90.4696,0.020928,0,0.015755,10,10,10,17.25637,43.71664,3493.79,47.82802,43.79105,24.76455,1762.138,27.73711
+532,17.71772,4,129,298.55,585,929,428,497,505.168,512,529,478,502,508.943,514,545,3.16938,4.76976,14.1337,0,2,8.81239,18,90,75,92.6469,0.021371,0,0.015724,10,10,10,17.38527,43.4958,3646.626,47.7957,43.81304,24.5786,1838.534,27.5528
+533,17.75108,4,130,299.732,587,927,428,496,504.909,512,536,479,502,508.799,514,550,3.23653,4.87297,13.6691,0,2,9.11621,19,87,75,91.5367,0.023505,0,0.015632,10,10,10,17.79022,43.7524,3051.635,47.6957,43.7875,25.35219,1541.203,28.31891
+534,17.78445,4,130,300.465,588,926,430,496,504.633,512,533,480,502,508.89,514,543,3.25924,4.83153,13.461,0,2,9.23943,19,87,75,90.2195,0.023828,0,0.015758,10,10,10,17.45677,42.35063,3033.999,47.77787,43.92891,25.37736,1531.951,28.34506
+535,17.81782,4,130,299.976,588,933,428,496,504.729,512,536,480,501,508.778,514,541,3.25494,4.88962,14.1477,0,2,9.20399,19,89,75,89.8166,0.021048,0,0.015695,10,10,10,17.55477,42.95406,3600.188,47.75356,43.86747,24.63426,1815.221,27.60822
+536,17.85118,4,130,300.204,588,916,425,496,504.788,512,529,480,502,508.886,514,544,3.18967,4.86443,14.9316,0,2,9.12462,19,92,75,91.1368,0.021239,0,0.015661,10,10,10,17.51554,45.19287,3638.553,47.76328,43.64681,24.58823,1834.953,27.56126
+537,17.88455,4,128,299.648,587,925,428,497,505.166,512,531,480,502,508.835,514,545,3.17652,4.74121,13.4358,0,2,8.8986,19,88,75,92.4599,0.023422,0,0.015684,10,10,10,16.99389,42.56312,1861.61,47.89459,43.90718,27.49863,945.6945,30.44
+538,17.91792,4,129,299.079,586,929,425,497,505.314,512,531,478,502,508.782,514,555,3.21616,4.81912,15.2701,0,2,8.80754,18,92,75,93.2617,0.022428,0,0.015664,10,10,10,16.7781,42.23155,2681.176,47.95009,43.94114,25.91426,1355.34,28.87703
+539,17.95128,4,128,296.465,582,929,416,498,505.434,512,535,474,501,508.716,514,565,3.21099,4.75279,11.9336,0,2,8.76684,18,109,75,92.564,0.022814,0,0.015695,10,10,10,18.23159,42.84817,3536.638,47.58927,43.87819,24.71161,1783.589,27.68457
+540,17.98465,4,129,298.054,586,923,422,498,505.769,512,529,475,501,508.82,514,546,3.22507,4.68984,13.2815,0,2,8.49007,18,94,75,94.9886,0.021816,0,0.015738,10,10,10,17.89351,41.15291,3708.153,47.67056,44.05351,24.50594,1868.838,27.4818
+541,18.01802,4,129,298.54,587,933,425,498,505.345,512,533,480,501,508.716,514,540,3.23719,4.70374,14.2819,0,2,8.78893,18,92,74,91.0794,0.022234,0,0.015769,10,10,10,18.11191,41.99297,3644.938,47.61787,43.96575,24.58061,1837.495,27.55525
+542,18.05138,4,127,297.559,585,925,432,497,505.301,512,539,478,502,508.828,514,541,3.25604,4.79175,12.6385,0,2,8.78572,18,84,75,92.6596,0.025986,0,0.015749,10,10,10,16.71408,41.43203,2454.165,47.96669,44.02415,26.29848,1241.619,29.25763
+543,18.08475,4,128,297.47,583,921,430,497,505.226,512,534,478,502,508.796,514,559,3.21387,4.83257,12.6453,0,2,8.90308,18,87,75,92.3985,0.024943,0,0.015789,10,10,10,17.81442,42.35642,2264.035,47.6898,43.92832,26.64868,1147.06,29.60165
+544,18.11812,4,128,297.74,584,928,423,496,505.018,512,538,468,502,508.858,514,540,3.2218,4.83272,12.3704,0,2,8.9464,19,93,74,90.5721,0.022754,0,0.015749,10,10,10,17.5005,42.54721,3540.435,47.76701,43.9088,24.70695,1785.229,27.68057
+545,18.15148,4,129,298.775,586,927,387,497,505.202,512,536,464,502,508.737,514,542,3.19137,4.76828,13.8586,0,2,8.86745,18,133,74,91.0874,0.023111,0,0.015738,10,10,10,18.08201,42.57303,3690.574,47.62505,43.90617,24.52657,1860.451,27.50133
+546,18.18485,4,129,299.488,588,929,428,497,504.885,512,527,477,501,508.561,514,542,3.23743,4.79631,12.043,0,2,9.16622,19,89,72,88.6681,0.023214,0,0.015744,10,10,10,18.38825,43.98309,3585.786,47.55211,43.76466,24.65167,1808.486,27.62436
+547,18.21822,4,128,297.909,585,916,424,497,505.353,512,550,470,501,508.587,514,540,3.21422,4.77966,11.101,0,2,8.84478,18,91,73,91.4545,0.025011,0,0.015755,10,10,10,17.93374,42.19132,2684.217,47.6608,43.94528,25.90934,1357.14,28.87127
+548,18.25158,4,129,295.961,579,916,423,498,505.395,512,529,480,502,508.773,514,540,3.1402,4.62807,19.7162,0,2,8.68471,18,93,74,91.9706,0.01865,0,0.015807,10,10,10,16.80313,40.71397,1163.31,47.94361,44.10008,29.54056,596.0341,32.4448
+549,18.28495,4,129,295.175,578,920,425,497,505.213,512,545,450,501,508.683,514,543,3.15767,4.69935,18.332,0,2,8.87648,18,90,74,90.6148,0.022868,0,0.015752,10,10,10,17.58432,41.52666,2142.798,47.74626,44.01424,26.8877,1086.177,29.83851
+550,18.31832,4,129,296.128,580,925,422,497,505.299,512,533,480,502,508.767,514,540,3.17385,4.69672,12.7825,0,2,8.79316,18,93,75,92.7095,0.023351,0,0.015809,10,10,10,16.64097,43.86337,2800.555,47.98573,43.77649,25.72507,1415.404,28.68871
+551,18.35169,4,129,296.902,582,927,424,498,505.458,512,552,476,501,508.57,514,559,3.1954,4.72194,12.2446,0,2,8.73426,18,90,71,90.6859,0.024074,0,0.015804,10,10,10,18.19833,43.91306,3030.971,47.5972,43.77158,25.3817,1531.013,28.34772
+552,18.38505,4,129,296.747,582,927,428,497,505.399,512,528,478,502,508.719,514,543,3.23977,4.73873,12.6126,0,2,8.73233,18,89,74,92.017,0.02458,0,0.015801,10,10,10,17.6398,44.08584,2877.808,47.73257,43.75452,25.6069,1454.335,28.57087
+553,18.41842,4,130,298.23,582,918,423,496,504.879,512,534,480,500,508.289,514,545,3.22966,4.77804,15.7457,0,2,9.32669,20,92,71,89.0294,0.02408,0,0.015804,10,10,10,17.78593,43.24999,2122.263,47.69675,43.83765,26.92952,1076.391,29.87781
+554,18.45179,4,129,297.118,582,915,422,496,504.933,512,531,474,501,508.452,514,544,3.19699,4.78854,11.439,0,2,9.17706,19,94,71,88.5147,0.020836,0,0.015832,10,10,10,17.55573,45.85738,3254.15,47.75332,43.58342,25.07314,1642.928,28.04133
+555,18.48515,4,130,297.464,582,912,422,496,504.566,512,551,476,501,508.511,514,543,3.20661,4.85361,14.448,0,2,9.47749,20,93,74,88.7969,0.019022,0,0.015801,10,10,10,17.39746,46.37701,3596.031,47.79265,43.53449,24.63928,1813.959,27.61124
+556,18.51852,4,130,297.824,583,923,393,496,504.89,512,538,474,501,508.623,514,595,3.25415,4.89916,13.4791,0,2,9.12416,19,145,72,88.9698,0.023248,0,0.015855,10,10,10,18.1342,44.35981,2965.55,47.61253,43.72762,25.47646,1498.399,28.44124
+557,18.55189,4,129,296.025,580,930,425,496,504.788,512,532,475,501,508.532,514,540,3.22487,4.81064,10.355,0,2,9.21999,20,92,72,88.4574,0.024903,0,0.015801,10,10,10,17.51854,42.99529,3080.613,47.76254,43.8633,25.31114,1555.435,28.27899
+558,18.58525,4,129,296.225,582,928,423,497,505.199,512,534,480,501,508.574,514,591,3.23701,4.8171,12.2345,0,2,8.92367,18,102,72,89.7858,0.024711,0,0.015835,10,10,10,18.05073,44.89013,3039.161,47.63257,43.67601,25.36998,1535.315,28.33554
+559,18.61862,4,128,296.406,581,915,423,497,505.104,512,534,475,502,508.683,514,543,3.18817,4.73924,12.8198,0,2,8.94782,19,93,74,91.1745,0.0242,0,0.015852,10,10,10,17.57999,43.77101,2798.087,47.74733,43.78565,25.7289,1414.381,28.69185
+560,18.65199,4,129,297.135,583,918,423,496,504.893,512,528,478,501,508.544,514,537,3.23122,4.77698,16.3344,0,2,9.11563,19,92,72,88.1558,0.017387,0,0.015807,10,10,10,17.84976,45.27474,4103.744,47.68119,43.63895,24.06571,2067.653,27.04274
+561,18.68535,4,128,297.386,585,925,425,497,505.243,512,536,474,501,508.588,514,539,3.18252,4.73844,15.0459,0,2,8.91742,19,92,74,92.2674,0.022834,0,0.015892,10,10,10,17.53117,42.65918,2655.334,47.7594,43.89739,25.95632,1342.714,28.91768
+562,18.71872,4,128,296.384,582,921,426,497,505.08,512,532,478,501,508.55,514,537,3.14929,4.68471,11.8801,0,2,9.02261,19,92,73,89.8711,0.023705,0,0.015844,10,10,10,17.4235,41.6496,2076.475,47.78616,44.0014,27.02424,1053.006,29.9732
+563,18.75209,4,129,295.733,580,927,424,497,505.416,512,529,478,502,508.655,514,538,3.16805,4.76141,16.0159,0,2,8.74429,18,93,74,92.1265,0.024046,0,0.015841,10,10,10,17.84758,43.74219,3030.038,47.68172,43.78851,25.38303,1530.417,28.34942
+564,18.78545,4,129,296.211,582,925,425,496,504.949,512,542,458,501,508.509,514,539,3.16891,4.73391,9.77452,0,2,9.17522,20,92,74,90.1363,0.024068,0,0.015864,10,10,10,17.49258,45.14479,3464.495,47.76897,43.65144,24.80111,1747.907,27.77233
+565,18.81882,4,128,296.737,583,927,428,496,504.622,512,528,474,501,508.446,514,540,3.20018,4.73927,10.3911,0,2,9.41691,20,88,73,88.6235,0.024789,0,0.015821,10,10,10,18.30192,43.70217,3358.392,47.57255,43.79248,24.9362,1694.697,27.90659
+566,18.85219,4,127,295.538,581,925,424,496,504.612,512,538,470,501,508.6,514,539,3.21214,4.85713,10.1181,0,2,9.35235,20,93,74,88.3528,0.026603,0,0.015838,10,10,10,17.61262,45.40609,2656.669,47.73927,43.62637,25.95414,1344.089,28.91323
+567,18.88555,4,127,295.145,580,917,423,496,504.626,512,541,477,501,508.521,514,548,3.23257,4.85963,11.059,0,2,9.33084,20,93,71,87.6226,0.02532,0,0.015832,10,10,10,17.49402,45.92995,2250.078,47.76862,43.57655,26.67554,1140.895,29.62506
+568,18.91892,4,128,295.589,581,924,425,496,504.506,512,607,448,502,508.586,514,535,3.21281,4.84268,11.1234,0,2,9.379,20,111,72,87.7986,0.022917,0,0.015858,10,10,10,17.29466,45.80984,3178.925,47.81839,43.58793,25.17471,1605.239,28.14212
+569,18.95229,4,128,296.696,583,928,425,496,504.386,512,528,480,502,508.66,514,541,3.17462,4.83541,9.70829,0,2,9.46537,20,92,74,88.3698,0.024446,0,0.015861,10,10,10,17.82947,46.97574,3165.597,47.68613,43.47878,25.19296,1599,28.15903
+570,18.98565,4,128,296.412,582,926,425,496,504.649,512,535,480,502,508.854,514,538,3.22187,4.86836,10.0636,0,2,9.21686,20,92,75,90.4801,0.025354,0,0.015884,10,10,10,16.5674,46.82358,3284.264,48.00497,43.49287,25.03313,1657.98,28.00172
+571,19.01902,4,128,296.031,581,918,424,496,504.496,512,529,479,502,508.97,514,562,3.16261,4.82646,10.1541,0,2,9.28354,20,91,75,90.5963,0.025592,0,0.015907,10,10,10,17.37602,46.48274,2748.828,47.79801,43.5246,25.80604,1390.379,28.76618
+572,19.05239,4,128,294.75,578,922,425,496,504.461,512,533,476,502,509.051,514,541,3.15225,4.81868,14.703,0,2,9.25424,20,92,75,90.5638,0.024508,0,0.015858,10,10,10,16.75494,44.17696,1970.19,47.95609,43.74556,27.25243,1000.328,30.19609
+573,19.08575,4,128,295.577,578,911,428,495,504.327,512,533,476,502,508.996,514,539,3.15124,4.833,12.3429,0,2,9.35499,20,88,75,90.2359,0.02496,0,0.015909,10,10,10,16.75097,44.47099,2499.08,47.95711,43.71674,26.21971,1264.846,29.17714
+574,19.11912,4,128,296.154,580,918,425,496,504.841,512,529,478,502,509.014,514,538,3.19476,4.89168,10.4866,0,2,8.97366,19,92,75,91.5068,0.024334,0,0.015895,10,10,10,16.7115,43.34315,2759.028,47.96736,43.82831,25.78995,1394.528,28.75324
+575,19.15249,4,128,295.507,580,935,424,496,504.522,512,553,479,502,508.864,514,539,3.07591,4.65265,9.36756,0,2,9.25943,20,92,75,89.1691,0.025109,0,0.015884,10,10,10,16.68098,44.93418,2878.012,47.9753,43.67175,25.60659,1454.41,28.57064
+576,19.18585,4,128,295.71,580,930,425,496,504.696,512,528,478,502,508.953,514,543,3.05959,4.72601,10.4736,0,2,9.07467,19,93,75,90.5081,0.024826,0,0.015887,10,10,10,16.34528,43.58185,3034.827,48.06359,43.80446,25.37617,1532.396,28.3438
+577,19.21922,4,128,294.738,578,931,408,496,504.43,512,549,476,502,508.75,514,541,3.14035,4.84396,11.5223,0,2,9.37504,20,109,74,88.507,0.024228,0,0.015844,10,10,10,17.23669,45.16332,2746.066,47.83297,43.64965,25.8104,1388.633,28.77164
+578,19.25259,4,127,294.946,579,930,422,496,504.456,512,575,455,502,508.771,514,537,3.15857,4.75194,9.72398,0,2,9.37334,20,93,74,88.7393,0.024534,0,0.015835,10,10,10,17.62795,44.50741,2844.296,47.7355,43.71319,25.65776,1437.682,28.62088
+579,19.28595,4,127,295.052,579,928,424,495,504.407,512,532,480,502,508.796,514,542,3.20023,4.81089,11.3788,0,2,9.41788,20,91,74,89.4521,0.024874,0,0.015841,10,10,10,17.43018,45.60144,3296.341,47.78449,43.60773,25.01719,1663.929,27.98617
+580,19.31932,4,128,295.464,580,924,423,496,504.707,512,586,476,502,508.868,514,620,3.21357,4.87488,10.7911,0,2,9.18453,20,129,75,91.248,0.02598,0,0.015861,10,10,10,17.912,46.844,2652.371,47.66607,43.49097,25.96117,1342.374,28.91878
+581,19.35269,4,128,295.694,580,919,425,496,504.769,512,527,480,502,508.969,514,538,3.2236,4.85923,10.0854,0,2,9.09838,20,92,75,92.4436,0.025,0,0.015849,10,10,10,17.7916,45.95254,2800.414,47.69536,43.57442,25.72529,1416.143,28.68644
+582,19.38605,4,128,295.761,580,923,428,496,504.823,512,544,480,502,509.025,514,541,3.17094,4.76618,11.1205,0,2,9.01808,19,89,75,91.464,0.024637,0,0.015889,10,10,10,17.44704,43.26828,3308.294,47.7803,43.83582,25.00147,1669.326,27.9721
+583,19.41942,4,128,295.38,580,927,426,496,504.945,512,538,465,502,509.079,514,538,3.17491,4.66344,12.337,0,2,8.90497,19,91,75,92.9886,0.024177,0,0.015869,10,10,10,17.53349,42.88883,3504.274,47.75883,43.87407,24.75153,1767.243,27.72455
+584,19.45279,4,127,296.121,581,924,425,496,505.005,512,581,418,502,508.856,514,542,3.1594,4.71133,10.5056,0,2,8.91419,19,116,75,91.6552,0.026243,0,0.015832,10,10,10,17.18342,41.79174,2902.287,47.84642,43.98661,25.57011,1465.887,28.53651
+585,19.48615,4,127,295.512,579,910,428,497,505.374,512,557,480,502,508.935,514,542,3.14832,4.72453,12.115,0,2,8.62136,18,89,75,93.2795,0.024763,0,0.015858,10,10,10,17.05725,41.8994,2102.831,47.87842,43.97543,26.96947,1066.155,29.91931
+586,19.51952,4,128,294.75,575,919,422,497,505.333,512,580,480,502,508.863,514,576,3.14229,4.6523,15.867,0,2,8.67218,18,93,74,92.0678,0.022377,0,0.015864,10,10,10,16.50676,42.32601,1479.094,48.0209,43.93144,28.49756,754.2549,31.42233
+587,19.55289,4,129,295.761,576,932,422,497,505.15,512,530,476,502,508.829,514,541,3.17554,4.71643,20.1141,0,2,8.82665,18,93,74,91.6293,0.022617,0,0.015901,10,10,10,17.32105,43.38803,2757.794,47.81177,43.82381,25.7919,1394.074,28.75465
+588,19.58625,4,129,295.716,577,934,425,497,505.1,512,529,480,502,509.065,514,541,3.21838,4.76059,10.1229,0,2,8.79413,18,92,75,92.1186,0.024108,0,0.015909,10,10,10,17.27794,43.38604,3139.679,47.82259,43.82401,25.22866,1585.006,28.19721
+589,19.61962,4,128,294.228,576,927,428,496,504.82,512,555,478,502,508.895,514,541,3.16359,4.72103,9.9297,0,2,9.03759,18,88,74,89.423,0.02446,0,0.015841,10,10,10,17.8887,45.65553,2931.825,47.67173,43.60258,25.52613,1481.799,28.48962
+590,19.65299,4,129,295.005,576,921,424,496,504.739,512,532,424,502,509.059,514,541,3.22198,4.81468,15.163,0,2,9.02139,19,116,75,90.5841,0.023117,0,0.015849,10,10,10,16.91762,45.48024,1791.443,47.91412,43.61929,27.66548,911.3212,30.6008
+591,19.68635,4,129,295.459,576,912,424,496,504.76,512,533,479,502,509.006,514,540,3.17007,4.81531,13.4269,0,2,9.06478,19,91,75,91.3753,0.023883,0,0.015864,10,10,10,17.42494,45.25282,2128.24,47.7858,43.64106,26.91731,1079.789,29.86412
+592,19.71972,4,128,295.421,577,922,428,496,505.006,512,529,478,502,508.937,514,540,3.19628,4.89586,10.215,0,2,8.90313,19,88,75,91.6324,0.02344,0,0.015844,10,10,10,16.30814,42.59105,3040.572,48.07347,43.90433,25.36796,1535.011,28.3364
+593,19.75309,4,128,295.844,578,930,425,497,505.267,512,574,479,502,508.956,514,565,3.14222,4.75342,10.5713,0,2,8.69254,18,92,75,92.3362,0.022748,0,0.015889,10,10,10,17.44158,43.01662,3509.856,47.78165,43.86115,24.74462,1770.042,27.71768
+594,19.78645,4,129,297.806,582,930,428,496,504.83,512,539,448,502,508.926,514,542,3.1449,4.74258,12.0842,0,2,9.05159,19,89,75,90.9084,0.023934,0,0.015852,10,10,10,17.08242,45.54693,3223.639,47.87202,43.61292,25.11405,1627.477,28.08237
+595,19.81982,4,129,297.142,580,931,423,496,504.586,512,533,478,502,508.917,514,540,3.12984,4.74693,12.8627,0,2,9.2205,19,93,75,89.5333,0.024457,0,0.015872,10,10,10,16.81424,44.50341,2544.489,47.94074,43.71358,26.14151,1287.574,29.09979
\ No newline at end of file
diff --git a/nulrdcscripts/vqc/LICENSE b/nulrdcscripts/vqc/LICENSE
new file mode 100644
index 0000000..9008668
--- /dev/null
+++ b/nulrdcscripts/vqc/LICENSE
@@ -0,0 +1,23 @@
+MIT License
+
+Copyright (c) 2023 Northwestern University Libraries
+
+Created by Sophia Francis
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/nulrdcscripts/vqc/QCScript.py b/nulrdcscripts/vqc/QCScript.py
new file mode 100644
index 0000000..101fe77
--- /dev/null
+++ b/nulrdcscripts/vqc/QCScript.py
@@ -0,0 +1,55 @@
+import os
+import setup
+from argparser import args
+from nulrdcscripts.vqc import dataparsing
+from nulrdcscripts.vqc import overallStatistics
+from nulrdcscripts.vqc import framebyframestatistics
+import progressbar
+
+inputPath = os.path.normpath(args.input_path)
+bitDepth = args.videobitdepth
+outputPath = args.output_path
+
+print("***Starting Setup***")
+with progressbar.ProgressBar(max_value=100) as setupBar:
+ for i in range(100):
+ standardDF = setup.setVideoBitDepth(bitDepth)
+ setupBar.update(i)
+ setup.inputCheck(inputPath)
+ setupBar.update(i)
+ outputLocation = setup.outputCheck(inputPath, outputPath)
+ setupBar.update(i)
+ inputFileType = setup.setInputFileType(inputPath)
+print("***Setup Complete***")
+
+print("***Parsing File Video***")
+
+if inputFileType == "JSON":
+ with progressbar.ProgressBar(max_value=100) as parsingBar:
+ for i in range(100):
+ # audiodata = dataparsing.dataparsingandtabulatingaudioJSON(inputPath)
+ parsingBar.update(i)
+ videodata = dataparsing.dataparsingandtabulatingvideoJSON(inputPath)
+else:
+ with progressbar.ProgressBar(max_value=100) as parsingBar:
+ for i in range(100):
+ # audiodata = dataparsing.dataparsingandtabulatingaudioXML(inputPath)
+ parsingBar.update(i)
+ videodata = dataparsing.dataparsingandtabulatingvideoXML(inputPath)
+print("***Parsing complete***")
+
+print("***Generating Full Video Descriptive Statistics***")
+sumdatavideo = dataparsing.videodatastatistics(videodata)
+# sumdataaudio = dataparsing.audiodatastatistics(audiodata)
+sumdatavideocsv = dataparsing.videostatsdftocsv(sumdatavideo)
+# sumdataaudiocsv = dataparsing.audiostatstocsv(sumdataaudio)
+print("***Generated Full Video Descriptive Statistics***")
+
+print("***Analysing Full Video Descriptive Statistics***")
+overallStatistics.runOverallVideo(standardDF, sumdatavideo)
+print("***Generated report for full video descriptive statistics***")
+
+print("***Analyzing video for frame by frame statistics***")
+frameerrors = framebyframestatistics.runfbyfanalysis(standardDF, videodata)
+framebyframestatistics.dictodftojson(frameerrors)
+print("***Analyzed frame by frame video statisitics***")
diff --git a/nulrdcscripts/vqc/README.md b/nulrdcscripts/vqc/README.md
new file mode 100644
index 0000000..8b82808
--- /dev/null
+++ b/nulrdcscripts/vqc/README.md
@@ -0,0 +1,118 @@
+Version Date: 10/30/2023
+
+Document Owner: Sophia Francis
+
+Software Used: Terminal or Command Prompt, VSCode (optional), QCTools (requires the output files not the software itself), Excel (or other CSV reader if accessing CSV file)
+
+Packages required (also see .toml file): pandas, lxml, beautifulsoup4, tabulate, json, os,
+
+Description:
+This document provides information about running the QC Script and what information is required in order to do so.
+
+## Important information:
+
+If you are planning on running this in batch form (one folder with multiple xml files), make sure that if there are a mix of black and white videos and color videos, they are in separate folders and run separately to ensure the proper tests get run.
+
+### Changing Value ranges:
+If you want to edit the value ranges that are used, then you can edit the CSVs Video8BitValues and Video10BitValues. However, caution must be used as these are used in equations throughout the script. I _do not_ recommend this.
+
+### _Regarding the YAvg reporting_:
+
+There are no ranges that are supplied for YAvg in the QCTools documentation. I have tried my best to modify the values that are from UAvg and Vavg, if there is a more correct range, please contact me (Sophia) at repository@northwestern.edu.
+
+### _Regarding Summarization Stats from QCTools:_
+
+Due to the nature of the summarization stats from the QCTools worksheet, these have been adapted so that they are less likely to incur skewing due to framecount (this concept has been communicated a developer of QCTools.) That being said, in order to see the documentation about how these numbers came to be see [this](docs/summarizationStats.md) document. If you have any better values for these statistics, please contact me (Sophia) at repository@northwestern.edu
+
+## Running with Parser (still in development - not functional):
+
+### 1. Drag and drop the run.py file into the terminal
+### 2. Locate your file or file folder path:
+
+For this example I will be using:
+- example.xml as the file version
+- /files/example.xml as the filepath version
+
+### 3. Type --input or -i (they do the same thing) followed by your file or folder path
+
+```
+run.py --input example.xml
+```
+```
+run.py -i /files/example.xml
+```
+### 4. Depending on whether or not you are running a black and white video or a color video, different processes should be run. To select:
+- Use ```--blackwhite``` or ```-bw``` for black and white video
+- Use ```--color``` or ```-c``` for color video
+
+Adding to the first example in step 3, these options would look like this:
+
+#### Black and white video
+
+```
+run.py --input example.xml --blackandwhite
+```
+```
+run.py --input example.xml -bw
+```
+
+#### Color video
+
+```
+run.py --input example.xml --color
+```
+```
+run.py --input example.xml -c
+```
+
+### 5. Depending on what bitdepth you are utilizing, different values need to be used. To select:
+
+- Use ```--10bit``` or ```-10``` for 10 Bit video
+
+- Use ```--8bit``` or ```-8``` for 8 Bit Video
+
+Adding to the example above, for a color video this would look like:
+
+#### 10 Bit Video
+
+```
+run.py --input example.xml --color --10bit
+```
+```
+run.py --input example.xml --color -10
+```
+
+#### 8 Bit Video
+
+```
+run.py --input example.xml --color --8bit
+```
+```
+run.py --input example.xml --color -8
+```
+
+
+
+## Many thanks to the contributers to this project:
+
+Alec Bertoy
+
+Dan Zellner
+
+Morgan Morel
+
+Brendan Coates
+
+Ben Turkus
+
+Dave Rice
+
+
+
+## Some of the reference material utilized:
+
+_Python for Data Analytics - Wes McKinney_
+_Python Data Analytics: With Pandas, NumPy, and Matplotlib_ - Fabio Nelli
+_Practical Python Data Wrangling and Data Quality_ - Susan E. McGregor
+_Data Wrangling with Python_ - Jacqueline Kazil, Katharine Jarmul
+_How to convert an XML file to python pandas dataframe - reading xml with python_ - Paris Nakita Kejser - https://www.youtube.com/watch?v=WWgiRkvl1Ws&ab_channel=ParisNakitaKejser
\ No newline at end of file
diff --git a/nulrdcscripts/vqc/Video10BitValues.csv b/nulrdcscripts/vqc/Video10BitValues.csv
new file mode 100644
index 0000000..f3aa868
--- /dev/null
+++ b/nulrdcscripts/vqc/Video10BitValues.csv
@@ -0,0 +1,17 @@
+criteria,brngout,clipping,avglow,avghigh,brnglimit,clippinglimit,illegal,ideal,max
+ylow,64,0,,,,,,,
+yhigh,940,1023,,,,,,,
+yavg,,,321,682,,,,,
+ulow,64,0,,,,,,,
+uhigh,960,1023,,,,,,,
+uavg,,,341,682,,,,,
+vlow,64,0,,,,,,,
+vhigh,960,1023,,,,,,,
+vavg,,,341,682,,,,,
+tout,,,,,,,,0,0.009
+vrep,,,,,,,,0,0.03
+brng,,,,,,,,0,1
+sat,,,,,354.8,472.8,724.08,,
+msef,,,,,,,,0,
+psnrideal,,,,,30,,50,,
+psnrmax,,,,,0,,60,,
diff --git a/nulrdcscripts/vqc/Video8BitValues.csv b/nulrdcscripts/vqc/Video8BitValues.csv
new file mode 100644
index 0000000..00af05e
--- /dev/null
+++ b/nulrdcscripts/vqc/Video8BitValues.csv
@@ -0,0 +1,17 @@
+criteria,brngout,clipping,avglow,avghigh,brnglimit,clippinglimit,illegal,ideal,max
+ylow,16,0,,,,,,,
+yhigh,235,255,,,,,,,
+yavg,,,80,170,,,,,
+ulow,16,0,,,,,,,
+uhigh,240,255,,,,,,,
+uavg,,,85,170,,,,,
+vlow,16,0,,,,,,,
+vhigh,240,255,,,,,,,
+vavg,,,85,170,,,,,
+tout,,,,,,,,0,0.009
+vrep,,,,,,,,0,0.03
+brng,,,,,,,,0,1
+sat,,,,,88.7,118.2,181.02,,
+msef,,,,,,,,0,
+psnrideal,,,,,,,,30,50
+psnrmax,,,,,,,,0,60
diff --git a/nulrdcscripts/vqc/__init__.py b/nulrdcscripts/vqc/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/nulrdcscripts/vqc/argparser.py b/nulrdcscripts/vqc/argparser.py
new file mode 100644
index 0000000..548b7f4
--- /dev/null
+++ b/nulrdcscripts/vqc/argparser.py
@@ -0,0 +1,51 @@
+#!/usr/bin/env python3
+import argparse
+
+parser = argparse.ArgumentParser(
+ description="Allows input of files for video analysis statistics for automated quality control"
+)
+
+parser.add_argument(
+ "--input",
+ "-i",
+ action="store",
+ dest="input_path",
+ required=True,
+ type=str,
+ help="Enter the full path to input file folder",
+)
+
+parser.add_argument(
+ "--output",
+ "-o",
+ action="store",
+ dest="output_path",
+ default="",
+ type=str,
+ help="Enter the full path to where you want your output files",
+)
+
+# This may actually be able to come directly from video
+parser.add_argument(
+ "--videobitdepth",
+ "-vbd",
+ choices=["10", "10bit", "10Bit", "8", "8bit", "8Bit"],
+ action="store",
+ default="10bit",
+ dest="videobitdepth",
+ required=True,
+ type=str,
+ help="Use to specify what bit depth your video is",
+)
+
+# Need to add one for B/W or Color video option
+
+parser.add_argument(
+ "--videotype",
+ "-vt",
+ choices=["bw", "blackandwhite", "co", "color"],
+ action="store",
+ dest="videotype",
+ help="Tells script what video type to run: black and white or color",
+)
+args = parser.parse_args()
diff --git a/nulrdcscripts/vqc/cleaners.py b/nulrdcscripts/vqc/cleaners.py
new file mode 100644
index 0000000..ca28c45
--- /dev/null
+++ b/nulrdcscripts/vqc/cleaners.py
@@ -0,0 +1,44 @@
+def criteriacleaner(criteria):
+ criteriaclean1 = criteria.replace("lavfi.astats", "")
+ criteriaclean2 = criteriaclean1.replace("lavfi.", "")
+ criteriaclean3 = criteriaclean2.replace("signalstats.", "")
+ criteriaclean4 = criteriaclean3.replace(".", " ")
+ cleanedcriteria = criteriaclean4.replace("_", " ")
+ cleanCriteria = cleanedcriteria.lower()
+ return cleanCriteria
+
+
+# Makes the criteria more legible so that it can be strung together later for a easy interpretation without relying on acronyms
+
+
+def cleanCriteria(criteria):
+ for i in criteria:
+ if criteria.contains("MIN"):
+ criteria = criteria.replace("MIN", "minimum")
+ elif criteria.contains("LOW"):
+ criteria = criteria.lower()
+ elif criteria.contains("AVG"):
+ criteria = criteria.replace("AVG", "average")
+ elif criteria.contains("HIGH"):
+ criteria = criteria.lower()
+ elif criteria.contains("MAX"):
+ criteria = criteria("maximum")
+
+ if criteria.contains("Y"):
+ criteria = criteria.replace("Y", "Y ")
+ # U has to use the startswith method instead as otherwise it will replace the U in TOUT which is not wanted
+ elif criteria.startswith("U"):
+ criteria = criteria.replace("U", "U ")
+ # V has to use the startswith method instead as otherwise it will replace the V in VREP which is not wanted
+ elif criteria.startswith("V"):
+ criteria = criteria.replace("V", "V ")
+ elif criteria.contains("BRNG"):
+ criteria = criteria.replace("BRNG", "Broadcasting Range ")
+ elif criteria.contains("TOUT"):
+ criteria = criteria.replace("TOUT", "Temporal Outliers ")
+ elif criteria.contains("SAT"):
+ criteria = criteria.replace("SAT", "Saturation")
+ elif criteria.conains("VREP"):
+ criteria = criteria.replace("VREP", "Vertical Line Repetitions")
+
+ return criteria
diff --git a/nulrdcscripts/vqc/dataparsing.py b/nulrdcscripts/vqc/dataparsing.py
new file mode 100644
index 0000000..734ae32
--- /dev/null
+++ b/nulrdcscripts/vqc/dataparsing.py
@@ -0,0 +1,87 @@
+import pandas as pd
+from nulrdcscripts.vqc import cleaners
+import xml.etree.ElementTree as etree
+import os
+
+
+def dataparsingandtabulatingaudioXML(inputPath):
+ """Cleans and parses the audio data from XML for analysis. Returns dataframe."""
+ audiodata = {}
+ framenumberA = 0
+ for event, elem in etree.iterparse(inputPath, events=["end"]):
+ if event == "end":
+ if elem.tag == "frame":
+ if elem.get("media_type") == "audio":
+ framenumberA = framenumberA + 1
+ frametime = elem.get("pkt_pts_time")
+ audiodata[framenumberA] = {}
+ for tag in elem.iter("tag"):
+ criteria = tag.attrib["key"]
+ criteria = cleaners.criteriacleaner(criteria)
+ value = tag.attrib["value"]
+ audiodata[framenumberA]["Frame Time"] = float(frametime)
+ audiodata[framenumberA][criteria] = value
+ elem.clear()
+ dfAudio = pd.DataFrame.from_dict(audiodata)
+ dfAudio = dfAudio.transpose()
+ dfAudio.to_csv("audiodata.csv", index=True)
+ return dfAudio
+
+
+def dataparsingandtabulatingvideoXML(inputPath):
+ """Cleans and parses the video data from XML for analysis. Returns dataframe and generates csv."""
+ videodata = {}
+ framenumberV = 0
+
+ for event, elem in etree.iterparse(inputPath, events=["end"]):
+ if event == "end":
+ if elem.tag == "frame":
+ if elem.get("media_type") == "video":
+ framenumberV = framenumberV + 1
+ frametime = elem.get("pts_time")
+ videodata[framenumberV] = {}
+ for tag in elem.iter("tag"):
+ criteria = tag.attrib["key"]
+ criteria = cleaners.criteriacleaner(criteria)
+ value = tag.attrib["value"]
+ videodata[framenumberV]["Frame Time"] = float(frametime)
+ videodata[framenumberV][criteria] = float(value)
+ elem.clear()
+ dfVideo = pd.DataFrame.from_dict(videodata)
+ dfVideo = dfVideo.transpose()
+ videodataDF = dfVideo.to_csv("videodata.csv", index=True)
+ return dfVideo
+
+
+def videodatastatistics(videodata):
+ """Generates descriptive video statistics for the entire video in a dataframe"""
+ videostatsDSDF = videodata.describe()
+ return videostatsDSDF
+
+
+def audiodatastatistics(audiodata):
+ """Generates descriptive audio statistics for the entire video in a dataframe"""
+ audiodataDSDF = audiodata.describe()
+ return audiodataDSDF
+
+
+def videostatsdftocsv(videoDSDF):
+ """Takes video descriptive statistics and puts them into a csv file"""
+ summarydatavideocsv = videoDSDF.to_csv("videosummarystats.csv", index=True)
+ return summarydatavideocsv
+
+
+def audiostatsdftocsv(audioDSDF):
+ """Takes audio descriptive statistics and puts them into a csv file."""
+ summarydataaudiocsv = audioDSDF.to_csv("audiosummarystats.csv", index=True)
+ return summarydataaudiocsv
+
+
+def rawvideodatatocsv(videodata):
+ videodatacsv = videodata.to_csv("videodata.csv", index=True)
+
+
+input_path = os.path.abspath(
+ "Z:\RDC\SCRATCH\sophiatestfiles\\test_badLevels\\test\\badlevels2\\p\\badlevels2_signalstats.xml"
+)
+dataparsingandtabulatingvideoXML(input_path)
diff --git a/nulrdcscripts/vqc/file.py b/nulrdcscripts/vqc/file.py
new file mode 100644
index 0000000..4ca1fba
--- /dev/null
+++ b/nulrdcscripts/vqc/file.py
@@ -0,0 +1,30 @@
+import dataparsing
+
+inputpath = "Z:\\RDC\\SCRATCH\\sophiatestfiles\\test_badLevels\\test\\badlevels2\\a\\badlevels2_a_framebyframe.xml"
+
+
+def runIndividualFile(inputpath):
+ # Parses the raw XML into individual readings by frame (determined by frametime)
+ videodata = dataparsing.dataparsingandtabulatingvideoXML(inputpath)
+ audiodata = dataparsing.dataparsingandtabulatingaudioXML(inputpath)
+
+ # videodataCSV = dataparsing.videostatsdftocsv(videodata)
+ # Collects the video summary data - outputs CSV and Dictionary
+ videostats = dataparsing.rawvideodatatocsv(videodata)
+
+ # videofeedtodict = dataparsing.videostatstodict(videostats)
+
+ # Collects the audio summary data - outputs CSV and Dictionary
+ # audiostats = overallstatistics.audiodatastatistics(audiodata)
+
+ # audiofeedtodict = overallstatistics.audiostatstodict(audiostats)
+ # audiofeedtocsv = overallstatistics.audiostatstocsv(audiostats)
+
+ # Video analysis for summary report
+ # summaryvideoerrors = videoanalysis.checkAllVideo(videostats, videoBitDepth)
+
+ # Assigns errors to tiers for verbose reporting
+ # errortiers.errorsvideo(summaryvideoerrors)
+
+
+runIndividualFile(inputpath)
diff --git a/nulrdcscripts/vqc/fix.py b/nulrdcscripts/vqc/fix.py
new file mode 100644
index 0000000..0baaed7
--- /dev/null
+++ b/nulrdcscripts/vqc/fix.py
@@ -0,0 +1,142 @@
+import pandas as pd
+from tabulate import tabulate
+from nulrdcscripts.vqc import setup
+from nulrdcscripts.vqc.multiuse import (
+ setLevel,
+ setOperatorCL,
+ setOperatorIR,
+)
+
+frameerrors = {}
+videodata = "nulrdcscripts/vqc/testdata.csv"
+standard = 8
+
+standardDF = setup.setVideoBitDepth(standard)
+csvDF = pd.read_csv(videodata)
+
+
+def runyuvfbyfanalysis(standardDF, csvDF, fullCriteria, level, frame):
+ exVideoVal = csvDF.at[frame, fullCriteria]
+ exStandBRNG = standardDF.at[fullCriteria, "brngout"]
+ exStandClipping = standardDF.at[fullCriteria, "clipping"]
+ operatorIR = setOperatorIR(level)
+ equationIR = str(exVideoVal) + operatorIR + str(exStandBRNG)
+ tfIR = eval(equationIR)
+ if tfIR:
+ errors = {"Video Value": exVideoVal, "Pass/Fail": "Pass"}
+ else:
+ operatorCL = setOperatorCL(level)
+ equationCL = str(exVideoVal) + operatorCL + str(exStandClipping)
+ tfCL = eval(equationCL)
+ if tfCL:
+ errors = {
+ "Error Type": "Clipping",
+ "Video Value": exVideoVal,
+ "Standard Value": "above " + str(exStandBRNG),
+ "Pass/Fail": "Fail",
+ }
+ else:
+ errors = {
+ "Error Type": "Out of Broadcast Range",
+ "Video Value": exVideoVal,
+ "Standard Value": "above " + str(exStandBRNG),
+ "Pass/Fail": "Fail",
+ }
+ return errors
+
+
+def runfbyfyuv(standardDF, csvDF, frame):
+ criteria = ["y", "u", "v"]
+ levels = ["low", "high"]
+ errors = {}
+ for fullCriteria in (f"{c}{l}" for c in criteria for l in levels):
+ level = setLevel(fullCriteria)
+ errorCriteria = str(fullCriteria)
+ errors[errorCriteria] = runyuvfbyfanalysis(
+ standardDF, csvDF, fullCriteria, level, frame
+ )
+ return errors
+
+
+def runfbyfsat(standardDF, csvDF, frame):
+ errors = {}
+ criteria = "sat"
+ leveltoCheck = "max"
+ fullCriteria = criteria + leveltoCheck
+ exVideoVal = csvDF.at[frame, fullCriteria]
+ exBRNG = standardDF.at[criteria, "brnglimit"]
+ exClipping = standardDF.at[criteria, "clippinglimit"]
+ exIllegal = standardDF.at[criteria, "illegal"]
+ if exVideoVal <= exBRNG:
+ errors[fullCriteria] = {"Video Values": exVideoVal, "Pass/Fail": "Pass"}
+ else:
+ if exVideoVal >= exIllegal:
+ errors[fullCriteria] = {
+ "Error Type": "Illegal",
+ "Video Value": exVideoVal,
+ "Standard Value": exIllegal,
+ "Pass/Fail": "Fail",
+ }
+ # error = errortuple("illegal",fullCriteria, extractSumData, extractStandDataIllegal)
+ else:
+ errors[fullCriteria] = {
+ "Error Type": "Clipping",
+ "Video Value": exVideoVal,
+ "Standard Value": exClipping,
+ "Pass/Fail": "Fail",
+ }
+ # error = errortuple("clipping", fullCriteria, extractSumData,extractStandDataClipping)
+ return errors
+
+
+def runTOUTandVREPanalysis(standardDF, csvDF, frame):
+ criteria = ["tout", "vrep"]
+ for c in criteria:
+ level = "max"
+ exVideoVal = csvDF.at[frame, c]
+ exStandMax = standardDF.at[c, level]
+ errors = runfbyfToutVrep(exStandMax, exVideoVal, c)
+ return errors
+
+
+def runfbyfToutVrep(exStandMax, exVideoVal, criteria):
+ errors = {}
+ if exVideoVal >= exStandMax:
+ errors[criteria] = {
+ "Error Type": "Exceeds Standard",
+ "Video Value": exVideoVal,
+ "Standard Value": exStandMax,
+ "Pass/Fail": "Fail",
+ }
+ else:
+ errors[criteria] = {"Video Value": exVideoVal, "Pass/Fail": "Pass"}
+ return errors
+
+
+def joindict(errors, errorsSat, errorsTOUTVREP):
+ errors.update(errorsSat)
+ errors.update(errorsTOUTVREP)
+ return errors
+
+
+def runfbyfanalysis(standardDF, csvDF):
+ frameerrors.clear()
+ frame = 1
+ videodataDFlen = len(csvDF)
+ while frame <= (videodataDFlen - 1):
+ errors = runfbyfyuv(standardDF, csvDF, frame)
+ errorsSat = runfbyfsat(standardDF, csvDF, frame)
+ errorsTOUTVREP = runTOUTandVREPanalysis(standardDF, csvDF, frame)
+ frameerrors[frame] = joindict(errors, errorsSat, errorsTOUTVREP)
+ frame += 1
+ return frameerrors
+
+
+def dictodftojson(frameerrors):
+
+ df = pd.DataFrame.from_dict(frameerrors, orient="index")
+ print(tabulate(df))
+
+
+frameerrors = runfbyfanalysis(standardDF, csvDF)
+dictodftojson(frameerrors)
diff --git a/nulrdcscripts/vqc/folder.py b/nulrdcscripts/vqc/folder.py
new file mode 100644
index 0000000..78c403c
--- /dev/null
+++ b/nulrdcscripts/vqc/folder.py
@@ -0,0 +1,32 @@
+from pathlib import Path
+from parseandclean import dataparsing
+from videoanalysis import errortiers, fbyfYUV, overallstatistics, videoanalysis
+
+
+def runBulkFolder(inputpath, videoBitDepth):
+ # Parses the raw XML into individual readings by frame (determined by frametime)
+ videodata = dataparsing.dataparsingandtabulatingvideo(inputpath)
+ audiodata = dataparsing.dataparsingandtabulatingaudio(inputpath)
+
+ # Video analysis frame by frame
+ fbferrors = fbyfYUV.checkerrors(videodata, videoBitDepth)
+
+ # Collects the video summary data - outputs CSV and Dictionary
+ videostats = overallstatistics.videodatastatistics(videodata)
+
+ videofeedtodict = overallstatistics.videostatstodict(videostats)
+ videofeedtocsv = overallstatistics.videostatstocsv(videostats)
+
+ # Collects the audio summary data - outputs CSV and Dictionary
+ audiostats = overallstatistics.audiodatastatistics(audiodata)
+
+ audiofeedtodict = overallstatistics.audiostatstodict(audiostats)
+ audiofeedtocsv = overallstatistics.audiostatstocsv(audiostats)
+
+ # Video analysis for summary report
+ summaryvideoerrors = videoanalysis.checkAllVideo(videostats, videoBitDepth)
+
+ # Assigns errors to tiers for verbose reporting
+ errortiers.errorsvideo(summaryvideoerrors)
+
+ file = file + 1
diff --git a/nulrdcscripts/vqc/framebyframestatistics.py b/nulrdcscripts/vqc/framebyframestatistics.py
new file mode 100644
index 0000000..1a50040
--- /dev/null
+++ b/nulrdcscripts/vqc/framebyframestatistics.py
@@ -0,0 +1,137 @@
+import pandas as pd
+from tabulate import tabulate
+from nulrdcscripts.vqc.multiuse import (
+ setLevel,
+ setOperatorCL,
+ setOperatorIR,
+)
+
+frameerrors = {}
+
+
+def runyuvfbyfanalysis(standardDF, videodata, fullCriteria, level, frame):
+ exVideoVal = videodata.at[frame, fullCriteria]
+ exStandBRNG = standardDF.at[fullCriteria, "brngout"]
+ exStandClipping = standardDF.at[fullCriteria, "clipping"]
+ operatorIR = setOperatorIR(level)
+ equationIR = str(exVideoVal) + operatorIR + str(exStandBRNG)
+ tfIR = eval(equationIR)
+ if tfIR:
+ errors = {"Video Value": exVideoVal, "Pass/Fail": "Pass"}
+ else:
+ operatorCL = setOperatorCL(level)
+ equationCL = str(exVideoVal) + operatorCL + str(exStandClipping)
+ tfCL = eval(equationCL)
+ if tfCL:
+ errors = {
+ "Error Type": "Clipping",
+ "Video Value": exVideoVal,
+ "Standard Value": "above " + str(exStandBRNG),
+ "Pass/Fail": "Fail",
+ }
+ else:
+ errors = {
+ "Error Type": "Out of Broadcast Range",
+ "Video Value": exVideoVal,
+ "Standard Value": "above " + str(exStandBRNG),
+ "Pass/Fail": "Fail",
+ }
+ return errors
+
+
+def runfbyfyuv(standardDF, videodata, frame):
+ criteria = ["y", "u", "v"]
+ levels = ["low", "high"]
+ errors = {}
+ for fullCriteria in (f"{c}{l}" for c in criteria for l in levels):
+ level = setLevel(fullCriteria)
+ errorCriteria = str(fullCriteria)
+ errors[errorCriteria] = runyuvfbyfanalysis(
+ standardDF, videodata, fullCriteria, level, frame
+ )
+ return errors
+
+
+def runfbyfsat(standardDF, videodata, frame):
+ errors = {}
+ criteria = "sat"
+ leveltoCheck = "max"
+ fullCriteria = criteria + leveltoCheck
+ exVideoVal = videodata.at[frame, fullCriteria]
+ exBRNG = standardDF.at[criteria, "brnglimit"]
+ exClipping = standardDF.at[criteria, "clippinglimit"]
+ exIllegal = standardDF.at[criteria, "illegal"]
+ if exVideoVal <= exBRNG:
+ errors[fullCriteria] = {"Video Values": exVideoVal, "Pass/Fail": "Pass"}
+ else:
+ if exVideoVal >= exIllegal:
+ errors[fullCriteria] = {
+ "Error Type": "Illegal",
+ "Video Value": exVideoVal,
+ "Standard Value": exIllegal,
+ "Pass/Fail": "Fail",
+ }
+ # error = errortuple("illegal",fullCriteria, extractSumData, extractStandDataIllegal)
+ else:
+ errors[fullCriteria] = {
+ "Error Type": "Clipping",
+ "Video Value": exVideoVal,
+ "Standard Value": exClipping,
+ "Pass/Fail": "Fail",
+ }
+ # error = errortuple("clipping", fullCriteria, extractSumData,extractStandDataClipping)
+ return errors
+
+
+def runTOUTandVREPanalysis(standardDF, videodata, frame):
+ criteria = ["tout", "vrep"]
+ for c in criteria:
+ level = "max"
+ exVideoVal = videodata.at[frame, c]
+ exStandMax = standardDF.at[c, level]
+ errors = runfbyfToutVrep(exStandMax, exVideoVal, c)
+ return errors
+
+
+def runfbyfToutVrep(exStandMax, exVideoVal, criteria):
+ errors = {}
+ if exVideoVal >= exStandMax:
+ errors[criteria] = {
+ "Error Type": "Exceeds Standard",
+ "Video Value": exVideoVal,
+ "Standard Value": exStandMax,
+ "Pass/Fail": "Fail",
+ }
+ else:
+ errors[criteria] = {"Video Value": exVideoVal, "Pass/Fail": "Pass"}
+ return errors
+
+
+def joindict(errors, errorsSat, errorsTOUTVREP):
+ errors.update(errorsSat)
+ errors.update(errorsTOUTVREP)
+ return errors
+
+
+def runfbyfanalysis(standardDF, videodata):
+ frame = 1
+ videodataDFlen = len(videodata)
+ while frame <= (videodataDFlen - 1):
+ errors = runfbyfyuv(standardDF, videodata, frame)
+ errorsSat = runfbyfsat(standardDF, videodata, frame)
+ errorsTOUTVREP = runTOUTandVREPanalysis(standardDF, videodata, frame)
+ frameerrors[frame] = joindict(errors, errorsSat, errorsTOUTVREP)
+ frame += 1
+ return frameerrors
+
+
+def dictodftojson(frameerrors):
+
+ frameerrorsDF = pd.DataFrame.from_dict(frameerrors)
+ with pd.option_context("display.max_rows", 20):
+ print(tabulate(frameerrorsDF, headers="key", tablefmt="psql"))
+
+
+# framefails = frameerrorsDF[frameerrorsDF["Pass/Fail"] == "Fail"]
+# jsonframefails = framefails.to_json("samplefbyf.json", orient="table")
+# return jsonframefails
diff --git a/nulrdcscripts/vqc/multiuse.py b/nulrdcscripts/vqc/multiuse.py
new file mode 100644
index 0000000..2174be5
--- /dev/null
+++ b/nulrdcscripts/vqc/multiuse.py
@@ -0,0 +1,33 @@
+def setOperatorIR(level):
+ """Sets the operator to assess if video value is in range"""
+ if level == ("low"):
+ operatorIR = ">"
+ else:
+ operatorIR = "<"
+ return operatorIR
+
+
+def setOperatorCL(level):
+ """Sets operator to use to assess clipping"""
+ if level == ("low"):
+ operatorCL = "<="
+ else:
+ operatorCL = ">="
+ return operatorCL
+
+
+def setLevel(fullCriteria):
+ boollevel = fullCriteria.endswith("high")
+ if boollevel:
+ level = "high"
+ else:
+ level = "low"
+ return level
+
+
+def setLeveltoCheck(level):
+ if level == "high":
+ leveltoCheck = "max"
+ else:
+ leveltoCheck = "min"
+ return leveltoCheck
diff --git a/nulrdcscripts/vqc/output/output.py b/nulrdcscripts/vqc/output/output.py
new file mode 100644
index 0000000..e224b56
--- /dev/null
+++ b/nulrdcscripts/vqc/output/output.py
@@ -0,0 +1,12 @@
+from jinja2 import Template as temp
+
+values = ["clipping","illegal","brng","Exceeds Standards"]
+v=0
+
+def fullvideoSVR (errors):
+ ylpassfail = errors[ylow]["Pass/Fail"]
+ ylVideoValue == errors[ylow]["Video Value"]
+ if ylpassfail == "Pass":
+ pass
+ else:
+ ylVideoValue
\ No newline at end of file
diff --git a/nulrdcscripts/vqc/output/output.txt b/nulrdcscripts/vqc/output/output.txt
new file mode 100644
index 0000000..ee0f27e
--- /dev/null
+++ b/nulrdcscripts/vqc/output/output.txt
@@ -0,0 +1,39 @@
+Date: {pl_date}
+Your video {pl_filename}, contains the following errors:
+
+YLow {pl_ylpassfail}:
+ Error Type: {pl_ylerrorType}
+ Video Value: {pl_ylVideoValue}
+
+YHigh {pl_yhpassfail}:
+ Error Type: {pl_yherrorType}
+ Video Value: {pl_yhVideoValue}
+
+
+ULow {pl_ulpassfail}:
+ Error Type: {pl_ulerrorType}
+ Video Value: {pl_ulVideoValue}
+
+UHigh {pl_uhpassfail}:
+ Error Type: {pl_uherrorType}
+ Video Value: {pl_uhVideoValue}
+
+VLow {pl_vlpassfail}:
+ Error Type: {pl_vlerrorType}
+ Video Value: {pl_vlVideoValue}
+
+VHigh {pl_vhpassfail}:
+ Error Type: {pl_vherrorType}
+ Video Value: {pl_vhVideoValue}
+
+SAT {pl_satpassfail}:
+ Error Type: {pl_saterrorType}
+ Video Value: {pl_satVideoValue}
+
+TOUT {pl_toutpassfail}:
+ Error Type: {pl_touterrorType}
+ Video Value: {pl_toutVideoValue}
+
+VREP {pl_vreppassfail}:
+ Error Type: {pl_vreperrorType}
+ Video Value: {pl_vrepVideoValue}
\ No newline at end of file
diff --git a/nulrdcscripts/vqc/overallStatistics.py b/nulrdcscripts/vqc/overallStatistics.py
new file mode 100644
index 0000000..d533741
--- /dev/null
+++ b/nulrdcscripts/vqc/overallStatistics.py
@@ -0,0 +1,123 @@
+import pandas as pd
+import progressbar
+import json
+from nulrdcscripts.vqc.multiuse import (
+ setLevel,
+ setOperatorCL,
+ setOperatorIR,
+ setLeveltoCheck,
+)
+
+# errortuple = namedtuple("Error", ["type", "criteria", "video value", "standard value"])
+
+errors = {}
+
+
+def runyuvanalysis(standardDF, sumdatavideo, fullCriteria, level):
+ leveltoCheck = setLeveltoCheck(level)
+ extractSumData = sumdatavideo.at[leveltoCheck, fullCriteria]
+ extractStandDataBRNG = standardDF.at[fullCriteria, "brngout"]
+ extractStandDataClipping = standardDF.at[fullCriteria, "clipping"]
+ operatorIR = setOperatorIR(level)
+ equationIR = str(extractSumData) + operatorIR + str(extractStandDataBRNG)
+ tfIR = eval(equationIR)
+ if tfIR:
+ errors = {"Video Value": extractSumData, "Pass/Fail": "Pass"}
+ else:
+ operatorCL = setOperatorCL(level)
+ equationCL = str(extractSumData) + operatorCL + str(extractStandDataClipping)
+ tfCL = eval(equationCL)
+ if tfCL:
+ errors = {
+ "Error Type": "Clipping",
+ "Video Value": extractSumData,
+ "Standard Value": extractStandDataClipping,
+ "Pass/Fail": "Fail",
+ }
+ # error = errortuple("clipping",fullCriteria,extractSumData,extractStandDataClipping)
+ else:
+ errors = {
+ "Error Type": "Out of Broadcasting Range",
+ "Video Value": extractSumData,
+ "Standard Value": extractStandDataBRNG,
+ "Pass/Fail": "Fail",
+ }
+ # error = errortuple("brngout",fullCriteria,extractSumData,extractStandDataBRNG)
+ return errors
+
+
+def runcheckyuv(standardDF, sumdatavideo):
+ """Runs the yuvchecks by looping through each yuv value and then the level that is being checked. Returns errors."""
+ criteria = ["y", "u", "v"]
+ levels = ["low", "high"]
+ for fullCriteria in (f"{c}{l}" for c in criteria for l in levels):
+ level = setLevel(fullCriteria)
+ errorcriteria = str(fullCriteria)
+ errors[errorcriteria] = runyuvanalysis(
+ standardDF, sumdatavideo, fullCriteria, level
+ )
+ return errors
+
+
+def runsatanalysis(standardDF, sumdatavideo):
+ """Runs the saturation max value to see if the value is in range, out of broadcasting range,or illegal"""
+ criteria = "sat"
+ leveltoCheck = "max"
+ fullCriteria = criteria + leveltoCheck
+ extractSumData = sumdatavideo.at[leveltoCheck, fullCriteria]
+ extractStandDataBRNG = standardDF.at[criteria, "brnglimit"]
+ extractStandDataClipping = standardDF.at[criteria, "clippinglimit"]
+ extractStandDataIllegal = standardDF.at[criteria, "illegal"]
+ if extractSumData <= extractStandDataBRNG:
+ errors[fullCriteria] = {"Video Values": extractSumData, "Pass/Fail": "Pass"}
+ else:
+ if extractSumData >= extractStandDataIllegal:
+ errors[fullCriteria] = {
+ "Error Type": "Illegal",
+ "Video Value": extractSumData,
+ "Standard Value": extractStandDataIllegal,
+ "Pass/Fail": "Fail",
+ }
+ # error = errortuple("illegal",fullCriteria, extractSumData, extractStandDataIllegal)
+ else:
+ errors[fullCriteria] = {
+ "Error Type": "Clipping",
+ "Video Value": extractSumData,
+ "Standard Value": extractStandDataClipping,
+ "Pass/Fail": "Fail",
+ }
+ # error = errortuple("clipping", fullCriteria, extractSumData,extractStandDataClipping)
+ return errors
+
+
+def runTOUTandVREPanalysis(standardDF, sumdatavideo):
+ criterium = ["tout", "vrep"]
+ for criteria in criterium:
+ level = "max"
+ extractSumData = sumdatavideo.at[level, criteria]
+ extractStandDataMax = standardDF.at[criteria, level]
+ errors = toutVREPcheck(extractSumData, extractStandDataMax, criteria)
+ return errors
+
+
+def toutVREPcheck(extractSumData, extractStandDataMax, criteria):
+ if extractSumData >= extractStandDataMax:
+ errors[criteria] = {
+ "Error Type": "Exceeds Standard",
+ "Video Value": extractSumData,
+ "Standard Value": extractStandDataMax,
+ "Pass/Fail": "Fail",
+ }
+ else:
+ errors[criteria] = {"Video Value": extractSumData, "Pass/Fail": "Pass"}
+ return errors
+
+
+def runOverallVideo(standardDF, sumdatavideo):
+ errors.clear()
+
+ runcheckyuv(standardDF, sumdatavideo)
+ runsatanalysis(standardDF, sumdatavideo)
+ runTOUTandVREPanalysis(standardDF, sumdatavideo)
+ with open("sample.json", "w") as outfile:
+ json.dump(errors, outfile, indent=4)
diff --git a/nulrdcscripts/vqc/poetry.lock b/nulrdcscripts/vqc/poetry.lock
new file mode 100644
index 0000000..3846fd0
--- /dev/null
+++ b/nulrdcscripts/vqc/poetry.lock
@@ -0,0 +1,369 @@
+# This file is automatically @generated by Poetry 1.7.0 and should not be changed by hand.
+
+[[package]]
+name = "beautifulsoup4"
+version = "4.12.3"
+description = "Screen-scraping library"
+optional = false
+python-versions = ">=3.6.0"
+files = [
+ {file = "beautifulsoup4-4.12.3-py3-none-any.whl", hash = "sha256:b80878c9f40111313e55da8ba20bdba06d8fa3969fc68304167741bbf9e082ed"},
+ {file = "beautifulsoup4-4.12.3.tar.gz", hash = "sha256:74e3d1928edc070d21748185c46e3fb33490f22f52a3addee9aee0f4f7781051"},
+]
+
+[package.dependencies]
+soupsieve = ">1.2"
+
+[package.extras]
+cchardet = ["cchardet"]
+chardet = ["chardet"]
+charset-normalizer = ["charset-normalizer"]
+html5lib = ["html5lib"]
+lxml = ["lxml"]
+
+[[package]]
+name = "lxml"
+version = "4.9.4"
+description = "Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API."
+optional = false
+python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, != 3.4.*"
+files = [
+ {file = "lxml-4.9.4-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e214025e23db238805a600f1f37bf9f9a15413c7bf5f9d6ae194f84980c78722"},
+ {file = "lxml-4.9.4-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:ec53a09aee61d45e7dbe7e91252ff0491b6b5fee3d85b2d45b173d8ab453efc1"},
+ {file = "lxml-4.9.4-cp27-cp27m-win32.whl", hash = "sha256:7d1d6c9e74c70ddf524e3c09d9dc0522aba9370708c2cb58680ea40174800013"},
+ {file = "lxml-4.9.4-cp27-cp27m-win_amd64.whl", hash = "sha256:cb53669442895763e61df5c995f0e8361b61662f26c1b04ee82899c2789c8f69"},
+ {file = "lxml-4.9.4-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:647bfe88b1997d7ae8d45dabc7c868d8cb0c8412a6e730a7651050b8c7289cf2"},
+ {file = "lxml-4.9.4-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:4d973729ce04784906a19108054e1fd476bc85279a403ea1a72fdb051c76fa48"},
+ {file = "lxml-4.9.4-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:056a17eaaf3da87a05523472ae84246f87ac2f29a53306466c22e60282e54ff8"},
+ {file = "lxml-4.9.4-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:aaa5c173a26960fe67daa69aa93d6d6a1cd714a6eb13802d4e4bd1d24a530644"},
+ {file = "lxml-4.9.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:647459b23594f370c1c01768edaa0ba0959afc39caeeb793b43158bb9bb6a663"},
+ {file = "lxml-4.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:bdd9abccd0927673cffe601d2c6cdad1c9321bf3437a2f507d6b037ef91ea307"},
+ {file = "lxml-4.9.4-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:00e91573183ad273e242db5585b52670eddf92bacad095ce25c1e682da14ed91"},
+ {file = "lxml-4.9.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:a602ed9bd2c7d85bd58592c28e101bd9ff9c718fbde06545a70945ffd5d11868"},
+ {file = "lxml-4.9.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:de362ac8bc962408ad8fae28f3967ce1a262b5d63ab8cefb42662566737f1dc7"},
+ {file = "lxml-4.9.4-cp310-cp310-win32.whl", hash = "sha256:33714fcf5af4ff7e70a49731a7cc8fd9ce910b9ac194f66eaa18c3cc0a4c02be"},
+ {file = "lxml-4.9.4-cp310-cp310-win_amd64.whl", hash = "sha256:d3caa09e613ece43ac292fbed513a4bce170681a447d25ffcbc1b647d45a39c5"},
+ {file = "lxml-4.9.4-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:359a8b09d712df27849e0bcb62c6a3404e780b274b0b7e4c39a88826d1926c28"},
+ {file = "lxml-4.9.4-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:43498ea734ccdfb92e1886dfedaebeb81178a241d39a79d5351ba2b671bff2b2"},
+ {file = "lxml-4.9.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:4855161013dfb2b762e02b3f4d4a21cc7c6aec13c69e3bffbf5022b3e708dd97"},
+ {file = "lxml-4.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:c71b5b860c5215fdbaa56f715bc218e45a98477f816b46cfde4a84d25b13274e"},
+ {file = "lxml-4.9.4-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:9a2b5915c333e4364367140443b59f09feae42184459b913f0f41b9fed55794a"},
+ {file = "lxml-4.9.4-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:d82411dbf4d3127b6cde7da0f9373e37ad3a43e89ef374965465928f01c2b979"},
+ {file = "lxml-4.9.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:273473d34462ae6e97c0f4e517bd1bf9588aa67a1d47d93f760a1282640e24ac"},
+ {file = "lxml-4.9.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:389d2b2e543b27962990ab529ac6720c3dded588cc6d0f6557eec153305a3622"},
+ {file = "lxml-4.9.4-cp311-cp311-win32.whl", hash = "sha256:8aecb5a7f6f7f8fe9cac0bcadd39efaca8bbf8d1bf242e9f175cbe4c925116c3"},
+ {file = "lxml-4.9.4-cp311-cp311-win_amd64.whl", hash = "sha256:c7721a3ef41591341388bb2265395ce522aba52f969d33dacd822da8f018aff8"},
+ {file = "lxml-4.9.4-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:dbcb2dc07308453db428a95a4d03259bd8caea97d7f0776842299f2d00c72fc8"},
+ {file = "lxml-4.9.4-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:01bf1df1db327e748dcb152d17389cf6d0a8c5d533ef9bab781e9d5037619229"},
+ {file = "lxml-4.9.4-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:e8f9f93a23634cfafbad6e46ad7d09e0f4a25a2400e4a64b1b7b7c0fbaa06d9d"},
+ {file = "lxml-4.9.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:3f3f00a9061605725df1816f5713d10cd94636347ed651abdbc75828df302b20"},
+ {file = "lxml-4.9.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:953dd5481bd6252bd480d6ec431f61d7d87fdcbbb71b0d2bdcfc6ae00bb6fb10"},
+ {file = "lxml-4.9.4-cp312-cp312-win32.whl", hash = "sha256:266f655d1baff9c47b52f529b5f6bec33f66042f65f7c56adde3fcf2ed62ae8b"},
+ {file = "lxml-4.9.4-cp312-cp312-win_amd64.whl", hash = "sha256:f1faee2a831fe249e1bae9cbc68d3cd8a30f7e37851deee4d7962b17c410dd56"},
+ {file = "lxml-4.9.4-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:23d891e5bdc12e2e506e7d225d6aa929e0a0368c9916c1fddefab88166e98b20"},
+ {file = "lxml-4.9.4-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:e96a1788f24d03e8d61679f9881a883ecdf9c445a38f9ae3f3f193ab6c591c66"},
+ {file = "lxml-4.9.4-cp36-cp36m-macosx_11_0_x86_64.whl", hash = "sha256:5557461f83bb7cc718bc9ee1f7156d50e31747e5b38d79cf40f79ab1447afd2d"},
+ {file = "lxml-4.9.4-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:fdb325b7fba1e2c40b9b1db407f85642e32404131c08480dd652110fc908561b"},
+ {file = "lxml-4.9.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d74d4a3c4b8f7a1f676cedf8e84bcc57705a6d7925e6daef7a1e54ae543a197"},
+ {file = "lxml-4.9.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:ac7674d1638df129d9cb4503d20ffc3922bd463c865ef3cb412f2c926108e9a4"},
+ {file = "lxml-4.9.4-cp36-cp36m-manylinux_2_28_x86_64.whl", hash = "sha256:ddd92e18b783aeb86ad2132d84a4b795fc5ec612e3545c1b687e7747e66e2b53"},
+ {file = "lxml-4.9.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2bd9ac6e44f2db368ef8986f3989a4cad3de4cd55dbdda536e253000c801bcc7"},
+ {file = "lxml-4.9.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:bc354b1393dce46026ab13075f77b30e40b61b1a53e852e99d3cc5dd1af4bc85"},
+ {file = "lxml-4.9.4-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:f836f39678cb47c9541f04d8ed4545719dc31ad850bf1832d6b4171e30d65d23"},
+ {file = "lxml-4.9.4-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:9c131447768ed7bc05a02553d939e7f0e807e533441901dd504e217b76307745"},
+ {file = "lxml-4.9.4-cp36-cp36m-win32.whl", hash = "sha256:bafa65e3acae612a7799ada439bd202403414ebe23f52e5b17f6ffc2eb98c2be"},
+ {file = "lxml-4.9.4-cp36-cp36m-win_amd64.whl", hash = "sha256:6197c3f3c0b960ad033b9b7d611db11285bb461fc6b802c1dd50d04ad715c225"},
+ {file = "lxml-4.9.4-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:7b378847a09d6bd46047f5f3599cdc64fcb4cc5a5a2dd0a2af610361fbe77b16"},
+ {file = "lxml-4.9.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:1343df4e2e6e51182aad12162b23b0a4b3fd77f17527a78c53f0f23573663545"},
+ {file = "lxml-4.9.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:6dbdacf5752fbd78ccdb434698230c4f0f95df7dd956d5f205b5ed6911a1367c"},
+ {file = "lxml-4.9.4-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:506becdf2ecaebaf7f7995f776394fcc8bd8a78022772de66677c84fb02dd33d"},
+ {file = "lxml-4.9.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ca8e44b5ba3edb682ea4e6185b49661fc22b230cf811b9c13963c9f982d1d964"},
+ {file = "lxml-4.9.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:9d9d5726474cbbef279fd709008f91a49c4f758bec9c062dfbba88eab00e3ff9"},
+ {file = "lxml-4.9.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:bbdd69e20fe2943b51e2841fc1e6a3c1de460d630f65bde12452d8c97209464d"},
+ {file = "lxml-4.9.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8671622256a0859f5089cbe0ce4693c2af407bc053dcc99aadff7f5310b4aa02"},
+ {file = "lxml-4.9.4-cp37-cp37m-win32.whl", hash = "sha256:dd4fda67f5faaef4f9ee5383435048ee3e11ad996901225ad7615bc92245bc8e"},
+ {file = "lxml-4.9.4-cp37-cp37m-win_amd64.whl", hash = "sha256:6bee9c2e501d835f91460b2c904bc359f8433e96799f5c2ff20feebd9bb1e590"},
+ {file = "lxml-4.9.4-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:1f10f250430a4caf84115b1e0f23f3615566ca2369d1962f82bef40dd99cd81a"},
+ {file = "lxml-4.9.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:3b505f2bbff50d261176e67be24e8909e54b5d9d08b12d4946344066d66b3e43"},
+ {file = "lxml-4.9.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:1449f9451cd53e0fd0a7ec2ff5ede4686add13ac7a7bfa6988ff6d75cff3ebe2"},
+ {file = "lxml-4.9.4-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:4ece9cca4cd1c8ba889bfa67eae7f21d0d1a2e715b4d5045395113361e8c533d"},
+ {file = "lxml-4.9.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:59bb5979f9941c61e907ee571732219fa4774d5a18f3fa5ff2df963f5dfaa6bc"},
+ {file = "lxml-4.9.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:b1980dbcaad634fe78e710c8587383e6e3f61dbe146bcbfd13a9c8ab2d7b1192"},
+ {file = "lxml-4.9.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:9ae6c3363261021144121427b1552b29e7b59de9d6a75bf51e03bc072efb3c37"},
+ {file = "lxml-4.9.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:bcee502c649fa6351b44bb014b98c09cb00982a475a1912a9881ca28ab4f9cd9"},
+ {file = "lxml-4.9.4-cp38-cp38-win32.whl", hash = "sha256:a8edae5253efa75c2fc79a90068fe540b197d1c7ab5803b800fccfe240eed33c"},
+ {file = "lxml-4.9.4-cp38-cp38-win_amd64.whl", hash = "sha256:701847a7aaefef121c5c0d855b2affa5f9bd45196ef00266724a80e439220e46"},
+ {file = "lxml-4.9.4-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:f610d980e3fccf4394ab3806de6065682982f3d27c12d4ce3ee46a8183d64a6a"},
+ {file = "lxml-4.9.4-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:aa9b5abd07f71b081a33115d9758ef6077924082055005808f68feccb27616bd"},
+ {file = "lxml-4.9.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:365005e8b0718ea6d64b374423e870648ab47c3a905356ab6e5a5ff03962b9a9"},
+ {file = "lxml-4.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:16b9ec51cc2feab009e800f2c6327338d6ee4e752c76e95a35c4465e80390ccd"},
+ {file = "lxml-4.9.4-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:a905affe76f1802edcac554e3ccf68188bea16546071d7583fb1b693f9cf756b"},
+ {file = "lxml-4.9.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fd814847901df6e8de13ce69b84c31fc9b3fb591224d6762d0b256d510cbf382"},
+ {file = "lxml-4.9.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:91bbf398ac8bb7d65a5a52127407c05f75a18d7015a270fdd94bbcb04e65d573"},
+ {file = "lxml-4.9.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f99768232f036b4776ce419d3244a04fe83784bce871b16d2c2e984c7fcea847"},
+ {file = "lxml-4.9.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:bb5bd6212eb0edfd1e8f254585290ea1dadc3687dd8fd5e2fd9a87c31915cdab"},
+ {file = "lxml-4.9.4-cp39-cp39-win32.whl", hash = "sha256:88f7c383071981c74ec1998ba9b437659e4fd02a3c4a4d3efc16774eb108d0ec"},
+ {file = "lxml-4.9.4-cp39-cp39-win_amd64.whl", hash = "sha256:936e8880cc00f839aa4173f94466a8406a96ddce814651075f95837316369899"},
+ {file = "lxml-4.9.4-pp310-pypy310_pp73-macosx_11_0_x86_64.whl", hash = "sha256:f6c35b2f87c004270fa2e703b872fcc984d714d430b305145c39d53074e1ffe0"},
+ {file = "lxml-4.9.4-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:606d445feeb0856c2b424405236a01c71af7c97e5fe42fbc778634faef2b47e4"},
+ {file = "lxml-4.9.4-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:a1bdcbebd4e13446a14de4dd1825f1e778e099f17f79718b4aeaf2403624b0f7"},
+ {file = "lxml-4.9.4-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:0a08c89b23117049ba171bf51d2f9c5f3abf507d65d016d6e0fa2f37e18c0fc5"},
+ {file = "lxml-4.9.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:232fd30903d3123be4c435fb5159938c6225ee8607b635a4d3fca847003134ba"},
+ {file = "lxml-4.9.4-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:231142459d32779b209aa4b4d460b175cadd604fed856f25c1571a9d78114771"},
+ {file = "lxml-4.9.4-pp38-pypy38_pp73-macosx_11_0_x86_64.whl", hash = "sha256:520486f27f1d4ce9654154b4494cf9307b495527f3a2908ad4cb48e4f7ed7ef7"},
+ {file = "lxml-4.9.4-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:562778586949be7e0d7435fcb24aca4810913771f845d99145a6cee64d5b67ca"},
+ {file = "lxml-4.9.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:a9e7c6d89c77bb2770c9491d988f26a4b161d05c8ca58f63fb1f1b6b9a74be45"},
+ {file = "lxml-4.9.4-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:786d6b57026e7e04d184313c1359ac3d68002c33e4b1042ca58c362f1d09ff58"},
+ {file = "lxml-4.9.4-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:95ae6c5a196e2f239150aa4a479967351df7f44800c93e5a975ec726fef005e2"},
+ {file = "lxml-4.9.4-pp39-pypy39_pp73-macosx_11_0_x86_64.whl", hash = "sha256:9b556596c49fa1232b0fff4b0e69b9d4083a502e60e404b44341e2f8fb7187f5"},
+ {file = "lxml-4.9.4-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:cc02c06e9e320869d7d1bd323df6dd4281e78ac2e7f8526835d3d48c69060683"},
+ {file = "lxml-4.9.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:857d6565f9aa3464764c2cb6a2e3c2e75e1970e877c188f4aeae45954a314e0c"},
+ {file = "lxml-4.9.4-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c42ae7e010d7d6bc51875d768110c10e8a59494855c3d4c348b068f5fb81fdcd"},
+ {file = "lxml-4.9.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:f10250bb190fb0742e3e1958dd5c100524c2cc5096c67c8da51233f7448dc137"},
+ {file = "lxml-4.9.4.tar.gz", hash = "sha256:b1541e50b78e15fa06a2670157a1962ef06591d4c998b998047fff5e3236880e"},
+]
+
+[package.extras]
+cssselect = ["cssselect (>=0.7)"]
+html5 = ["html5lib"]
+htmlsoup = ["BeautifulSoup4"]
+source = ["Cython (==0.29.37)"]
+
+[[package]]
+name = "numpy"
+version = "1.26.4"
+description = "Fundamental package for array computing in Python"
+optional = false
+python-versions = ">=3.9"
+files = [
+ {file = "numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0"},
+ {file = "numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a"},
+ {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4"},
+ {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f"},
+ {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a"},
+ {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2"},
+ {file = "numpy-1.26.4-cp310-cp310-win32.whl", hash = "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07"},
+ {file = "numpy-1.26.4-cp310-cp310-win_amd64.whl", hash = "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5"},
+ {file = "numpy-1.26.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71"},
+ {file = "numpy-1.26.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef"},
+ {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e"},
+ {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5"},
+ {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a"},
+ {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a"},
+ {file = "numpy-1.26.4-cp311-cp311-win32.whl", hash = "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20"},
+ {file = "numpy-1.26.4-cp311-cp311-win_amd64.whl", hash = "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2"},
+ {file = "numpy-1.26.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218"},
+ {file = "numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b"},
+ {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b"},
+ {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed"},
+ {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a"},
+ {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0"},
+ {file = "numpy-1.26.4-cp312-cp312-win32.whl", hash = "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110"},
+ {file = "numpy-1.26.4-cp312-cp312-win_amd64.whl", hash = "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818"},
+ {file = "numpy-1.26.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c"},
+ {file = "numpy-1.26.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be"},
+ {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764"},
+ {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3"},
+ {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd"},
+ {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c"},
+ {file = "numpy-1.26.4-cp39-cp39-win32.whl", hash = "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6"},
+ {file = "numpy-1.26.4-cp39-cp39-win_amd64.whl", hash = "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea"},
+ {file = "numpy-1.26.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30"},
+ {file = "numpy-1.26.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c"},
+ {file = "numpy-1.26.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0"},
+ {file = "numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010"},
+]
+
+[[package]]
+name = "pandas"
+version = "2.2.1"
+description = "Powerful data structures for data analysis, time series, and statistics"
+optional = false
+python-versions = ">=3.9"
+files = [
+ {file = "pandas-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8df8612be9cd1c7797c93e1c5df861b2ddda0b48b08f2c3eaa0702cf88fb5f88"},
+ {file = "pandas-2.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0f573ab277252ed9aaf38240f3b54cfc90fff8e5cab70411ee1d03f5d51f3944"},
+ {file = "pandas-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f02a3a6c83df4026e55b63c1f06476c9aa3ed6af3d89b4f04ea656ccdaaaa359"},
+ {file = "pandas-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c38ce92cb22a4bea4e3929429aa1067a454dcc9c335799af93ba9be21b6beb51"},
+ {file = "pandas-2.2.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:c2ce852e1cf2509a69e98358e8458775f89599566ac3775e70419b98615f4b06"},
+ {file = "pandas-2.2.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:53680dc9b2519cbf609c62db3ed7c0b499077c7fefda564e330286e619ff0dd9"},
+ {file = "pandas-2.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:94e714a1cca63e4f5939cdce5f29ba8d415d85166be3441165edd427dc9f6bc0"},
+ {file = "pandas-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f821213d48f4ab353d20ebc24e4faf94ba40d76680642fb7ce2ea31a3ad94f9b"},
+ {file = "pandas-2.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c70e00c2d894cb230e5c15e4b1e1e6b2b478e09cf27cc593a11ef955b9ecc81a"},
+ {file = "pandas-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e97fbb5387c69209f134893abc788a6486dbf2f9e511070ca05eed4b930b1b02"},
+ {file = "pandas-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:101d0eb9c5361aa0146f500773395a03839a5e6ecde4d4b6ced88b7e5a1a6403"},
+ {file = "pandas-2.2.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:7d2ed41c319c9fb4fd454fe25372028dfa417aacb9790f68171b2e3f06eae8cd"},
+ {file = "pandas-2.2.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:af5d3c00557d657c8773ef9ee702c61dd13b9d7426794c9dfeb1dc4a0bf0ebc7"},
+ {file = "pandas-2.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:06cf591dbaefb6da9de8472535b185cba556d0ce2e6ed28e21d919704fef1a9e"},
+ {file = "pandas-2.2.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:88ecb5c01bb9ca927ebc4098136038519aa5d66b44671861ffab754cae75102c"},
+ {file = "pandas-2.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:04f6ec3baec203c13e3f8b139fb0f9f86cd8c0b94603ae3ae8ce9a422e9f5bee"},
+ {file = "pandas-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a935a90a76c44fe170d01e90a3594beef9e9a6220021acfb26053d01426f7dc2"},
+ {file = "pandas-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c391f594aae2fd9f679d419e9a4d5ba4bce5bb13f6a989195656e7dc4b95c8f0"},
+ {file = "pandas-2.2.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9d1265545f579edf3f8f0cb6f89f234f5e44ba725a34d86535b1a1d38decbccc"},
+ {file = "pandas-2.2.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:11940e9e3056576ac3244baef2fedade891977bcc1cb7e5cc8f8cc7d603edc89"},
+ {file = "pandas-2.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:4acf681325ee1c7f950d058b05a820441075b0dd9a2adf5c4835b9bc056bf4fb"},
+ {file = "pandas-2.2.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9bd8a40f47080825af4317d0340c656744f2bfdb6819f818e6ba3cd24c0e1397"},
+ {file = "pandas-2.2.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:df0c37ebd19e11d089ceba66eba59a168242fc6b7155cba4ffffa6eccdfb8f16"},
+ {file = "pandas-2.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:739cc70eaf17d57608639e74d63387b0d8594ce02f69e7a0b046f117974b3019"},
+ {file = "pandas-2.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9d3558d263073ed95e46f4650becff0c5e1ffe0fc3a015de3c79283dfbdb3df"},
+ {file = "pandas-2.2.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4aa1d8707812a658debf03824016bf5ea0d516afdea29b7dc14cf687bc4d4ec6"},
+ {file = "pandas-2.2.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:76f27a809cda87e07f192f001d11adc2b930e93a2b0c4a236fde5429527423be"},
+ {file = "pandas-2.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:1ba21b1d5c0e43416218db63037dbe1a01fc101dc6e6024bcad08123e48004ab"},
+ {file = "pandas-2.2.1.tar.gz", hash = "sha256:0ab90f87093c13f3e8fa45b48ba9f39181046e8f3317d3aadb2fffbb1b978572"},
+]
+
+[package.dependencies]
+numpy = {version = ">=1.26.0,<2", markers = "python_version >= \"3.12\""}
+python-dateutil = ">=2.8.2"
+pytz = ">=2020.1"
+tzdata = ">=2022.7"
+
+[package.extras]
+all = ["PyQt5 (>=5.15.9)", "SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)", "beautifulsoup4 (>=4.11.2)", "bottleneck (>=1.3.6)", "dataframe-api-compat (>=0.1.7)", "fastparquet (>=2022.12.0)", "fsspec (>=2022.11.0)", "gcsfs (>=2022.11.0)", "html5lib (>=1.1)", "hypothesis (>=6.46.1)", "jinja2 (>=3.1.2)", "lxml (>=4.9.2)", "matplotlib (>=3.6.3)", "numba (>=0.56.4)", "numexpr (>=2.8.4)", "odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "pandas-gbq (>=0.19.0)", "psycopg2 (>=2.9.6)", "pyarrow (>=10.0.1)", "pymysql (>=1.0.2)", "pyreadstat (>=1.2.0)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "qtpy (>=2.3.0)", "s3fs (>=2022.11.0)", "scipy (>=1.10.0)", "tables (>=3.8.0)", "tabulate (>=0.9.0)", "xarray (>=2022.12.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)", "zstandard (>=0.19.0)"]
+aws = ["s3fs (>=2022.11.0)"]
+clipboard = ["PyQt5 (>=5.15.9)", "qtpy (>=2.3.0)"]
+compression = ["zstandard (>=0.19.0)"]
+computation = ["scipy (>=1.10.0)", "xarray (>=2022.12.0)"]
+consortium-standard = ["dataframe-api-compat (>=0.1.7)"]
+excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)"]
+feather = ["pyarrow (>=10.0.1)"]
+fss = ["fsspec (>=2022.11.0)"]
+gcp = ["gcsfs (>=2022.11.0)", "pandas-gbq (>=0.19.0)"]
+hdf5 = ["tables (>=3.8.0)"]
+html = ["beautifulsoup4 (>=4.11.2)", "html5lib (>=1.1)", "lxml (>=4.9.2)"]
+mysql = ["SQLAlchemy (>=2.0.0)", "pymysql (>=1.0.2)"]
+output-formatting = ["jinja2 (>=3.1.2)", "tabulate (>=0.9.0)"]
+parquet = ["pyarrow (>=10.0.1)"]
+performance = ["bottleneck (>=1.3.6)", "numba (>=0.56.4)", "numexpr (>=2.8.4)"]
+plot = ["matplotlib (>=3.6.3)"]
+postgresql = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "psycopg2 (>=2.9.6)"]
+pyarrow = ["pyarrow (>=10.0.1)"]
+spss = ["pyreadstat (>=1.2.0)"]
+sql-other = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)"]
+test = ["hypothesis (>=6.46.1)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)"]
+xml = ["lxml (>=4.9.2)"]
+
+[[package]]
+name = "progressbar2"
+version = "4.4.1"
+description = "A Python Progressbar library to provide visual (yet text based) progress to long running operations."
+optional = false
+python-versions = ">=3.8"
+files = [
+ {file = "progressbar2-4.4.1-py3-none-any.whl", hash = "sha256:714995e7725fb13e10a720eccf8ce8ff775d9f26247798c71f71447a15cfbe10"},
+ {file = "progressbar2-4.4.1.tar.gz", hash = "sha256:97d323ba03ad3d017a4d047fd0b2d3e733c5a360c07f87d269f96641c3de729f"},
+]
+
+[package.dependencies]
+python-utils = ">=3.8.1"
+
+[package.extras]
+docs = ["sphinx (>=1.8.5)", "sphinx-autodoc-typehints (>=1.6.0)"]
+tests = ["dill (>=0.3.6)", "flake8 (>=3.7.7)", "freezegun (>=0.3.11)", "pytest (>=4.6.9)", "pytest-cov (>=2.6.1)", "pytest-mypy", "pywin32", "sphinx (>=1.8.5)"]
+
+[[package]]
+name = "python-dateutil"
+version = "2.8.2"
+description = "Extensions to the standard Python datetime module"
+optional = false
+python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7"
+files = [
+ {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"},
+ {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"},
+]
+
+[package.dependencies]
+six = ">=1.5"
+
+[[package]]
+name = "python-utils"
+version = "3.8.2"
+description = "Python Utils is a module with some convenient utilities not included with the standard Python install"
+optional = false
+python-versions = ">3.8.0"
+files = [
+ {file = "python-utils-3.8.2.tar.gz", hash = "sha256:c5d161e4ca58ce3f8c540f035e018850b261a41e7cb98f6ccf8e1deb7174a1f1"},
+ {file = "python_utils-3.8.2-py2.py3-none-any.whl", hash = "sha256:ad0ccdbd6f856d015cace07f74828b9840b5c4072d9e868a7f6a14fd195555a8"},
+]
+
+[package.dependencies]
+typing-extensions = ">3.10.0.2"
+
+[package.extras]
+docs = ["mock", "python-utils", "sphinx"]
+loguru = ["loguru"]
+tests = ["flake8", "loguru", "pytest", "pytest-asyncio", "pytest-cov", "pytest-mypy", "sphinx", "types-setuptools"]
+
+[[package]]
+name = "pytz"
+version = "2024.1"
+description = "World timezone definitions, modern and historical"
+optional = false
+python-versions = "*"
+files = [
+ {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"},
+ {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"},
+]
+
+[[package]]
+name = "six"
+version = "1.16.0"
+description = "Python 2 and 3 compatibility utilities"
+optional = false
+python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
+files = [
+ {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"},
+ {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
+]
+
+[[package]]
+name = "soupsieve"
+version = "2.5"
+description = "A modern CSS selector implementation for Beautiful Soup."
+optional = false
+python-versions = ">=3.8"
+files = [
+ {file = "soupsieve-2.5-py3-none-any.whl", hash = "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7"},
+ {file = "soupsieve-2.5.tar.gz", hash = "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690"},
+]
+
+[[package]]
+name = "tabulate"
+version = "0.9.0"
+description = "Pretty-print tabular data"
+optional = false
+python-versions = ">=3.7"
+files = [
+ {file = "tabulate-0.9.0-py3-none-any.whl", hash = "sha256:024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f"},
+ {file = "tabulate-0.9.0.tar.gz", hash = "sha256:0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c"},
+]
+
+[package.extras]
+widechars = ["wcwidth"]
+
+[[package]]
+name = "typing-extensions"
+version = "4.10.0"
+description = "Backported and Experimental Type Hints for Python 3.8+"
+optional = false
+python-versions = ">=3.8"
+files = [
+ {file = "typing_extensions-4.10.0-py3-none-any.whl", hash = "sha256:69b1a937c3a517342112fb4c6df7e72fc39a38e7891a5730ed4985b5214b5475"},
+ {file = "typing_extensions-4.10.0.tar.gz", hash = "sha256:b0abd7c89e8fb96f98db18d86106ff1d90ab692004eb746cf6eda2682f91b3cb"},
+]
+
+[[package]]
+name = "tzdata"
+version = "2024.1"
+description = "Provider of IANA time zone data"
+optional = false
+python-versions = ">=2"
+files = [
+ {file = "tzdata-2024.1-py2.py3-none-any.whl", hash = "sha256:9068bc196136463f5245e51efda838afa15aaeca9903f49050dfa2679db4d252"},
+ {file = "tzdata-2024.1.tar.gz", hash = "sha256:2674120f8d891909751c38abcdfd386ac0a5a1127954fbc332af6b5ceae07efd"},
+]
+
+[metadata]
+lock-version = "2.0"
+python-versions = "^3.12"
+content-hash = "53337390e0e59d04f8ba3471f15cafecac058faf2c0c18d29530ba6cf208a860"
diff --git a/nulrdcscripts/vqc/pyproject.toml b/nulrdcscripts/vqc/pyproject.toml
new file mode 100644
index 0000000..12c5157
--- /dev/null
+++ b/nulrdcscripts/vqc/pyproject.toml
@@ -0,0 +1,20 @@
+[tool.poetry]
+name = "qcscript"
+version = "0.0.1"
+description = "Script to automate the video QC process"
+authors = ["Northwestern University Libraries ", "Sophia Francis"]
+license = "MIT"
+readme = "README.md"
+
+[tool.poetry.dependencies]
+python = "^3.12"
+lxml = "^4.9.3"
+beautifulsoup4 = "^4.12.2"
+pandas = "^2.1.1"
+tabulate = "^0.9.0"
+progressbar2 = "^4.4.1"
+
+
+[build-system]
+requires = ["poetry-core"]
+build-backend = "poetry.core.masonry.api"
diff --git a/nulrdcscripts/vqc/setup.py b/nulrdcscripts/vqc/setup.py
new file mode 100644
index 0000000..79d123c
--- /dev/null
+++ b/nulrdcscripts/vqc/setup.py
@@ -0,0 +1,51 @@
+import os
+import pandas as pd
+import pathlib
+
+path8Bit = "Video8BitValues.csv"
+path10Bit = "Video10BitValues.csv"
+
+csv8Bit = os.path.join(os.path.dirname(os.path.abspath(__file__)), path8Bit)
+csv10Bit = os.path.join(os.path.dirname(os.path.abspath(__file__)), path10Bit)
+
+
+def inputCheck(inputPath):
+ """Checks that the input path is a file and not a folder which is currently not supported"""
+ if os.path.isdir(inputPath):
+ raise ValueError("Folders are currently not supported by this script")
+ else:
+ pass
+
+
+def outputCheck(inputPath, outputPath):
+ """Checks if there is an output path. If there isn't, the file goes to the directory of the input file. Otherwise, checks if the output path is a folder"""
+ if outputPath == "":
+ outputPath = os.path.dirname(inputPath)
+ else:
+ outputPathTF = os.path.isdir(outputPath)
+ if outputPathTF:
+ outputPath = os.path.normpath(outputPath)
+ else:
+ raise ValueError("The output path must be a folder")
+ return outputPath
+
+
+def setVideoBitDepth(videobitdepth):
+ """Sets and assigns the values for bit depth for data comparison"""
+ if videobitdepth == "8bit" or "8" or "8Bit":
+ standardDF = pd.read_csv(csv8Bit, sep=",", index_col="criteria")
+ elif videobitdepth == "10bit" or "10" or "10Bit":
+ standardDF = pd.read_csv(csv10Bit, sep=",", index_col="criteria")
+ return standardDF
+
+
+def setInputFileType(inputPath):
+ """Sets the file type of the input file"""
+ fileExt = pathlib.Path(inputPath).suffix
+ if fileExt == ".json":
+ fileType = "JSON"
+ elif fileExt == ".xml":
+ fileType = "XML"
+ else:
+ raise ValueError("This filetype is not currently supported.")
+ return fileType
diff --git a/nulrdcscripts/vqc/testdata.csv b/nulrdcscripts/vqc/testdata.csv
new file mode 100644
index 0000000..de8c8ee
--- /dev/null
+++ b/nulrdcscripts/vqc/testdata.csv
@@ -0,0 +1,3598 @@
+,Frame Time,vrep,ymin,ylow,yavg,yhigh,ymax,umin,ulow,uavg,uhigh,umax,vmin,vlow,vavg,vhigh,vmax,satmin,satlow,satavg,sathigh,satmax,huemed,hueavg,ydif,udif,vdif,ybitdepth,ubitdepth,vbitdepth,tout,brng
+1,0.0,0.0,0.0,17.0,31.8963,50.0,235.0,60.0,118.0,124.224,131.0,176.0,96.0,125.0,128.983,132.0,179.0,0.0,1.0,6.69849,14.0,81.0,108.0,132.503,0.0,0.0,0.0,8.0,8.0,8.0,0.00376658,0.0639718
+2,0.033367,0.0,0.0,17.0,31.619,51.0,236.0,61.0,118.0,124.29,131.0,178.0,96.0,125.0,128.937,132.0,182.0,0.0,1.0,6.5745,14.0,83.0,108.0,133.527,3.81858,2.27892,1.54024,8.0,8.0,8.0,0.00344936,0.066901
+3,0.066733,0.0,0.0,17.0,31.8912,51.0,255.0,60.0,118.0,124.1,131.0,179.0,98.0,125.0,128.992,132.0,182.0,0.0,1.0,6.73665,14.0,82.0,108.0,132.254,2.93971,2.18115,1.41099,8.0,8.0,8.0,0.00322645,0.0615684
+4,0.1001,0.0,0.0,17.0,31.8353,51.0,237.0,58.0,118.0,124.145,131.0,181.0,98.0,126.0,129.011,132.0,181.0,0.0,1.0,6.63948,13.0,84.0,108.0,132.408,2.62929,2.13554,1.38819,8.0,8.0,8.0,0.00340935,0.0656636
+5,0.133467,0.0,0.0,16.0,31.7123,50.0,242.0,60.0,118.0,124.204,131.0,178.0,96.0,125.0,128.975,132.0,181.0,0.0,1.0,6.6798,14.0,82.0,108.0,132.918,2.9625,2.23565,1.47702,8.0,8.0,8.0,0.00325789,0.070539
+6,0.166833,0.0,0.0,17.0,31.7707,50.0,242.0,61.0,118.0,124.208,131.0,179.0,99.0,126.0,129.027,132.0,181.0,0.0,1.0,6.6152,14.0,83.0,108.0,132.804,2.61724,2.20213,1.46756,8.0,8.0,8.0,0.00346651,0.0686871
+7,0.2002,0.0,0.0,16.0,31.4326,50.0,236.0,58.0,118.0,124.188,131.0,177.0,97.0,125.0,128.95,132.0,181.0,0.0,1.0,6.66148,14.0,83.0,108.0,132.576,3.05261,2.16385,1.41076,8.0,8.0,8.0,0.00328932,0.0767633
+8,0.233567,0.0,0.0,17.0,31.6405,50.0,235.0,59.0,118.0,124.181,131.0,180.0,97.0,126.0,129.016,132.0,180.0,0.0,1.0,6.69528,14.0,82.0,108.0,132.846,3.05722,2.23922,1.41999,8.0,8.0,8.0,0.0034265,0.0665266
+9,0.266933,0.0,0.0,17.0,31.8416,50.0,234.0,58.0,118.0,124.16,131.0,176.0,96.0,126.0,129.021,132.0,178.0,0.0,1.0,6.69353,13.0,84.0,108.0,132.325,3.12666,2.31117,1.51725,8.0,8.0,8.0,0.00277492,0.0672039
+10,0.3003,0.0,0.0,17.0,31.8949,51.0,255.0,61.0,118.0,124.177,131.0,176.0,97.0,125.0,128.932,132.0,179.0,0.0,1.0,6.60789,13.0,80.0,108.0,131.935,3.89622,2.28441,1.5211,8.0,8.0,8.0,0.00315501,0.064972
+11,0.333667,0.0,0.0,17.0,31.9064,51.0,236.0,62.0,118.0,124.109,130.0,176.0,99.0,126.0,129.009,132.0,181.0,0.0,1.0,6.68483,13.0,81.0,108.0,131.482,3.05987,2.16192,1.38897,8.0,8.0,8.0,0.00352366,0.0655979
+12,0.367033,0.0,0.0,17.0,31.7868,51.0,255.0,60.0,118.0,124.207,131.0,177.0,97.0,125.0,128.938,132.0,183.0,0.0,1.0,6.65845,14.0,83.0,108.0,132.852,2.79966,2.14356,1.39721,8.0,8.0,8.0,0.00360082,0.0696131
+13,0.4004,0.0,0.0,17.0,31.8465,51.0,235.0,61.0,118.0,124.085,131.0,177.0,93.0,125.0,128.965,132.0,183.0,0.0,1.0,6.76739,14.0,83.0,108.0,131.38,3.46519,2.24449,1.4789,8.0,8.0,8.0,0.00357796,0.0637174
+14,0.433767,0.0,0.0,17.0,31.8637,51.0,235.0,60.0,118.0,124.126,131.0,174.0,97.0,126.0,129.023,132.0,182.0,0.0,1.0,6.6884,14.0,83.0,108.0,133.208,2.49867,2.19011,1.41722,8.0,8.0,8.0,0.00365226,0.0662351
+15,0.467133,0.0,0.0,17.0,31.9338,51.0,236.0,58.0,118.0,124.063,131.0,177.0,97.0,125.0,128.919,132.0,179.0,0.0,1.0,6.72085,13.0,82.0,108.0,130.955,2.63677,2.1707,1.41156,8.0,8.0,8.0,0.00370942,0.0641547
+16,0.5005,0.0,0.0,17.0,31.8694,51.0,242.0,60.0,118.0,124.077,131.0,178.0,95.0,125.0,128.956,132.0,183.0,0.0,1.0,6.70439,13.0,83.0,108.0,131.521,2.37678,2.11495,1.3529,8.0,8.0,8.0,0.00387803,0.0674326
+17,0.533867,0.0,0.0,17.0,31.6772,50.0,255.0,60.0,118.0,124.141,131.0,176.0,96.0,125.0,128.891,132.0,181.0,0.0,1.0,6.65227,13.0,81.0,108.0,131.317,2.7462,2.16092,1.44387,8.0,8.0,8.0,0.0034808,0.0676983
+18,0.567233,0.0,0.0,17.0,31.8105,50.0,255.0,63.0,118.0,124.155,131.0,176.0,98.0,125.0,128.953,132.0,182.0,0.0,1.0,6.65671,13.0,82.0,108.0,132.26,2.8237,2.20309,1.44611,8.0,8.0,8.0,0.00319787,0.0586563
+19,0.6006,0.0,0.0,17.0,31.7504,50.0,233.0,59.0,118.0,124.138,131.0,179.0,96.0,125.0,128.976,132.0,179.0,0.0,1.0,6.66204,14.0,84.0,108.0,132.101,2.60511,2.17869,1.41265,8.0,8.0,8.0,0.00309214,0.0634088
+20,0.633967,0.0,0.0,17.0,31.7334,50.0,255.0,61.0,118.0,124.218,131.0,179.0,96.0,125.0,128.904,132.0,181.0,0.0,1.0,6.63812,14.0,82.0,108.0,132.926,2.96558,2.13379,1.39789,8.0,8.0,8.0,0.00298354,0.0652864
+21,0.667333,0.0,0.0,17.0,31.8191,50.0,236.0,60.0,118.0,124.245,131.0,180.0,95.0,125.0,128.992,132.0,181.0,0.0,1.0,6.67227,14.0,83.0,108.0,132.81,2.61937,2.16454,1.42008,8.0,8.0,8.0,0.00314929,0.0656693
+22,0.7007,0.0,0.0,17.0,31.7331,50.0,239.0,61.0,118.0,124.325,131.0,179.0,96.0,126.0,128.91,132.0,182.0,0.0,1.0,6.57685,13.0,85.0,108.0,133.183,2.78184,2.19352,1.43044,8.0,8.0,8.0,0.00307499,0.0673611
+23,0.734067,0.0,0.0,17.0,31.7969,50.0,232.0,61.0,118.0,124.191,131.0,179.0,98.0,126.0,128.902,132.0,180.0,0.0,1.0,6.65479,14.0,83.0,108.0,131.817,2.91628,2.13623,1.38113,8.0,8.0,8.0,0.00294067,0.0621371
+24,0.767433,0.0,0.0,17.0,31.7355,50.0,234.0,56.0,118.0,124.143,131.0,177.0,97.0,126.0,128.994,132.0,180.0,0.0,1.0,6.66954,13.0,83.0,108.0,132.533,2.36713,2.09099,1.32864,8.0,8.0,8.0,0.00303784,0.0659036
+25,0.8008,0.0,0.0,17.0,31.833,50.0,254.0,56.0,118.0,124.077,131.0,181.0,98.0,125.0,128.92,132.0,181.0,0.0,1.0,6.71131,14.0,82.0,108.0,131.356,2.77097,2.20616,1.43372,8.0,8.0,8.0,0.00334076,0.0641232
+26,0.834167,0.0,0.0,17.0,31.806,50.0,255.0,58.0,118.0,124.167,131.0,178.0,95.0,126.0,129.068,132.0,182.0,0.0,1.0,6.67458,13.0,84.0,109.0,133.032,2.53801,2.18032,1.44064,8.0,8.0,8.0,0.00324931,0.0620227
+27,0.867533,0.0,0.0,16.0,31.343,49.0,232.0,60.0,118.0,124.159,131.0,178.0,97.0,126.0,128.997,132.0,183.0,0.0,1.0,6.65209,13.0,83.0,108.0,132.436,3.04426,2.17665,1.41674,8.0,8.0,8.0,0.00314358,0.0767204
+28,0.9009,0.0,0.0,17.0,31.5056,50.0,237.0,60.0,118.0,124.229,131.0,177.0,95.0,125.0,128.989,132.0,181.0,0.0,1.0,6.67614,14.0,84.0,108.0,132.716,2.55975,2.1437,1.38062,8.0,8.0,8.0,0.00330933,0.0699331
+29,0.934267,0.0,0.0,17.0,31.5672,50.0,237.0,58.0,118.0,124.231,131.0,179.0,97.0,125.0,128.967,132.0,181.0,0.0,1.0,6.70249,14.0,84.0,108.0,132.74,2.49887,2.18089,1.4328,8.0,8.0,8.0,0.00347508,0.0703618
+30,0.967633,0.0,0.0,17.0,31.6456,50.0,253.0,58.0,118.0,124.233,131.0,181.0,98.0,125.0,128.906,132.0,182.0,0.0,1.0,6.6618,14.0,83.0,108.0,132.563,2.65026,2.18659,1.46352,8.0,8.0,8.0,0.00319502,0.0703275
+31,1.001,0.0,0.0,17.0,31.6789,50.0,240.0,62.0,118.0,124.229,131.0,176.0,96.0,125.0,129.016,132.0,182.0,0.0,1.0,6.67841,14.0,84.0,110.0,134.008,2.36547,2.13358,1.3783,8.0,8.0,8.0,0.00329218,0.0685185
+32,1.034367,0.0,0.0,17.0,31.4947,50.0,236.0,59.0,118.0,124.209,131.0,176.0,96.0,126.0,128.923,132.0,182.0,0.0,1.0,6.60644,14.0,84.0,108.0,132.711,2.6634,2.15676,1.40134,8.0,8.0,8.0,0.0032979,0.0677641
+33,1.067733,0.0,0.0,16.0,31.4192,50.0,254.0,63.0,118.0,124.223,131.0,178.0,96.0,125.0,128.985,132.0,181.0,0.0,1.0,6.6669,14.0,80.0,108.0,132.787,2.87733,2.17439,1.43645,8.0,8.0,8.0,0.00327789,0.0707476
+34,1.1011,0.0,0.0,17.0,31.5958,50.0,255.0,58.0,118.0,124.243,131.0,179.0,96.0,125.0,128.954,132.0,184.0,0.0,1.0,6.66275,14.0,85.0,108.0,133.119,2.5824,2.17292,1.43205,8.0,8.0,8.0,0.00294639,0.0665038
+35,1.134467,0.0,0.0,17.0,31.5841,50.0,239.0,61.0,118.0,124.305,131.0,178.0,98.0,125.0,128.851,132.0,183.0,0.0,1.0,6.54832,13.0,82.0,108.0,132.049,3.0649,2.18988,1.42254,8.0,8.0,8.0,0.00298354,0.0674297
+36,1.167833,0.0,0.0,17.0,31.8205,50.0,238.0,59.0,118.0,124.291,131.0,178.0,95.0,126.0,128.988,132.0,180.0,0.0,1.0,6.57962,14.0,84.0,109.0,133.648,2.72085,2.14711,1.37415,8.0,8.0,8.0,0.00315215,0.065615
+37,1.2012,0.0,0.0,16.0,31.6373,50.0,235.0,61.0,118.0,124.313,131.0,181.0,96.0,125.0,128.875,132.0,181.0,0.0,1.0,6.60016,14.0,84.0,108.0,132.274,2.77006,2.15617,1.40291,8.0,8.0,8.0,0.00316644,0.0757373
+38,1.234567,0.0,0.0,17.0,31.49,50.0,236.0,61.0,118.0,124.347,131.0,179.0,97.0,126.0,128.951,132.0,180.0,0.0,1.0,6.56821,13.0,81.0,108.0,134.139,3.70995,2.18436,1.41287,8.0,8.0,8.0,0.003115,0.067987
+39,1.267933,0.0,0.0,17.0,31.5932,50.0,255.0,62.0,118.0,124.319,131.0,176.0,99.0,126.0,128.994,132.0,180.0,0.0,1.0,6.56844,13.0,81.0,109.0,133.949,2.43581,2.0615,1.29086,8.0,8.0,8.0,0.00302355,0.0685985
+40,1.3013,0.0,0.0,17.0,31.6904,50.0,254.0,59.0,118.0,124.264,131.0,177.0,97.0,125.0,128.945,132.0,181.0,0.0,1.0,6.60354,14.0,84.0,108.0,133.475,2.6842,2.10247,1.34264,8.0,8.0,8.0,0.0032093,0.0649977
+41,1.334667,0.0,0.0,16.0,31.6746,50.0,236.0,60.0,118.0,124.18,131.0,178.0,100.0,126.0,129.049,132.0,180.0,0.0,1.0,6.68388,14.0,82.0,109.0,132.825,2.43861,2.06804,1.33141,8.0,8.0,8.0,0.00322645,0.0708419
+42,1.368033,0.0,0.0,16.0,31.6017,50.0,255.0,59.0,118.0,124.363,131.0,178.0,97.0,126.0,128.914,132.0,180.0,0.0,1.0,6.51315,13.0,82.0,108.0,133.964,2.74177,2.15336,1.35569,8.0,8.0,8.0,0.00340935,0.0704104
+43,1.4014,0.0,0.0,16.0,31.5618,50.0,233.0,62.0,118.0,124.377,131.0,177.0,98.0,125.0,128.913,132.0,181.0,0.0,1.0,6.52366,13.0,80.0,108.0,133.784,2.56054,2.05075,1.27108,8.0,8.0,8.0,0.00326075,0.0721308
+44,1.434767,0.0,0.0,16.0,31.479,50.0,236.0,59.0,119.0,124.424,131.0,176.0,98.0,126.0,128.954,132.0,180.0,0.0,1.0,6.4996,14.0,84.0,110.0,134.754,2.46362,1.99431,1.25215,8.0,8.0,8.0,0.00306927,0.0746028
+45,1.468133,0.0,0.0,16.0,31.3043,50.0,255.0,59.0,118.0,124.46,131.0,176.0,98.0,125.0,128.778,131.0,181.0,0.0,1.0,6.48866,14.0,83.0,108.0,132.433,3.32248,2.12369,1.39778,8.0,8.0,8.0,0.00238626,0.0802183
+46,1.5015,0.0,0.0,16.0,31.4003,50.0,235.0,62.0,119.0,124.494,131.0,178.0,97.0,126.0,128.953,132.0,181.0,0.0,1.0,6.41637,13.0,82.0,110.0,134.597,2.94502,2.12152,1.38237,8.0,8.0,8.0,0.00318358,0.0733625
+47,1.534867,0.0,0.0,16.0,31.4358,50.0,236.0,62.0,118.0,124.487,131.0,178.0,97.0,126.0,128.881,131.0,181.0,0.0,1.0,6.4241,13.0,82.0,108.0,134.703,2.69674,1.98571,1.21211,8.0,8.0,8.0,0.00314358,0.0730224
+48,1.568233,0.0,0.0,17.0,31.8019,51.0,236.0,57.0,119.0,124.46,131.0,176.0,97.0,126.0,128.991,132.0,180.0,0.0,1.0,6.41489,13.0,84.0,111.0,134.65,2.50989,1.91443,1.179,8.0,8.0,8.0,0.00324931,0.0607167
+49,1.6016,0.0,0.0,17.0,31.544,50.0,234.0,60.0,118.0,124.42,131.0,178.0,96.0,126.0,128.979,132.0,184.0,0.0,1.0,6.48676,13.0,82.0,109.0,134.575,2.60374,1.94673,1.23099,8.0,8.0,8.0,0.00292353,0.0691501
+50,1.634967,0.0,0.0,16.0,31.4073,50.0,239.0,62.0,119.0,124.415,131.0,179.0,97.0,126.0,128.883,132.0,180.0,0.0,1.0,6.44666,13.0,82.0,108.0,133.205,2.9328,2.03936,1.29801,8.0,8.0,8.0,0.0032979,0.0700817
+51,1.668333,0.0,0.0,17.0,31.5595,50.0,255.0,61.0,118.0,124.474,131.0,179.0,98.0,126.0,128.956,132.0,181.0,0.0,1.0,6.4337,14.0,83.0,111.0,135.3,2.34864,1.84543,1.15388,8.0,8.0,8.0,0.00324931,0.0671096
+52,1.7017,0.0,0.0,17.0,31.5805,50.0,239.0,61.0,119.0,124.407,131.0,180.0,100.0,126.0,128.86,131.0,181.0,0.0,1.0,6.47338,14.0,82.0,108.0,133.379,2.42048,1.859,1.16425,8.0,8.0,8.0,0.00335791,0.0661523
+53,1.735067,0.0,0.0,17.0,31.6758,50.0,239.0,61.0,119.0,124.448,131.0,177.0,95.0,125.0,128.885,132.0,181.0,0.0,1.0,6.48719,14.0,83.0,109.0,134.028,2.79581,1.9217,1.23347,8.0,8.0,8.0,0.00321216,0.0641632
+54,1.768433,0.0,0.0,17.0,31.7194,50.0,240.0,61.0,119.0,124.465,131.0,177.0,98.0,125.0,128.862,131.0,182.0,0.0,1.0,6.45626,14.0,83.0,108.0,133.846,2.26405,1.9074,1.18012,8.0,8.0,8.0,0.00308642,0.0624886
+55,1.8018,0.0,0.0,17.0,31.6712,50.0,234.0,55.0,119.0,124.479,131.0,180.0,99.0,125.0,128.782,131.0,180.0,0.0,1.0,6.39872,13.0,84.0,108.0,133.13,2.34956,1.86207,1.14614,8.0,8.0,8.0,0.00304641,0.0649291
+56,1.835167,0.0,0.0,17.0,31.6426,50.0,234.0,59.0,119.0,124.489,131.0,177.0,98.0,126.0,128.825,131.0,179.0,0.0,1.0,6.39925,13.0,82.0,108.0,133.658,2.05252,1.77526,1.10527,8.0,8.0,8.0,0.0030607,0.0650892
+57,1.868533,0.0,0.0,16.0,31.0691,49.0,239.0,59.0,119.0,124.486,131.0,178.0,98.0,125.0,128.776,131.0,181.0,0.0,1.0,6.4346,14.0,84.0,108.0,134.148,2.51236,1.92687,1.21108,8.0,8.0,8.0,0.0031693,0.083542
+58,1.9019,0.0,0.0,16.0,31.1988,50.0,255.0,61.0,119.0,124.475,131.0,177.0,99.0,125.0,128.812,131.0,181.0,0.0,1.0,6.39698,13.0,82.0,108.0,132.86,2.49747,1.91714,1.1638,8.0,8.0,8.0,0.0033179,0.0779264
+59,1.935267,0.0,0.0,16.0,31.0596,50.0,237.0,60.0,119.0,124.398,131.0,178.0,99.0,126.0,128.882,131.0,180.0,0.0,1.0,6.46957,13.0,82.0,108.0,133.328,2.33818,1.8618,1.11854,8.0,8.0,8.0,0.00307785,0.0820759
+60,1.968633,0.0,0.0,16.0,31.3543,50.0,236.0,60.0,119.0,124.424,131.0,177.0,98.0,126.0,128.804,131.0,180.0,0.0,1.0,6.4364,13.0,81.0,108.0,132.393,2.79901,1.85604,1.14744,8.0,8.0,8.0,0.00294639,0.0695045
+61,2.002,0.0,0.0,16.0,31.4726,50.0,255.0,61.0,119.0,124.468,131.0,178.0,99.0,125.0,128.946,132.0,182.0,0.0,1.0,6.4484,14.0,83.0,111.0,134.897,2.51846,1.89546,1.17341,8.0,8.0,8.0,0.0033179,0.0703675
+62,2.035367,0.0,0.0,16.0,31.3835,50.0,240.0,62.0,119.0,124.519,131.0,178.0,98.0,126.0,128.874,131.0,179.0,0.0,1.0,6.35178,13.0,82.0,108.0,134.667,2.56241,1.94204,1.18623,8.0,8.0,8.0,0.00315501,0.0724794
+63,2.068733,0.0,0.0,16.0,31.3752,50.0,236.0,60.0,119.0,124.444,131.0,178.0,97.0,126.0,128.894,131.0,180.0,0.0,1.0,6.44506,13.0,84.0,108.0,133.443,2.86088,1.86959,1.11831,8.0,8.0,8.0,0.00327218,0.0716792
+64,2.1021,0.0,0.0,16.0,31.3773,50.0,237.0,61.0,119.0,124.479,131.0,178.0,99.0,126.0,128.969,132.0,180.0,0.0,1.0,6.44215,14.0,84.0,111.0,134.718,2.36517,1.75942,1.08397,8.0,8.0,8.0,0.00329218,0.0738169
+65,2.135467,0.0,0.0,16.0,31.1819,50.0,234.0,62.0,119.0,124.463,131.0,179.0,93.0,126.0,128.892,131.0,180.0,0.0,1.0,6.43911,14.0,81.0,108.0,133.775,2.5868,1.85766,1.16731,8.0,8.0,8.0,0.00308642,0.0838706
+66,2.168833,0.0,0.0,16.0,31.4035,50.0,235.0,61.0,119.0,124.517,131.0,182.0,97.0,126.0,128.979,132.0,182.0,0.0,1.0,6.42781,13.0,82.0,111.0,135.385,2.00557,1.79475,1.05718,8.0,8.0,8.0,0.00306356,0.0764175
+67,2.2022,0.0,0.0,16.0,31.2261,50.0,236.0,64.0,119.0,124.581,131.0,180.0,97.0,126.0,128.939,132.0,181.0,0.0,1.0,6.33845,13.0,82.0,111.0,135.488,2.44095,1.84643,1.09805,8.0,8.0,8.0,0.00299211,0.0803869
+68,2.235567,0.0,0.0,16.0,31.126,50.0,242.0,60.0,119.0,124.585,131.0,179.0,93.0,126.0,129.039,132.0,180.0,0.0,1.0,6.35511,13.0,84.0,113.0,136.485,2.42148,1.81888,1.10194,8.0,8.0,8.0,0.00288923,0.0790666
+69,2.268933,0.0,0.0,16.0,31.1352,50.0,235.0,61.0,119.0,124.579,131.0,178.0,96.0,126.0,129.15,132.0,179.0,0.0,1.0,6.40463,13.0,81.0,116.0,137.518,2.14732,1.8327,1.14472,8.0,8.0,8.0,0.00298068,0.0840421
+70,2.3023,0.0,0.0,16.0,31.2577,50.0,238.0,61.0,119.0,124.629,131.0,175.0,97.0,126.0,129.145,132.0,179.0,0.0,1.0,6.33112,13.0,82.0,116.0,137.772,2.86303,1.90238,1.19028,8.0,8.0,8.0,0.00259488,0.0780378
+71,2.335667,0.0,0.0,16.0,31.1964,50.0,235.0,61.0,119.0,124.622,131.0,178.0,95.0,126.0,129.181,132.0,180.0,0.0,1.0,6.33707,13.0,84.0,116.0,138.146,2.5336,1.75278,1.09016,8.0,8.0,8.0,0.00317501,0.075663
+72,2.369033,0.0,0.0,16.0,31.1884,50.0,251.0,40.0,119.0,124.534,131.0,177.0,98.0,126.0,129.206,132.0,182.0,0.0,1.0,6.42685,13.0,88.0,116.0,137.808,2.41116,1.76778,1.13053,8.0,8.0,8.0,0.00298925,0.0851909
+73,2.4024,0.0,0.0,16.0,31.0489,49.0,255.0,59.0,119.0,124.498,131.0,184.0,99.0,126.0,129.202,132.0,181.0,0.0,1.0,6.44215,13.0,85.0,116.0,136.989,2.30385,1.8479,1.15445,8.0,8.0,8.0,0.00336077,0.0858625
+74,2.435767,0.0,0.0,16.0,31.0911,50.0,255.0,60.0,119.0,124.528,131.0,177.0,95.0,126.0,129.235,132.0,180.0,0.0,1.0,6.39449,13.0,81.0,116.0,138.105,2.07949,1.79432,1.12184,8.0,8.0,8.0,0.00333505,0.0821845
+75,2.469133,0.0,0.0,16.0,31.1811,50.0,235.0,62.0,119.0,124.577,131.0,177.0,96.0,126.0,129.149,132.0,179.0,0.0,1.0,6.32243,13.0,81.0,116.0,137.452,2.24546,1.80309,1.12617,8.0,8.0,8.0,0.00326646,0.0776492
+76,2.5025,0.0,0.0,16.0,31.1618,50.0,241.0,59.0,119.0,124.679,131.0,183.0,96.0,126.0,129.196,132.0,180.0,0.0,1.0,6.28006,13.0,83.0,116.0,139.377,1.95674,1.72493,1.03863,8.0,8.0,8.0,0.00322931,0.0760574
+77,2.535867,0.0,0.0,17.0,31.687,50.0,236.0,59.0,119.0,124.494,131.0,177.0,92.0,126.0,129.217,132.0,180.0,0.0,1.0,6.48325,14.0,84.0,116.0,138.813,2.87058,1.94598,1.19728,8.0,8.0,8.0,0.00277778,0.0664723
+78,2.569233,0.0,0.0,17.0,31.788,50.0,233.0,38.0,119.0,124.567,131.0,177.0,97.0,126.0,129.264,132.0,180.0,0.0,1.0,6.43337,13.0,90.0,116.0,139.427,2.7341,1.93091,1.20562,8.0,8.0,8.0,0.00248914,0.0601166
+79,2.6026,0.0,0.0,17.0,31.6509,50.0,237.0,41.0,119.0,124.623,131.0,181.0,98.0,126.0,129.253,132.0,180.0,0.0,1.0,6.38283,13.0,87.0,116.0,139.239,1.95143,1.75424,1.08029,8.0,8.0,8.0,0.00248057,0.0645519
+80,2.635967,0.0,0.0,17.0,31.7695,50.0,236.0,40.0,119.0,124.643,131.0,177.0,97.0,126.0,129.157,132.0,179.0,0.0,1.0,6.34079,13.0,89.0,116.0,139.015,2.1226,1.69233,1.11091,8.0,8.0,8.0,0.00258916,0.0640746
+81,2.669333,0.0,0.0,16.0,31.7154,50.0,237.0,59.0,119.0,124.629,131.0,183.0,97.0,126.0,129.263,132.0,182.0,0.0,1.0,6.38691,13.0,82.0,116.0,139.855,2.10286,1.73872,1.13624,8.0,8.0,8.0,0.00312643,0.0725794
+82,2.7027,0.0,0.0,17.0,31.7241,50.0,237.0,59.0,119.0,124.565,131.0,180.0,93.0,126.0,129.216,132.0,181.0,0.0,1.0,6.40518,13.0,84.0,116.0,139.125,2.69163,1.83371,1.19757,8.0,8.0,8.0,0.00319787,0.0651749
+83,2.736067,0.0,0.0,17.0,31.6688,50.0,255.0,60.0,119.0,124.499,131.0,181.0,94.0,126.0,129.289,132.0,181.0,0.0,1.0,6.48331,13.0,82.0,116.0,139.026,2.35908,1.8053,1.09919,8.0,8.0,8.0,0.00324646,0.0643776
+84,2.769433,0.0,0.0,17.0,31.6455,50.0,255.0,58.0,119.0,124.473,131.0,180.0,92.0,126.0,129.202,132.0,181.0,0.0,1.0,6.48656,14.0,86.0,116.0,138.301,2.27254,1.79023,1.10335,8.0,8.0,8.0,0.00320359,0.0652778
+85,2.8028,0.0,0.0,16.0,31.4542,50.0,239.0,36.0,119.0,124.497,131.0,177.0,97.0,126.0,129.071,132.0,180.0,0.0,1.0,6.50849,14.0,92.0,116.0,137.737,3.04276,1.97739,1.21822,8.0,8.0,8.0,0.00216621,0.071142
+86,2.836167,0.0,0.0,17.0,31.5332,50.0,242.0,38.0,119.0,124.527,131.0,177.0,97.0,126.0,129.161,132.0,180.0,0.0,1.0,6.43685,13.0,90.0,116.0,137.97,2.68082,1.97086,1.21693,8.0,8.0,8.0,0.00261488,0.065052
+87,2.869533,0.0,0.0,16.0,31.3853,50.0,236.0,41.0,119.0,124.591,131.0,177.0,98.0,126.0,129.104,132.0,181.0,0.0,1.0,6.36064,14.0,87.0,116.0,138.901,2.61992,1.82497,1.10234,8.0,8.0,8.0,0.00256344,0.0729395
+88,2.9029,0.0,0.0,17.0,31.6529,51.0,255.0,41.0,119.0,124.606,131.0,175.0,93.0,126.0,129.198,132.0,179.0,0.0,1.0,6.3326,13.0,87.0,116.0,138.672,2.60011,1.8261,1.12356,8.0,8.0,8.0,0.00264632,0.0610482
+89,2.936267,0.0,0.0,17.0,31.5667,50.0,239.0,41.0,119.0,124.583,131.0,180.0,96.0,126.0,129.175,132.0,179.0,0.0,1.0,6.42633,14.0,87.0,116.0,139.678,2.27572,1.88604,1.15163,8.0,8.0,8.0,0.00266632,0.0690186
+90,2.969633,0.0,0.0,17.0,31.787,50.0,239.0,59.0,119.0,124.64,131.0,176.0,97.0,126.0,129.141,132.0,182.0,0.0,1.0,6.34135,13.0,83.0,116.0,138.235,2.71661,2.00762,1.28414,8.0,8.0,8.0,0.00284922,0.0590163
+91,3.003,0.0,0.0,17.0,31.7121,51.0,255.0,59.0,119.0,124.665,131.0,177.0,98.0,126.0,129.189,132.0,180.0,0.0,1.0,6.34624,13.0,84.0,116.0,139.371,2.2201,1.796,1.09993,8.0,8.0,8.0,0.00293496,0.0635517
+92,3.036367,0.0,0.0,17.0,31.8459,51.0,251.0,60.0,119.0,124.711,131.0,179.0,98.0,126.0,129.102,132.0,180.0,0.0,1.0,6.33813,13.0,82.0,116.0,139.127,2.82719,1.83591,1.14455,8.0,8.0,8.0,0.00334648,0.0615026
+93,3.069733,0.0,0.0,17.0,31.7054,50.0,255.0,61.0,119.0,124.739,131.0,180.0,97.0,126.0,129.146,132.0,183.0,0.0,1.0,6.36217,14.0,82.0,116.0,140.404,2.53271,1.83759,1.20367,8.0,8.0,8.0,0.00350652,0.0668524
+94,3.1031,0.0,0.0,17.0,31.6495,50.0,236.0,62.0,119.0,124.744,131.0,180.0,98.0,126.0,129.079,132.0,181.0,0.0,1.0,6.28517,13.0,82.0,116.0,140.302,2.58483,1.90746,1.19532,8.0,8.0,8.0,0.00286923,0.0637403
+95,3.136467,0.0,0.0,17.0,31.5139,50.0,238.0,63.0,119.0,124.718,131.0,177.0,97.0,126.0,129.063,132.0,179.0,0.0,1.0,6.30127,13.0,81.0,116.0,138.493,3.30387,1.97571,1.18347,8.0,8.0,8.0,0.00250629,0.0677841
+96,3.169833,0.0,0.0,17.0,31.6351,50.0,237.0,60.0,119.0,124.697,131.0,180.0,98.0,126.0,129.172,132.0,182.0,0.0,1.0,6.33616,13.0,85.0,116.0,139.267,2.75606,1.93357,1.16947,8.0,8.0,8.0,0.00305213,0.0674326
+97,3.2032,0.0,0.0,17.0,31.6622,50.0,242.0,61.0,119.0,124.668,131.0,179.0,94.0,126.0,129.202,132.0,180.0,0.0,1.0,6.40221,14.0,84.0,116.0,140.517,2.53415,1.93396,1.19619,8.0,8.0,8.0,0.00315786,0.069293
+98,3.236567,0.0,0.0,16.0,31.2786,50.0,234.0,60.0,119.0,124.824,131.0,178.0,99.0,126.0,129.124,132.0,180.0,0.0,1.0,6.22361,13.0,85.0,116.0,140.987,3.07581,1.99367,1.27547,8.0,8.0,8.0,0.00306927,0.0735282
+99,3.269933,0.0,0.0,16.0,31.3751,50.0,237.0,62.0,119.0,124.816,131.0,177.0,98.0,126.0,129.146,132.0,179.0,0.0,1.0,6.21001,13.0,81.0,116.0,140.578,2.24472,1.79705,1.13867,8.0,8.0,8.0,0.00304927,0.0740255
+100,3.3033,0.0,0.0,16.0,31.2517,50.0,239.0,63.0,119.0,124.856,131.0,178.0,98.0,126.0,129.105,132.0,182.0,0.0,1.0,6.19427,13.0,83.0,116.0,140.59,2.46271,1.8407,1.14555,8.0,8.0,8.0,0.00316072,0.0756459
+101,3.336667,0.0,0.0,16.0,31.2189,50.0,240.0,61.0,119.0,124.876,131.0,178.0,94.0,126.0,129.153,132.0,180.0,0.0,1.0,6.28276,14.0,82.0,116.0,142.014,2.25788,1.85592,1.13683,8.0,8.0,8.0,0.00307499,0.0844736
+102,3.370033,0.0,0.0,16.0,31.3823,50.0,236.0,62.0,119.0,124.746,131.0,180.0,98.0,126.0,129.131,132.0,181.0,0.0,1.0,6.28226,13.0,82.0,116.0,140.492,3.20136,1.97491,1.23615,8.0,8.0,8.0,0.00324074,0.0708162
+103,3.4034,0.0,0.0,17.0,31.4945,50.0,239.0,63.0,119.0,124.8,131.0,182.0,98.0,126.0,129.12,132.0,182.0,0.0,1.0,6.23426,13.0,83.0,116.0,140.792,2.71681,1.84826,1.14765,8.0,8.0,8.0,0.00337791,0.0650406
+104,3.436767,0.0,0.0,17.0,31.5984,50.0,237.0,56.0,119.0,124.886,131.0,178.0,98.0,126.0,129.078,132.0,180.0,0.0,1.0,6.20778,13.0,85.0,116.0,140.4,2.10115,1.76055,1.0673,8.0,8.0,8.0,0.00336934,0.0642976
+105,3.470133,0.0,0.0,16.0,31.5514,50.0,235.0,62.0,119.0,124.908,131.0,176.0,94.0,126.0,129.061,132.0,180.0,0.0,1.0,6.25152,14.0,80.0,116.0,141.495,2.77402,1.9731,1.22626,8.0,8.0,8.0,0.00287209,0.070136
+106,3.5035,0.0,0.0,17.0,31.798,51.0,243.0,60.0,119.0,124.785,131.0,178.0,99.0,126.0,129.136,132.0,180.0,0.0,1.0,6.24865,13.0,80.0,116.0,139.506,2.54412,1.99078,1.21916,8.0,8.0,8.0,0.00292924,0.0632459
+107,3.536867,0.0,0.0,17.0,31.533,50.0,242.0,61.0,119.0,124.764,131.0,178.0,96.0,126.0,129.133,132.0,181.0,0.0,1.0,6.26396,13.0,82.0,116.0,140.331,2.65523,1.89936,1.16654,8.0,8.0,8.0,0.00323788,0.069393
+108,3.570233,0.0,0.0,17.0,31.6393,50.0,238.0,60.0,119.0,124.803,131.0,176.0,98.0,126.0,129.154,132.0,181.0,0.0,1.0,6.23089,13.0,81.0,116.0,140.842,2.34067,1.84391,1.14096,8.0,8.0,8.0,0.00314643,0.0600423
+109,3.6036,0.0,0.0,17.0,31.5888,50.0,236.0,62.0,119.0,124.861,131.0,178.0,98.0,126.0,129.143,132.0,180.0,0.0,1.0,6.26814,13.0,82.0,116.0,141.394,2.18054,1.80149,1.16365,8.0,8.0,8.0,0.00310642,0.0688586
+110,3.636967,0.0,0.0,17.0,31.4921,50.0,238.0,62.0,119.0,124.895,131.0,178.0,100.0,126.0,129.056,132.0,182.0,0.0,1.0,6.20716,13.0,82.0,116.0,140.781,2.78651,1.8815,1.20838,8.0,8.0,8.0,0.00283779,0.0677383
+111,3.670333,0.0,0.0,16.0,31.4662,50.0,255.0,61.0,119.0,124.927,131.0,178.0,99.0,126.0,129.136,132.0,181.0,0.0,1.0,6.18674,13.0,81.0,116.0,142.833,2.48734,1.8055,1.14777,8.0,8.0,8.0,0.00318358,0.0750343
+112,3.7037,0.0,0.0,17.0,31.5486,50.0,239.0,59.0,119.0,124.896,131.0,181.0,99.0,126.0,129.081,132.0,180.0,0.0,1.0,6.18324,13.0,84.0,116.0,141.234,2.49461,1.79998,1.14209,8.0,8.0,8.0,0.00328932,0.0637031
+113,3.737067,0.0,0.0,17.0,31.6209,50.0,240.0,62.0,119.0,124.796,131.0,176.0,100.0,126.0,129.151,132.0,181.0,0.0,1.0,6.24931,13.0,82.0,116.0,140.943,2.50265,1.85324,1.14428,8.0,8.0,8.0,0.00355796,0.0668467
+114,3.770433,0.0,0.0,17.0,31.5921,51.0,236.0,61.0,119.0,124.802,131.0,176.0,98.0,126.0,129.101,132.0,181.0,0.0,1.0,6.1942,13.0,82.0,116.0,140.529,2.20599,1.8258,1.09873,8.0,8.0,8.0,0.00347222,0.0664009
+115,3.8038,0.0,0.0,16.0,31.4016,50.0,236.0,61.0,119.0,124.823,131.0,176.0,98.0,126.0,129.038,132.0,181.0,0.0,1.0,6.18912,13.0,82.0,116.0,140.087,2.44996,1.84527,1.11703,8.0,8.0,8.0,0.00302069,0.0684757
+116,3.837167,0.0,0.0,17.0,31.5176,50.0,234.0,60.0,119.0,124.858,131.0,181.0,100.0,126.0,129.167,132.0,181.0,0.0,1.0,6.19431,13.0,82.0,116.0,141.551,2.03238,1.75881,1.12654,8.0,8.0,8.0,0.00318073,0.0688729
+117,3.870533,0.0,0.0,15.0,30.4934,48.0,238.0,63.0,119.0,124.846,131.0,176.0,100.0,126.0,129.041,132.0,181.0,0.0,1.0,6.07207,13.0,81.0,116.0,140.134,2.69729,1.85372,1.17606,8.0,8.0,8.0,0.00291495,0.100394
+118,3.9039,0.0,0.0,12.0,20.1578,26.0,220.0,73.0,119.0,123.23,127.0,137.0,116.0,127.0,130.01,132.0,179.0,0.0,2.0,5.53832,9.0,72.0,108.0,112.744,16.5056,6.19806,3.74513,8.0,8.0,8.0,0.00226052,0.341152
+119,3.937267,0.0,0.0,13.0,21.0708,27.0,156.0,74.0,119.0,123.245,127.0,138.0,116.0,128.0,130.186,132.0,176.0,0.0,2.0,5.48527,9.0,69.0,108.0,114.344,2.23094,2.02294,1.30987,8.0,8.0,8.0,0.00206333,0.271914
+120,3.970633,0.0,0.0,13.0,21.6678,28.0,152.0,76.0,119.0,123.215,127.0,136.0,116.0,128.0,130.231,132.0,177.0,0.0,2.0,5.50673,9.0,70.0,111.0,114.959,2.45606,1.98336,1.28588,8.0,8.0,8.0,0.00195473,0.234534
+121,4.004,0.0,0.0,14.0,21.8887,28.0,155.0,75.0,119.0,123.1,127.0,141.0,115.0,128.0,130.312,132.0,179.0,0.0,2.0,5.62979,9.0,70.0,111.0,114.622,2.17304,1.9316,1.25518,8.0,8.0,8.0,0.00208905,0.214746
+122,4.037367,0.0,0.0,13.0,21.773,28.0,162.0,69.0,119.0,123.116,127.0,137.0,117.0,128.0,130.254,132.0,179.0,0.0,2.0,5.60647,9.0,70.0,111.0,115.256,2.35172,1.99087,1.32591,8.0,8.0,8.0,0.00244627,0.233919
+123,4.070733,0.0,0.0,13.0,21.732,28.0,158.0,71.0,119.0,123.125,127.0,138.0,116.0,128.0,130.282,132.0,177.0,0.0,2.0,5.59887,9.0,69.0,111.0,114.701,2.13355,1.97165,1.2726,8.0,8.0,8.0,0.00241198,0.228538
+124,4.1041,0.0,0.0,13.0,21.7926,28.0,211.0,72.0,119.0,123.148,127.0,138.0,117.0,128.0,130.272,132.0,176.0,0.0,2.0,5.56349,9.0,69.0,111.0,114.715,2.07879,1.90548,1.21296,8.0,8.0,8.0,0.00251486,0.228324
+125,4.137467,0.0,0.0,13.0,21.9299,28.0,214.0,74.0,119.0,123.069,127.0,135.0,116.0,128.0,130.241,132.0,177.0,0.0,2.0,5.62478,9.0,69.0,108.0,113.46,2.31551,1.8939,1.26524,8.0,8.0,8.0,0.00256916,0.220688
+126,4.170833,0.0,0.0,14.0,21.9918,28.0,167.0,74.0,119.0,123.0,127.0,135.0,116.0,128.0,130.323,132.0,179.0,0.0,2.0,5.72977,9.0,70.0,111.0,114.34,2.09523,1.90734,1.27898,8.0,8.0,8.0,0.00245199,0.208842
+127,4.2042,0.0,0.0,13.0,21.9404,28.0,238.0,72.0,119.0,123.054,127.0,137.0,116.0,128.0,130.307,132.0,178.0,0.0,2.0,5.66207,9.0,71.0,111.0,114.861,2.43424,2.00333,1.31831,8.0,8.0,8.0,0.00239769,0.221102
+128,4.237567,0.0,0.0,13.0,21.6517,28.0,166.0,76.0,119.0,123.117,127.0,137.0,117.0,128.0,130.258,132.0,176.0,0.0,2.0,5.60215,9.0,70.0,110.0,114.528,2.31664,1.97294,1.2556,8.0,8.0,8.0,0.00217193,0.229907
+129,4.270933,0.0,0.0,13.0,21.7366,28.0,212.0,72.0,119.0,123.07,127.0,137.0,116.0,128.0,130.272,132.0,177.0,0.0,2.0,5.63796,9.0,70.0,110.0,114.436,2.07028,1.9301,1.23186,8.0,8.0,8.0,0.00217478,0.224723
+130,4.3043,0.0,0.0,13.0,21.7237,28.0,255.0,74.0,119.0,123.149,127.0,137.0,117.0,128.0,130.248,132.0,178.0,0.0,2.0,5.57674,9.0,72.0,110.0,114.718,2.31211,2.01743,1.26927,8.0,8.0,8.0,0.00265489,0.225852
+131,4.337667,0.0,0.0,13.0,21.7593,28.0,255.0,74.0,119.0,123.194,127.0,136.0,117.0,128.0,130.3,132.0,177.0,0.0,2.0,5.55535,9.0,70.0,111.0,115.206,2.08357,1.9658,1.24083,8.0,8.0,8.0,0.00270062,0.21971
+132,4.371033,0.0,0.0,13.0,21.4505,28.0,175.0,74.0,119.0,123.161,127.0,139.0,117.0,128.0,130.297,132.0,177.0,0.0,2.0,5.57914,9.0,70.0,111.0,115.343,2.41937,2.0164,1.30474,8.0,8.0,8.0,0.00225766,0.255038
+133,4.4044,0.0,0.0,13.0,21.6436,28.0,160.0,74.0,119.0,123.093,127.0,138.0,116.0,128.0,130.293,132.0,178.0,0.0,2.0,5.62431,9.0,70.0,111.0,114.507,2.25692,1.97343,1.28412,8.0,8.0,8.0,0.002492,0.233925
+134,4.437767,0.0,0.0,13.0,21.6374,28.0,255.0,74.0,119.0,123.1,127.0,140.0,117.0,128.0,130.346,132.0,178.0,0.0,2.0,5.67214,9.0,70.0,111.0,115.778,2.05051,1.96886,1.2673,8.0,8.0,8.0,0.00249771,0.236394
+135,4.471133,0.0,0.0,13.0,21.7167,28.0,235.0,74.0,119.0,123.114,127.0,138.0,116.0,128.0,130.339,132.0,177.0,0.0,2.0,5.63972,9.0,72.0,111.0,115.644,2.39526,2.05748,1.31654,8.0,8.0,8.0,0.00245485,0.224103
+136,4.5045,0.0,0.0,14.0,21.7822,28.0,157.0,74.0,119.0,122.992,127.0,136.0,115.0,128.0,130.372,132.0,179.0,0.0,2.0,5.74266,9.0,68.0,111.0,115.166,2.11808,1.98592,1.25346,8.0,8.0,8.0,0.00239198,0.214472
+137,4.537867,0.0,0.0,13.0,21.8906,28.0,236.0,67.0,119.0,123.13,127.0,137.0,116.0,128.0,130.347,132.0,179.0,0.0,2.0,5.61955,9.0,72.0,111.0,116.026,2.31738,2.00762,1.29208,8.0,8.0,8.0,0.00218621,0.224257
+138,4.571233,0.0,0.0,14.0,22.1507,28.0,155.0,70.0,119.0,123.023,127.0,141.0,109.0,128.0,130.476,132.0,178.0,0.0,2.0,5.77742,9.0,70.0,113.0,116.871,2.46356,2.05045,1.3271,8.0,8.0,8.0,0.00220336,0.198883
+139,4.6046,0.0,0.0,14.0,22.0384,28.0,194.0,71.0,119.0,123.058,127.0,138.0,104.0,128.0,130.503,132.0,176.0,0.0,2.0,5.72487,9.0,71.0,116.0,117.463,2.19217,2.04951,1.26323,8.0,8.0,8.0,0.00197188,0.20421
+140,4.637967,0.0,0.0,13.0,21.8506,28.0,158.0,69.0,119.0,123.035,127.0,137.0,106.0,128.0,130.413,132.0,177.0,0.0,2.0,5.72756,9.0,67.0,111.0,116.306,2.32003,2.014,1.29895,8.0,8.0,8.0,0.00215764,0.220642
+141,4.671333,0.0,0.0,14.0,22.095,28.0,158.0,73.0,119.0,122.947,127.0,138.0,115.0,128.0,130.498,132.0,182.0,0.0,2.0,5.80793,9.0,71.0,113.0,116.359,2.04697,2.0025,1.26611,8.0,8.0,8.0,0.00227766,0.19581
+142,4.7047,0.0,0.0,13.0,21.8991,28.0,155.0,74.0,119.0,123.022,127.0,138.0,115.0,128.0,130.345,132.0,178.0,0.0,2.0,5.73196,9.0,72.0,111.0,115.787,2.31504,2.03803,1.31933,8.0,8.0,8.0,0.00248342,0.217193
+143,4.738067,0.0,0.0,14.0,22.0205,28.0,211.0,75.0,119.0,123.052,127.0,140.0,116.0,128.0,130.451,132.0,178.0,0.0,2.0,5.71024,9.0,71.0,111.0,116.192,2.24919,2.00545,1.31851,8.0,8.0,8.0,0.00228624,0.20054
+144,4.771433,0.0,0.0,14.0,22.067,28.0,155.0,73.0,119.0,123.007,127.0,138.0,115.0,128.0,130.478,132.0,178.0,0.0,2.0,5.76804,9.0,70.0,116.0,116.884,2.11501,1.9858,1.29052,8.0,8.0,8.0,0.00234625,0.201935
+145,4.8048,0.0,0.0,14.0,22.0801,28.0,255.0,73.0,119.0,122.973,127.0,135.0,116.0,128.0,130.399,132.0,178.0,0.0,2.0,5.75854,9.0,69.0,111.0,115.105,2.48821,2.00769,1.33595,8.0,8.0,8.0,0.0021805,0.202509
+146,4.838167,0.0,0.0,14.0,22.0877,28.0,255.0,74.0,119.0,123.082,127.0,136.0,115.0,128.0,130.426,132.0,180.0,0.0,2.0,5.69696,9.0,71.0,113.0,116.556,2.334,1.98545,1.32679,8.0,8.0,8.0,0.00230053,0.198157
+147,4.871533,0.0,0.0,13.0,21.6443,28.0,163.0,69.0,119.0,123.163,127.0,137.0,116.0,128.0,130.24,132.0,178.0,0.0,2.0,5.55489,9.0,74.0,111.0,115.008,2.35977,2.00256,1.31979,8.0,8.0,8.0,0.00244627,0.239735
+148,4.9049,0.0,0.0,13.0,21.6758,28.0,252.0,73.0,119.0,123.28,127.0,137.0,116.0,128.0,130.327,132.0,178.0,0.0,2.0,5.50034,9.0,72.0,116.0,117.152,2.28953,2.00957,1.3093,8.0,8.0,8.0,0.00230338,0.224969
+149,4.938267,0.0,0.0,13.0,21.5828,28.0,175.0,70.0,119.0,123.276,127.0,137.0,115.0,128.0,130.442,132.0,180.0,0.0,2.0,5.52521,9.0,72.0,116.0,118.601,2.11236,1.97579,1.27239,8.0,8.0,8.0,0.00215478,0.231519
+150,4.971633,0.0,0.0,13.0,21.5919,28.0,157.0,67.0,120.0,123.305,127.0,138.0,114.0,128.0,130.377,132.0,180.0,0.0,2.0,5.49833,9.0,74.0,116.0,117.904,2.28679,2.00814,1.29244,8.0,8.0,8.0,0.00217764,0.234596
+151,5.005,0.0,0.0,13.0,21.7237,28.0,154.0,67.0,120.0,123.299,127.0,137.0,114.0,128.0,130.443,132.0,177.0,0.0,2.0,5.51706,9.0,72.0,116.0,118.213,2.03704,2.0023,1.26626,8.0,8.0,8.0,0.00217764,0.227472
+152,5.038367,0.0,0.0,13.0,21.5422,28.0,158.0,66.0,119.0,123.36,127.0,136.0,113.0,128.0,130.385,132.0,177.0,0.0,2.0,5.43569,9.0,70.0,116.0,118.645,2.36181,2.03623,1.30223,8.0,8.0,8.0,0.00234625,0.243539
+153,5.071733,0.0,0.0,13.0,21.7534,28.0,153.0,66.0,119.0,123.248,127.0,135.0,114.0,128.0,130.513,132.0,178.0,0.0,2.0,5.56079,9.0,70.0,116.0,118.393,2.14727,1.98333,1.28733,8.0,8.0,8.0,0.00232339,0.222016
+154,5.1051,0.0,0.0,13.0,21.5318,28.0,161.0,66.0,119.0,123.32,127.0,137.0,114.0,128.0,130.574,133.0,179.0,0.0,2.0,5.53142,9.0,70.0,116.0,120.269,2.10317,1.96925,1.3032,8.0,8.0,8.0,0.00183185,0.23954
+155,5.138467,0.0,0.0,13.0,21.5675,28.0,157.0,66.0,120.0,123.39,127.0,137.0,112.0,128.0,130.529,132.0,177.0,0.0,2.0,5.44004,9.0,70.0,116.0,119.822,2.22994,2.0127,1.32243,8.0,8.0,8.0,0.0017947,0.234145
+156,5.171833,0.0,0.0,13.0,21.6574,28.0,156.0,66.0,120.0,123.404,127.0,137.0,112.0,128.0,130.606,133.0,179.0,0.0,2.0,5.46586,9.0,70.0,116.0,120.376,2.01522,1.92077,1.29528,8.0,8.0,8.0,0.0017947,0.227058
+157,5.2052,0.0,0.0,13.0,21.587,28.0,255.0,67.0,120.0,123.402,127.0,136.0,116.0,128.0,130.602,132.0,178.0,0.0,2.0,5.44838,9.0,72.0,116.0,120.98,2.2953,1.95653,1.31396,8.0,8.0,8.0,0.00196045,0.236408
+158,5.238567,0.0,0.0,13.0,21.4903,27.0,154.0,66.0,120.0,123.602,127.0,137.0,111.0,128.0,130.617,133.0,177.0,0.0,2.0,5.32714,9.0,68.0,116.0,122.53,2.22795,1.96956,1.29503,8.0,8.0,8.0,0.00186328,0.235314
+159,5.271933,0.0,0.0,13.0,21.5123,28.0,251.0,71.0,120.0,123.653,127.0,137.0,115.0,128.0,130.685,132.0,176.0,0.0,2.0,5.27267,8.0,67.0,120.0,123.765,2.00787,1.92058,1.27765,8.0,8.0,8.0,0.00177183,0.23674
+160,5.3053,0.0,0.0,13.0,21.4289,27.0,158.0,74.0,120.0,123.68,127.0,137.0,112.0,128.0,130.609,132.0,177.0,0.0,2.0,5.23924,8.0,68.0,119.0,123.444,2.20179,1.96312,1.31097,8.0,8.0,8.0,0.00165752,0.242341
+161,5.338667,0.0,0.0,13.0,21.5767,27.0,158.0,74.0,120.0,123.753,127.0,136.0,111.0,128.0,130.728,133.0,176.0,0.0,2.0,5.22338,8.0,67.0,123.0,124.978,2.07946,1.91656,1.28163,8.0,8.0,8.0,0.00192615,0.227272
+162,5.372033,0.0,0.0,13.0,21.4993,28.0,155.0,70.0,120.0,123.859,127.0,136.0,113.0,128.0,130.668,133.0,178.0,0.0,1.0,5.15458,8.0,70.0,123.0,125.915,2.3817,1.97487,1.37324,8.0,8.0,8.0,0.00196045,0.248048
+163,5.4054,0.0,0.0,13.0,21.8502,28.0,255.0,75.0,120.0,123.781,127.0,137.0,113.0,128.0,130.78,133.0,177.0,0.0,2.0,5.23915,8.0,70.0,123.0,126.277,2.22249,1.95087,1.32469,8.0,8.0,8.0,0.0020176,0.214778
+164,5.438767,0.0,0.0,13.0,21.7076,28.0,163.0,71.0,120.0,123.804,127.0,137.0,114.0,128.0,130.835,133.0,180.0,0.0,2.0,5.23693,8.0,71.0,123.0,127.145,2.10338,1.92011,1.26862,8.0,8.0,8.0,0.0019433,0.22368
+165,5.472133,0.0,0.0,13.0,21.818,28.0,159.0,74.0,120.0,123.819,127.0,138.0,115.0,128.0,130.8,133.0,177.0,0.0,1.0,5.21586,8.0,68.0,123.0,126.927,2.33412,1.9263,1.32872,8.0,8.0,8.0,0.00198903,0.21965
+166,5.5055,0.0,0.0,13.0,21.7536,28.0,160.0,73.0,120.0,123.796,127.0,138.0,113.0,128.0,130.892,133.0,178.0,0.0,2.0,5.29471,9.0,69.0,123.0,127.701,2.12132,1.95567,1.30022,8.0,8.0,8.0,0.00193187,0.223508
+167,5.538867,0.0,0.0,13.0,21.7048,28.0,217.0,76.0,120.0,123.85,127.0,138.0,115.0,128.0,130.803,133.0,179.0,0.0,2.0,5.19758,8.0,70.0,123.0,126.959,2.3297,1.98581,1.34115,8.0,8.0,8.0,0.00196045,0.224491
+168,5.572233,0.0,0.0,13.0,21.8295,28.0,158.0,73.0,120.0,123.8,127.0,136.0,116.0,128.0,130.87,133.0,179.0,0.0,2.0,5.28094,8.0,71.0,123.0,127.315,2.18298,1.95317,1.33025,8.0,8.0,8.0,0.00203189,0.214089
+169,5.6056,0.0,0.0,13.0,21.7036,28.0,225.0,73.0,120.0,123.797,127.0,136.0,112.0,128.0,130.907,133.0,178.0,0.0,2.0,5.27912,8.0,69.0,123.0,127.708,2.05879,1.90484,1.28567,8.0,8.0,8.0,0.0021262,0.225989
+170,5.638967,0.0,0.0,13.0,21.6255,28.0,154.0,73.0,120.0,123.831,127.0,137.0,114.0,128.0,130.797,133.0,178.0,0.0,1.0,5.20694,8.0,67.0,123.0,127.114,2.45501,2.04068,1.3919,8.0,8.0,8.0,0.00187186,0.232633
+171,5.672333,0.0,0.0,14.0,21.8895,28.0,158.0,74.0,120.0,123.782,127.0,135.0,114.0,128.0,130.937,133.0,179.0,0.0,2.0,5.2972,8.0,71.0,123.0,127.679,2.26611,1.9569,1.35409,8.0,8.0,8.0,0.00179755,0.209777
+172,5.7057,0.0,0.0,14.0,21.9435,28.0,255.0,75.0,120.0,123.806,127.0,137.0,114.0,128.0,130.853,133.0,178.0,0.0,2.0,5.23831,8.0,70.0,123.0,127.025,2.2176,1.94983,1.32261,8.0,8.0,8.0,0.00215192,0.20787
+173,5.739067,0.0,0.0,14.0,21.8912,28.0,160.0,74.0,120.0,123.92,127.0,136.0,114.0,128.0,130.876,133.0,178.0,0.0,2.0,5.16237,8.0,70.0,125.0,128.976,2.17235,1.89798,1.29174,8.0,8.0,8.0,0.00194616,0.206716
+174,5.772433,0.0,0.0,13.0,21.8018,28.0,157.0,73.0,120.0,123.943,128.0,136.0,113.0,128.0,130.838,133.0,179.0,0.0,1.0,5.15449,8.0,74.0,124.0,128.715,2.12528,1.89473,1.30201,8.0,8.0,8.0,0.00202046,0.22043
+175,5.8058,0.0,0.0,13.0,21.8437,28.0,154.0,73.0,120.0,123.899,127.0,137.0,114.0,128.0,130.823,133.0,178.0,0.0,1.0,5.1683,8.0,72.0,123.0,127.396,2.27259,1.95864,1.32372,8.0,8.0,8.0,0.00187471,0.21797
+176,5.839167,0.0,0.0,14.0,21.9448,28.0,155.0,74.0,120.0,123.817,127.0,138.0,115.0,128.0,130.896,133.0,179.0,0.0,2.0,5.28276,8.0,72.0,123.0,127.718,2.01728,1.89382,1.28362,8.0,8.0,8.0,0.00200903,0.208205
+177,5.872533,0.0,0.0,13.0,21.9689,28.0,255.0,74.0,120.0,123.796,127.0,135.0,114.0,128.0,130.906,133.0,178.0,0.0,2.0,5.29319,8.0,69.0,123.0,127.797,2.39195,1.95591,1.32526,8.0,8.0,8.0,0.00215192,0.217172
+178,5.9059,0.0,0.0,13.0,21.9888,28.0,161.0,73.0,120.0,123.819,127.0,136.0,115.0,128.0,130.938,133.0,177.0,0.0,2.0,5.31621,8.0,72.0,123.0,128.129,2.232,1.9624,1.34196,8.0,8.0,8.0,0.00204904,0.210248
+179,5.939267,0.0,0.0,13.0,21.879,28.0,255.0,57.0,120.0,123.885,127.0,138.0,115.0,128.0,130.967,133.0,177.0,0.0,2.0,5.2569,8.0,72.0,126.0,129.319,2.06396,1.9464,1.29831,8.0,8.0,8.0,0.00173182,0.221076
+180,5.972633,0.0,0.0,13.0,21.9795,28.0,236.0,64.0,120.0,123.861,127.0,139.0,114.0,128.0,130.877,133.0,178.0,0.0,2.0,5.2401,9.0,70.0,123.0,128.018,2.26633,1.99358,1.33746,8.0,8.0,8.0,0.00174897,0.210502
+181,6.006,0.0,0.0,14.0,22.0901,28.0,250.0,74.0,120.0,123.819,127.0,138.0,114.0,128.0,130.938,133.0,179.0,0.0,2.0,5.29825,8.0,71.0,123.0,128.066,2.10452,1.96915,1.32402,8.0,8.0,8.0,0.00192901,0.20557
+182,6.039367,0.0,0.0,13.0,21.8128,28.0,157.0,74.0,120.0,123.81,127.0,139.0,114.0,128.0,130.921,133.0,178.0,0.0,2.0,5.30696,9.0,71.0,123.0,127.838,2.264,1.97369,1.35528,8.0,8.0,8.0,0.00198617,0.220296
+183,6.072733,0.0,0.0,13.0,21.9261,28.0,233.0,73.0,120.0,123.744,127.0,137.0,112.0,128.0,130.972,133.0,178.0,0.0,2.0,5.35025,8.0,70.0,123.0,127.559,2.22149,1.96011,1.32503,8.0,8.0,8.0,0.00198617,0.215746
+184,6.1061,0.0,0.0,13.0,21.9258,28.0,247.0,73.0,120.0,123.71,127.0,138.0,113.0,128.0,131.042,133.0,177.0,0.0,2.0,5.45157,9.0,71.0,126.0,128.893,2.04192,1.95318,1.30162,8.0,8.0,8.0,0.00200617,0.221011
+185,6.139467,0.0,0.0,13.0,21.9343,28.0,251.0,73.0,120.0,123.723,127.0,138.0,113.0,128.0,130.991,133.0,177.0,0.0,2.0,5.39015,8.0,70.0,123.0,127.696,2.30402,1.99733,1.35556,8.0,8.0,8.0,0.00206904,0.216975
+186,6.172833,0.0,0.0,13.0,21.9737,28.0,255.0,72.0,120.0,123.745,127.0,136.0,114.0,128.0,130.985,133.0,177.0,0.0,2.0,5.37874,9.0,70.0,126.0,127.965,2.17652,1.98993,1.29447,8.0,8.0,8.0,0.00217764,0.213009
+187,6.2062,0.0,0.0,14.0,21.9941,28.0,155.0,75.0,120.0,123.683,127.0,138.0,114.0,128.0,131.003,133.0,177.0,0.0,2.0,5.41823,9.0,70.0,123.0,127.677,2.27144,1.98869,1.31893,8.0,8.0,8.0,0.00201189,0.210745
+188,6.239567,0.0,0.0,14.0,21.9415,28.0,255.0,75.0,120.0,123.657,127.0,139.0,114.0,128.0,131.089,133.0,180.0,0.0,2.0,5.48896,9.0,73.0,126.0,128.364,2.22694,2.00093,1.31651,8.0,8.0,8.0,0.00206047,0.210537
+189,6.272933,0.0,0.0,14.0,22.0279,28.0,158.0,74.0,120.0,123.724,127.0,136.0,114.0,128.0,131.097,133.0,179.0,0.0,2.0,5.42734,9.0,70.0,126.0,128.63,2.05871,1.95103,1.2946,8.0,8.0,8.0,0.00198617,0.204847
+190,6.3063,0.0,0.0,13.0,21.7863,28.0,254.0,72.0,120.0,123.699,127.0,138.0,114.0,128.0,130.96,133.0,177.0,0.0,2.0,5.39452,8.0,71.0,123.0,126.472,2.26727,1.97228,1.34264,8.0,8.0,8.0,0.00207762,0.221505
+191,6.339667,0.0,0.0,14.0,21.9283,28.0,255.0,74.0,120.0,123.597,127.0,139.0,114.0,128.0,131.089,133.0,176.0,0.0,2.0,5.50545,9.0,70.0,123.0,127.624,2.05061,1.92976,1.26555,8.0,8.0,8.0,0.00208048,0.201535
+192,6.373033,0.0,0.0,13.0,21.7261,28.0,253.0,70.0,120.0,123.64,127.0,137.0,113.0,128.0,130.997,133.0,176.0,0.0,2.0,5.44423,9.0,72.0,123.0,126.72,2.43024,1.99167,1.35312,8.0,8.0,8.0,0.00212048,0.226872
+193,6.4064,0.0,0.0,14.0,22.0216,28.0,219.0,72.0,120.0,123.543,127.0,137.0,113.0,128.0,131.086,133.0,177.0,0.0,2.0,5.56076,9.0,69.0,123.0,127.183,2.21045,2.0023,1.33498,8.0,8.0,8.0,0.00196045,0.200923
+194,6.439767,0.0,0.0,13.0,21.6407,28.0,157.0,74.0,120.0,123.678,127.0,139.0,114.0,128.0,131.032,133.0,177.0,0.0,2.0,5.46219,9.0,71.0,123.0,127.795,2.16801,2.00476,1.35357,8.0,8.0,8.0,0.00187471,0.230367
+195,6.473133,0.0,0.0,13.0,21.8232,28.0,255.0,72.0,120.0,123.672,127.0,136.0,113.0,128.0,130.933,133.0,178.0,0.0,2.0,5.3789,9.0,69.0,123.0,126.609,2.42282,2.01486,1.40369,8.0,8.0,8.0,0.00190043,0.214689
+196,6.5065,0.0,0.0,14.0,22.088,28.0,208.0,70.0,120.0,123.643,127.0,136.0,114.0,128.0,131.018,133.0,177.0,0.0,2.0,5.46006,9.0,70.0,124.0,127.699,2.20804,1.93387,1.3386,8.0,8.0,8.0,0.00197759,0.192916
+197,6.539867,0.0,0.0,14.0,21.9468,28.0,155.0,69.0,120.0,123.694,127.0,139.0,114.0,128.0,130.981,133.0,177.0,0.0,2.0,5.41192,9.0,71.0,123.0,127.775,2.21721,1.99495,1.35471,8.0,8.0,8.0,0.00188329,0.211285
+198,6.573233,0.0,0.0,14.0,22.1314,28.0,156.0,66.0,120.0,123.736,127.0,138.0,115.0,128.0,130.955,133.0,179.0,0.0,2.0,5.37725,9.0,70.0,123.0,127.564,2.21614,1.99316,1.37878,8.0,8.0,8.0,0.00197759,0.192347
+199,6.6066,0.0,0.0,14.0,22.1381,29.0,255.0,72.0,120.0,123.699,127.0,136.0,113.0,128.0,131.04,133.0,177.0,0.0,2.0,5.43493,9.0,70.0,126.0,128.683,2.09198,1.9687,1.38339,8.0,8.0,8.0,0.00196331,0.203738
+200,6.639967,0.0,0.0,14.0,22.0664,28.0,152.0,74.0,120.0,123.52,127.0,141.0,114.0,128.0,130.947,133.0,178.0,0.0,2.0,5.5147,9.0,70.0,123.0,125.439,2.23435,2.02575,1.35185,8.0,8.0,8.0,0.00197759,0.207928
+201,6.673333,0.0,0.0,14.0,22.1649,28.0,155.0,74.0,120.0,123.559,127.0,137.0,115.0,128.0,131.061,133.0,178.0,0.0,2.0,5.54119,9.0,70.0,123.0,126.757,2.08667,1.94048,1.30625,8.0,8.0,8.0,0.00180041,0.193433
+202,6.7067,0.0,0.0,14.0,22.0474,28.0,154.0,72.0,120.0,123.629,127.0,140.0,113.0,128.0,130.925,133.0,176.0,0.0,2.0,5.44651,9.0,69.0,123.0,126.529,2.51697,2.03572,1.43098,8.0,8.0,8.0,0.001869,0.196468
+203,6.740067,0.0,0.0,14.0,22.0664,28.0,255.0,75.0,120.0,123.589,127.0,136.0,114.0,128.0,131.019,133.0,180.0,0.0,2.0,5.49646,9.0,70.0,123.0,127.02,2.37851,2.04627,1.41071,8.0,8.0,8.0,0.00182042,0.203595
+204,6.773433,0.0,0.0,14.0,22.058,28.0,170.0,73.0,120.0,123.665,127.0,137.0,114.0,128.0,130.983,133.0,177.0,0.0,2.0,5.44334,9.0,71.0,123.0,126.975,2.14763,1.97995,1.36337,8.0,8.0,8.0,0.0018147,0.209022
+205,6.8068,0.0,0.0,14.0,22.1016,28.0,161.0,70.0,120.0,123.635,127.0,135.0,115.0,128.0,130.892,133.0,177.0,0.0,2.0,5.37909,9.0,73.0,123.0,125.788,2.35299,1.96238,1.38698,8.0,8.0,8.0,0.00170039,0.2017
+206,6.840167,0.0,0.0,14.0,22.094,28.0,255.0,72.0,120.0,123.671,127.0,138.0,113.0,128.0,130.983,133.0,178.0,0.0,2.0,5.43687,9.0,71.0,123.0,127.741,2.13545,1.91351,1.33057,8.0,8.0,8.0,0.00192044,0.201612
+207,6.873533,0.0,0.0,13.0,21.8111,28.0,157.0,73.0,120.0,123.603,127.0,136.0,114.0,128.0,130.933,133.0,177.0,0.0,2.0,5.44459,9.0,68.0,123.0,126.549,2.29338,1.98528,1.3614,8.0,8.0,8.0,0.00178612,0.21805
+208,6.9069,0.0,0.0,14.0,21.9598,28.0,255.0,69.0,120.0,123.59,127.0,141.0,113.0,128.0,131.046,133.0,179.0,0.0,2.0,5.51823,9.0,75.0,123.0,127.475,2.26902,1.98977,1.33658,8.0,8.0,8.0,0.00205476,0.20761
+209,6.940267,0.0,0.0,14.0,21.9873,28.0,157.0,71.0,120.0,123.63,127.0,141.0,113.0,128.0,131.06,133.0,178.0,0.0,2.0,5.50114,9.0,69.0,123.0,127.736,2.04393,1.94449,1.29518,8.0,8.0,8.0,0.00178612,0.206301
+210,6.973633,0.0,0.0,14.0,22.0282,28.0,151.0,74.0,120.0,123.646,127.0,137.0,115.0,128.0,130.983,133.0,177.0,0.0,2.0,5.45685,9.0,70.0,123.0,127.307,2.33744,2.02947,1.4004,8.0,8.0,8.0,0.00190329,0.195205
+211,7.007,0.0,0.0,14.0,22.2054,28.0,156.0,39.0,120.0,123.671,127.0,167.0,110.0,128.0,131.011,133.0,180.0,0.0,2.0,5.44439,9.0,90.0,124.0,127.955,2.16304,2.00936,1.35597,8.0,8.0,8.0,0.00147462,0.18211
+212,7.040367,0.0,0.0,13.0,21.83,28.0,158.0,39.0,120.0,123.618,127.0,170.0,110.0,128.0,130.882,133.0,179.0,0.0,2.0,5.44121,9.0,90.0,123.0,126.046,2.19958,1.99765,1.35422,8.0,8.0,8.0,0.00165466,0.210808
+213,7.073733,0.0,0.0,13.0,21.6454,28.0,159.0,39.0,120.0,123.685,127.0,167.0,110.0,128.0,130.937,133.0,180.0,0.0,2.0,5.40982,9.0,90.0,123.0,127.266,2.20218,2.00095,1.35322,8.0,8.0,8.0,0.00161465,0.226846
+214,7.1071,0.0,0.0,13.0,21.6087,28.0,162.0,70.0,120.0,123.689,127.0,138.0,112.0,128.0,130.909,133.0,177.0,0.0,2.0,5.40863,9.0,72.0,123.0,127.315,2.10726,2.0188,1.34377,8.0,8.0,8.0,0.00205761,0.24193
+215,7.140467,0.0,0.0,13.0,21.7224,28.0,156.0,72.0,120.0,123.751,127.0,136.0,114.0,128.0,130.852,133.0,178.0,0.0,2.0,5.30687,9.0,71.0,123.0,126.929,2.26677,2.02985,1.35746,8.0,8.0,8.0,0.00198045,0.230338
+216,7.173833,0.0,0.0,14.0,21.995,28.0,184.0,73.0,120.0,123.769,127.0,137.0,113.0,128.0,130.889,133.0,178.0,0.0,2.0,5.32173,9.0,71.0,123.0,127.733,2.03369,1.96216,1.30455,8.0,8.0,8.0,0.00203475,0.211763
+217,7.2072,0.0,0.0,13.0,21.7243,28.0,154.0,71.0,120.0,123.831,127.0,137.0,113.0,128.0,130.792,133.0,178.0,0.0,1.0,5.18914,8.0,70.0,123.0,126.564,2.30978,1.98895,1.32302,8.0,8.0,8.0,0.00187757,0.224157
+218,7.240567,0.0,0.0,13.0,21.481,28.0,214.0,67.0,120.0,123.967,128.0,139.0,114.0,128.0,130.716,133.0,177.0,0.0,1.0,5.09723,8.0,70.0,123.0,127.697,2.24134,1.9466,1.32015,8.0,8.0,8.0,0.00202618,0.252652
+219,7.273933,0.0,0.0,13.0,21.4827,28.0,155.0,73.0,120.0,124.027,128.0,137.0,114.0,128.0,130.791,133.0,182.0,0.0,1.0,5.0631,8.0,71.0,126.0,128.901,2.13703,1.98189,1.33162,8.0,8.0,8.0,0.00191472,0.246608
+220,7.3073,0.0,0.0,13.0,21.5412,28.0,152.0,72.0,120.0,123.99,128.0,136.0,112.0,128.0,130.671,133.0,177.0,0.0,1.0,5.05408,8.0,73.0,123.0,127.244,2.44614,2.03463,1.33504,8.0,8.0,8.0,0.00180327,0.240918
+221,7.340667,0.0,0.0,13.0,21.6102,28.0,192.0,74.0,120.0,123.952,128.0,137.0,113.0,128.0,130.755,133.0,176.0,0.0,1.0,5.11116,8.0,70.0,123.0,127.714,2.2467,1.95863,1.31013,8.0,8.0,8.0,0.00202046,0.23824
+222,7.374033,0.0,0.0,13.0,21.4401,28.0,153.0,75.0,120.0,124.04,128.0,139.0,113.0,128.0,130.617,133.0,177.0,0.0,1.0,4.99768,8.0,70.0,123.0,126.883,2.27954,1.92904,1.31847,8.0,8.0,8.0,0.0020719,0.252392
+223,7.4074,0.0,0.0,13.0,21.9736,28.0,255.0,68.0,120.0,123.912,128.0,137.0,113.0,128.0,130.711,133.0,177.0,0.0,1.0,5.11278,8.0,76.0,123.0,126.611,2.21354,1.96078,1.3221,8.0,8.0,8.0,0.00215192,0.218261
+224,7.440767,0.0,0.0,13.0,21.8514,28.0,245.0,74.0,120.0,123.898,128.0,137.0,113.0,128.0,130.749,133.0,176.0,0.0,1.0,5.14887,8.0,70.0,123.0,127.038,2.18097,1.97583,1.32796,8.0,8.0,8.0,0.0023634,0.229958
+225,7.474133,0.0,0.0,13.0,21.9248,28.0,155.0,73.0,120.0,123.93,128.0,136.0,115.0,128.0,130.662,133.0,177.0,0.0,1.0,5.09386,8.0,71.0,123.0,126.694,2.33362,1.97629,1.34259,8.0,8.0,8.0,0.00242055,0.214223
+226,7.5075,0.0,0.0,13.0,21.9094,28.0,255.0,72.0,120.0,123.955,128.0,137.0,113.0,128.0,130.746,133.0,179.0,0.0,1.0,5.12262,8.0,73.0,123.0,127.445,2.20292,1.95144,1.32757,8.0,8.0,8.0,0.00266918,0.219222
+227,7.540867,0.0,0.0,13.0,21.9238,28.0,248.0,73.0,120.0,124.035,128.0,136.0,116.0,128.0,130.635,133.0,177.0,0.0,1.0,4.98968,8.0,69.0,123.0,127.263,2.42388,1.97916,1.33332,8.0,8.0,8.0,0.00255773,0.217353
+228,7.574233,0.0,0.0,14.0,21.94,28.0,255.0,72.0,120.0,124.077,128.0,138.0,115.0,128.0,130.639,133.0,179.0,0.0,1.0,4.96524,8.0,73.0,123.0,127.433,2.55429,1.95604,1.30963,8.0,8.0,8.0,0.00247771,0.21254
+229,7.6076,0.0,0.0,13.0,21.822,28.0,253.0,72.0,121.0,124.21,128.0,138.0,113.0,128.0,130.691,133.0,178.0,0.0,1.0,4.89342,8.0,73.0,126.0,129.741,2.06896,1.91405,1.23681,8.0,8.0,8.0,0.00234625,0.221179
+230,7.640967,0.0,0.0,13.0,21.9152,28.0,255.0,73.0,120.0,124.202,128.0,139.0,114.0,128.0,130.588,133.0,177.0,0.0,1.0,4.90263,8.0,70.0,123.0,128.672,2.3493,1.98291,1.32007,8.0,8.0,8.0,0.00219479,0.215638
+231,7.674333,0.0,0.0,14.0,22.0835,28.0,157.0,73.0,121.0,124.237,128.0,137.0,113.0,128.0,130.654,133.0,179.0,0.0,1.0,4.86818,8.0,73.0,126.0,130.074,2.20716,1.94254,1.31861,8.0,8.0,8.0,0.00235197,0.202346
+232,7.7077,0.0,0.0,14.0,21.957,28.0,155.0,74.0,120.0,124.205,128.0,137.0,114.0,128.0,130.597,132.0,179.0,0.0,1.0,4.87453,8.0,73.0,123.0,128.887,2.2632,1.94363,1.28595,8.0,8.0,8.0,0.00214049,0.206064
+233,7.741067,0.0,0.0,14.0,22.0123,28.0,206.0,71.0,120.0,124.137,128.0,137.0,114.0,128.0,130.67,133.0,178.0,0.0,1.0,4.93851,8.0,72.0,123.0,128.566,2.28077,1.95424,1.29082,8.0,8.0,8.0,0.00221765,0.209488
+234,7.774433,0.0,0.0,13.0,21.902,28.0,239.0,68.0,120.0,124.001,128.0,137.0,113.0,128.0,130.744,133.0,178.0,0.0,1.0,5.09497,8.0,75.0,123.0,128.409,2.25562,2.00665,1.31871,8.0,8.0,8.0,0.00218907,0.218233
+235,7.8078,0.0,0.0,14.0,22.113,28.0,249.0,71.0,120.0,124.09,128.0,137.0,114.0,128.0,130.662,133.0,177.0,0.0,1.0,4.96826,8.0,73.0,123.0,128.352,2.45586,1.99192,1.32395,8.0,8.0,8.0,0.00228624,0.202375
+236,7.841167,0.0,0.0,14.0,22.1109,28.0,155.0,73.0,120.0,124.103,128.0,139.0,113.0,128.0,130.729,133.0,179.0,0.0,1.0,4.99152,8.0,71.0,125.0,129.076,2.15704,1.91103,1.27074,8.0,8.0,8.0,0.00221765,0.200229
+237,7.874533,0.0,0.0,13.0,21.8774,28.0,254.0,73.0,120.0,124.109,128.0,137.0,115.0,128.0,130.731,133.0,176.0,0.0,1.0,4.98745,8.0,71.0,126.0,129.557,2.25204,1.92686,1.28961,8.0,8.0,8.0,0.00255487,0.22552
+238,7.9079,0.0,0.0,13.0,21.9279,28.0,195.0,73.0,120.0,124.137,128.0,135.0,114.0,128.0,130.749,133.0,177.0,0.0,1.0,5.00626,8.0,72.0,126.0,129.907,2.44692,1.96901,1.33321,8.0,8.0,8.0,0.00226052,0.216132
+239,7.941267,0.0,0.0,13.0,21.9444,28.0,255.0,75.0,120.0,124.092,128.0,140.0,114.0,128.0,130.802,133.0,178.0,0.0,1.0,5.04403,8.0,70.0,126.0,129.828,2.05639,1.93404,1.29465,8.0,8.0,8.0,0.00232625,0.214466
+240,7.974633,0.0,0.0,14.0,22.0458,28.0,255.0,71.0,120.0,124.054,128.0,139.0,115.0,128.0,130.715,133.0,178.0,0.0,1.0,5.03283,8.0,73.0,123.0,128.526,2.2102,1.92617,1.29602,8.0,8.0,8.0,0.0024177,0.197317
+241,8.008,0.0,0.0,14.0,22.1868,28.0,255.0,75.0,120.0,124.092,128.0,140.0,115.0,128.0,130.807,133.0,177.0,0.0,1.0,5.02457,8.0,68.0,126.0,129.269,2.00678,1.931,1.25814,8.0,8.0,8.0,0.00244342,0.192172
+242,8.041367,0.0,0.0,13.0,21.8184,28.0,154.0,75.0,120.0,124.037,128.0,138.0,114.0,128.0,130.708,133.0,178.0,0.0,1.0,5.07188,8.0,69.0,123.0,128.377,2.51598,2.02061,1.35914,8.0,8.0,8.0,0.00206047,0.217761
+243,8.074733,0.0,0.0,14.0,21.9326,28.0,155.0,73.0,121.0,124.138,128.0,138.0,115.0,128.0,130.762,133.0,179.0,0.0,1.0,4.99725,8.0,69.0,126.0,129.956,2.33715,1.99633,1.3715,8.0,8.0,8.0,0.00202618,0.209959
+244,8.1081,0.0,0.0,13.0,21.7458,28.0,158.0,72.0,120.0,124.14,128.0,138.0,114.0,128.0,130.78,133.0,178.0,0.0,1.0,5.03336,8.0,71.0,126.0,130.782,2.03687,1.92684,1.28578,8.0,8.0,8.0,0.00199474,0.222254
+245,8.141467,0.0,0.0,13.0,21.7104,28.0,251.0,75.0,120.0,124.133,128.0,137.0,115.0,128.0,130.652,133.0,177.0,0.0,1.0,4.93592,8.0,69.0,123.0,129.104,2.31867,1.98155,1.33461,8.0,8.0,8.0,0.00193187,0.227189
+246,8.174833,0.0,0.0,13.0,21.9081,28.0,153.0,76.0,120.0,124.206,128.0,141.0,114.0,128.0,130.669,133.0,178.0,0.0,1.0,4.91821,8.0,70.0,126.0,129.81,2.18614,1.92229,1.2955,8.0,8.0,8.0,0.00197474,0.216998
+247,8.2082,0.0,0.0,13.0,21.735,28.0,250.0,70.0,120.0,124.162,128.0,138.0,115.0,128.0,130.624,133.0,177.0,0.0,1.0,4.89061,8.0,74.0,123.0,128.344,2.21281,1.97567,1.31144,8.0,8.0,8.0,0.00177469,0.222962
+248,8.241567,0.0,0.0,13.0,21.6073,28.0,154.0,70.0,120.0,124.23,128.0,137.0,114.0,128.0,130.615,133.0,176.0,0.0,1.0,4.86635,8.0,70.0,126.0,129.873,2.21606,1.95364,1.30215,8.0,8.0,8.0,0.00188043,0.232056
+249,8.274933,0.0,0.0,13.0,21.7177,28.0,159.0,74.0,120.0,124.218,128.0,139.0,115.0,128.0,130.667,133.0,178.0,0.0,1.0,4.89144,8.0,70.0,126.0,129.674,2.07045,1.92559,1.28259,8.0,8.0,8.0,0.00195759,0.23091
+250,8.3083,0.0,0.0,13.0,21.5982,28.0,250.0,74.0,120.0,124.099,128.0,137.0,114.0,128.0,130.573,133.0,177.0,0.0,1.0,4.95103,8.0,70.0,123.0,127.473,2.28427,2.01326,1.32108,8.0,8.0,8.0,0.00202904,0.230667
+251,8.341667,0.0,0.0,13.0,21.7065,28.0,160.0,73.0,121.0,124.226,128.0,136.0,114.0,128.0,130.631,133.0,175.0,0.0,1.0,4.85514,8.0,70.0,126.0,129.907,2.08417,1.96015,1.28865,8.0,8.0,8.0,0.00211763,0.221465
+252,8.375033,0.0,0.0,13.0,21.3271,28.0,255.0,74.0,120.0,124.242,128.0,137.0,115.0,128.0,130.543,132.0,177.0,0.0,1.0,4.82461,8.0,70.0,123.0,128.93,2.52636,1.99849,1.33301,8.0,8.0,8.0,0.00201475,0.258336
+253,8.4084,0.0,0.0,13.0,21.5716,28.0,255.0,69.0,120.0,124.157,128.0,137.0,115.0,128.0,130.608,132.0,176.0,0.0,1.0,4.90696,8.0,74.0,123.0,128.657,2.29989,1.97665,1.29966,8.0,8.0,8.0,0.00193759,0.23217
+254,8.441767,0.0,0.0,13.0,21.4591,28.0,255.0,73.0,120.0,124.13,128.0,137.0,115.0,128.0,130.634,133.0,178.0,0.0,1.0,4.96751,8.0,72.0,123.0,128.764,2.12347,1.99404,1.31215,8.0,8.0,8.0,0.00196331,0.242778
+255,8.475133,0.0,0.0,13.0,21.7099,28.0,156.0,73.0,121.0,124.171,128.0,137.0,116.0,128.0,130.611,132.0,178.0,0.0,1.0,4.89503,8.0,71.0,123.0,128.552,2.38707,2.02325,1.34108,8.0,8.0,8.0,0.00189472,0.22594
+256,8.5085,0.0,0.0,13.0,21.7432,28.0,155.0,74.0,120.0,124.136,128.0,136.0,114.0,128.0,130.678,133.0,176.0,0.0,1.0,4.94482,8.0,68.0,124.0,128.878,2.14407,1.92932,1.30103,8.0,8.0,8.0,0.00189472,0.223368
+257,8.541867,0.0,0.0,13.0,21.6795,28.0,152.0,71.0,120.0,124.171,128.0,138.0,115.0,128.0,130.619,132.0,176.0,0.0,1.0,4.89582,8.0,73.0,123.0,128.651,2.25699,1.90335,1.32148,8.0,8.0,8.0,0.00196902,0.231759
+258,8.575233,0.0,0.0,13.0,21.9878,28.0,255.0,69.0,120.0,124.146,128.0,137.0,115.0,128.0,130.625,133.0,176.0,0.0,1.0,4.9426,8.0,69.0,123.0,128.575,2.28951,1.98635,1.34786,8.0,8.0,8.0,0.00206619,0.212148
+259,8.6086,0.0,0.0,13.0,21.9017,28.0,152.0,74.0,121.0,124.233,128.0,138.0,114.0,128.0,130.774,133.0,178.0,0.0,1.0,4.90532,8.0,69.0,128.0,131.079,2.09917,1.92333,1.30844,8.0,8.0,8.0,0.00182327,0.218204
+260,8.641967,0.0,0.0,13.0,21.84,28.0,193.0,76.0,120.0,124.078,128.0,138.0,115.0,128.0,130.752,133.0,183.0,0.0,1.0,5.01922,8.0,73.0,125.0,128.905,2.32034,1.9515,1.3067,8.0,8.0,8.0,0.00178326,0.220619
+261,8.675333,0.0,0.0,14.0,22.025,28.0,255.0,73.0,120.0,123.953,128.0,138.0,115.0,128.0,130.862,133.0,178.0,0.0,1.0,5.14763,8.0,70.0,126.0,128.683,2.16321,1.94422,1.2989,8.0,8.0,8.0,0.00186614,0.204698
+262,8.7087,0.0,0.0,14.0,22.2186,29.0,178.0,72.0,120.0,123.877,127.0,138.0,115.0,128.0,130.863,133.0,180.0,0.0,2.0,5.22556,8.0,71.0,123.0,127.829,2.23276,1.99306,1.34514,8.0,8.0,8.0,0.00207476,0.194825
+263,8.742067,0.0,0.0,14.0,22.2842,29.0,224.0,74.0,120.0,123.921,128.0,137.0,115.0,128.0,130.869,133.0,181.0,0.0,1.0,5.18182,8.0,72.0,126.0,128.915,2.259,1.98617,1.33706,8.0,8.0,8.0,0.00194044,0.189186
+264,8.775433,0.0,0.0,14.0,22.1125,29.0,174.0,74.0,120.0,124.025,128.0,138.0,115.0,128.0,130.869,133.0,177.0,0.0,1.0,5.11279,8.0,70.0,126.0,129.655,2.03942,1.94465,1.29316,8.0,8.0,8.0,0.00196902,0.20162
+265,8.8088,0.0,0.0,14.0,22.1136,28.0,217.0,74.0,120.0,124.064,128.0,138.0,115.0,128.0,130.691,133.0,176.0,0.0,1.0,4.99928,8.0,69.0,123.0,128.042,2.18086,1.92619,1.31783,8.0,8.0,8.0,0.00203189,0.196948
+266,8.842167,0.0,0.0,14.0,22.2627,29.0,255.0,76.0,120.0,124.02,128.0,137.0,115.0,128.0,130.773,133.0,177.0,0.0,1.0,5.07038,8.0,69.0,123.0,128.313,2.07811,1.91603,1.28497,8.0,8.0,8.0,0.00210048,0.192092
+267,8.875533,0.0,0.0,13.0,21.9391,28.0,209.0,73.0,120.0,124.003,128.0,137.0,115.0,128.0,130.747,133.0,175.0,0.0,1.0,5.05774,8.0,71.0,123.0,128.413,2.3341,1.97112,1.34193,8.0,8.0,8.0,0.00209762,0.216441
+268,8.9089,0.0,0.0,14.0,22.0783,29.0,153.0,72.0,120.0,124.013,128.0,137.0,115.0,128.0,130.773,133.0,175.0,0.0,1.0,5.06758,8.0,69.0,124.0,128.171,2.19053,1.95087,1.29907,8.0,8.0,8.0,0.00197759,0.207925
+269,8.942267,0.0,0.0,14.0,22.1065,29.0,252.0,72.0,120.0,124.015,128.0,136.0,116.0,128.0,130.839,133.0,180.0,0.0,1.0,5.10269,8.0,72.0,126.0,129.512,2.05773,1.94644,1.26856,8.0,8.0,8.0,0.00210048,0.206644
+270,8.975633,0.0,0.0,14.0,22.1328,29.0,154.0,74.0,120.0,123.947,128.0,137.0,114.0,128.0,130.777,133.0,179.0,0.0,1.0,5.15201,8.0,71.0,123.0,127.795,2.28982,1.97596,1.35153,8.0,8.0,8.0,0.0019976,0.198157
+271,9.009,0.0,0.0,14.0,22.193,29.0,196.0,73.0,120.0,123.973,128.0,137.0,115.0,128.0,130.82,133.0,176.0,0.0,1.0,5.12612,8.0,70.0,126.0,128.693,2.13234,1.97075,1.33189,8.0,8.0,8.0,0.00196616,0.192404
+272,9.042367,0.0,0.0,14.0,21.952,28.0,255.0,73.0,120.0,123.884,128.0,154.0,114.0,128.0,130.761,133.0,177.0,0.0,1.0,5.16501,9.0,70.0,123.0,127.559,2.20572,1.977,1.30143,8.0,8.0,8.0,0.00200332,0.20797
+273,9.075733,0.0,0.0,14.0,21.9661,28.0,161.0,75.0,120.0,123.991,128.0,137.0,115.0,128.0,130.727,133.0,176.0,0.0,1.0,5.08538,8.0,68.0,123.0,127.745,2.17724,1.93009,1.31005,8.0,8.0,8.0,0.00184328,0.210794
+274,9.1091,0.0,0.0,13.0,21.8617,28.0,246.0,73.0,120.0,123.967,128.0,138.0,111.0,128.0,130.768,133.0,176.0,0.0,1.0,5.13788,8.0,70.0,123.0,128.023,2.24339,1.98604,1.36439,8.0,8.0,8.0,0.00199474,0.2242
+275,9.142467,0.0,0.0,13.0,21.9747,28.0,156.0,74.0,120.0,123.961,128.0,139.0,116.0,128.0,130.628,133.0,176.0,0.0,1.0,5.0701,8.0,68.0,123.0,126.771,2.4017,2.00645,1.35356,8.0,8.0,8.0,0.00200903,0.214375
+276,9.175833,0.0,0.0,14.0,22.1665,29.0,255.0,74.0,120.0,123.936,127.0,139.0,116.0,128.0,130.794,133.0,178.0,0.0,1.0,5.1406,8.0,68.0,123.0,127.495,2.07865,1.91464,1.28834,8.0,8.0,8.0,0.00226337,0.20152
+277,9.2092,0.0,0.0,14.0,21.9987,28.0,174.0,67.0,120.0,123.913,128.0,137.0,113.0,128.0,130.736,133.0,176.0,0.0,1.0,5.13188,8.0,67.0,123.0,127.209,2.42714,1.95113,1.32865,8.0,8.0,8.0,0.00206619,0.203989
+278,9.242567,0.0,0.0,14.0,22.0601,28.0,251.0,69.0,120.0,123.98,128.0,138.0,114.0,128.0,130.779,133.0,178.0,0.0,1.0,5.13074,9.0,70.0,123.0,128.449,2.52467,2.01127,1.34163,8.0,8.0,8.0,0.00242341,0.203695
+279,9.275933,0.0,0.0,14.0,22.2033,29.0,252.0,69.0,120.0,124.02,128.0,136.0,114.0,128.0,130.788,133.0,177.0,0.0,1.0,5.06437,8.0,71.0,124.0,128.683,2.12013,1.93632,1.32426,8.0,8.0,8.0,0.00234625,0.195056
+280,9.3093,0.0,0.0,14.0,22.0305,28.0,159.0,69.0,120.0,123.955,128.0,137.0,114.0,128.0,130.788,133.0,176.0,0.0,1.0,5.12859,8.0,73.0,123.0,127.931,2.37648,1.94829,1.31781,8.0,8.0,8.0,0.00248628,0.212186
+281,9.342667,0.0,0.0,14.0,22.202,29.0,254.0,73.0,120.0,123.957,128.0,137.0,115.0,128.0,130.9,133.0,177.0,0.0,1.0,5.18155,8.0,72.0,126.0,129.757,2.07101,1.93058,1.29239,8.0,8.0,8.0,0.00247485,0.204861
+282,9.376033,0.0,0.0,13.0,21.9479,28.0,163.0,74.0,120.0,123.877,127.0,136.0,115.0,128.0,130.799,133.0,179.0,0.0,1.0,5.2167,8.0,70.0,123.0,127.161,2.45098,1.99061,1.37221,8.0,8.0,8.0,0.00233768,0.224483
+283,9.4094,0.0,0.0,14.0,22.2201,29.0,224.0,73.0,120.0,123.849,127.0,136.0,115.0,128.0,130.874,133.0,177.0,0.0,1.0,5.24871,9.0,72.0,123.0,128.054,2.3158,2.02759,1.35722,8.0,8.0,8.0,0.00231196,0.197019
+284,9.442767,0.0,0.0,14.0,22.1953,28.0,159.0,74.0,120.0,123.805,127.0,136.0,116.0,128.0,130.948,133.0,175.0,0.0,2.0,5.31472,8.0,69.0,126.0,128.132,2.14071,1.95856,1.28425,8.0,8.0,8.0,0.00262346,0.199488
+285,9.476133,0.0,0.0,14.0,22.0541,28.0,159.0,74.0,120.0,123.891,127.0,138.0,115.0,128.0,130.87,133.0,179.0,0.0,2.0,5.18611,8.0,70.0,123.0,127.627,2.39812,1.98163,1.3529,8.0,8.0,8.0,0.00178041,0.204201
+286,9.5095,0.0,0.0,14.0,22.1424,29.0,161.0,75.0,120.0,123.957,128.0,138.0,115.0,128.0,130.871,133.0,180.0,0.0,1.0,5.18695,8.0,71.0,126.0,128.667,2.17775,1.94983,1.32354,8.0,8.0,8.0,0.00221765,0.206399
+287,9.542867,0.0,0.0,14.0,22.0473,28.0,255.0,76.0,120.0,123.915,128.0,135.0,114.0,128.0,130.773,133.0,178.0,0.0,1.0,5.13985,8.0,69.0,123.0,127.014,2.38065,1.98484,1.37992,8.0,8.0,8.0,0.00228052,0.207976
+288,9.576233,0.0,0.0,14.0,22.1566,29.0,255.0,72.0,120.0,123.919,128.0,138.0,115.0,128.0,130.87,133.0,182.0,0.0,1.0,5.20143,8.0,73.0,125.0,128.316,2.32049,1.96727,1.34337,8.0,8.0,8.0,0.00222337,0.200769
+289,9.6096,0.0,0.0,13.0,22.0089,28.0,254.0,74.0,120.0,124.086,128.0,139.0,115.0,128.0,130.704,132.0,178.0,0.0,1.0,4.99705,8.0,70.0,123.0,128.548,2.1629,1.91109,1.3013,8.0,8.0,8.0,0.00247771,0.217207
+290,9.642967,0.0,0.0,13.0,21.9054,28.0,225.0,73.0,120.0,124.15,128.0,138.0,114.0,128.0,130.605,133.0,179.0,0.0,1.0,4.92735,8.0,72.0,123.0,127.894,2.2219,1.9698,1.31608,8.0,8.0,8.0,0.00246914,0.226635
+291,9.676333,0.0,0.0,13.0,22.0133,28.0,252.0,71.0,120.0,124.085,128.0,137.0,114.0,128.0,130.713,133.0,177.0,0.0,1.0,5.01336,8.0,72.0,123.0,128.155,2.08993,1.93693,1.30102,8.0,8.0,8.0,0.0023291,0.21951
+292,9.7097,0.0,0.0,13.0,21.8077,28.0,154.0,74.0,120.0,124.115,128.0,136.0,115.0,128.0,130.669,133.0,177.0,0.0,1.0,4.97622,8.0,70.0,123.0,128.141,2.37107,2.0316,1.36605,8.0,8.0,8.0,0.00219765,0.223468
+293,9.743067,0.0,0.0,13.0,22.0048,28.0,255.0,72.0,120.0,123.978,128.0,137.0,115.0,128.0,130.74,133.0,181.0,0.0,1.0,5.09371,8.0,68.0,123.0,127.626,2.36682,1.95714,1.34962,8.0,8.0,8.0,0.00244342,0.221148
+294,9.776433,0.0,0.0,13.0,21.9329,28.0,157.0,68.0,120.0,123.841,127.0,137.0,115.0,128.0,130.792,133.0,178.0,0.0,1.0,5.21919,8.0,71.0,123.0,126.198,2.26005,1.96722,1.33613,8.0,8.0,8.0,0.00194616,0.222534
+295,9.8098,0.0,0.0,14.0,22.0921,28.0,158.0,67.0,120.0,123.871,127.0,136.0,114.0,128.0,130.7,133.0,181.0,0.0,1.0,5.15294,8.0,72.0,123.0,126.114,2.53917,1.99487,1.3603,8.0,8.0,8.0,0.00242627,0.207893
+296,9.843167,0.0,0.0,14.0,22.1099,28.0,154.0,67.0,120.0,124.019,128.0,136.0,114.0,128.0,130.722,133.0,178.0,0.0,1.0,5.05681,8.0,70.0,123.0,127.708,2.28647,1.95313,1.31168,8.0,8.0,8.0,0.00215478,0.202206
+297,9.876533,0.0,0.0,13.0,21.9702,28.0,157.0,67.0,120.0,124.109,128.0,136.0,113.0,128.0,130.559,132.0,176.0,0.0,1.0,4.92346,8.0,70.0,123.0,126.494,2.33591,1.94901,1.36327,8.0,8.0,8.0,0.00234339,0.217158
+298,9.9099,0.0,0.0,14.0,22.067,28.0,157.0,72.0,121.0,124.13,128.0,140.0,115.0,128.0,130.544,132.0,177.0,0.0,1.0,4.88929,8.0,70.0,123.0,126.382,2.33624,1.94881,1.3682,8.0,8.0,8.0,0.00239769,0.204241
+299,9.943267,0.0,0.0,14.0,22.0563,28.0,255.0,73.0,121.0,124.114,128.0,138.0,115.0,128.0,130.64,132.0,179.0,0.0,1.0,4.92363,8.0,70.0,123.0,127.701,2.20182,1.92237,1.27428,8.0,8.0,8.0,0.00216621,0.204007
+300,9.976633,0.0,0.0,14.0,22.2052,28.0,155.0,75.0,120.0,124.035,128.0,137.0,113.0,128.0,130.607,132.0,182.0,0.0,1.0,4.99108,8.0,69.0,123.0,126.939,2.36798,1.96683,1.30157,8.0,8.0,8.0,0.00229195,0.194096
+301,10.01,0.0,0.0,14.0,22.4338,29.0,203.0,75.0,120.0,123.982,128.0,137.0,114.0,128.0,130.69,133.0,176.0,0.0,1.0,5.06093,8.0,67.0,123.0,126.541,2.14992,1.93504,1.28625,8.0,8.0,8.0,0.00254915,0.177852
+302,10.043367,0.0,0.0,14.0,22.1314,28.0,160.0,73.0,120.0,124.002,128.0,136.0,115.0,128.0,130.657,133.0,177.0,0.0,1.0,5.04846,8.0,70.0,123.0,126.951,2.52889,1.93983,1.31772,8.0,8.0,8.0,0.00250914,0.202649
+303,10.076733,0.0,0.0,14.0,22.4543,29.0,242.0,75.0,120.0,123.969,128.0,138.0,113.0,128.0,130.729,133.0,178.0,0.0,1.0,5.1009,8.0,71.0,123.0,127.206,2.48631,1.94635,1.3392,8.0,8.0,8.0,0.00231196,0.187926
+304,10.1101,0.0,0.0,14.0,22.745,30.0,162.0,73.0,120.0,123.938,128.0,138.0,115.0,128.0,130.756,133.0,176.0,0.0,1.0,5.12721,8.0,69.0,123.0,127.481,2.50091,1.96988,1.34424,8.0,8.0,8.0,0.00216907,0.175829
+305,10.143467,0.0,0.0,14.0,24.246,33.0,230.0,73.0,118.0,123.697,128.0,149.0,116.0,128.0,130.444,134.0,156.0,0.0,2.0,5.38498,11.0,56.0,116.0,125.395,7.08384,3.31377,2.55528,8.0,8.0,8.0,0.0103252,0.147148
+306,10.176833,0.0,0.0,14.0,25.4789,35.0,254.0,66.0,119.0,123.486,128.0,165.0,109.0,127.0,130.241,133.0,181.0,0.0,1.0,6.10208,11.0,78.0,113.0,123.704,6.73221,3.41336,2.56052,8.0,8.0,8.0,0.00347794,0.140709
+307,10.2102,0.0,0.0,14.0,23.9366,31.0,226.0,65.0,120.0,123.797,128.0,162.0,110.0,127.0,130.123,132.0,180.0,0.0,1.0,5.78521,10.0,79.0,116.0,125.486,3.08307,2.14496,1.42805,8.0,8.0,8.0,0.00332647,0.187783
+308,10.243567,0.0,0.0,14.0,24.3307,31.0,230.0,69.0,120.0,123.723,128.0,167.0,108.0,127.0,130.187,132.0,179.0,0.0,1.0,5.89635,10.0,77.0,116.0,124.963,3.03093,1.96626,1.28219,8.0,8.0,8.0,0.00297782,0.165161
+309,10.276933,0.0,0.0,14.0,24.2831,31.0,248.0,64.0,120.0,123.693,128.0,165.0,110.0,127.0,130.177,132.0,179.0,0.0,1.0,5.8968,10.0,80.0,116.0,124.601,2.11105,1.89559,1.19423,8.0,8.0,8.0,0.00306356,0.167515
+310,10.3103,0.0,0.0,14.0,24.1504,31.0,254.0,66.0,120.0,123.81,128.0,166.0,108.0,127.0,130.039,132.0,179.0,0.0,1.0,5.83,10.0,79.0,111.0,124.434,2.40159,1.97964,1.28512,8.0,8.0,8.0,0.00312357,0.177878
+311,10.343667,0.0,0.0,14.0,24.4231,31.0,232.0,67.0,120.0,123.844,128.0,166.0,109.0,127.0,130.192,132.0,179.0,0.0,1.0,5.78093,10.0,77.0,116.0,126.216,2.22165,1.98477,1.29289,8.0,8.0,8.0,0.00303212,0.164218
+312,10.377033,0.0,0.0,14.0,24.1932,31.0,231.0,67.0,120.0,123.743,128.0,166.0,109.0,127.0,130.084,132.0,179.0,0.0,1.0,5.86296,10.0,78.0,111.0,124.15,2.27292,1.93368,1.24668,8.0,8.0,8.0,0.0031693,0.188792
+313,10.4104,0.0,0.0,14.0,24.5006,31.0,233.0,61.0,120.0,123.782,128.0,166.0,109.0,127.0,130.178,132.0,180.0,0.0,1.0,5.83334,10.0,83.0,116.0,125.813,2.7712,1.96783,1.26882,8.0,8.0,8.0,0.00325503,0.162957
+314,10.443767,0.0,0.0,14.0,24.3142,31.0,236.0,66.0,120.0,123.728,128.0,166.0,109.0,127.0,130.121,132.0,179.0,0.0,1.0,5.90826,11.0,79.0,113.0,124.727,2.21249,1.93815,1.25896,8.0,8.0,8.0,0.00315786,0.177183
+315,10.477133,0.0,0.0,14.0,24.3173,31.0,232.0,66.0,120.0,123.727,128.0,165.0,110.0,127.0,130.125,132.0,179.0,0.0,1.0,5.85916,10.0,78.0,114.0,124.682,2.50192,2.04073,1.30138,8.0,8.0,8.0,0.00294353,0.172174
+316,10.5105,0.0,0.0,14.0,24.4727,31.0,255.0,67.0,120.0,123.765,128.0,163.0,111.0,127.0,130.139,132.0,179.0,0.0,1.0,5.8404,10.0,78.0,115.0,124.593,2.18674,1.87598,1.179,8.0,8.0,8.0,0.0032093,0.169422
+317,10.543867,0.0,0.0,14.0,24.3646,31.0,255.0,67.0,120.0,123.693,128.0,162.0,110.0,127.0,130.128,132.0,179.0,0.0,1.0,5.90386,10.0,78.0,112.0,124.996,2.79662,1.96695,1.24626,8.0,8.0,8.0,0.00301212,0.174317
+318,10.577233,0.0,0.0,14.0,24.7494,32.0,234.0,66.0,120.0,123.689,128.0,161.0,108.0,127.0,130.132,132.0,179.0,0.0,1.0,5.96118,11.0,78.0,113.0,124.616,3.03111,2.07333,1.32072,8.0,8.0,8.0,0.0030607,0.15581
+319,10.6106,0.0,0.0,14.0,24.6533,32.0,237.0,67.0,120.0,123.728,128.0,163.0,111.0,127.0,130.235,132.0,180.0,0.0,1.0,5.92883,11.0,77.0,116.0,126.361,2.16941,1.97898,1.25159,8.0,8.0,8.0,0.00295496,0.160079
+320,10.643967,0.0,0.0,14.0,24.3812,31.0,255.0,68.0,120.0,123.642,128.0,162.0,110.0,127.0,130.157,132.0,181.0,0.0,1.0,5.98901,11.0,78.0,113.0,125.07,2.87254,2.04443,1.31858,8.0,8.0,8.0,0.00252915,0.172551
+321,10.677333,0.0,0.0,14.0,24.6887,32.0,255.0,70.0,120.0,123.584,128.0,167.0,110.0,127.0,130.285,132.0,179.0,0.0,1.0,6.03691,11.0,75.0,116.0,125.542,2.65162,1.9809,1.32022,8.0,8.0,8.0,0.00296068,0.159977
+322,10.7107,0.0,0.0,14.0,24.5858,32.0,255.0,66.0,120.0,123.679,128.0,168.0,109.0,127.0,130.179,132.0,179.0,0.0,1.0,5.96943,11.0,78.0,116.0,124.876,3.04775,2.04343,1.33912,8.0,8.0,8.0,0.00318358,0.167853
+323,10.744067,0.0,0.0,14.0,24.6385,31.0,235.0,66.0,120.0,123.584,128.0,165.0,108.0,127.0,130.233,133.0,181.0,0.0,1.0,6.03523,11.0,78.0,116.0,125.123,2.37283,2.02035,1.32235,8.0,8.0,8.0,0.00318644,0.159491
+324,10.777433,0.0,0.0,14.0,24.5669,31.0,235.0,66.0,120.0,123.692,128.0,166.0,109.0,127.0,130.199,132.0,178.0,0.0,1.0,5.95354,11.0,78.0,116.0,124.982,2.26419,1.99623,1.28643,8.0,8.0,8.0,0.00306356,0.165169
+325,10.8108,0.0,0.0,14.0,24.6942,32.0,230.0,64.0,120.0,123.668,128.0,164.0,107.0,127.0,130.114,132.0,179.0,0.0,1.0,5.93451,10.0,80.0,114.0,124.012,2.51921,1.99591,1.28409,8.0,8.0,8.0,0.00293496,0.156267
+326,10.844167,0.0,0.0,14.0,24.7995,32.0,234.0,67.0,120.0,123.643,128.0,167.0,105.0,127.0,130.215,132.0,180.0,0.0,1.0,6.01375,10.0,77.0,116.0,125.346,2.22951,1.99223,1.29688,8.0,8.0,8.0,0.00304927,0.153775
+327,10.877533,0.0,0.0,14.0,24.3725,31.0,255.0,67.0,120.0,123.688,128.0,165.0,108.0,127.0,130.25,132.0,180.0,0.0,1.0,5.92245,10.0,78.0,116.0,126.024,2.78262,2.03324,1.33588,8.0,8.0,8.0,0.00304355,0.171336
+328,10.9109,0.0,0.0,14.0,24.5018,31.0,229.0,65.0,120.0,123.541,128.0,165.0,111.0,127.0,130.284,132.0,179.0,0.0,1.0,6.04705,11.0,79.0,116.0,125.164,3.19251,1.99536,1.33163,8.0,8.0,8.0,0.00306927,0.165226
+329,10.944267,0.0,0.0,14.0,24.4703,31.0,232.0,66.0,120.0,123.618,128.0,164.0,107.0,127.0,130.281,132.0,181.0,0.0,1.0,5.97719,10.0,78.0,116.0,125.775,2.09551,1.9507,1.21739,8.0,8.0,8.0,0.0030607,0.169399
+330,10.977633,0.0,0.0,14.0,24.5501,32.0,235.0,63.0,120.0,123.644,128.0,163.0,109.0,127.0,130.089,132.0,178.0,0.0,1.0,5.99226,11.0,79.0,111.0,124.03,2.62004,2.04993,1.33831,8.0,8.0,8.0,0.00289495,0.168393
+331,11.011,0.0,0.0,14.0,24.7646,32.0,235.0,64.0,120.0,123.662,128.0,162.0,108.0,127.0,130.232,132.0,178.0,0.0,1.0,5.99355,10.0,79.0,116.0,125.788,2.40854,2.0654,1.33078,8.0,8.0,8.0,0.00306927,0.153238
+332,11.044367,0.0,0.0,14.0,24.3338,31.0,233.0,65.0,120.0,123.623,128.0,162.0,109.0,127.0,130.102,132.0,178.0,0.0,1.0,5.97458,10.0,79.0,111.0,124.131,2.27642,1.99991,1.2798,8.0,8.0,8.0,0.00312643,0.175109
+333,11.077733,0.0,0.0,14.0,24.4544,31.0,237.0,66.0,120.0,123.68,128.0,162.0,108.0,127.0,130.197,132.0,179.0,0.0,1.0,5.94506,10.0,78.0,116.0,124.894,2.20099,1.94132,1.22318,8.0,8.0,8.0,0.00296068,0.17007
+334,11.1111,0.0,0.0,14.0,24.4284,31.0,235.0,67.0,119.0,123.646,128.0,163.0,109.0,127.0,130.166,132.0,179.0,0.0,1.0,6.02086,11.0,76.0,113.0,125.242,2.12725,1.98371,1.22761,8.0,8.0,8.0,0.0031893,0.173985
+335,11.144467,0.0,0.0,14.0,24.4752,31.0,255.0,67.0,120.0,123.756,128.0,165.0,109.0,127.0,130.074,132.0,178.0,0.0,1.0,5.87705,11.0,78.0,114.0,124.219,2.51028,1.98848,1.2877,8.0,8.0,8.0,0.00290924,0.16819
+336,11.177833,0.0,0.0,14.0,24.587,32.0,233.0,69.0,120.0,123.81,128.0,168.0,110.0,127.0,130.155,132.0,179.0,0.0,1.0,5.9015,11.0,76.0,116.0,126.776,2.26751,1.97773,1.26475,8.0,8.0,8.0,0.0029521,0.165872
+337,11.2112,0.0,0.0,14.0,24.4345,32.0,231.0,66.0,120.0,123.798,128.0,168.0,109.0,127.0,130.026,132.0,180.0,0.0,1.0,5.83737,10.0,77.0,111.0,124.67,2.31237,1.99224,1.25502,8.0,8.0,8.0,0.00288923,0.173342
+338,11.244567,0.0,0.0,14.0,24.3212,31.0,232.0,67.0,120.0,123.846,128.0,165.0,109.0,127.0,130.03,132.0,181.0,0.0,1.0,5.85432,10.0,78.0,113.0,125.129,2.33228,2.01168,1.29718,8.0,8.0,8.0,0.00293496,0.178707
+339,11.277933,0.0,0.0,14.0,24.358,31.0,255.0,66.0,120.0,123.895,128.0,166.0,107.0,127.0,130.077,132.0,179.0,0.0,1.0,5.7626,10.0,78.0,116.0,125.707,2.19401,1.96976,1.28309,8.0,8.0,8.0,0.00304355,0.174037
+340,11.3113,0.0,0.0,14.0,24.5536,31.0,237.0,66.0,120.0,123.712,128.0,169.0,109.0,127.0,129.964,132.0,179.0,0.0,1.0,5.91089,11.0,79.0,108.0,122.614,2.41909,1.98272,1.28138,8.0,8.0,8.0,0.00294353,0.165772
+341,11.344667,0.0,0.0,14.0,24.5296,31.0,234.0,65.0,120.0,123.762,128.0,168.0,107.0,127.0,130.101,132.0,180.0,0.0,1.0,5.91216,11.0,80.0,113.0,125.022,2.1873,1.93879,1.25432,8.0,8.0,8.0,0.00291209,0.172185
+342,11.378033,0.0,0.0,14.0,24.192,31.0,255.0,65.0,120.0,123.749,128.0,167.0,108.0,127.0,130.054,132.0,180.0,0.0,1.0,5.90422,10.0,79.0,111.0,124.746,2.39582,1.99647,1.27846,8.0,8.0,8.0,0.00291781,0.194902
+343,11.4114,0.0,0.0,14.0,24.2059,31.0,255.0,67.0,120.0,123.979,128.0,167.0,110.0,127.0,130.16,132.0,180.0,0.0,1.0,5.71853,10.0,78.0,116.0,127.765,2.90541,2.01502,1.31102,8.0,8.0,8.0,0.00298925,0.18794
+344,11.444767,0.0,0.0,14.0,24.1899,31.0,234.0,64.0,120.0,123.92,129.0,170.0,109.0,127.0,130.195,132.0,179.0,0.0,1.0,5.81337,10.0,78.0,116.0,128.31,2.10368,1.93641,1.23234,8.0,8.0,8.0,0.00296639,0.187629
+345,11.478133,0.0,0.0,14.0,24.0646,31.0,255.0,67.0,120.0,123.985,128.0,173.0,109.0,127.0,130.096,132.0,182.0,0.0,1.0,5.70966,10.0,77.0,116.0,127.553,2.731,2.02727,1.29417,8.0,8.0,8.0,0.0025463,0.193067
+346,11.5115,0.0,0.0,14.0,24.2789,31.0,233.0,62.0,120.0,123.941,129.0,174.0,106.0,127.0,130.133,132.0,179.0,0.0,1.0,5.8024,11.0,79.0,116.0,128.227,2.59105,2.00725,1.25801,8.0,8.0,8.0,0.00287494,0.182147
+347,11.544867,0.0,0.0,14.0,24.1441,31.0,236.0,64.0,120.0,123.983,128.0,168.0,108.0,127.0,130.142,132.0,179.0,0.0,1.0,5.7061,10.0,78.0,116.0,127.64,2.98397,2.03532,1.27307,8.0,8.0,8.0,0.00307499,0.191821
+348,11.578233,0.0,0.0,14.0,24.6402,31.0,255.0,64.0,120.0,123.883,128.0,168.0,108.0,127.0,130.238,132.0,181.0,0.0,1.0,5.82183,10.0,78.0,116.0,127.772,2.29738,1.95784,1.23134,8.0,8.0,8.0,0.00314072,0.156607
+349,11.6116,0.0,0.0,14.0,24.6071,31.0,240.0,65.0,120.0,123.844,128.0,164.0,105.0,127.0,130.275,132.0,179.0,0.0,1.0,5.84299,10.0,79.0,116.0,128.151,2.17323,1.95302,1.23597,8.0,8.0,8.0,0.00313214,0.156713
+350,11.644967,0.0,0.0,14.0,24.4922,32.0,234.0,68.0,120.0,123.839,128.0,166.0,106.0,127.0,130.105,132.0,181.0,0.0,1.0,5.85573,10.0,79.0,116.0,125.991,2.42485,2.04337,1.31928,8.0,8.0,8.0,0.00299783,0.171548
+351,11.678333,0.0,0.0,14.0,24.6528,32.0,251.0,67.0,120.0,123.896,128.0,166.0,109.0,127.0,130.255,132.0,181.0,0.0,1.0,5.79169,10.0,79.0,116.0,128.716,2.16653,1.98365,1.27421,8.0,8.0,8.0,0.00315215,0.162714
+352,11.7117,0.0,0.0,14.0,24.6199,32.0,253.0,68.0,120.0,123.794,128.0,170.0,110.0,127.0,130.166,132.0,178.0,0.0,1.0,5.83584,10.0,78.0,116.0,126.452,2.95413,2.02835,1.29543,8.0,8.0,8.0,0.00301497,0.160417
+353,11.745067,0.0,0.0,14.0,24.608,31.0,255.0,60.0,120.0,123.941,128.0,164.0,110.0,127.0,130.247,132.0,178.0,0.0,1.0,5.74567,10.0,83.0,116.0,128.202,3.44982,2.0299,1.31574,8.0,8.0,8.0,0.00314929,0.154055
+354,11.778433,0.0,0.0,14.0,24.7226,32.0,239.0,66.0,120.0,123.853,128.0,162.0,110.0,127.0,130.18,132.0,179.0,0.0,1.0,5.84626,11.0,78.0,116.0,126.751,2.18793,1.93738,1.2581,8.0,8.0,8.0,0.00312643,0.152543
+355,11.8118,0.0,0.0,14.0,24.8077,32.0,239.0,64.0,120.0,123.791,128.0,162.0,109.0,127.0,130.203,132.0,178.0,0.0,1.0,5.87136,11.0,79.0,116.0,127.432,2.51734,2.01594,1.31289,8.0,8.0,8.0,0.00305213,0.14533
+356,11.845167,0.0,0.0,15.0,25.0536,32.0,239.0,64.0,120.0,123.761,128.0,168.0,111.0,127.0,130.292,132.0,180.0,0.0,1.0,5.90743,11.0,80.0,116.0,127.594,2.25306,1.94126,1.25972,8.0,8.0,8.0,0.00306356,0.135642
+357,11.878533,0.0,0.0,14.0,24.7574,32.0,234.0,65.0,120.0,123.818,128.0,166.0,111.0,127.0,130.247,132.0,180.0,0.0,1.0,5.83506,10.0,77.0,116.0,127.516,2.73303,1.97243,1.27449,8.0,8.0,8.0,0.00292638,0.152195
+358,11.9119,0.0,0.0,14.0,24.6486,32.0,232.0,69.0,120.0,123.847,128.0,168.0,110.0,127.0,130.213,132.0,180.0,0.0,1.0,5.85679,10.0,76.0,116.0,127.742,2.46071,2.00799,1.27395,8.0,8.0,8.0,0.00307785,0.161706
+359,11.945267,0.0,0.0,14.0,24.5612,31.0,232.0,64.0,120.0,123.852,128.0,167.0,111.0,127.0,130.283,132.0,178.0,0.0,1.0,5.83444,10.0,81.0,116.0,127.947,2.15149,1.97794,1.26365,8.0,8.0,8.0,0.00291495,0.160722
+360,11.978633,0.0,0.0,14.0,24.6675,31.0,230.0,67.0,120.0,123.887,128.0,169.0,109.0,127.0,130.197,132.0,179.0,0.0,1.0,5.791,10.0,78.0,116.0,127.052,2.35664,1.97451,1.24896,8.0,8.0,8.0,0.00301497,0.151372
+361,12.012,0.0,0.0,15.0,24.9026,32.0,229.0,68.0,120.0,123.884,128.0,162.0,109.0,127.0,130.376,133.0,179.0,0.0,1.0,5.81247,10.0,78.0,116.0,129.135,2.11255,1.87219,1.23615,8.0,8.0,8.0,0.00306642,0.142647
+362,12.045367,0.0,0.0,14.0,24.5165,31.0,234.0,68.0,120.0,123.757,128.0,165.0,109.0,127.0,130.328,133.0,180.0,0.0,1.0,5.95743,11.0,78.0,116.0,127.902,2.32561,1.9697,1.30056,8.0,8.0,8.0,0.00299497,0.167916
+363,12.078733,0.0,0.0,15.0,24.9349,32.0,237.0,68.0,120.0,123.821,128.0,165.0,108.0,127.0,130.34,132.0,181.0,0.0,1.0,5.87519,10.0,78.0,116.0,128.621,2.29023,1.95187,1.26351,8.0,8.0,8.0,0.00321216,0.138446
+364,12.1121,0.0,0.0,14.0,24.8454,32.0,240.0,64.0,120.0,123.75,128.0,167.0,107.0,127.0,130.334,133.0,179.0,0.0,1.0,5.95601,10.0,80.0,116.0,128.283,2.13889,1.94727,1.24146,8.0,8.0,8.0,0.00313786,0.149866
+365,12.145467,0.0,0.0,14.0,24.8401,32.0,237.0,66.0,120.0,123.747,128.0,164.0,107.0,127.0,130.298,132.0,182.0,0.0,1.0,5.92166,11.0,81.0,116.0,127.329,2.42748,1.99507,1.24122,8.0,8.0,8.0,0.0030607,0.152318
+366,12.178833,0.0,0.0,14.0,24.9451,32.0,239.0,67.0,120.0,123.802,128.0,170.0,104.0,127.0,130.323,133.0,182.0,0.0,1.0,5.93157,11.0,79.0,116.0,128.126,2.2208,1.94108,1.22771,8.0,8.0,8.0,0.00296353,0.14926
+367,12.2122,0.0,0.0,14.0,24.6591,32.0,235.0,67.0,120.0,123.784,128.0,166.0,107.0,127.0,130.298,132.0,179.0,0.0,1.0,5.90317,10.0,79.0,116.0,127.891,2.43567,1.98426,1.33002,8.0,8.0,8.0,0.00292067,0.156221
+368,12.245567,0.0,0.0,14.0,24.8786,32.0,245.0,67.0,120.0,123.825,129.0,168.0,107.0,127.0,130.3,132.0,179.0,0.0,1.0,5.95393,11.0,78.0,116.0,128.82,2.54657,1.99771,1.28439,8.0,8.0,8.0,0.00314072,0.146228
+369,12.278933,0.0,0.0,14.0,24.8379,32.0,250.0,66.0,120.0,123.796,128.0,164.0,108.0,127.0,130.318,133.0,179.0,0.0,1.0,5.92353,11.0,80.0,116.0,128.434,2.16953,1.98146,1.28212,8.0,8.0,8.0,0.00315786,0.146868
+370,12.3123,0.0,0.0,14.0,24.6763,32.0,255.0,64.0,120.0,123.782,128.0,168.0,107.0,127.0,130.255,133.0,178.0,0.0,1.0,5.92836,11.0,80.0,116.0,127.207,2.59275,2.03088,1.3277,8.0,8.0,8.0,0.00295496,0.158556
+371,12.345667,0.0,0.0,14.0,24.6947,32.0,235.0,65.0,120.0,123.84,128.0,167.0,108.0,127.0,130.403,132.0,179.0,0.0,1.0,5.87531,10.0,80.0,116.0,129.509,2.29007,1.96885,1.30149,8.0,8.0,8.0,0.00293496,0.153326
+372,12.379033,0.0,0.0,14.0,24.4197,32.0,255.0,65.0,120.0,123.906,128.0,167.0,104.0,127.0,130.247,132.0,180.0,0.0,1.0,5.81436,10.0,80.0,116.0,128.29,2.5686,1.95828,1.2675,8.0,8.0,8.0,0.00304355,0.17502
+373,12.4124,0.0,0.0,14.0,24.6678,32.0,240.0,64.0,120.0,123.946,129.0,165.0,109.0,127.0,130.321,132.0,179.0,0.0,1.0,5.79472,10.0,79.0,116.0,130.189,2.54442,1.94155,1.26003,8.0,8.0,8.0,0.00306927,0.158116
+374,12.445767,0.0,0.0,14.0,24.6198,32.0,234.0,63.0,120.0,123.891,128.0,164.0,107.0,127.0,130.341,133.0,179.0,0.0,1.0,5.89672,11.0,80.0,116.0,129.687,2.57444,2.03448,1.33008,8.0,8.0,8.0,0.002492,0.162
+375,12.479133,0.0,0.0,14.0,24.7507,32.0,255.0,66.0,120.0,123.874,128.0,166.0,108.0,127.0,130.318,132.0,179.0,0.0,1.0,5.8408,10.0,78.0,116.0,129.373,2.91667,2.06219,1.34114,8.0,8.0,8.0,0.00290924,0.149608
+376,12.5125,0.0,0.0,15.0,24.8809,32.0,253.0,67.0,120.0,123.807,128.0,169.0,106.0,127.0,130.401,132.0,179.0,0.0,1.0,5.869,10.0,78.0,116.0,129.076,2.23315,1.93479,1.21553,8.0,8.0,8.0,0.00301497,0.143013
+377,12.545867,0.0,0.0,14.0,24.709,32.0,235.0,67.0,120.0,123.939,128.0,166.0,109.0,127.0,130.294,132.0,177.0,0.0,1.0,5.78024,10.0,77.0,116.0,129.097,2.58745,1.93166,1.24888,8.0,8.0,8.0,0.00316358,0.157707
+378,12.579233,0.0,0.0,14.0,24.769,32.0,234.0,65.0,120.0,123.944,129.0,167.0,106.0,127.0,130.247,132.0,179.0,0.0,1.0,5.82389,10.0,79.0,116.0,129.144,3.29767,2.00892,1.33474,8.0,8.0,8.0,0.00290352,0.148857
+379,12.6126,0.0,0.0,14.0,24.7343,32.0,252.0,66.0,120.0,123.98,129.0,167.0,109.0,127.0,130.294,132.0,180.0,0.0,1.0,5.76333,10.0,80.0,116.0,130.212,2.15665,1.97211,1.24481,8.0,8.0,8.0,0.00312929,0.149326
+380,12.645967,0.0,0.0,14.0,24.6088,32.0,255.0,65.0,120.0,123.954,128.0,167.0,106.0,127.0,130.182,132.0,178.0,0.0,1.0,5.78078,10.0,78.0,116.0,127.804,2.32949,1.97802,1.27857,8.0,8.0,8.0,0.00300926,0.163397
+381,12.679333,0.0,0.0,14.0,24.5349,32.0,255.0,66.0,120.0,124.071,129.0,165.0,109.0,127.0,130.247,132.0,179.0,0.0,1.0,5.73104,10.0,79.0,116.0,129.811,2.10062,1.92873,1.21827,8.0,8.0,8.0,0.00307785,0.170656
+382,12.7127,0.0,0.0,14.0,24.3058,31.0,234.0,67.0,120.0,123.957,128.0,164.0,105.0,127.0,130.168,132.0,181.0,0.0,1.0,5.77995,11.0,78.0,116.0,128.259,2.29303,1.98338,1.29494,8.0,8.0,8.0,0.00306356,0.177112
+383,12.746067,0.0,0.0,14.0,24.716,32.0,234.0,64.0,120.0,123.876,128.0,164.0,109.0,127.0,130.288,132.0,178.0,0.0,1.0,5.84577,10.0,80.0,116.0,128.471,2.36909,1.97645,1.27682,8.0,8.0,8.0,0.00291209,0.152961
+384,12.779433,0.0,0.0,14.0,24.5816,32.0,252.0,66.0,120.0,123.886,128.0,170.0,107.0,127.0,130.253,133.0,179.0,0.0,1.0,5.87705,11.0,79.0,116.0,128.565,2.39834,2.00304,1.29595,8.0,8.0,8.0,0.00281207,0.165815
+385,12.8128,0.0,0.0,14.0,24.537,32.0,238.0,66.0,120.0,123.899,128.0,166.0,107.0,127.0,130.245,132.0,178.0,0.0,1.0,5.80656,10.0,78.0,116.0,127.545,2.66898,2.01037,1.32402,8.0,8.0,8.0,0.003115,0.164669
+386,12.846167,0.0,0.0,14.0,24.5435,32.0,255.0,64.0,120.0,123.875,128.0,164.0,107.0,127.0,130.3,133.0,178.0,0.0,1.0,5.86509,11.0,80.0,116.0,128.446,2.20857,1.95786,1.29519,8.0,8.0,8.0,0.0032636,0.163903
+387,12.879533,0.0,0.0,14.0,24.214,31.0,255.0,65.0,120.0,124.042,129.0,164.0,108.0,127.0,130.151,132.0,180.0,0.0,1.0,5.70233,10.0,79.0,116.0,128.968,2.41775,2.03245,1.34601,8.0,8.0,8.0,0.0032436,0.182542
+388,12.9129,0.0,0.0,14.0,24.125,31.0,253.0,66.0,120.0,124.019,129.0,163.0,109.0,127.0,130.231,132.0,179.0,0.0,1.0,5.76668,11.0,79.0,116.0,128.988,2.88374,1.99506,1.33204,8.0,8.0,8.0,0.00314929,0.189858
+389,12.946267,0.0,0.0,14.0,24.2332,31.0,255.0,66.0,120.0,124.057,129.0,166.0,110.0,127.0,130.243,132.0,179.0,0.0,1.0,5.70152,10.0,80.0,116.0,129.978,2.36472,1.94639,1.23455,8.0,8.0,8.0,0.00289495,0.18069
+390,12.979633,0.0,0.0,14.0,24.1983,31.0,240.0,65.0,120.0,123.975,129.0,168.0,106.0,127.0,130.123,132.0,181.0,0.0,1.0,5.78258,10.0,82.0,116.0,127.77,2.67035,2.01752,1.28128,8.0,8.0,8.0,0.0031693,0.183273
+391,13.013,0.0,0.0,14.0,24.3858,31.0,255.0,65.0,120.0,124.126,129.0,168.0,109.0,127.0,130.241,132.0,181.0,0.0,1.0,5.63973,10.0,78.0,116.0,130.083,2.14857,1.97814,1.23869,8.0,8.0,8.0,0.00334076,0.176043
+392,13.046367,0.0,0.0,13.0,23.7657,31.0,255.0,69.0,120.0,124.237,129.0,160.0,106.0,127.0,130.048,132.0,180.0,0.0,1.0,5.54097,10.0,77.0,116.0,129.376,2.55834,1.95979,1.27804,8.0,8.0,8.0,0.00299783,0.203992
+393,13.079733,0.0,0.0,14.0,24.2328,31.0,230.0,67.0,120.0,124.242,129.0,165.0,108.0,127.0,130.076,132.0,179.0,0.0,1.0,5.53435,10.0,76.0,116.0,129.483,2.7349,1.95089,1.27861,8.0,8.0,8.0,0.00315501,0.179492
+394,13.1131,0.0,0.0,14.0,24.0856,31.0,230.0,67.0,120.0,124.204,129.0,168.0,108.0,127.0,130.125,132.0,181.0,0.0,1.0,5.61947,10.0,77.0,116.0,129.1,2.46361,1.98364,1.28408,8.0,8.0,8.0,0.00292924,0.195428
+395,13.146467,0.0,0.0,14.0,24.128,31.0,255.0,67.0,120.0,124.142,129.0,166.0,111.0,127.0,130.148,132.0,179.0,0.0,1.0,5.6209,10.0,78.0,116.0,129.849,3.05289,2.04889,1.31083,8.0,8.0,8.0,0.0028035,0.190141
+396,13.179833,0.0,0.0,14.0,24.2981,31.0,234.0,62.0,120.0,124.065,129.0,166.0,109.0,127.0,130.225,132.0,179.0,0.0,1.0,5.69575,10.0,81.0,116.0,129.684,2.55848,1.95721,1.26816,8.0,8.0,8.0,0.00286065,0.185874
+397,13.2132,0.0,0.0,14.0,24.0487,31.0,237.0,65.0,120.0,124.227,129.0,167.0,110.0,127.0,130.105,132.0,180.0,0.0,1.0,5.56636,10.0,81.0,116.0,130.252,2.98923,1.95398,1.30153,8.0,8.0,8.0,0.00318073,0.193727
+398,13.246567,0.0,0.0,14.0,24.4019,31.0,234.0,65.0,120.0,124.221,129.0,170.0,108.0,127.0,130.14,132.0,184.0,0.0,1.0,5.65185,11.0,83.0,116.0,130.479,2.39718,1.97501,1.31289,8.0,8.0,8.0,0.00298925,0.182187
+399,13.279933,0.0,0.0,14.0,24.2885,31.0,233.0,66.0,120.0,124.225,129.0,165.0,110.0,127.0,130.183,132.0,180.0,0.0,1.0,5.61575,10.0,79.0,116.0,131.046,2.32257,1.92946,1.2687,8.0,8.0,8.0,0.00291495,0.180573
+400,13.3133,0.0,0.0,14.0,24.2088,31.0,232.0,66.0,120.0,124.225,129.0,162.0,108.0,127.0,130.033,132.0,180.0,0.0,1.0,5.55118,10.0,79.0,116.0,128.949,2.53392,1.92851,1.28989,8.0,8.0,8.0,0.00285494,0.186331
+401,13.346667,0.0,0.0,14.0,24.1301,31.0,255.0,64.0,120.0,124.326,129.0,162.0,108.0,127.0,130.104,132.0,185.0,0.0,1.0,5.47541,10.0,80.0,116.0,131.525,2.1714,1.90713,1.23827,8.0,8.0,8.0,0.00312357,0.193819
+402,13.380033,0.0,0.0,13.0,23.8317,31.0,246.0,66.0,120.0,124.29,129.0,162.0,107.0,127.0,129.944,132.0,183.0,0.0,1.0,5.57039,11.0,79.0,116.0,128.513,2.42944,1.94439,1.32048,8.0,8.0,8.0,0.00303784,0.210071
+403,13.4134,0.0,0.0,14.0,24.1248,31.0,236.0,66.0,120.0,124.332,129.0,164.0,107.0,127.0,130.028,132.0,181.0,0.0,1.0,5.48177,10.0,78.0,116.0,129.86,2.76496,2.00393,1.30968,8.0,8.0,8.0,0.00312929,0.191741
+404,13.446767,0.0,0.0,14.0,24.3084,31.0,236.0,63.0,120.0,124.244,129.0,165.0,104.0,127.0,130.017,132.0,181.0,0.0,1.0,5.58171,10.0,82.0,116.0,129.836,2.12325,1.91896,1.21094,8.0,8.0,8.0,0.00319787,0.181244
+405,13.480133,0.0,0.0,14.0,24.5134,31.0,235.0,65.0,120.0,124.362,129.0,167.0,107.0,127.0,129.99,132.0,181.0,0.0,1.0,5.48828,10.0,79.0,116.0,130.117,2.31504,1.97931,1.24926,8.0,8.0,8.0,0.00272348,0.164446
+406,13.5135,0.0,0.0,14.0,24.6833,32.0,239.0,62.0,120.0,124.188,129.0,165.0,102.0,127.0,130.05,132.0,182.0,0.0,1.0,5.66428,11.0,82.0,116.0,129.454,2.12785,1.97539,1.24009,8.0,8.0,8.0,0.0029321,0.161177
+407,13.546867,0.0,0.0,14.0,24.6982,32.0,237.0,62.0,121.0,124.274,129.0,169.0,107.0,127.0,130.008,132.0,180.0,0.0,1.0,5.54676,10.0,81.0,116.0,130.306,2.2743,1.96063,1.24266,8.0,8.0,8.0,0.00288066,0.158096
+408,13.580233,0.0,0.0,15.0,24.9165,32.0,232.0,66.0,120.0,124.157,129.0,166.0,106.0,127.0,130.002,132.0,179.0,0.0,1.0,5.5886,10.0,78.0,116.0,127.421,2.37044,1.95924,1.24944,8.0,8.0,8.0,0.00296353,0.13918
+409,13.6136,0.0,0.0,14.0,24.7793,32.0,234.0,67.0,120.0,124.237,129.0,171.0,106.0,127.0,130.121,132.0,178.0,0.0,1.0,5.56355,10.0,78.0,116.0,130.47,2.09056,1.93373,1.22026,8.0,8.0,8.0,0.00281493,0.147937
+410,13.646967,0.0,0.0,14.0,24.6729,32.0,232.0,68.0,120.0,124.262,129.0,169.0,107.0,127.0,129.99,132.0,179.0,0.0,1.0,5.53491,10.0,77.0,116.0,128.968,2.31103,1.9562,1.27037,8.0,8.0,8.0,0.00295496,0.157479
+411,13.680333,0.0,0.0,14.0,24.713,32.0,232.0,65.0,120.0,124.324,129.0,168.0,108.0,127.0,130.036,132.0,179.0,0.0,1.0,5.43528,10.0,79.0,116.0,131.073,2.09893,1.90262,1.20504,8.0,8.0,8.0,0.00286637,0.153535
+412,13.7137,0.0,0.0,14.0,24.5513,31.0,233.0,63.0,120.0,124.193,129.0,170.0,106.0,127.0,129.958,132.0,181.0,0.0,1.0,5.55383,10.0,82.0,116.0,128.613,2.26279,1.93706,1.21027,8.0,8.0,8.0,0.00290924,0.159757
+413,13.747067,0.0,0.0,15.0,24.911,32.0,232.0,66.0,120.0,124.223,129.0,169.0,107.0,127.0,130.081,132.0,180.0,0.0,1.0,5.59315,10.0,79.0,116.0,129.989,2.54592,2.01343,1.23755,8.0,8.0,8.0,0.00312357,0.140352
+414,13.780433,0.0,0.0,14.0,24.7515,32.0,237.0,68.0,120.0,124.125,129.0,164.0,105.0,127.0,130.078,132.0,180.0,0.0,1.0,5.70726,11.0,79.0,116.0,128.239,2.10963,1.95438,1.24686,8.0,8.0,8.0,0.00314358,0.153644
+415,13.8138,0.0,0.0,15.0,24.9764,32.0,254.0,68.0,120.0,124.054,129.0,177.0,108.0,127.0,130.103,132.0,180.0,0.0,1.0,5.71063,11.0,77.0,116.0,127.842,2.39156,2.04845,1.31267,8.0,8.0,8.0,0.00356939,0.137829
+416,13.847167,0.0,0.0,15.0,25.0375,32.0,236.0,67.0,120.0,124.15,129.0,167.0,107.0,127.0,130.106,132.0,180.0,0.0,1.0,5.69064,11.0,78.0,116.0,128.878,2.08158,1.93488,1.22308,8.0,8.0,8.0,0.00349223,0.135297
+417,13.880533,0.0,0.0,14.0,24.6582,32.0,252.0,67.0,120.0,124.141,129.0,162.0,109.0,127.0,130.042,132.0,179.0,0.0,1.0,5.65096,10.0,78.0,116.0,129.121,2.55624,2.03102,1.26536,8.0,8.0,8.0,0.00359511,0.160877
+418,13.9139,0.0,0.0,14.0,24.5422,32.0,252.0,66.0,120.0,124.22,129.0,167.0,107.0,127.0,129.992,132.0,177.0,0.0,1.0,5.61175,10.0,77.0,116.0,128.675,2.85086,2.04647,1.28781,8.0,8.0,8.0,0.00346651,0.175797
+419,13.947267,0.0,0.0,14.0,24.338,31.0,232.0,66.0,120.0,124.236,129.0,163.0,109.0,127.0,130.043,132.0,178.0,0.0,1.0,5.53723,10.0,77.0,116.0,129.467,2.28601,2.01088,1.25455,8.0,8.0,8.0,0.00324646,0.179212
+420,13.980633,0.0,0.0,14.0,24.5136,31.0,232.0,66.0,120.0,124.126,129.0,167.0,109.0,127.0,129.979,132.0,180.0,0.0,1.0,5.62284,10.0,78.0,116.0,127.504,2.75355,2.05578,1.32163,8.0,8.0,8.0,0.00284351,0.163875
+421,14.014,0.0,0.0,14.0,24.7752,32.0,235.0,67.0,120.0,124.131,129.0,164.0,109.0,127.0,130.062,132.0,179.0,0.0,1.0,5.60616,10.0,79.0,116.0,128.091,2.48676,2.00797,1.27195,8.0,8.0,8.0,0.00332362,0.152689
+422,14.047367,0.0,0.0,14.0,24.3683,31.0,233.0,65.0,120.0,124.108,129.0,165.0,106.0,127.0,129.994,132.0,182.0,0.0,1.0,5.65848,10.0,82.0,116.0,126.451,2.61925,2.03225,1.27276,8.0,8.0,8.0,0.00365226,0.180684
+423,14.080733,0.0,0.0,14.0,24.6414,32.0,232.0,62.0,120.0,124.139,129.0,163.0,107.0,127.0,130.042,132.0,178.0,0.0,1.0,5.59775,10.0,81.0,116.0,128.248,2.55892,1.95911,1.26979,8.0,8.0,8.0,0.00310357,0.162894
+424,14.1141,0.0,0.0,14.0,24.6447,31.0,231.0,65.0,120.0,124.077,129.0,164.0,107.0,127.0,130.031,132.0,179.0,0.0,1.0,5.67809,10.0,79.0,116.0,127.775,2.22545,1.9322,1.24288,8.0,8.0,8.0,0.00358939,0.159714
+425,14.147467,0.0,0.0,15.0,24.9388,32.0,255.0,64.0,120.0,124.11,129.0,162.0,106.0,127.0,130.033,132.0,181.0,0.0,1.0,5.58697,10.0,80.0,116.0,128.194,2.36159,1.98951,1.2476,8.0,8.0,8.0,0.00348365,0.141532
+426,14.180833,0.0,0.0,14.0,24.9183,32.0,255.0,63.0,120.0,123.991,129.0,161.0,105.0,127.0,130.112,132.0,179.0,0.0,1.0,5.74161,10.0,81.0,116.0,127.896,2.15544,1.99188,1.25649,8.0,8.0,8.0,0.00336077,0.149806
+427,14.2142,0.0,0.0,14.0,24.509,32.0,232.0,63.0,120.0,124.13,129.0,162.0,109.0,127.0,129.999,132.0,178.0,0.0,1.0,5.56168,10.0,79.0,116.0,128.869,3.0266,2.05358,1.29251,8.0,8.0,8.0,0.00355224,0.163572
+428,14.247567,0.0,0.0,14.0,24.6055,31.0,255.0,66.0,120.0,124.04,129.0,164.0,108.0,127.0,130.052,132.0,179.0,0.0,1.0,5.68419,10.0,78.0,116.0,127.704,3.25122,2.02278,1.28987,8.0,8.0,8.0,0.00342936,0.158559
+429,14.280933,0.0,0.0,14.0,24.6049,31.0,253.0,61.0,120.0,124.097,129.0,163.0,108.0,127.0,130.069,132.0,180.0,0.0,1.0,5.61974,10.0,79.0,116.0,128.199,2.11003,1.95398,1.23185,8.0,8.0,8.0,0.00335505,0.162263
+430,14.3143,0.0,0.0,14.0,24.6426,31.0,253.0,64.0,120.0,124.113,129.0,170.0,104.0,127.0,129.968,132.0,182.0,0.0,1.0,5.64139,10.0,81.0,116.0,126.887,2.53915,2.06812,1.30585,8.0,8.0,8.0,0.00365512,0.160411
+431,14.347667,0.0,0.0,14.0,24.747,32.0,236.0,63.0,120.0,124.094,129.0,164.0,110.0,127.0,130.036,132.0,181.0,0.0,1.0,5.61756,10.0,81.0,116.0,128.166,2.30203,2.00476,1.25594,8.0,8.0,8.0,0.00351509,0.15435
+432,14.381033,0.0,0.0,14.0,24.4992,31.0,239.0,63.0,120.0,124.117,129.0,170.0,109.0,127.0,129.98,132.0,180.0,0.0,1.0,5.63988,11.0,82.0,116.0,127.865,2.64541,1.97362,1.25935,8.0,8.0,8.0,0.00307213,0.166755
+433,14.4144,0.0,0.0,14.0,24.7578,32.0,249.0,65.0,120.0,124.114,129.0,167.0,110.0,127.0,130.051,132.0,180.0,0.0,1.0,5.66094,10.0,81.0,116.0,128.211,2.41528,1.97748,1.23796,8.0,8.0,8.0,0.00319216,0.15535
+434,14.447767,0.0,0.0,14.0,24.5536,31.0,255.0,67.0,120.0,123.995,129.0,165.0,107.0,127.0,130.079,132.0,181.0,0.0,1.0,5.77937,11.0,79.0,116.0,127.026,2.4262,2.02835,1.30748,8.0,8.0,8.0,0.00288352,0.166198
+435,14.481133,0.0,0.0,14.0,24.7675,32.0,235.0,67.0,120.0,124.045,129.0,164.0,108.0,127.0,130.023,132.0,180.0,0.0,1.0,5.63692,10.0,79.0,116.0,126.595,2.77894,2.04037,1.32123,8.0,8.0,8.0,0.0027292,0.150094
+436,14.5145,0.0,0.0,14.0,24.8737,32.0,235.0,65.0,120.0,124.036,128.0,166.0,103.0,127.0,130.053,132.0,178.0,0.0,1.0,5.67069,10.0,79.0,116.0,126.609,2.33028,1.95162,1.25179,8.0,8.0,8.0,0.00302355,0.14862
+437,14.547867,0.0,0.0,14.0,24.5609,31.0,255.0,66.0,120.0,124.213,129.0,166.0,108.0,127.0,129.971,132.0,179.0,0.0,1.0,5.51248,10.0,80.0,116.0,128.275,2.55532,1.96465,1.23266,8.0,8.0,8.0,0.00299497,0.162631
+438,14.581233,0.0,0.0,14.0,24.9439,32.0,236.0,63.0,120.0,124.178,129.0,166.0,105.0,127.0,130.052,132.0,178.0,0.0,1.0,5.61247,10.0,81.0,116.0,127.69,2.49624,1.96431,1.24135,8.0,8.0,8.0,0.00300069,0.144459
+439,14.6146,0.0,0.0,15.0,24.8607,32.0,248.0,66.0,121.0,124.198,129.0,166.0,106.0,127.0,130.077,132.0,179.0,0.0,1.0,5.59078,10.0,79.0,116.0,128.2,2.14324,1.88172,1.25193,8.0,8.0,8.0,0.00299497,0.143564
+440,14.647967,0.0,0.0,14.0,24.7765,32.0,251.0,67.0,120.0,124.147,129.0,166.0,105.0,127.0,129.955,132.0,179.0,0.0,1.0,5.62989,11.0,77.0,116.0,127.025,2.25383,1.90232,1.22968,8.0,8.0,8.0,0.00316072,0.15152
+441,14.681333,0.0,0.0,14.0,24.8236,32.0,238.0,67.0,120.0,124.197,129.0,164.0,105.0,127.0,130.09,132.0,180.0,0.0,1.0,5.57226,10.0,78.0,116.0,129.353,2.04901,1.90281,1.18046,8.0,8.0,8.0,0.00316072,0.147694
+442,14.7147,0.0,0.0,14.0,24.9745,32.0,255.0,66.0,120.0,124.162,129.0,164.0,107.0,127.0,129.99,132.0,180.0,0.0,1.0,5.6766,11.0,79.0,116.0,128.011,2.46213,1.98571,1.24106,8.0,8.0,8.0,0.00309214,0.148091
+443,14.748067,0.0,0.0,14.0,24.9511,32.0,255.0,66.0,120.0,124.254,129.0,170.0,107.0,127.0,129.951,132.0,181.0,0.0,1.0,5.50046,10.0,81.0,116.0,128.761,2.81792,1.99871,1.2762,8.0,8.0,8.0,0.00318644,0.147642
+444,14.781433,0.0,0.0,14.0,24.8564,32.0,236.0,67.0,120.0,124.225,129.0,164.0,107.0,127.0,129.942,132.0,183.0,0.0,1.0,5.57788,10.0,79.0,116.0,127.797,2.09094,1.9068,1.2098,8.0,8.0,8.0,0.00290638,0.153264
+445,14.8148,0.0,0.0,14.0,24.8369,32.0,255.0,68.0,120.0,124.253,129.0,162.0,109.0,127.0,129.9,132.0,180.0,0.0,1.0,5.54657,10.0,78.0,116.0,128.095,2.57172,1.99134,1.27559,8.0,8.0,8.0,0.00280064,0.150217
+446,14.848167,0.0,0.0,14.0,24.9317,32.0,255.0,64.0,120.0,124.206,129.0,162.0,103.0,127.0,129.92,132.0,182.0,0.0,1.0,5.61351,11.0,81.0,116.0,127.076,2.44218,2.00056,1.2818,8.0,8.0,8.0,0.00310357,0.148477
+447,14.881533,0.0,0.0,14.0,24.4278,31.0,234.0,66.0,121.0,124.293,129.0,162.0,109.0,127.0,129.963,132.0,179.0,0.0,1.0,5.49827,10.0,80.0,116.0,128.552,2.91303,1.99842,1.31163,8.0,8.0,8.0,0.00294639,0.168247
+448,14.9149,0.0,0.0,14.0,24.4749,31.0,234.0,64.0,120.0,124.19,129.0,161.0,109.0,127.0,129.933,132.0,180.0,0.0,1.0,5.61471,10.0,81.0,116.0,127.556,2.38659,1.9529,1.25921,8.0,8.0,8.0,0.00308642,0.168181
+449,14.948267,0.0,0.0,14.0,24.5031,31.0,234.0,66.0,120.0,124.304,129.0,170.0,108.0,127.0,130.022,132.0,180.0,0.0,1.0,5.52373,10.0,80.0,116.0,130.009,2.23418,1.96107,1.25286,8.0,8.0,8.0,0.0032979,0.165684
+450,14.981633,0.0,0.0,14.0,24.6164,31.0,246.0,67.0,120.0,124.27,129.0,165.0,108.0,127.0,129.945,132.0,180.0,0.0,1.0,5.58201,10.0,78.0,116.0,128.721,2.50391,1.98536,1.26486,8.0,8.0,8.0,0.00323788,0.158062
+451,15.015,0.0,0.0,14.0,24.5687,31.0,238.0,67.0,120.0,124.282,129.0,166.0,110.0,127.0,130.079,132.0,179.0,0.0,1.0,5.53275,10.0,78.0,116.0,129.948,2.25459,1.96824,1.23524,8.0,8.0,8.0,0.00329218,0.160248
+452,15.048367,0.0,0.0,14.0,24.2665,31.0,237.0,66.0,120.0,124.221,129.0,164.0,110.0,127.0,129.928,132.0,180.0,0.0,1.0,5.54887,10.0,80.0,116.0,127.272,2.79622,1.95522,1.25963,8.0,8.0,8.0,0.00335505,0.182256
+453,15.081733,0.0,0.0,14.0,24.483,31.0,238.0,67.0,121.0,124.321,129.0,167.0,110.0,127.0,130.104,132.0,179.0,0.0,1.0,5.53417,10.0,77.0,116.0,131.365,3.16001,1.97141,1.32593,8.0,8.0,8.0,0.00348365,0.167864
+454,15.1151,0.0,0.0,14.0,24.3521,31.0,255.0,63.0,120.0,124.233,129.0,165.0,107.0,127.0,130.009,132.0,180.0,0.0,1.0,5.6193,10.0,79.0,116.0,128.335,2.10473,1.92571,1.25768,8.0,8.0,8.0,0.00348937,0.182044
+455,15.148467,0.0,0.0,14.0,24.494,31.0,232.0,40.0,120.0,124.227,129.0,164.0,107.0,127.0,129.979,132.0,179.0,0.0,1.0,5.56715,10.0,89.0,116.0,128.792,2.47922,1.9836,1.28546,8.0,8.0,8.0,0.00305498,0.167187
+456,15.181833,0.0,0.0,14.0,24.6483,32.0,234.0,36.0,120.0,124.221,129.0,164.0,105.0,127.0,130.069,132.0,180.0,0.0,1.0,5.63587,10.0,92.0,116.0,130.336,2.16761,1.89718,1.20269,8.0,8.0,8.0,0.00288352,0.161171
+457,15.2152,0.0,0.0,14.0,24.585,31.0,233.0,38.0,120.0,124.218,129.0,169.0,108.0,127.0,130.028,132.0,179.0,0.0,1.0,5.57433,10.0,91.0,116.0,129.537,2.54706,1.9915,1.26216,8.0,8.0,8.0,0.00282922,0.165701
+458,15.248567,0.0,0.0,14.0,24.631,32.0,228.0,38.0,120.0,124.106,129.0,166.0,105.0,127.0,130.073,132.0,177.0,0.0,1.0,5.70289,10.0,91.0,116.0,129.289,2.43484,2.02084,1.29893,8.0,8.0,8.0,0.00298068,0.156104
+459,15.281933,0.0,0.0,14.0,24.7645,31.0,255.0,65.0,120.0,124.204,129.0,168.0,107.0,127.0,130.13,132.0,180.0,0.0,1.0,5.61924,10.0,80.0,116.0,130.374,2.38863,1.98983,1.28753,8.0,8.0,8.0,0.00356939,0.146659
+460,15.3153,0.0,0.0,14.0,24.7366,31.0,254.0,62.0,120.0,124.194,129.0,165.0,108.0,127.0,130.042,132.0,182.0,0.0,1.0,5.60121,10.0,80.0,116.0,129.268,2.57921,1.97941,1.27213,8.0,8.0,8.0,0.00325503,0.14888
+461,15.348667,0.0,0.0,14.0,24.7263,31.0,255.0,38.0,120.0,124.252,129.0,171.0,108.0,127.0,130.12,132.0,180.0,0.0,1.0,5.62398,10.0,90.0,116.0,131.397,2.19521,1.95107,1.243,8.0,8.0,8.0,0.00302641,0.147922
+462,15.382033,0.0,0.0,14.0,24.5351,32.0,240.0,37.0,120.0,124.124,129.0,166.0,107.0,127.0,130.089,132.0,179.0,0.0,1.0,5.69431,10.0,92.0,116.0,128.811,2.39554,2.01039,1.25489,8.0,8.0,8.0,0.00273205,0.170768
+463,15.4154,0.0,0.0,14.0,24.818,32.0,238.0,38.0,120.0,124.104,129.0,167.0,101.0,127.0,130.158,132.0,182.0,0.0,1.0,5.64452,10.0,90.0,116.0,129.468,2.44001,1.99035,1.29854,8.0,8.0,8.0,0.00287209,0.148117
+464,15.448767,0.0,0.0,14.0,24.7316,32.0,238.0,38.0,120.0,124.101,129.0,165.0,96.0,127.0,130.132,132.0,181.0,0.0,1.0,5.68867,10.0,90.0,116.0,129.575,2.13601,1.91895,1.2033,8.0,8.0,8.0,0.00300069,0.1505
+465,15.482133,0.0,0.0,14.0,24.7432,32.0,255.0,65.0,120.0,124.074,129.0,168.0,108.0,127.0,130.065,132.0,179.0,0.0,1.0,5.6688,10.0,80.0,116.0,127.821,2.32616,2.01757,1.27539,8.0,8.0,8.0,0.00329218,0.152641
+466,15.5155,0.0,0.0,14.0,24.8928,32.0,238.0,64.0,120.0,123.991,129.0,164.0,108.0,127.0,130.132,132.0,179.0,0.0,1.0,5.78332,11.0,80.0,116.0,127.147,2.09761,1.95286,1.24118,8.0,8.0,8.0,0.00323503,0.148917
+467,15.548867,0.0,0.0,14.0,24.8088,32.0,235.0,64.0,120.0,124.098,129.0,169.0,110.0,127.0,130.116,132.0,179.0,0.0,1.0,5.65357,10.0,81.0,116.0,128.57,2.49219,1.97615,1.25418,8.0,8.0,8.0,0.00331504,0.148603
+468,15.582233,0.0,0.0,14.0,24.8655,32.0,238.0,40.0,120.0,124.118,129.0,175.0,110.0,127.0,130.105,132.0,180.0,0.0,1.0,5.68762,11.0,89.0,116.0,129.245,2.80854,1.98736,1.29577,8.0,8.0,8.0,0.00309214,0.146714
+469,15.6156,0.0,0.0,14.0,24.8075,32.0,229.0,38.0,120.0,124.219,129.0,167.0,95.0,127.0,130.121,132.0,179.0,0.0,1.0,5.58891,10.0,90.0,116.0,130.604,2.05638,1.9253,1.22046,8.0,8.0,8.0,0.00288637,0.14553
+470,15.648967,0.0,0.0,14.0,24.4602,31.0,238.0,36.0,120.0,124.233,129.0,172.0,106.0,127.0,129.971,132.0,181.0,0.0,1.0,5.60314,10.0,92.0,116.0,128.699,2.4885,2.03813,1.29337,8.0,8.0,8.0,0.00324074,0.171568
+471,15.682333,0.0,0.0,14.0,24.5115,31.0,233.0,37.0,120.0,124.288,129.0,165.0,110.0,127.0,130.056,132.0,179.0,0.0,1.0,5.51373,10.0,91.0,116.0,130.455,2.1783,1.9694,1.25567,8.0,8.0,8.0,0.00318358,0.165572
+472,15.7157,0.0,0.0,14.0,24.5476,31.0,232.0,38.0,120.0,124.286,129.0,163.0,96.0,127.0,129.872,132.0,179.0,0.0,1.0,5.50588,10.0,90.0,116.0,127.827,2.35874,1.94592,1.27582,8.0,8.0,8.0,0.00303784,0.161223
+473,15.749067,0.0,0.0,15.0,24.6364,31.0,232.0,37.0,121.0,124.341,129.0,167.0,108.0,127.0,129.948,132.0,181.0,0.0,1.0,5.48965,10.0,91.0,116.0,130.228,2.36291,1.96102,1.25488,8.0,8.0,8.0,0.00280636,0.145142
+474,15.782433,0.0,0.0,14.0,24.6752,31.0,255.0,40.0,120.0,124.319,129.0,167.0,107.0,127.0,129.912,132.0,182.0,0.0,1.0,5.5442,10.0,89.0,116.0,128.465,2.72063,1.98805,1.3235,8.0,8.0,8.0,0.00262631,0.154007
+475,15.8158,0.0,0.0,14.0,24.7829,31.0,252.0,66.0,120.0,124.443,129.0,163.0,108.0,127.0,129.904,132.0,180.0,0.0,1.0,5.39432,10.0,80.0,116.0,130.089,3.10246,2.06576,1.3343,8.0,8.0,8.0,0.00312643,0.144067
+476,15.849167,0.0,0.0,14.0,24.837,32.0,235.0,67.0,120.0,124.361,129.0,163.0,110.0,127.0,129.922,132.0,181.0,0.0,1.0,5.47535,11.0,80.0,116.0,129.859,2.3343,1.92507,1.2201,8.0,8.0,8.0,0.00322359,0.147174
+477,15.882533,0.0,0.0,14.0,24.3881,31.0,236.0,68.0,121.0,124.393,129.0,162.0,108.0,127.0,129.932,132.0,181.0,0.0,1.0,5.44466,10.0,79.0,116.0,129.598,2.93796,1.98084,1.28551,8.0,8.0,8.0,0.00338363,0.170756
+478,15.9159,0.0,0.0,14.0,24.5547,31.0,228.0,65.0,120.0,124.272,129.0,165.0,108.0,127.0,129.978,132.0,180.0,0.0,1.0,5.55849,11.0,79.0,116.0,128.655,3.19428,2.02418,1.31519,8.0,8.0,8.0,0.00327789,0.161263
+479,15.949267,0.0,0.0,14.0,24.5808,31.0,233.0,67.0,121.0,124.296,129.0,166.0,109.0,127.0,129.995,132.0,180.0,0.0,1.0,5.51855,10.0,78.0,116.0,129.192,2.23499,1.93889,1.2493,8.0,8.0,8.0,0.00336648,0.158771
+480,15.982633,0.0,0.0,14.0,24.6463,31.0,255.0,67.0,120.0,124.327,129.0,166.0,109.0,127.0,129.877,132.0,179.0,0.0,1.0,5.50144,11.0,78.0,116.0,128.574,2.40588,1.92506,1.24854,8.0,8.0,8.0,0.00367227,0.157685
+481,16.016,0.0,0.0,14.0,24.8841,32.0,250.0,68.0,120.0,124.354,129.0,166.0,108.0,127.0,130.01,132.0,179.0,0.0,1.0,5.49505,10.0,78.0,116.0,131.043,2.06497,1.88781,1.19369,8.0,8.0,8.0,0.00362654,0.147708
+482,16.049367,0.0,0.0,14.0,24.6749,32.0,255.0,65.0,120.0,124.203,129.0,167.0,106.0,127.0,129.956,132.0,180.0,0.0,1.0,5.60287,10.0,80.0,116.0,128.125,2.46151,1.99593,1.23388,8.0,8.0,8.0,0.00302641,0.161903
+483,16.082733,0.0,0.0,15.0,24.8627,32.0,231.0,66.0,120.0,124.185,129.0,168.0,104.0,127.0,130.127,132.0,182.0,0.0,1.0,5.57647,10.0,77.0,116.0,129.461,2.43046,1.95136,1.25717,8.0,8.0,8.0,0.00301497,0.143927
+484,16.1161,0.0,0.0,14.0,24.7079,32.0,231.0,65.0,120.0,124.168,129.0,165.0,106.0,127.0,130.039,132.0,181.0,0.0,1.0,5.61086,10.0,79.0,116.0,128.234,2.78008,1.97389,1.27586,8.0,8.0,8.0,0.00211191,0.154918
+485,16.149467,0.0,0.0,14.0,24.6993,31.0,237.0,67.0,120.0,124.281,129.0,164.0,107.0,127.0,129.994,132.0,179.0,0.0,1.0,5.50489,10.0,77.0,116.0,129.715,3.05193,2.04218,1.26347,8.0,8.0,8.0,0.00284065,0.151992
+486,16.182833,0.0,0.0,14.0,24.6638,32.0,255.0,65.0,120.0,124.3,129.0,162.0,107.0,127.0,130.023,132.0,179.0,0.0,1.0,5.53453,10.0,78.0,116.0,130.057,2.20714,1.92326,1.16204,8.0,8.0,8.0,0.00305498,0.158525
+487,16.2162,0.0,0.0,14.0,24.4405,31.0,255.0,66.0,120.0,124.247,129.0,164.0,109.0,127.0,129.92,132.0,179.0,0.0,1.0,5.477,10.0,78.0,116.0,128.551,2.40688,1.94846,1.19344,8.0,8.0,8.0,0.00306642,0.167167
+488,16.249567,0.0,0.0,14.0,24.5786,32.0,234.0,66.0,121.0,124.305,129.0,166.0,109.0,127.0,129.927,132.0,180.0,0.0,1.0,5.4968,10.0,78.0,116.0,129.43,2.2861,1.92629,1.20431,8.0,8.0,8.0,0.00314358,0.161537
+489,16.282933,0.0,0.0,14.0,24.5303,32.0,232.0,66.0,121.0,124.353,129.0,163.0,108.0,127.0,130.015,132.0,180.0,0.0,1.0,5.44869,10.0,78.0,116.0,130.67,2.00335,1.86531,1.21193,8.0,8.0,8.0,0.0030064,0.162992
+490,16.3163,0.0,0.0,14.0,24.233,31.0,230.0,67.0,120.0,124.303,129.0,160.0,108.0,127.0,129.875,132.0,181.0,0.0,1.0,5.47695,10.0,78.0,116.0,127.727,2.52008,1.95941,1.2372,8.0,8.0,8.0,0.00316644,0.177589
+491,16.349667,0.0,0.0,14.0,23.8538,31.0,232.0,66.0,120.0,124.338,129.0,166.0,107.0,127.0,129.91,132.0,181.0,0.0,1.0,5.45735,10.0,78.0,116.0,128.649,2.42369,1.93166,1.25588,8.0,8.0,8.0,0.00294925,0.199154
+492,16.383033,0.0,0.0,15.0,23.1718,30.0,255.0,74.0,121.0,125.276,129.0,173.0,115.0,127.0,129.252,132.0,166.0,0.0,1.0,4.16019,8.0,63.0,111.0,124.742,11.2247,5.07939,3.50714,8.0,8.0,8.0,0.00378944,0.131956
+493,16.4164,0.0,0.0,16.0,23.8928,31.0,243.0,73.0,121.0,125.183,129.0,160.0,114.0,127.0,129.438,132.0,169.0,0.0,1.0,4.14834,8.0,65.0,116.0,125.813,2.61645,2.04803,1.34663,8.0,8.0,8.0,0.00367798,0.0986511
+494,16.449767,0.0,0.0,16.0,24.255,32.0,255.0,73.0,121.0,125.223,129.0,160.0,116.0,127.0,129.513,132.0,168.0,0.0,1.0,4.16176,8.0,61.0,116.0,127.122,2.05144,1.8836,1.19776,8.0,8.0,8.0,0.00380373,0.0877286
+495,16.483133,0.0,0.0,16.0,24.519,32.0,243.0,73.0,121.0,125.154,129.0,161.0,114.0,127.0,129.485,132.0,170.0,0.0,1.0,4.187,8.0,63.0,116.0,126.184,2.28374,1.93693,1.22271,8.0,8.0,8.0,0.00349794,0.0770719
+496,16.5165,0.0,0.0,16.0,24.6093,32.0,255.0,72.0,121.0,125.076,129.0,163.0,115.0,127.0,129.545,132.0,171.0,0.0,1.0,4.3135,9.0,67.0,116.0,127.43,2.14626,1.93216,1.21901,8.0,8.0,8.0,0.00380658,0.0799554
+497,16.549867,0.0,0.0,16.0,24.3955,32.0,244.0,73.0,121.0,125.199,129.0,161.0,115.0,127.0,129.502,132.0,168.0,0.0,1.0,4.15481,8.0,65.0,116.0,127.085,2.30216,1.98233,1.26285,8.0,8.0,8.0,0.00370656,0.0840592
+498,16.583233,0.0,0.0,16.0,24.6631,32.0,245.0,72.0,121.0,125.133,129.0,160.0,115.0,127.0,129.541,132.0,167.0,0.0,1.0,4.22894,8.0,67.0,116.0,126.579,2.34956,1.94049,1.2288,8.0,8.0,8.0,0.0036094,0.0753286
+499,16.6166,0.0,0.0,16.0,24.6987,32.0,245.0,69.0,121.0,125.118,129.0,163.0,116.0,127.0,129.573,132.0,166.0,0.0,1.0,4.22102,8.0,69.0,116.0,126.744,2.08889,1.91397,1.181,8.0,8.0,8.0,0.00364941,0.0727766
+500,16.649967,0.0,0.0,16.0,24.4406,32.0,255.0,73.0,121.0,125.122,129.0,162.0,116.0,127.0,129.488,132.0,171.0,0.0,1.0,4.24856,8.0,66.0,116.0,126.289,2.49274,2.02235,1.27533,8.0,8.0,8.0,0.00332647,0.0891832
+501,16.683333,0.0,0.0,16.0,24.5525,32.0,245.0,73.0,121.0,125.165,129.0,163.0,113.0,127.0,129.557,132.0,166.0,0.0,1.0,4.18944,8.0,65.0,116.0,127.414,2.30066,2.02018,1.26608,8.0,8.0,8.0,0.00350652,0.076789
+502,16.7167,0.0,0.0,16.0,24.5939,32.0,244.0,74.0,121.0,125.165,129.0,162.0,115.0,127.0,129.553,132.0,168.0,0.0,1.0,4.16741,8.0,66.0,116.0,126.583,2.51243,1.92434,1.202,8.0,8.0,8.0,0.00367227,0.0752286
+503,16.750067,0.0,0.0,16.0,24.5871,32.0,246.0,74.0,121.0,125.197,129.0,158.0,116.0,127.0,129.572,132.0,171.0,0.0,1.0,4.12841,8.0,67.0,116.0,127.883,2.72505,1.93794,1.19899,8.0,8.0,8.0,0.00346079,0.0792953
+504,16.783433,0.0,0.0,16.0,24.5655,32.0,243.0,76.0,121.0,125.101,129.0,158.0,115.0,127.0,129.615,132.0,174.0,0.0,1.0,4.26871,8.0,67.0,116.0,127.371,2.20135,1.92531,1.19202,8.0,8.0,8.0,0.00340364,0.0828704
+505,16.8168,0.0,0.0,16.0,24.729,32.0,255.0,74.0,121.0,125.035,129.0,159.0,115.0,127.0,129.583,132.0,171.0,0.0,1.0,4.24777,8.0,65.0,116.0,125.87,2.37118,1.98306,1.26627,8.0,8.0,8.0,0.0036294,0.0698245
+506,16.850167,0.0,0.0,16.0,24.8448,32.0,246.0,72.0,121.0,124.947,128.0,160.0,115.0,127.0,129.652,132.0,170.0,0.0,1.0,4.3315,9.0,62.0,116.0,126.051,2.02423,1.88328,1.16934,8.0,8.0,8.0,0.00360368,0.0701189
+507,16.883533,0.0,0.0,16.0,24.4227,32.0,248.0,76.0,121.0,125.092,129.0,160.0,115.0,127.0,129.549,132.0,170.0,0.0,1.0,4.22701,8.0,62.0,116.0,127.257,2.36765,1.95545,1.19842,8.0,8.0,8.0,0.00352938,0.0825532
+508,16.9169,0.0,0.0,16.0,24.448,32.0,247.0,76.0,121.0,125.064,129.0,163.0,115.0,127.0,129.587,132.0,173.0,0.0,1.0,4.32726,9.0,64.0,116.0,126.508,2.30796,1.9908,1.23861,8.0,8.0,8.0,0.0035551,0.0848165
+509,16.950267,0.0,0.0,16.0,24.4298,32.0,244.0,75.0,121.0,125.122,129.0,158.0,115.0,127.0,129.675,132.0,169.0,0.0,1.0,4.23611,8.0,64.0,116.0,128.285,2.20944,1.97844,1.2567,8.0,8.0,8.0,0.00343507,0.0797811
+510,16.983633,0.0,0.0,16.0,24.4006,32.0,250.0,75.0,121.0,125.067,129.0,160.0,115.0,127.0,129.57,132.0,167.0,0.0,1.0,4.26027,8.0,60.0,116.0,126.563,2.52684,2.00316,1.2209,8.0,8.0,8.0,0.00327503,0.0818587
+511,17.017,0.0,0.0,16.0,24.7135,32.0,255.0,73.0,121.0,125.002,129.0,161.0,115.0,127.0,129.692,132.0,171.0,0.0,1.0,4.31701,8.0,63.0,116.0,127.201,2.29656,1.95919,1.19567,8.0,8.0,8.0,0.00366369,0.072548
+512,17.050367,0.0,0.0,16.0,24.327,32.0,243.0,74.0,121.0,125.014,129.0,160.0,115.0,127.0,129.645,132.0,170.0,0.0,1.0,4.34632,9.0,66.0,116.0,126.114,2.39867,1.96485,1.25941,8.0,8.0,8.0,0.00358082,0.0887974
+513,17.083733,0.0,0.0,16.0,24.2668,32.0,247.0,74.0,121.0,125.041,129.0,161.0,116.0,127.0,129.694,132.0,171.0,0.0,1.0,4.29479,8.0,67.0,116.0,127.826,2.3397,2.00658,1.25285,8.0,8.0,8.0,0.00333505,0.084445
+514,17.1171,0.0,0.0,16.0,24.3733,32.0,255.0,73.0,121.0,125.059,129.0,163.0,115.0,127.0,129.738,132.0,168.0,0.0,1.0,4.28641,8.0,67.0,116.0,128.525,2.03821,1.89463,1.14891,8.0,8.0,8.0,0.00333219,0.0822016
+515,17.150467,0.0,0.0,16.0,24.4436,32.0,242.0,69.0,121.0,125.101,129.0,162.0,114.0,127.0,129.651,132.0,169.0,0.0,1.0,4.23484,8.0,65.0,116.0,127.237,2.2336,1.91658,1.20227,8.0,8.0,8.0,0.00344936,0.0797897
+516,17.183833,0.0,0.0,16.0,24.4495,32.0,241.0,73.0,121.0,125.082,129.0,163.0,115.0,127.0,129.694,132.0,169.0,0.0,1.0,4.33474,9.0,66.0,116.0,128.237,2.09267,1.92944,1.21938,8.0,8.0,8.0,0.00351509,0.0800897
+517,17.2172,0.0,0.0,16.0,24.5791,32.0,239.0,74.0,121.0,125.059,129.0,157.0,115.0,127.0,129.687,132.0,168.0,0.0,1.0,4.28011,9.0,63.0,116.0,127.676,2.36059,1.98376,1.23179,8.0,8.0,8.0,0.00350937,0.0697359
+518,17.250567,0.0,0.0,16.0,24.4798,32.0,246.0,73.0,121.0,125.122,129.0,161.0,116.0,127.0,129.69,132.0,165.0,0.0,1.0,4.22425,8.0,64.0,116.0,128.645,2.81067,1.95922,1.18618,8.0,8.0,8.0,0.00351223,0.0815243
+519,17.283933,0.0,0.0,16.0,24.4383,32.0,245.0,75.0,121.0,125.201,129.0,160.0,116.0,127.0,129.677,132.0,166.0,0.0,1.0,4.18333,8.0,62.0,116.0,129.053,2.08018,1.85011,1.12634,8.0,8.0,8.0,0.0035751,0.0802183
+520,17.3173,0.0,0.0,16.0,24.3671,32.0,242.0,74.0,121.0,125.126,129.0,161.0,114.0,127.0,129.619,132.0,168.0,0.0,1.0,4.26831,8.0,61.0,116.0,127.096,2.52969,2.01211,1.27231,8.0,8.0,8.0,0.00321502,0.0878944
+521,17.350667,0.0,0.0,16.0,24.5496,32.0,252.0,74.0,121.0,125.038,129.0,162.0,114.0,127.0,129.701,132.0,170.0,0.0,1.0,4.29064,8.0,66.0,116.0,128.027,2.27937,1.97942,1.22249,8.0,8.0,8.0,0.00362083,0.0735711
+522,17.384033,0.0,0.0,16.0,24.3883,32.0,242.0,74.0,121.0,125.161,129.0,158.0,115.0,127.0,129.62,132.0,169.0,0.0,1.0,4.19895,8.0,66.0,116.0,128.49,2.61313,1.96413,1.19227,8.0,8.0,8.0,0.00325217,0.0836677
+523,17.4174,0.0,0.0,16.0,24.5017,32.0,244.0,74.0,121.0,125.212,129.0,162.0,115.0,127.0,129.591,132.0,168.0,0.0,1.0,4.16237,8.0,66.0,116.0,127.824,2.19219,1.89506,1.16294,8.0,8.0,8.0,0.00325217,0.0801812
+524,17.450767,0.0,0.0,16.0,24.3056,32.0,255.0,73.0,121.0,125.184,129.0,159.0,115.0,127.0,129.588,132.0,170.0,0.0,1.0,4.23038,9.0,66.0,116.0,127.778,2.13484,1.94531,1.19608,8.0,8.0,8.0,0.00352938,0.0895805
+525,17.484133,0.0,0.0,16.0,24.3698,32.0,245.0,74.0,121.0,125.154,129.0,161.0,115.0,127.0,129.536,132.0,168.0,0.0,1.0,4.15133,8.0,62.0,116.0,126.439,2.60514,1.97399,1.25428,8.0,8.0,8.0,0.00279778,0.0830933
+526,17.5175,0.0,0.0,16.0,24.4104,32.0,255.0,74.0,121.0,125.203,129.0,166.0,115.0,127.0,129.591,132.0,166.0,0.0,1.0,4.13466,8.0,62.0,116.0,127.856,2.32427,1.89031,1.18837,8.0,8.0,8.0,0.00360368,0.0803841
+527,17.550867,0.0,0.0,16.0,24.268,32.0,255.0,72.0,121.0,125.421,129.0,162.0,113.0,127.0,129.428,132.0,166.0,0.0,1.0,3.9789,8.0,62.0,116.0,128.016,2.34718,1.8993,1.17206,8.0,8.0,8.0,0.00376658,0.0884031
+528,17.584233,0.0,0.0,16.0,24.3575,32.0,245.0,71.0,121.0,125.325,129.0,167.0,113.0,127.0,129.489,132.0,171.0,0.0,1.0,4.12102,8.0,63.0,116.0,127.958,2.8047,1.97997,1.25407,8.0,8.0,8.0,0.00363512,0.0860711
+529,17.6176,0.0,0.0,16.0,24.2591,32.0,243.0,76.0,121.0,125.304,129.0,161.0,116.0,127.0,129.482,132.0,171.0,0.0,1.0,4.06064,8.0,64.0,116.0,128.187,2.30487,1.93797,1.20458,8.0,8.0,8.0,0.0029521,0.0852252
+530,17.650967,0.0,0.0,16.0,24.1648,32.0,243.0,71.0,121.0,125.189,129.0,159.0,114.0,127.0,129.51,132.0,170.0,0.0,1.0,4.15532,8.0,67.0,116.0,126.226,2.49256,1.93298,1.22275,8.0,8.0,8.0,0.00344079,0.0937929
+531,17.684333,0.0,0.0,16.0,24.2404,31.0,240.0,73.0,121.0,125.067,129.0,160.0,114.0,127.0,129.593,132.0,169.0,0.0,1.0,4.26478,8.0,65.0,116.0,126.32,2.09514,1.89273,1.17772,8.0,8.0,8.0,0.00332933,0.0880344
+532,17.7177,0.0,0.0,16.0,24.372,32.0,247.0,74.0,121.0,125.2,129.0,158.0,115.0,127.0,129.532,132.0,170.0,0.0,1.0,4.20168,8.0,65.0,116.0,126.642,2.38355,1.98043,1.2528,8.0,8.0,8.0,0.00327503,0.0883373
+533,17.751067,0.0,0.0,16.0,24.4546,32.0,245.0,72.0,121.0,125.216,129.0,159.0,115.0,127.0,129.62,132.0,168.0,0.0,1.0,4.16487,8.0,64.0,116.0,128.476,2.28713,1.96674,1.21702,8.0,8.0,8.0,0.00330361,0.0775463
+534,17.784433,0.0,0.0,16.0,24.4243,32.0,245.0,74.0,121.0,125.135,129.0,160.0,111.0,127.0,129.652,132.0,168.0,0.0,1.0,4.22011,8.0,63.0,116.0,127.427,2.08919,1.85322,1.14286,8.0,8.0,8.0,0.00333791,0.0832476
+535,17.8178,0.0,0.0,16.0,24.5422,32.0,248.0,74.0,121.0,125.172,129.0,161.0,114.0,127.0,129.619,132.0,167.0,0.0,1.0,4.20706,8.0,63.0,116.0,127.801,2.35028,2.01105,1.19593,8.0,8.0,8.0,0.00340364,0.0784236
+536,17.851167,0.0,0.0,16.0,24.5482,32.0,248.0,68.0,121.0,125.129,129.0,162.0,114.0,127.0,129.605,132.0,167.0,0.0,1.0,4.27321,8.0,63.0,116.0,127.531,2.17295,1.99728,1.18217,8.0,8.0,8.0,0.00358939,0.0883973
+537,17.884533,0.0,0.0,16.0,24.2824,32.0,246.0,72.0,121.0,125.254,129.0,160.0,113.0,127.0,129.577,132.0,168.0,0.0,1.0,4.13234,8.0,62.0,116.0,128.612,2.3927,1.98473,1.25434,8.0,8.0,8.0,0.00374657,0.0988597
+538,17.9179,0.0,0.0,16.0,24.6095,32.0,251.0,74.0,121.0,125.277,129.0,159.0,114.0,127.0,129.551,132.0,169.0,0.0,1.0,4.14183,8.0,62.0,116.0,128.247,2.27762,1.91216,1.21529,8.0,8.0,8.0,0.00344364,0.0828418
+539,17.951267,0.0,0.0,16.0,24.3352,32.0,245.0,72.0,121.0,125.404,129.0,161.0,113.0,127.0,129.559,132.0,169.0,0.0,1.0,4.034,8.0,63.0,116.0,129.717,2.1372,1.89276,1.17244,8.0,8.0,8.0,0.00314643,0.0903121
+540,17.984633,0.0,0.0,16.0,24.4648,32.0,242.0,74.0,121.0,125.375,129.0,160.0,113.0,127.0,129.484,132.0,170.0,0.0,1.0,4.1008,8.0,64.0,116.0,128.854,2.33899,1.93521,1.22505,8.0,8.0,8.0,0.0033722,0.0918953
+541,18.018,0.0,0.0,16.0,24.7296,32.0,245.0,73.0,121.0,125.3,129.0,165.0,113.0,127.0,129.55,132.0,171.0,0.0,1.0,4.10898,8.0,63.0,116.0,128.736,2.11789,1.94858,1.23504,8.0,8.0,8.0,0.00336077,0.0717764
+542,18.051367,0.0,0.0,16.0,24.5312,32.0,252.0,74.0,121.0,125.257,129.0,161.0,113.0,127.0,129.522,132.0,171.0,0.0,1.0,4.10916,8.0,63.0,116.0,127.036,2.32459,1.9154,1.19494,8.0,8.0,8.0,0.00341792,0.0835305
+543,18.084733,0.0,0.0,16.0,24.4949,32.0,255.0,74.0,121.0,125.406,129.0,159.0,114.0,127.0,129.527,132.0,167.0,0.0,1.0,4.0455,8.0,64.0,116.0,130.096,2.61547,1.95748,1.19448,8.0,8.0,8.0,0.00345793,0.0899034
+544,18.1181,0.0,0.0,15.0,24.2339,32.0,247.0,74.0,121.0,125.341,129.0,160.0,113.0,127.0,129.567,132.0,167.0,0.0,1.0,4.16885,9.0,63.0,116.0,129.894,2.17642,1.93965,1.20673,8.0,8.0,8.0,0.00342936,0.102032
+545,18.151467,0.0,0.0,16.0,24.2977,31.0,247.0,75.0,121.0,125.308,129.0,160.0,115.0,127.0,129.499,132.0,171.0,0.0,1.0,4.06156,8.0,65.0,116.0,127.472,2.49519,1.9824,1.2381,8.0,8.0,8.0,0.00348937,0.0935157
+546,18.184833,0.0,0.0,16.0,24.3341,32.0,246.0,76.0,121.0,125.259,129.0,161.0,115.0,127.0,129.521,132.0,172.0,0.0,1.0,4.12138,8.0,60.0,116.0,127.806,2.17809,1.87896,1.15578,8.0,8.0,8.0,0.0035008,0.0915524
+547,18.2182,0.0,0.0,15.0,23.8882,31.0,245.0,74.0,121.0,125.393,129.0,160.0,115.0,127.0,129.433,132.0,170.0,0.0,1.0,4.01812,8.0,59.0,116.0,128.69,2.51842,1.91967,1.23012,8.0,8.0,8.0,0.00328361,0.114563
+548,18.251567,0.0,0.0,15.0,23.9223,31.0,248.0,74.0,121.0,125.376,129.0,159.0,114.0,127.0,129.439,132.0,169.0,0.0,1.0,4.09384,8.0,61.0,116.0,128.324,2.51118,1.97074,1.24821,8.0,8.0,8.0,0.00360654,0.115018
+549,18.284933,0.0,0.0,15.0,23.8896,31.0,245.0,74.0,121.0,125.39,129.0,158.0,114.0,127.0,129.428,132.0,169.0,0.0,1.0,3.97505,8.0,65.0,116.0,127.86,2.398,1.92147,1.22465,8.0,8.0,8.0,0.00296353,0.109268
+550,18.3183,0.0,0.0,15.0,23.7455,31.0,242.0,70.0,121.0,125.372,129.0,158.0,115.0,127.0,129.34,132.0,171.0,0.0,1.0,3.99184,8.0,69.0,116.0,127.251,2.80738,1.91206,1.20055,8.0,8.0,8.0,0.00287494,0.119939
+551,18.351667,0.0,0.0,15.0,23.7057,31.0,243.0,74.0,121.0,125.407,129.0,159.0,114.0,127.0,129.401,132.0,170.0,0.0,1.0,3.957,8.0,65.0,116.0,127.457,2.39796,1.9199,1.15512,8.0,8.0,8.0,0.00332647,0.12027
+552,18.385033,0.0,0.0,15.0,23.7308,31.0,246.0,75.0,121.0,125.288,129.0,159.0,116.0,127.0,129.381,132.0,171.0,0.0,1.0,4.13585,8.0,67.0,116.0,127.002,2.33348,1.97233,1.1964,8.0,8.0,8.0,0.00317787,0.129421
+553,18.4184,0.0,0.0,15.0,24.0126,31.0,243.0,73.0,121.0,125.28,129.0,161.0,115.0,127.0,129.48,132.0,169.0,0.0,1.0,4.06678,8.0,61.0,116.0,127.085,2.71964,1.9975,1.23535,8.0,8.0,8.0,0.00330361,0.102043
+554,18.451767,0.0,0.0,16.0,24.1382,31.0,245.0,74.0,121.0,125.246,129.0,163.0,114.0,127.0,129.514,132.0,170.0,0.0,1.0,4.13504,8.0,64.0,116.0,127.121,2.17157,1.87348,1.17558,8.0,8.0,8.0,0.00358368,0.0971308
+555,18.485133,0.0,0.0,16.0,24.1774,31.0,244.0,75.0,121.0,125.248,129.0,163.0,113.0,127.0,129.5,132.0,169.0,0.0,1.0,4.11659,8.0,63.0,116.0,127.403,2.2823,1.92857,1.20745,8.0,8.0,8.0,0.00378086,0.0939615
+556,18.5185,0.0,0.0,16.0,24.3461,32.0,245.0,74.0,121.0,125.289,129.0,159.0,115.0,127.0,129.525,132.0,169.0,0.0,1.0,4.19718,9.0,61.0,116.0,128.357,2.09941,1.92836,1.18384,8.0,8.0,8.0,0.00399806,0.095639
+557,18.551867,0.0,0.0,16.0,24.4182,32.0,245.0,75.0,121.0,125.217,129.0,161.0,113.0,127.0,129.601,132.0,168.0,0.0,1.0,4.13663,8.0,64.0,116.0,127.799,2.29656,1.96732,1.23385,8.0,8.0,8.0,0.00408665,0.0889318
+558,18.585233,0.0,0.0,16.0,24.6096,32.0,242.0,72.0,121.0,125.159,129.0,162.0,113.0,127.0,129.574,132.0,170.0,0.0,1.0,4.21312,8.0,68.0,116.0,127.826,2.28974,1.89891,1.17271,8.0,8.0,8.0,0.00404378,0.085068
+559,18.6186,0.0,0.0,16.0,24.6865,32.0,239.0,74.0,121.0,125.106,129.0,163.0,115.0,127.0,129.655,132.0,169.0,0.0,1.0,4.24291,8.0,64.0,116.0,127.513,2.28855,1.88992,1.16349,8.0,8.0,8.0,0.00325789,0.0799011
+560,18.651967,0.0,0.0,16.0,24.2961,32.0,250.0,70.0,121.0,125.047,129.0,160.0,114.0,127.0,129.582,132.0,169.0,0.0,1.0,4.32753,9.0,63.0,116.0,126.948,2.8806,1.99511,1.26508,8.0,8.0,8.0,0.00340935,0.0999686
+561,18.685333,0.0,0.0,16.0,24.5059,32.0,246.0,74.0,121.0,125.037,129.0,161.0,114.0,127.0,129.704,132.0,168.0,0.0,1.0,4.28816,8.0,60.0,116.0,128.129,2.45076,2.02163,1.21398,8.0,8.0,8.0,0.00399234,0.082376
+562,18.7187,0.0,0.0,16.0,24.5176,32.0,239.0,75.0,121.0,125.097,129.0,159.0,114.0,127.0,129.579,132.0,168.0,0.0,1.0,4.24626,8.0,61.0,116.0,127.244,2.31993,1.94707,1.16942,8.0,8.0,8.0,0.0037923,0.085571
+563,18.752067,0.0,0.0,16.0,24.6167,32.0,242.0,75.0,121.0,125.17,129.0,159.0,114.0,127.0,129.618,132.0,167.0,0.0,1.0,4.20247,8.0,62.0,116.0,128.278,2.36159,1.93489,1.18428,8.0,8.0,8.0,0.00380087,0.0793096
+564,18.785433,0.0,0.0,16.0,24.3233,32.0,240.0,75.0,121.0,125.213,129.0,156.0,113.0,127.0,129.65,132.0,168.0,0.0,1.0,4.2397,8.0,63.0,116.0,129.395,2.22583,1.92436,1.19375,8.0,8.0,8.0,0.0040152,0.0947274
+565,18.8188,0.0,0.0,16.0,24.5698,32.0,245.0,76.0,121.0,125.216,129.0,157.0,115.0,127.0,129.547,132.0,168.0,0.0,1.0,4.11782,8.0,63.0,116.0,127.9,2.46009,1.9862,1.23624,8.0,8.0,8.0,0.00378086,0.080427
+566,18.852167,0.0,0.0,16.0,24.7367,32.0,252.0,74.0,121.0,125.176,129.0,160.0,114.0,127.0,129.627,132.0,168.0,0.0,1.0,4.18872,8.0,63.0,116.0,128.506,2.15843,1.85109,1.138,8.0,8.0,8.0,0.0041238,0.0755716
+567,18.885533,0.0,0.0,16.0,24.2578,32.0,255.0,75.0,121.0,125.3,129.0,161.0,114.0,127.0,129.573,132.0,168.0,0.0,1.0,4.07079,8.0,63.0,116.0,129.591,2.6133,1.92956,1.17826,8.0,8.0,8.0,0.00392661,0.091801
+568,18.9189,0.0,0.0,16.0,24.2962,32.0,244.0,75.0,121.0,125.237,129.0,161.0,114.0,127.0,129.547,132.0,170.0,0.0,1.0,4.17697,8.0,63.0,116.0,128.569,2.60288,1.96839,1.23467,8.0,8.0,8.0,0.00392947,0.0926126
+569,18.952267,0.0,0.0,16.0,24.247,31.0,242.0,69.0,121.0,125.304,129.0,164.0,114.0,127.0,129.568,132.0,169.0,0.0,1.0,4.11057,8.0,70.0,116.0,129.332,2.13156,1.90585,1.18363,8.0,8.0,8.0,0.00382373,0.0895633
+570,18.985633,0.0,0.0,16.0,24.28,31.0,246.0,74.0,121.0,125.334,129.0,162.0,113.0,127.0,129.527,132.0,169.0,0.0,1.0,4.0897,8.0,64.0,116.0,128.743,2.34206,1.93821,1.20288,8.0,8.0,8.0,0.00396376,0.0922211
+571,19.019,0.0,0.0,16.0,24.3874,32.0,243.0,73.0,121.0,125.174,129.0,160.0,113.0,127.0,129.626,132.0,169.0,0.0,1.0,4.20665,9.0,65.0,116.0,128.06,2.08434,1.91473,1.18824,8.0,8.0,8.0,0.00421239,0.0885488
+572,19.052367,0.0,0.0,15.0,23.9476,31.0,243.0,74.0,121.0,125.189,129.0,160.0,114.0,127.0,129.54,132.0,169.0,0.0,1.0,4.2628,9.0,65.0,116.0,127.06,2.43594,2.00663,1.27548,8.0,8.0,8.0,0.00380373,0.112128
+573,19.085733,0.0,0.0,16.0,24.0814,31.0,248.0,75.0,121.0,125.229,129.0,159.0,114.0,127.0,129.604,132.0,168.0,0.0,1.0,4.14503,8.0,61.0,116.0,128.618,2.30559,1.9686,1.26241,8.0,8.0,8.0,0.00365512,0.0983996
+574,19.1191,0.0,0.0,15.0,23.8397,31.0,251.0,75.0,121.0,125.187,129.0,165.0,114.0,127.0,129.609,132.0,169.0,0.0,1.0,4.18994,8.0,63.0,116.0,127.963,2.27253,1.92026,1.21103,8.0,8.0,8.0,0.00326932,0.115289
+575,19.152467,0.0,0.0,15.0,23.9668,31.0,253.0,75.0,121.0,125.317,129.0,159.0,114.0,127.0,129.528,132.0,168.0,0.0,1.0,4.07936,8.0,60.0,116.0,128.907,2.7136,1.92997,1.18349,8.0,8.0,8.0,0.00287209,0.108688
+576,19.185833,0.0,0.0,15.0,23.9806,31.0,243.0,71.0,121.0,125.277,129.0,157.0,113.0,127.0,129.528,132.0,167.0,0.0,1.0,4.1778,8.0,67.0,116.0,129.252,2.42994,1.97069,1.20211,8.0,8.0,8.0,0.0036294,0.108482
+577,19.2192,0.0,0.0,15.0,24.0032,31.0,245.0,75.0,121.0,125.306,129.0,157.0,115.0,127.0,129.558,132.0,166.0,0.0,1.0,4.06948,8.0,61.0,116.0,128.069,2.36969,1.98864,1.23073,8.0,8.0,8.0,0.00359225,0.103306
+578,19.252567,0.0,0.0,16.0,24.1409,31.0,245.0,74.0,121.0,125.272,129.0,161.0,115.0,127.0,129.576,132.0,166.0,0.0,1.0,4.12883,8.0,62.0,116.0,128.707,2.80454,1.93583,1.19258,8.0,8.0,8.0,0.00336077,0.0952018
+579,19.285933,0.0,0.0,16.0,24.1137,32.0,240.0,74.0,121.0,125.222,129.0,159.0,115.0,127.0,129.651,132.0,166.0,0.0,1.0,4.15086,8.0,64.0,116.0,129.135,2.21811,1.86794,1.18612,8.0,8.0,8.0,0.00332647,0.0965221
+580,19.3193,0.0,0.0,15.0,24.1318,32.0,246.0,74.0,121.0,125.127,129.0,161.0,114.0,127.0,129.577,132.0,167.0,0.0,1.0,4.27202,9.0,64.0,116.0,127.522,2.44518,1.97501,1.28299,8.0,8.0,8.0,0.00358653,0.100343
+581,19.352667,0.0,0.0,16.0,24.1878,31.0,245.0,72.0,121.0,125.073,129.0,159.0,115.0,127.0,129.658,132.0,171.0,0.0,1.0,4.25588,8.0,68.0,116.0,127.171,2.10302,1.92726,1.21032,8.0,8.0,8.0,0.00362654,0.0939872
+582,19.386033,0.0,0.0,15.0,24.0842,32.0,254.0,73.0,121.0,124.923,128.0,159.0,114.0,127.0,129.638,132.0,170.0,0.0,1.0,4.35842,8.0,67.0,116.0,124.702,2.29208,1.93572,1.19842,8.0,8.0,8.0,0.00365512,0.104498
+583,19.4194,0.0,0.0,16.0,24.4113,32.0,246.0,72.0,121.0,124.909,129.0,158.0,114.0,127.0,129.764,132.0,168.0,0.0,1.0,4.40336,9.0,67.0,116.0,127.289,2.30889,1.92591,1.22469,8.0,8.0,8.0,0.00352366,0.0857053
+584,19.452767,0.0,0.0,16.0,24.2383,32.0,242.0,74.0,121.0,124.929,129.0,158.0,115.0,127.0,129.733,132.0,168.0,0.0,1.0,4.45335,9.0,63.0,116.0,127.011,2.47061,2.01774,1.27981,8.0,8.0,8.0,0.00278064,0.0985682
+585,19.486133,0.0,0.0,16.0,24.2513,32.0,243.0,75.0,121.0,124.975,129.0,159.0,115.0,127.0,129.661,132.0,167.0,0.0,1.0,4.31717,9.0,62.0,116.0,126.679,3.02339,2.05741,1.29025,8.0,8.0,8.0,0.00222051,0.0915895
+586,19.5195,0.0,0.0,16.0,24.1406,32.0,244.0,74.0,121.0,125.063,129.0,160.0,114.0,127.0,129.721,132.0,167.0,0.0,1.0,4.29806,8.0,63.0,116.0,127.968,2.51015,1.90668,1.162,8.0,8.0,8.0,0.00368084,0.0966792
+587,19.552867,0.0,0.0,16.0,24.1037,32.0,254.0,73.0,121.0,125.101,129.0,161.0,114.0,127.0,129.564,132.0,168.0,0.0,1.0,4.22478,8.0,65.0,116.0,126.028,2.38966,1.92701,1.21288,8.0,8.0,8.0,0.00372657,0.0961648
+588,19.586233,0.0,0.0,16.0,24.332,32.0,244.0,72.0,121.0,125.024,129.0,161.0,115.0,127.0,129.63,132.0,170.0,0.0,1.0,4.37478,9.0,67.0,116.0,126.459,2.30228,1.98935,1.29052,8.0,8.0,8.0,0.00338363,0.0961448
+589,19.6196,0.0,0.0,16.0,24.2835,32.0,254.0,71.0,121.0,125.068,129.0,162.0,113.0,127.0,129.682,132.0,170.0,0.0,1.0,4.2922,9.0,66.0,116.0,127.389,2.10484,1.93602,1.2171,8.0,8.0,8.0,0.00343793,0.0905178
+590,19.652967,0.0,0.0,15.0,24.0702,32.0,251.0,74.0,121.0,125.082,129.0,158.0,115.0,127.0,129.555,132.0,169.0,0.0,1.0,4.22885,8.0,65.0,116.0,126.71,2.30741,1.93657,1.19448,8.0,8.0,8.0,0.00360368,0.100517
+591,19.686333,0.0,0.0,16.0,24.0729,31.0,243.0,75.0,121.0,125.064,129.0,158.0,114.0,127.0,129.609,132.0,168.0,0.0,1.0,4.2549,8.0,64.0,116.0,126.688,2.07791,1.88783,1.16848,8.0,8.0,8.0,0.00345222,0.0960477
+592,19.7197,0.0,0.0,15.0,24.0724,31.0,253.0,74.0,121.0,125.104,129.0,162.0,114.0,127.0,129.511,132.0,169.0,0.0,1.0,4.27595,9.0,63.0,116.0,125.965,2.44181,2.01903,1.24798,8.0,8.0,8.0,0.0038123,0.102612
+593,19.753067,0.0,0.0,16.0,24.1176,31.0,240.0,74.0,121.0,125.189,129.0,162.0,114.0,127.0,129.552,132.0,168.0,0.0,1.0,4.15045,8.0,62.0,116.0,127.23,2.41134,1.98456,1.23398,8.0,8.0,8.0,0.00349223,0.0951132
+594,19.786433,0.0,0.0,16.0,24.3639,32.0,255.0,74.0,121.0,125.107,129.0,160.0,115.0,127.0,129.638,132.0,167.0,0.0,1.0,4.2461,8.0,62.0,116.0,127.631,2.05486,1.89962,1.16503,8.0,8.0,8.0,0.00335505,0.0876143
+595,19.8198,0.0,0.0,16.0,24.3218,32.0,255.0,71.0,121.0,125.055,129.0,160.0,114.0,127.0,129.566,132.0,167.0,0.0,1.0,4.27769,8.0,65.0,116.0,126.153,2.29832,1.98016,1.22682,8.0,8.0,8.0,0.00367798,0.0853652
+596,19.853167,0.0,0.0,16.0,24.4355,32.0,254.0,74.0,121.0,125.016,129.0,166.0,114.0,127.0,129.63,132.0,167.0,0.0,1.0,4.37877,9.0,65.0,116.0,127.214,2.12223,1.97221,1.22441,8.0,8.0,8.0,0.00352366,0.0800154
+597,19.886533,0.0,0.0,15.0,24.0601,31.0,248.0,72.0,121.0,125.133,129.0,167.0,113.0,127.0,129.578,132.0,168.0,0.0,1.0,4.23062,8.0,63.0,116.0,126.737,2.42481,1.98867,1.27844,8.0,8.0,8.0,0.00365226,0.102212
+598,19.9199,0.0,0.0,16.0,24.1493,31.0,255.0,73.0,121.0,125.141,129.0,172.0,111.0,127.0,129.61,132.0,168.0,0.0,1.0,4.2222,8.0,63.0,116.0,128.134,2.26927,1.91203,1.20639,8.0,8.0,8.0,0.00354367,0.0893919
+599,19.953267,0.0,0.0,16.0,24.1695,31.0,249.0,72.0,121.0,125.135,129.0,165.0,113.0,127.0,129.598,132.0,169.0,0.0,1.0,4.2413,8.0,63.0,116.0,127.098,2.05142,1.89058,1.18065,8.0,8.0,8.0,0.00364083,0.0893947
+600,19.986633,0.0,0.0,16.0,24.2313,32.0,254.0,73.0,121.0,125.197,129.0,165.0,112.0,127.0,129.496,132.0,169.0,0.0,1.0,4.24003,9.0,64.0,116.0,126.971,2.46172,1.99706,1.31531,8.0,8.0,8.0,0.00323788,0.0938929
+601,20.02,0.0,0.0,16.0,24.3223,32.0,255.0,73.0,121.0,125.268,129.0,164.0,113.0,127.0,129.576,132.0,167.0,0.0,1.0,4.13833,8.0,64.0,116.0,128.684,2.26638,1.97252,1.24865,8.0,8.0,8.0,0.00356653,0.0837077
+602,20.053367,0.0,0.0,16.0,24.3262,32.0,245.0,74.0,121.0,125.093,129.0,159.0,115.0,127.0,129.604,132.0,167.0,0.0,1.0,4.28695,9.0,64.0,116.0,127.581,2.30209,1.94057,1.18931,8.0,8.0,8.0,0.00373228,0.0908036
+603,20.086733,0.0,0.0,16.0,24.3061,32.0,246.0,76.0,121.0,125.078,129.0,159.0,116.0,127.0,129.642,132.0,169.0,0.0,1.0,4.25083,8.0,62.0,116.0,126.898,2.7997,1.95601,1.20975,8.0,8.0,8.0,0.00357796,0.0847594
+604,20.1201,0.0,0.0,16.0,24.1401,32.0,245.0,76.0,121.0,125.09,129.0,161.0,115.0,127.0,129.656,132.0,168.0,0.0,1.0,4.30839,9.0,62.0,116.0,127.913,2.30518,1.94075,1.20921,8.0,8.0,8.0,0.00316072,0.0998057
+605,20.153467,0.0,0.0,16.0,24.1114,31.0,246.0,73.0,121.0,125.166,129.0,159.0,115.0,127.0,129.572,132.0,165.0,0.0,1.0,4.17434,8.0,62.0,116.0,127.589,2.46509,1.96551,1.26345,8.0,8.0,8.0,0.00347222,0.0971622
+606,20.186833,0.0,0.0,16.0,24.2471,31.0,247.0,74.0,121.0,125.185,129.0,160.0,115.0,127.0,129.602,132.0,166.0,0.0,1.0,4.20029,8.0,65.0,116.0,128.621,2.07578,1.85743,1.16842,8.0,8.0,8.0,0.00336363,0.0865569
+607,20.2202,0.0,0.0,16.0,24.1154,31.0,247.0,76.0,121.0,125.216,129.0,160.0,115.0,127.0,129.541,132.0,167.0,0.0,1.0,4.15534,8.0,65.0,116.0,127.026,2.30541,1.89823,1.20935,8.0,8.0,8.0,0.00352938,0.0915324
+608,20.253567,0.0,0.0,16.0,24.0156,31.0,247.0,75.0,121.0,125.132,129.0,161.0,115.0,127.0,129.551,132.0,169.0,0.0,1.0,4.29807,9.0,64.0,116.0,126.682,2.42877,1.97319,1.24576,8.0,8.0,8.0,0.00364083,0.0994542
+609,20.286933,0.0,0.0,16.0,24.1363,31.0,247.0,76.0,121.0,125.216,129.0,162.0,115.0,127.0,129.622,132.0,169.0,0.0,1.0,4.15985,8.0,62.0,116.0,129.152,2.24205,1.95815,1.21305,8.0,8.0,8.0,0.0033922,0.0896005
+610,20.3203,0.0,0.0,16.0,24.1037,32.0,248.0,74.0,121.0,125.193,129.0,159.0,114.0,127.0,129.489,132.0,170.0,0.0,1.0,4.14409,8.0,65.0,116.0,126.395,2.60602,1.97401,1.21827,8.0,8.0,8.0,0.00294925,0.098231
+611,20.353667,0.0,0.0,16.0,24.0556,32.0,255.0,75.0,121.0,125.214,129.0,159.0,115.0,127.0,129.518,132.0,170.0,0.0,1.0,4.10526,8.0,61.0,116.0,126.954,2.31254,1.95512,1.19267,8.0,8.0,8.0,0.00376086,0.098934
+612,20.387033,0.0,0.0,15.0,23.809,32.0,242.0,75.0,121.0,125.181,129.0,160.0,115.0,127.0,129.499,132.0,171.0,0.0,1.0,4.21189,8.0,67.0,116.0,126.791,2.42839,1.98208,1.23663,8.0,8.0,8.0,0.00373514,0.121605
+613,20.4204,0.0,0.0,15.0,23.9857,32.0,241.0,75.0,121.0,125.187,129.0,157.0,115.0,127.0,129.512,132.0,170.0,0.0,1.0,4.15054,8.0,66.0,116.0,126.726,2.30969,1.92319,1.23406,8.0,8.0,8.0,0.00358082,0.108451
+614,20.453767,0.0,0.0,15.0,23.9071,31.0,255.0,74.0,121.0,125.18,129.0,158.0,115.0,127.0,129.553,132.0,170.0,0.0,1.0,4.17899,8.0,66.0,116.0,127.174,2.04206,1.85506,1.16646,8.0,8.0,8.0,0.00364083,0.109894
+615,20.487133,0.0,0.0,16.0,24.1042,31.0,244.0,70.0,121.0,125.104,129.0,161.0,115.0,127.0,129.519,132.0,172.0,0.0,1.0,4.23922,8.0,69.0,116.0,125.847,2.2508,1.92372,1.20853,8.0,8.0,8.0,0.00356939,0.0971079
+616,20.5205,0.0,0.0,16.0,24.1684,32.0,255.0,74.0,121.0,125.084,129.0,160.0,114.0,127.0,129.608,132.0,171.0,0.0,1.0,4.34761,9.0,66.0,116.0,127.123,2.12113,1.96032,1.24299,8.0,8.0,8.0,0.00359797,0.095779
+617,20.553867,0.0,0.0,16.0,24.2582,32.0,239.0,74.0,121.0,125.047,129.0,158.0,116.0,127.0,129.545,132.0,170.0,0.0,1.0,4.25979,9.0,67.0,116.0,125.446,2.35424,1.99917,1.28738,8.0,8.0,8.0,0.00335219,0.094593
+618,20.587233,0.0,0.0,16.0,24.2364,32.0,243.0,75.0,121.0,125.171,129.0,156.0,115.0,127.0,129.475,132.0,170.0,0.0,1.0,4.17582,8.0,66.0,116.0,125.92,2.45476,1.98374,1.24195,8.0,8.0,8.0,0.00377515,0.0900177
+619,20.6206,0.0,0.0,16.0,24.2106,32.0,255.0,72.0,121.0,125.192,129.0,158.0,115.0,127.0,129.57,132.0,169.0,0.0,1.0,4.19435,8.0,69.0,116.0,127.7,2.12988,1.90664,1.17297,8.0,8.0,8.0,0.00378944,0.0919039
+620,20.653967,0.0,0.0,15.0,24.129,32.0,245.0,74.0,121.0,125.072,129.0,161.0,115.0,127.0,129.455,132.0,169.0,0.0,1.0,4.28706,9.0,67.0,116.0,125.391,2.38627,1.9865,1.23864,8.0,8.0,8.0,0.00371799,0.104387
+621,20.687333,0.0,0.0,16.0,24.1547,32.0,245.0,75.0,121.0,125.146,129.0,159.0,115.0,127.0,129.577,132.0,169.0,0.0,1.0,4.19098,8.0,65.0,116.0,126.891,2.1274,1.9193,1.20222,8.0,8.0,8.0,0.00359797,0.0962334
+622,20.7207,0.0,0.0,16.0,24.2563,32.0,242.0,74.0,121.0,125.146,129.0,159.0,115.0,127.0,129.535,132.0,167.0,0.0,1.0,4.1992,8.0,65.0,116.0,126.429,2.7183,1.9418,1.22362,8.0,8.0,8.0,0.00351509,0.096242
+623,20.754067,0.0,0.0,16.0,24.3645,32.0,242.0,75.0,121.0,125.223,129.0,165.0,115.0,127.0,129.546,132.0,169.0,0.0,1.0,4.13693,8.0,65.0,116.0,127.987,2.46725,1.93833,1.18122,8.0,8.0,8.0,0.00336934,0.088163
+624,20.787433,0.0,0.0,16.0,24.2466,32.0,241.0,73.0,121.0,125.206,129.0,161.0,115.0,127.0,129.54,132.0,170.0,0.0,1.0,4.20653,8.0,67.0,116.0,127.879,2.1396,1.98679,1.17902,8.0,8.0,8.0,0.00334648,0.0947131
+625,20.8208,0.0,0.0,16.0,24.2145,32.0,255.0,72.0,121.0,125.288,129.0,159.0,115.0,127.0,129.452,132.0,168.0,0.0,1.0,4.08489,8.0,64.0,116.0,127.179,2.74185,1.98591,1.24435,8.0,8.0,8.0,0.00255773,0.0929527
+626,20.854167,0.0,0.0,16.0,24.1937,32.0,255.0,76.0,121.0,125.253,129.0,161.0,116.0,127.0,129.554,132.0,166.0,0.0,1.0,4.15191,8.0,59.0,116.0,128.27,2.50645,1.92518,1.17369,8.0,8.0,8.0,0.00360082,0.0883688
+627,20.887533,0.0,0.0,15.0,23.8882,31.0,249.0,74.0,121.0,125.391,129.0,163.0,115.0,127.0,129.455,132.0,169.0,0.0,1.0,4.02103,8.0,62.0,116.0,128.032,2.42329,1.9503,1.17022,8.0,8.0,8.0,0.00376086,0.112823
+628,20.9209,0.0,0.0,15.0,23.9432,31.0,255.0,74.0,121.0,125.233,129.0,161.0,116.0,127.0,129.5,132.0,169.0,0.0,1.0,4.18344,8.0,64.0,116.0,127.341,2.84863,2.04195,1.2487,8.0,8.0,8.0,0.00368084,0.107293
+629,20.954267,0.0,0.0,15.0,23.8944,31.0,253.0,74.0,121.0,125.247,129.0,159.0,116.0,127.0,129.566,132.0,167.0,0.0,1.0,4.14011,8.0,64.0,116.0,128.388,2.39016,1.95947,1.20653,8.0,8.0,8.0,0.00276349,0.104338
+630,20.987633,0.0,0.0,16.0,24.0054,31.0,245.0,67.0,121.0,125.321,129.0,159.0,116.0,127.0,129.456,132.0,166.0,0.0,1.0,4.06862,8.0,70.0,116.0,127.543,2.50881,1.93956,1.16326,8.0,8.0,8.0,0.00344364,0.0983425
+631,21.021,0.0,0.0,16.0,24.0343,31.0,250.0,72.0,121.0,125.242,129.0,158.0,115.0,127.0,129.579,132.0,169.0,0.0,1.0,4.14532,8.0,67.0,116.0,128.443,2.13514,1.91191,1.15919,8.0,8.0,8.0,0.00356081,0.0887517
+632,21.054367,0.0,0.0,15.0,23.8625,31.0,247.0,67.0,121.0,125.283,129.0,158.0,116.0,127.0,129.451,132.0,168.0,0.0,1.0,4.14116,9.0,70.0,116.0,127.292,2.31704,1.99334,1.22506,8.0,8.0,8.0,0.00375514,0.115798
+633,21.087733,0.0,0.0,15.0,23.8148,31.0,241.0,71.0,121.0,125.337,129.0,157.0,116.0,127.0,129.491,132.0,170.0,0.0,1.0,4.03543,8.0,67.0,116.0,128.548,2.31884,2.00631,1.2169,8.0,8.0,8.0,0.0033922,0.115569
+634,21.1211,0.0,0.0,15.0,23.8759,32.0,254.0,74.0,121.0,125.242,129.0,160.0,115.0,127.0,129.515,132.0,166.0,0.0,1.0,4.12278,8.0,66.0,116.0,127.449,2.24033,1.92537,1.16446,8.0,8.0,8.0,0.00317501,0.114823
+635,21.154467,0.0,0.0,15.0,23.9956,31.0,255.0,74.0,121.0,125.243,129.0,161.0,115.0,127.0,129.52,132.0,166.0,0.0,1.0,4.13975,8.0,66.0,116.0,128.159,2.5888,1.96983,1.17401,8.0,8.0,8.0,0.00314929,0.103418
+636,21.187833,0.0,0.0,16.0,24.1712,32.0,242.0,75.0,121.0,125.18,129.0,162.0,115.0,127.0,129.586,132.0,168.0,0.0,1.0,4.23659,8.0,61.0,116.0,127.468,2.32262,1.98495,1.20951,8.0,8.0,8.0,0.00369227,0.0958076
+637,21.2212,0.0,0.0,16.0,24.0671,31.0,248.0,73.0,121.0,125.268,129.0,162.0,115.0,127.0,129.48,132.0,168.0,0.0,1.0,4.11834,8.0,67.0,116.0,127.183,2.25581,1.95928,1.25139,8.0,8.0,8.0,0.0035751,0.099197
+638,21.254567,0.0,0.0,16.0,24.104,31.0,239.0,72.0,121.0,125.39,129.0,161.0,115.0,127.0,129.527,132.0,167.0,0.0,1.0,4.0697,8.0,65.0,116.0,129.903,2.31255,1.95768,1.21327,8.0,8.0,8.0,0.00371513,0.0954733
+639,21.287933,0.0,0.0,16.0,24.0705,32.0,245.0,73.0,121.0,125.364,129.0,163.0,114.0,127.0,129.547,132.0,167.0,0.0,1.0,4.04758,8.0,63.0,116.0,129.507,2.12638,1.89603,1.15067,8.0,8.0,8.0,0.00364083,0.098251
+640,21.3213,0.0,0.0,15.0,24.0452,32.0,245.0,74.0,121.0,125.319,129.0,161.0,114.0,127.0,129.435,132.0,167.0,0.0,1.0,4.13632,8.0,64.0,116.0,127.839,2.37626,1.989,1.25833,8.0,8.0,8.0,0.00380087,0.10477
+641,21.354667,0.0,0.0,16.0,24.0203,31.0,245.0,71.0,121.0,125.341,129.0,158.0,114.0,127.0,129.521,132.0,168.0,0.0,1.0,4.07962,8.0,67.0,116.0,129.083,2.0793,1.94464,1.22175,8.0,8.0,8.0,0.00361511,0.0922068
+642,21.388033,0.0,0.0,16.0,24.2369,32.0,242.0,74.0,121.0,125.265,129.0,159.0,114.0,127.0,129.465,132.0,168.0,0.0,1.0,4.10407,8.0,63.0,116.0,127.136,2.26137,1.94027,1.21869,8.0,8.0,8.0,0.00358939,0.0959334
+643,21.4214,0.0,0.0,16.0,24.4517,32.0,251.0,75.0,121.0,125.275,129.0,162.0,115.0,127.0,129.511,132.0,168.0,0.0,1.0,4.12795,8.0,62.0,116.0,127.496,2.25396,1.93412,1.21409,8.0,8.0,8.0,0.00357225,0.0816958
+644,21.454767,0.0,0.0,16.0,24.3215,32.0,243.0,75.0,121.0,125.307,129.0,158.0,115.0,127.0,129.496,132.0,170.0,0.0,1.0,4.14893,8.0,63.0,116.0,128.477,2.09541,1.90428,1.20762,8.0,8.0,8.0,0.00363512,0.0952446
+645,21.488133,0.0,0.0,16.0,24.2759,32.0,244.0,75.0,121.0,125.354,129.0,160.0,116.0,127.0,129.44,132.0,169.0,0.0,1.0,4.04556,8.0,63.0,116.0,127.167,2.31781,1.98193,1.24424,8.0,8.0,8.0,0.00367513,0.0922439
+646,21.5215,0.0,0.0,16.0,24.2727,32.0,253.0,74.0,121.0,125.34,129.0,159.0,115.0,127.0,129.507,132.0,168.0,0.0,1.0,4.09452,8.0,64.0,116.0,128.97,2.09956,1.90046,1.1566,8.0,8.0,8.0,0.00368656,0.0893061
+647,21.554867,0.0,0.0,16.0,24.3959,32.0,247.0,73.0,121.0,125.284,129.0,158.0,115.0,127.0,129.495,132.0,168.0,0.0,1.0,4.10828,8.0,63.0,116.0,127.609,2.30171,1.92888,1.2076,8.0,8.0,8.0,0.00365798,0.0908093
+648,21.588233,0.0,0.0,16.0,24.6794,32.0,246.0,75.0,121.0,125.096,129.0,160.0,114.0,127.0,129.566,132.0,169.0,0.0,1.0,4.3139,9.0,65.0,116.0,126.468,2.33092,2.02155,1.27972,8.0,8.0,8.0,0.00368656,0.0795782
+649,21.6216,0.0,0.0,16.0,24.5721,32.0,245.0,72.0,121.0,125.207,129.0,157.0,113.0,127.0,129.582,132.0,168.0,0.0,1.0,4.18169,8.0,62.0,116.0,128.086,2.16253,2.00067,1.261,8.0,8.0,8.0,0.00353224,0.0787294
+650,21.654967,0.0,0.0,16.0,24.401,32.0,243.0,74.0,121.0,125.298,129.0,160.0,114.0,127.0,129.497,132.0,166.0,0.0,1.0,4.12881,8.0,62.0,116.0,127.984,2.61429,2.02074,1.25831,8.0,8.0,8.0,0.00279778,0.0893519
+651,21.688333,0.0,0.0,16.0,24.3756,32.0,246.0,68.0,121.0,125.349,129.0,158.0,114.0,127.0,129.556,132.0,170.0,0.0,1.0,4.07362,8.0,63.0,116.0,129.505,2.41175,1.98828,1.24096,8.0,8.0,8.0,0.00325503,0.0851595
+652,21.7217,0.0,0.0,16.0,24.3634,32.0,244.0,65.0,121.0,125.381,129.0,157.0,114.0,127.0,129.411,132.0,167.0,0.0,1.0,4.09156,8.0,64.0,116.0,128.373,2.37957,1.96882,1.26719,8.0,8.0,8.0,0.00311786,0.089209
+653,21.755067,0.0,0.0,16.0,24.2374,32.0,244.0,65.0,121.0,125.25,129.0,158.0,112.0,127.0,129.518,132.0,168.0,0.0,1.0,4.129,8.0,63.0,116.0,128.159,2.66496,2.03114,1.2495,8.0,8.0,8.0,0.00326932,0.0899091
+654,21.788433,0.0,0.0,16.0,24.4004,32.0,244.0,67.0,121.0,125.303,129.0,160.0,113.0,127.0,129.541,132.0,167.0,0.0,1.0,4.11024,8.0,62.0,116.0,128.811,2.22125,1.9388,1.17085,8.0,8.0,8.0,0.00348651,0.0864483
+655,21.8218,0.0,0.0,16.0,24.265,32.0,242.0,68.0,121.0,125.241,129.0,163.0,112.0,127.0,129.433,132.0,165.0,0.0,1.0,4.12585,8.0,64.0,116.0,126.648,2.4469,1.97714,1.19639,8.0,8.0,8.0,0.00351795,0.0904721
+656,21.855167,0.0,0.0,16.0,24.3665,32.0,247.0,66.0,121.0,125.154,129.0,160.0,113.0,127.0,129.575,132.0,168.0,0.0,1.0,4.23447,8.0,63.0,116.0,127.396,2.16646,1.93313,1.22666,8.0,8.0,8.0,0.00364941,0.0903692
+657,21.888533,0.0,0.0,15.0,24.1271,32.0,243.0,74.0,121.0,125.192,129.0,161.0,114.0,127.0,129.525,132.0,166.0,0.0,1.0,4.13936,8.0,65.0,116.0,126.609,2.46856,1.96483,1.24008,8.0,8.0,8.0,0.00346651,0.100832
+658,21.9219,0.0,0.0,16.0,24.3176,32.0,244.0,69.0,121.0,125.207,129.0,160.0,117.0,127.0,129.545,132.0,166.0,0.0,1.0,4.18404,8.0,65.0,116.0,128.198,2.29791,1.95573,1.19878,8.0,8.0,8.0,0.00354652,0.0953504
+659,21.955267,0.0,0.0,16.0,24.4011,32.0,255.0,73.0,121.0,125.256,129.0,162.0,115.0,127.0,129.633,132.0,166.0,0.0,1.0,4.14787,8.0,62.0,116.0,129.393,2.27412,1.92189,1.16436,8.0,8.0,8.0,0.00338077,0.0873743
+660,21.988633,0.0,0.0,16.0,24.3832,32.0,242.0,75.0,121.0,125.173,129.0,163.0,116.0,127.0,129.527,132.0,168.0,0.0,1.0,4.23892,9.0,63.0,116.0,127.155,2.70687,2.00537,1.27079,8.0,8.0,8.0,0.00284351,0.0908322
+661,22.022,0.0,0.0,16.0,24.6805,32.0,255.0,74.0,121.0,125.186,129.0,159.0,116.0,127.0,129.631,132.0,168.0,0.0,1.0,4.20487,8.0,61.0,116.0,129.153,2.33023,1.99872,1.26835,8.0,8.0,8.0,0.0035008,0.0713506
+662,22.055367,0.0,0.0,16.0,24.4373,32.0,255.0,74.0,121.0,125.173,129.0,159.0,115.0,127.0,129.604,132.0,169.0,0.0,1.0,4.20884,8.0,61.0,116.0,127.507,2.29626,1.89776,1.19451,8.0,8.0,8.0,0.00352366,0.0865912
+663,22.088733,0.0,0.0,16.0,24.2486,32.0,244.0,76.0,121.0,125.305,129.0,160.0,114.0,127.0,129.608,132.0,169.0,0.0,1.0,4.15032,8.0,62.0,116.0,129.514,2.23917,1.91539,1.2075,8.0,8.0,8.0,0.00327503,0.0886717
+664,22.1221,0.0,0.0,15.0,24.12,32.0,248.0,76.0,121.0,125.317,129.0,160.0,115.0,127.0,129.578,132.0,167.0,0.0,1.0,4.19543,8.0,62.0,116.0,130.351,2.08234,1.93585,1.16435,8.0,8.0,8.0,0.00340364,0.102589
+665,22.155467,0.0,0.0,16.0,24.1913,32.0,247.0,73.0,121.0,125.354,129.0,159.0,113.0,127.0,129.486,132.0,166.0,0.0,1.0,4.06847,8.0,65.0,116.0,128.744,2.28873,1.9784,1.23939,8.0,8.0,8.0,0.00339792,0.0974851
+666,22.188833,0.0,0.0,16.0,24.3163,32.0,255.0,73.0,121.0,125.371,129.0,159.0,116.0,127.0,129.567,132.0,166.0,0.0,1.0,4.08163,8.0,62.0,116.0,130.561,2.03126,1.90416,1.15063,8.0,8.0,8.0,0.00348651,0.090112
+667,22.2222,0.0,0.0,16.0,24.269,32.0,255.0,74.0,121.0,125.318,129.0,159.0,115.0,127.0,129.587,132.0,165.0,0.0,1.0,4.11479,8.0,60.0,116.0,129.48,2.40731,1.95495,1.21517,8.0,8.0,8.0,0.00328075,0.094393
+668,22.255567,0.0,0.0,16.0,24.5131,32.0,255.0,74.0,121.0,125.201,129.0,159.0,113.0,127.0,129.647,132.0,166.0,0.0,1.0,4.25066,9.0,60.0,116.0,129.318,2.44336,1.98094,1.22557,8.0,8.0,8.0,0.00352652,0.0857596
+669,22.288933,0.0,0.0,16.0,24.4585,32.0,245.0,70.0,121.0,125.197,129.0,165.0,115.0,127.0,129.706,132.0,170.0,0.0,1.0,4.21251,8.0,62.0,116.0,128.792,2.08633,1.91628,1.20117,8.0,8.0,8.0,0.00336363,0.0814443
+670,22.3223,0.0,0.0,16.0,24.4003,32.0,255.0,68.0,121.0,125.196,129.0,160.0,114.0,127.0,129.621,132.0,166.0,0.0,1.0,4.20989,8.0,63.0,116.0,128.925,2.26898,1.93723,1.23033,8.0,8.0,8.0,0.00336363,0.0883402
+671,22.355667,0.0,0.0,16.0,24.3183,32.0,252.0,71.0,121.0,125.246,129.0,160.0,114.0,127.0,129.659,132.0,167.0,0.0,1.0,4.18064,8.0,62.0,116.0,129.756,2.10029,1.92644,1.1922,8.0,8.0,8.0,0.00353795,0.0905864
+672,22.389033,0.0,0.0,15.0,23.996,32.0,255.0,74.0,121.0,125.369,129.0,161.0,114.0,127.0,129.507,132.0,169.0,0.0,1.0,4.11923,8.0,61.0,116.0,128.791,2.26099,1.94864,1.26079,8.0,8.0,8.0,0.00361225,0.113643
+673,22.4224,0.0,0.0,16.0,24.2119,32.0,246.0,74.0,121.0,125.368,129.0,160.0,114.0,127.0,129.515,132.0,169.0,0.0,1.0,4.00423,8.0,63.0,116.0,128.237,2.43359,1.93195,1.25408,8.0,8.0,8.0,0.0038123,0.0953304
+674,22.455767,0.0,0.0,16.0,24.2624,32.0,246.0,75.0,121.0,125.298,129.0,162.0,114.0,127.0,129.604,132.0,167.0,0.0,1.0,4.11372,8.0,61.0,116.0,129.063,2.19248,1.86427,1.16013,8.0,8.0,8.0,0.00354367,0.0941044
+675,22.489133,0.0,0.0,16.0,24.3006,32.0,244.0,58.0,121.0,125.254,129.0,162.0,109.0,127.0,129.505,132.0,167.0,0.0,1.0,4.09199,8.0,71.0,116.0,127.39,2.68642,1.96757,1.18066,8.0,8.0,8.0,0.0029521,0.0901235
+676,22.5225,0.0,0.0,16.0,24.448,32.0,245.0,75.0,121.0,125.212,129.0,164.0,114.0,127.0,129.624,132.0,168.0,0.0,1.0,4.22789,9.0,64.0,116.0,128.607,2.37861,1.9626,1.21908,8.0,8.0,8.0,0.00394376,0.0873485
+677,22.555867,0.0,0.0,16.0,24.3158,32.0,245.0,74.0,121.0,125.238,129.0,163.0,115.0,127.0,129.567,132.0,166.0,0.0,1.0,4.12003,8.0,62.0,116.0,127.407,2.44769,1.94491,1.27585,8.0,8.0,8.0,0.00392375,0.0940444
+678,22.589233,0.0,0.0,16.0,24.1845,32.0,245.0,72.0,121.0,125.28,129.0,158.0,114.0,127.0,129.529,132.0,167.0,0.0,1.0,4.15155,8.0,62.0,116.0,128.712,2.66447,1.94815,1.22213,8.0,8.0,8.0,0.00382373,0.0944616
+679,22.6226,0.0,0.0,16.0,24.2321,32.0,246.0,74.0,121.0,125.262,129.0,159.0,115.0,127.0,129.657,132.0,168.0,0.0,1.0,4.15981,8.0,63.0,116.0,129.431,2.24075,1.9373,1.17799,8.0,8.0,8.0,0.00405235,0.095699
+680,22.655967,0.0,0.0,15.0,24.2407,32.0,251.0,76.0,121.0,125.139,129.0,159.0,113.0,127.0,129.585,132.0,167.0,0.0,1.0,4.23345,8.0,62.0,116.0,126.398,2.4295,1.9697,1.21806,8.0,8.0,8.0,0.00436671,0.103604
+681,22.689333,0.0,0.0,16.0,24.2971,32.0,247.0,76.0,121.0,125.126,129.0,159.0,114.0,127.0,129.718,132.0,166.0,0.0,1.0,4.27635,8.0,63.0,116.0,128.656,2.10224,1.91792,1.20668,8.0,8.0,8.0,0.00414095,0.0910465
+682,22.7227,0.0,0.0,16.0,24.2129,32.0,255.0,76.0,121.0,125.178,129.0,160.0,114.0,127.0,129.6,132.0,166.0,0.0,1.0,4.18969,8.0,60.0,116.0,127.873,2.6469,1.96477,1.21631,8.0,8.0,8.0,0.00408093,0.0984053
+683,22.756067,0.0,0.0,16.0,24.486,32.0,248.0,73.0,121.0,125.042,129.0,157.0,114.0,127.0,129.723,132.0,167.0,0.0,1.0,4.32221,9.0,66.0,116.0,127.732,2.5752,1.96051,1.21787,8.0,8.0,8.0,0.00378658,0.0822731
+684,22.789433,0.0,0.0,16.0,24.3812,32.0,243.0,74.0,121.0,125.064,129.0,159.0,113.0,127.0,129.722,132.0,169.0,0.0,1.0,4.36965,9.0,62.0,116.0,128.443,2.27023,1.96541,1.25033,8.0,8.0,8.0,0.0036837,0.0970307
+685,22.8228,0.0,0.0,16.0,24.5296,32.0,247.0,74.0,121.0,125.075,129.0,162.0,114.0,127.0,129.688,132.0,168.0,0.0,1.0,4.26595,8.0,63.0,116.0,127.836,2.60742,1.98554,1.25083,8.0,8.0,8.0,0.00339792,0.0848537
+686,22.856167,0.0,0.0,16.0,24.5714,32.0,243.0,75.0,121.0,125.025,129.0,161.0,114.0,127.0,129.741,132.0,170.0,0.0,1.0,4.31662,8.0,63.0,116.0,128.375,2.3575,1.90998,1.17946,8.0,8.0,8.0,0.00397234,0.081893
+687,22.889533,0.0,0.0,16.0,24.4054,32.0,243.0,75.0,121.0,125.003,129.0,158.0,115.0,127.0,129.689,132.0,170.0,0.0,1.0,4.31287,9.0,64.0,116.0,126.95,2.30502,1.96129,1.18939,8.0,8.0,8.0,0.00396948,0.0897377
+688,22.9229,0.0,0.0,16.0,24.6107,32.0,245.0,74.0,121.0,124.983,129.0,161.0,115.0,127.0,129.743,132.0,173.0,0.0,1.0,4.40071,9.0,65.0,116.0,127.526,2.34278,1.94735,1.21534,8.0,8.0,8.0,0.00424954,0.0858453
+689,22.956267,0.0,0.0,16.0,24.4704,32.0,245.0,73.0,121.0,125.009,129.0,160.0,114.0,127.0,129.776,132.0,171.0,0.0,1.0,4.33519,8.0,64.0,116.0,127.969,2.18171,1.89668,1.21742,8.0,8.0,8.0,0.00361511,0.0860768
+690,22.989633,0.0,0.0,16.0,24.5664,32.0,244.0,69.0,121.0,124.962,129.0,161.0,113.0,127.0,129.674,132.0,170.0,0.0,1.0,4.36965,9.0,62.0,116.0,126.461,2.29773,1.91704,1.2017,8.0,8.0,8.0,0.00368941,0.083279
+691,23.023,0.0,0.0,16.0,24.6818,32.0,242.0,72.0,121.0,124.968,128.0,160.0,114.0,127.0,129.777,132.0,170.0,0.0,1.0,4.33509,8.0,65.0,116.0,127.866,2.1148,1.89971,1.16403,8.0,8.0,8.0,0.00369799,0.0759745
+692,23.056367,0.0,0.0,16.0,24.4553,32.0,249.0,74.0,121.0,124.904,128.0,161.0,114.0,127.0,129.69,132.0,169.0,0.0,1.0,4.39683,9.0,61.0,116.0,125.524,2.82821,1.98568,1.24693,8.0,8.0,8.0,0.00368084,0.0905807
+693,23.089733,0.0,0.0,16.0,24.6215,32.0,241.0,74.0,121.0,124.941,128.0,158.0,115.0,127.0,129.739,132.0,167.0,0.0,1.0,4.35221,9.0,64.0,116.0,127.204,2.38088,2.01055,1.236,8.0,8.0,8.0,0.00393804,0.0816387
+694,23.1231,0.0,0.0,16.0,24.555,32.0,245.0,75.0,121.0,125.041,129.0,159.0,115.0,127.0,129.698,132.0,169.0,0.0,1.0,4.30147,9.0,61.0,116.0,127.388,2.16807,1.92923,1.18213,8.0,8.0,8.0,0.003758,0.0879058
+695,23.156467,0.0,0.0,16.0,24.7065,32.0,243.0,71.0,121.0,125.084,129.0,164.0,115.0,127.0,129.62,132.0,172.0,0.0,1.0,4.25922,9.0,70.0,116.0,127.403,2.39348,1.92601,1.2025,8.0,8.0,8.0,0.00394376,0.0832447
+696,23.189833,0.0,0.0,16.0,24.6044,32.0,243.0,76.0,121.0,124.961,129.0,159.0,115.0,127.0,129.719,132.0,169.0,0.0,1.0,4.38487,9.0,63.0,116.0,127.214,2.24332,1.91379,1.16775,8.0,8.0,8.0,0.00356367,0.082296
+697,23.2232,0.0,0.0,16.0,24.2762,32.0,248.0,74.0,121.0,125.012,129.0,157.0,116.0,127.0,129.601,132.0,169.0,0.0,1.0,4.31797,9.0,64.0,116.0,126.392,2.38389,1.99885,1.22913,8.0,8.0,8.0,0.00354367,0.0988769
+698,23.256567,0.0,0.0,16.0,24.5719,32.0,251.0,76.0,121.0,125.436,129.0,159.0,116.0,127.0,129.539,132.0,171.0,0.0,1.0,3.97872,8.0,64.0,116.0,130.11,2.32751,2.00151,1.21899,8.0,8.0,8.0,0.00347222,0.081733
+699,23.289933,0.0,0.0,17.0,38.981,86.0,255.0,75.0,127.0,133.17,140.0,155.0,111.0,123.0,126.351,130.0,145.0,0.0,2.0,6.55329,13.0,54.0,282.0,252.384,17.8169,8.19187,3.65582,8.0,8.0,8.0,0.0148177,0.0628401
+700,23.3233,0.0,0.0,21.0,52.6151,125.0,255.0,74.0,131.0,140.578,153.0,176.0,96.0,118.0,123.148,128.0,147.0,0.0,4.0,13.7926,26.0,56.0,290.0,280.846,18.9582,7.834,3.61168,8.0,8.0,8.0,0.00361511,0.0370485
+701,23.356667,0.0,0.0,21.0,52.5147,125.0,255.0,74.0,131.0,140.715,153.0,177.0,97.0,118.0,123.174,128.0,147.0,0.0,4.0,13.9642,27.0,55.0,289.0,280.166,3.79414,1.82265,1.0832,8.0,8.0,8.0,0.00322645,0.0381116
+702,23.390033,0.0,0.0,21.0,52.5314,125.0,255.0,75.0,131.0,140.738,153.0,175.0,95.0,118.0,123.16,128.0,147.0,0.0,4.0,13.9328,26.0,55.0,289.0,280.637,3.17892,1.77945,1.0439,8.0,8.0,8.0,0.00323217,0.0371456
+703,23.4234,0.0,0.0,21.0,52.4384,124.0,255.0,72.0,131.0,140.734,153.0,177.0,96.0,117.0,123.216,128.0,147.0,0.0,4.0,14.0411,27.0,57.0,289.0,279.588,5.36476,2.15532,1.34057,8.0,8.0,8.0,0.003738,0.0378344
+704,23.456767,0.0,0.0,21.0,52.5977,125.0,255.0,75.0,131.0,140.73,153.0,175.0,95.0,118.0,123.176,128.0,150.0,0.0,4.0,13.904,26.0,54.0,289.0,280.904,3.71704,2.12474,1.3933,8.0,8.0,8.0,0.00311214,0.0376343
+705,23.490133,0.0,0.0,21.0,52.4617,125.0,255.0,74.0,131.0,140.619,153.0,175.0,97.0,118.0,123.11,127.0,149.0,0.0,4.0,13.8522,26.0,55.0,290.0,280.991,3.83416,1.80701,1.04334,8.0,8.0,8.0,0.00352938,0.0374171
+706,23.5235,0.0,0.0,21.0,52.6319,125.0,255.0,77.0,131.0,140.629,153.0,177.0,100.0,118.0,123.229,128.0,154.0,0.0,4.0,13.7877,26.0,53.0,289.0,280.84,2.86371,1.74887,1.02698,8.0,8.0,8.0,0.00346079,0.0371914
+707,23.556867,0.0,0.0,21.0,52.0419,124.0,255.0,73.0,131.0,140.667,153.0,182.0,95.0,117.0,123.145,128.0,154.0,0.0,4.0,13.9906,27.0,59.0,289.0,279.641,3.90742,2.00975,1.26495,8.0,8.0,8.0,0.00382087,0.0385374
+708,23.590233,0.0,0.0,21.0,52.2726,124.0,255.0,74.0,131.0,140.729,153.0,180.0,97.0,118.0,123.136,127.0,152.0,0.0,4.0,13.9106,27.0,54.0,289.0,281.094,4.02723,2.05944,1.31708,8.0,8.0,8.0,0.00360654,0.0373257
+709,23.6236,0.0,0.0,21.0,52.4775,125.0,255.0,75.0,131.0,140.739,153.0,180.0,99.0,118.0,123.194,128.0,152.0,0.0,4.0,13.9531,26.0,55.0,289.0,280.444,2.64929,1.85629,1.0834,8.0,8.0,8.0,0.00390089,0.0379401
+710,23.656967,0.0,0.0,21.0,52.3889,124.0,255.0,74.0,131.0,140.727,153.0,177.0,100.0,118.0,123.123,127.0,147.0,0.0,4.0,13.9221,26.0,54.0,290.0,281.142,3.59228,1.88577,1.09587,8.0,8.0,8.0,0.00312071,0.0379001
+711,23.690333,0.0,0.0,21.0,52.5433,125.0,255.0,74.0,131.0,140.69,153.0,184.0,97.0,117.0,123.166,128.0,150.0,0.0,4.0,14.0091,27.0,59.0,289.0,279.505,3.34594,2.06109,1.25366,8.0,8.0,8.0,0.00365226,0.0381459
+712,23.7237,0.0,0.0,21.0,52.583,125.0,255.0,75.0,131.0,140.62,153.0,178.0,98.0,118.0,123.244,128.0,148.0,0.0,4.0,13.7818,26.0,56.0,289.0,280.495,3.16747,2.0131,1.24639,8.0,8.0,8.0,0.00336077,0.0375029
+713,23.757067,0.0,0.0,21.0,52.3744,124.0,255.0,76.0,131.0,140.659,153.0,178.0,97.0,118.0,123.251,128.0,150.0,0.0,4.0,13.8624,26.0,53.0,289.0,279.701,3.1702,1.82136,1.05393,8.0,8.0,8.0,0.00325789,0.0378372
+714,23.790433,0.0,0.0,21.0,52.4958,125.0,255.0,74.0,131.0,140.815,153.0,178.0,98.0,118.0,123.223,128.0,144.0,0.0,4.0,13.9649,27.0,54.0,289.0,280.338,3.10404,1.84658,1.03061,8.0,8.0,8.0,0.00345793,0.0376257
+715,23.8238,0.0,0.0,21.0,52.2031,124.0,255.0,72.0,131.0,140.773,153.0,177.0,96.0,117.0,123.061,128.0,148.0,0.0,4.0,14.0914,27.0,57.0,289.0,280.188,3.43489,1.95716,1.21148,8.0,8.0,8.0,0.0035751,0.0386917
+716,23.857167,0.0,0.0,21.0,52.4275,125.0,255.0,73.0,131.0,140.843,153.0,175.0,99.0,118.0,123.103,127.0,144.0,0.0,4.0,14.0013,27.0,55.0,289.0,281.332,3.10439,1.94641,1.26351,8.0,8.0,8.0,0.00333219,0.0378829
+717,23.890533,0.0,0.0,21.0,52.1035,124.0,255.0,70.0,131.0,140.758,153.0,176.0,100.0,118.0,123.045,127.0,149.0,0.0,4.0,13.9856,27.0,58.0,290.0,281.249,5.17591,1.85551,1.11751,8.0,8.0,8.0,0.0033722,0.0381144
+718,23.9239,0.0,0.0,21.0,52.1614,124.0,255.0,75.0,131.0,140.758,153.0,176.0,102.0,118.0,123.213,128.0,148.0,0.0,4.0,13.9061,26.0,54.0,289.0,280.685,4.13746,1.80729,1.03735,8.0,8.0,8.0,0.00334362,0.0378744
+719,23.957267,0.0,0.0,21.0,52.1906,125.0,255.0,75.0,131.0,140.646,153.0,175.0,96.0,117.0,123.25,128.0,153.0,0.0,4.0,13.917,27.0,54.0,289.0,279.776,2.72226,1.86994,1.19777,8.0,8.0,8.0,0.00350652,0.0391089
+720,23.990633,0.0,0.0,21.0,52.4654,125.0,255.0,72.0,131.0,140.683,153.0,175.0,99.0,118.0,123.228,128.0,150.0,0.0,4.0,13.841,26.0,57.0,289.0,280.539,3.28366,1.94921,1.25638,8.0,8.0,8.0,0.00329218,0.0378229
+721,24.024,0.0,0.0,21.0,52.4511,125.0,255.0,75.0,131.0,140.729,153.0,176.0,100.0,118.0,123.214,128.0,153.0,0.0,4.0,13.9298,27.0,54.0,289.0,279.941,2.79425,1.73716,1.02396,8.0,8.0,8.0,0.00324646,0.038003
+722,24.057367,0.0,0.0,21.0,52.4899,125.0,255.0,73.0,131.0,140.7,153.0,176.0,100.0,118.0,123.263,128.0,147.0,0.0,4.0,13.8655,27.0,55.0,289.0,280.322,2.88189,1.74917,1.06399,8.0,8.0,8.0,0.00318358,0.0377801
+723,24.090733,0.0,0.0,21.0,52.5095,125.0,255.0,72.0,131.0,140.744,153.0,177.0,97.0,117.0,123.253,128.0,155.0,0.0,4.0,14.0253,27.0,57.0,289.0,279.192,3.25206,1.94768,1.23032,8.0,8.0,8.0,0.00322359,0.0387431
+724,24.1241,0.0,0.0,21.0,52.5498,125.0,255.0,75.0,131.0,140.841,153.0,178.0,98.0,118.0,123.292,128.0,151.0,0.0,4.0,13.9865,27.0,54.0,289.0,280.114,2.64898,1.92006,1.19861,8.0,8.0,8.0,0.00334362,0.0383373
+725,24.157467,0.0,0.0,21.0,52.3507,125.0,255.0,74.0,131.0,140.691,153.0,176.0,98.0,117.0,123.138,128.0,154.0,0.0,4.0,13.9178,27.0,54.0,289.0,280.405,3.48607,1.90955,1.13991,8.0,8.0,8.0,0.00325503,0.0383488
+726,24.190833,0.0,0.0,21.0,52.5406,125.0,255.0,74.0,131.0,140.741,153.0,175.0,95.0,118.0,123.287,128.0,153.0,0.0,4.0,13.8914,27.0,55.0,289.0,280.381,3.11918,1.88969,1.13481,8.0,8.0,8.0,0.00324074,0.037943
+727,24.2242,0.0,0.0,21.0,52.3968,125.0,255.0,75.0,131.0,140.65,153.0,178.0,97.0,117.0,123.318,128.0,159.0,0.0,4.0,13.946,27.0,55.0,289.0,278.923,3.10406,1.98613,1.25989,8.0,8.0,8.0,0.0032436,0.0385574
+728,24.257567,0.0,0.0,21.0,52.3707,125.0,255.0,70.0,131.0,140.62,153.0,178.0,98.0,118.0,123.326,128.0,158.0,0.0,4.0,13.7822,26.0,59.0,289.0,279.973,3.88427,2.04367,1.27447,8.0,8.0,8.0,0.00320073,0.0379915
+729,24.290933,0.0,0.0,21.0,52.3239,125.0,255.0,68.0,131.0,140.629,153.0,179.0,99.0,118.0,123.275,128.0,157.0,0.0,4.0,13.8293,27.0,61.0,289.0,280.058,3.08589,1.82107,1.09243,8.0,8.0,8.0,0.00307785,0.0389032
+730,24.3243,0.0,0.0,21.0,52.2966,125.0,255.0,74.0,131.0,140.675,153.0,177.0,98.0,118.0,123.226,128.0,156.0,0.0,4.0,13.8464,26.0,55.0,289.0,280.411,3.50116,1.91147,1.11972,8.0,8.0,8.0,0.00332076,0.0383002
+731,24.357667,0.0,0.0,21.0,52.3098,125.0,255.0,73.0,131.0,140.611,153.0,177.0,98.0,117.0,123.239,128.0,160.0,0.0,4.0,13.8997,27.0,55.0,289.0,279.717,2.85848,1.93471,1.21523,8.0,8.0,8.0,0.00324646,0.0388432
+732,24.391033,0.0,0.0,21.0,52.1623,124.0,255.0,74.0,131.0,140.626,153.0,179.0,99.0,118.0,123.239,128.0,160.0,0.0,4.0,13.8028,26.0,55.0,289.0,280.47,3.70751,1.9877,1.23373,8.0,8.0,8.0,0.00309785,0.0379172
+733,24.4244,0.0,0.0,21.0,52.2645,125.0,255.0,72.0,131.0,140.626,153.0,176.0,100.0,118.0,123.352,128.0,156.0,0.0,4.0,13.7987,26.0,57.0,289.0,279.67,3.2693,1.77832,1.0412,8.0,8.0,8.0,0.00331504,0.0380173
+734,24.457767,0.0,0.0,21.0,52.2773,125.0,255.0,64.0,131.0,140.694,153.0,177.0,98.0,118.0,123.37,128.0,156.0,0.0,4.0,13.8312,26.0,64.0,288.0,279.99,2.87446,1.83601,1.06783,8.0,8.0,8.0,0.00334362,0.0381201
+735,24.491133,0.0,0.0,21.0,52.2049,125.0,255.0,72.0,131.0,140.697,153.0,179.0,99.0,117.0,123.318,128.0,158.0,0.0,4.0,13.9693,27.0,57.0,289.0,279.2,4.02127,2.10614,1.30894,8.0,8.0,8.0,0.00304355,0.0387717
+736,24.5245,0.0,0.0,21.0,52.4456,125.0,255.0,73.0,131.0,140.844,153.0,178.0,97.0,118.0,123.393,128.0,153.0,0.0,4.0,13.9322,27.0,55.0,288.0,279.907,3.52637,2.12793,1.39447,8.0,8.0,8.0,0.00302926,0.0379372
+737,24.557867,0.0,0.0,21.0,52.1634,124.0,255.0,76.0,131.0,140.723,153.0,180.0,97.0,118.0,123.247,128.0,156.0,0.0,4.0,13.8969,27.0,54.0,289.0,279.98,3.82413,1.83714,1.0661,8.0,8.0,8.0,0.00310642,0.0380373
+738,24.591233,0.0,0.0,21.0,52.3973,125.0,255.0,75.0,131.0,140.76,153.0,180.0,97.0,118.0,123.326,128.0,156.0,0.0,4.0,13.8756,26.0,55.0,289.0,280.15,3.26107,1.80336,1.02195,8.0,8.0,8.0,0.00304355,0.0379087
+739,24.6246,0.0,0.0,21.0,52.2434,125.0,255.0,74.0,131.0,140.711,153.0,180.0,97.0,117.0,123.323,128.0,157.0,0.0,4.0,13.9659,27.0,55.0,288.0,279.121,2.84824,1.97966,1.2036,8.0,8.0,8.0,0.00346936,0.038906
+740,24.657967,0.0,0.0,21.0,52.1569,124.0,255.0,68.0,131.0,140.721,153.0,176.0,97.0,118.0,123.241,128.0,155.0,0.0,4.0,13.9029,27.0,61.0,289.0,280.249,3.82158,2.02159,1.23933,8.0,8.0,8.0,0.00347222,0.0381487
+741,24.691333,0.0,0.0,21.0,52.1636,125.0,255.0,72.0,131.0,140.697,153.0,180.0,97.0,118.0,123.319,128.0,157.0,0.0,4.0,13.8932,27.0,56.0,289.0,279.637,3.03314,1.79575,1.0433,8.0,8.0,8.0,0.00305498,0.0381401
+742,24.7247,0.0,0.0,21.0,52.2669,125.0,255.0,76.0,131.0,140.762,153.0,178.0,97.0,118.0,123.251,128.0,157.0,0.0,4.0,13.9128,27.0,55.0,289.0,280.373,3.64966,1.83887,1.07481,8.0,8.0,8.0,0.00320645,0.0378429
+743,24.758067,0.0,0.0,21.0,52.2782,125.0,255.0,74.0,131.0,140.896,154.0,178.0,97.0,117.0,123.193,128.0,159.0,0.0,4.0,14.1839,27.0,57.0,289.0,279.666,3.19212,2.00298,1.28148,8.0,8.0,8.0,0.00328647,0.0390318
+744,24.791433,0.0,0.0,21.0,52.2159,125.0,255.0,74.0,131.0,140.898,153.0,178.0,97.0,118.0,123.221,128.0,156.0,0.0,4.0,14.0475,27.0,55.0,289.0,280.494,2.79245,1.98152,1.22372,8.0,8.0,8.0,0.00330075,0.0381116
+745,24.8248,0.0,0.0,21.0,52.0586,125.0,255.0,75.0,131.0,140.819,153.0,179.0,98.0,117.0,123.108,128.0,157.0,0.0,5.0,14.0755,27.0,54.0,289.0,280.573,3.22021,1.88002,1.12228,8.0,8.0,8.0,0.00340935,0.0383002
+746,24.858167,0.0,0.0,21.0,52.1761,125.0,255.0,74.0,131.0,140.899,153.0,181.0,97.0,118.0,123.17,128.0,156.0,0.0,5.0,14.0747,27.0,55.0,289.0,280.668,2.79176,1.81527,1.07107,8.0,8.0,8.0,0.00338363,0.0381316
+747,24.891533,0.0,0.0,20.0,51.5916,124.0,255.0,75.0,131.0,140.879,153.0,179.0,97.0,117.0,123.086,128.0,158.0,0.0,4.0,14.1916,27.0,54.0,289.0,280.129,3.40534,1.98209,1.22843,8.0,8.0,8.0,0.00340649,0.0399463
+748,24.9249,0.0,0.0,21.0,52.0314,124.0,255.0,73.0,131.0,140.886,153.0,179.0,98.0,117.0,123.152,128.0,162.0,0.0,4.0,14.0659,27.0,56.0,289.0,280.424,3.25105,1.95341,1.21586,8.0,8.0,8.0,0.00315215,0.0384374
+749,24.958267,0.0,0.0,21.0,51.82,124.0,255.0,74.0,131.0,140.874,153.0,179.0,97.0,117.0,123.145,128.0,157.0,0.0,4.0,14.1131,27.0,55.0,289.0,280.612,2.82979,1.85678,1.04123,8.0,8.0,8.0,0.00337791,0.0390432
+750,24.991633,0.0,0.0,21.0,51.8811,124.0,255.0,74.0,131.0,140.817,153.0,179.0,98.0,117.0,123.108,128.0,156.0,0.0,4.0,14.0167,27.0,55.0,290.0,280.922,3.17798,1.8285,1.07646,8.0,8.0,8.0,0.00349508,0.038163
+751,25.025,0.0,0.0,20.0,51.6803,124.0,255.0,73.0,131.0,140.817,153.0,180.0,99.0,117.0,123.197,128.0,156.0,0.0,4.0,14.0922,27.0,56.0,289.0,280.096,2.93975,1.93217,1.23172,8.0,8.0,8.0,0.00314643,0.0393747
+752,25.058367,0.0,0.0,21.0,51.5985,124.0,255.0,73.0,131.0,140.819,153.0,180.0,98.0,118.0,123.08,127.0,157.0,0.0,4.0,14.019,27.0,56.0,290.0,281.45,3.56937,1.99794,1.27898,8.0,8.0,8.0,0.00310071,0.0385745
+753,25.091733,0.0,0.0,21.0,51.4841,123.0,255.0,75.0,131.0,140.82,153.0,182.0,98.0,117.0,123.039,128.0,158.0,0.0,4.0,14.0865,27.0,57.0,290.0,281.126,4.27256,1.89282,1.11992,8.0,8.0,8.0,0.00320645,0.0387717
+754,25.1251,0.0,0.0,20.0,51.5774,124.0,255.0,68.0,131.0,140.857,153.0,177.0,97.0,117.0,123.095,128.0,158.0,0.0,4.0,14.0661,27.0,60.0,289.0,281.223,2.809,1.82106,1.02699,8.0,8.0,8.0,0.00331219,0.0390461
+755,25.158467,0.0,0.0,20.0,51.6192,124.0,255.0,74.0,131.0,140.703,153.0,180.0,98.0,117.0,123.033,128.0,154.0,0.0,4.0,14.0801,27.0,56.0,290.0,280.356,3.59919,2.03845,1.23113,8.0,8.0,8.0,0.00353509,0.0393233
+756,25.191833,0.0,0.0,21.0,51.811,124.0,255.0,74.0,131.0,140.82,153.0,183.0,99.0,118.0,123.197,128.0,153.0,0.0,4.0,14.0144,27.0,58.0,289.0,280.356,2.81818,1.97199,1.25583,8.0,8.0,8.0,0.00319787,0.0379887
+757,25.2252,0.0,0.0,21.0,51.3825,123.0,255.0,74.0,131.0,140.807,153.0,182.0,99.0,117.0,123.037,128.0,154.0,0.0,4.0,14.0569,27.0,57.0,290.0,281.319,4.20094,1.81075,1.11709,8.0,8.0,8.0,0.00328075,0.0383345
+758,25.258567,0.0,0.0,21.0,51.5353,124.0,255.0,76.0,131.0,140.836,153.0,177.0,99.0,118.0,123.138,128.0,154.0,0.0,4.0,14.045,27.0,53.0,289.0,280.52,3.20675,1.75533,1.04761,8.0,8.0,8.0,0.00308356,0.0381887
+759,25.291933,0.0,0.0,20.0,51.3664,124.0,255.0,75.0,131.0,140.922,154.0,180.0,97.0,117.0,123.072,128.0,154.0,0.0,4.0,14.2554,27.0,55.0,289.0,279.832,3.26555,2.08714,1.32406,8.0,8.0,8.0,0.00324646,0.0396862
+760,25.3253,0.0,0.0,21.0,51.5965,124.0,255.0,72.0,131.0,140.896,154.0,186.0,97.0,117.0,123.073,128.0,154.0,0.0,4.0,14.1266,27.0,60.0,289.0,280.528,4.3426,2.07519,1.333,8.0,8.0,8.0,0.00314072,0.0384602
+761,25.358667,0.0,0.0,20.0,51.5496,124.0,255.0,74.0,131.0,140.822,153.0,178.0,100.0,117.0,123.163,128.0,153.0,0.0,4.0,14.0409,27.0,55.0,289.0,280.379,3.4298,1.87477,1.11508,8.0,8.0,8.0,0.00305498,0.0387717
+762,25.392033,0.0,0.0,21.0,51.6163,124.0,255.0,75.0,131.0,140.818,153.0,178.0,99.0,118.0,123.215,128.0,153.0,0.0,4.0,13.9971,27.0,54.0,289.0,280.534,3.20563,1.81965,1.06564,8.0,8.0,8.0,0.0031693,0.0383973
+763,25.4254,0.0,0.0,20.0,51.6246,124.0,255.0,74.0,131.0,140.718,154.0,179.0,97.0,117.0,123.292,128.0,153.0,0.0,4.0,14.0381,27.0,55.0,289.0,278.666,3.47255,2.03065,1.26246,8.0,8.0,8.0,0.00328932,0.0389432
+764,25.458767,0.0,0.0,21.0,51.8065,124.0,255.0,75.0,131.0,140.819,153.0,177.0,97.0,118.0,123.332,128.0,154.0,0.0,4.0,13.9821,27.0,54.0,288.0,279.698,2.96368,1.98113,1.22072,8.0,8.0,8.0,0.00360082,0.0381459
+765,25.492133,0.0,0.0,21.0,51.6102,124.0,255.0,75.0,131.0,140.82,153.0,178.0,98.0,118.0,123.26,128.0,154.0,0.0,4.0,14.0097,27.0,54.0,289.0,279.919,3.53545,1.80732,1.06878,8.0,8.0,8.0,0.00354081,0.0385631
+766,25.5255,0.0,0.0,21.0,51.8181,124.0,255.0,75.0,131.0,140.789,153.0,178.0,99.0,118.0,123.306,128.0,153.0,0.0,4.0,13.9416,27.0,54.0,289.0,280.242,2.9191,1.81468,1.05008,8.0,8.0,8.0,0.00328647,0.0375714
+767,25.558867,0.0,0.0,21.0,51.4567,123.0,255.0,73.0,131.0,140.746,153.0,177.0,97.0,117.0,123.117,128.0,152.0,0.0,4.0,14.0652,27.0,56.0,289.0,280.18,4.34397,2.04934,1.27931,8.0,8.0,8.0,0.0032979,0.0387088
+768,25.592233,0.0,0.0,21.0,51.6533,123.0,255.0,74.0,131.0,140.803,153.0,181.0,97.0,118.0,123.249,128.0,150.0,0.0,4.0,13.9825,27.0,57.0,289.0,280.166,3.85011,2.07533,1.28956,8.0,8.0,8.0,0.00325789,0.0372028
+769,25.6256,0.0,0.0,21.0,51.5749,124.0,255.0,74.0,131.0,140.752,153.0,179.0,97.0,118.0,123.257,128.0,147.0,0.0,4.0,13.975,27.0,55.0,289.0,279.629,2.73359,1.8257,1.09736,8.0,8.0,8.0,0.00371513,0.0382002
+770,25.658967,0.0,0.0,21.0,51.6277,124.0,255.0,75.0,131.0,140.735,153.0,177.0,98.0,117.0,123.174,128.0,150.0,0.0,4.0,13.9608,27.0,54.0,289.0,280.789,3.17184,1.79705,1.06614,8.0,8.0,8.0,0.00369799,0.0375514
+771,25.692333,0.0,0.0,20.0,51.5381,124.0,255.0,75.0,131.0,140.722,154.0,180.0,98.0,117.0,123.231,128.0,153.0,0.0,4.0,14.0599,27.0,55.0,289.0,279.07,2.81626,1.91838,1.21989,8.0,8.0,8.0,0.00329504,0.038706
+772,25.7257,0.0,0.0,21.0,51.4346,123.0,255.0,74.0,131.0,140.682,153.0,178.0,98.0,118.0,123.254,128.0,155.0,0.0,4.0,13.885,27.0,55.0,289.0,280.213,4.05629,2.03697,1.2843,8.0,8.0,8.0,0.00309214,0.0374371
+773,25.759067,0.0,0.0,21.0,51.4985,123.0,255.0,76.0,131.0,140.691,153.0,177.0,97.0,118.0,123.254,128.0,157.0,0.0,4.0,13.9323,27.0,54.0,289.0,279.961,3.3636,1.84419,1.06696,8.0,8.0,8.0,0.00316358,0.038163
+774,25.792433,0.0,0.0,21.0,51.4215,123.0,255.0,56.0,131.0,140.725,153.0,179.0,96.0,118.0,123.217,128.0,157.0,0.0,4.0,13.927,27.0,73.0,289.0,279.871,3.36393,1.86744,1.07406,8.0,8.0,8.0,0.003115,0.0384659
+775,25.8258,0.0,0.0,20.0,51.3613,123.0,255.0,74.0,131.0,140.601,153.0,180.0,99.0,117.0,123.176,128.0,150.0,0.0,4.0,13.9568,27.0,56.0,289.0,279.597,4.59967,2.20725,1.39736,8.0,8.0,8.0,0.00314072,0.0389575
+776,25.859167,0.0,0.0,21.0,51.6505,124.0,255.0,74.0,131.0,140.713,153.0,177.0,96.0,118.0,123.256,128.0,147.0,0.0,4.0,13.9028,27.0,55.0,289.0,279.973,3.52763,2.1239,1.36901,8.0,8.0,8.0,0.00316072,0.0375486
+777,25.892533,0.0,0.0,21.0,51.2079,123.0,255.0,72.0,131.0,140.672,153.0,177.0,100.0,117.0,123.168,128.0,147.0,0.0,4.0,13.9223,27.0,57.0,289.0,280.025,4.26064,1.79516,1.0566,8.0,8.0,8.0,0.00312357,0.0380544
+778,25.9259,0.0,0.0,21.0,51.3526,123.0,255.0,74.0,131.0,140.816,153.0,178.0,100.0,118.0,123.31,128.0,143.0,0.0,4.0,13.936,27.0,55.0,289.0,280.323,3.95291,1.88268,1.08873,8.0,8.0,8.0,0.00317501,0.0373514
+779,25.959267,0.0,0.0,20.0,51.2225,123.0,255.0,75.0,131.0,140.705,153.0,181.0,99.0,117.0,123.29,128.0,146.0,0.0,4.0,14.0094,27.0,56.0,289.0,279.207,3.2615,1.98698,1.23528,8.0,8.0,8.0,0.00317215,0.0392118
+780,25.992633,0.0,0.0,21.0,51.3904,123.0,255.0,74.0,131.0,140.775,153.0,178.0,98.0,118.0,123.171,128.0,148.0,0.0,4.0,13.9596,27.0,54.0,289.0,281.015,3.71349,1.96639,1.24286,8.0,8.0,8.0,0.00352938,0.0379915
+781,26.026,0.0,0.0,21.0,51.5738,124.0,255.0,74.0,131.0,140.791,153.0,177.0,99.0,117.0,123.162,128.0,147.0,0.0,4.0,14.0068,27.0,55.0,289.0,280.755,2.89668,1.78162,1.0619,8.0,8.0,8.0,0.00331219,0.0376372
+782,26.059367,0.0,0.0,21.0,51.1681,123.0,255.0,73.0,131.0,140.746,153.0,177.0,97.0,118.0,123.245,128.0,144.0,0.0,4.0,13.8984,27.0,56.0,289.0,281.088,4.28849,1.89659,1.09922,8.0,8.0,8.0,0.00324931,0.0377801
+783,26.092733,0.0,0.0,20.0,51.1757,123.0,255.0,73.0,131.0,140.802,154.0,180.0,98.0,117.0,123.244,128.0,152.0,0.0,4.0,14.0933,27.0,56.0,289.0,279.2,4.54079,2.02818,1.30577,8.0,8.0,8.0,0.00360082,0.039309
+784,26.1261,0.0,0.0,21.0,51.4669,124.0,255.0,72.0,131.0,140.805,153.0,180.0,99.0,118.0,123.271,128.0,146.0,0.0,4.0,13.9682,27.0,57.0,289.0,280.293,2.82176,1.92363,1.24797,8.0,8.0,8.0,0.00374086,0.0377172
+785,26.159467,0.0,0.0,21.0,51.2837,123.0,255.0,72.0,131.0,140.818,153.0,178.0,98.0,117.0,123.145,128.0,145.0,0.0,4.0,14.0308,27.0,57.0,289.0,280.527,4.2771,1.99274,1.21223,8.0,8.0,8.0,0.00336648,0.0380544
+786,26.192833,0.0,0.0,21.0,51.4498,124.0,255.0,72.0,131.0,140.839,153.0,179.0,99.0,118.0,123.264,128.0,143.0,0.0,4.0,13.9964,27.0,56.0,289.0,280.298,3.83245,1.98213,1.18122,8.0,8.0,8.0,0.003738,0.0376286
+787,26.2262,0.0,0.0,20.0,51.056,123.0,255.0,73.0,131.0,140.861,154.0,177.0,100.0,117.0,123.158,128.0,157.0,0.0,4.0,14.1784,27.0,55.0,289.0,279.48,3.91378,1.99958,1.25458,8.0,8.0,8.0,0.00345222,0.0397462
+788,26.259567,0.0,0.0,20.0,51.0908,123.0,255.0,76.0,131.0,140.938,154.0,176.0,95.0,118.0,123.327,128.0,159.0,0.0,4.0,14.0722,27.0,52.0,288.0,279.657,3.35862,2.00375,1.26568,8.0,8.0,8.0,0.00341221,0.0377172
+789,26.292933,0.0,0.0,20.0,51.0362,123.0,255.0,74.0,131.0,140.89,154.0,178.0,97.0,117.0,123.178,128.0,156.0,0.0,4.0,14.1141,27.0,55.0,289.0,280.145,2.78018,1.81794,1.07168,8.0,8.0,8.0,0.00354938,0.0388032
+790,26.3263,0.0,0.0,20.0,51.1154,123.0,255.0,77.0,131.0,140.925,154.0,181.0,98.0,117.0,123.088,128.0,152.0,0.0,5.0,14.1432,27.0,57.0,289.0,280.841,3.44584,1.8487,1.06987,8.0,8.0,8.0,0.00390375,0.0383145
+791,26.359667,0.0,0.0,20.0,51.0779,123.0,255.0,71.0,131.0,140.838,154.0,182.0,99.0,117.0,123.148,128.0,152.0,0.0,4.0,14.1866,27.0,57.0,289.0,278.596,3.31482,2.04611,1.27463,8.0,8.0,8.0,0.00330361,0.0399577
+792,26.393033,0.0,0.0,20.0,50.8199,123.0,255.0,68.0,131.0,140.812,153.0,179.0,99.0,118.0,123.216,128.0,151.0,0.0,4.0,14.0047,27.0,60.0,289.0,280.118,5.07362,2.19283,1.37543,8.0,8.0,8.0,0.0031893,0.0383659
+793,26.4264,0.0,0.0,20.0,50.7869,123.0,255.0,42.0,131.0,140.826,154.0,180.0,101.0,117.0,123.186,128.0,154.0,0.0,4.0,14.0699,27.0,87.0,289.0,280.507,4.11755,1.92892,1.15034,8.0,8.0,8.0,0.00259774,0.0390346
+794,26.459767,0.0,0.0,20.0,51.0063,123.0,255.0,42.0,131.0,140.812,153.0,179.0,99.0,117.0,123.242,128.0,153.0,0.0,4.0,14.0346,27.0,86.0,289.0,279.897,2.75694,1.75983,1.06357,8.0,8.0,8.0,0.00302926,0.0391347
+795,26.493133,0.0,0.0,20.0,50.917,123.0,255.0,41.0,131.0,140.81,154.0,181.0,100.0,117.0,123.194,128.0,154.0,0.0,4.0,14.1352,27.0,87.0,289.0,279.301,3.79478,2.1309,1.34821,8.0,8.0,8.0,0.00274348,0.0406864
+796,26.5265,0.0,0.0,20.0,51.0958,123.0,255.0,74.0,131.0,140.96,154.0,180.0,98.0,117.0,123.214,128.0,155.0,0.0,4.0,14.1224,27.0,56.0,289.0,280.112,3.62706,2.20702,1.38876,8.0,8.0,8.0,0.00336934,0.0383316
+797,26.559867,0.0,0.0,20.0,50.8502,123.0,255.0,76.0,131.0,140.809,154.0,186.0,99.0,117.0,123.195,128.0,155.0,0.0,4.0,14.0301,27.0,61.0,289.0,279.957,3.43062,1.82388,1.08052,8.0,8.0,8.0,0.00353795,0.038746
+798,26.593233,0.0,0.0,21.0,51.0448,123.0,255.0,73.0,131.0,140.782,153.0,181.0,99.0,117.0,123.198,128.0,156.0,0.0,4.0,13.9603,27.0,56.0,289.0,280.497,3.86449,1.7815,1.00985,8.0,8.0,8.0,0.00351509,0.0374943
+799,26.6266,0.0,0.0,20.0,51.126,123.0,255.0,74.0,131.0,140.798,154.0,178.0,98.0,117.0,123.223,128.0,157.0,0.0,4.0,14.1018,27.0,55.0,289.0,279.164,2.98784,2.02393,1.24304,8.0,8.0,8.0,0.00398091,0.0386631
+800,26.659967,0.0,0.0,21.0,51.1119,123.0,255.0,75.0,131.0,140.852,154.0,180.0,98.0,117.0,123.117,128.0,146.0,0.0,4.0,14.0614,27.0,55.0,289.0,280.113,3.92098,2.01946,1.28243,8.0,8.0,8.0,0.00366084,0.0376543
+801,26.693333,0.0,0.0,20.0,51.1662,123.0,255.0,73.0,131.0,140.846,154.0,178.0,98.0,117.0,123.11,128.0,146.0,0.0,4.0,14.0962,27.0,57.0,289.0,280.011,3.20494,1.82234,1.06704,8.0,8.0,8.0,0.00368656,0.0376629
+802,26.7267,0.0,0.0,21.0,50.9588,123.0,255.0,73.0,131.0,140.919,154.0,182.0,101.0,117.0,123.155,128.0,153.0,0.0,4.0,14.082,27.0,57.0,289.0,280.6,3.49136,1.81642,1.0747,8.0,8.0,8.0,0.00332647,0.0375429
+803,26.760067,0.0,0.0,20.0,50.5998,122.0,255.0,75.0,131.0,141.008,154.0,182.0,98.0,117.0,123.138,128.0,151.0,0.0,4.0,14.3228,28.0,58.0,289.0,278.889,4.5641,2.04696,1.29258,8.0,8.0,8.0,0.00352366,0.039549
+804,26.793433,0.0,0.0,20.0,50.9825,123.0,255.0,74.0,131.0,140.926,154.0,180.0,98.0,117.0,123.164,128.0,149.0,0.0,4.0,14.1268,27.0,55.0,289.0,279.977,2.77153,1.96201,1.20455,8.0,8.0,8.0,0.003738,0.0378744
+805,26.8268,0.0,0.0,20.0,50.9238,123.0,255.0,75.0,131.0,140.915,154.0,180.0,95.0,117.0,123.092,128.0,150.0,0.0,4.0,14.1707,28.0,54.0,289.0,280.132,3.1425,1.92039,1.13976,8.0,8.0,8.0,0.00404664,0.0381716
+806,26.860167,0.0,0.0,20.0,50.9903,123.0,255.0,75.0,131.0,140.939,154.0,181.0,98.0,117.0,123.137,128.0,148.0,0.0,4.0,14.1312,27.0,55.0,289.0,280.299,2.94318,1.85947,1.129,8.0,8.0,8.0,0.00364941,0.0377601
+807,26.893533,0.0,0.0,20.0,50.6083,122.0,255.0,74.0,131.0,140.986,154.0,181.0,99.0,117.0,123.061,128.0,148.0,0.0,4.0,14.3349,28.0,56.0,289.0,279.553,4.11287,2.093,1.3063,8.0,8.0,8.0,0.00340649,0.0393804
+808,26.9269,0.0,0.0,21.0,50.8339,122.0,255.0,73.0,131.0,140.903,154.0,179.0,96.0,117.0,123.138,128.0,149.0,0.0,4.0,14.1041,27.0,56.0,289.0,280.798,4.0499,2.05258,1.29489,8.0,8.0,8.0,0.00327789,0.03744
+809,26.960267,0.0,0.0,20.0,50.8085,122.0,255.0,73.0,131.0,140.873,154.0,178.0,97.0,117.0,123.156,128.0,146.0,0.0,4.0,14.0934,27.0,56.0,289.0,280.224,2.9709,1.83649,1.10077,8.0,8.0,8.0,0.00354652,0.038143
+810,26.993633,0.0,0.0,20.0,50.8335,123.0,255.0,72.0,131.0,140.815,153.0,180.0,97.0,117.0,123.08,128.0,148.0,0.0,4.0,14.0557,27.0,56.0,290.0,280.706,4.13206,1.87056,1.11917,8.0,8.0,8.0,0.00322931,0.0378829
+811,27.027,0.0,0.0,20.0,50.9684,123.0,255.0,69.0,131.0,140.826,154.0,180.0,97.0,117.0,123.115,128.0,147.0,0.0,4.0,14.1928,27.0,59.0,289.0,279.422,3.77534,2.05356,1.32172,8.0,8.0,8.0,0.00345222,0.0390232
+812,27.060367,0.0,0.0,21.0,50.8547,123.0,255.0,68.0,131.0,140.728,153.0,179.0,98.0,117.0,123.075,128.0,145.0,0.0,4.0,13.9783,27.0,60.0,290.0,281.034,3.90234,2.02609,1.30937,8.0,8.0,8.0,0.00294639,0.0380801
+813,27.093733,0.0,0.0,20.0,50.8034,122.0,255.0,67.0,131.0,140.708,153.0,180.0,98.0,117.0,123.181,128.0,145.0,0.0,4.0,13.9751,27.0,61.0,289.0,280.416,3.59368,1.82175,1.09206,8.0,8.0,8.0,0.00302926,0.038143
+814,27.1271,0.0,0.0,20.0,50.8657,123.0,255.0,63.0,131.0,140.764,154.0,181.0,98.0,117.0,123.21,128.0,144.0,0.0,4.0,14.0007,27.0,67.0,289.0,280.026,2.92993,1.83353,1.06893,8.0,8.0,8.0,0.00336077,0.0387003
+815,27.160467,0.0,0.0,20.0,50.9738,123.0,255.0,75.0,131.0,140.637,154.0,177.0,98.0,117.0,123.132,128.0,145.0,0.0,4.0,13.9852,27.0,54.0,289.0,279.447,3.86465,2.02807,1.24571,8.0,8.0,8.0,0.00346651,0.0392347
+816,27.193833,0.0,0.0,21.0,51.204,123.0,255.0,69.0,131.0,140.68,153.0,179.0,98.0,118.0,123.248,128.0,144.0,0.0,4.0,13.8756,27.0,59.0,289.0,279.738,3.07533,2.01295,1.2902,8.0,8.0,8.0,0.00299783,0.0378058
+817,27.2272,0.0,0.0,21.0,50.8188,122.0,255.0,67.0,131.0,140.584,153.0,178.0,96.0,117.0,123.142,128.0,143.0,0.0,4.0,13.8637,27.0,61.0,289.0,280.159,4.89483,1.92404,1.15862,8.0,8.0,8.0,0.00296068,0.038043
+818,27.260567,0.0,0.0,21.0,50.9132,122.0,255.0,69.0,131.0,140.599,153.0,179.0,98.0,118.0,123.291,128.0,145.0,0.0,4.0,13.7827,27.0,59.0,289.0,279.51,3.66251,1.77946,1.0907,8.0,8.0,8.0,0.00313786,0.0378058
+819,27.293933,0.0,0.0,20.0,50.7844,123.0,255.0,75.0,131.0,140.504,153.0,179.0,98.0,117.0,123.182,128.0,151.0,0.0,4.0,13.8517,27.0,55.0,289.0,279.134,2.86095,1.95382,1.24409,8.0,8.0,8.0,0.0036094,0.0392175
+820,27.3273,0.0,0.0,21.0,51.0578,123.0,255.0,75.0,131.0,140.591,153.0,180.0,95.0,117.0,123.186,128.0,143.0,0.0,4.0,13.8394,27.0,56.0,289.0,280.322,3.44197,2.006,1.2358,8.0,8.0,8.0,0.00340078,0.0376715
+821,27.360667,0.0,0.0,21.0,51.1409,123.0,255.0,76.0,131.0,140.57,153.0,186.0,95.0,117.0,123.111,128.0,141.0,0.0,4.0,13.8528,27.0,60.0,290.0,280.119,2.80135,1.80668,1.04818,8.0,8.0,8.0,0.00304927,0.0379029
+822,27.394033,0.0,0.0,21.0,51.1062,123.0,255.0,74.0,131.0,140.562,153.0,178.0,96.0,117.0,123.201,128.0,141.0,0.0,4.0,13.7836,27.0,55.0,289.0,280.293,3.26922,1.83067,1.08909,8.0,8.0,8.0,0.00308928,0.0377372
+823,27.4274,0.0,0.0,21.0,51.1364,123.0,255.0,74.0,130.0,140.526,154.0,178.0,96.0,117.0,123.264,128.0,145.0,0.0,4.0,13.8587,27.0,55.0,289.0,278.718,3.53618,2.0157,1.26547,8.0,8.0,8.0,0.00304641,0.0383916
+824,27.460767,0.0,0.0,21.0,51.2062,123.0,255.0,75.0,131.0,140.545,153.0,179.0,96.0,118.0,123.331,128.0,144.0,0.0,4.0,13.7336,27.0,54.0,289.0,279.423,2.78478,1.99018,1.21618,8.0,8.0,8.0,0.00324074,0.0375343
+825,27.494133,0.0,0.0,21.0,50.8966,123.0,255.0,74.0,131.0,140.439,153.0,178.0,98.0,117.0,123.22,128.0,145.0,0.0,4.0,13.6847,27.0,54.0,289.0,279.986,3.61853,1.90055,1.11882,8.0,8.0,8.0,0.00311786,0.0375486
+826,27.5275,0.0,0.0,21.0,50.9783,123.0,255.0,75.0,131.0,140.559,153.0,177.0,98.0,117.0,123.328,128.0,146.0,0.0,4.0,13.7467,27.0,54.0,289.0,279.25,3.3064,1.92358,1.15485,8.0,8.0,8.0,0.00305784,0.0374886
+827,27.560867,0.0,0.0,20.0,50.5357,122.0,255.0,74.0,131.0,140.518,154.0,179.0,97.0,117.0,123.292,128.0,147.0,0.0,4.0,13.8336,27.0,55.0,289.0,278.825,3.61451,2.03871,1.27507,8.0,8.0,8.0,0.00313214,0.0384059
+828,27.594233,0.0,0.0,21.0,50.6819,122.0,255.0,73.0,131.0,140.499,153.0,178.0,98.0,118.0,123.356,128.0,145.0,0.0,4.0,13.6623,27.0,56.0,289.0,279.489,4.67218,2.0589,1.32674,8.0,8.0,8.0,0.0029521,0.0372685
+829,27.6276,0.0,0.0,20.0,50.5856,122.0,255.0,74.0,131.0,140.444,153.0,177.0,95.0,117.0,123.287,128.0,143.0,0.0,4.0,13.6925,27.0,55.0,289.0,278.792,3.56941,1.93145,1.13651,8.0,8.0,8.0,0.00331504,0.0381544
+830,27.660967,0.0,0.0,21.0,50.4968,122.0,255.0,74.0,131.0,140.448,153.0,179.0,98.0,117.0,123.248,128.0,143.0,0.0,4.0,13.6688,27.0,55.0,289.0,279.841,4.09158,1.85384,1.08318,8.0,8.0,8.0,0.00366084,0.0374543
+831,27.694333,0.0,0.0,20.0,50.6153,122.0,255.0,75.0,130.0,140.435,153.0,181.0,96.0,117.0,123.26,128.0,145.0,0.0,4.0,13.7768,27.0,55.0,289.0,278.626,3.13077,1.97285,1.23204,8.0,8.0,8.0,0.00302069,0.0385031
+832,27.7277,0.0,0.0,21.0,50.6139,122.0,255.0,63.0,131.0,140.501,153.0,178.0,95.0,117.0,123.227,128.0,145.0,0.0,4.0,13.7315,27.0,65.0,289.0,279.939,3.5068,1.95658,1.27182,8.0,8.0,8.0,0.00290352,0.0374457
+833,27.761067,0.0,0.0,21.0,50.7116,122.0,255.0,62.0,131.0,140.52,153.0,181.0,97.0,117.0,123.16,128.0,146.0,0.0,4.0,13.8019,27.0,66.0,289.0,280.051,3.23448,1.83988,1.10865,8.0,8.0,8.0,0.00299783,0.0376515
+834,27.794433,0.0,0.0,21.0,50.6984,122.0,255.0,65.0,131.0,140.517,153.0,180.0,96.0,117.0,123.199,128.0,146.0,0.0,4.0,13.7544,27.0,65.0,289.0,280.052,2.68727,1.79584,1.1052,8.0,8.0,8.0,0.00340935,0.0379801
+835,27.8278,0.0,0.0,20.0,50.323,122.0,255.0,69.0,130.0,140.364,153.0,181.0,96.0,117.0,123.184,128.0,147.0,0.0,4.0,13.7342,27.0,59.0,290.0,279.32,3.88709,2.09401,1.35038,8.0,8.0,8.0,0.00311786,0.039369
+836,27.861167,0.0,0.0,21.0,50.5841,122.0,255.0,70.0,131.0,140.342,153.0,179.0,96.0,117.0,123.311,128.0,147.0,0.0,4.0,13.5598,27.0,58.0,289.0,279.618,3.24584,2.10088,1.33101,8.0,8.0,8.0,0.00293781,0.0378687
+837,27.894533,0.0,0.0,20.0,50.4124,122.0,255.0,74.0,131.0,140.432,153.0,180.0,97.0,117.0,123.128,128.0,144.0,0.0,4.0,13.7252,27.0,55.0,290.0,279.925,3.38436,1.84163,1.1116,8.0,8.0,8.0,0.00291495,0.0382545
+838,27.9279,0.0,0.0,21.0,50.5524,122.0,255.0,75.0,131.0,140.594,154.0,179.0,97.0,117.0,123.189,128.0,145.0,0.0,4.0,13.809,27.0,55.0,289.0,279.94,3.40513,1.86805,1.08495,8.0,8.0,8.0,0.00303784,0.0371571
+839,27.961267,0.0,0.0,20.0,50.3787,122.0,255.0,73.0,130.0,140.581,154.0,185.0,95.0,117.0,123.192,128.0,148.0,0.0,4.0,13.9176,27.0,59.0,289.0,278.609,3.07617,1.99474,1.22659,8.0,8.0,8.0,0.0032636,0.0389346
+840,27.994633,0.0,0.0,20.0,50.2651,121.0,255.0,72.0,131.0,140.579,154.0,179.0,99.0,117.0,123.157,128.0,149.0,0.0,4.0,13.8078,27.0,58.0,290.0,280.201,3.79048,1.95791,1.29817,8.0,8.0,8.0,0.00328932,0.038203
+841,28.028,0.0,0.0,21.0,50.4622,122.0,255.0,65.0,131.0,140.511,153.0,179.0,99.0,117.0,123.146,128.0,146.0,0.0,4.0,13.7912,27.0,63.0,290.0,279.908,3.14552,1.80357,1.11502,8.0,8.0,8.0,0.00290924,0.0377086
+842,28.061367,0.0,0.0,21.0,50.4013,122.0,255.0,66.0,131.0,140.565,153.0,178.0,97.0,117.0,123.12,128.0,145.0,0.0,4.0,13.8066,27.0,62.0,290.0,280.544,4.36388,1.91399,1.10285,8.0,8.0,8.0,0.00281779,0.0375429
+843,28.094733,0.0,0.0,20.0,50.3158,122.0,255.0,74.0,131.0,140.536,154.0,182.0,96.0,117.0,123.196,128.0,153.0,0.0,4.0,13.8796,27.0,56.0,289.0,279.003,3.6436,2.01893,1.29178,8.0,8.0,8.0,0.00305784,0.0391232
+844,28.1281,0.0,0.0,20.0,50.3137,122.0,255.0,74.0,131.0,140.694,154.0,180.0,97.0,117.0,123.207,128.0,149.0,0.0,4.0,13.92,27.0,55.0,289.0,279.905,3.02161,2.02719,1.26892,8.0,8.0,8.0,0.00345508,0.0385402
+845,28.161467,0.0,0.0,20.0,50.0437,121.0,255.0,74.0,131.0,140.646,154.0,178.0,96.0,117.0,123.054,128.0,149.0,0.0,4.0,13.9422,27.0,55.0,290.0,280.371,3.37711,1.90248,1.11907,8.0,8.0,8.0,0.00356653,0.0389889
+846,28.194833,0.0,0.0,20.0,50.1393,122.0,255.0,69.0,131.0,140.687,154.0,179.0,97.0,117.0,123.107,128.0,149.0,0.0,4.0,13.9449,27.0,59.0,289.0,280.29,2.8095,1.87961,1.10517,8.0,8.0,8.0,0.003135,0.0382345
+847,28.2282,0.0,0.0,20.0,49.8953,121.0,255.0,74.0,130.0,140.59,154.0,182.0,96.0,117.0,123.102,128.0,152.0,0.0,4.0,13.9655,27.0,57.0,289.0,279.176,4.15774,2.07008,1.30652,8.0,8.0,8.0,0.00301212,0.0401092
+848,28.261567,0.0,0.0,20.0,50.234,122.0,255.0,68.0,131.0,140.67,154.0,181.0,96.0,117.0,123.193,128.0,149.0,0.0,4.0,13.9272,27.0,60.0,289.0,279.663,3.34978,1.99482,1.27952,8.0,8.0,8.0,0.0030607,0.0383545
+849,28.294933,0.0,0.0,20.0,50.1235,122.0,255.0,70.0,131.0,140.667,154.0,180.0,98.0,117.0,123.103,128.0,150.0,0.0,4.0,13.9585,27.0,58.0,290.0,280.0,2.73119,1.8832,1.08612,8.0,8.0,8.0,0.00356653,0.0389546
+850,28.3283,0.0,0.0,20.0,50.0606,122.0,255.0,70.0,131.0,140.656,154.0,183.0,97.0,117.0,123.026,128.0,152.0,0.0,4.0,13.9651,27.0,58.0,290.0,280.667,3.52597,1.91408,1.07973,8.0,8.0,8.0,0.00368084,0.0387917
+851,28.361667,0.0,0.0,20.0,49.8743,121.0,255.0,73.0,131.0,140.696,154.0,180.0,92.0,117.0,123.117,128.0,152.0,0.0,4.0,14.098,28.0,56.0,289.0,278.574,3.31266,2.09774,1.33242,8.0,8.0,8.0,0.00293496,0.0406407
+852,28.395033,0.0,0.0,20.0,49.9765,122.0,255.0,62.0,131.0,140.686,154.0,181.0,93.0,117.0,123.063,128.0,150.0,0.0,4.0,13.9844,27.0,66.0,290.0,280.19,3.67639,2.05407,1.3322,8.0,8.0,8.0,0.00278921,0.0383545
+853,28.4284,0.0,0.0,20.0,49.9826,122.0,255.0,67.0,131.0,140.733,154.0,179.0,94.0,117.0,123.087,128.0,151.0,0.0,4.0,14.0731,28.0,61.0,289.0,279.692,3.89203,1.91861,1.1562,8.0,8.0,8.0,0.00309785,0.0386574
+854,28.461767,0.0,0.0,20.0,50.045,122.0,255.0,63.0,131.0,140.729,154.0,179.0,93.0,117.0,123.121,128.0,149.0,0.0,4.0,14.0266,27.0,66.0,289.0,279.932,2.90714,1.90141,1.11919,8.0,8.0,8.0,0.00330933,0.0389489
+855,28.495133,0.0,0.0,20.0,49.888,122.0,255.0,67.0,131.0,140.728,154.0,182.0,92.0,117.0,123.096,128.0,149.0,0.0,4.0,14.1513,28.0,61.0,289.0,278.56,3.74668,2.08123,1.2797,8.0,8.0,8.0,0.00381516,0.0400034
+856,28.5285,0.0,0.0,20.0,50.0702,122.0,255.0,71.0,131.0,140.724,154.0,180.0,98.0,117.0,123.175,128.0,151.0,0.0,4.0,14.0046,27.0,57.0,289.0,279.958,3.10812,2.00024,1.26888,8.0,8.0,8.0,0.00305213,0.0381859
+857,28.561867,0.0,0.0,20.0,49.7179,121.0,255.0,72.0,131.0,140.756,154.0,183.0,93.0,117.0,123.108,128.0,155.0,0.0,4.0,14.1078,27.0,57.0,289.0,279.59,4.0073,1.94312,1.12948,8.0,8.0,8.0,0.00330361,0.0384002
+858,28.595233,0.0,0.0,20.0,49.8784,121.0,255.0,71.0,131.0,140.685,154.0,179.0,97.0,117.0,123.165,128.0,156.0,0.0,4.0,13.9978,27.0,57.0,289.0,279.976,3.4265,1.86811,1.10295,8.0,8.0,8.0,0.00330361,0.0375229
+859,28.6286,0.0,0.0,20.0,49.8683,121.0,255.0,72.0,131.0,140.693,154.0,182.0,97.0,117.0,123.089,128.0,150.0,0.0,4.0,14.123,28.0,57.0,289.0,279.513,3.30504,2.00602,1.29927,8.0,8.0,8.0,0.00381516,0.0398291
+860,28.661967,0.0,0.0,20.0,49.9653,122.0,255.0,71.0,131.0,140.801,154.0,182.0,95.0,117.0,123.147,128.0,150.0,0.0,4.0,14.071,27.0,57.0,289.0,280.102,4.23805,2.0836,1.38337,8.0,8.0,8.0,0.00368084,0.0378572
+861,28.695333,0.0,0.0,20.0,49.9126,122.0,255.0,68.0,131.0,140.767,154.0,178.0,95.0,117.0,123.208,128.0,156.0,0.0,4.0,14.0502,28.0,60.0,289.0,279.66,3.37467,1.81597,1.10744,8.0,8.0,8.0,0.00305213,0.0385288
+862,28.7287,0.0,0.0,20.0,50.0572,122.0,255.0,70.0,131.0,140.721,154.0,180.0,96.0,117.0,123.115,128.0,147.0,0.0,4.0,14.0222,27.0,58.0,289.0,280.078,3.60928,1.84417,1.10631,8.0,8.0,8.0,0.0031893,0.0375772
+863,28.762067,0.0,0.0,20.0,49.9866,122.0,255.0,74.0,131.0,140.742,154.0,181.0,95.0,117.0,123.179,128.0,151.0,0.0,4.0,14.1261,28.0,56.0,289.0,278.785,3.58815,2.032,1.27502,8.0,8.0,8.0,0.00349223,0.0390661
+864,28.795433,0.0,0.0,20.0,49.9956,122.0,255.0,74.0,131.0,140.777,154.0,179.0,96.0,117.0,123.207,128.0,151.0,0.0,4.0,14.0714,28.0,54.0,289.0,279.2,2.98886,2.03366,1.26532,8.0,8.0,8.0,0.00338649,0.0381744
+865,28.8288,0.0,0.0,20.0,49.7642,121.0,255.0,71.0,131.0,140.742,154.0,179.0,97.0,117.0,123.141,128.0,149.0,0.0,4.0,14.0745,28.0,57.0,289.0,279.463,3.55812,1.92117,1.11895,8.0,8.0,8.0,0.00404378,0.0379258
+866,28.862167,0.0,0.0,20.0,50.0223,121.0,255.0,75.0,131.0,140.703,154.0,179.0,96.0,117.0,123.278,128.0,151.0,0.0,4.0,13.9416,27.0,53.0,289.0,279.244,3.11966,1.91311,1.14907,8.0,8.0,8.0,0.00313214,0.03756
+867,28.895533,0.0,0.0,20.0,49.4493,121.0,255.0,73.0,130.0,140.661,154.0,183.0,96.0,117.0,123.166,128.0,156.0,0.0,4.0,14.0805,28.0,58.0,289.0,278.68,4.80809,2.12716,1.35189,8.0,8.0,8.0,0.00340078,0.0398177
+868,28.9289,0.0,0.0,20.0,49.7153,121.0,255.0,75.0,131.0,140.778,154.0,181.0,97.0,117.0,123.337,128.0,156.0,0.0,4.0,14.0451,28.0,55.0,288.0,278.602,3.4792,2.04569,1.27122,8.0,8.0,8.0,0.00325789,0.0373943
+869,28.962267,0.0,0.0,20.0,49.7057,121.0,255.0,72.0,131.0,140.693,154.0,179.0,96.0,117.0,123.299,128.0,158.0,0.0,4.0,14.0144,28.0,57.0,289.0,279.093,2.76972,1.91773,1.12245,8.0,8.0,8.0,0.00344079,0.0381716
+870,28.995633,0.0,0.0,20.0,49.747,121.0,255.0,73.0,131.0,140.715,154.0,179.0,97.0,117.0,123.214,128.0,158.0,0.0,4.0,13.9988,28.0,57.0,289.0,279.79,3.44192,1.9134,1.1213,8.0,8.0,8.0,0.00336934,0.0374686
+871,29.029,0.0,0.0,20.0,49.8171,121.0,255.0,75.0,130.0,140.742,154.0,183.0,97.0,117.0,123.179,128.0,158.0,0.0,4.0,14.1761,28.0,57.0,289.0,278.17,2.94973,2.00928,1.25017,8.0,8.0,8.0,0.00330361,0.0390546
+872,29.062367,0.0,0.0,20.0,49.5326,121.0,255.0,75.0,131.0,140.76,154.0,179.0,99.0,117.0,123.18,128.0,158.0,0.0,4.0,14.0628,28.0,54.0,289.0,279.877,3.83832,2.10006,1.32889,8.0,8.0,8.0,0.00296925,0.0385202
+873,29.095733,0.0,0.0,20.0,49.6307,121.0,255.0,74.0,131.0,140.674,154.0,178.0,98.0,117.0,123.145,128.0,160.0,0.0,4.0,14.0159,28.0,56.0,289.0,279.233,3.77685,1.87645,1.09188,8.0,8.0,8.0,0.00331219,0.0385831
+874,29.1291,0.0,0.0,20.0,49.7818,121.0,255.0,73.0,131.0,140.765,154.0,177.0,97.0,117.0,123.213,128.0,154.0,0.0,4.0,14.051,28.0,56.0,289.0,279.115,2.91748,1.81851,1.08935,8.0,8.0,8.0,0.00358368,0.0384545
+875,29.162467,0.0,0.0,20.0,49.6509,121.0,255.0,72.0,131.0,140.752,154.0,183.0,96.0,117.0,123.055,128.0,158.0,0.0,4.0,14.1962,28.0,60.0,289.0,279.251,3.874,2.09663,1.31763,8.0,8.0,8.0,0.00328647,0.0400177
+876,29.195833,0.0,0.0,20.0,49.9235,121.0,255.0,74.0,131.0,140.89,154.0,178.0,96.0,117.0,123.254,128.0,159.0,0.0,4.0,14.1642,28.0,57.0,289.0,279.608,3.29081,2.09103,1.34177,8.0,8.0,8.0,0.00294067,0.0371056
+877,29.2292,0.0,0.0,20.0,49.5332,121.0,255.0,73.0,131.0,140.768,154.0,180.0,97.0,117.0,123.153,128.0,159.0,0.0,4.0,14.0983,28.0,56.0,289.0,279.689,3.82482,1.8811,1.09258,8.0,8.0,8.0,0.00328361,0.0380087
+878,29.262567,0.0,0.0,20.0,49.6365,121.0,255.0,74.0,131.0,140.781,154.0,178.0,98.0,117.0,123.143,128.0,157.0,0.0,4.0,14.0818,28.0,55.0,289.0,280.17,4.13442,1.95473,1.11578,8.0,8.0,8.0,0.00290638,0.0372685
+879,29.295933,0.0,0.0,20.0,49.5631,121.0,255.0,73.0,131.0,140.815,154.0,181.0,96.0,117.0,123.195,128.0,157.0,0.0,4.0,14.2338,28.0,56.0,289.0,278.731,3.02803,2.02184,1.24488,8.0,8.0,8.0,0.00325217,0.0400177
+880,29.3293,0.0,0.0,20.0,49.8321,121.0,255.0,73.0,131.0,140.863,154.0,179.0,97.0,117.0,123.12,128.0,158.0,0.0,4.0,14.181,28.0,56.0,289.0,280.133,3.43322,2.05289,1.28511,8.0,8.0,8.0,0.00346936,0.0371799
+881,29.362667,0.0,0.0,20.0,49.8753,122.0,255.0,73.0,131.0,140.839,154.0,186.0,96.0,117.0,123.07,128.0,158.0,0.0,4.0,14.2043,28.0,59.0,289.0,279.855,2.72709,1.83178,1.09904,8.0,8.0,8.0,0.00322359,0.03744
+882,29.396033,0.0,0.0,20.0,49.7484,121.0,255.0,76.0,131.0,140.828,154.0,178.0,96.0,117.0,123.191,128.0,156.0,0.0,4.0,14.0995,28.0,54.0,289.0,279.879,4.3261,1.95684,1.16095,8.0,8.0,8.0,0.003135,0.0365769
+883,29.4294,0.0,0.0,20.0,49.7116,121.0,255.0,73.0,131.0,140.744,154.0,180.0,96.0,117.0,123.182,128.0,156.0,0.0,4.0,14.1969,28.0,56.0,289.0,278.587,3.98709,2.11864,1.32942,8.0,8.0,8.0,0.00317501,0.0384431
+884,29.462767,0.0,0.0,20.0,49.7599,121.0,255.0,74.0,131.0,140.917,154.0,179.0,96.0,117.0,123.191,128.0,158.0,0.0,4.0,14.2033,28.0,55.0,289.0,279.603,2.95267,2.01293,1.25604,8.0,8.0,8.0,0.00364083,0.0369542
+885,29.496133,0.0,0.0,20.0,49.6503,121.0,255.0,74.0,131.0,140.663,154.0,180.0,95.0,117.0,123.094,128.0,159.0,0.0,4.0,14.0325,28.0,55.0,290.0,279.954,4.16026,2.05062,1.22938,8.0,8.0,8.0,0.00327503,0.0375
+886,29.5295,0.0,0.0,20.0,49.7967,121.0,255.0,75.0,131.0,140.767,154.0,181.0,95.0,117.0,123.221,128.0,160.0,0.0,4.0,14.0593,28.0,56.0,289.0,279.676,3.59195,2.04386,1.21547,8.0,8.0,8.0,0.00328361,0.0366369
+887,29.562867,0.0,0.0,19.0,49.2561,120.0,255.0,73.0,130.0,140.729,154.0,181.0,95.0,117.0,123.172,128.0,162.0,0.0,4.0,14.1676,28.0,57.0,289.0,278.821,3.67881,2.11827,1.32684,8.0,8.0,8.0,0.00270062,0.0401835
+888,29.596233,0.0,0.0,20.0,49.5571,120.0,255.0,74.0,131.0,140.676,154.0,182.0,95.0,117.0,123.303,128.0,160.0,0.0,4.0,13.9836,28.0,57.0,289.0,279.129,3.46625,2.04759,1.29159,8.0,8.0,8.0,0.00254058,0.036757
+889,29.6296,0.0,0.0,20.0,49.5854,121.0,255.0,72.0,131.0,140.631,154.0,182.0,94.0,117.0,123.28,128.0,158.0,0.0,4.0,13.9768,28.0,57.0,289.0,279.107,2.72986,1.84938,1.12698,8.0,8.0,8.0,0.00293496,0.0377
+890,29.662967,0.0,0.0,20.0,49.494,120.0,255.0,74.0,131.0,140.688,154.0,181.0,96.0,117.0,123.214,128.0,161.0,0.0,4.0,14.0132,28.0,57.0,289.0,279.507,3.44615,1.87269,1.08747,8.0,8.0,8.0,0.00304641,0.0374143
+891,29.696333,0.0,0.0,20.0,49.4128,120.0,255.0,73.0,130.0,140.683,154.0,182.0,96.0,117.0,123.26,128.0,161.0,0.0,4.0,14.1315,28.0,57.0,289.0,278.059,3.33704,2.01504,1.28691,8.0,8.0,8.0,0.00274634,0.0389203
+892,29.7297,0.0,0.0,20.0,49.3672,120.0,255.0,73.0,131.0,140.758,154.0,179.0,97.0,117.0,123.274,128.0,160.0,0.0,4.0,14.0486,28.0,56.0,289.0,279.771,4.44204,2.14162,1.36827,8.0,8.0,8.0,0.0026749,0.0363512
+893,29.763067,0.0,0.0,20.0,49.3654,120.0,255.0,72.0,131.0,140.659,154.0,179.0,98.0,117.0,123.286,128.0,160.0,0.0,4.0,13.9733,28.0,58.0,289.0,279.579,3.49627,1.90446,1.10178,8.0,8.0,8.0,0.00265775,0.0370056
+894,29.796433,0.0,0.0,20.0,49.6183,121.0,255.0,75.0,131.0,140.616,154.0,181.0,98.0,117.0,123.379,128.0,159.0,0.0,4.0,13.8918,28.0,58.0,288.0,279.079,2.65726,1.7568,1.06586,8.0,8.0,8.0,0.00285494,0.036677
+895,29.8298,0.0,0.0,20.0,49.4553,120.0,255.0,74.0,130.0,140.52,154.0,183.0,96.0,117.0,123.293,128.0,160.0,0.0,4.0,13.9655,28.0,58.0,289.0,278.303,3.75686,2.07423,1.36748,8.0,8.0,8.0,0.00267775,0.0377715
+896,29.863167,0.0,0.0,20.0,49.6022,120.0,255.0,75.0,131.0,140.511,154.0,178.0,97.0,117.0,123.371,128.0,160.0,0.0,4.0,13.7991,27.0,54.0,289.0,279.103,3.26506,2.0877,1.36435,8.0,8.0,8.0,0.00278921,0.0359739
+897,29.896533,0.0,0.0,20.0,49.3622,120.0,255.0,76.0,131.0,140.573,154.0,180.0,97.0,117.0,123.291,128.0,159.0,0.0,4.0,13.9361,28.0,56.0,289.0,279.301,3.27926,1.88564,1.07329,8.0,8.0,8.0,0.0026749,0.0368999
+898,29.9299,0.0,0.0,20.0,49.4337,120.0,255.0,76.0,131.0,140.649,154.0,180.0,97.0,117.0,123.338,128.0,157.0,0.0,4.0,13.9419,28.0,56.0,289.0,279.263,3.45904,1.86814,1.05601,8.0,8.0,8.0,0.00283779,0.0360511
+899,29.963267,0.0,0.0,20.0,49.3394,120.0,255.0,75.0,130.0,140.64,154.0,180.0,96.0,117.0,123.334,128.0,157.0,0.0,4.0,14.1052,28.0,55.0,288.0,277.443,3.06239,2.0687,1.2852,8.0,8.0,8.0,0.00338649,0.0381802
+900,29.996633,0.0,0.0,20.0,49.2382,120.0,255.0,76.0,131.0,140.667,154.0,183.0,95.0,117.0,123.345,128.0,155.0,0.0,4.0,13.9658,28.0,57.0,288.0,279.135,3.56287,2.04794,1.24821,8.0,8.0,8.0,0.00312643,0.0364112
+901,30.03,0.0,0.0,20.0,49.3889,120.0,255.0,73.0,130.0,140.578,154.0,179.0,96.0,117.0,123.339,128.0,157.0,0.0,4.0,13.8899,28.0,55.0,289.0,278.851,2.74584,1.85972,1.10864,8.0,8.0,8.0,0.00275777,0.0361283
+902,30.063367,0.0,0.0,20.0,49.3556,120.0,255.0,76.0,131.0,140.653,154.0,177.0,96.0,117.0,123.391,128.0,157.0,0.0,4.0,13.901,28.0,54.0,288.0,279.056,3.63993,1.86806,1.11906,8.0,8.0,8.0,0.00296068,0.0358711
+903,30.096733,0.0,0.0,20.0,48.9791,120.0,255.0,74.0,130.0,140.639,154.0,180.0,94.0,117.0,123.323,128.0,158.0,0.0,4.0,14.0698,28.0,55.0,288.0,277.52,4.04805,2.08045,1.29066,8.0,8.0,8.0,0.00292638,0.0384859
+904,30.1301,0.0,0.0,20.0,49.1433,120.0,255.0,72.0,131.0,140.72,154.0,181.0,96.0,117.0,123.36,128.0,157.0,0.0,4.0,14.0306,28.0,57.0,288.0,279.146,2.82819,2.03495,1.24757,8.0,8.0,8.0,0.00321216,0.0369427
+905,30.163467,0.0,0.0,20.0,49.078,120.0,255.0,73.0,131.0,140.635,154.0,178.0,95.0,117.0,123.235,128.0,157.0,0.0,4.0,14.0222,28.0,56.0,289.0,279.106,3.07523,1.88921,1.11987,8.0,8.0,8.0,0.00322359,0.0372457
+906,30.196833,0.0,0.0,20.0,49.1922,120.0,255.0,73.0,131.0,140.695,154.0,177.0,96.0,117.0,123.296,128.0,156.0,0.0,4.0,14.0167,28.0,56.0,289.0,279.316,2.55459,1.83861,1.09034,8.0,8.0,8.0,0.00280636,0.036194
+907,30.2302,0.0,0.0,19.0,48.5801,119.0,255.0,74.0,130.0,140.689,154.0,181.0,96.0,117.0,123.232,128.0,160.0,0.0,4.0,14.1506,28.0,58.0,289.0,278.998,3.78379,2.0707,1.30648,8.0,8.0,8.0,0.00273491,0.0391404
+908,30.263567,0.0,0.0,20.0,48.3982,118.0,255.0,70.0,131.0,140.741,154.0,179.0,97.0,117.0,123.265,128.0,160.0,0.0,4.0,14.0563,28.0,58.0,289.0,279.519,4.57398,2.11544,1.32546,8.0,8.0,8.0,0.00262917,0.0371056
+909,30.296933,0.0,0.0,19.0,48.4948,119.0,255.0,73.0,131.0,140.8,154.0,183.0,96.0,117.0,123.2,128.0,158.0,0.0,4.0,14.1615,28.0,57.0,289.0,279.664,3.00573,1.89422,1.15773,8.0,8.0,8.0,0.00328075,0.0382087
+910,30.3303,0.0,0.0,19.0,48.3408,118.0,255.0,72.0,131.0,140.74,154.0,179.0,95.0,117.0,123.177,128.0,157.0,0.0,4.0,14.0776,28.0,57.0,289.0,280.115,3.80973,1.86634,1.12945,8.0,8.0,8.0,0.0032093,0.0385774
+911,30.363667,0.0,0.0,19.0,48.3359,119.0,255.0,73.0,131.0,140.771,154.0,180.0,95.0,117.0,123.194,128.0,157.0,0.0,4.0,14.233,28.0,56.0,289.0,278.7,3.33542,2.02165,1.28727,8.0,8.0,8.0,0.00277778,0.0408922
+912,30.397033,0.0,0.0,19.0,48.25,119.0,255.0,70.0,131.0,140.902,154.0,187.0,97.0,117.0,123.164,128.0,157.0,0.0,4.0,14.217,28.0,61.0,289.0,280.35,3.63124,2.0692,1.33355,8.0,8.0,8.0,0.00278064,0.0384745
+913,30.4304,0.0,0.0,19.0,48.2415,118.0,255.0,71.0,131.0,140.808,154.0,185.0,96.0,117.0,123.195,128.0,155.0,0.0,4.0,14.1519,28.0,58.0,289.0,280.008,3.17766,1.82378,1.10242,8.0,8.0,8.0,0.00298068,0.0389546
+914,30.463767,0.0,0.0,19.0,48.3445,119.0,255.0,69.0,131.0,140.953,154.0,180.0,96.0,117.0,123.264,128.0,161.0,0.0,4.0,14.231,28.0,59.0,288.0,279.508,2.80608,1.79528,1.08705,8.0,8.0,8.0,0.00313214,0.0388746
+915,30.497133,0.0,0.0,19.0,48.1118,118.0,255.0,72.0,131.0,140.797,154.0,185.0,96.0,117.0,123.143,128.0,162.0,0.0,4.0,14.2453,28.0,60.0,289.0,279.343,3.50808,2.00314,1.29776,8.0,8.0,8.0,0.00310642,0.0415466
+916,30.5305,0.0,0.0,20.0,48.4413,119.0,255.0,74.0,131.0,140.92,154.0,181.0,96.0,117.0,123.227,128.0,160.0,0.0,4.0,14.207,28.0,56.0,289.0,280.37,3.03452,2.0111,1.27035,8.0,8.0,8.0,0.0028035,0.0374714
+917,30.563867,0.0,0.0,19.0,48.21,118.0,255.0,72.0,131.0,140.814,154.0,180.0,97.0,117.0,123.222,128.0,160.0,0.0,4.0,14.1734,28.0,57.0,289.0,279.508,3.80219,1.93112,1.13604,8.0,8.0,8.0,0.0027692,0.0384088
+918,30.597233,0.0,0.0,20.0,48.4345,118.0,255.0,72.0,131.0,140.843,154.0,181.0,97.0,117.0,123.264,128.0,161.0,0.0,4.0,14.1174,28.0,57.0,289.0,279.814,4.54191,1.98203,1.16207,8.0,8.0,8.0,0.0026206,0.0369284
+919,30.6306,0.0,0.0,19.0,48.1034,118.0,255.0,72.0,131.0,140.748,154.0,182.0,96.0,117.0,123.237,128.0,162.0,0.0,4.0,14.1864,28.0,57.0,289.0,278.833,3.03969,1.97211,1.2706,8.0,8.0,8.0,0.00307213,0.0409608
+920,30.663967,0.0,0.0,19.0,48.0635,118.0,255.0,72.0,131.0,140.803,154.0,180.0,96.0,117.0,123.073,128.0,157.0,0.0,4.0,14.1196,28.0,56.0,290.0,280.574,3.5446,2.07719,1.34746,8.0,8.0,8.0,0.00317215,0.0386174
+921,30.697333,0.0,0.0,20.0,48.2038,118.0,255.0,71.0,131.0,140.834,154.0,182.0,95.0,117.0,123.103,128.0,159.0,0.0,4.0,14.1816,28.0,57.0,289.0,280.233,2.69809,1.82117,1.09015,8.0,8.0,8.0,0.00284065,0.0380144
+922,30.7307,0.0,0.0,20.0,48.1178,118.0,255.0,71.0,131.0,140.895,155.0,191.0,95.0,117.0,123.111,128.0,172.0,0.0,4.0,14.2039,28.0,63.0,289.0,281.203,3.71212,1.97463,1.14257,8.0,8.0,8.0,0.00266061,0.0388832
+923,30.764067,0.0,0.0,19.0,48.1976,118.0,255.0,72.0,131.0,140.874,155.0,188.0,95.0,117.0,123.056,128.0,167.0,0.0,4.0,14.3354,29.0,60.0,289.0,279.986,3.52587,2.06962,1.30823,8.0,8.0,8.0,0.00288066,0.0400349
+924,30.797433,0.0,0.0,20.0,48.2905,118.0,255.0,73.0,131.0,140.894,155.0,181.0,96.0,117.0,123.117,128.0,164.0,0.0,4.0,14.2155,28.0,56.0,289.0,280.545,2.88278,1.98951,1.27474,8.0,8.0,8.0,0.00286065,0.0383888
+925,30.8308,0.0,0.0,19.0,48.0343,118.0,255.0,70.0,131.0,140.712,154.0,182.0,97.0,117.0,123.101,128.0,165.0,0.0,4.0,14.1228,28.0,59.0,289.0,280.237,3.42127,1.90385,1.1606,8.0,8.0,8.0,0.00299211,0.0391518
+926,30.864167,0.0,0.0,20.0,48.3639,118.0,255.0,74.0,131.0,140.801,154.0,183.0,95.0,117.0,123.134,128.0,176.0,0.0,4.0,14.1276,28.0,58.0,289.0,280.833,2.97702,1.91773,1.159,8.0,8.0,8.0,0.00288637,0.0379287
+927,30.897533,0.0,0.0,19.0,47.6758,118.0,255.0,74.0,131.0,140.675,154.0,179.0,94.0,117.0,123.085,128.0,164.0,0.0,4.0,14.1585,28.0,55.0,289.0,279.81,3.87172,2.03551,1.31854,8.0,8.0,8.0,0.00277778,0.0422497
+928,30.9309,0.0,0.0,19.0,47.8996,118.0,255.0,69.0,131.0,140.809,154.0,179.0,96.0,117.0,123.107,128.0,159.0,0.0,4.0,14.0961,28.0,61.0,289.0,280.725,3.65385,2.0638,1.29304,8.0,8.0,8.0,0.00274348,0.0386803
+929,30.964267,0.0,0.0,19.0,47.8403,118.0,255.0,72.0,131.0,140.77,154.0,179.0,97.0,117.0,123.094,128.0,161.0,0.0,4.0,14.1269,28.0,57.0,289.0,280.659,2.95496,1.92878,1.14491,8.0,8.0,8.0,0.00284636,0.0402864
+930,30.997633,0.0,0.0,19.0,47.9488,118.0,255.0,72.0,131.0,140.828,155.0,180.0,97.0,117.0,123.054,128.0,158.0,0.0,4.0,14.1774,28.0,57.0,289.0,280.899,3.32408,1.8585,1.13226,8.0,8.0,8.0,0.00306927,0.0389803
+931,31.031,0.0,0.0,19.0,47.9567,118.0,255.0,73.0,131.0,140.794,155.0,187.0,96.0,117.0,123.144,128.0,159.0,0.0,4.0,14.222,29.0,59.0,289.0,279.02,2.7157,1.99063,1.27794,8.0,8.0,8.0,0.00295496,0.0407036
+932,31.064367,0.0,0.0,19.0,47.8013,117.0,255.0,72.0,131.0,140.862,155.0,179.0,96.0,117.0,123.087,128.0,157.0,0.0,4.0,14.1666,28.0,57.0,289.0,280.747,3.58296,2.10602,1.3171,8.0,8.0,8.0,0.00274634,0.0389975
+933,31.097733,0.0,0.0,19.0,47.3605,117.0,255.0,72.0,131.0,140.796,155.0,181.0,96.0,117.0,123.183,128.0,156.0,0.0,4.0,14.1141,28.0,58.0,289.0,279.886,3.39615,1.88392,1.12252,8.0,8.0,8.0,0.0028235,0.0413009
+934,31.1311,0.0,0.0,19.0,47.5794,117.0,255.0,69.0,131.0,140.896,155.0,179.0,97.0,117.0,123.206,128.0,157.0,0.0,4.0,14.1398,29.0,60.0,289.0,280.513,2.51562,1.78777,1.05039,8.0,8.0,8.0,0.00308356,0.0403635
+935,31.164467,0.0,0.0,19.0,47.559,117.0,255.0,69.0,130.0,140.782,155.0,184.0,93.0,117.0,123.122,128.0,146.0,0.0,4.0,14.1967,29.0,60.0,289.0,279.16,3.68404,2.11001,1.34465,8.0,8.0,8.0,0.00328075,0.0423068
+936,31.197833,0.0,0.0,19.0,47.7067,117.0,255.0,68.0,131.0,140.912,155.0,179.0,95.0,117.0,123.204,128.0,148.0,0.0,4.0,14.138,28.0,61.0,289.0,280.135,3.13763,2.05545,1.35041,8.0,8.0,8.0,0.00286637,0.0391061
+937,31.2312,0.0,0.0,19.0,47.3685,117.0,255.0,72.0,131.0,140.927,155.0,180.0,96.0,117.0,123.197,128.0,152.0,0.0,4.0,14.2031,29.0,58.0,289.0,279.807,3.69001,1.8634,1.11917,8.0,8.0,8.0,0.00264346,0.0406979
+938,31.264567,0.0,0.0,19.0,47.4969,117.0,255.0,73.0,131.0,140.895,155.0,179.0,96.0,117.0,123.182,128.0,154.0,0.0,4.0,14.1277,28.0,56.0,289.0,280.244,3.36803,1.83117,1.0368,8.0,8.0,8.0,0.00265203,0.0399863
+939,31.297933,0.0,0.0,19.0,47.3006,117.0,255.0,72.0,131.0,140.913,155.0,181.0,96.0,117.0,123.146,128.0,152.0,0.0,4.0,14.2974,29.0,57.0,289.0,279.143,2.85025,2.03917,1.28691,8.0,8.0,8.0,0.00298925,0.0438615
+940,31.3313,0.0,0.0,19.0,47.3965,117.0,255.0,74.0,131.0,140.957,155.0,182.0,93.0,117.0,123.178,128.0,152.0,0.0,4.0,14.2076,29.0,56.0,289.0,280.009,3.43118,2.11962,1.31304,8.0,8.0,8.0,0.00298925,0.0410322
+941,31.364667,0.0,0.0,19.0,47.4558,117.0,255.0,74.0,131.0,140.903,155.0,182.0,90.0,117.0,123.23,128.0,155.0,0.0,4.0,14.1674,29.0,58.0,289.0,279.663,2.69025,1.8519,1.10818,8.0,8.0,8.0,0.00263775,0.0414895
+942,31.398033,0.0,0.0,19.0,47.3198,117.0,255.0,74.0,131.0,140.932,155.0,181.0,95.0,117.0,123.171,128.0,155.0,0.0,4.0,14.1586,28.0,58.0,289.0,280.512,3.95132,1.92136,1.14567,8.0,8.0,8.0,0.00292924,0.0405264
+943,31.4314,0.0,0.0,19.0,47.658,118.0,255.0,73.0,131.0,140.925,155.0,183.0,97.0,117.0,123.184,128.0,151.0,0.0,4.0,14.2915,29.0,59.0,289.0,278.558,3.72679,2.11915,1.36711,8.0,8.0,8.0,0.00291781,0.041258
+944,31.464767,0.0,0.0,19.0,47.4998,117.0,255.0,73.0,131.0,140.927,155.0,184.0,96.0,117.0,123.249,128.0,150.0,0.0,4.0,14.1649,29.0,58.0,288.0,279.439,2.92158,2.07361,1.34114,8.0,8.0,8.0,0.00306356,0.0412437
+945,31.498133,0.0,0.0,19.0,47.3886,117.0,255.0,74.0,131.0,140.809,155.0,182.0,95.0,117.0,123.056,128.0,152.0,0.0,4.0,14.1472,29.0,59.0,289.0,279.634,3.42101,1.92949,1.16447,8.0,8.0,8.0,0.00330933,0.0420125
+946,31.5315,0.0,0.0,19.0,47.6161,117.0,255.0,76.0,131.0,140.903,155.0,181.0,95.0,117.0,123.213,128.0,155.0,0.0,4.0,14.1638,29.0,56.0,289.0,279.824,2.83133,1.98036,1.17052,8.0,8.0,8.0,0.00284351,0.0404407
+947,31.564867,0.0,0.0,19.0,47.2816,117.0,255.0,74.0,130.0,140.673,155.0,180.0,97.0,116.0,123.109,128.0,159.0,0.0,4.0,14.1108,29.0,55.0,289.0,278.98,3.24328,2.06844,1.30774,8.0,8.0,8.0,0.00305784,0.0445616
+948,31.598233,0.0,0.0,19.0,47.4612,117.0,255.0,71.0,131.0,140.735,155.0,179.0,96.0,117.0,123.165,128.0,157.0,0.0,4.0,14.03,28.0,57.0,289.0,279.69,3.60572,2.17689,1.39632,8.0,8.0,8.0,0.00289209,0.0408579
+949,31.6316,0.0,0.0,19.0,47.4038,117.0,255.0,75.0,130.0,140.728,155.0,178.0,95.0,117.0,123.154,128.0,158.0,0.0,4.0,14.1649,29.0,56.0,289.0,278.625,3.47421,2.60676,1.83521,8.0,8.0,8.0,0.00318644,0.04385
+950,31.664967,0.0,0.0,19.0,47.4619,117.0,255.0,73.0,131.0,140.797,155.0,180.0,96.0,117.0,123.112,128.0,156.0,0.0,4.0,14.1079,29.0,56.0,289.0,279.734,3.37086,2.15612,1.38539,8.0,8.0,8.0,0.00296639,0.0415895
+951,31.698333,0.0,0.0,19.0,47.6126,118.0,255.0,75.0,131.0,140.678,155.0,182.0,97.0,117.0,123.177,128.0,158.0,0.0,4.0,13.9912,28.0,58.0,289.0,279.637,2.60891,1.92443,1.12027,8.0,8.0,8.0,0.00273491,0.041278
+952,31.7317,0.0,0.0,19.0,47.4151,117.0,255.0,74.0,131.0,140.704,155.0,184.0,97.0,117.0,123.208,128.0,155.0,0.0,4.0,13.9631,28.0,58.0,289.0,279.461,3.21555,1.92214,1.10577,8.0,8.0,8.0,0.00259202,0.0408665
+953,31.765067,0.0,0.0,19.0,47.3772,117.0,255.0,75.0,130.0,140.63,155.0,183.0,96.0,117.0,123.248,128.0,156.0,0.0,4.0,13.9938,29.0,58.0,289.0,278.632,3.49446,2.07265,1.26558,8.0,8.0,8.0,0.00267204,0.0435414
+954,31.798433,0.0,0.0,19.0,47.4393,117.0,255.0,75.0,131.0,140.718,155.0,181.0,96.0,117.0,123.249,128.0,156.0,0.0,4.0,13.9807,28.0,55.0,289.0,279.622,2.93699,2.02945,1.2961,8.0,8.0,8.0,0.00267775,0.0414781
+955,31.8318,0.0,0.0,19.0,47.3777,117.0,255.0,75.0,131.0,140.703,155.0,180.0,96.0,117.0,123.186,128.0,159.0,0.0,4.0,14.0114,28.0,55.0,289.0,279.453,3.68783,1.87697,1.15951,8.0,8.0,8.0,0.00325217,0.041318
+956,31.865167,0.0,0.0,19.0,47.4994,117.0,255.0,74.0,131.0,140.752,155.0,184.0,96.0,117.0,123.241,128.0,158.0,0.0,4.0,14.0004,28.0,57.0,289.0,279.286,2.99929,1.85389,1.1501,8.0,8.0,8.0,0.00270062,0.0398891
+957,31.898533,0.0,0.0,18.0,46.8722,116.0,255.0,73.0,130.0,140.754,155.0,181.0,97.0,116.0,123.113,128.0,159.0,0.0,4.0,14.1645,29.0,59.0,289.0,278.848,4.28511,2.10672,1.32092,8.0,8.0,8.0,0.0028035,0.0451646
+958,31.9319,0.0,0.0,19.0,47.316,117.0,255.0,74.0,131.0,140.75,155.0,186.0,95.0,117.0,123.17,128.0,159.0,0.0,4.0,14.0392,28.0,61.0,289.0,280.026,3.46008,2.07399,1.31516,8.0,8.0,8.0,0.00283493,0.0399463
+959,31.965267,0.0,0.0,19.0,47.311,117.0,255.0,72.0,130.0,140.662,155.0,180.0,90.0,117.0,123.226,128.0,158.0,0.0,4.0,13.9725,28.0,57.0,289.0,278.626,2.84118,1.96907,1.18068,8.0,8.0,8.0,0.00296639,0.0415695
+960,31.998633,0.0,0.0,19.0,47.5059,118.0,255.0,72.0,130.0,140.606,154.0,179.0,93.0,117.0,123.122,128.0,159.0,0.0,4.0,13.9206,28.0,56.0,290.0,279.644,3.63839,2.00046,1.20175,8.0,8.0,8.0,0.00288066,0.0409522
+961,32.032,0.0,0.0,19.0,47.6481,118.0,255.0,72.0,130.0,140.668,155.0,184.0,94.0,117.0,123.163,128.0,159.0,0.0,4.0,14.0836,29.0,61.0,289.0,278.562,3.18283,2.03952,1.30191,8.0,8.0,8.0,0.00271491,0.0418296
+962,32.065367,0.0,0.0,19.0,47.5383,118.0,255.0,73.0,131.0,140.725,155.0,182.0,95.0,117.0,123.18,128.0,158.0,0.0,4.0,14.0255,28.0,58.0,289.0,279.052,3.53656,2.0512,1.32993,8.0,8.0,8.0,0.0028235,0.040455
+963,32.098733,0.0,0.0,19.0,47.578,118.0,255.0,72.0,131.0,140.788,155.0,180.0,95.0,117.0,123.073,128.0,161.0,0.0,4.0,14.1255,29.0,57.0,289.0,279.463,3.26425,1.85137,1.10815,8.0,8.0,8.0,0.00289781,0.040555
+964,32.1321,0.0,0.0,19.0,47.5429,118.0,255.0,74.0,131.0,140.83,155.0,181.0,95.0,117.0,123.149,128.0,160.0,0.0,4.0,14.1076,29.0,56.0,289.0,279.714,2.80271,1.88012,1.11081,8.0,8.0,8.0,0.00291495,0.0407693
+965,32.165467,0.0,0.0,19.0,47.2543,117.0,255.0,73.0,130.0,140.817,155.0,180.0,94.0,116.0,122.998,128.0,162.0,0.0,4.0,14.2647,29.0,56.0,290.0,279.611,3.47083,2.03451,1.29707,8.0,8.0,8.0,0.00281493,0.0440872
+966,32.198833,0.0,0.0,19.0,47.5553,118.0,255.0,72.0,131.0,140.826,155.0,183.0,95.0,117.0,123.118,128.0,161.0,0.0,4.0,14.1055,28.0,58.0,289.0,280.364,2.9039,2.02406,1.31419,8.0,8.0,8.0,0.00267204,0.0399634
+967,32.2322,0.0,0.0,19.0,47.1031,117.0,255.0,73.0,131.0,140.753,155.0,179.0,95.0,117.0,123.079,128.0,160.0,0.0,4.0,14.0883,29.0,56.0,290.0,279.709,3.9901,1.93767,1.17257,8.0,8.0,8.0,0.00275777,0.0420839
+968,32.265567,0.0,0.0,19.0,47.2978,117.0,255.0,74.0,131.0,140.814,155.0,179.0,94.0,117.0,123.101,128.0,160.0,0.0,4.0,14.1067,29.0,55.0,289.0,279.867,3.31946,1.86558,1.07556,8.0,8.0,8.0,0.00276635,0.0409779
+969,32.298933,0.0,0.0,18.0,47.1848,117.0,255.0,74.0,130.0,140.821,155.0,180.0,97.0,116.0,123.06,128.0,160.0,0.0,4.0,14.2436,29.0,56.0,289.0,279.354,2.65015,2.01016,1.24273,8.0,8.0,8.0,0.00284636,0.0462506
+970,32.3323,0.0,0.0,19.0,47.1848,117.0,255.0,72.0,131.0,140.789,155.0,179.0,95.0,117.0,123.043,128.0,159.0,0.0,4.0,14.1133,29.0,57.0,290.0,280.236,3.10351,2.02183,1.2417,8.0,8.0,8.0,0.00297782,0.0419524
+971,32.365667,0.0,0.0,19.0,47.2657,117.0,255.0,74.0,131.0,140.822,155.0,182.0,96.0,117.0,123.048,128.0,159.0,0.0,4.0,14.1636,29.0,56.0,290.0,280.271,2.63511,1.8582,1.07842,8.0,8.0,8.0,0.00250629,0.0419782
+972,32.399033,0.0,0.0,19.0,47.082,117.0,255.0,75.0,131.0,140.704,155.0,179.0,95.0,117.0,123.097,128.0,158.0,0.0,4.0,13.9994,28.0,54.0,290.0,279.974,3.61257,1.89208,1.14982,8.0,8.0,8.0,0.00264632,0.0421496
+973,32.4324,0.0,0.0,19.0,47.1564,117.0,255.0,67.0,130.0,140.806,155.0,181.0,93.0,116.0,123.123,128.0,153.0,0.0,4.0,14.214,29.0,61.0,289.0,278.972,3.48096,2.07078,1.31094,8.0,8.0,8.0,0.00280921,0.0450789
+974,32.465767,0.0,0.0,19.0,47.2206,117.0,255.0,71.0,131.0,140.844,155.0,182.0,96.0,117.0,123.183,128.0,152.0,0.0,4.0,14.1118,29.0,57.0,289.0,279.536,2.89642,2.01875,1.2823,8.0,8.0,8.0,0.00302641,0.0413637
+975,32.499133,0.0,0.0,19.0,47.188,117.0,255.0,75.0,130.0,140.788,155.0,178.0,95.0,117.0,123.057,128.0,154.0,0.0,4.0,14.1407,29.0,55.0,289.0,279.586,3.2296,1.94832,1.15895,8.0,8.0,8.0,0.0027292,0.0426497
+976,32.5325,0.0,0.0,19.0,47.4356,118.0,255.0,73.0,131.0,140.821,155.0,178.0,96.0,117.0,123.153,128.0,154.0,0.0,4.0,14.101,29.0,56.0,289.0,279.954,2.76901,1.95831,1.19638,8.0,8.0,8.0,0.0025463,0.0406007
+977,32.565867,0.0,0.0,19.0,47.2395,117.0,255.0,73.0,130.0,140.722,155.0,180.0,96.0,117.0,123.166,128.0,156.0,0.0,4.0,14.1143,29.0,56.0,289.0,278.568,3.40824,2.07187,1.3297,8.0,8.0,8.0,0.00271205,0.04373
+978,32.599233,0.0,0.0,19.0,47.4146,117.0,255.0,71.0,130.0,140.687,155.0,179.0,96.0,117.0,123.234,128.0,156.0,0.0,4.0,13.9517,28.0,57.0,289.0,279.333,3.66211,2.0823,1.31589,8.0,8.0,8.0,0.00252629,0.0397319
+979,32.6326,0.0,0.0,19.0,47.3607,117.0,255.0,70.0,131.0,140.739,155.0,184.0,95.0,117.0,123.287,128.0,156.0,0.0,4.0,14.0258,28.0,62.0,288.0,278.722,2.60251,1.82628,1.08065,8.0,8.0,8.0,0.00292067,0.0415924
+980,32.665967,0.0,0.0,19.0,47.3261,117.0,255.0,76.0,131.0,140.692,155.0,178.0,94.0,117.0,123.213,128.0,158.0,0.0,4.0,13.972,28.0,55.0,289.0,278.906,3.25082,1.83141,1.09833,8.0,8.0,8.0,0.00287209,0.0417638
+981,32.699333,0.0,0.0,19.0,47.4435,118.0,255.0,71.0,130.0,140.699,155.0,180.0,94.0,117.0,123.154,128.0,158.0,0.0,4.0,14.105,29.0,57.0,289.0,279.114,2.84471,1.96245,1.25597,8.0,8.0,8.0,0.00257487,0.0443616
+982,32.7327,0.0,0.0,19.0,47.3293,117.0,255.0,57.0,130.0,140.599,155.0,178.0,95.0,117.0,123.19,128.0,158.0,0.0,4.0,13.933,28.0,72.0,289.0,279.397,4.27855,2.20329,1.38683,8.0,8.0,8.0,0.0019433,0.0401349
+983,32.766067,0.0,0.0,19.0,47.2001,117.0,255.0,72.0,130.0,140.621,154.0,178.0,94.0,117.0,123.172,128.0,158.0,0.0,4.0,13.9473,28.0,56.0,289.0,279.412,4.28906,2.04027,1.21078,8.0,8.0,8.0,0.00275206,0.0421496
+984,32.799433,0.0,0.0,19.0,47.3345,117.0,255.0,73.0,130.0,140.591,155.0,178.0,94.0,117.0,123.263,128.0,160.0,0.0,4.0,13.8634,28.0,55.0,289.0,279.117,2.5255,1.83161,1.05853,8.0,8.0,8.0,0.00299211,0.0419696
+985,32.8328,0.0,0.0,19.0,47.147,117.0,255.0,73.0,130.0,140.636,155.0,179.0,93.0,117.0,123.238,128.0,158.0,0.0,4.0,14.0264,29.0,57.0,289.0,278.323,3.75756,2.16053,1.36239,8.0,8.0,8.0,0.00265775,0.0452475
+986,32.866167,0.0,0.0,19.0,47.364,117.0,255.0,73.0,130.0,140.626,155.0,178.0,94.0,117.0,123.244,128.0,158.0,0.0,4.0,13.9095,28.0,55.0,289.0,278.606,3.36534,2.18684,1.40869,8.0,8.0,8.0,0.00268061,0.0407522
+987,32.899533,0.0,0.0,19.0,46.998,117.0,255.0,65.0,130.0,140.585,155.0,178.0,94.0,117.0,123.18,128.0,157.0,0.0,4.0,13.9183,28.0,63.0,289.0,279.625,3.49957,1.88929,1.13073,8.0,8.0,8.0,0.00251486,0.0440586
+988,32.9329,0.0,0.0,19.0,47.2801,117.0,255.0,64.0,130.0,140.643,155.0,179.0,93.0,117.0,123.259,128.0,146.0,0.0,4.0,13.9232,28.0,64.0,289.0,278.839,3.24223,1.80099,1.11539,8.0,8.0,8.0,0.00258916,0.0414895
+989,32.966267,0.0,0.0,18.0,47.0697,117.0,255.0,73.0,130.0,140.683,155.0,180.0,93.0,117.0,123.225,128.0,158.0,0.0,4.0,14.0755,29.0,55.0,289.0,278.544,2.90967,2.02138,1.29854,8.0,8.0,8.0,0.0032436,0.0465364
+990,32.999633,0.0,0.0,19.0,47.2067,117.0,255.0,68.0,130.0,140.665,155.0,178.0,93.0,117.0,123.134,128.0,146.0,0.0,4.0,13.9777,28.0,60.0,289.0,279.573,3.79957,2.1364,1.38604,8.0,8.0,8.0,0.00315215,0.0414352
+991,33.033,0.0,0.0,19.0,47.3072,117.0,255.0,61.0,130.0,140.665,155.0,179.0,93.0,117.0,123.199,128.0,146.0,0.0,4.0,13.9865,28.0,67.0,289.0,279.455,2.93137,1.84308,1.09705,8.0,8.0,8.0,0.00263489,0.0412094
+992,33.066367,0.0,0.0,19.0,47.049,117.0,255.0,71.0,130.0,140.652,155.0,179.0,93.0,117.0,123.203,128.0,145.0,0.0,4.0,13.8873,28.0,58.0,289.0,280.069,4.71808,2.04978,1.19648,8.0,8.0,8.0,0.00305784,0.0431813
+993,33.099733,0.0,0.0,18.0,46.8762,117.0,255.0,69.0,130.0,140.567,155.0,182.0,92.0,117.0,123.261,128.0,151.0,0.0,4.0,13.9326,29.0,60.0,289.0,278.394,4.33368,2.17158,1.37098,8.0,8.0,8.0,0.00310928,0.047708
+994,33.1331,0.0,0.0,19.0,47.009,117.0,255.0,74.0,130.0,140.631,155.0,181.0,94.0,117.0,123.295,128.0,152.0,0.0,4.0,13.8653,28.0,56.0,289.0,279.282,2.73115,1.99596,1.26844,8.0,8.0,8.0,0.00279778,0.0438757
+995,33.166467,0.0,0.0,19.0,47.1259,117.0,255.0,74.0,130.0,140.683,155.0,177.0,96.0,117.0,123.171,128.0,152.0,0.0,4.0,13.9928,29.0,56.0,289.0,279.394,3.43038,1.99088,1.21029,8.0,8.0,8.0,0.00266632,0.0433813
+996,33.199833,0.0,0.0,19.0,47.3801,118.0,255.0,75.0,130.0,140.698,155.0,179.0,96.0,117.0,123.256,128.0,154.0,0.0,4.0,13.9479,28.0,56.0,289.0,279.159,3.14047,1.99457,1.18792,8.0,8.0,8.0,0.00260917,0.0412666
+997,33.2332,0.0,0.0,18.0,47.0742,117.0,255.0,74.0,130.0,140.583,155.0,182.0,95.0,117.0,123.254,128.0,156.0,0.0,4.0,13.9734,29.0,57.0,289.0,278.371,3.45121,2.07027,1.30952,8.0,8.0,8.0,0.00252629,0.0468821
+998,33.266567,0.0,0.0,19.0,46.9956,117.0,255.0,74.0,130.0,140.684,155.0,181.0,96.0,117.0,123.288,128.0,156.0,0.0,4.0,13.9374,29.0,57.0,289.0,279.241,3.27516,2.02483,1.31064,8.0,8.0,8.0,0.00255773,0.0437957
+999,33.299933,0.0,0.0,19.0,47.116,117.0,255.0,74.0,130.0,140.665,155.0,179.0,94.0,117.0,123.298,128.0,157.0,0.0,4.0,13.9547,29.0,57.0,288.0,278.621,2.52058,1.84811,1.13033,8.0,8.0,8.0,0.00281207,0.0442387
+1000,33.3333,0.0,0.0,19.0,47.2602,118.0,255.0,75.0,130.0,140.65,155.0,180.0,94.0,117.0,123.209,128.0,158.0,0.0,4.0,13.9282,29.0,55.0,289.0,279.562,3.04574,1.8282,1.0599,8.0,8.0,8.0,0.00269776,0.0427298
+1001,33.366667,0.0,0.0,18.0,47.2824,118.0,255.0,69.0,130.0,140.646,155.0,181.0,94.0,116.0,123.257,128.0,157.0,0.0,4.0,14.0272,29.0,59.0,288.0,278.271,2.7905,1.99918,1.23388,8.0,8.0,8.0,0.0026949,0.0472737
+1002,33.400033,0.0,0.0,19.0,47.2919,118.0,255.0,76.0,131.0,140.768,155.0,180.0,93.0,117.0,123.198,128.0,155.0,0.0,4.0,14.0322,29.0,56.0,289.0,279.448,3.59347,2.07054,1.29279,8.0,8.0,8.0,0.00252915,0.042564
+1003,33.4334,0.0,0.0,19.0,47.2784,118.0,255.0,70.0,130.0,140.702,155.0,182.0,97.0,117.0,123.27,128.0,156.0,0.0,4.0,14.0087,29.0,58.0,288.0,278.564,3.01636,1.91373,1.11875,8.0,8.0,8.0,0.00257773,0.0436043
+1004,33.466767,0.0,0.0,19.0,47.4917,118.0,255.0,75.0,131.0,140.667,155.0,180.0,97.0,117.0,123.296,128.0,157.0,0.0,4.0,13.9471,29.0,55.0,289.0,278.619,2.52456,1.83125,1.07401,8.0,8.0,8.0,0.00286351,0.0431299
+1005,33.500133,0.0,0.0,19.0,47.4222,118.0,255.0,74.0,130.0,140.681,155.0,180.0,96.0,116.0,123.253,128.0,158.0,0.0,4.0,14.0768,29.0,56.0,289.0,278.419,3.1852,2.04011,1.29239,8.0,8.0,8.0,0.00261488,0.0452875
+1006,33.5335,0.0,0.0,19.0,47.5626,118.0,255.0,77.0,131.0,140.777,155.0,177.0,95.0,117.0,123.391,128.0,152.0,0.0,4.0,14.0075,28.0,55.0,288.0,278.862,2.89694,2.07051,1.3411,8.0,8.0,8.0,0.00253201,0.0422897
+1007,33.566867,0.0,0.0,19.0,47.2331,118.0,255.0,75.0,130.0,140.669,155.0,182.0,98.0,117.0,123.331,128.0,153.0,0.0,4.0,13.9678,29.0,56.0,288.0,278.277,3.54548,1.97076,1.15762,8.0,8.0,8.0,0.00250914,0.0430356
+1008,33.600233,0.0,0.0,19.0,47.3929,118.0,255.0,66.0,130.0,140.535,154.0,178.0,96.0,117.0,123.428,128.0,149.0,0.0,4.0,13.7908,28.0,62.0,288.0,277.776,3.8217,2.00884,1.16437,8.0,8.0,8.0,0.00239483,0.0409779
+1009,33.6336,0.0,0.0,19.0,47.3411,118.0,255.0,70.0,130.0,140.524,155.0,179.0,95.0,117.0,123.396,128.0,151.0,0.0,4.0,13.9171,29.0,58.0,288.0,277.249,2.92191,2.02254,1.27012,8.0,8.0,8.0,0.00276349,0.045659
+1010,33.666967,0.0,0.0,19.0,47.441,118.0,255.0,63.0,130.0,140.54,155.0,178.0,95.0,117.0,123.353,128.0,147.0,0.0,4.0,13.8187,28.0,65.0,289.0,278.715,3.6549,2.06855,1.28703,8.0,8.0,8.0,0.00274348,0.0419725
+1011,33.700333,0.0,0.0,19.0,47.4504,118.0,255.0,72.0,130.0,140.59,155.0,178.0,95.0,117.0,123.409,128.0,152.0,0.0,4.0,13.8711,29.0,56.0,288.0,277.747,2.84953,1.85037,1.11904,8.0,8.0,8.0,0.00248914,0.0429555
+1012,33.7337,0.0,0.0,19.0,47.433,118.0,255.0,69.0,130.0,140.608,155.0,178.0,95.0,117.0,123.407,128.0,146.0,0.0,4.0,13.8621,29.0,60.0,288.0,278.411,3.4958,1.89818,1.14862,8.0,8.0,8.0,0.00244627,0.0419582
+1013,33.767067,0.0,0.0,19.0,47.2076,117.0,255.0,72.0,130.0,140.667,155.0,181.0,93.0,117.0,123.372,128.0,146.0,0.0,4.0,14.0198,29.0,57.0,288.0,277.318,3.55821,2.08409,1.31614,8.0,8.0,8.0,0.00255773,0.0451818
+1014,33.800433,0.0,0.0,19.0,47.4086,118.0,255.0,74.0,130.0,140.663,155.0,180.0,94.0,117.0,123.396,128.0,145.0,0.0,4.0,13.9227,29.0,55.0,288.0,278.166,3.01749,2.09398,1.28428,8.0,8.0,8.0,0.00277206,0.0421868
+1015,33.8338,0.0,0.0,19.0,47.2213,118.0,255.0,74.0,130.0,140.552,155.0,181.0,94.0,117.0,123.302,128.0,145.0,0.0,4.0,13.8777,29.0,59.0,288.0,277.915,3.27614,1.9845,1.13144,8.0,8.0,8.0,0.00292067,0.0441815
+1016,33.867167,0.0,0.0,19.0,47.4911,118.0,255.0,75.0,130.0,140.583,155.0,182.0,93.0,117.0,123.361,128.0,146.0,0.0,4.0,13.8688,29.0,55.0,288.0,278.27,2.78936,1.99537,1.15703,8.0,8.0,8.0,0.00265775,0.0425554
+1017,33.900533,0.0,0.0,18.0,47.1359,118.0,255.0,76.0,130.0,140.597,155.0,181.0,93.0,116.0,123.315,128.0,150.0,0.0,4.0,14.0001,29.0,56.0,288.0,277.162,4.22967,2.19465,1.36597,8.0,8.0,8.0,0.00272348,0.0468879
+1018,33.9339,0.0,0.0,19.0,47.1686,117.0,255.0,74.0,130.0,140.601,155.0,179.0,93.0,117.0,123.38,128.0,148.0,0.0,4.0,13.8438,29.0,55.0,288.0,278.069,4.77882,2.28674,1.38584,8.0,8.0,8.0,0.00272062,0.0426783
+1019,33.967267,0.0,0.0,19.0,47.2855,118.0,255.0,74.0,130.0,140.627,155.0,178.0,93.0,117.0,123.368,128.0,146.0,0.0,4.0,13.9184,29.0,55.0,288.0,277.794,2.93847,1.92059,1.14122,8.0,8.0,8.0,0.00301783,0.0439586
+1020,34.000633,0.0,0.0,19.0,47.44,118.0,255.0,73.0,130.0,140.569,155.0,178.0,94.0,117.0,123.317,128.0,147.0,0.0,4.0,13.8624,28.0,56.0,288.0,278.144,3.37153,1.8802,1.09447,8.0,8.0,8.0,0.00279492,0.0421125
+1021,34.034,0.0,0.0,19.0,47.5633,118.0,255.0,74.0,130.0,140.541,155.0,180.0,95.0,117.0,123.377,128.0,145.0,0.0,4.0,13.9469,29.0,56.0,288.0,276.62,2.76228,2.02539,1.27407,8.0,8.0,8.0,0.00253201,0.0436243
+1022,34.067367,0.0,0.0,19.0,47.3795,118.0,255.0,71.0,130.0,140.521,155.0,179.0,96.0,117.0,123.3,128.0,144.0,0.0,4.0,13.8303,29.0,58.0,289.0,278.034,3.27064,2.08815,1.33022,8.0,8.0,8.0,0.00250629,0.0421439
+1023,34.100733,0.0,0.0,19.0,47.4083,118.0,255.0,71.0,130.0,140.573,155.0,182.0,95.0,117.0,123.264,128.0,144.0,0.0,4.0,13.9102,29.0,59.0,289.0,278.254,3.21383,1.97781,1.16041,8.0,8.0,8.0,0.00259774,0.0433242
+1024,34.1341,0.0,0.0,19.0,47.4471,118.0,255.0,75.0,130.0,140.671,155.0,180.0,95.0,117.0,123.3,128.0,144.0,0.0,4.0,13.9854,29.0,56.0,288.0,277.891,2.61198,1.95152,1.08943,8.0,8.0,8.0,0.00274634,0.0432956
+1025,34.167467,0.0,0.0,18.0,47.1884,118.0,255.0,75.0,130.0,140.651,155.0,184.0,93.0,116.0,123.163,128.0,154.0,0.0,4.0,14.1047,29.0,59.0,289.0,278.087,3.16065,2.09131,1.28831,8.0,8.0,8.0,0.00276349,0.0466764
+1026,34.200833,0.0,0.0,19.0,47.2386,118.0,255.0,74.0,130.0,140.77,155.0,181.0,94.0,117.0,123.243,128.0,148.0,0.0,4.0,14.0628,29.0,58.0,288.0,278.616,2.8077,2.07582,1.31544,8.0,8.0,8.0,0.00252629,0.0427555
+1027,34.2342,0.0,0.0,19.0,47.0842,117.0,255.0,74.0,130.0,140.719,155.0,180.0,94.0,116.0,123.195,128.0,148.0,0.0,4.0,14.062,29.0,58.0,289.0,278.701,3.50524,1.9283,1.16238,8.0,8.0,8.0,0.00242627,0.0428012
+1028,34.267567,0.0,0.0,19.0,47.1756,117.0,255.0,75.0,130.0,140.72,155.0,179.0,96.0,117.0,123.202,128.0,147.0,0.0,4.0,14.0424,29.0,55.0,289.0,278.923,4.19292,1.9429,1.17438,8.0,8.0,8.0,0.00252629,0.0432899
+1029,34.300933,0.0,0.0,18.0,47.1411,118.0,255.0,73.0,130.0,140.686,155.0,178.0,94.0,116.0,123.17,128.0,146.0,0.0,4.0,14.1495,29.0,56.0,289.0,277.7,2.78204,2.00218,1.24731,8.0,8.0,8.0,0.00286637,0.0466449
+1030,34.3343,0.0,0.0,19.0,47.0857,117.0,255.0,75.0,130.0,140.74,155.0,178.0,95.0,116.0,123.094,128.0,147.0,0.0,4.0,14.1245,29.0,55.0,289.0,279.292,3.07797,1.99959,1.27984,8.0,8.0,8.0,0.00282922,0.0432556
+1031,34.367667,0.0,0.0,19.0,47.1091,118.0,255.0,75.0,130.0,140.708,155.0,180.0,95.0,116.0,123.103,128.0,147.0,0.0,4.0,14.106,29.0,59.0,289.0,279.1,2.43834,1.84364,1.09656,8.0,8.0,8.0,0.00258916,0.044553
+1032,34.401033,0.0,0.0,19.0,46.8956,117.0,255.0,69.0,130.0,140.742,155.0,179.0,95.0,116.0,123.003,128.0,147.0,0.0,4.0,14.1402,29.0,59.0,290.0,279.708,3.27904,1.91219,1.13356,8.0,8.0,8.0,0.00229767,0.0433328
+1033,34.4344,0.0,0.0,18.0,46.8358,117.0,255.0,69.0,130.0,140.628,155.0,178.0,93.0,116.0,123.029,128.0,149.0,0.0,4.0,14.1588,29.0,59.0,289.0,278.186,3.27261,2.08236,1.31655,8.0,8.0,8.0,0.0025463,0.0474766
+1034,34.467767,0.0,0.0,19.0,47.1004,118.0,255.0,73.0,130.0,140.712,155.0,178.0,93.0,116.0,123.09,128.0,150.0,0.0,4.0,14.1112,29.0,56.0,289.0,279.501,2.76209,1.96374,1.24909,8.0,8.0,8.0,0.00279778,0.0433213
+1035,34.501133,0.0,0.0,19.0,47.006,117.0,255.0,73.0,130.0,140.635,155.0,180.0,94.0,116.0,122.986,128.0,150.0,0.0,4.0,14.095,29.0,56.0,290.0,279.616,3.20618,1.94684,1.1548,8.0,8.0,8.0,0.00294353,0.0447645
+1036,34.5345,0.0,0.0,19.0,47.0076,117.0,255.0,73.0,130.0,140.652,155.0,178.0,94.0,116.0,123.072,128.0,150.0,0.0,4.0,14.0561,29.0,56.0,290.0,279.352,2.8331,1.94955,1.14602,8.0,8.0,8.0,0.00245199,0.04371
+1037,34.567867,0.0,0.0,18.0,46.7524,117.0,255.0,69.0,130.0,140.708,155.0,181.0,94.0,116.0,123.008,128.0,153.0,0.0,4.0,14.2496,29.0,59.0,290.0,278.867,3.61726,2.08094,1.31892,8.0,8.0,8.0,0.00252058,0.0487769
+1038,34.601233,0.0,0.0,19.0,47.0067,117.0,255.0,74.0,131.0,140.767,155.0,179.0,94.0,116.0,123.048,128.0,156.0,0.0,4.0,14.178,29.0,58.0,290.0,279.426,3.31575,2.08458,1.32397,8.0,8.0,8.0,0.00231767,0.042324
+1039,34.6346,0.0,0.0,19.0,46.9345,117.0,255.0,72.0,130.0,140.695,155.0,180.0,91.0,116.0,123.069,128.0,156.0,0.0,4.0,14.1562,29.0,59.0,289.0,279.09,2.60397,1.933,1.16304,8.0,8.0,8.0,0.00261774,0.0436043
+1040,34.667967,0.0,0.0,19.0,47.0263,117.0,255.0,70.0,130.0,140.839,155.0,180.0,93.0,116.0,123.036,128.0,156.0,0.0,4.0,14.2737,29.0,59.0,289.0,278.705,3.25561,1.95594,1.18114,8.0,8.0,8.0,0.00256344,0.0420182
+1041,34.701333,0.0,0.0,18.0,46.9337,118.0,255.0,74.0,130.0,140.787,155.0,181.0,94.0,116.0,123.074,128.0,157.0,0.0,4.0,14.3205,29.0,59.0,289.0,277.765,2.84676,2.05104,1.32542,8.0,8.0,8.0,0.00253201,0.0467678
+1042,34.7347,0.0,0.0,19.0,47.2471,118.0,255.0,68.0,130.0,140.675,155.0,180.0,93.0,116.0,123.072,128.0,151.0,0.0,4.0,14.1293,29.0,61.0,289.0,279.042,3.81345,2.13341,1.3896,8.0,8.0,8.0,0.00248342,0.0407807
+1043,34.768067,0.0,0.0,19.0,47.1286,118.0,255.0,71.0,130.0,140.653,155.0,182.0,91.0,116.0,123.054,128.0,154.0,0.0,4.0,14.1225,29.0,58.0,290.0,279.42,3.52952,1.93924,1.17801,8.0,8.0,8.0,0.0025463,0.0419382
+1044,34.801433,0.0,0.0,19.0,47.2306,118.0,255.0,69.0,130.0,140.718,155.0,179.0,92.0,116.0,123.078,128.0,155.0,0.0,4.0,14.1466,29.0,59.0,289.0,279.27,2.59988,1.86851,1.1217,8.0,8.0,8.0,0.00255773,0.0423668
+1045,34.8348,0.0,0.0,19.0,47.1806,118.0,255.0,73.0,130.0,140.648,155.0,180.0,93.0,116.0,123.006,128.0,158.0,0.0,4.0,14.2257,29.0,56.0,290.0,278.626,3.28544,2.07921,1.33706,8.0,8.0,8.0,0.00276635,0.0442301
+1046,34.868167,0.0,0.0,19.0,47.169,118.0,255.0,71.0,130.0,140.671,155.0,183.0,93.0,116.0,123.151,128.0,157.0,0.0,4.0,14.0966,29.0,58.0,289.0,278.752,2.78688,2.04648,1.31667,8.0,8.0,8.0,0.00222908,0.0421754
+1047,34.901533,0.0,0.0,19.0,46.9308,117.0,255.0,59.0,130.0,140.528,155.0,180.0,94.0,116.0,123.035,128.0,159.0,0.0,4.0,14.0528,29.0,70.0,290.0,278.944,3.2435,1.96135,1.19434,8.0,8.0,8.0,0.00159465,0.0424926
+1048,34.9349,0.0,0.0,19.0,46.9814,117.0,255.0,36.0,130.0,140.551,155.0,183.0,95.0,116.0,123.107,128.0,155.0,0.0,4.0,14.0347,29.0,93.0,290.0,278.765,3.00171,1.93176,1.14043,8.0,8.0,8.0,0.00161751,0.0422668
+1049,34.968267,0.0,0.0,18.0,46.8945,117.0,255.0,73.0,130.0,140.555,155.0,180.0,94.0,116.0,123.039,128.0,157.0,0.0,4.0,14.1504,29.0,57.0,290.0,278.086,3.00316,2.16211,1.40636,8.0,8.0,8.0,0.00246914,0.0466192
+1050,35.001633,0.0,0.0,19.0,46.9332,117.0,255.0,69.0,130.0,140.521,155.0,178.0,94.0,116.0,123.052,128.0,156.0,0.0,4.0,13.9932,29.0,59.0,290.0,279.632,3.42473,2.07428,1.33441,8.0,8.0,8.0,0.00239483,0.0429898
+1051,35.035,0.0,0.0,19.0,47.1079,118.0,255.0,71.0,130.0,140.476,155.0,178.0,94.0,116.0,123.069,128.0,154.0,0.0,4.0,13.9886,29.0,57.0,290.0,278.901,2.59234,1.85234,1.13597,8.0,8.0,8.0,0.00244627,0.0422754
+1052,35.068367,0.0,0.0,19.0,46.91,117.0,255.0,71.0,130.0,140.528,155.0,180.0,94.0,116.0,123.025,128.0,154.0,0.0,4.0,14.0075,29.0,57.0,290.0,279.662,2.88383,1.87739,1.15629,8.0,8.0,8.0,0.00231196,0.0415838
+1053,35.101733,0.0,0.0,19.0,46.9854,117.0,255.0,71.0,130.0,140.444,155.0,180.0,92.0,116.0,123.084,128.0,153.0,0.0,4.0,14.003,29.0,59.0,290.0,278.638,3.25755,2.02738,1.32936,8.0,8.0,8.0,0.00230624,0.045216
+1054,35.1351,0.0,0.0,19.0,46.9998,117.0,255.0,70.0,130.0,140.497,155.0,180.0,94.0,116.0,123.11,128.0,152.0,0.0,4.0,13.9685,29.0,59.0,289.0,278.731,2.9678,2.09798,1.28101,8.0,8.0,8.0,0.00260059,0.0426869
+1055,35.168467,0.0,0.0,19.0,46.8958,117.0,255.0,75.0,130.0,140.421,155.0,181.0,95.0,116.0,123.013,128.0,155.0,0.0,4.0,13.9574,29.0,56.0,290.0,279.304,3.259,1.94726,1.16006,8.0,8.0,8.0,0.0026406,0.0431499
+1056,35.201833,0.0,0.0,19.0,46.9904,117.0,255.0,73.0,130.0,140.475,155.0,180.0,93.0,116.0,123.104,128.0,153.0,0.0,4.0,13.9272,29.0,56.0,290.0,279.281,2.58835,1.83992,1.1122,8.0,8.0,8.0,0.0023634,0.0422268
+1057,35.2352,0.0,0.0,18.0,46.6797,117.0,255.0,72.0,130.0,140.425,155.0,179.0,90.0,116.0,123.012,128.0,155.0,0.0,4.0,14.0063,29.0,56.0,290.0,278.535,4.21624,2.10018,1.3354,8.0,8.0,8.0,0.00244342,0.0463049
+1058,35.268567,0.0,0.0,19.0,46.7741,117.0,255.0,73.0,130.0,140.581,155.0,180.0,91.0,116.0,123.125,128.0,158.0,0.0,4.0,14.003,29.0,56.0,289.0,279.618,3.67036,2.10257,1.32194,8.0,8.0,8.0,0.00230053,0.0422011
+1059,35.301933,0.0,0.0,19.0,46.8111,117.0,255.0,73.0,130.0,140.484,155.0,182.0,92.0,116.0,123.116,128.0,158.0,0.0,4.0,13.936,29.0,56.0,290.0,279.284,2.25936,1.82714,1.07539,8.0,8.0,8.0,0.00249486,0.0437243
+1060,35.3353,0.0,0.0,19.0,46.7941,117.0,255.0,72.0,130.0,140.469,155.0,178.0,93.0,116.0,123.068,128.0,156.0,0.0,4.0,13.9483,29.0,57.0,290.0,279.778,3.0388,1.95374,1.14539,8.0,8.0,8.0,0.0028035,0.0430384
+1061,35.368667,0.0,0.0,18.0,46.7497,117.0,255.0,74.0,130.0,140.54,155.0,179.0,93.0,116.0,123.127,128.0,156.0,0.0,4.0,14.1025,29.0,56.0,289.0,278.188,2.88221,2.02378,1.24686,8.0,8.0,8.0,0.00242341,0.0463106
+1062,35.402033,0.0,0.0,19.0,47.0271,117.0,255.0,72.0,130.0,140.438,155.0,180.0,95.0,116.0,123.152,128.0,158.0,0.0,4.0,13.8788,29.0,57.0,290.0,279.39,3.28781,2.04641,1.27701,8.0,8.0,8.0,0.00226052,0.0409665
+1063,35.4354,0.0,0.0,19.0,47.0067,117.0,255.0,71.0,130.0,140.377,155.0,178.0,95.0,116.0,123.2,128.0,158.0,0.0,4.0,13.853,29.0,58.0,289.0,278.631,2.69025,1.91264,1.09911,8.0,8.0,8.0,0.00244627,0.0410065
+1064,35.468767,0.0,0.0,19.0,47.0144,117.0,255.0,73.0,130.0,140.496,155.0,184.0,95.0,116.0,123.209,128.0,155.0,0.0,4.0,13.9174,29.0,57.0,289.0,278.895,2.6788,1.88962,1.07649,8.0,8.0,8.0,0.00244913,0.0414438
+1065,35.502133,0.0,0.0,19.0,46.9156,117.0,255.0,74.0,130.0,140.47,155.0,183.0,94.0,116.0,123.124,128.0,158.0,0.0,4.0,14.0189,29.0,57.0,289.0,278.274,3.17593,2.07665,1.2993,8.0,8.0,8.0,0.00248914,0.0446902
+1066,35.5355,0.0,0.0,19.0,47.0446,117.0,255.0,70.0,130.0,140.554,155.0,178.0,94.0,116.0,123.176,128.0,159.0,0.0,4.0,13.9709,29.0,59.0,289.0,279.209,2.63985,1.9785,1.30351,8.0,8.0,8.0,0.00217478,0.0410694
+1067,35.568867,0.0,0.0,19.0,46.8378,117.0,255.0,74.0,130.0,140.465,155.0,179.0,93.0,116.0,123.117,128.0,154.0,0.0,4.0,13.9489,29.0,56.0,290.0,279.135,3.18078,1.84979,1.15797,8.0,8.0,8.0,0.00234625,0.0410608
+1068,35.602233,0.0,0.0,19.0,46.8432,117.0,255.0,71.0,130.0,140.487,155.0,180.0,94.0,116.0,123.191,128.0,156.0,0.0,4.0,13.9114,29.0,58.0,289.0,279.1,3.03932,1.88368,1.11858,8.0,8.0,8.0,0.00231767,0.0408436
+1069,35.6356,0.0,0.0,18.0,46.5601,117.0,255.0,74.0,130.0,140.419,155.0,185.0,94.0,116.0,123.124,128.0,155.0,0.0,4.0,13.983,29.0,61.0,289.0,278.424,2.6299,2.01339,1.29175,8.0,8.0,8.0,0.00257487,0.0462934
+1070,35.668967,0.0,0.0,19.0,46.782,117.0,255.0,74.0,130.0,140.412,155.0,180.0,94.0,116.0,123.128,128.0,156.0,0.0,4.0,13.8843,29.0,56.0,290.0,279.038,3.03747,2.06878,1.3044,8.0,8.0,8.0,0.00271205,0.0417667
+1071,35.702333,0.0,0.0,19.0,46.7799,117.0,255.0,73.0,130.0,140.382,155.0,181.0,94.0,116.0,123.132,128.0,155.0,0.0,4.0,13.8845,29.0,58.0,290.0,278.6,2.49152,1.80505,1.10744,8.0,8.0,8.0,0.00239198,0.0429298
+1072,35.7357,0.0,0.0,19.0,46.5956,116.0,255.0,73.0,130.0,140.458,155.0,179.0,92.0,116.0,123.151,128.0,155.0,0.0,4.0,13.9102,29.0,56.0,290.0,279.469,2.90097,1.87636,1.12522,8.0,8.0,8.0,0.00243484,0.0416038
+1073,35.769067,0.0,0.0,19.0,46.6481,116.0,255.0,74.0,130.0,140.507,155.0,179.0,94.0,116.0,123.09,128.0,156.0,0.0,4.0,14.0584,29.0,56.0,289.0,278.621,3.30743,2.04032,1.31707,8.0,8.0,8.0,0.00254344,0.0447474
+1074,35.802433,0.0,0.0,19.0,46.7333,117.0,255.0,72.0,130.0,140.601,155.0,181.0,92.0,116.0,123.138,128.0,154.0,0.0,4.0,14.0288,29.0,57.0,289.0,279.52,2.8924,2.02321,1.26455,8.0,8.0,8.0,0.0022548,0.0422182
+1075,35.8358,0.0,0.0,19.0,46.6979,117.0,255.0,74.0,130.0,140.516,155.0,183.0,92.0,116.0,123.028,128.0,156.0,0.0,4.0,14.0368,29.0,57.0,290.0,279.641,3.18733,1.93749,1.16321,8.0,8.0,8.0,0.00244913,0.0427069
+1076,35.869167,0.0,0.0,19.0,46.8547,117.0,255.0,74.0,130.0,140.602,155.0,179.0,92.0,116.0,123.136,128.0,153.0,0.0,4.0,14.042,29.0,57.0,289.0,279.279,2.68816,1.89806,1.17298,8.0,8.0,8.0,0.00237483,0.0414552
+1077,35.902533,0.0,0.0,18.0,46.4873,117.0,255.0,76.0,130.0,140.43,155.0,180.0,93.0,116.0,123.107,128.0,156.0,0.0,4.0,14.0069,29.0,56.0,290.0,278.265,3.27473,2.06768,1.3092,8.0,8.0,8.0,0.00263489,0.0464592
+1078,35.9359,0.0,0.0,19.0,46.5399,116.0,255.0,76.0,130.0,140.526,155.0,184.0,92.0,116.0,123.224,128.0,155.0,0.0,4.0,13.9481,29.0,59.0,289.0,279.142,3.45812,2.08345,1.30778,8.0,8.0,8.0,0.0025463,0.0430241
+1079,35.969267,0.0,0.0,19.0,46.5134,116.0,255.0,75.0,130.0,140.581,155.0,180.0,91.0,116.0,123.07,128.0,154.0,0.0,4.0,14.0847,29.0,59.0,290.0,279.446,2.3712,1.84835,1.11958,8.0,8.0,8.0,0.00259202,0.0437986
+1080,36.002633,0.0,0.0,19.0,46.658,117.0,255.0,75.0,130.0,140.628,155.0,180.0,94.0,116.0,123.066,128.0,154.0,0.0,4.0,14.0606,29.0,56.0,290.0,280.206,2.67316,1.88641,1.16425,8.0,8.0,8.0,0.00262631,0.0425069
+1081,36.036,0.0,0.0,18.0,46.6889,117.0,255.0,75.0,130.0,140.649,155.0,184.0,93.0,116.0,123.089,128.0,152.0,0.0,4.0,14.1718,29.0,58.0,289.0,278.538,2.61295,1.99132,1.28324,8.0,8.0,8.0,0.002512,0.0457362
+1082,36.069367,0.0,0.0,19.0,46.4365,116.0,255.0,75.0,130.0,140.575,155.0,180.0,92.0,116.0,123.149,128.0,156.0,0.0,4.0,13.9749,29.0,57.0,289.0,279.692,3.41492,2.06213,1.37228,8.0,8.0,8.0,0.00252629,0.0434699
+1083,36.102733,0.0,0.0,19.0,46.4703,116.0,255.0,72.0,130.0,140.595,155.0,178.0,94.0,116.0,123.145,128.0,151.0,0.0,4.0,14.0435,29.0,57.0,289.0,278.495,3.2374,1.93722,1.17104,8.0,8.0,8.0,0.00258345,0.0437586
+1084,36.1361,0.0,0.0,19.0,46.5098,117.0,255.0,74.0,130.0,140.676,155.0,180.0,93.0,116.0,123.141,128.0,157.0,0.0,4.0,14.0838,29.0,56.0,289.0,279.499,2.38992,1.87285,1.0962,8.0,8.0,8.0,0.00239198,0.0436843
+1085,36.169467,0.0,0.0,18.0,46.4433,117.0,255.0,74.0,130.0,140.489,155.0,182.0,93.0,116.0,123.07,128.0,152.0,0.0,4.0,14.0902,29.0,57.0,290.0,278.555,3.30205,2.17287,1.3889,8.0,8.0,8.0,0.00251486,0.0476395
+1086,36.202833,0.0,0.0,19.0,46.623,117.0,255.0,75.0,130.0,140.69,155.0,182.0,93.0,116.0,123.178,128.0,153.0,0.0,4.0,14.0772,29.0,56.0,289.0,278.912,2.99962,2.1666,1.37781,8.0,8.0,8.0,0.00252343,0.0421325
+1087,36.2362,0.0,0.0,18.0,46.2926,116.0,255.0,74.0,130.0,140.515,155.0,179.0,92.0,116.0,123.064,128.0,153.0,0.0,4.0,13.9879,29.0,57.0,290.0,279.482,3.10741,1.94947,1.16892,8.0,8.0,8.0,0.00242627,0.0439329
+1088,36.269567,0.0,0.0,19.0,46.5416,117.0,255.0,74.0,130.0,140.572,155.0,179.0,93.0,116.0,123.142,128.0,153.0,0.0,4.0,13.995,29.0,57.0,289.0,278.934,2.74197,1.93259,1.13739,8.0,8.0,8.0,0.00240341,0.0431899
+1089,36.302933,0.0,0.0,18.0,46.5451,117.0,255.0,74.0,130.0,140.648,155.0,182.0,93.0,116.0,123.115,128.0,156.0,0.0,4.0,14.1514,30.0,57.0,289.0,278.446,2.57999,2.01328,1.26038,8.0,8.0,8.0,0.00252629,0.0471165
+1090,36.3363,0.0,0.0,19.0,46.4496,116.0,255.0,74.0,130.0,140.653,155.0,179.0,92.0,116.0,123.053,128.0,155.0,0.0,4.0,14.0813,29.0,57.0,290.0,279.41,2.9005,2.05727,1.31567,8.0,8.0,8.0,0.00237197,0.0434271
+1091,36.369667,0.0,0.0,18.0,46.3216,116.0,255.0,71.0,130.0,140.6,155.0,180.0,93.0,116.0,123.103,128.0,156.0,0.0,4.0,14.064,29.0,58.0,289.0,278.8,2.43622,1.8488,1.10941,8.0,8.0,8.0,0.00245485,0.0454532
+1092,36.403033,0.0,0.0,19.0,46.425,116.0,255.0,75.0,130.0,140.585,155.0,177.0,93.0,116.0,123.089,128.0,150.0,0.0,4.0,13.9887,29.0,57.0,290.0,280.185,3.2094,1.9349,1.17283,8.0,8.0,8.0,0.00246628,0.0428869
+1093,36.4364,0.0,0.0,18.0,46.1308,116.0,255.0,73.0,130.0,140.62,155.0,178.0,93.0,116.0,123.144,128.0,144.0,0.0,4.0,14.0793,29.0,59.0,289.0,278.404,4.15467,2.13173,1.35885,8.0,8.0,8.0,0.00261488,0.0477338
+1094,36.469767,0.0,0.0,19.0,46.4119,116.0,255.0,73.0,130.0,140.566,155.0,181.0,90.0,116.0,123.162,128.0,156.0,0.0,4.0,13.9709,29.0,58.0,289.0,279.351,2.65533,1.97669,1.25759,8.0,8.0,8.0,0.0026949,0.0441272
+1095,36.503133,0.0,0.0,19.0,46.4847,116.0,255.0,72.0,130.0,140.54,155.0,181.0,92.0,116.0,123.107,128.0,153.0,0.0,4.0,13.984,29.0,59.0,289.0,279.085,2.64398,1.93155,1.13915,8.0,8.0,8.0,0.00260059,0.0430984
+1096,36.5365,0.0,0.0,19.0,46.4789,116.0,255.0,75.0,130.0,140.534,155.0,181.0,91.0,116.0,123.246,128.0,156.0,0.0,4.0,13.9183,29.0,58.0,289.0,278.755,2.28706,1.85702,1.08784,8.0,8.0,8.0,0.00238626,0.0440586
+1097,36.569867,0.0,0.0,18.0,46.4376,117.0,255.0,75.0,130.0,140.435,155.0,180.0,90.0,116.0,123.157,128.0,154.0,0.0,3.0,13.9427,29.0,58.0,289.0,277.581,2.70504,2.01302,1.227,8.0,8.0,8.0,0.00251486,0.0483968
+1098,36.603233,0.0,0.0,19.0,46.6033,117.0,255.0,74.0,130.0,140.526,155.0,179.0,93.0,116.0,123.149,128.0,155.0,0.0,4.0,13.9492,29.0,56.0,289.0,278.678,2.66244,2.05513,1.25295,8.0,8.0,8.0,0.00238912,0.044233
+1099,36.6366,0.0,0.0,18.0,46.3883,116.0,255.0,74.0,130.0,140.531,155.0,180.0,93.0,116.0,123.121,128.0,157.0,0.0,4.0,13.9831,29.0,59.0,289.0,278.27,2.38687,1.95997,1.17907,8.0,8.0,8.0,0.00281493,0.0456704
+1100,36.669967,0.0,0.0,19.0,46.556,116.0,255.0,70.0,130.0,140.564,155.0,180.0,91.0,116.0,123.048,128.0,153.0,0.0,4.0,13.9976,29.0,59.0,290.0,279.678,2.71632,1.95213,1.17471,8.0,8.0,8.0,0.00252915,0.043187
+1101,36.703333,0.0,0.0,18.0,46.3825,116.0,255.0,73.0,130.0,140.6,155.0,181.0,91.0,116.0,123.142,128.0,153.0,0.0,4.0,14.097,30.0,57.0,289.0,277.762,2.51425,1.97615,1.25501,8.0,8.0,8.0,0.00247771,0.0481396
+1102,36.7367,0.0,0.0,19.0,46.4875,116.0,255.0,73.0,130.0,140.557,155.0,179.0,93.0,116.0,123.078,128.0,153.0,0.0,4.0,13.9717,29.0,56.0,290.0,279.16,3.23605,2.01425,1.28034,8.0,8.0,8.0,0.00244627,0.0431813
+1103,36.770067,0.0,0.0,19.0,46.6318,116.0,255.0,73.0,130.0,140.499,155.0,180.0,92.0,116.0,123.177,128.0,154.0,0.0,4.0,13.9286,29.0,58.0,289.0,278.516,2.86401,1.92621,1.17052,8.0,8.0,8.0,0.00232339,0.0429784
+1104,36.803433,0.0,0.0,19.0,46.6761,117.0,255.0,75.0,130.0,140.54,155.0,179.0,93.0,116.0,123.274,128.0,154.0,0.0,4.0,13.9318,29.0,55.0,289.0,277.943,2.37977,1.8479,1.10367,8.0,8.0,8.0,0.00246342,0.0427383
+1105,36.8368,0.0,0.0,19.0,46.6488,117.0,255.0,75.0,130.0,140.514,155.0,181.0,92.0,116.0,123.147,128.0,156.0,0.0,4.0,14.0283,29.0,58.0,289.0,277.884,2.89937,2.05828,1.2865,8.0,8.0,8.0,0.00242055,0.0454475
+1106,36.870167,0.0,0.0,19.0,46.7234,117.0,255.0,70.0,130.0,140.663,155.0,180.0,96.0,116.0,123.164,128.0,160.0,0.0,4.0,14.0679,29.0,58.0,289.0,278.593,2.37579,1.9612,1.22052,8.0,8.0,8.0,0.00226909,0.0424754
+1107,36.903533,0.0,0.0,19.0,46.5021,117.0,255.0,74.0,130.0,140.709,155.0,180.0,94.0,116.0,123.038,128.0,153.0,0.0,4.0,14.1378,30.0,57.0,290.0,279.183,2.48169,1.84925,1.12582,8.0,8.0,8.0,0.00232053,0.0445273
+1108,36.9369,0.0,0.0,19.0,46.4105,116.0,255.0,70.0,130.0,140.723,155.0,182.0,91.0,116.0,123.067,128.0,153.0,0.0,4.0,14.1553,29.0,59.0,289.0,279.377,2.73622,1.87252,1.13123,8.0,8.0,8.0,0.00242913,0.0435042
+1109,36.970267,0.0,0.0,18.0,46.2631,116.0,255.0,74.0,130.0,140.714,156.0,183.0,94.0,116.0,123.069,128.0,156.0,0.0,4.0,14.1982,30.0,58.0,289.0,278.419,2.68285,1.94234,1.25018,8.0,8.0,8.0,0.00247771,0.0479938
+1110,37.003633,0.0,0.0,19.0,46.3198,116.0,255.0,71.0,130.0,140.677,155.0,178.0,94.0,116.0,123.116,128.0,158.0,0.0,4.0,14.0969,29.0,57.0,289.0,278.354,3.0807,2.10425,1.30758,8.0,8.0,8.0,0.00239198,0.0440186
+1111,37.037,0.0,0.0,19.0,46.3865,116.0,255.0,73.0,130.0,140.61,155.0,181.0,94.0,116.0,123.151,128.0,155.0,0.0,4.0,14.035,29.0,58.0,289.0,278.731,2.37792,1.82794,1.0983,8.0,8.0,8.0,0.00226052,0.0440529
+1112,37.070367,0.0,0.0,19.0,46.318,116.0,255.0,70.0,130.0,140.635,155.0,179.0,94.0,116.0,123.159,128.0,155.0,0.0,4.0,14.0248,29.0,58.0,289.0,278.973,2.50646,1.81455,1.08957,8.0,8.0,8.0,0.00232625,0.0438729
+1113,37.103733,0.0,0.0,18.0,46.1142,116.0,255.0,72.0,130.0,140.652,155.0,181.0,95.0,116.0,123.153,128.0,158.0,0.0,4.0,14.1281,29.0,57.0,289.0,278.508,2.68836,2.0064,1.22693,8.0,8.0,8.0,0.00232625,0.0495399
+1114,37.1371,0.0,0.0,18.0,46.2065,116.0,255.0,75.0,130.0,140.75,156.0,183.0,94.0,116.0,123.151,128.0,157.0,0.0,4.0,14.1255,30.0,58.0,289.0,279.344,2.57564,1.988,1.17442,8.0,8.0,8.0,0.00257773,0.0454761
+1115,37.170467,0.0,0.0,18.0,46.1296,116.0,255.0,74.0,130.0,140.763,155.0,181.0,94.0,116.0,122.97,128.0,157.0,0.0,4.0,14.2171,30.0,57.0,290.0,279.877,2.91141,1.9504,1.14289,8.0,8.0,8.0,0.00240626,0.0468964
+1116,37.203833,0.0,0.0,18.0,46.3599,116.0,255.0,75.0,130.0,140.816,156.0,179.0,94.0,116.0,123.048,128.0,158.0,0.0,4.0,14.219,30.0,57.0,289.0,279.551,2.4295,1.8997,1.10316,8.0,8.0,8.0,0.00224623,0.0443101
+1117,37.2372,0.0,0.0,18.0,46.0687,116.0,255.0,71.0,130.0,140.693,155.0,181.0,93.0,116.0,123.005,128.0,157.0,0.0,4.0,14.1893,30.0,58.0,290.0,279.108,2.95492,1.99026,1.20181,8.0,8.0,8.0,0.00231481,0.0503544
+1118,37.270567,0.0,0.0,18.0,45.9674,116.0,255.0,71.0,130.0,140.699,155.0,181.0,95.0,116.0,122.955,128.0,151.0,0.0,4.0,14.1348,29.0,58.0,290.0,279.824,3.37409,2.0222,1.2507,8.0,8.0,8.0,0.00241484,0.0468107
+1119,37.303933,0.0,0.0,18.0,45.9919,116.0,255.0,71.0,130.0,140.735,156.0,182.0,94.0,116.0,123.026,128.0,148.0,0.0,4.0,14.1698,30.0,58.0,290.0,279.376,2.57307,1.86527,1.14989,8.0,8.0,8.0,0.00237769,0.0488397
+1120,37.3373,0.0,0.0,18.0,46.0144,116.0,255.0,73.0,130.0,140.813,155.0,179.0,95.0,116.0,122.953,128.0,147.0,0.0,4.0,14.2159,30.0,57.0,290.0,280.332,2.85015,1.84021,1.07909,8.0,8.0,8.0,0.00254915,0.047468
+1121,37.370667,0.0,0.0,18.0,46.0405,116.0,255.0,74.0,130.0,140.744,155.0,181.0,94.0,116.0,123.024,128.0,149.0,0.0,4.0,14.1836,29.0,58.0,289.0,279.241,2.61285,1.84223,1.11843,8.0,8.0,8.0,0.00240626,0.0505916
+1122,37.404033,0.0,0.0,18.0,45.9438,116.0,255.0,74.0,130.0,140.757,155.0,184.0,92.0,116.0,122.967,128.0,150.0,0.0,4.0,14.1615,29.0,58.0,290.0,279.767,2.52904,1.85023,1.09075,8.0,8.0,8.0,0.0024177,0.0477766
+1123,37.4374,0.0,0.0,18.0,46.0339,116.0,255.0,73.0,130.0,140.814,155.0,183.0,93.0,116.0,123.03,128.0,149.0,0.0,4.0,14.2413,30.0,57.0,289.0,278.94,2.56097,1.84139,1.11237,8.0,8.0,8.0,0.00234053,0.0475223
+1124,37.470767,0.0,0.0,18.0,45.7085,115.0,255.0,73.0,130.0,140.778,156.0,183.0,94.0,116.0,123.072,128.0,149.0,0.0,4.0,14.1822,30.0,58.0,289.0,279.53,2.71822,1.84536,1.08948,8.0,8.0,8.0,0.00240912,0.049217
+1125,37.504133,0.0,0.0,14.0,30.5099,66.0,255.0,74.0,129.0,134.05,141.0,157.0,110.0,122.0,125.552,128.0,144.0,0.0,2.0,6.85544,14.0,55.0,288.0,269.894,16.7552,7.19559,2.98006,8.0,8.0,8.0,0.00595565,0.220105
+1126,37.5375,0.0,0.0,14.0,16.3713,19.0,156.0,75.0,126.0,127.772,130.0,139.0,115.0,127.0,128.072,129.0,137.0,0.0,0.0,1.58615,3.0,54.0,180.0,159.189,15.8553,6.6939,2.94704,8.0,8.0,8.0,0.00133745,0.296996
+1127,37.570867,0.0,0.0,14.0,16.6226,19.0,154.0,71.0,126.0,127.679,130.0,139.0,115.0,127.0,128.067,129.0,151.0,0.0,0.0,1.65473,3.0,57.0,180.0,155.472,2.03825,1.87388,1.24303,8.0,8.0,8.0,0.00119456,0.244173
+1128,37.604233,0.0,0.0,14.0,16.7704,19.0,157.0,71.0,126.0,127.634,130.0,138.0,112.0,127.0,128.052,129.0,158.0,0.0,0.0,1.61879,3.0,57.0,153.0,151.899,1.97415,1.88024,1.22226,8.0,8.0,8.0,0.00115455,0.221288
+1129,37.6376,0.0,0.0,14.0,16.7636,19.0,152.0,72.0,126.0,127.678,130.0,139.0,115.0,127.0,128.071,129.0,159.0,0.0,0.0,1.58882,3.0,56.0,180.0,154.382,1.94885,1.84004,1.18976,8.0,8.0,8.0,0.00110311,0.225037
+1130,37.670967,0.0,0.0,14.0,16.7331,19.0,182.0,70.0,126.0,127.685,130.0,140.0,114.0,127.0,128.076,129.0,155.0,0.0,0.0,1.59538,3.0,58.0,180.0,156.108,2.04366,1.83306,1.19984,8.0,8.0,8.0,0.00114312,0.23211
+1131,37.704333,0.0,0.0,14.0,16.8016,19.0,255.0,69.0,126.0,127.648,130.0,139.0,113.0,127.0,128.05,129.0,154.0,0.0,0.0,1.59275,3.0,59.0,180.0,153.279,1.9767,1.8225,1.19034,8.0,8.0,8.0,0.00131173,0.225071
+1132,37.7377,0.0,0.0,14.0,16.8114,20.0,155.0,67.0,126.0,127.743,130.0,139.0,114.0,127.0,128.077,129.0,137.0,0.0,0.0,1.58326,3.0,62.0,180.0,159.237,2.04966,1.83209,1.2165,8.0,8.0,8.0,0.00125743,0.223588
+1133,37.771067,0.0,0.0,14.0,16.8909,20.0,154.0,70.0,126.0,127.778,130.0,139.0,115.0,127.0,128.095,129.0,139.0,0.0,0.0,1.59755,3.0,58.0,180.0,160.214,2.04048,1.83361,1.20508,8.0,8.0,8.0,0.00118884,0.209051
+1134,37.804433,0.0,0.0,14.0,16.7689,19.0,156.0,68.0,126.0,127.709,130.0,140.0,114.0,127.0,128.101,129.0,150.0,0.0,0.0,1.59725,3.0,60.0,180.0,158.602,1.9855,1.85568,1.20644,8.0,8.0,8.0,0.00122599,0.229107
+1135,37.8378,0.0,0.0,14.0,16.8869,20.0,255.0,74.0,126.0,127.732,130.0,140.0,114.0,127.0,128.069,129.0,150.0,0.0,0.0,1.57916,3.0,54.0,180.0,157.819,2.02019,1.83595,1.18196,8.0,8.0,8.0,0.00120027,0.208985
+1136,37.871167,0.0,0.0,14.0,16.8609,20.0,255.0,73.0,126.0,127.743,130.0,139.0,113.0,127.0,128.103,129.0,157.0,0.0,0.0,1.61151,3.0,55.0,180.0,159.722,1.9751,1.82422,1.19954,8.0,8.0,8.0,0.00129172,0.214569
+1137,37.904533,0.0,0.0,14.0,16.8433,20.0,206.0,72.0,126.0,127.667,130.0,138.0,115.0,127.0,128.075,129.0,150.0,0.0,0.0,1.61268,3.0,56.0,180.0,156.106,1.99204,1.85453,1.1932,8.0,8.0,8.0,0.00120885,0.216452
+1138,37.9379,0.0,0.0,14.0,16.9623,20.0,154.0,75.0,126.0,127.684,130.0,138.0,114.0,127.0,128.063,129.0,138.0,0.0,0.0,1.6028,3.0,54.0,180.0,155.631,2.00757,1.8693,1.18849,8.0,8.0,8.0,0.00120599,0.198691
+1139,37.971267,0.0,0.0,14.0,16.8419,20.0,152.0,71.0,126.0,127.71,130.0,138.0,114.0,127.0,128.082,129.0,136.0,0.0,0.0,1.61203,3.0,58.0,180.0,156.269,1.97952,1.85221,1.18291,8.0,8.0,8.0,0.00118599,0.21709
+1140,38.004633,0.0,0.0,14.0,16.866,20.0,255.0,74.0,126.0,127.665,130.0,138.0,114.0,127.0,128.05,129.0,148.0,0.0,0.0,1.59981,3.0,55.0,180.0,155.484,2.0426,1.87334,1.20824,8.0,8.0,8.0,0.00134602,0.213563
+1141,38.038,0.0,0.0,14.0,16.8838,20.0,255.0,75.0,126.0,127.672,130.0,138.0,114.0,127.0,128.051,129.0,141.0,0.0,0.0,1.61835,3.0,54.0,180.0,155.221,1.97409,1.85386,1.1921,8.0,8.0,8.0,0.00126886,0.211051
+1142,38.071367,0.0,0.0,14.0,16.9453,20.0,152.0,72.0,126.0,127.706,130.0,139.0,115.0,127.0,128.054,129.0,135.0,0.0,0.0,1.61446,3.0,57.0,180.0,156.173,2.02654,1.87489,1.20769,8.0,8.0,8.0,0.001246,0.205476
+1143,38.104733,0.0,0.0,14.0,17.0072,20.0,151.0,72.0,126.0,127.78,130.0,139.0,116.0,127.0,128.07,129.0,136.0,0.0,0.0,1.58618,3.0,57.0,180.0,160.655,2.0362,1.86949,1.19312,8.0,8.0,8.0,0.00120027,0.196508
+1144,38.1381,0.0,0.0,14.0,17.0561,20.0,255.0,74.0,126.0,127.688,130.0,139.0,114.0,127.0,128.058,129.0,137.0,0.0,0.0,1.63091,3.0,55.0,180.0,155.559,1.98256,1.84938,1.18257,8.0,8.0,8.0,0.00134888,0.190075
+1145,38.171467,0.0,0.0,14.0,16.8864,20.0,254.0,75.0,126.0,127.739,130.0,140.0,117.0,127.0,128.104,129.0,137.0,0.0,0.0,1.60783,3.0,54.0,180.0,159.777,2.03254,1.87756,1.21316,8.0,8.0,8.0,0.0013746,0.211871
+1146,38.204833,0.0,0.0,14.0,16.9959,20.0,222.0,75.0,126.0,127.73,130.0,139.0,116.0,127.0,128.098,129.0,136.0,0.0,0.0,1.58033,3.0,53.0,180.0,158.333,1.98276,1.83836,1.19112,8.0,8.0,8.0,0.0013746,0.199123
+1147,38.2382,0.0,0.0,15.0,17.0761,20.0,152.0,75.0,126.0,127.689,130.0,139.0,116.0,127.0,128.086,129.0,138.0,0.0,0.0,1.61842,3.0,54.0,180.0,156.711,2.0034,1.84814,1.20298,8.0,8.0,8.0,0.00125171,0.183125
+1148,38.271567,0.0,0.0,14.0,17.0537,20.0,172.0,75.0,126.0,127.689,130.0,141.0,115.0,127.0,128.064,129.0,138.0,0.0,0.0,1.59403,3.0,54.0,180.0,156.248,1.99582,1.83875,1.19129,8.0,8.0,8.0,0.00131173,0.188875
+1149,38.304933,0.0,0.0,15.0,17.0973,20.0,152.0,75.0,126.0,127.75,130.0,140.0,115.0,127.0,128.078,129.0,137.0,0.0,0.0,1.5882,3.0,54.0,180.0,158.281,1.97191,1.8579,1.19102,8.0,8.0,8.0,0.00120313,0.183288
+1150,38.3383,0.0,0.0,15.0,17.1704,20.0,219.0,75.0,126.0,127.727,130.0,139.0,116.0,127.0,128.077,129.0,136.0,0.0,0.0,1.587,3.0,54.0,180.0,157.64,2.06784,1.83543,1.19359,8.0,8.0,8.0,0.00145748,0.176903
+1151,38.371667,0.0,0.0,15.0,17.1218,20.0,254.0,75.0,126.0,127.695,130.0,139.0,114.0,127.0,128.078,129.0,136.0,0.0,0.0,1.57449,3.0,54.0,180.0,156.862,1.95215,1.81672,1.19098,8.0,8.0,8.0,0.00149749,0.180155
+1152,38.405033,0.0,0.0,15.0,17.1961,20.0,152.0,75.0,126.0,127.74,130.0,139.0,115.0,127.0,128.091,129.0,136.0,0.0,0.0,1.59785,3.0,54.0,180.0,158.802,2.02006,1.82778,1.19866,8.0,8.0,8.0,0.00162894,0.178649
+1153,38.4384,0.0,0.0,15.0,17.1476,20.0,191.0,77.0,126.0,127.765,130.0,138.0,115.0,127.0,128.097,129.0,136.0,0.0,0.0,1.57387,3.0,52.0,180.0,159.349,1.99884,1.82933,1.18979,8.0,8.0,8.0,0.00150034,0.180104
+1154,38.471767,0.0,0.0,14.0,17.0377,20.0,152.0,74.0,126.0,127.713,130.0,139.0,114.0,127.0,128.095,129.0,136.0,0.0,0.0,1.60439,3.0,55.0,180.0,156.832,2.0478,1.83564,1.18953,8.0,8.0,8.0,0.00149177,0.197068
+1155,38.505133,0.0,0.0,14.0,17.0582,20.0,195.0,75.0,126.0,127.73,130.0,142.0,115.0,127.0,128.096,129.0,135.0,0.0,0.0,1.58743,3.0,54.0,180.0,157.968,2.08007,1.84334,1.19821,8.0,8.0,8.0,0.00169182,0.192095
+1156,38.5385,0.0,0.0,15.0,17.1457,20.0,152.0,76.0,126.0,127.737,130.0,140.0,115.0,127.0,128.107,129.0,136.0,0.0,0.0,1.59667,3.0,53.0,180.0,158.103,2.02301,1.86118,1.1918,8.0,8.0,8.0,0.00166895,0.181819
+1157,38.571867,0.0,0.0,15.0,17.2359,20.0,153.0,71.0,126.0,127.714,130.0,139.0,113.0,127.0,128.114,129.0,144.0,0.0,0.0,1.64515,3.0,57.0,180.0,158.15,2.03526,1.87921,1.238,8.0,8.0,8.0,0.00138032,0.16717
+1158,38.605233,0.0,0.0,15.0,17.2674,20.0,165.0,75.0,126.0,127.65,130.0,138.0,115.0,127.0,128.052,129.0,136.0,0.0,0.0,1.6095,3.0,54.0,170.0,153.454,2.04352,1.88511,1.22418,8.0,8.0,8.0,0.00168324,0.171133
+1159,38.6386,0.0,0.0,15.0,17.1946,20.0,151.0,70.0,126.0,127.714,130.0,138.0,114.0,127.0,128.098,129.0,141.0,0.0,0.0,1.59739,3.0,58.0,180.0,156.927,2.07516,1.85786,1.21024,8.0,8.0,8.0,0.00153464,0.182567
+1160,38.671967,0.0,0.0,15.0,17.3041,20.0,181.0,75.0,126.0,127.711,130.0,139.0,116.0,127.0,128.045,129.0,136.0,0.0,0.0,1.5842,3.0,54.0,180.0,155.646,2.15724,1.8289,1.19494,8.0,8.0,8.0,0.0016118,0.182416
+1161,38.705333,0.0,0.0,15.0,17.4928,20.0,255.0,76.0,126.0,127.663,130.0,139.0,115.0,127.0,128.052,129.0,137.0,0.0,0.0,1.60086,3.0,53.0,180.0,154.659,2.0923,1.8441,1.21547,8.0,8.0,8.0,0.00184042,0.164869
+1162,38.7387,0.0,0.0,14.0,17.3941,20.0,211.0,74.0,126.0,127.706,130.0,138.0,115.0,127.0,128.017,129.0,136.0,0.0,0.0,1.59134,3.0,55.0,180.0,155.809,2.13185,1.86232,1.20104,8.0,8.0,8.0,0.00168324,0.184791
+1163,38.772067,0.0,0.0,15.0,17.4999,20.0,242.0,74.0,126.0,127.729,130.0,140.0,115.0,127.0,128.042,129.0,136.0,0.0,0.0,1.5968,3.0,55.0,180.0,157.105,2.14249,1.84817,1.18197,8.0,8.0,8.0,0.00167467,0.175317
+1164,38.805433,0.0,0.0,15.0,17.5021,20.0,255.0,73.0,126.0,127.743,130.0,138.0,114.0,127.0,128.066,129.0,142.0,0.0,0.0,1.58579,3.0,55.0,180.0,157.968,2.09424,1.86555,1.19182,8.0,8.0,8.0,0.00167753,0.182999
+1165,38.8388,0.0,0.0,14.0,17.4903,20.0,255.0,73.0,126.0,127.718,130.0,143.0,113.0,127.0,128.065,129.0,144.0,0.0,0.0,1.61636,3.0,56.0,180.0,158.067,2.19084,1.85714,1.22087,8.0,8.0,8.0,0.00175754,0.191398
+1166,38.872167,0.0,0.0,15.0,17.5434,20.0,255.0,73.0,126.0,127.749,130.0,140.0,115.0,127.0,128.09,129.0,152.0,0.0,0.0,1.61568,3.0,56.0,180.0,159.988,2.07494,1.85967,1.22819,8.0,8.0,8.0,0.0016118,0.184679
+1167,38.905533,0.0,0.0,15.0,17.6447,20.0,255.0,75.0,126.0,127.702,130.0,143.0,113.0,127.0,128.091,129.0,137.0,0.0,0.0,1.62429,3.0,54.0,180.0,157.543,2.07181,1.84604,1.2241,8.0,8.0,8.0,0.00164037,0.174346
+1168,38.9389,0.0,0.0,15.0,17.6024,20.0,255.0,70.0,126.0,127.655,130.0,138.0,115.0,127.0,128.083,129.0,146.0,0.0,0.0,1.64642,3.0,58.0,180.0,154.879,2.06055,1.88905,1.23727,8.0,8.0,8.0,0.00168038,0.186548
+1169,38.972267,0.0,0.0,15.0,17.6598,20.0,255.0,69.0,126.0,127.665,130.0,140.0,116.0,127.0,128.062,129.0,140.0,0.0,0.0,1.6131,3.0,60.0,180.0,155.167,1.98388,1.85942,1.22077,8.0,8.0,8.0,0.00182899,0.18155
+1170,39.005633,0.0,0.0,15.0,17.6485,20.0,255.0,69.0,126.0,127.662,130.0,139.0,114.0,127.0,128.08,129.0,139.0,0.0,0.0,1.63086,3.0,59.0,180.0,155.65,2.13662,1.87599,1.21694,8.0,8.0,8.0,0.00130316,0.173397
+1171,39.039,0.0,0.0,15.0,17.5994,20.0,255.0,67.0,126.0,127.653,130.0,139.0,115.0,127.0,128.055,129.0,141.0,0.0,0.0,1.62998,3.0,62.0,180.0,153.576,1.98955,1.8664,1.21195,8.0,8.0,8.0,0.00124886,0.179061
+1172,39.072367,0.0,0.0,15.0,17.703,20.0,255.0,69.0,126.0,127.718,130.0,140.0,111.0,127.0,128.048,129.0,139.0,0.0,0.0,1.67394,3.0,61.0,180.0,157.391,2.02877,1.88568,1.26495,8.0,8.0,8.0,0.00121456,0.168859
+1173,39.105733,0.0,0.0,15.0,17.6059,20.0,255.0,65.0,126.0,127.747,130.0,141.0,115.0,127.0,128.11,129.0,142.0,0.0,0.0,1.6076,3.0,63.0,180.0,159.114,2.0448,1.86084,1.26944,8.0,8.0,8.0,0.001246,0.178932
+1174,39.1391,0.0,0.0,14.0,17.4776,20.0,255.0,68.0,126.0,127.71,130.0,138.0,114.0,127.0,128.074,129.0,147.0,0.0,0.0,1.61008,3.0,60.0,180.0,156.924,1.97146,1.82772,1.24175,8.0,8.0,8.0,0.00130601,0.194559
+1175,39.172467,0.0,0.0,15.0,17.5664,20.0,255.0,70.0,126.0,127.691,130.0,143.0,115.0,127.0,128.089,129.0,151.0,0.0,0.0,1.65149,3.0,58.0,180.0,157.262,2.01883,1.84561,1.24104,8.0,8.0,8.0,0.0013003,0.18281
+1176,39.205833,0.0,0.0,15.0,17.6224,20.0,255.0,68.0,126.0,127.74,130.0,143.0,115.0,127.0,128.07,129.0,141.0,0.0,0.0,1.61642,3.0,60.0,180.0,159.236,1.99643,1.89554,1.24498,8.0,8.0,8.0,0.001246,0.179915
+1177,39.2392,0.0,0.0,15.0,17.567,20.0,255.0,71.0,126.0,127.692,130.0,139.0,113.0,127.0,128.11,129.0,155.0,0.0,0.0,1.62379,3.0,57.0,180.0,158.37,2.00656,1.86984,1.20521,8.0,8.0,8.0,0.00131173,0.185582
+1178,39.272567,0.0,0.0,14.0,17.5102,20.0,255.0,75.0,126.0,127.645,130.0,141.0,111.0,127.0,128.09,129.0,160.0,0.0,0.0,1.63731,3.0,55.0,180.0,155.711,2.00787,1.90054,1.23357,8.0,8.0,8.0,0.0011917,0.190709
+1179,39.305933,0.0,0.0,15.0,17.5602,20.0,255.0,70.0,126.0,127.678,130.0,141.0,116.0,127.0,128.074,129.0,147.0,0.0,0.0,1.63061,3.0,58.0,180.0,156.374,1.98516,1.90217,1.23538,8.0,8.0,8.0,0.00123171,0.185239
+1180,39.3393,0.0,0.0,14.0,17.505,20.0,255.0,75.0,126.0,127.681,130.0,141.0,112.0,127.0,128.095,129.0,160.0,0.0,0.0,1.61287,3.0,55.0,180.0,157.199,2.04524,1.8577,1.21898,8.0,8.0,8.0,0.00126315,0.192444
+1181,39.372667,0.0,0.0,15.0,17.6664,20.0,255.0,70.0,126.0,127.671,130.0,143.0,113.0,127.0,128.053,129.0,149.0,0.0,0.0,1.62692,3.0,59.0,180.0,153.88,2.00401,1.877,1.24567,8.0,8.0,8.0,0.00136603,0.176743
+1182,39.406033,0.0,0.0,14.0,17.4976,20.0,255.0,76.0,126.0,127.679,130.0,142.0,114.0,127.0,128.039,129.0,140.0,0.0,0.0,1.65283,3.0,53.0,180.0,156.214,2.04883,1.88938,1.24311,8.0,8.0,8.0,0.0013003,0.198182
+1183,39.4394,0.0,0.0,15.0,17.5445,20.0,255.0,74.0,126.0,127.733,130.0,140.0,114.0,127.0,128.101,129.0,139.0,0.0,0.0,1.61044,3.0,55.0,180.0,158.815,2.0569,1.88418,1.23427,8.0,8.0,8.0,0.001246,0.18698
+1184,39.472767,0.0,0.0,15.0,17.6422,20.0,255.0,74.0,126.0,127.65,130.0,139.0,114.0,127.0,128.069,129.0,138.0,0.0,0.0,1.64249,3.0,55.0,180.0,155.565,1.98649,1.86807,1.23142,8.0,8.0,8.0,0.00128315,0.175329
+1185,39.506133,0.0,0.0,15.0,17.5614,20.0,255.0,75.0,126.0,127.686,130.0,139.0,115.0,127.0,128.081,129.0,138.0,0.0,0.0,1.62874,3.0,54.0,180.0,155.23,2.02994,1.85598,1.24027,8.0,8.0,8.0,0.00137746,0.183716
+1186,39.5395,0.0,0.0,15.0,17.683,20.0,255.0,75.0,126.0,127.671,130.0,138.0,115.0,127.0,128.082,129.0,137.0,0.0,0.0,1.64438,3.0,54.0,180.0,155.192,1.98359,1.86816,1.21461,8.0,8.0,8.0,0.0013946,0.171265
+1187,39.572867,0.0,0.0,14.0,17.3998,20.0,255.0,74.0,126.0,127.703,130.0,141.0,114.0,127.0,128.115,129.0,141.0,0.0,0.0,1.6481,3.0,54.0,180.0,157.891,2.03977,1.86645,1.18249,8.0,8.0,8.0,0.00138603,0.206313
+1188,39.606233,0.0,0.0,14.0,17.0334,19.0,255.0,76.0,126.0,127.614,130.0,138.0,115.0,127.0,128.062,129.0,136.0,0.0,0.0,1.64622,3.0,53.0,153.0,151.759,2.02073,1.88053,1.21704,8.0,8.0,8.0,0.00128887,0.256119
+1189,39.6396,0.0,0.0,13.0,16.3454,19.0,255.0,71.0,126.0,127.688,130.0,139.0,115.0,127.0,128.061,129.0,136.0,0.0,0.0,1.62095,3.0,58.0,180.0,156.871,2.04535,1.87127,1.18707,8.0,8.0,8.0,0.00137746,0.379258
+1190,39.672967,0.0,0.0,12.0,14.9104,17.0,255.0,76.0,126.0,127.665,130.0,139.0,114.0,127.0,128.037,129.0,137.0,0.0,0.0,1.63217,3.0,53.0,180.0,153.986,2.37237,1.84552,1.21374,8.0,8.0,8.0,0.00134888,0.68618
+1191,39.706333,0.0,0.0,12.0,15.0026,17.0,255.0,72.0,126.0,127.648,130.0,143.0,115.0,127.0,128.058,129.0,139.0,0.0,0.0,1.6402,3.0,56.0,180.0,154.197,1.9184,1.86163,1.22258,8.0,8.0,8.0,0.00129744,0.668656
+1192,39.7397,0.0,0.0,10.0,14.1112,17.0,255.0,77.0,126.0,127.692,130.0,138.0,116.0,127.0,128.065,129.0,137.0,0.0,0.0,1.62961,3.0,52.0,180.0,155.39,2.29862,1.87064,1.23465,8.0,8.0,8.0,0.00146033,0.77538
+1193,39.773067,0.0,0.0,9.0,12.5555,15.0,255.0,75.0,126.0,127.707,130.0,141.0,116.0,127.0,128.08,129.0,138.0,0.0,0.0,1.60825,3.0,54.0,180.0,157.913,2.56255,1.86007,1.22812,8.0,8.0,8.0,0.00132888,0.95092
+1194,39.806433,0.0,0.0,9.0,12.3329,15.0,255.0,76.0,126.0,127.711,130.0,139.0,116.0,127.0,128.046,129.0,136.0,0.0,0.0,1.65425,3.0,53.0,180.0,156.257,2.07724,1.90689,1.24078,8.0,8.0,8.0,0.00110882,0.961806
+1195,39.8398,0.0,0.0,9.0,12.4006,15.0,255.0,75.0,126.0,127.753,130.0,139.0,115.0,127.0,128.076,129.0,137.0,0.0,0.0,1.59895,3.0,54.0,180.0,160.087,2.11523,1.90009,1.26403,8.0,8.0,8.0,0.00125171,0.957953
+1196,39.873167,0.0,0.0,9.0,12.2357,14.0,255.0,75.0,126.0,127.686,130.0,138.0,116.0,127.0,128.072,129.0,136.0,0.0,0.0,1.6171,3.0,54.0,180.0,157.74,2.07118,1.86556,1.22762,8.0,8.0,8.0,0.00120599,0.964126
+1197,39.906533,0.0,0.0,9.0,12.3506,15.0,255.0,73.0,126.0,127.724,130.0,141.0,116.0,127.0,128.121,129.0,136.0,0.0,0.0,1.60999,3.0,56.0,180.0,158.929,2.13134,1.83819,1.2188,8.0,8.0,8.0,0.00127458,0.960854
+1198,39.9399,0.0,0.0,8.0,11.8837,14.0,255.0,76.0,126.0,127.619,130.0,139.0,115.0,127.0,128.078,129.0,136.0,0.0,0.0,1.62506,3.0,53.0,180.0,153.465,2.16539,1.88744,1.26304,8.0,8.0,8.0,0.00139746,0.972282
+1199,39.973267,0.0,0.0,8.0,11.3575,14.0,255.0,76.0,126.0,127.725,130.0,138.0,114.0,127.0,128.127,129.0,136.0,0.0,0.0,1.5864,3.0,53.0,180.0,158.667,2.10115,1.8273,1.20753,8.0,8.0,8.0,0.00139746,0.979672
+1200,40.006633,0.00205761,0.0,2.0,6.67755,9.0,255.0,75.0,126.0,127.724,130.0,138.0,114.0,127.0,128.148,129.0,135.0,0.0,0.0,1.61741,3.0,54.0,180.0,160.842,4.84043,1.83552,1.19047,8.0,8.0,8.0,0.000974508,0.994967
+1201,40.04,0.62963,0.0,1.0,2.37764,3.0,255.0,75.0,126.0,127.626,130.0,140.0,116.0,127.0,128.07,129.0,136.0,0.0,0.0,1.72326,3.0,53.0,153.0,154.165,4.35591,1.8638,1.18643,8.0,8.0,8.0,0.000854481,0.99553
+1202,40.073367,0.932099,0.0,1.0,1.60173,1.0,251.0,76.0,126.0,127.659,130.0,140.0,116.0,127.0,128.05,129.0,140.0,0.0,0.0,1.74075,4.0,53.0,161.0,153.945,0.984908,1.92277,1.2424,8.0,8.0,8.0,0.000857339,0.99553
+1203,40.106733,0.932099,0.0,1.0,1.60282,1.0,250.0,73.0,126.0,127.71,130.0,142.0,115.0,127.0,128.079,129.0,138.0,0.0,0.0,1.74766,3.0,56.0,180.0,155.985,0.0688386,1.91703,1.26836,8.0,8.0,8.0,0.000857339,0.995505
+1204,40.1401,0.932099,0.0,1.0,1.60397,1.0,252.0,74.0,126.0,127.708,130.0,139.0,117.0,127.0,128.081,129.0,137.0,0.0,0.0,1.72582,3.0,55.0,180.0,157.0,0.0617341,1.93552,1.26726,8.0,8.0,8.0,0.000877343,0.995499
+1205,40.173467,0.932099,0.0,1.0,1.60726,1.0,252.0,75.0,126.0,127.656,130.0,143.0,117.0,127.0,128.069,130.0,136.0,0.0,0.0,1.75134,3.0,54.0,153.0,153.47,0.0747771,1.90793,1.2858,8.0,8.0,8.0,0.00086877,0.995485
+1206,40.206833,0.932099,0.0,1.0,1.59579,1.0,245.0,74.0,126.0,127.655,130.0,141.0,117.0,127.0,128.064,129.0,136.0,0.0,0.0,1.72255,4.0,54.0,180.0,155.289,0.0538352,1.91655,1.27326,8.0,8.0,8.0,0.000834476,0.995473
+1207,40.2402,0.932099,0.0,1.0,1.59783,1.0,247.0,74.0,126.0,127.671,130.0,140.0,116.0,127.0,128.09,129.0,136.0,0.0,0.0,1.7447,3.0,55.0,180.0,156.04,0.070479,1.92484,1.26806,8.0,8.0,8.0,0.000808756,0.995488
+1208,40.273567,0.932099,0.0,1.0,1.60705,1.0,245.0,72.0,126.0,127.606,130.0,138.0,115.0,127.0,128.06,129.0,136.0,0.0,0.0,1.75821,4.0,57.0,153.0,152.052,0.0489112,1.93752,1.27397,8.0,8.0,8.0,0.000888775,0.995428
+1209,40.306933,0.927984,0.0,1.0,1.61061,1.0,252.0,73.0,126.0,127.628,130.0,139.0,116.0,127.0,128.07,129.0,136.0,0.0,0.0,1.72724,3.0,56.0,153.0,153.621,0.0595736,1.90592,1.26184,8.0,8.0,8.0,0.00101166,0.995342
+1210,40.3403,0.936214,0.0,1.0,1.59697,1.0,246.0,73.0,126.0,127.661,130.0,140.0,117.0,127.0,128.053,129.0,139.0,0.0,0.0,1.71313,4.0,55.0,165.0,154.125,0.0571216,1.87438,1.24305,8.0,8.0,8.0,0.000797325,0.995588
+1211,40.373667,0.930041,0.0,1.0,1.60416,1.0,245.0,75.0,126.0,127.619,130.0,138.0,115.0,127.0,128.055,129.0,148.0,0.0,0.0,1.72886,3.0,54.0,153.0,151.72,0.0424268,1.89385,1.25181,8.0,8.0,8.0,0.000914495,0.995445
+1212,40.407033,0.936214,0.0,1.0,1.59169,1.0,248.0,75.0,126.0,127.632,130.0,140.0,115.0,127.0,128.041,129.0,136.0,0.0,0.0,1.73372,3.0,54.0,153.0,153.219,0.0672982,1.90027,1.26268,8.0,8.0,8.0,0.000768747,0.995473
+1213,40.4404,0.932099,0.0,1.0,1.60578,1.0,244.0,74.0,126.0,127.657,130.0,138.0,116.0,127.0,128.072,129.0,136.0,0.0,0.0,1.72308,3.0,54.0,161.0,154.968,0.0608739,1.91647,1.27011,8.0,8.0,8.0,0.000891632,0.995373
+1214,40.473767,0.932099,0.0,1.0,1.59244,1.0,245.0,75.0,126.0,127.68,130.0,140.0,116.0,127.0,128.073,129.0,136.0,0.0,0.0,1.71198,4.0,54.0,180.0,156.34,0.0475594,1.8908,1.26309,8.0,8.0,8.0,0.000808756,0.995453
+1215,40.507133,0.932099,0.0,1.0,1.59298,1.0,248.0,75.0,126.0,127.694,130.0,139.0,115.0,127.0,128.073,130.0,143.0,0.0,0.0,1.72739,3.0,54.0,161.0,156.005,0.0628058,1.89345,1.27611,8.0,8.0,8.0,0.000831619,0.995496
+1216,40.5405,0.925926,0.0,1.0,1.59626,1.0,253.0,75.0,126.0,127.678,130.0,142.0,116.0,127.0,128.075,130.0,136.0,0.0,0.0,1.76731,3.0,54.0,161.0,155.375,0.0666667,1.92428,1.29097,8.0,8.0,8.0,0.000954504,0.995453
+1217,40.573867,0.927984,0.0,1.0,1.58326,1.0,245.0,74.0,126.0,127.657,130.0,164.0,116.0,127.0,128.079,129.0,141.0,0.0,0.0,1.74177,4.0,55.0,161.0,154.632,0.0717907,1.95374,1.28046,8.0,8.0,8.0,0.000900206,0.995459
+1218,40.607233,0.932099,0.0,1.0,1.58561,1.0,249.0,74.0,126.0,127.637,130.0,165.0,112.0,127.0,128.049,130.0,154.0,0.0,0.0,1.78927,3.0,55.0,153.0,153.022,0.0733539,1.92339,1.2686,8.0,8.0,8.0,0.00089449,0.995456
+1219,40.6406,0.932099,0.0,1.0,1.57902,1.0,245.0,71.0,126.0,127.692,130.0,159.0,114.0,127.0,128.07,130.0,136.0,0.0,0.0,1.77225,3.0,58.0,161.0,156.313,0.0746628,1.93568,1.29004,8.0,8.0,8.0,0.000823045,0.99555
+1220,40.673967,0.936214,0.0,1.0,1.56728,1.0,246.0,75.0,126.0,127.682,130.0,145.0,115.0,127.0,128.077,130.0,138.0,0.0,1.0,1.77753,3.0,54.0,153.0,154.868,0.0766175,1.91004,1.29901,8.0,8.0,8.0,0.000711591,0.995545
+1221,40.707333,0.934156,0.0,1.0,1.56698,1.0,243.0,75.0,126.0,127.65,130.0,140.0,115.0,127.0,128.045,129.0,136.0,0.0,0.0,1.77746,4.0,54.0,153.0,154.396,0.0355281,1.92722,1.28823,8.0,8.0,8.0,0.000711591,0.995556
+1222,40.7407,0.932099,0.0,1.0,1.57319,1.0,244.0,74.0,126.0,127.664,130.0,141.0,116.0,127.0,128.072,130.0,139.0,0.0,1.0,1.80785,3.0,55.0,153.0,155.233,0.0494142,1.93651,1.29457,8.0,8.0,8.0,0.000863054,0.995456
+1223,40.774067,0.932099,0.0,1.0,1.55969,1.0,244.0,75.0,126.0,127.714,130.0,139.0,114.0,127.0,128.078,130.0,136.0,0.0,0.0,1.79403,4.0,54.0,180.0,157.617,0.0682699,1.95069,1.3081,8.0,8.0,8.0,0.000780178,0.995576
+1224,40.807433,0.936214,0.0,1.0,1.55914,1.0,245.0,75.0,126.0,127.708,130.0,139.0,116.0,127.0,128.07,130.0,137.0,0.0,1.0,1.82799,4.0,54.0,161.0,156.806,0.0421525,1.9475,1.31195,8.0,8.0,8.0,0.000705876,0.995639
+1225,40.8408,0.930041,0.0,1.0,1.56119,1.0,241.0,75.0,126.0,127.679,130.0,140.0,115.0,127.0,128.074,130.0,136.0,0.0,0.0,1.77155,4.0,54.0,180.0,156.6,0.0548211,1.94287,1.29867,8.0,8.0,8.0,0.000823045,0.995496
+1226,40.874167,0.930041,0.0,1.0,1.56483,1.0,243.0,74.0,126.0,127.711,130.0,157.0,113.0,127.0,128.111,130.0,149.0,0.0,1.0,1.83137,4.0,56.0,180.0,158.017,0.0493398,1.95066,1.29011,8.0,8.0,8.0,0.000794467,0.995548
+1227,40.907533,0.934156,0.0,1.0,1.56153,1.0,245.0,73.0,126.0,127.675,130.0,139.0,115.0,127.0,128.083,130.0,136.0,0.0,0.0,1.80381,4.0,56.0,153.0,155.745,0.0362168,1.95609,1.30408,8.0,8.0,8.0,0.000717307,0.995653
+1228,40.9409,0.932099,0.0,1.0,1.56353,1.0,244.0,71.0,126.0,127.656,130.0,165.0,114.0,127.0,128.069,130.0,137.0,0.0,1.0,1.79968,3.0,57.0,153.0,154.292,0.0508116,1.91722,1.30751,8.0,8.0,8.0,0.000765889,0.995565
+1229,40.974267,0.932099,0.0,1.0,1.55794,1.0,242.0,73.0,125.0,127.601,130.0,172.0,114.0,127.0,128.076,130.0,138.0,0.0,0.0,1.81957,4.0,56.0,153.0,153.333,0.0476023,1.95342,1.31666,8.0,8.0,8.0,0.0007516,0.99555
+1230,41.007633,0.930041,0.0,1.0,1.56681,1.0,244.0,73.0,126.0,127.665,130.0,172.0,114.0,127.0,128.1,130.0,138.0,0.0,1.0,1.84059,4.0,55.0,153.0,156.203,0.0608653,1.97824,1.3393,8.0,8.0,8.0,0.000811614,0.99553
+1231,41.041,0.930041,0.0,1.0,1.56608,1.0,245.0,71.0,126.0,127.668,130.0,169.0,115.0,127.0,128.036,130.0,145.0,0.0,1.0,1.81484,4.0,58.0,153.0,154.965,0.0439729,1.98262,1.33054,8.0,8.0,8.0,0.000854481,0.995496
+1232,41.074367,0.930041,0.0,1.0,1.56708,1.0,246.0,72.0,126.0,127.708,130.0,164.0,114.0,127.0,128.038,130.0,140.0,0.0,1.0,1.83368,4.0,57.0,153.0,156.551,0.0365569,1.98996,1.31476,8.0,8.0,8.0,0.000891632,0.995473
+1233,41.107733,0.934156,0.0,1.0,1.56019,1.0,240.0,75.0,126.0,127.711,130.0,140.0,114.0,127.0,128.074,130.0,136.0,0.0,0.0,1.7926,4.0,54.0,180.0,158.182,0.0387031,1.98053,1.31827,8.0,8.0,8.0,0.000740169,0.995562
+1234,41.1411,0.934156,0.0,1.0,1.55813,1.0,247.0,76.0,126.0,127.721,130.0,140.0,115.0,127.0,128.075,130.0,137.0,0.0,1.0,1.8197,4.0,53.0,165.0,157.456,0.0339278,1.93957,1.32277,8.0,8.0,8.0,0.000754458,0.99565
+1235,41.174467,0.930041,0.0,1.0,1.56469,1.0,242.0,74.0,126.0,127.684,130.0,140.0,115.0,127.0,128.069,130.0,137.0,0.0,0.0,1.79866,4.0,54.0,153.0,155.266,0.0396062,1.92705,1.31863,8.0,8.0,8.0,0.000871628,0.99555
+1236,41.207833,0.934156,0.0,1.0,1.5599,1.0,245.0,73.0,126.0,127.737,130.0,156.0,113.0,127.0,128.088,130.0,140.0,0.0,1.0,1.80942,3.0,55.0,180.0,158.235,0.0364369,1.93006,1.3081,8.0,8.0,8.0,0.000814472,0.995593
+1237,41.2412,0.925926,0.0,1.0,1.5616,1.0,240.0,74.0,126.0,127.682,130.0,156.0,100.0,127.0,128.071,130.0,136.0,0.0,0.0,1.80912,4.0,55.0,180.0,157.963,0.0474537,1.95581,1.3378,8.0,8.0,8.0,0.000925926,0.995428
+1238,41.274567,0.930041,0.0,1.0,1.56145,1.0,243.0,73.0,126.0,127.648,130.0,168.0,112.0,127.0,128.052,130.0,139.0,0.0,1.0,1.82222,4.0,56.0,153.0,154.249,0.0445388,1.94719,1.32052,8.0,8.0,8.0,0.000811614,0.995588
+1239,41.307933,0.934156,0.0,1.0,1.55494,1.0,246.0,40.0,126.0,127.677,130.0,161.0,112.0,127.0,128.083,130.0,136.0,0.0,0.0,1.82243,4.0,88.0,153.0,155.828,0.027332,1.95053,1.32857,8.0,8.0,8.0,0.000734454,0.995622
+1240,41.3413,0.936214,0.0,1.0,1.55876,1.0,246.0,74.0,126.0,127.644,130.0,159.0,106.0,127.0,128.066,130.0,137.0,0.0,1.0,1.83497,4.0,55.0,153.0,155.017,0.0476938,1.99026,1.3161,8.0,8.0,8.0,0.000705876,0.995599
+1241,41.374667,0.932099,0.0,1.0,1.56348,1.0,240.0,74.0,126.0,127.645,130.0,139.0,97.0,127.0,128.043,130.0,137.0,0.0,0.0,1.81296,4.0,55.0,153.0,155.277,0.0576475,1.98425,1.30431,8.0,8.0,8.0,0.000820187,0.99545
+1242,41.408033,0.932099,0.0,1.0,1.56363,1.0,242.0,73.0,126.0,127.695,130.0,173.0,115.0,127.0,128.04,130.0,140.0,0.0,1.0,1.8223,4.0,56.0,153.0,155.211,0.0518404,1.97713,1.3146,8.0,8.0,8.0,0.000768747,0.995505
+1243,41.4414,0.927984,0.0,1.0,1.56657,1.0,243.0,73.0,126.0,127.732,130.0,150.0,100.0,127.0,128.079,130.0,138.0,0.0,1.0,1.84079,4.0,56.0,180.0,159.269,0.0508916,1.96,1.30187,8.0,8.0,8.0,0.000925926,0.995419
+1244,41.474767,0.934156,0.0,1.0,1.55892,1.0,241.0,74.0,126.0,127.697,130.0,143.0,97.0,127.0,128.08,130.0,137.0,0.0,1.0,1.84414,4.0,55.0,161.0,157.234,0.034205,1.98539,1.33953,8.0,8.0,8.0,0.000737311,0.99557
+1245,41.508133,0.930041,0.0,1.0,1.56514,1.0,243.0,75.0,126.0,127.652,130.0,146.0,96.0,127.0,128.058,130.0,137.0,0.0,0.0,1.80984,4.0,54.0,161.0,156.102,0.0430727,1.96296,1.32051,8.0,8.0,8.0,0.000877343,0.995462
+1246,41.5415,0.934156,0.0,1.0,1.55979,1.0,244.0,73.0,126.0,127.707,130.0,164.0,113.0,127.0,128.108,130.0,138.0,0.0,1.0,1.83501,4.0,56.0,180.0,157.85,0.0505944,1.95136,1.30705,8.0,8.0,8.0,0.00079161,0.995625
+1247,41.574867,0.930041,0.0,1.0,1.55678,1.0,248.0,73.0,126.0,127.672,130.0,169.0,115.0,127.0,128.078,130.0,138.0,0.0,1.0,1.83349,4.0,56.0,153.0,156.086,0.0422868,1.95753,1.33389,8.0,8.0,8.0,0.000797325,0.995499
+1248,41.608233,0.925926,0.0,1.0,1.55484,1.0,244.0,75.0,126.0,127.666,130.0,162.0,105.0,127.0,128.078,130.0,140.0,0.0,1.0,1.83735,4.0,54.0,153.0,154.544,0.0510174,1.98061,1.35248,8.0,8.0,8.0,0.000877343,0.995505
+1249,41.6416,0.930041,0.0,1.0,1.52656,1.0,239.0,74.0,126.0,127.636,130.0,157.0,105.0,127.0,128.059,130.0,136.0,0.0,0.0,1.82056,4.0,55.0,153.0,154.467,0.0462934,1.95234,1.34167,8.0,8.0,8.0,0.000797325,0.995702
+1250,41.674967,0.932099,0.0,1.0,1.51612,1.0,241.0,73.0,126.0,127.643,130.0,168.0,113.0,126.0,128.065,130.0,139.0,0.0,1.0,1.83093,4.0,57.0,153.0,154.188,0.0557642,1.93633,1.362,8.0,8.0,8.0,0.000800183,0.995728
+1251,41.708333,0.927984,0.0,1.0,1.5169,1.0,238.0,74.0,126.0,127.646,130.0,161.0,116.0,127.0,128.05,130.0,140.0,0.0,1.0,1.79766,3.0,55.0,153.0,153.63,0.0457276,1.90243,1.32116,8.0,8.0,8.0,0.000865912,0.995605
+1252,41.7417,0.932099,0.0,1.0,1.50772,1.0,236.0,72.0,126.0,127.658,130.0,170.0,114.0,127.0,128.083,130.0,141.0,0.0,1.0,1.82243,4.0,57.0,153.0,155.438,0.0430298,1.91301,1.28888,8.0,8.0,8.0,0.000797325,0.995742
+1253,41.775067,0.932099,0.0,1.0,1.51397,1.0,234.0,73.0,126.0,127.702,130.0,164.0,112.0,127.0,128.062,130.0,136.0,0.0,0.0,1.79105,4.0,56.0,180.0,156.868,0.0328332,1.95591,1.28552,8.0,8.0,8.0,0.00081733,0.995696
+1254,41.808433,0.927984,0.0,1.0,1.51516,1.0,241.0,71.0,126.0,127.708,130.0,162.0,108.0,127.0,128.097,130.0,140.0,0.0,1.0,1.85064,4.0,58.0,171.0,158.055,0.0342193,1.95254,1.31081,8.0,8.0,8.0,0.000874486,0.995679
+1255,41.8418,0.932099,0.0,1.0,1.51236,1.0,235.0,70.0,126.0,127.68,130.0,166.0,112.0,127.0,128.033,130.0,136.0,0.0,0.0,1.80527,4.0,59.0,153.0,154.655,0.0358996,1.95369,1.32985,8.0,8.0,8.0,0.000811614,0.995708
+1256,41.875167,0.934156,0.0,1.0,1.50664,1.0,236.0,74.0,126.0,127.697,130.0,170.0,114.0,127.0,128.095,130.0,139.0,0.0,1.0,1.81387,4.0,55.0,168.0,157.381,0.0210934,1.94227,1.31303,8.0,8.0,8.0,0.000731596,0.995773
+1257,41.908533,0.930041,0.0,1.0,1.50414,1.0,233.0,73.0,126.0,127.673,130.0,169.0,114.0,127.0,128.084,130.0,136.0,0.0,0.0,1.81451,4.0,56.0,161.0,156.13,0.0547925,1.90708,1.30167,8.0,8.0,8.0,0.000803041,0.995736
+1258,41.9419,0.932099,0.0,1.0,1.51041,1.0,238.0,71.0,126.0,127.645,130.0,147.0,101.0,127.0,128.071,130.0,137.0,0.0,0.0,1.82363,4.0,57.0,153.0,154.004,0.0549011,1.93194,1.30741,8.0,8.0,8.0,0.000760174,0.995708
+1259,41.975267,0.927984,0.0,1.0,1.51678,1.0,235.0,74.0,126.0,127.638,130.0,153.0,106.0,127.0,128.071,130.0,136.0,0.0,0.0,1.79257,3.0,55.0,149.0,152.822,0.0381687,1.88907,1.31316,8.0,8.0,8.0,0.000834476,0.995628
+1260,42.008633,0.932099,0.0,1.0,1.51722,1.0,236.0,74.0,126.0,127.655,130.0,149.0,98.0,127.0,128.08,130.0,136.0,0.0,1.0,1.83453,4.0,54.0,153.0,154.768,0.036254,1.93577,1.29314,8.0,8.0,8.0,0.000794467,0.995639
+1261,42.042,0.936214,0.0,1.0,1.51107,1.0,234.0,75.0,125.0,127.578,130.0,145.0,97.0,127.0,128.048,130.0,136.0,0.0,0.0,1.81271,4.0,54.0,146.0,152.098,0.0355767,1.96432,1.31073,8.0,8.0,8.0,0.000688729,0.995733
+1262,42.075367,0.936214,0.0,1.0,1.51161,1.0,235.0,74.0,126.0,127.682,130.0,161.0,101.0,126.0,128.063,130.0,138.0,0.0,1.0,1.85552,4.0,55.0,153.0,156.307,0.0387174,1.9411,1.3338,8.0,8.0,8.0,0.000688729,0.995696
+1263,42.108733,0.932099,0.0,1.0,1.51646,1.0,235.0,73.0,126.0,127.701,130.0,148.0,96.0,127.0,128.066,130.0,137.0,0.0,1.0,1.82838,4.0,56.0,180.0,157.029,0.0489912,1.93752,1.32984,8.0,8.0,8.0,0.000780178,0.995636
+1264,42.1421,0.936214,0.0,1.0,1.54086,1.0,235.0,74.0,126.0,127.644,130.0,143.0,98.0,127.0,128.085,130.0,136.0,0.0,1.0,1.79835,3.0,54.0,153.0,154.976,0.094956,1.91942,1.31653,8.0,8.0,8.0,0.00101738,0.99541
+1265,42.175467,0.934156,0.0,1.0,1.54851,1.0,231.0,74.0,126.0,127.654,130.0,140.0,97.0,127.0,128.045,130.0,136.0,0.0,0.0,1.80119,4.0,55.0,161.0,156.295,0.0803326,1.92491,1.31528,8.0,8.0,8.0,0.00111454,0.995379
+1266,42.208833,0.934156,0.0,1.0,1.52223,1.0,238.0,73.0,126.0,127.701,130.0,162.0,109.0,127.0,128.108,130.0,137.0,0.0,1.0,1.81159,3.0,56.0,161.0,156.419,0.1139,1.9466,1.32307,8.0,8.0,8.0,0.000800183,0.995662
+1267,42.2422,0.925926,0.0,1.0,1.53246,1.0,238.0,73.0,126.0,127.656,130.0,161.0,108.0,127.0,128.06,130.0,137.0,0.0,1.0,1.82599,4.0,55.0,153.0,154.623,0.0605796,1.92852,1.31249,8.0,8.0,8.0,0.000863054,0.995579
+1268,42.275567,0.927984,0.0,1.0,1.54168,1.0,237.0,73.0,125.0,127.612,130.0,139.0,108.0,127.0,128.066,130.0,137.0,0.0,1.0,1.8464,4.0,56.0,146.0,153.206,0.0838506,1.98122,1.3416,8.0,8.0,8.0,0.000877343,0.995476
+1269,42.308933,0.936214,0.0,1.0,1.5325,1.0,236.0,75.0,125.0,127.586,130.0,147.0,111.0,127.0,128.045,129.0,137.0,0.0,0.0,1.81061,4.0,54.0,153.0,153.03,0.0575674,1.96963,1.32557,8.0,8.0,8.0,0.00072588,0.995605
+1270,42.3423,0.927984,0.0,1.0,1.55287,1.0,241.0,74.0,126.0,127.657,130.0,139.0,113.0,127.0,128.057,130.0,137.0,0.0,1.0,1.80792,4.0,55.0,153.0,154.513,0.0693016,1.95601,1.30241,8.0,8.0,8.0,0.000963077,0.99547
+1271,42.375667,0.930041,0.0,1.0,1.54642,1.0,240.0,74.0,125.0,127.605,130.0,145.0,114.0,127.0,128.064,130.0,138.0,0.0,0.0,1.81607,4.0,55.0,135.0,151.993,0.0441701,1.93949,1.30556,8.0,8.0,8.0,0.000851623,0.995536
+1272,42.409033,0.934156,0.0,1.0,1.54521,1.0,240.0,76.0,125.0,127.625,130.0,140.0,114.0,126.0,128.017,130.0,136.0,0.0,1.0,1.84238,4.0,53.0,153.0,153.569,0.0443016,1.94904,1.30452,8.0,8.0,8.0,0.000777321,0.995605
+1273,42.4424,0.925926,0.0,1.0,1.55317,1.0,239.0,76.0,126.0,127.686,130.0,140.0,116.0,127.0,128.07,130.0,138.0,0.0,0.0,1.79153,4.0,53.0,180.0,157.497,0.0377372,1.96613,1.31505,8.0,8.0,8.0,0.000900206,0.995465
+1274,42.475767,0.934156,0.0,1.0,1.54875,1.0,245.0,76.0,126.0,127.65,130.0,139.0,113.0,127.0,128.074,130.0,141.0,0.0,1.0,1.82611,4.0,53.0,153.0,155.166,0.0546068,1.96228,1.31618,8.0,8.0,8.0,0.000731596,0.995596
+1275,42.509133,0.932099,0.0,1.0,1.55452,1.0,244.0,75.0,126.0,127.642,130.0,139.0,116.0,127.0,128.066,130.0,137.0,0.0,0.0,1.80831,3.0,54.0,153.0,154.962,0.0789323,1.93499,1.30501,8.0,8.0,8.0,0.000811614,0.99555
+1276,42.5425,0.927984,0.0,1.0,1.56703,1.0,250.0,73.0,126.0,127.692,130.0,139.0,115.0,127.0,128.101,130.0,138.0,0.0,1.0,1.8294,4.0,56.0,161.0,157.353,0.0616427,1.97235,1.31856,8.0,8.0,8.0,0.000965935,0.995402
+1277,42.575867,0.927984,0.0,1.0,1.55329,1.0,240.0,75.0,126.0,127.621,130.0,140.0,115.0,127.0,128.092,130.0,138.0,0.0,0.0,1.82167,4.0,54.0,153.0,154.161,0.0574331,1.96163,1.33612,8.0,8.0,8.0,0.00089449,0.995439
+1278,42.609233,0.927984,0.0,1.0,1.56126,1.0,241.0,75.0,125.0,127.596,130.0,139.0,116.0,127.0,128.069,130.0,136.0,0.0,1.0,1.8455,4.0,54.0,135.0,151.815,0.0504315,1.98844,1.33725,8.0,8.0,8.0,0.000931642,0.995436
+1279,42.6426,0.932099,0.0,1.0,1.55857,1.0,243.0,75.0,125.0,127.625,130.0,139.0,115.0,127.0,128.072,130.0,137.0,0.0,1.0,1.83062,4.0,54.0,153.0,153.665,0.0581904,1.98073,1.31872,8.0,8.0,8.0,0.000805898,0.99553
+1280,42.675967,0.936214,0.0,1.0,1.55153,1.0,242.0,74.0,126.0,127.685,130.0,139.0,115.0,127.0,128.105,130.0,137.0,0.0,1.0,1.8225,4.0,55.0,153.0,156.041,0.0517518,1.96392,1.31639,8.0,8.0,8.0,0.00072588,0.995633
+1281,42.709333,0.927984,0.0,1.0,1.56618,1.0,241.0,75.0,125.0,127.625,130.0,139.0,116.0,127.0,128.044,129.0,137.0,0.0,0.0,1.81505,4.0,54.0,153.0,154.214,0.0425754,1.95083,1.29829,8.0,8.0,8.0,0.000965935,0.995419
+1282,42.7427,0.925926,0.0,1.0,1.56272,1.0,244.0,77.0,126.0,127.686,130.0,141.0,114.0,127.0,128.057,130.0,136.0,0.0,1.0,1.82902,4.0,52.0,153.0,155.953,0.0632287,1.98547,1.31293,8.0,8.0,8.0,0.000931642,0.995482
+1283,42.776067,0.930041,0.0,1.0,1.55975,1.0,243.0,75.0,126.0,127.677,130.0,140.0,115.0,127.0,128.074,130.0,138.0,0.0,1.0,1.82206,4.0,54.0,153.0,155.105,0.0424869,1.9463,1.31983,8.0,8.0,8.0,0.000860197,0.995505
+1284,42.809433,0.930041,0.0,1.0,1.55636,1.0,243.0,69.0,126.0,127.656,130.0,139.0,108.0,127.0,128.073,130.0,136.0,0.0,1.0,1.81465,4.0,59.0,153.0,154.132,0.0299526,1.9246,1.30752,8.0,8.0,8.0,0.000854481,0.995525
+1285,42.8428,0.932099,0.0,1.0,1.5507,1.0,240.0,76.0,126.0,127.66,130.0,140.0,116.0,127.0,128.061,130.0,137.0,0.0,0.0,1.79427,4.0,53.0,170.0,155.997,0.0493513,1.91091,1.26596,8.0,8.0,8.0,0.000857339,0.99549
+1286,42.876167,0.936214,0.0,1.0,1.54813,1.0,244.0,75.0,126.0,127.703,130.0,140.0,114.0,127.0,128.091,130.0,136.0,0.0,1.0,1.82061,4.0,54.0,170.0,157.039,0.0457848,1.98471,1.30311,8.0,8.0,8.0,0.000748743,0.995553
+1287,42.909533,0.932099,0.0,1.0,1.55895,1.0,244.0,73.0,126.0,127.703,130.0,152.0,113.0,127.0,128.095,130.0,137.0,0.0,0.0,1.80505,4.0,56.0,168.0,156.36,0.0480767,1.97489,1.31397,8.0,8.0,8.0,0.000808756,0.99549
+1288,42.9429,0.927984,0.0,1.0,1.56336,1.0,246.0,73.0,126.0,127.657,130.0,151.0,113.0,127.0,128.073,130.0,137.0,0.0,1.0,1.8104,4.0,57.0,153.0,153.644,0.0516147,1.97874,1.33062,8.0,8.0,8.0,0.00089449,0.995468
+1289,42.976267,0.932099,0.0,1.0,1.55571,1.0,244.0,72.0,126.0,127.646,130.0,168.0,113.0,127.0,128.105,130.0,137.0,0.0,0.0,1.77691,4.0,57.0,170.0,155.664,0.0430527,1.96449,1.31103,8.0,8.0,8.0,0.000805898,0.995533
+1290,43.009633,0.936214,0.0,1.0,1.53924,1.0,247.0,75.0,126.0,127.675,130.0,141.0,115.0,127.0,128.086,130.0,137.0,0.0,0.0,1.79654,4.0,54.0,153.0,156.268,0.0694016,1.94903,1.26278,8.0,8.0,8.0,0.000731596,0.995605
+1291,43.043,0.932099,0.0,1.0,1.54589,1.0,245.0,73.0,126.0,127.629,130.0,146.0,115.0,127.0,128.069,130.0,144.0,0.0,0.0,1.76107,3.0,56.0,153.0,152.327,0.0634402,1.94511,1.27738,8.0,8.0,8.0,0.000845908,0.99555
+1292,43.076367,0.932099,0.0,1.0,1.54807,1.0,247.0,75.0,126.0,127.659,130.0,154.0,114.0,127.0,128.078,129.0,139.0,0.0,0.0,1.74002,3.0,54.0,153.0,155.386,0.0846936,1.9294,1.27091,8.0,8.0,8.0,0.00081733,0.995562
+1293,43.109733,0.936214,0.0,1.0,1.53867,1.0,242.0,75.0,126.0,127.711,130.0,139.0,115.0,127.0,128.067,129.0,136.0,0.0,0.0,1.70321,4.0,54.0,180.0,158.067,0.125352,1.96464,1.25003,8.0,8.0,8.0,0.00072588,0.99565
+1294,43.1431,0.936214,0.0,1.0,1.55287,1.0,245.0,76.0,126.0,127.692,130.0,138.0,114.0,127.0,128.047,129.0,135.0,0.0,0.0,1.71574,3.0,53.0,180.0,155.253,0.163543,1.94935,1.26855,8.0,8.0,8.0,0.000763032,0.995756
+1295,43.176467,0.938272,0.0,1.0,1.43709,1.0,227.0,75.0,126.0,127.705,130.0,138.0,115.0,127.0,128.052,129.0,136.0,0.0,0.0,1.70681,3.0,53.0,180.0,155.635,0.181233,1.91428,1.28492,8.0,8.0,8.0,0.000754458,0.996059
+1296,43.209833,0.938272,0.0,1.0,1.50267,2.0,204.0,73.0,126.0,127.781,130.0,153.0,113.0,127.0,128.088,130.0,136.0,0.0,0.0,1.71748,3.0,56.0,180.0,160.283,0.181013,1.92154,1.27605,8.0,8.0,8.0,0.000743027,0.996151
+1297,43.2432,0.925926,0.0,1.0,1.40782,1.0,194.0,72.0,126.0,127.694,130.0,152.0,107.0,127.0,128.06,129.0,135.0,0.0,0.0,1.70877,3.0,56.0,180.0,155.683,0.224628,1.92078,1.26767,8.0,8.0,8.0,0.00100309,0.996193
+1298,43.276567,0.934156,0.0,1.0,1.3414,1.0,190.0,74.0,126.0,127.616,130.0,154.0,105.0,127.0,128.056,129.0,135.0,0.0,0.0,1.71339,3.0,55.0,153.0,152.694,0.247765,1.97569,1.33597,8.0,8.0,8.0,0.000905921,0.996671
+1299,43.309933,0.934156,0.0,1.0,1.29034,1.0,137.0,73.0,126.0,127.702,130.0,150.0,112.0,127.0,128.052,129.0,135.0,0.0,0.0,1.67277,3.0,56.0,180.0,156.479,0.213129,1.96489,1.31537,8.0,8.0,8.0,0.000903064,0.997039
+1300,43.3433,0.958848,0.0,1.0,1.25699,2.0,233.0,72.0,126.0,127.681,130.0,139.0,103.0,127.0,128.058,129.0,136.0,0.0,0.0,1.68066,3.0,57.0,180.0,154.706,0.252249,1.96491,1.29753,8.0,8.0,8.0,0.00104595,0.998022
+1301,43.376667,0.983539,0.0,1.0,1.21088,1.0,232.0,72.0,126.0,127.646,130.0,145.0,101.0,127.0,128.049,129.0,136.0,0.0,0.0,1.68864,3.0,57.0,180.0,154.783,0.22406,1.97703,1.32541,8.0,8.0,8.0,0.000831619,0.998811
+1302,43.410033,0.985597,0.0,1.0,1.23658,2.0,135.0,72.0,126.0,127.719,130.0,166.0,115.0,127.0,128.066,129.0,137.0,0.0,0.0,1.69514,3.0,57.0,180.0,157.195,0.208296,1.93908,1.32531,8.0,8.0,8.0,0.000734454,0.998883
+1303,43.4434,0.979424,0.0,1.0,1.21666,1.0,134.0,72.0,126.0,127.775,130.0,166.0,112.0,127.0,128.065,129.0,135.0,0.0,0.0,1.67332,3.0,57.0,180.0,158.177,0.209288,1.93482,1.33555,8.0,8.0,8.0,0.000760174,0.998874
+1304,43.476767,0.983539,0.0,1.0,1.25129,2.0,197.0,74.0,126.0,127.72,130.0,159.0,105.0,127.0,128.05,129.0,136.0,0.0,0.0,1.69151,3.0,55.0,180.0,157.157,0.208928,1.90748,1.33976,8.0,8.0,8.0,0.000837334,0.998808
+1305,43.510133,0.983539,0.0,1.0,1.24558,2.0,134.0,73.0,126.0,127.645,130.0,169.0,114.0,127.0,128.05,129.0,137.0,0.0,0.0,1.69516,3.0,55.0,161.0,154.479,0.223477,1.93452,1.30639,8.0,8.0,8.0,0.000814472,0.998823
+1306,43.5435,0.979424,0.0,1.0,1.23557,2.0,216.0,72.0,126.0,127.747,130.0,168.0,113.0,127.0,128.087,129.0,136.0,0.0,0.0,1.70509,3.0,57.0,180.0,158.237,0.223257,1.96786,1.31363,8.0,8.0,8.0,0.00086877,0.99878
+1307,43.576867,0.979424,0.0,1.0,1.23674,2.0,216.0,73.0,126.0,127.695,130.0,158.0,104.0,127.0,128.049,129.0,137.0,0.0,0.0,1.71073,3.0,56.0,180.0,156.143,0.214538,1.98756,1.3464,8.0,8.0,8.0,0.000917353,0.998723
+1308,43.610233,0.979424,0.0,1.0,1.23933,1.0,134.0,73.0,126.0,127.653,130.0,167.0,108.0,127.0,128.052,129.0,136.0,0.0,0.0,1.74013,3.0,56.0,161.0,154.13,0.246465,1.94763,1.32526,8.0,8.0,8.0,0.00102309,0.998603
+1309,43.6436,0.987654,0.0,1.0,1.28181,2.0,132.0,73.0,126.0,127.695,130.0,169.0,115.0,127.0,128.06,129.0,136.0,0.0,0.0,1.73059,3.0,56.0,168.0,154.657,0.232339,1.98328,1.3301,8.0,8.0,8.0,0.000900206,0.99872
+1310,43.676967,0.866255,0.0,1.0,1.80924,3.0,133.0,74.0,126.0,127.655,130.0,163.0,113.0,127.0,128.063,129.0,142.0,0.0,0.0,1.70291,3.0,56.0,161.0,154.033,0.731924,1.97731,1.3119,8.0,8.0,8.0,0.00121171,0.998411
+1311,43.710333,0.00205761,0.0,1.0,3.62138,6.0,240.0,74.0,126.0,127.671,130.0,157.0,115.0,127.0,128.046,129.0,151.0,0.0,0.0,1.67274,3.0,55.0,180.0,155.632,2.10192,1.95734,1.27597,8.0,8.0,8.0,0.00122314,0.99844
+1312,43.7437,0.00205761,0.0,1.0,3.68643,6.0,236.0,66.0,126.0,127.677,130.0,167.0,114.0,127.0,128.055,129.0,137.0,0.0,0.0,1.68939,3.0,62.0,180.0,155.097,1.77133,1.93058,1.26422,8.0,8.0,8.0,0.00144033,0.998234
+1313,43.777067,0.00205761,0.0,2.0,4.23218,6.0,189.0,74.0,126.0,127.679,130.0,138.0,115.0,127.0,128.057,129.0,136.0,0.0,0.0,1.65048,3.0,55.0,180.0,155.807,1.92494,1.9457,1.26473,8.0,8.0,8.0,0.00106596,0.998583
+1314,43.810433,0.0,0.0,2.0,4.91925,7.0,141.0,74.0,126.0,127.742,130.0,139.0,114.0,127.0,128.096,129.0,137.0,0.0,0.0,1.62235,3.0,55.0,180.0,158.836,2.02467,1.89856,1.24604,8.0,8.0,8.0,0.00114026,0.99848
+1315,43.8438,0.0,0.0,3.0,5.6158,8.0,192.0,75.0,126.0,127.691,130.0,139.0,115.0,127.0,128.055,129.0,136.0,0.0,0.0,1.62826,3.0,54.0,180.0,155.251,2.13247,1.88608,1.2483,8.0,8.0,8.0,0.00103452,0.998557
+1316,43.877167,0.0,0.0,3.0,5.59979,8.0,249.0,74.0,126.0,127.712,130.0,139.0,115.0,127.0,128.073,129.0,135.0,0.0,0.0,1.67899,3.0,55.0,180.0,157.805,1.98375,1.92184,1.27574,8.0,8.0,8.0,0.00135174,0.998277
+1317,43.910533,0.0,0.0,3.0,5.95416,8.0,245.0,75.0,126.0,127.67,130.0,139.0,115.0,127.0,128.115,129.0,136.0,0.0,0.0,1.68529,3.0,54.0,180.0,157.3,2.05205,1.96313,1.27798,8.0,8.0,8.0,0.00118313,0.998474
+1318,43.9439,0.0,0.0,3.0,6.21792,8.0,139.0,75.0,126.0,127.636,130.0,139.0,116.0,127.0,128.068,129.0,136.0,0.0,0.0,1.64504,3.0,54.0,180.0,153.848,2.05318,1.93583,1.27629,8.0,8.0,8.0,0.00104024,0.998554
+1319,43.977267,0.0,0.0,3.0,6.18924,8.0,189.0,73.0,126.0,127.692,130.0,140.0,115.0,127.0,128.035,129.0,136.0,0.0,0.0,1.63597,3.0,56.0,180.0,156.237,1.9132,1.89178,1.23816,8.0,8.0,8.0,0.00118027,0.998417
+1320,44.010633,0.0,0.0,3.0,6.29263,8.0,179.0,75.0,126.0,127.636,130.0,139.0,115.0,127.0,128.032,129.0,136.0,0.0,0.0,1.65066,3.0,54.0,180.0,154.112,2.08285,1.92788,1.23927,8.0,8.0,8.0,0.00151749,0.99812
+1321,44.044,0.0,0.0,3.0,6.24462,8.0,248.0,74.0,126.0,127.632,130.0,140.0,115.0,127.0,128.019,129.0,136.0,0.0,0.0,1.61364,3.0,55.0,161.0,152.396,1.98591,1.89452,1.22394,8.0,8.0,8.0,0.00131173,0.998311
+1322,44.077367,0.0,0.0,3.0,6.21347,8.0,153.0,74.0,126.0,127.678,130.0,140.0,115.0,127.0,128.031,129.0,137.0,0.0,0.0,1.65426,3.0,55.0,180.0,154.776,2.0056,1.85241,1.24371,8.0,8.0,8.0,0.00127458,0.998311
+1323,44.110733,0.0,0.0,3.0,6.24355,8.0,145.0,75.0,126.0,127.68,130.0,139.0,115.0,127.0,128.022,129.0,135.0,0.0,0.0,1.65614,3.0,54.0,180.0,154.553,2.01322,1.87417,1.24393,8.0,8.0,8.0,0.00117455,0.998457
+1324,44.1441,0.0,0.0,3.0,6.18976,8.0,254.0,75.0,126.0,127.688,130.0,140.0,116.0,127.0,128.064,129.0,135.0,0.0,0.0,1.64606,3.0,54.0,180.0,155.536,1.92466,1.92237,1.24989,8.0,8.0,8.0,0.00147462,0.998177
+1325,44.177467,0.0,0.0,4.0,6.34492,9.0,140.0,77.0,126.0,127.651,130.0,139.0,116.0,127.0,128.036,129.0,135.0,0.0,0.0,1.66853,3.0,52.0,180.0,154.987,1.98793,1.89468,1.24282,8.0,8.0,8.0,0.00126315,0.998317
+1326,44.210833,0.0,0.0,3.0,6.11493,8.0,141.0,75.0,126.0,127.715,130.0,139.0,116.0,127.0,128.028,129.0,137.0,0.0,0.0,1.64386,3.0,54.0,180.0,155.959,1.97807,1.93028,1.25789,8.0,8.0,8.0,0.00106596,0.998568
+1327,44.2442,0.0,0.0,3.0,6.27646,8.0,255.0,76.0,126.0,127.673,130.0,138.0,116.0,127.0,128.078,129.0,136.0,0.0,0.0,1.64158,3.0,53.0,180.0,155.61,2.02501,1.87755,1.21553,8.0,8.0,8.0,0.00145176,0.998145
+1328,44.277567,0.0,0.0,3.0,6.21803,8.0,142.0,73.0,126.0,127.645,130.0,160.0,115.0,127.0,128.029,129.0,135.0,0.0,0.0,1.62748,3.0,56.0,153.0,152.232,1.9999,1.8556,1.22273,8.0,8.0,8.0,0.00127172,0.998308
+1329,44.310933,0.0,0.0,3.0,6.24618,8.0,142.0,74.0,125.0,127.333,129.0,155.0,116.0,127.0,128.144,129.0,136.0,0.0,0.0,1.73092,3.0,55.0,135.0,144.37,1.95067,1.9058,1.22605,8.0,8.0,8.0,0.0011174,0.998511
+1330,44.3443,0.0,0.0,5.0,38.2192,126.0,255.0,75.0,117.0,122.325,128.0,150.0,116.0,127.0,130.744,134.0,151.0,0.0,1.0,6.53097,12.0,54.0,116.0,118.415,32.7178,5.56836,3.24978,8.0,8.0,8.0,0.00696731,0.647688
+1331,44.377667,0.0,0.0,9.0,69.7465,205.0,255.0,74.0,107.0,118.027,128.0,170.0,110.0,127.0,133.033,140.0,165.0,0.0,1.0,11.7072,23.0,61.0,116.0,116.197,32.6141,5.06814,3.18852,8.0,8.0,8.0,0.00185471,0.293499
+1332,44.411033,0.0,0.0,9.0,70.4416,206.0,255.0,73.0,108.0,118.079,128.0,170.0,105.0,127.0,133.362,141.0,165.0,0.0,1.0,11.6642,23.0,59.0,118.0,117.986,2.83134,2.03317,1.42606,8.0,8.0,8.0,0.00198903,0.282636
+1333,44.4444,0.0,0.0,10.0,71.321,207.0,255.0,73.0,108.0,118.011,128.0,170.0,112.0,127.0,133.522,141.0,164.0,0.0,1.0,11.7798,23.0,58.0,118.0,117.947,2.79542,1.94202,1.26947,8.0,8.0,8.0,0.00178612,0.264861
+1334,44.477767,0.0,0.0,11.0,71.8525,207.0,255.0,73.0,108.0,117.87,127.0,171.0,111.0,127.0,133.623,141.0,163.0,0.0,1.0,11.8673,23.0,58.0,118.0,118.472,2.33202,1.85703,1.18242,8.0,8.0,8.0,0.00189186,0.250837
+1335,44.511133,0.0,0.0,11.0,71.9982,207.0,255.0,72.0,108.0,117.899,127.0,172.0,109.0,127.0,133.618,141.0,162.0,0.0,1.0,11.9153,23.0,57.0,118.0,118.446,2.58012,2.00543,1.31313,8.0,8.0,8.0,0.00176612,0.246736
+1336,44.5445,0.0,0.0,12.0,72.8211,209.0,255.0,75.0,108.0,117.984,128.0,163.0,115.0,127.0,133.707,141.0,164.0,0.0,1.0,11.8531,23.0,56.0,119.0,119.232,2.34808,1.93363,1.25534,8.0,8.0,8.0,0.00166895,0.238283
+1337,44.577867,0.0,0.0,13.0,73.5035,209.0,255.0,71.0,108.0,118.004,128.0,171.0,106.0,127.0,133.697,141.0,164.0,0.0,1.0,11.799,23.0,61.0,119.0,120.416,2.47501,1.9158,1.21893,8.0,8.0,8.0,0.00167753,0.203718
+1338,44.611233,0.0,0.0,13.0,74.3531,211.0,255.0,72.0,108.0,117.863,127.0,171.0,106.0,127.0,133.693,141.0,163.0,0.0,1.0,11.9257,23.0,60.0,119.0,118.928,2.72968,1.88671,1.20917,8.0,8.0,8.0,0.0017404,0.205576
+1339,44.6446,0.0,0.0,13.0,74.2449,211.0,255.0,71.0,108.0,117.854,127.0,174.0,113.0,127.0,133.822,141.0,164.0,0.0,1.0,12.0279,24.0,57.0,119.0,119.05,2.28579,1.91948,1.25624,8.0,8.0,8.0,0.00180613,0.204744
+1340,44.677967,0.0,0.0,14.0,75.1984,211.0,255.0,72.0,108.0,117.817,127.0,172.0,112.0,127.0,133.788,141.0,164.0,0.0,1.0,11.9868,23.0,60.0,119.0,117.791,2.93184,1.93831,1.27463,8.0,8.0,8.0,0.0019976,0.180673
+1341,44.711333,0.0,0.0,15.0,76.5979,213.0,255.0,72.0,108.0,117.893,127.0,178.0,115.0,127.0,133.833,141.0,164.0,0.0,1.0,11.9552,23.0,58.0,119.0,118.056,2.72589,1.89167,1.18,8.0,8.0,8.0,0.00180898,0.154973
+1342,44.7447,0.0,0.0,16.0,76.7363,213.0,255.0,71.0,108.0,117.809,127.0,172.0,112.0,127.0,133.759,141.0,165.0,0.0,1.0,11.9669,23.0,58.0,119.0,117.776,2.52934,1.85079,1.14569,8.0,8.0,8.0,0.00180898,0.141224
+1343,44.778067,0.0,0.0,16.0,77.15,214.0,255.0,73.0,107.0,117.711,127.0,169.0,113.0,127.0,133.771,141.0,165.0,0.0,1.0,12.1288,24.0,60.0,118.0,117.581,2.62723,1.96083,1.26492,8.0,8.0,8.0,0.00181756,0.143136
+1344,44.811433,0.0,0.0,16.0,77.1168,214.0,255.0,72.0,107.0,117.849,127.0,179.0,113.0,127.0,133.767,141.0,165.0,0.0,1.0,11.9634,23.0,59.0,119.0,118.617,2.21986,1.91781,1.23238,8.0,8.0,8.0,0.00177183,0.142321
+1345,44.8448,0.0,0.0,16.0,76.9113,214.0,255.0,75.0,108.0,117.914,127.0,175.0,105.0,127.0,133.802,141.0,166.0,0.0,1.0,11.9226,23.0,60.0,119.0,119.422,2.41439,1.93362,1.18831,8.0,8.0,8.0,0.00180613,0.140143
+1346,44.878167,0.0,0.0,16.0,76.9579,214.0,255.0,73.0,108.0,117.92,127.0,174.0,110.0,127.0,133.806,141.0,164.0,0.0,1.0,11.9249,23.0,58.0,119.0,118.212,2.16386,1.86211,1.11837,8.0,8.0,8.0,0.00187471,0.143427
+1347,44.911533,0.0,0.0,15.0,76.4567,213.0,255.0,74.0,107.0,117.807,127.0,176.0,105.0,127.0,133.636,141.0,166.0,0.0,1.0,11.9864,23.0,59.0,118.0,117.685,2.60526,1.95553,1.30167,8.0,8.0,8.0,0.00169753,0.151935
+1348,44.9449,0.0,0.0,15.0,76.6578,214.0,255.0,73.0,108.0,117.898,127.0,176.0,103.0,127.0,133.607,141.0,163.0,0.0,1.0,11.8715,23.0,60.0,118.0,116.763,2.56127,1.97773,1.27201,8.0,8.0,8.0,0.00175469,0.150734
+1349,44.978267,0.0,0.0,15.0,76.6377,214.0,255.0,72.0,107.0,117.809,127.0,170.0,106.0,127.0,133.757,141.0,165.0,0.0,1.0,11.9781,23.0,62.0,119.0,118.711,2.16929,1.84593,1.15429,8.0,8.0,8.0,0.0019233,0.150563
+1350,45.011633,0.0,0.0,15.0,76.5025,213.0,255.0,74.0,107.0,117.733,127.0,176.0,111.0,127.0,133.713,141.0,164.0,0.0,1.0,12.0671,24.0,59.0,118.0,117.681,2.54027,1.9249,1.23591,8.0,8.0,8.0,0.0017947,0.148568
+1351,45.045,0.0,0.0,15.0,76.3556,213.0,255.0,73.0,107.0,117.73,127.0,164.0,115.0,127.0,133.723,141.0,165.0,0.0,1.0,12.1034,24.0,60.0,119.0,117.039,2.30862,1.95338,1.2698,8.0,8.0,8.0,0.00194616,0.15012
+1352,45.078367,0.0,0.0,15.0,76.377,214.0,255.0,74.0,108.0,117.81,127.0,172.0,110.0,127.0,133.619,141.0,163.0,0.0,1.0,11.9227,23.0,60.0,118.0,116.966,2.64749,1.98128,1.31225,8.0,8.0,8.0,0.00189186,0.150786
+1353,45.111733,0.0,0.0,15.0,76.474,214.0,255.0,72.0,108.0,117.855,127.0,172.0,107.0,127.0,133.652,141.0,165.0,0.0,1.0,11.9303,23.0,57.0,118.0,117.259,2.44195,1.8582,1.17333,8.0,8.0,8.0,0.00182327,0.152509
+1354,45.1451,0.0,0.0,15.0,76.3107,213.0,255.0,75.0,108.0,117.911,127.0,173.0,107.0,127.0,133.689,141.0,164.0,0.0,1.0,11.8895,23.0,58.0,119.0,118.652,2.1856,1.81954,1.12293,8.0,8.0,8.0,0.00199188,0.158142
+1355,45.178467,0.0,0.0,17.0,77.2629,214.0,255.0,73.0,107.0,117.782,127.0,165.0,113.0,127.0,133.651,141.0,166.0,0.0,1.0,12.0283,24.0,58.0,118.0,116.815,2.81761,2.04222,1.32171,8.0,8.0,8.0,0.00192615,0.121059
+1356,45.211833,0.0,0.0,19.0,80.1453,217.0,255.0,72.0,108.0,117.913,127.0,173.0,109.0,127.0,133.773,141.0,166.0,0.0,1.0,11.9158,23.0,59.0,119.0,116.704,3.44934,1.92675,1.22357,8.0,8.0,8.0,0.00181756,0.0922868
+1357,45.2452,0.0,0.0,21.0,82.004,219.0,255.0,72.0,108.0,118.046,127.0,166.0,112.0,127.0,133.657,141.0,164.0,0.0,1.0,11.775,23.0,57.0,119.0,118.72,3.07869,1.89051,1.21144,8.0,8.0,8.0,0.0016318,0.088083
+1358,45.278567,0.0,0.0,22.0,82.7405,219.0,255.0,73.0,108.0,118.084,127.0,169.0,107.0,127.0,133.623,141.0,164.0,0.0,1.0,11.7174,23.0,56.0,119.0,118.237,2.75399,1.81613,1.13973,8.0,8.0,8.0,0.00198045,0.0872599
+1359,45.311933,0.0,0.0,24.0,85.1137,223.0,255.0,71.0,108.0,118.038,128.0,154.0,113.0,127.0,133.572,141.0,164.0,0.0,1.0,11.7713,23.0,58.0,119.0,119.505,3.27164,1.99097,1.27051,8.0,8.0,8.0,0.00187186,0.091921
+1360,45.3453,0.0,0.0,25.0,85.5158,223.0,255.0,71.0,108.0,117.972,127.0,170.0,109.0,127.0,133.489,141.0,163.0,0.0,1.0,11.7804,23.0,57.0,118.0,117.225,2.67653,2.03102,1.2734,8.0,8.0,8.0,0.00171754,0.0923811
+1361,45.378667,0.0,0.0,25.0,85.9364,224.0,255.0,73.0,108.0,117.991,127.0,169.0,107.0,127.0,133.6,141.0,166.0,0.0,1.0,11.8082,23.0,57.0,118.0,117.562,2.34436,1.884,1.18418,8.0,8.0,8.0,0.00173754,0.0947102
+1362,45.412033,0.0,0.0,26.0,87.024,225.0,255.0,74.0,108.0,118.101,128.0,166.0,109.0,127.0,133.464,140.0,163.0,0.0,1.0,11.6519,23.0,57.0,118.0,118.251,2.59142,1.92746,1.21288,8.0,8.0,8.0,0.00170896,0.0954704
+1363,45.4454,0.0,0.0,26.0,87.2648,226.0,255.0,74.0,108.0,118.013,127.0,170.0,110.0,127.0,133.428,141.0,165.0,0.0,1.0,11.7386,23.0,58.0,118.0,117.534,2.57807,2.01063,1.28777,8.0,8.0,8.0,0.00183756,0.0973394
+1364,45.478767,0.0,0.0,26.0,87.3034,225.0,255.0,73.0,108.0,118.168,128.0,172.0,110.0,127.0,133.416,141.0,164.0,0.0,1.0,11.5723,23.0,59.0,118.0,118.955,2.24522,1.94344,1.24863,8.0,8.0,8.0,0.00186614,0.0963506
+1365,45.512133,0.0,0.0,26.0,87.3113,225.0,255.0,74.0,108.0,118.233,128.0,164.0,110.0,127.0,133.41,140.0,164.0,0.0,1.0,11.5282,23.0,57.0,118.0,118.089,2.5892,1.93595,1.24449,8.0,8.0,8.0,0.00172039,0.0956304
+1366,45.5455,0.0,0.0,26.0,87.5654,226.0,255.0,71.0,108.0,118.286,128.0,172.0,114.0,127.0,133.423,141.0,162.0,0.0,1.0,11.4788,23.0,58.0,118.0,117.725,2.38757,1.87825,1.15911,8.0,8.0,8.0,0.00185757,0.0966621
+1367,45.578867,0.0,0.0,26.0,86.8983,224.0,255.0,72.0,108.0,118.12,128.0,168.0,109.0,127.0,133.454,141.0,165.0,0.0,1.0,11.6655,23.0,59.0,118.0,117.854,2.55501,1.9902,1.28056,8.0,8.0,8.0,0.00180327,0.0957247
+1368,45.612233,0.0,0.0,26.0,87.1271,225.0,255.0,72.0,108.0,118.181,127.0,168.0,109.0,127.0,133.415,140.0,164.0,0.0,1.0,11.5912,23.0,57.0,118.0,118.114,2.61499,2.02372,1.30764,8.0,8.0,8.0,0.00178326,0.0953218
+1369,45.6456,0.0,0.0,26.0,87.337,225.0,255.0,73.0,108.0,118.208,127.0,166.0,107.0,127.0,133.499,141.0,163.0,0.0,1.0,11.595,23.0,56.0,119.0,118.473,2.19496,1.86968,1.18226,8.0,8.0,8.0,0.0017404,0.0962649
+1370,45.678967,0.0,0.0,26.0,87.3959,226.0,255.0,37.0,108.0,118.117,127.0,176.0,112.0,127.0,133.461,141.0,164.0,0.0,1.0,11.6355,23.0,91.0,118.0,117.371,2.41068,1.89199,1.19592,8.0,8.0,8.0,0.00115169,0.0974851
+1371,45.712333,0.0,0.0,26.0,87.2928,225.0,255.0,70.0,108.0,118.204,128.0,172.0,107.0,127.0,133.532,141.0,164.0,0.0,1.0,11.6534,23.0,59.0,119.0,117.932,2.2092,1.91304,1.24057,8.0,8.0,8.0,0.00172325,0.0972279
+1372,45.7457,0.0,0.0,26.0,87.1909,224.0,255.0,65.0,108.0,117.889,127.0,168.0,104.0,127.0,133.655,141.0,164.0,0.0,1.0,11.8811,23.0,64.0,119.0,118.876,2.58509,2.0394,1.28537,8.0,8.0,8.0,0.00189472,0.0960048
+1373,45.779067,0.0,0.0,26.0,87.2481,225.0,255.0,72.0,108.0,118.107,128.0,169.0,108.0,127.0,133.68,141.0,164.0,0.0,1.0,11.7423,23.0,57.0,119.0,119.092,2.40943,1.94312,1.22835,8.0,8.0,8.0,0.00172325,0.0953532
+1374,45.812433,0.0,0.0,27.0,87.5233,225.0,255.0,69.0,108.0,118.125,128.0,169.0,108.0,127.0,133.707,141.0,164.0,0.0,1.0,11.7313,23.0,60.0,120.0,120.2,2.2313,1.83819,1.16363,8.0,8.0,8.0,0.00180327,0.0966964
+1375,45.8458,0.0,0.0,26.0,87.4516,226.0,255.0,72.0,108.0,117.951,127.0,170.0,109.0,127.0,133.657,141.0,165.0,0.0,1.0,11.8893,23.0,57.0,119.0,118.42,2.69877,1.97311,1.28867,8.0,8.0,8.0,0.00171182,0.0980424
+1376,45.879167,0.0,0.0,27.0,87.3629,226.0,255.0,71.0,108.0,117.952,127.0,169.0,111.0,127.0,133.674,141.0,162.0,0.0,1.0,11.8563,23.0,58.0,119.0,118.25,2.3778,1.93954,1.25545,8.0,8.0,8.0,0.00172897,0.0972508
+1377,45.912533,0.0,0.0,26.0,87.0232,225.0,255.0,71.0,108.0,118.056,127.0,168.0,110.0,127.0,133.67,141.0,164.0,0.0,1.0,11.7479,23.0,58.0,119.0,118.761,2.41311,1.87867,1.2067,8.0,8.0,8.0,0.0017947,0.0960963
+1378,45.9459,0.0,0.0,26.0,87.5741,225.0,255.0,73.0,108.0,118.1,128.0,169.0,109.0,127.0,133.729,141.0,164.0,0.0,1.0,11.7544,23.0,57.0,119.0,118.921,2.45491,1.90109,1.18679,8.0,8.0,8.0,0.00174897,0.0974137
+1379,45.979267,0.0,0.0,27.0,87.9506,226.0,255.0,72.0,108.0,118.093,128.0,169.0,112.0,127.0,133.632,141.0,163.0,0.0,1.0,11.742,23.0,57.0,119.0,120.239,2.21931,1.91778,1.21779,8.0,8.0,8.0,0.00165466,0.0980195
+1380,46.012633,0.0,0.0,27.0,88.3728,226.0,255.0,72.0,108.0,118.089,128.0,171.0,110.0,127.0,133.618,141.0,163.0,0.0,1.0,11.7037,23.0,58.0,119.0,120.288,2.55382,1.9211,1.23417,8.0,8.0,8.0,0.00172039,0.0985854
+1381,46.046,0.0,0.0,29.0,89.9116,228.0,255.0,71.0,108.0,118.016,128.0,167.0,111.0,127.0,133.684,141.0,163.0,0.0,1.0,11.8041,23.0,58.0,119.0,120.991,2.63477,1.85026,1.16888,8.0,8.0,8.0,0.00172325,0.101843
+1382,46.079367,0.0,0.0,31.0,91.4876,229.0,255.0,71.0,108.0,118.286,128.0,169.0,109.0,127.0,133.619,141.0,163.0,0.0,1.0,11.5744,23.0,58.0,120.0,122.33,2.8666,1.85238,1.16771,8.0,8.0,8.0,0.00175754,0.104132
+1383,46.112733,0.0,0.0,32.0,92.586,231.0,255.0,75.0,108.0,118.277,128.0,183.0,112.0,127.0,133.638,141.0,168.0,0.0,1.0,11.6519,23.0,61.0,120.0,122.115,2.81152,1.9564,1.26614,8.0,8.0,8.0,0.00186328,0.107139
+1384,46.1461,0.0,0.0,34.0,94.4485,233.0,255.0,75.0,108.0,118.255,128.0,177.0,108.0,127.0,133.714,141.0,163.0,0.0,1.0,11.6358,23.0,59.0,120.0,121.735,2.87369,1.92661,1.26222,8.0,8.0,8.0,0.00168896,0.111837
+1385,46.179467,0.0,0.0,34.0,94.8473,233.0,255.0,71.0,108.0,118.208,128.0,172.0,113.0,127.0,133.664,141.0,164.0,0.0,1.0,11.6711,23.0,60.0,120.0,122.58,2.50992,1.89593,1.18485,8.0,8.0,8.0,0.00162894,0.11376
+1386,46.212833,0.0,0.0,34.0,95.4704,234.0,255.0,71.0,108.0,118.364,128.0,159.0,110.0,127.0,133.607,141.0,163.0,0.0,1.0,11.5212,23.0,58.0,120.0,122.898,2.21059,1.83523,1.11485,8.0,8.0,8.0,0.00178612,0.116295
+1387,46.2462,0.0,0.0,34.0,94.9887,233.0,255.0,74.0,108.0,118.369,128.0,171.0,110.0,127.0,133.617,141.0,163.0,0.0,1.0,11.5483,23.0,57.0,120.0,123.446,2.69666,1.98428,1.25629,8.0,8.0,8.0,0.0017947,0.112863
+1388,46.279567,0.0,0.0,34.0,94.7941,233.0,255.0,71.0,108.0,118.406,128.0,173.0,110.0,127.0,133.656,141.0,163.0,0.0,1.0,11.5006,23.0,59.0,120.0,123.537,2.47236,2.03954,1.31171,8.0,8.0,8.0,0.00160322,0.1111
+1389,46.312933,0.0,0.0,34.0,94.7821,233.0,255.0,75.0,108.0,118.434,128.0,159.0,110.0,127.0,133.667,141.0,164.0,0.0,1.0,11.518,23.0,59.0,121.0,126.067,2.08488,1.85536,1.17173,8.0,8.0,8.0,0.00182327,0.11184
+1390,46.3463,0.0,0.0,34.0,94.9845,234.0,255.0,68.0,108.0,118.371,128.0,159.0,112.0,127.0,133.627,141.0,164.0,0.0,1.0,11.5288,23.0,60.0,120.0,124.533,2.29702,1.88523,1.19604,8.0,8.0,8.0,0.00174611,0.11372
+1391,46.379667,0.0,0.0,34.0,94.9804,234.0,255.0,73.0,108.0,118.382,128.0,157.0,111.0,127.0,133.609,141.0,163.0,0.0,1.0,11.5404,23.0,57.0,120.0,124.395,2.2031,1.934,1.26237,8.0,8.0,8.0,0.00180041,0.114055
+1392,46.413033,0.0,0.0,34.0,94.3572,233.0,255.0,73.0,108.0,118.309,128.0,153.0,106.0,127.0,133.643,141.0,165.0,0.0,1.0,11.5555,23.0,56.0,120.0,122.791,2.53287,2.01812,1.28747,8.0,8.0,8.0,0.00189186,0.11148
+1393,46.4464,0.0,0.0,34.0,94.6527,233.0,255.0,74.0,108.0,118.333,128.0,160.0,110.0,127.0,133.663,141.0,168.0,0.0,1.0,11.5426,23.0,58.0,120.0,122.972,2.56845,1.89174,1.18394,8.0,8.0,8.0,0.00157179,0.111691
+1394,46.479767,0.0,0.0,34.0,94.8103,233.0,255.0,70.0,108.0,118.372,128.0,164.0,114.0,128.0,133.701,141.0,167.0,0.0,1.0,11.5346,23.0,59.0,121.0,125.335,2.25175,1.85026,1.1708,8.0,8.0,8.0,0.00165466,0.111791
+1395,46.513133,0.0,0.0,34.0,95.0132,233.0,255.0,74.0,108.0,118.475,128.0,170.0,112.0,127.0,133.73,141.0,166.0,0.0,1.0,11.5076,23.0,60.0,121.0,125.613,2.72509,2.00199,1.30748,8.0,8.0,8.0,0.00169467,0.112906
+1396,46.5465,0.0,0.0,34.0,95.169,234.0,255.0,74.0,108.0,118.529,128.0,170.0,112.0,127.0,133.761,141.0,165.0,0.0,1.0,11.4283,22.0,61.0,122.0,125.489,2.25322,1.93978,1.2527,8.0,8.0,8.0,0.00184614,0.113752
+1397,46.579867,0.0,0.0,34.0,94.6302,232.0,255.0,75.0,108.0,118.402,128.0,169.0,112.0,127.0,133.751,141.0,167.0,0.0,1.0,11.5505,23.0,57.0,121.0,125.044,2.6638,1.90782,1.26965,8.0,8.0,8.0,0.00174611,0.110354
+1398,46.613233,0.0,0.0,35.0,95.1899,233.0,255.0,72.0,108.0,118.529,128.0,160.0,113.0,127.0,133.727,141.0,165.0,0.0,1.0,11.4089,23.0,57.0,122.0,125.406,2.55528,1.95067,1.25063,8.0,8.0,8.0,0.00170039,0.111888
+1399,46.6466,0.0,0.0,35.0,95.1522,233.0,255.0,74.0,108.0,118.469,128.0,166.0,112.0,127.0,133.766,141.0,166.0,0.0,1.0,11.5102,23.0,61.0,122.0,125.202,2.21813,1.96758,1.25065,8.0,8.0,8.0,0.00170039,0.112823
+1400,46.679967,0.0,0.0,34.0,95.0522,233.0,255.0,72.0,108.0,118.449,128.0,173.0,114.0,127.0,133.737,141.0,164.0,0.0,1.0,11.4707,23.0,58.0,121.0,124.509,2.5426,2.0171,1.31501,8.0,8.0,8.0,0.00168896,0.113623
+1401,46.713333,0.0,0.0,34.0,95.0396,234.0,255.0,74.0,108.0,118.359,128.0,174.0,112.0,127.0,133.753,141.0,163.0,0.0,1.0,11.5876,23.0,57.0,121.0,124.439,2.14761,1.80897,1.17348,8.0,8.0,8.0,0.00181184,0.114138
+1402,46.7467,0.0,0.0,35.0,95.2158,233.0,255.0,75.0,108.0,118.443,128.0,172.0,112.0,128.0,133.803,141.0,164.0,0.0,1.0,11.5133,23.0,57.0,122.0,126.779,2.46214,1.90149,1.23484,8.0,8.0,8.0,0.00176898,0.112048
+1403,46.780067,0.0,0.0,35.0,95.4414,233.0,255.0,75.0,108.0,118.464,128.0,169.0,113.0,127.0,133.774,141.0,166.0,0.0,1.0,11.5232,23.0,57.0,121.0,124.643,2.52049,1.94662,1.25456,8.0,8.0,8.0,0.00167181,0.112992
+1404,46.813433,0.0,0.0,35.0,95.4005,233.0,255.0,75.0,108.0,118.379,128.0,153.0,107.0,128.0,133.831,141.0,165.0,0.0,1.0,11.5645,23.0,61.0,122.0,125.966,2.21532,1.93612,1.22774,8.0,8.0,8.0,0.0017604,0.113855
+1405,46.8468,0.0,0.0,35.0,95.1247,234.0,255.0,74.0,108.0,118.247,128.0,172.0,111.0,127.0,133.808,141.0,166.0,0.0,1.0,11.7185,23.0,57.0,121.0,124.536,2.4489,1.92032,1.19784,8.0,8.0,8.0,0.00174897,0.113597
+1406,46.880167,0.0,0.0,35.0,95.4361,234.0,255.0,74.0,108.0,118.24,128.0,173.0,111.0,127.0,133.902,141.0,165.0,0.0,1.0,11.7487,23.0,61.0,122.0,124.857,2.13477,1.78577,1.15889,8.0,8.0,8.0,0.00172611,0.114335
+1407,46.913533,0.0,0.0,34.0,95.1769,233.0,255.0,74.0,108.0,118.409,128.0,170.0,110.0,127.0,133.838,141.0,166.0,0.0,1.0,11.603,23.0,57.0,122.0,125.705,2.90255,2.00375,1.2915,8.0,8.0,8.0,0.00190043,0.111948
+1408,46.9469,0.0,0.0,34.0,94.9224,233.0,255.0,74.0,108.0,118.226,128.0,168.0,109.0,127.0,133.814,141.0,165.0,0.0,1.0,11.7233,23.0,57.0,121.0,124.895,2.56106,2.01908,1.29841,8.0,8.0,8.0,0.00170039,0.113029
+1409,46.980267,0.0,0.0,34.0,95.0083,233.0,255.0,71.0,108.0,118.306,128.0,167.0,107.0,128.0,133.812,141.0,165.0,0.0,1.0,11.6537,23.0,58.0,121.0,125.369,2.12222,1.86409,1.15516,8.0,8.0,8.0,0.00187757,0.1131
+1410,47.013633,0.0,0.0,34.0,94.9626,233.0,255.0,75.0,108.0,118.468,128.0,163.0,111.0,127.0,133.655,141.0,166.0,0.0,1.0,11.4851,23.0,58.0,121.0,125.607,2.37661,1.88584,1.19058,8.0,8.0,8.0,0.00171182,0.111711
+1411,47.047,0.0,0.0,34.0,94.9623,233.0,255.0,74.0,108.0,118.549,128.0,165.0,111.0,127.0,133.614,141.0,164.0,0.0,1.0,11.4095,23.0,59.0,120.0,124.261,2.23127,1.92022,1.22557,8.0,8.0,8.0,0.00176898,0.111726
+1412,47.080367,0.0,0.0,35.0,95.5346,234.0,255.0,73.0,109.0,118.554,128.0,171.0,108.0,127.0,133.537,140.0,164.0,0.0,1.0,11.3296,22.0,61.0,120.0,124.765,2.40144,1.96217,1.28984,8.0,8.0,8.0,0.00178041,0.114801
+1413,47.113733,0.0,0.0,35.0,95.4086,235.0,255.0,72.0,108.0,118.41,128.0,170.0,110.0,127.0,133.612,141.0,164.0,0.0,1.0,11.5081,23.0,60.0,121.0,124.937,2.30405,1.86902,1.22788,8.0,8.0,8.0,0.00177469,0.11679
+1414,47.1471,0.0,0.0,35.0,95.3817,234.0,255.0,73.0,109.0,118.568,128.0,163.0,111.0,128.0,133.705,141.0,164.0,0.0,1.0,11.3748,22.0,58.0,122.0,127.547,2.13778,1.81195,1.18857,8.0,8.0,8.0,0.00185471,0.115384
+1415,47.180467,0.0,0.0,35.0,95.4137,234.0,255.0,74.0,108.0,118.492,128.0,168.0,111.0,127.0,133.601,141.0,165.0,0.0,1.0,11.4574,23.0,56.0,121.0,125.811,2.5847,1.95902,1.29244,8.0,8.0,8.0,0.00173754,0.114781
+1416,47.213833,0.0,0.0,35.0,95.8556,235.0,255.0,74.0,108.0,118.502,128.0,167.0,108.0,127.0,133.621,141.0,165.0,0.0,1.0,11.4025,23.0,57.0,121.0,125.976,2.26908,1.92302,1.22278,8.0,8.0,8.0,0.00174897,0.116109
+1417,47.2472,0.0,0.0,35.0,95.8147,234.0,255.0,73.0,108.0,118.321,128.0,161.0,112.0,127.0,133.656,141.0,166.0,0.0,1.0,11.5821,23.0,59.0,121.0,125.986,2.30167,1.91333,1.21568,8.0,8.0,8.0,0.00172897,0.115506
+1418,47.280567,0.0,0.0,36.0,96.2555,235.0,255.0,74.0,108.0,118.428,128.0,151.0,110.0,127.0,133.797,141.0,165.0,0.0,1.0,11.5678,23.0,59.0,122.0,128.042,2.48153,1.91465,1.21661,8.0,8.0,8.0,0.00173468,0.116429
+1419,47.313933,0.0,0.0,36.0,96.5973,235.0,255.0,74.0,108.0,118.635,128.0,164.0,111.0,127.0,133.776,141.0,165.0,0.0,1.0,11.4194,23.0,60.0,122.0,128.991,2.21841,1.91925,1.21644,8.0,8.0,8.0,0.00186328,0.116758
+1420,47.3473,0.0,0.0,37.0,97.7371,236.0,255.0,73.0,108.0,118.519,128.0,166.0,112.0,127.0,133.755,141.0,164.0,0.0,1.0,11.4746,23.0,59.0,122.0,128.202,2.61453,1.97598,1.27294,8.0,8.0,8.0,0.00182613,0.118078
+1421,47.380667,0.0,0.0,37.0,98.0998,237.0,255.0,72.0,108.0,118.543,128.0,169.0,108.0,127.0,133.818,141.0,164.0,0.0,1.0,11.5178,23.0,58.0,122.0,128.536,2.11961,1.84745,1.17455,8.0,8.0,8.0,0.00178041,0.120199
+1422,47.414033,0.0,0.0,37.0,97.9516,237.0,255.0,72.0,108.0,118.386,128.0,176.0,112.0,128.0,133.814,141.0,164.0,0.0,1.0,11.6305,23.0,60.0,122.0,130.218,2.32006,1.95497,1.22801,8.0,8.0,8.0,0.00178612,0.119639
+1423,47.4474,0.0,0.0,38.0,98.161,237.0,255.0,74.0,108.0,118.758,128.0,172.0,110.0,127.0,133.789,141.0,166.0,0.0,1.0,11.4106,23.0,59.0,123.0,131.536,2.39664,2.0923,1.3214,8.0,8.0,8.0,0.00184042,0.119499
+1424,47.480767,0.0,0.0,37.0,97.8467,236.0,255.0,77.0,109.0,118.976,129.0,167.0,112.0,128.0,133.772,141.0,163.0,0.0,1.0,11.175,22.0,58.0,123.0,133.904,2.23651,1.98275,1.2803,8.0,8.0,8.0,0.00183471,0.115644
+1425,47.514133,0.0,0.0,37.0,97.6246,235.0,255.0,73.0,108.0,118.845,128.0,155.0,112.0,128.0,133.626,141.0,167.0,0.0,1.0,11.1997,22.0,60.0,123.0,131.872,2.47044,1.93156,1.24871,8.0,8.0,8.0,0.00185185,0.113937
+1426,47.5475,0.0,0.0,38.0,97.869,236.0,255.0,74.0,108.0,118.736,128.0,152.0,108.0,128.0,133.727,141.0,163.0,0.0,1.0,11.3008,23.0,56.0,123.0,131.67,2.18487,1.84598,1.2307,8.0,8.0,8.0,0.00183471,0.115721
+1427,47.580867,0.0,0.0,38.0,98.3043,237.0,255.0,72.0,108.0,118.635,128.0,174.0,109.0,128.0,133.863,141.0,164.0,0.0,1.0,11.4884,23.0,57.0,123.0,131.544,2.44691,2.01534,1.3197,8.0,8.0,8.0,0.00170896,0.119362
+1428,47.614233,0.0,0.0,38.0,98.4379,237.0,255.0,74.0,109.0,118.778,128.0,163.0,106.0,128.0,133.835,141.0,163.0,0.0,1.0,11.3026,22.0,56.0,123.0,131.384,2.51214,1.98321,1.29284,8.0,8.0,8.0,0.00177469,0.118624
+1429,47.6476,0.0,0.0,38.0,98.3185,237.0,255.0,73.0,108.0,118.727,128.0,174.0,104.0,128.0,133.884,141.0,165.0,0.0,1.0,11.3973,23.0,57.0,123.0,131.937,2.29668,1.86139,1.187,8.0,8.0,8.0,0.00172325,0.120242
+1430,47.680967,0.0,0.0,38.0,98.4677,238.0,255.0,75.0,108.0,118.602,128.0,169.0,105.0,128.0,133.872,141.0,164.0,0.0,1.0,11.5184,23.0,58.0,123.0,132.079,2.7081,1.90433,1.22753,8.0,8.0,8.0,0.0016861,0.121976
+1431,47.714333,0.0,0.0,37.0,98.5071,238.0,255.0,74.0,108.0,118.493,128.0,160.0,112.0,128.0,133.879,141.0,164.0,0.0,1.0,11.6435,23.0,59.0,123.0,130.674,2.40996,1.95624,1.25357,8.0,8.0,8.0,0.00184042,0.122634
+1432,47.7477,0.0,0.0,37.0,98.511,237.0,255.0,72.0,108.0,118.814,128.0,163.0,109.0,128.0,133.791,141.0,164.0,0.0,1.0,11.2802,23.0,57.0,123.0,133.06,2.80725,2.00745,1.33922,8.0,8.0,8.0,0.00159751,0.121705
+1433,47.781067,0.0,0.0,38.0,98.5485,237.0,255.0,72.0,108.0,118.76,128.0,166.0,109.0,128.0,133.816,141.0,166.0,0.0,1.0,11.3484,23.0,57.0,123.0,131.58,2.45669,1.87679,1.23277,8.0,8.0,8.0,0.00181756,0.121199
+1434,47.814433,0.0,0.0,38.0,98.5628,237.0,255.0,72.0,108.0,118.717,128.0,161.0,112.0,128.0,133.828,141.0,166.0,0.0,1.0,11.3833,23.0,58.0,123.0,132.602,2.15358,1.84591,1.19174,8.0,8.0,8.0,0.00177469,0.119527
+1435,47.8478,0.0,0.0,38.0,98.6563,237.0,255.0,75.0,108.0,118.522,128.0,160.0,115.0,128.0,133.889,141.0,163.0,0.0,1.0,11.6071,23.0,58.0,123.0,131.241,2.60691,1.99505,1.28288,8.0,8.0,8.0,0.00174611,0.120625
+1436,47.881167,0.0,0.0,38.0,99.0259,238.0,255.0,75.0,108.0,118.605,128.0,164.0,108.0,128.0,133.977,141.0,162.0,0.0,1.0,11.5148,23.0,55.0,123.0,131.145,2.28244,1.9555,1.25684,8.0,8.0,8.0,0.00167753,0.123523
+1437,47.914533,0.0,0.0,38.0,98.8723,238.0,255.0,71.0,108.0,118.525,128.0,169.0,110.0,128.0,133.974,141.0,162.0,0.0,1.0,11.5936,23.0,58.0,123.0,131.54,2.56171,1.95265,1.24094,8.0,8.0,8.0,0.00186043,0.123345
+1438,47.9479,0.0,0.0,38.0,98.6944,238.0,255.0,74.0,108.0,118.423,128.0,158.0,113.0,128.0,133.892,141.0,162.0,0.0,1.0,11.636,23.0,57.0,123.0,129.922,2.50656,1.94284,1.21576,8.0,8.0,8.0,0.0017604,0.122945
+1439,47.981267,0.0,0.0,37.0,98.6674,238.0,255.0,74.0,108.0,118.484,128.0,152.0,112.0,128.0,133.943,141.0,165.0,0.0,1.0,11.6209,23.0,58.0,123.0,130.42,2.28699,1.95055,1.2415,8.0,8.0,8.0,0.00199474,0.123168
+1440,48.014633,0.0,0.0,38.0,98.9911,238.0,255.0,75.0,108.0,118.517,128.0,168.0,105.0,128.0,133.968,141.0,163.0,0.0,1.0,11.5802,23.0,59.0,123.0,131.122,2.63676,1.99008,1.29177,8.0,8.0,8.0,0.00198331,0.124274
+1441,48.048,0.0,0.0,38.0,99.1666,238.0,255.0,73.0,108.0,118.565,128.0,172.0,110.0,128.0,134.052,141.0,163.0,0.0,1.0,11.6122,23.0,61.0,123.0,131.803,2.21335,1.86699,1.15551,8.0,8.0,8.0,0.0018147,0.12442
+1442,48.081367,0.0,0.0,38.0,98.7115,237.0,255.0,74.0,108.0,118.484,128.0,175.0,112.0,128.0,133.989,141.0,166.0,0.0,1.0,11.646,23.0,58.0,123.0,132.527,2.55159,1.95021,1.243,8.0,8.0,8.0,0.00175754,0.121462
+1443,48.114733,0.0,0.0,38.0,98.8271,238.0,255.0,73.0,108.0,118.425,128.0,170.0,111.0,128.0,133.873,141.0,163.0,0.0,1.0,11.686,23.0,58.0,123.0,131.139,2.69526,1.99444,1.2922,8.0,8.0,8.0,0.00175754,0.123745
+1444,48.1481,0.0,0.0,38.0,98.9151,238.0,255.0,72.0,108.0,118.608,128.0,165.0,111.0,128.0,133.93,141.0,162.0,0.0,1.0,11.5369,23.0,57.0,123.0,133.439,2.19965,1.94999,1.23205,8.0,8.0,8.0,0.00158036,0.123725
+1445,48.181467,0.0,0.0,38.0,99.1241,238.0,255.0,74.0,108.0,118.553,128.0,162.0,111.0,128.0,133.873,141.0,164.0,0.0,1.0,11.5273,23.0,60.0,123.0,131.917,2.51309,1.93452,1.2192,8.0,8.0,8.0,0.00184614,0.122822
+1446,48.214833,0.0,0.0,40.0,100.651,240.0,255.0,74.0,108.0,118.623,128.0,162.0,112.0,128.0,133.981,141.0,167.0,0.0,1.0,11.5548,23.0,60.0,124.0,133.822,2.59359,1.88226,1.19355,8.0,8.0,8.0,0.00190043,0.122748
+1447,48.2482,0.0,0.0,40.0,101.32,240.0,255.0,74.0,108.0,118.331,128.0,161.0,108.0,128.0,133.859,141.0,163.0,0.0,1.0,11.7134,23.0,59.0,122.0,129.444,2.93237,2.01319,1.31776,8.0,8.0,8.0,0.00174326,0.123025
+1448,48.281567,0.0,0.0,41.0,101.507,240.0,255.0,73.0,108.0,118.506,128.0,152.0,111.0,128.0,133.742,141.0,163.0,0.0,1.0,11.4874,23.0,58.0,122.0,129.98,2.53874,2.03401,1.32066,8.0,8.0,8.0,0.00191187,0.122228
+1449,48.314933,0.0,0.0,41.0,101.47,240.0,255.0,73.0,108.0,118.511,128.0,156.0,113.0,128.0,133.872,141.0,165.0,0.0,1.0,11.5402,23.0,58.0,123.0,130.546,2.1075,1.83235,1.15791,8.0,8.0,8.0,0.00184614,0.121356
+1450,48.3483,0.0,0.0,40.0,101.293,240.0,255.0,73.0,108.0,118.396,128.0,150.0,114.0,128.0,133.87,141.0,163.0,0.0,1.0,11.6195,23.0,57.0,123.0,129.909,2.57343,1.88693,1.23337,8.0,8.0,8.0,0.0017404,0.120476
+1451,48.381667,0.0,0.0,40.0,101.272,240.0,255.0,73.0,108.0,118.466,128.0,157.0,112.0,127.0,133.842,141.0,165.0,0.0,1.0,11.6094,23.0,58.0,122.0,129.802,2.38339,1.91093,1.25144,8.0,8.0,8.0,0.00172325,0.121265
+1452,48.415033,0.0,0.0,40.0,101.179,240.0,255.0,71.0,108.0,118.611,128.0,149.0,115.0,128.0,133.896,141.0,165.0,0.0,1.0,11.4645,23.0,59.0,123.0,131.535,2.73661,1.98556,1.31596,8.0,8.0,8.0,0.00165752,0.120813
+1453,48.4484,0.0,0.0,40.0,101.145,240.0,255.0,73.0,108.0,118.63,128.0,150.0,112.0,128.0,133.849,141.0,165.0,0.0,1.0,11.4616,23.0,57.0,123.0,130.732,2.64995,1.92732,1.2196,8.0,8.0,8.0,0.00184614,0.121088
+1454,48.481767,0.0,0.0,40.0,100.926,240.0,255.0,74.0,108.0,118.617,128.0,147.0,115.0,128.0,133.85,141.0,165.0,0.0,1.0,11.4423,23.0,57.0,123.0,131.386,2.27626,1.86113,1.19257,8.0,8.0,8.0,0.00188615,0.119664
+1455,48.515133,0.0,0.0,40.0,100.906,239.0,255.0,74.0,108.0,118.462,128.0,147.0,115.0,127.0,133.76,141.0,168.0,0.0,1.0,11.5429,23.0,58.0,122.0,128.617,2.87748,1.97271,1.29842,8.0,8.0,8.0,0.00215192,0.118876
+1456,48.5485,0.0,0.0,41.0,101.163,240.0,255.0,75.0,108.0,118.502,128.0,150.0,115.0,128.0,133.92,141.0,165.0,0.0,1.0,11.5781,23.0,57.0,123.0,131.091,2.35832,1.92458,1.24134,8.0,8.0,8.0,0.00192615,0.119776
+1457,48.581867,0.0,0.0,40.0,101.382,240.0,255.0,72.0,108.0,118.456,128.0,142.0,115.0,128.0,133.981,141.0,164.0,0.0,1.0,11.6463,23.0,62.0,123.0,131.563,3.10722,2.04703,1.33074,8.0,8.0,8.0,0.00190329,0.120299
+1458,48.615233,0.0,0.0,41.0,101.585,240.0,255.0,74.0,108.0,118.484,128.0,140.0,112.0,128.0,134.033,141.0,164.0,0.0,1.0,11.639,23.0,58.0,123.0,133.282,2.95741,1.98744,1.30041,8.0,8.0,8.0,0.00175183,0.121799
+1459,48.6486,0.0,0.0,40.0,101.232,240.0,255.0,73.0,108.0,118.446,128.0,140.0,112.0,128.0,133.914,141.0,165.0,0.0,1.0,11.6434,23.0,62.0,123.0,130.797,2.4948,1.98205,1.27506,8.0,8.0,8.0,0.00173182,0.120656
+1460,48.681967,0.0,0.0,41.0,101.781,240.0,255.0,75.0,108.0,118.442,128.0,141.0,114.0,128.0,133.921,141.0,162.0,0.0,1.0,11.6278,23.0,59.0,123.0,131.866,2.99024,2.0352,1.34343,8.0,8.0,8.0,0.00185757,0.121202
+1461,48.715333,0.0,0.0,41.0,102.006,241.0,255.0,74.0,108.0,118.484,128.0,141.0,114.0,128.0,134.021,141.0,162.0,0.0,1.0,11.6531,23.0,62.0,123.0,132.152,2.38609,1.92962,1.22548,8.0,8.0,8.0,0.00158893,0.122568
+1462,48.7487,0.0,0.0,41.0,101.813,241.0,255.0,74.0,108.0,118.528,128.0,140.0,114.0,128.0,133.996,141.0,166.0,0.0,1.0,11.5722,23.0,58.0,123.0,132.468,2.88267,1.98395,1.28585,8.0,8.0,8.0,0.00173754,0.121745
+1463,48.782067,0.0,0.0,41.0,101.763,241.0,255.0,74.0,108.0,118.317,128.0,140.0,114.0,128.0,134.009,142.0,168.0,0.0,1.0,11.8011,23.0,59.0,123.0,130.966,3.18154,2.03771,1.36888,8.0,8.0,8.0,0.00183756,0.121508
+1464,48.815433,0.0,0.0,41.0,101.751,240.0,255.0,74.0,108.0,118.504,128.0,138.0,113.0,128.0,134.017,141.0,163.0,0.0,1.0,11.5923,23.0,60.0,123.0,132.053,2.59086,1.94718,1.29183,8.0,8.0,8.0,0.00208048,0.120702
+1465,48.8488,0.0,0.0,41.0,101.863,241.0,255.0,75.0,108.0,118.517,128.0,138.0,116.0,128.0,133.97,141.0,163.0,0.0,1.0,11.579,23.0,58.0,123.0,131.133,3.13466,2.00882,1.28708,8.0,8.0,8.0,0.00233768,0.121111
+1466,48.882167,0.0,0.0,42.0,103.05,242.0,255.0,74.0,108.0,118.552,128.0,139.0,115.0,128.0,134.056,141.0,164.0,0.0,1.0,11.5383,23.0,58.0,123.0,131.802,2.70479,1.90528,1.21455,8.0,8.0,8.0,0.00196902,0.12342
+1467,48.915533,0.0,0.0,42.0,103.054,241.0,255.0,77.0,108.0,118.159,128.0,145.0,99.0,128.0,134.116,141.0,167.0,0.0,1.0,11.949,24.0,58.0,123.0,130.538,3.67181,2.21224,1.4411,8.0,8.0,8.0,0.00175469,0.121428
+1468,48.9489,0.0,0.0,42.0,103.842,242.0,255.0,75.0,108.0,118.034,128.0,149.0,113.0,128.0,134.177,141.0,166.0,0.0,1.0,12.0412,24.0,62.0,123.0,128.914,4.12628,2.1739,1.49829,8.0,8.0,8.0,0.00195187,0.122348
+1469,48.982267,0.0,0.0,44.0,105.775,244.0,255.0,75.0,108.0,118.045,128.0,149.0,114.0,128.0,134.261,141.0,164.0,0.0,1.0,12.0664,23.0,57.0,123.0,129.648,3.49469,2.04428,1.34114,8.0,8.0,8.0,0.00260917,0.124288
+1470,49.015633,0.0,0.0,45.0,106.559,244.0,255.0,75.0,108.0,117.822,128.0,147.0,115.0,128.0,134.323,141.0,164.0,0.0,1.0,12.2297,23.0,57.0,123.0,128.92,4.06939,2.14802,1.39451,8.0,8.0,8.0,0.00228052,0.124703
+1471,49.049,0.0,0.0,45.0,106.919,244.0,255.0,75.0,108.0,117.79,128.0,148.0,115.0,128.0,134.336,142.0,163.0,0.0,1.0,12.2969,24.0,59.0,122.0,127.891,2.90067,2.03349,1.33203,8.0,8.0,8.0,0.00186328,0.125234
+1472,49.082367,0.0,0.0,45.0,106.487,243.0,255.0,75.0,108.0,117.727,128.0,148.0,115.0,128.0,134.295,141.0,168.0,0.0,1.0,12.2879,24.0,60.0,122.0,127.649,4.42337,2.37867,1.68992,8.0,8.0,8.0,0.00184042,0.122308
+1473,49.115733,0.0,0.0,45.0,107.047,244.0,255.0,73.0,108.0,117.738,128.0,147.0,114.0,128.0,134.306,141.0,164.0,0.0,1.0,12.2938,24.0,58.0,122.0,127.342,4.271,2.26254,1.61632,8.0,8.0,8.0,0.00190901,0.124528
+1474,49.1491,0.0,0.0,45.0,107.216,244.0,255.0,76.0,108.0,117.763,128.0,146.0,113.0,128.0,134.3,141.0,164.0,0.0,1.0,12.2515,23.0,60.0,122.0,127.747,3.05187,2.01339,1.31413,8.0,8.0,8.0,0.00245485,0.125257
+1475,49.182467,0.0,0.0,45.0,106.962,244.0,255.0,74.0,108.0,117.734,128.0,145.0,112.0,128.0,134.181,141.0,165.0,0.0,1.0,12.2709,23.0,58.0,122.0,126.555,4.1759,2.19859,1.49931,8.0,8.0,8.0,0.00258059,0.124577
+1476,49.215833,0.0,0.0,45.0,107.05,244.0,255.0,74.0,108.0,117.844,128.0,148.0,114.0,128.0,134.194,141.0,162.0,0.0,1.0,12.1729,23.0,60.0,122.0,127.764,2.97152,2.08089,1.39036,8.0,8.0,8.0,0.00209762,0.124774
+1477,49.2492,0.0,0.0,45.0,106.955,244.0,255.0,76.0,108.0,117.654,128.0,146.0,114.0,128.0,134.268,141.0,164.0,0.0,1.0,12.3322,23.0,60.0,122.0,126.76,3.50875,2.07701,1.34696,8.0,8.0,8.0,0.00205476,0.123877
+1478,49.282567,0.0,0.0,45.0,107.107,243.0,255.0,75.0,108.0,117.734,128.0,146.0,114.0,128.0,134.344,141.0,163.0,0.0,1.0,12.3132,23.0,60.0,123.0,127.975,3.32502,1.98209,1.2884,8.0,8.0,8.0,0.0020176,0.123505
+1479,49.315933,0.0,0.0,45.0,107.023,243.0,255.0,71.0,108.0,117.768,128.0,146.0,114.0,128.0,134.28,141.0,165.0,0.0,1.0,12.274,23.0,60.0,122.0,127.141,2.89629,1.98372,1.32387,8.0,8.0,8.0,0.00269204,0.122645
+1480,49.3493,0.0,0.0,45.0,106.736,243.0,255.0,72.0,108.0,117.764,128.0,146.0,114.0,128.0,134.194,141.0,164.0,0.0,1.0,12.1996,23.0,62.0,122.0,126.85,3.93966,2.16628,1.46357,8.0,8.0,8.0,0.0026949,0.122491
+1481,49.382667,0.0,0.0,44.0,106.71,243.0,255.0,73.0,108.0,117.753,128.0,148.0,114.0,128.0,134.212,141.0,164.0,0.0,1.0,12.2467,23.0,60.0,122.0,126.829,2.91656,2.00578,1.30549,8.0,8.0,8.0,0.00212334,0.12356
+1482,49.416033,0.0,0.0,44.0,106.583,244.0,255.0,77.0,108.0,117.77,128.0,138.0,114.0,128.0,134.18,141.0,163.0,0.0,1.0,12.1891,23.0,57.0,122.0,126.371,3.99516,2.37922,1.64212,8.0,8.0,8.0,0.00200903,0.123505
+1483,49.4494,0.0,0.0,44.0,106.302,245.0,255.0,76.0,108.0,117.887,128.0,143.0,114.0,128.0,134.063,141.0,164.0,0.0,1.0,12.148,23.0,60.0,122.0,127.485,4.00429,2.40305,1.71212,8.0,8.0,8.0,0.00191758,0.125786
+1484,49.482767,0.0,0.0,44.0,105.975,244.0,255.0,78.0,108.0,117.92,128.0,142.0,114.0,128.0,134.079,141.0,163.0,0.0,1.0,12.0564,23.0,57.0,122.0,128.804,2.91711,2.09404,1.42574,8.0,8.0,8.0,0.0023634,0.124417
+1485,49.516133,0.0,0.0,44.0,105.337,243.0,255.0,73.0,108.0,118.012,128.0,144.0,114.0,128.0,134.05,141.0,163.0,0.0,1.0,12.0223,24.0,56.0,122.0,129.239,3.8813,2.13517,1.45029,8.0,8.0,8.0,0.00242913,0.123468
+1486,49.5495,0.0,0.0,44.0,105.502,244.0,255.0,74.0,107.0,118.071,128.0,144.0,113.0,128.0,134.131,141.0,164.0,0.0,1.0,12.0228,24.0,58.0,123.0,129.89,2.83015,2.01545,1.28288,8.0,8.0,8.0,0.00183185,0.124094
+1487,49.582867,0.0,0.0,44.0,105.104,243.0,255.0,73.0,108.0,118.219,128.0,147.0,113.0,128.0,134.002,141.0,164.0,0.0,1.0,11.871,23.0,58.0,123.0,130.978,3.57027,2.21183,1.49734,8.0,8.0,8.0,0.001869,0.121902
+1488,49.616233,0.0,0.0,44.0,105.201,243.0,255.0,73.0,107.0,118.166,128.0,146.0,115.0,128.0,134.003,141.0,164.0,0.0,1.0,11.8867,24.0,58.0,123.0,129.697,3.772,2.27933,1.57109,8.0,8.0,8.0,0.00169467,0.123637
+1489,49.6496,0.0,0.0,44.0,105.018,243.0,255.0,71.0,108.0,118.187,128.0,151.0,112.0,128.0,134.031,141.0,163.0,0.0,1.0,11.8948,24.0,58.0,123.0,130.959,2.77116,1.99481,1.3241,8.0,8.0,8.0,0.00210048,0.12324
+1490,49.682967,0.0,0.0,44.0,104.676,243.0,255.0,73.0,108.0,118.303,128.0,152.0,114.0,128.0,133.934,141.0,167.0,0.0,1.0,11.733,23.0,59.0,122.0,129.617,3.7583,2.1358,1.42869,8.0,8.0,8.0,0.00210334,0.122605
+1491,49.716333,0.0,0.0,44.0,104.421,243.0,255.0,73.0,108.0,118.517,128.0,157.0,114.0,128.0,133.85,141.0,164.0,0.0,1.0,11.5918,23.0,58.0,123.0,130.905,2.92905,2.07546,1.3763,8.0,8.0,8.0,0.00172897,0.122782
+1492,49.7497,0.0,0.0,44.0,104.0,243.0,255.0,74.0,108.0,118.262,128.0,138.0,113.0,128.0,133.865,141.0,162.0,0.0,1.0,11.677,23.0,61.0,122.0,129.084,3.51693,2.22934,1.49899,8.0,8.0,8.0,0.0017061,0.121628
+1493,49.783067,0.0,0.0,45.0,104.429,242.0,255.0,74.0,108.0,118.153,128.0,154.0,115.0,128.0,133.914,141.0,163.0,0.0,1.0,11.8313,23.0,60.0,122.0,128.794,2.95021,1.93927,1.28692,8.0,8.0,8.0,0.00164323,0.121425
+1494,49.816433,0.0,0.0,45.0,104.628,242.0,255.0,71.0,108.0,118.224,128.0,168.0,113.0,128.0,133.986,141.0,166.0,0.0,1.0,11.8015,23.0,59.0,123.0,130.61,2.38649,1.84822,1.20636,8.0,8.0,8.0,0.00216335,0.121711
+1495,49.8498,0.0,0.0,45.0,104.856,243.0,255.0,73.0,108.0,118.331,128.0,166.0,113.0,128.0,133.835,141.0,162.0,0.0,1.0,11.6896,23.0,58.0,122.0,129.024,2.95194,1.99505,1.34431,8.0,8.0,8.0,0.00200046,0.122374
+1496,49.883167,0.0,0.0,44.0,104.839,243.0,255.0,71.0,108.0,118.33,128.0,162.0,111.0,128.0,133.868,141.0,164.0,0.0,1.0,11.6834,23.0,59.0,122.0,129.681,2.38647,1.90785,1.2808,8.0,8.0,8.0,0.00184042,0.123082
+1497,49.916533,0.0,0.0,44.0,104.076,242.0,255.0,74.0,108.0,118.356,128.0,164.0,113.0,128.0,133.762,141.0,166.0,0.0,1.0,11.5951,23.0,57.0,122.0,129.692,3.16044,2.03601,1.37061,8.0,8.0,8.0,0.00163752,0.120036
+1498,49.9499,0.0,0.0,45.0,105.196,244.0,255.0,70.0,108.0,118.628,128.0,168.0,112.0,128.0,133.718,141.0,165.0,0.0,1.0,11.3902,23.0,59.0,123.0,131.999,3.17177,1.99336,1.28713,8.0,8.0,8.0,0.00171754,0.125149
+1499,49.983267,0.0,0.0,46.0,106.234,245.0,255.0,74.0,108.0,118.625,128.0,140.0,99.0,128.0,133.616,141.0,166.0,0.0,1.0,11.361,23.0,58.0,122.0,130.537,2.68504,1.99299,1.3068,8.0,8.0,8.0,0.00179184,0.127581
+1500,50.016633,0.0,0.0,46.0,106.283,245.0,255.0,71.0,108.0,118.598,128.0,139.0,98.0,128.0,133.534,140.0,164.0,0.0,1.0,11.3041,22.0,59.0,122.0,130.404,2.70406,1.95712,1.28937,8.0,8.0,8.0,0.00169467,0.127523
+1501,50.05,0.0,0.0,46.0,106.257,245.0,255.0,69.0,108.0,118.606,128.0,166.0,113.0,127.0,133.58,140.0,163.0,0.0,1.0,11.3428,23.0,59.0,122.0,129.462,2.22166,1.87052,1.22147,8.0,8.0,8.0,0.00162037,0.127944
+1502,50.083367,0.0,0.0,46.0,106.437,245.0,255.0,72.0,108.0,118.556,128.0,168.0,114.0,128.0,133.705,141.0,166.0,0.0,1.0,11.4295,23.0,57.0,122.0,131.521,2.60814,1.91542,1.26587,8.0,8.0,8.0,0.00177183,0.127952
+1503,50.116733,0.0,0.0,46.0,106.278,245.0,255.0,74.0,108.0,118.746,128.0,161.0,112.0,128.0,133.73,141.0,164.0,0.0,1.0,11.3189,23.0,55.0,123.0,131.691,2.57427,1.98989,1.31616,8.0,8.0,8.0,0.00160894,0.127409
+1504,50.1501,0.0,0.0,46.0,106.3,246.0,255.0,76.0,108.0,118.726,128.0,160.0,113.0,128.0,133.778,141.0,163.0,0.0,1.0,11.3612,23.0,61.0,123.0,133.195,2.16198,1.96461,1.28536,8.0,8.0,8.0,0.00172897,0.128049
+1505,50.183467,0.0,0.0,46.0,106.232,245.0,255.0,71.0,108.0,118.717,128.0,166.0,112.0,128.0,133.68,141.0,163.0,0.0,1.0,11.3356,23.0,58.0,123.0,131.315,2.48958,1.95697,1.28495,8.0,8.0,8.0,0.00191187,0.127681
+1506,50.216833,0.0,0.0,46.0,106.184,245.0,255.0,73.0,108.0,118.704,128.0,155.0,112.0,128.0,133.708,141.0,163.0,0.0,1.0,11.3263,23.0,56.0,123.0,130.734,2.19798,1.91751,1.23833,8.0,8.0,8.0,0.00176898,0.127115
+1507,50.2502,0.0,0.0,46.0,106.461,245.0,255.0,71.0,108.0,118.833,128.0,167.0,113.0,127.0,133.709,141.0,164.0,0.0,1.0,11.2625,23.0,58.0,123.0,131.228,2.6217,2.02308,1.30625,8.0,8.0,8.0,0.00189472,0.128344
+1508,50.283567,0.0,0.0,46.0,106.228,244.0,255.0,74.0,108.0,118.708,128.0,163.0,114.0,128.0,133.678,141.0,164.0,0.0,1.0,11.3095,22.0,57.0,123.0,131.914,2.54621,2.05678,1.34401,8.0,8.0,8.0,0.00184899,0.126029
+1509,50.316933,0.0,0.0,46.0,106.247,245.0,255.0,73.0,108.0,118.66,128.0,165.0,113.0,128.0,133.758,141.0,163.0,0.0,1.0,11.4096,23.0,58.0,123.0,131.093,2.11075,1.92174,1.19394,8.0,8.0,8.0,0.00188043,0.126443
+1510,50.3503,0.0,0.0,46.0,106.381,245.0,255.0,72.0,108.0,118.689,128.0,173.0,109.0,128.0,133.746,141.0,163.0,0.0,1.0,11.3753,23.0,59.0,123.0,131.995,2.56552,1.98503,1.22837,8.0,8.0,8.0,0.00169753,0.126572
+1511,50.383667,0.0,0.0,46.0,106.404,245.0,255.0,72.0,108.0,118.691,128.0,167.0,114.0,127.0,133.767,141.0,163.0,0.0,1.0,11.4269,23.0,59.0,123.0,132.1,2.27643,1.96766,1.24695,8.0,8.0,8.0,0.00171754,0.127189
+1512,50.417033,0.0,0.0,46.0,106.188,245.0,255.0,74.0,108.0,118.898,129.0,150.0,112.0,127.0,133.527,140.0,161.0,0.0,1.0,11.1098,22.0,59.0,122.0,132.036,2.89799,2.02187,1.34018,8.0,8.0,8.0,0.00178326,0.127946
+1513,50.4504,0.0,0.0,46.0,106.13,246.0,255.0,72.0,108.0,118.775,128.0,145.0,112.0,127.0,133.622,141.0,162.0,0.0,1.0,11.2589,23.0,57.0,122.0,130.547,2.95977,1.97668,1.26251,8.0,8.0,8.0,0.00184042,0.128532
+1514,50.483767,0.0,0.0,46.0,106.091,245.0,255.0,73.0,108.0,118.849,129.0,139.0,106.0,127.0,133.662,141.0,162.0,0.0,1.0,11.2388,23.0,57.0,123.0,133.516,2.71849,1.91217,1.20775,8.0,8.0,8.0,0.00206333,0.128352
+1515,50.517133,0.0,0.0,46.0,106.364,245.0,255.0,72.0,108.0,118.835,128.0,147.0,114.0,127.0,133.563,141.0,162.0,0.0,1.0,11.1978,23.0,57.0,122.0,131.185,3.66664,2.04514,1.32609,8.0,8.0,8.0,0.00228338,0.128124
+1516,50.5505,0.0,0.0,46.0,106.461,246.0,255.0,75.0,108.0,118.836,128.0,144.0,113.0,128.0,133.741,141.0,161.0,0.0,1.0,11.2431,23.0,57.0,123.0,132.654,2.90925,1.98908,1.28671,8.0,8.0,8.0,0.00179184,0.128178
+1517,50.583867,0.0,0.0,46.0,105.836,245.0,255.0,74.0,108.0,118.737,128.0,148.0,108.0,127.0,133.644,141.0,166.0,0.0,1.0,11.3059,23.0,58.0,123.0,131.838,3.93064,2.0663,1.34702,8.0,8.0,8.0,0.00179184,0.127078
+1518,50.617233,0.0,0.0,46.0,106.318,245.0,255.0,75.0,108.0,118.843,129.0,148.0,113.0,128.0,133.668,141.0,162.0,0.0,1.0,11.2098,23.0,57.0,123.0,132.816,3.77449,2.04904,1.3278,8.0,8.0,8.0,0.00171468,0.128812
+1519,50.6506,0.0,0.0,46.0,106.377,245.0,255.0,74.0,108.0,118.829,128.0,150.0,113.0,128.0,133.657,141.0,165.0,0.0,1.0,11.2544,23.0,58.0,123.0,132.17,2.64917,1.96647,1.29145,8.0,8.0,8.0,0.00190329,0.128832
+1520,50.683967,0.0,0.0,46.0,106.478,246.0,255.0,75.0,108.0,118.809,128.0,140.0,113.0,128.0,133.625,141.0,165.0,0.0,1.0,11.2049,23.0,58.0,123.0,131.108,2.89703,2.01752,1.32755,8.0,8.0,8.0,0.00188615,0.129821
+1521,50.717333,0.0,0.0,46.0,106.369,246.0,255.0,75.0,108.0,118.735,128.0,146.0,111.0,127.0,133.662,141.0,165.0,0.0,1.0,11.3209,23.0,56.0,123.0,131.263,2.17689,1.90716,1.19754,8.0,8.0,8.0,0.00162037,0.130173
+1522,50.7507,0.0,0.0,46.0,106.459,246.0,255.0,74.0,108.0,118.952,129.0,147.0,114.0,128.0,133.594,141.0,166.0,0.0,1.0,11.1297,23.0,58.0,123.0,134.189,2.81909,1.94703,1.2771,8.0,8.0,8.0,0.00201475,0.129541
+1523,50.784067,0.0,0.0,46.0,106.817,246.0,255.0,76.0,108.0,118.864,128.0,148.0,113.0,127.0,133.573,141.0,169.0,0.0,1.0,11.2,22.0,60.0,122.0,130.7,2.83377,2.00892,1.30568,8.0,8.0,8.0,0.00179755,0.130018
+1524,50.817433,0.0,0.0,46.0,106.759,246.0,255.0,72.0,108.0,118.857,129.0,148.0,114.0,128.0,133.67,141.0,164.0,0.0,1.0,11.2052,22.0,57.0,123.0,132.866,2.30535,1.94658,1.25408,8.0,8.0,8.0,0.00191758,0.129861
+1525,50.8508,0.0,0.0,46.0,106.68,246.0,255.0,73.0,108.0,118.708,128.0,143.0,114.0,128.0,133.716,141.0,165.0,0.0,1.0,11.3414,23.0,57.0,123.0,131.718,2.57877,1.94167,1.23674,8.0,8.0,8.0,0.00202904,0.129727
+1526,50.884167,0.0,0.0,46.0,106.615,246.0,255.0,74.0,108.0,118.735,128.0,155.0,114.0,128.0,133.757,141.0,164.0,0.0,1.0,11.3194,23.0,57.0,123.0,131.661,2.21173,1.89041,1.19002,8.0,8.0,8.0,0.0017404,0.129775
+1527,50.917533,0.0,0.0,46.0,106.5,246.0,255.0,75.0,108.0,118.818,128.0,150.0,114.0,127.0,133.525,141.0,164.0,0.0,1.0,11.2174,23.0,56.0,122.0,130.665,2.68096,1.96405,1.3122,8.0,8.0,8.0,0.00164609,0.129524
+1528,50.9509,0.0,0.0,46.0,106.684,246.0,255.0,76.0,109.0,118.979,128.0,143.0,114.0,128.0,133.649,141.0,163.0,0.0,1.0,11.093,22.0,56.0,123.0,131.711,2.79893,1.99382,1.32099,8.0,8.0,8.0,0.00176612,0.130101
+1529,50.984267,0.0,0.0,46.0,106.526,246.0,255.0,76.0,108.0,118.814,128.0,139.0,115.0,128.0,133.728,141.0,164.0,0.0,1.0,11.2532,23.0,55.0,123.0,131.238,2.17788,1.83783,1.15912,8.0,8.0,8.0,0.00181184,0.129252
+1530,51.017633,0.0,0.0,46.0,106.415,246.0,255.0,76.0,108.0,118.668,128.0,143.0,112.0,128.0,133.727,141.0,164.0,0.0,1.0,11.3531,23.0,54.0,123.0,132.028,2.6522,1.92754,1.21956,8.0,8.0,8.0,0.00158893,0.129555
+1531,51.051,0.0,0.0,46.0,106.592,246.0,255.0,73.0,108.0,118.63,128.0,152.0,115.0,127.0,133.735,141.0,164.0,0.0,1.0,11.4412,23.0,57.0,122.0,129.891,2.24006,1.93085,1.22635,8.0,8.0,8.0,0.00165752,0.129987
+1532,51.084367,0.0,0.0,46.0,106.663,246.0,255.0,75.0,108.0,118.771,128.0,151.0,115.0,128.0,133.72,141.0,165.0,0.0,1.0,11.2362,22.0,55.0,123.0,131.154,2.78434,1.94723,1.28986,8.0,8.0,8.0,0.00168896,0.129327
+1533,51.117733,0.0,0.0,46.0,106.731,246.0,255.0,74.0,108.0,118.65,128.0,155.0,113.0,127.0,133.736,141.0,162.0,0.0,1.0,11.3719,22.0,57.0,123.0,129.831,2.52572,1.91563,1.22149,8.0,8.0,8.0,0.00171754,0.130215
+1534,51.1511,0.0,0.0,46.0,106.682,246.0,255.0,71.0,108.0,118.705,128.0,156.0,114.0,128.0,133.739,141.0,163.0,0.0,1.0,11.3242,23.0,57.0,123.0,131.022,2.17836,1.87466,1.16425,8.0,8.0,8.0,0.00167753,0.129698
+1535,51.184467,0.0,0.0,46.0,106.786,246.0,255.0,74.0,108.0,118.685,128.0,155.0,114.0,127.0,133.713,141.0,165.0,0.0,1.0,11.359,23.0,56.0,122.0,129.276,2.50755,1.98532,1.306,8.0,8.0,8.0,0.00129172,0.129555
+1536,51.217833,0.0,0.0,47.0,107.064,246.0,255.0,73.0,108.0,118.704,128.0,155.0,114.0,128.0,133.782,141.0,166.0,0.0,1.0,11.33,23.0,56.0,123.0,129.488,2.13061,1.93722,1.25998,8.0,8.0,8.0,0.00163752,0.130987
+1537,51.2512,0.0,0.0,46.0,106.927,246.0,255.0,75.0,108.0,118.456,128.0,154.0,113.0,128.0,133.853,141.0,164.0,0.0,1.0,11.5797,23.0,60.0,123.0,129.522,2.31186,1.95114,1.22178,8.0,8.0,8.0,0.0017061,0.130198
+1538,51.284567,0.0,0.0,47.0,106.933,246.0,255.0,75.0,108.0,118.552,128.0,155.0,115.0,128.0,133.854,141.0,162.0,0.0,1.0,11.4719,23.0,58.0,123.0,130.268,2.36463,1.94243,1.24159,8.0,8.0,8.0,0.0017061,0.13093
+1539,51.317933,0.0,0.0,47.0,106.924,246.0,255.0,73.0,108.0,118.552,128.0,155.0,112.0,128.0,133.796,141.0,165.0,0.0,1.0,11.4902,23.0,58.0,122.0,128.712,2.18529,1.94104,1.24698,8.0,8.0,8.0,0.0016861,0.131127
+1540,51.3513,0.0,0.0,47.0,106.945,246.0,255.0,71.0,108.0,118.705,128.0,143.0,115.0,128.0,133.753,141.0,163.0,0.0,1.0,11.3189,22.0,58.0,123.0,129.876,2.53664,1.97365,1.25706,8.0,8.0,8.0,0.00171468,0.131099
+1541,51.384667,0.0,0.0,47.0,107.038,247.0,255.0,71.0,108.0,118.711,128.0,154.0,115.0,128.0,133.821,141.0,163.0,0.0,1.0,11.3581,23.0,58.0,123.0,129.386,2.18352,1.88208,1.16012,8.0,8.0,8.0,0.00172897,0.131376
+1542,51.418033,0.0,0.0,47.0,106.705,246.0,255.0,72.0,108.0,118.67,128.0,146.0,115.0,128.0,133.832,141.0,164.0,0.0,1.0,11.3753,23.0,57.0,123.0,130.954,2.45392,1.89471,1.21043,8.0,8.0,8.0,0.00180613,0.130227
+1543,51.4514,0.0,0.0,47.0,106.904,247.0,255.0,75.0,108.0,118.55,128.0,148.0,111.0,128.0,133.902,141.0,165.0,0.0,1.0,11.5791,23.0,58.0,123.0,130.325,2.39826,1.96311,1.29534,8.0,8.0,8.0,0.00164323,0.131642
+1544,51.484767,0.0,0.0,47.0,107.09,247.0,255.0,75.0,108.0,118.634,128.0,145.0,110.0,128.0,133.926,141.0,164.0,0.0,1.0,11.4837,23.0,57.0,123.0,132.131,2.24027,1.96368,1.23559,8.0,8.0,8.0,0.00178898,0.131696
+1545,51.518133,0.0,0.0,46.0,106.916,247.0,255.0,73.0,108.0,118.531,128.0,150.0,102.0,128.0,133.932,141.0,163.0,0.0,1.0,11.5661,23.0,59.0,123.0,130.718,2.58333,1.99028,1.25502,8.0,8.0,8.0,0.00158036,0.131433
+1546,51.5515,0.0,0.0,46.0,106.88,247.0,255.0,71.0,108.0,118.558,128.0,145.0,102.0,128.0,134.017,141.0,166.0,0.0,1.0,11.5703,23.0,58.0,123.0,131.704,2.23392,1.90389,1.21429,8.0,8.0,8.0,0.00181756,0.131064
+1547,51.584867,0.0,0.0,47.0,106.56,246.0,255.0,70.0,108.0,118.631,128.0,163.0,113.0,128.0,133.896,141.0,167.0,0.0,1.0,11.4995,23.0,60.0,123.0,131.407,2.49238,2.05024,1.30503,8.0,8.0,8.0,0.00187186,0.129595
+1548,51.618233,0.0,0.0,47.0,106.786,246.0,255.0,74.0,109.0,118.77,128.0,140.0,114.0,128.0,133.936,141.0,165.0,0.0,1.0,11.3573,23.0,60.0,124.0,132.313,2.60356,2.05296,1.31531,8.0,8.0,8.0,0.00166895,0.129884
+1549,51.6516,0.0,0.0,47.0,106.818,246.0,255.0,73.0,108.0,118.706,128.0,142.0,114.0,128.0,133.929,141.0,170.0,0.0,1.0,11.4336,23.0,57.0,123.0,132.287,2.12801,1.91668,1.19927,8.0,8.0,8.0,0.00167753,0.12995
+1550,51.684967,0.0,0.0,47.0,106.76,246.0,255.0,74.0,108.0,118.48,128.0,142.0,112.0,128.0,133.892,141.0,164.0,0.0,1.0,11.5422,23.0,57.0,123.0,129.367,2.54599,1.96004,1.24921,8.0,8.0,8.0,0.0016118,0.130158
+1551,51.718333,0.0,0.0,47.0,106.694,247.0,255.0,73.0,108.0,118.487,128.0,142.0,113.0,128.0,133.965,141.0,164.0,0.0,1.0,11.6116,23.0,57.0,123.0,129.275,2.31402,1.98913,1.28385,8.0,8.0,8.0,0.00178612,0.130161
+1552,51.7517,0.0,0.0,47.0,106.588,246.0,255.0,73.0,108.0,118.811,128.0,146.0,112.0,128.0,133.809,141.0,164.0,0.0,1.0,11.2593,23.0,57.0,123.0,130.585,2.67452,2.00167,1.33884,8.0,8.0,8.0,0.00167753,0.130193
+1553,51.785067,0.0,0.0,47.0,106.797,246.0,255.0,74.0,108.0,118.814,128.0,148.0,114.0,128.0,133.838,141.0,165.0,0.0,1.0,11.2812,23.0,58.0,123.0,130.969,2.33772,1.91177,1.22877,8.0,8.0,8.0,0.00188615,0.13011
+1554,51.818433,0.0,0.0,47.0,106.673,246.0,255.0,74.0,108.0,118.827,128.0,145.0,114.0,128.0,133.832,141.0,163.0,0.0,1.0,11.2941,23.0,57.0,124.0,133.417,2.08911,1.8435,1.18503,8.0,8.0,8.0,0.00187186,0.130438
+1555,51.8518,0.0,0.0,47.0,106.782,246.0,255.0,75.0,108.0,118.765,128.0,143.0,114.0,127.0,133.718,141.0,163.0,0.0,1.0,11.3214,23.0,56.0,123.0,130.936,2.49973,2.01515,1.30398,8.0,8.0,8.0,0.00178612,0.130313
+1556,51.885167,0.0,0.0,47.0,107.024,246.0,255.0,73.0,108.0,118.841,128.0,149.0,106.0,128.0,133.828,141.0,163.0,0.0,1.0,11.2547,23.0,56.0,123.0,131.96,2.20614,1.99592,1.27898,8.0,8.0,8.0,0.00172611,0.130295
+1557,51.918533,0.0,0.0,47.0,106.741,246.0,255.0,72.0,109.0,118.921,128.0,159.0,110.0,128.0,133.777,141.0,165.0,0.0,1.0,11.2189,23.0,57.0,123.0,132.678,2.75268,1.99451,1.25521,8.0,8.0,8.0,0.00175754,0.129272
+1558,51.9519,0.0,0.0,47.0,106.721,246.0,255.0,74.0,108.0,118.661,128.0,139.0,99.0,128.0,133.859,141.0,164.0,0.0,1.0,11.4037,23.0,58.0,123.0,130.655,2.63204,1.99726,1.24781,8.0,8.0,8.0,0.00175469,0.130984
+1559,51.985267,0.0,0.0,47.0,106.837,247.0,255.0,75.0,108.0,118.643,128.0,147.0,108.0,128.0,133.837,141.0,167.0,0.0,1.0,11.4642,23.0,61.0,123.0,130.852,2.17321,1.94145,1.27665,8.0,8.0,8.0,0.0017061,0.13133
+1560,52.018633,0.0,0.0,47.0,107.116,247.0,255.0,73.0,108.0,118.665,128.0,151.0,104.0,128.0,133.764,141.0,163.0,0.0,1.0,11.3645,23.0,56.0,123.0,130.346,2.45973,1.97747,1.29369,8.0,8.0,8.0,0.00162894,0.131759
+1561,52.052,0.0,0.0,47.0,107.297,247.0,255.0,72.0,108.0,118.725,128.0,148.0,103.0,128.0,133.878,141.0,165.0,0.0,1.0,11.3912,23.0,57.0,123.0,130.668,2.11282,1.88661,1.20322,8.0,8.0,8.0,0.00159179,0.131816
+1562,52.085367,0.0,0.0,47.0,107.112,247.0,255.0,74.0,108.0,118.808,128.0,148.0,100.0,128.0,133.792,141.0,164.0,0.0,1.0,11.2853,22.0,56.0,123.0,132.307,2.36907,1.95362,1.24414,8.0,8.0,8.0,0.0016861,0.131393
+1563,52.118733,0.0,0.0,46.0,106.894,247.0,255.0,75.0,108.0,118.767,128.0,146.0,97.0,127.0,133.709,141.0,165.0,0.0,1.0,11.3349,23.0,58.0,123.0,130.772,2.48684,2.04954,1.29391,8.0,8.0,8.0,0.00165181,0.131619
+1564,52.1521,0.0,0.0,47.0,106.987,247.0,255.0,70.0,108.0,118.852,129.0,147.0,99.0,128.0,133.761,141.0,164.0,0.0,1.0,11.2548,22.0,60.0,123.0,133.47,2.22962,1.95756,1.25321,8.0,8.0,8.0,0.00167467,0.131219
+1565,52.185467,0.0,0.0,46.0,106.962,247.0,255.0,71.0,108.0,118.958,128.0,146.0,97.0,127.0,133.534,140.0,163.0,0.0,1.0,11.0859,22.0,58.0,123.0,131.645,2.54905,1.91915,1.24743,8.0,8.0,8.0,0.00176612,0.131399
+1566,52.218833,0.0,0.0,46.0,106.928,247.0,255.0,73.0,109.0,119.199,129.0,154.0,102.0,128.0,133.62,141.0,166.0,0.0,1.0,10.9253,22.0,55.0,124.0,133.787,2.24145,1.90361,1.16544,8.0,8.0,8.0,0.00174897,0.13173
+1567,52.2522,0.0,0.0,46.0,106.533,247.0,255.0,73.0,109.0,119.016,129.0,152.0,106.0,127.0,133.586,141.0,164.0,0.0,1.0,11.1212,22.0,57.0,123.0,132.985,2.92454,2.02337,1.34278,8.0,8.0,8.0,0.00184899,0.130576
+1568,52.285567,0.0,0.0,46.0,106.824,246.0,255.0,71.0,109.0,119.083,129.0,150.0,103.0,127.0,133.619,141.0,164.0,0.0,1.0,11.0259,22.0,58.0,123.0,132.916,3.13006,2.06401,1.36188,8.0,8.0,8.0,0.00178326,0.131287
+1569,52.318933,0.0,0.0,46.0,106.936,246.0,255.0,71.0,109.0,119.01,128.0,165.0,115.0,128.0,133.686,141.0,162.0,0.0,1.0,11.1117,22.0,61.0,123.0,132.454,2.39889,1.93698,1.22754,8.0,8.0,8.0,0.00189186,0.13101
+1570,52.3523,0.0,0.0,47.0,107.082,247.0,255.0,74.0,109.0,118.971,128.0,152.0,102.0,128.0,133.632,141.0,164.0,0.0,1.0,11.1054,22.0,58.0,123.0,132.077,2.89925,1.991,1.27412,8.0,8.0,8.0,0.0019433,0.131464
+1571,52.385667,0.0,0.0,46.0,107.063,247.0,255.0,73.0,108.0,118.887,128.0,142.0,113.0,127.0,133.633,141.0,164.0,0.0,1.0,11.2036,23.0,58.0,123.0,130.5,2.42727,1.96073,1.27838,8.0,8.0,8.0,0.00185185,0.131716
+1572,52.419033,0.0,0.0,46.0,106.88,246.0,255.0,74.0,108.0,118.91,128.0,140.0,115.0,128.0,133.592,140.0,163.0,0.0,1.0,11.1018,22.0,57.0,123.0,132.303,3.11947,2.02649,1.33757,8.0,8.0,8.0,0.00170039,0.129835
+1573,52.4524,0.0,0.0,47.0,107.272,246.0,255.0,74.0,109.0,119.077,128.0,144.0,114.0,128.0,133.642,141.0,166.0,0.0,1.0,11.0074,22.0,56.0,123.0,131.365,2.90976,1.92851,1.23069,8.0,8.0,8.0,0.00177469,0.13131
+1574,52.485767,0.0,0.0,46.0,107.139,246.0,255.0,74.0,109.0,119.013,128.0,144.0,114.0,128.0,133.605,140.0,165.0,0.0,1.0,11.0319,22.0,58.0,123.0,131.994,2.30386,1.86451,1.20634,8.0,8.0,8.0,0.00174611,0.131253
+1575,52.519133,0.0,0.0,47.0,107.286,246.0,255.0,73.0,108.0,118.919,129.0,147.0,114.0,127.0,133.619,141.0,165.0,0.0,1.0,11.1792,22.0,58.0,123.0,131.975,2.77024,1.96198,1.31217,8.0,8.0,8.0,0.00163752,0.131159
+1576,52.5525,0.0,0.0,47.0,107.385,247.0,255.0,75.0,109.0,118.851,128.0,144.0,114.0,128.0,133.656,140.0,164.0,0.0,1.0,11.157,22.0,58.0,123.0,131.201,2.2709,1.95906,1.25752,8.0,8.0,8.0,0.00177755,0.131461
+1577,52.585867,0.0,0.0,47.0,107.447,246.0,255.0,75.0,108.0,118.854,129.0,146.0,115.0,128.0,133.646,140.0,164.0,0.0,1.0,11.2178,22.0,61.0,123.0,133.186,2.50033,1.9594,1.20279,8.0,8.0,8.0,0.00150606,0.130947
+1578,52.619233,0.0,0.0,47.0,107.647,246.0,255.0,75.0,109.0,118.868,128.0,139.0,115.0,128.0,133.774,141.0,165.0,0.0,1.0,11.2307,22.0,56.0,124.0,133.405,2.32413,1.9445,1.2202,8.0,8.0,8.0,0.00172897,0.130204
+1579,52.6526,0.0,0.0,47.0,107.325,246.0,255.0,75.0,108.0,118.753,128.0,143.0,114.0,128.0,133.853,141.0,165.0,0.0,1.0,11.3851,23.0,60.0,123.0,132.102,2.20033,1.92898,1.25738,8.0,8.0,8.0,0.00134031,0.130193
+1580,52.685967,0.0,0.0,46.0,107.412,247.0,255.0,75.0,108.0,118.584,128.0,148.0,114.0,128.0,133.73,141.0,165.0,0.0,1.0,11.4099,23.0,58.0,122.0,130.295,2.6095,2.0094,1.3246,8.0,8.0,8.0,0.00180613,0.131264
+1581,52.719333,0.0,0.0,47.0,107.795,248.0,255.0,73.0,108.0,118.533,128.0,145.0,114.0,128.0,133.823,141.0,164.0,0.0,1.0,11.5499,23.0,61.0,122.0,129.221,2.55612,2.233,1.57356,8.0,8.0,8.0,0.00178041,0.133202
+1582,52.7527,0.0,0.0,47.0,107.803,248.0,255.0,76.0,108.0,118.525,128.0,150.0,114.0,128.0,133.876,141.0,166.0,0.0,1.0,11.5361,23.0,58.0,123.0,130.993,2.69433,2.06784,1.35722,8.0,8.0,8.0,0.0017604,0.13331
+1583,52.786067,0.0,0.0,47.0,107.991,248.0,255.0,74.0,108.0,118.481,128.0,148.0,112.0,128.0,133.91,141.0,165.0,0.0,1.0,11.6263,23.0,58.0,123.0,131.262,2.60595,1.94081,1.23908,8.0,8.0,8.0,0.00165466,0.133242
+1584,52.819433,0.0,0.0,47.0,107.736,247.0,255.0,76.0,108.0,118.612,128.0,145.0,116.0,128.0,133.892,141.0,163.0,0.0,1.0,11.5014,23.0,59.0,123.0,132.269,2.25537,1.91363,1.19064,8.0,8.0,8.0,0.00114312,0.131882
+1585,52.8528,0.0,0.0,47.0,107.759,247.0,255.0,73.0,108.0,118.704,128.0,142.0,112.0,128.0,133.817,141.0,164.0,0.0,1.0,11.446,23.0,61.0,123.0,132.971,2.68835,2.02214,1.35538,8.0,8.0,8.0,0.00178041,0.132062
+1586,52.886167,0.0,0.0,47.0,108.038,248.0,255.0,75.0,109.0,118.895,128.0,155.0,107.0,128.0,133.88,141.0,164.0,0.0,1.0,11.2596,22.0,58.0,124.0,133.205,2.26866,1.98819,1.28046,8.0,8.0,8.0,0.00176612,0.133225
+1587,52.919533,0.0,0.0,47.0,107.49,247.0,255.0,75.0,108.0,118.81,128.0,139.0,114.0,128.0,133.739,141.0,163.0,0.0,1.0,11.273,23.0,57.0,123.0,131.826,2.49741,1.97995,1.26421,8.0,8.0,8.0,0.00169467,0.132159
+1588,52.9529,0.0,0.0,46.0,107.244,247.0,255.0,74.0,108.0,118.837,128.0,139.0,114.0,128.0,133.837,141.0,163.0,0.0,1.0,11.2737,23.0,57.0,124.0,133.038,2.41812,1.9048,1.23569,8.0,8.0,8.0,0.00156893,0.131261
+1589,52.986267,0.0,0.0,47.0,107.42,247.0,255.0,73.0,108.0,118.773,128.0,140.0,114.0,128.0,133.888,141.0,165.0,0.0,1.0,11.379,23.0,58.0,123.0,132.086,2.1956,1.90031,1.2546,8.0,8.0,8.0,0.001889,0.131664
+1590,53.019633,0.0,0.0,47.0,107.289,246.0,255.0,75.0,109.0,118.913,128.0,141.0,115.0,128.0,133.889,141.0,164.0,0.0,1.0,11.2146,22.0,57.0,124.0,134.057,2.46598,1.95948,1.2898,8.0,8.0,8.0,0.00182899,0.131139
+1591,53.053,0.0,0.0,46.0,107.13,246.0,255.0,74.0,109.0,118.882,128.0,145.0,114.0,128.0,133.824,141.0,165.0,0.0,1.0,11.2234,22.0,60.0,123.0,130.992,2.23494,1.89695,1.15705,8.0,8.0,8.0,0.00188043,0.130756
+1592,53.086367,0.0,0.0,47.0,106.924,246.0,255.0,74.0,108.0,118.712,128.0,142.0,113.0,128.0,133.865,141.0,163.0,0.0,1.0,11.3638,23.0,58.0,123.0,132.852,2.53007,1.94176,1.21273,8.0,8.0,8.0,0.00187757,0.129815
+1593,53.119733,0.0,0.0,47.0,107.002,246.0,255.0,73.0,108.0,118.773,128.0,149.0,113.0,128.0,133.889,141.0,167.0,0.0,1.0,11.3999,23.0,59.0,123.0,132.439,2.53458,1.97707,1.29086,8.0,8.0,8.0,0.00181184,0.130055
+1594,53.1531,0.0,0.0,47.0,107.076,246.0,255.0,71.0,109.0,118.928,128.0,144.0,115.0,128.0,133.93,141.0,166.0,0.0,1.0,11.2468,22.0,58.0,124.0,134.127,2.19482,1.92319,1.27643,8.0,8.0,8.0,0.00151749,0.130181
+1595,53.186467,0.0,0.0,46.0,106.999,246.0,255.0,74.0,108.0,118.874,128.0,145.0,114.0,128.0,133.789,141.0,164.0,0.0,1.0,11.2286,22.0,56.0,123.0,132.276,2.36249,1.91508,1.22723,8.0,8.0,8.0,0.00186043,0.130753
+1596,53.219833,0.0,0.0,46.0,107.055,247.0,255.0,74.0,108.0,118.845,128.0,145.0,112.0,128.0,133.884,141.0,164.0,0.0,1.0,11.2901,23.0,56.0,123.0,131.829,2.0406,1.86395,1.18234,8.0,8.0,8.0,0.00180613,0.131401
+1597,53.2532,0.0,0.0,46.0,107.188,246.0,255.0,74.0,109.0,118.867,128.0,145.0,114.0,128.0,133.809,141.0,163.0,0.0,1.0,11.2884,23.0,58.0,123.0,132.971,2.40696,1.97127,1.28874,8.0,8.0,8.0,0.00178041,0.131047
+1598,53.286567,0.0,0.0,47.0,107.114,246.0,255.0,73.0,109.0,119.023,128.0,141.0,114.0,128.0,133.915,141.0,163.0,0.0,1.0,11.1467,22.0,57.0,125.0,133.657,2.64426,1.99047,1.33811,8.0,8.0,8.0,0.00184614,0.130278
+1599,53.319933,0.0,0.0,47.0,107.115,246.0,255.0,72.0,108.0,118.789,128.0,148.0,114.0,128.0,133.939,141.0,163.0,0.0,1.0,11.3536,23.0,59.0,124.0,132.611,2.06561,1.84096,1.20566,8.0,8.0,8.0,0.00186614,0.130536
+1600,53.3533,0.0,0.0,46.0,107.155,247.0,255.0,73.0,108.0,118.592,128.0,142.0,113.0,128.0,133.963,141.0,164.0,0.0,1.0,11.497,23.0,59.0,123.0,131.513,2.34608,1.94009,1.26528,8.0,8.0,8.0,0.00178326,0.13137
+1601,53.386667,0.0,0.0,46.0,107.171,247.0,255.0,72.0,108.0,118.52,128.0,149.0,114.0,128.0,133.969,141.0,165.0,0.0,1.0,11.596,23.0,59.0,123.0,130.303,2.16231,1.94712,1.29154,8.0,8.0,8.0,0.00188615,0.131561
+1602,53.420033,0.0,0.0,47.0,107.298,246.0,255.0,73.0,108.0,118.561,128.0,148.0,115.0,128.0,133.971,141.0,165.0,0.0,1.0,11.5435,23.0,58.0,123.0,131.256,2.35869,1.97719,1.31469,8.0,8.0,8.0,0.00182042,0.131173
+1603,53.4534,0.0,0.0,46.0,107.365,247.0,255.0,71.0,108.0,118.583,128.0,146.0,113.0,128.0,133.93,141.0,164.0,0.0,1.0,11.4862,23.0,58.0,123.0,130.5,2.25859,1.90874,1.26413,8.0,8.0,8.0,0.00186614,0.132007
+1604,53.486767,0.0,0.0,46.0,107.249,247.0,255.0,74.0,108.0,118.686,128.0,146.0,113.0,128.0,133.895,141.0,163.0,0.0,1.0,11.3958,23.0,59.0,123.0,132.284,2.09435,1.92103,1.2158,8.0,8.0,8.0,0.00173754,0.131862
+1605,53.520133,0.0,0.0,47.0,107.339,247.0,255.0,76.0,108.0,118.646,128.0,147.0,115.0,127.0,133.824,141.0,164.0,0.0,1.0,11.442,23.0,57.0,123.0,129.529,2.31123,2.00062,1.30234,8.0,8.0,8.0,0.00169467,0.131859
+1606,53.5535,0.0,0.0,47.0,107.505,247.0,255.0,75.0,109.0,118.784,128.0,146.0,115.0,128.0,133.923,141.0,166.0,0.0,1.0,11.3052,23.0,57.0,123.0,131.139,2.10559,1.91204,1.23363,8.0,8.0,8.0,0.00189758,0.132119
+1607,53.586867,0.0,0.0,47.0,107.578,247.0,255.0,71.0,108.0,118.706,128.0,148.0,111.0,128.0,133.907,141.0,163.0,0.0,1.0,11.3954,23.0,57.0,123.0,131.87,2.42266,1.90807,1.23706,8.0,8.0,8.0,0.00174897,0.131873
+1608,53.620233,0.0,0.0,47.0,107.409,247.0,255.0,72.0,108.0,118.578,128.0,146.0,111.0,128.0,133.832,141.0,165.0,0.0,1.0,11.4696,23.0,60.0,123.0,130.92,2.47305,1.90111,1.22492,8.0,8.0,8.0,0.00192044,0.131459
+1609,53.6536,0.0,0.0,47.0,107.368,247.0,255.0,73.0,108.0,118.659,128.0,162.0,114.0,128.0,133.826,141.0,165.0,0.0,1.0,11.4292,23.0,57.0,123.0,131.088,2.17264,1.95493,1.23076,8.0,8.0,8.0,0.00182042,0.131227
+1610,53.686967,0.0,0.0,47.0,107.437,246.0,255.0,74.0,108.0,118.796,128.0,142.0,115.0,128.0,133.735,141.0,164.0,0.0,1.0,11.2422,23.0,60.0,123.0,131.197,2.41721,2.0057,1.30639,8.0,8.0,8.0,0.00173182,0.131573
+1611,53.720333,0.0,0.0,46.0,107.48,247.0,255.0,74.0,108.0,118.84,128.0,141.0,112.0,128.0,133.797,141.0,165.0,0.0,1.0,11.2603,23.0,59.0,123.0,132.178,2.13802,1.90981,1.23499,8.0,8.0,8.0,0.00180613,0.131913
+1612,53.7537,0.0,0.0,47.0,107.394,247.0,255.0,76.0,108.0,118.809,128.0,149.0,114.0,128.0,133.802,141.0,165.0,0.0,1.0,11.2941,23.0,58.0,123.0,132.705,2.52023,1.92666,1.26626,8.0,8.0,8.0,0.00172611,0.132519
+1613,53.787067,0.0,0.0,47.0,107.318,247.0,255.0,73.0,108.0,118.739,128.0,146.0,115.0,128.0,133.805,141.0,163.0,0.0,1.0,11.3658,23.0,56.0,123.0,131.918,2.55036,2.00992,1.32506,8.0,8.0,8.0,0.00169467,0.131353
+1614,53.820433,0.0,0.0,47.0,107.567,247.0,255.0,74.0,109.0,118.861,129.0,142.0,113.0,128.0,133.779,141.0,165.0,0.0,1.0,11.2622,22.0,58.0,123.0,133.289,2.27435,1.92469,1.25325,8.0,8.0,8.0,0.00202904,0.131287
+1615,53.8538,0.0,0.0,47.0,107.545,246.0,255.0,73.0,109.0,118.876,128.0,149.0,112.0,128.0,133.725,141.0,165.0,0.0,1.0,11.217,22.0,57.0,123.0,131.971,2.36638,1.95269,1.22665,8.0,8.0,8.0,0.00195759,0.130761
+1616,53.887167,0.0,0.0,47.0,107.442,246.0,255.0,74.0,108.0,118.87,128.0,145.0,111.0,128.0,133.808,141.0,163.0,0.0,1.0,11.231,23.0,57.0,123.0,132.002,2.08437,1.91501,1.18568,8.0,8.0,8.0,0.00196902,0.130078
+1617,53.920533,0.0,0.0,46.0,106.833,245.0,255.0,74.0,108.0,118.699,128.0,145.0,115.0,127.0,133.68,141.0,164.0,0.0,1.0,11.387,23.0,61.0,123.0,132.233,2.59344,2.00781,1.33115,8.0,8.0,8.0,0.00166895,0.127978
+1618,53.9539,0.0,0.0,47.0,107.62,247.0,255.0,73.0,108.0,118.777,128.0,148.0,115.0,128.0,133.725,141.0,165.0,0.0,1.0,11.2631,22.0,56.0,123.0,131.818,2.56225,2.00525,1.30474,8.0,8.0,8.0,0.00196331,0.131413
+1619,53.987267,0.0,0.0,47.0,107.706,247.0,255.0,73.0,109.0,118.879,128.0,148.0,115.0,128.0,133.751,141.0,163.0,0.0,1.0,11.2061,22.0,58.0,123.0,132.294,2.02557,1.84187,1.17894,8.0,8.0,8.0,0.00181756,0.131824
+1620,54.020633,0.0,0.0,47.0,107.815,247.0,255.0,74.0,108.0,118.729,128.0,152.0,114.0,128.0,133.742,141.0,161.0,0.0,1.0,11.2982,22.0,56.0,123.0,130.306,2.30217,1.90358,1.23999,8.0,8.0,8.0,0.00175754,0.132007
+1621,54.054,0.0,0.0,47.0,107.615,247.0,255.0,74.0,108.0,118.559,128.0,168.0,114.0,127.0,133.758,141.0,164.0,0.0,1.0,11.4778,23.0,57.0,123.0,129.163,2.15694,1.93732,1.26511,8.0,8.0,8.0,0.00184899,0.132122
+1622,54.087367,0.0,0.0,47.0,107.858,248.0,255.0,73.0,108.0,118.534,128.0,169.0,113.0,128.0,133.862,141.0,161.0,0.0,1.0,11.4981,23.0,57.0,123.0,131.353,2.4619,2.00876,1.33485,8.0,8.0,8.0,0.00197474,0.132733
+1623,54.120733,0.0,0.0,47.0,107.687,247.0,255.0,73.0,108.0,118.645,128.0,168.0,112.0,127.0,133.795,141.0,164.0,0.0,1.0,11.4128,23.0,58.0,123.0,129.123,2.39684,1.91935,1.23444,8.0,8.0,8.0,0.00165752,0.13123
+1624,54.1541,0.0,0.0,47.0,107.521,247.0,255.0,75.0,108.0,118.58,128.0,162.0,112.0,128.0,133.803,141.0,163.0,0.0,1.0,11.447,23.0,57.0,123.0,130.686,2.1403,1.90086,1.2003,8.0,8.0,8.0,0.0018147,0.131156
+1625,54.187467,0.0,0.0,47.0,107.456,247.0,255.0,73.0,108.0,118.561,128.0,170.0,114.0,127.0,133.775,141.0,162.0,0.0,1.0,11.5063,23.0,61.0,122.0,129.989,2.57886,2.00918,1.31229,8.0,8.0,8.0,0.00198617,0.130976
+1626,54.220833,0.0,0.0,47.0,107.526,247.0,255.0,73.0,108.0,118.748,128.0,174.0,111.0,128.0,133.865,141.0,163.0,0.0,1.0,11.3548,23.0,57.0,123.0,131.145,2.25693,1.96518,1.28142,8.0,8.0,8.0,0.00194044,0.131587
+1627,54.2542,0.0,0.0,47.0,107.624,248.0,255.0,72.0,109.0,118.894,129.0,165.0,111.0,128.0,133.811,141.0,165.0,0.0,1.0,11.2576,22.0,57.0,124.0,133.573,2.42848,1.95163,1.23362,8.0,8.0,8.0,0.00198045,0.132582
+1628,54.287567,0.0,0.0,47.0,107.409,247.0,255.0,73.0,108.0,118.72,128.0,152.0,114.0,128.0,133.82,141.0,166.0,0.0,1.0,11.3785,23.0,58.0,123.0,132.298,2.34293,1.93296,1.22996,8.0,8.0,8.0,0.00196616,0.131622
+1629,54.320933,0.0,0.0,47.0,107.222,247.0,255.0,73.0,108.0,118.646,128.0,151.0,114.0,128.0,133.756,141.0,165.0,0.0,1.0,11.4526,23.0,57.0,123.0,132.559,2.18742,1.92225,1.28157,8.0,8.0,8.0,0.001869,0.131053
+1630,54.3543,0.0,0.0,46.0,107.111,246.0,255.0,71.0,108.0,118.674,128.0,157.0,114.0,128.0,133.829,141.0,163.0,0.0,1.0,11.4033,23.0,59.0,123.0,132.143,2.49496,1.98779,1.33069,8.0,8.0,8.0,0.00195759,0.130338
+1631,54.387667,0.0,0.0,46.0,107.173,246.0,255.0,75.0,108.0,118.774,128.0,144.0,114.0,128.0,133.85,141.0,166.0,0.0,1.0,11.3436,23.0,58.0,123.0,132.025,2.1857,1.9013,1.22548,8.0,8.0,8.0,0.0017061,0.130813
+1632,54.421033,0.0,0.0,47.0,107.123,246.0,255.0,76.0,109.0,118.824,128.0,144.0,115.0,128.0,133.882,141.0,164.0,0.0,1.0,11.3053,23.0,57.0,124.0,133.91,2.44175,1.93278,1.26548,8.0,8.0,8.0,0.00168324,0.129701
+1633,54.4544,0.0,0.0,47.0,107.37,247.0,255.0,75.0,108.0,118.642,128.0,143.0,114.0,127.0,133.869,141.0,165.0,0.0,1.0,11.4786,23.0,58.0,123.0,130.416,2.6161,1.99313,1.32273,8.0,8.0,8.0,0.00172325,0.130907
+1634,54.487767,0.0,0.0,47.0,107.219,246.0,255.0,74.0,108.0,118.758,128.0,146.0,115.0,128.0,133.795,141.0,168.0,0.0,1.0,11.3391,23.0,58.0,123.0,132.421,2.12214,1.96328,1.26788,8.0,8.0,8.0,0.00167181,0.130293
+1635,54.521133,0.0,0.0,47.0,107.166,246.0,255.0,71.0,109.0,118.935,128.0,149.0,114.0,127.0,133.617,141.0,166.0,0.0,1.0,11.1317,22.0,59.0,123.0,132.046,2.43562,1.93553,1.25378,8.0,8.0,8.0,0.00184328,0.130207
+1636,54.5545,0.0,0.0,47.0,107.43,246.0,255.0,71.0,109.0,118.977,128.0,148.0,114.0,128.0,133.701,141.0,164.0,0.0,1.0,11.1007,22.0,58.0,123.0,132.702,2.04374,1.83222,1.17164,8.0,8.0,8.0,0.00193473,0.130767
+1637,54.587867,0.0,0.0,47.0,107.193,246.0,255.0,73.0,108.0,118.829,128.0,165.0,114.0,127.0,133.738,141.0,165.0,0.0,1.0,11.2955,23.0,60.0,123.0,132.236,2.4219,1.99529,1.29076,8.0,8.0,8.0,0.00175183,0.130398
+1638,54.621233,0.0,0.0,47.0,107.43,246.0,255.0,75.0,108.0,118.799,128.0,162.0,109.0,128.0,133.696,141.0,163.0,0.0,1.0,11.2741,23.0,57.0,123.0,132.599,2.51196,2.00482,1.3061,8.0,8.0,8.0,0.00176898,0.130707
+1639,54.6546,0.0,0.0,47.0,107.37,246.0,255.0,74.0,108.0,118.777,128.0,142.0,113.0,128.0,133.838,141.0,166.0,0.0,1.0,11.3388,23.0,59.0,123.0,132.964,2.12618,1.87962,1.21377,8.0,8.0,8.0,0.00181756,0.130558
+1640,54.687967,0.0,0.0,46.0,107.267,246.0,255.0,73.0,108.0,118.778,128.0,149.0,112.0,128.0,133.802,141.0,165.0,0.0,1.0,11.3024,22.0,57.0,123.0,132.281,2.48144,1.95385,1.23624,8.0,8.0,8.0,0.00169467,0.130944
+1641,54.721333,0.0,0.0,47.0,107.417,247.0,255.0,74.0,108.0,118.716,128.0,143.0,114.0,127.0,133.847,141.0,166.0,0.0,1.0,11.4154,23.0,58.0,123.0,131.272,2.23818,1.95848,1.25955,8.0,8.0,8.0,0.00159179,0.131344
+1642,54.7547,0.0,0.0,47.0,107.321,247.0,255.0,73.0,108.0,118.765,129.0,143.0,109.0,128.0,133.729,141.0,163.0,0.0,1.0,11.2973,23.0,59.0,123.0,133.697,2.61326,2.03259,1.30961,8.0,8.0,8.0,0.00167753,0.131173
+1643,54.788067,0.0,0.0,47.0,107.631,247.0,255.0,73.0,108.0,118.709,128.0,147.0,115.0,128.0,133.824,141.0,164.0,0.0,1.0,11.3534,23.0,58.0,123.0,131.446,2.54707,1.96262,1.22611,8.0,8.0,8.0,0.00170896,0.131896
+1644,54.821433,0.0,0.0,47.0,107.579,247.0,255.0,75.0,108.0,118.702,128.0,144.0,111.0,128.0,133.898,141.0,164.0,0.0,1.0,11.3784,23.0,56.0,123.0,132.559,2.1768,1.86339,1.20695,8.0,8.0,8.0,0.0017604,0.131933
+1645,54.8548,0.0,0.0,47.0,107.26,247.0,255.0,74.0,108.0,118.617,128.0,143.0,115.0,128.0,133.86,141.0,167.0,0.0,1.0,11.5083,23.0,59.0,123.0,131.851,2.47216,1.96794,1.32832,8.0,8.0,8.0,0.00183756,0.131219
+1646,54.888167,0.0,0.0,46.0,107.246,247.0,255.0,74.0,108.0,118.59,128.0,140.0,113.0,128.0,133.888,141.0,164.0,0.0,1.0,11.498,23.0,58.0,123.0,132.268,2.11745,1.96792,1.29486,8.0,8.0,8.0,0.00185185,0.131381
+1647,54.921533,0.0,0.0,47.0,107.155,246.0,255.0,74.0,108.0,118.76,128.0,141.0,113.0,128.0,133.912,141.0,164.0,0.0,1.0,11.3873,23.0,58.0,124.0,133.489,2.35465,1.96544,1.24728,8.0,8.0,8.0,0.00172611,0.13053
+1648,54.9549,0.0,0.0,47.0,107.239,246.0,255.0,75.0,108.0,118.764,128.0,144.0,114.0,128.0,133.871,141.0,163.0,0.0,1.0,11.3375,23.0,58.0,123.0,131.923,2.30195,1.9075,1.22193,8.0,8.0,8.0,0.00182899,0.130787
+1649,54.988267,0.0,0.0,46.0,107.129,246.0,255.0,76.0,108.0,118.771,128.0,141.0,114.0,128.0,133.869,141.0,165.0,0.0,1.0,11.3798,23.0,60.0,124.0,133.487,2.05335,1.93828,1.23972,8.0,8.0,8.0,0.0018147,0.130733
+1650,55.021633,0.0,0.0,47.0,107.28,247.0,255.0,75.0,108.0,118.704,128.0,142.0,115.0,128.0,133.833,141.0,162.0,0.0,1.0,11.3827,23.0,56.0,123.0,133.225,2.42647,1.96359,1.29951,8.0,8.0,8.0,0.00189472,0.131121
+1651,55.055,0.0,0.0,47.0,107.234,247.0,255.0,74.0,108.0,118.87,128.0,145.0,116.0,128.0,133.881,141.0,163.0,0.0,1.0,11.2795,23.0,56.0,124.0,133.705,2.1328,1.89478,1.19092,8.0,8.0,8.0,0.00183471,0.131284
+1652,55.088367,0.0,0.0,47.0,106.966,246.0,255.0,76.0,109.0,118.994,129.0,140.0,114.0,128.0,133.798,141.0,162.0,0.0,1.0,11.1521,22.0,56.0,124.0,135.568,2.35543,1.93833,1.24011,8.0,8.0,8.0,0.00176898,0.129961
+1653,55.121733,0.0,0.0,46.0,106.7,246.0,255.0,73.0,109.0,118.876,128.0,145.0,113.0,128.0,133.617,141.0,163.0,0.0,1.0,11.1666,22.0,60.0,123.0,130.876,2.36296,1.95079,1.31954,8.0,8.0,8.0,0.00198045,0.128795
+1654,55.1551,0.0,0.0,47.0,106.9,246.0,255.0,74.0,109.0,118.996,129.0,145.0,115.0,128.0,133.746,141.0,162.0,0.0,1.0,11.1292,22.0,58.0,124.0,134.989,2.20281,1.89263,1.25097,8.0,8.0,8.0,0.0017404,0.12941
+1655,55.188467,0.0,0.0,47.0,106.997,246.0,255.0,73.0,109.0,119.036,129.0,141.0,114.0,128.0,133.707,141.0,163.0,0.0,1.0,11.086,22.0,56.0,124.0,133.926,2.42226,1.88372,1.23498,8.0,8.0,8.0,0.00179184,0.129087
+1656,55.221833,0.0,0.0,46.0,107.011,246.0,255.0,75.0,109.0,119.129,129.0,146.0,114.0,128.0,133.714,141.0,163.0,0.0,1.0,11.0308,22.0,55.0,124.0,134.766,2.09581,1.8468,1.17458,8.0,8.0,8.0,0.00200617,0.129252
+1657,55.2552,0.0,0.0,46.0,106.682,245.0,255.0,75.0,109.0,119.068,129.0,146.0,112.0,128.0,133.688,141.0,163.0,0.0,1.0,11.1102,22.0,58.0,124.0,135.547,2.59646,1.99714,1.29628,8.0,8.0,8.0,0.001869,0.128426
+1658,55.288567,0.0,0.0,46.0,106.583,246.0,255.0,75.0,109.0,119.162,129.0,146.0,115.0,128.0,133.668,141.0,163.0,0.0,1.0,11.0258,22.0,56.0,124.0,136.302,2.67295,2.04742,1.30272,8.0,8.0,8.0,0.00172039,0.129558
+1659,55.321933,0.0,0.0,46.0,106.66,245.0,255.0,74.0,109.0,119.245,129.0,152.0,115.0,127.0,133.63,141.0,163.0,0.0,1.0,10.9346,22.0,58.0,124.0,135.481,2.11256,1.90043,1.20535,8.0,8.0,8.0,0.00185757,0.129272
+1660,55.3553,0.0,0.0,47.0,106.897,246.0,255.0,73.0,109.0,119.32,129.0,150.0,114.0,128.0,133.608,140.0,162.0,0.0,1.0,10.8588,22.0,57.0,124.0,137.018,2.40416,1.90175,1.22433,8.0,8.0,8.0,0.0017947,0.12957
+1661,55.388667,0.0,0.0,46.0,106.911,246.0,255.0,74.0,109.0,119.216,129.0,144.0,113.0,127.0,133.669,141.0,164.0,0.0,1.0,10.971,22.0,57.0,124.0,133.98,2.20804,1.9814,1.25344,8.0,8.0,8.0,0.00180327,0.129638
+1662,55.422033,0.0,0.0,46.0,106.991,246.0,255.0,76.0,109.0,119.045,129.0,147.0,114.0,128.0,133.728,141.0,163.0,0.0,1.0,11.1053,22.0,55.0,124.0,135.567,2.62497,2.01013,1.2932,8.0,8.0,8.0,0.00180898,0.130167
+1663,55.4554,0.0,0.0,46.0,107.212,247.0,255.0,75.0,109.0,119.205,129.0,144.0,115.0,127.0,133.586,141.0,164.0,0.0,1.0,10.9385,22.0,60.0,123.0,134.894,2.67055,1.97936,1.2552,8.0,8.0,8.0,0.00184042,0.131013
+1664,55.488767,0.0,0.0,47.0,107.247,247.0,255.0,75.0,109.0,119.31,129.0,142.0,115.0,128.0,133.654,141.0,166.0,0.0,1.0,10.875,22.0,56.0,124.0,136.58,2.29491,1.89247,1.17618,8.0,8.0,8.0,0.00202046,0.131181
+1665,55.522133,0.0,0.0,46.0,106.935,247.0,255.0,75.0,109.0,119.195,129.0,143.0,114.0,127.0,133.528,140.0,166.0,0.0,1.0,10.9296,22.0,56.0,123.0,134.882,2.84079,1.97644,1.29644,8.0,8.0,8.0,0.00178898,0.131073
+1666,55.5555,0.0,0.0,46.0,106.852,247.0,255.0,75.0,109.0,119.073,129.0,147.0,112.0,128.0,133.553,140.0,166.0,0.0,1.0,10.9966,22.0,56.0,123.0,134.044,2.35965,1.99838,1.25784,8.0,8.0,8.0,0.00179755,0.131236
+1667,55.588867,0.0,0.0,47.0,107.025,246.0,255.0,74.0,109.0,119.093,129.0,142.0,112.0,128.0,133.616,141.0,163.0,0.0,1.0,11.018,22.0,57.0,123.0,134.642,2.64797,1.94352,1.24888,8.0,8.0,8.0,0.00169467,0.13075
+1668,55.622233,0.0,0.0,47.0,107.064,246.0,255.0,74.0,109.0,119.11,129.0,145.0,115.0,128.0,133.647,140.0,164.0,0.0,1.0,11.0183,22.0,55.0,124.0,134.738,2.45602,1.90189,1.22159,8.0,8.0,8.0,0.00174897,0.131281
+1669,55.6556,0.0,0.0,47.0,107.013,247.0,255.0,74.0,109.0,119.013,129.0,144.0,112.0,128.0,133.722,141.0,164.0,0.0,1.0,11.1571,22.0,56.0,123.0,133.908,2.18612,1.9158,1.24155,8.0,8.0,8.0,0.00176898,0.131039
+1670,55.688967,0.0,0.0,46.0,106.991,246.0,255.0,74.0,109.0,119.022,129.0,144.0,112.0,128.0,133.672,140.0,165.0,0.0,1.0,11.0957,22.0,58.0,123.0,135.1,2.47087,1.97046,1.27941,8.0,8.0,8.0,0.001869,0.131159
+1671,55.722333,0.0,0.0,46.0,107.03,247.0,255.0,74.0,109.0,119.081,129.0,146.0,113.0,128.0,133.727,141.0,164.0,0.0,1.0,11.1044,22.0,59.0,124.0,135.147,2.07345,1.88968,1.19138,8.0,8.0,8.0,0.00170896,0.131576
+1672,55.7557,0.0,0.0,47.0,107.155,247.0,255.0,75.0,109.0,119.242,129.0,148.0,113.0,128.0,133.703,140.0,163.0,0.0,1.0,10.9461,22.0,57.0,124.0,136.845,2.32573,1.91389,1.21982,8.0,8.0,8.0,0.00165181,0.131419
+1673,55.789067,0.0,0.0,47.0,107.171,247.0,255.0,74.0,109.0,119.101,129.0,144.0,114.0,128.0,133.71,141.0,163.0,0.0,1.0,11.0937,22.0,57.0,124.0,135.387,2.59043,2.01587,1.26687,8.0,8.0,8.0,0.00182042,0.13177
+1674,55.822433,0.0,0.0,47.0,106.986,246.0,255.0,72.0,109.0,119.083,129.0,144.0,112.0,128.0,133.71,141.0,163.0,0.0,1.0,11.0887,22.0,57.0,124.0,136.745,2.34103,1.9398,1.25631,8.0,8.0,8.0,0.00202332,0.131176
+1675,55.8558,0.0,0.0,47.0,107.0,246.0,255.0,74.0,109.0,119.149,129.0,143.0,113.0,128.0,133.66,141.0,165.0,0.0,1.0,10.9708,22.0,57.0,124.0,134.499,2.84903,1.9553,1.27146,8.0,8.0,8.0,0.00187757,0.130736
+1676,55.889167,0.0,0.0,47.0,107.14,246.0,255.0,73.0,109.0,119.205,129.0,144.0,114.0,128.0,133.691,141.0,167.0,0.0,1.0,10.9174,22.0,58.0,124.0,134.417,2.40346,1.84765,1.20077,8.0,8.0,8.0,0.00176612,0.131193
+1677,55.922533,0.0,0.0,46.0,106.938,246.0,255.0,75.0,109.0,119.126,129.0,146.0,111.0,128.0,133.71,141.0,165.0,0.0,1.0,11.0724,22.0,56.0,124.0,136.425,2.92915,1.97475,1.31864,8.0,8.0,8.0,0.00176612,0.13063
+1678,55.9559,0.0,0.0,46.0,107.03,246.0,255.0,74.0,109.0,118.986,129.0,147.0,113.0,128.0,133.71,141.0,163.0,0.0,1.0,11.1324,22.0,55.0,124.0,134.65,2.72142,2.02063,1.31233,8.0,8.0,8.0,0.00167753,0.13107
+1679,55.989267,0.0,0.0,46.0,107.066,246.0,255.0,76.0,109.0,119.106,129.0,144.0,112.0,128.0,133.736,141.0,164.0,0.0,1.0,11.1034,22.0,56.0,124.0,135.66,2.24739,1.87902,1.20082,8.0,8.0,8.0,0.00178898,0.130853
+1680,56.022633,0.0,0.0,47.0,107.147,246.0,255.0,75.0,109.0,119.086,129.0,149.0,113.0,128.0,133.646,140.0,162.0,0.0,1.0,11.0231,22.0,56.0,124.0,134.42,2.76808,1.97992,1.28483,8.0,8.0,8.0,0.00186328,0.131387
+1681,56.056,0.0,0.0,46.0,107.266,247.0,255.0,74.0,109.0,119.108,129.0,147.0,113.0,127.0,133.66,141.0,165.0,0.0,1.0,11.0437,22.0,57.0,124.0,133.308,2.40492,1.97235,1.30562,8.0,8.0,8.0,0.00154607,0.132153
+1682,56.089367,0.0,0.0,47.0,107.195,246.0,255.0,73.0,108.0,118.888,129.0,145.0,114.0,128.0,133.691,140.0,166.0,0.0,1.0,11.1891,22.0,57.0,123.0,133.554,3.18701,2.05538,1.33633,8.0,8.0,8.0,0.00170896,0.131813
+1683,56.122733,0.0,0.0,47.0,107.414,246.0,255.0,73.0,108.0,118.8,128.0,151.0,115.0,128.0,133.734,141.0,164.0,0.0,1.0,11.2928,22.0,56.0,123.0,133.125,3.00142,1.98561,1.26658,8.0,8.0,8.0,0.00171754,0.132602
+1684,56.1561,0.0,0.0,47.0,107.598,247.0,255.0,72.0,108.0,118.911,129.0,161.0,113.0,128.0,133.78,141.0,163.0,0.0,1.0,11.2245,23.0,57.0,124.0,134.588,2.14442,1.83884,1.17062,8.0,8.0,8.0,0.00188615,0.132639
+1685,56.189467,0.0,0.0,47.0,107.615,247.0,255.0,73.0,109.0,118.813,128.0,164.0,113.0,128.0,133.772,141.0,165.0,0.0,1.0,11.3185,22.0,58.0,123.0,132.37,2.70717,2.00984,1.33075,8.0,8.0,8.0,0.00191472,0.132633
+1686,56.222833,0.0,0.0,46.0,107.522,247.0,255.0,70.0,108.0,118.806,128.0,162.0,114.0,128.0,133.787,141.0,164.0,0.0,1.0,11.2823,23.0,59.0,123.0,131.839,2.35412,2.01704,1.27002,8.0,8.0,8.0,0.00164323,0.133385
+1687,56.2562,0.0,0.0,47.0,107.28,247.0,255.0,70.0,108.0,118.705,128.0,162.0,114.0,128.0,133.742,140.0,165.0,0.0,1.0,11.352,23.0,59.0,123.0,131.712,2.80668,1.98442,1.26455,8.0,8.0,8.0,0.00163752,0.132345
+1688,56.289567,0.0,0.0,47.0,107.278,246.0,255.0,73.0,109.0,118.961,128.0,143.0,113.0,128.0,133.818,141.0,163.0,0.0,1.0,11.151,22.0,56.0,124.0,133.171,2.88178,1.97588,1.26165,8.0,8.0,8.0,0.00184042,0.131536
+1689,56.322933,0.0,0.0,47.0,107.247,247.0,255.0,73.0,109.0,118.972,128.0,142.0,114.0,128.0,133.831,141.0,166.0,0.0,1.0,11.2024,22.0,57.0,124.0,133.829,2.42724,1.96057,1.25231,8.0,8.0,8.0,0.00208333,0.131524
+1690,56.3563,0.0,0.0,47.0,107.038,246.0,255.0,73.0,108.0,118.814,128.0,161.0,112.0,128.0,133.797,141.0,165.0,0.0,1.0,11.2563,22.0,56.0,123.0,132.723,2.94838,2.01193,1.30336,8.0,8.0,8.0,0.00210334,0.13069
+1691,56.389667,0.0,0.0,46.0,106.952,246.0,255.0,73.0,108.0,118.719,128.0,162.0,113.0,128.0,133.853,141.0,165.0,0.0,1.0,11.3873,23.0,58.0,123.0,130.744,2.29521,1.87629,1.20213,8.0,8.0,8.0,0.00180613,0.130481
+1692,56.423033,0.0,0.0,46.0,106.59,245.0,255.0,73.0,108.0,118.865,129.0,155.0,114.0,128.0,133.842,141.0,164.0,0.0,1.0,11.2731,23.0,57.0,124.0,134.168,2.74997,1.95381,1.24681,8.0,8.0,8.0,0.0016318,0.127772
+1693,56.4564,0.0,0.0,46.0,106.913,246.0,255.0,73.0,109.0,118.997,128.0,155.0,114.0,128.0,133.767,141.0,166.0,0.0,1.0,11.1851,23.0,56.0,124.0,133.615,2.5922,1.98952,1.30626,8.0,8.0,8.0,0.00179755,0.129693
+1694,56.489767,0.0,0.0,46.0,106.623,245.0,255.0,72.0,109.0,118.982,129.0,161.0,115.0,128.0,133.836,141.0,165.0,0.0,1.0,11.1853,22.0,57.0,124.0,134.469,2.30083,1.92356,1.24247,8.0,8.0,8.0,0.00185471,0.128078
+1695,56.523133,0.0,0.0,46.0,106.595,245.0,255.0,73.0,109.0,118.891,128.0,164.0,114.0,128.0,133.727,140.0,165.0,0.0,1.0,11.1935,22.0,56.0,123.0,132.138,2.52509,1.90468,1.2186,8.0,8.0,8.0,0.00196902,0.127792
+1696,56.5565,0.0,0.0,46.0,106.744,245.0,255.0,72.0,109.0,118.957,128.0,157.0,114.0,128.0,133.815,141.0,165.0,0.0,1.0,11.1831,22.0,57.0,124.0,133.24,2.17247,1.89176,1.14416,8.0,8.0,8.0,0.00188043,0.128778
+1697,56.589867,0.0,0.0,47.0,107.043,245.0,255.0,74.0,109.0,119.033,129.0,157.0,114.0,128.0,133.697,141.0,167.0,0.0,1.0,11.1308,22.0,58.0,124.0,134.227,2.32715,1.97877,1.26653,8.0,8.0,8.0,0.00182042,0.128246
+1698,56.623233,0.0,0.0,46.0,106.208,243.0,255.0,73.0,109.0,119.006,128.0,145.0,114.0,128.0,133.727,141.0,166.0,0.0,1.0,11.0965,22.0,57.0,124.0,132.597,2.80248,2.02948,1.3278,8.0,8.0,8.0,0.00193759,0.125054
+1699,56.6566,0.0,0.0,46.0,105.905,243.0,255.0,76.0,109.0,118.877,128.0,145.0,115.0,128.0,133.807,141.0,164.0,0.0,1.0,11.2589,22.0,57.0,124.0,133.918,2.21616,1.85232,1.19327,8.0,8.0,8.0,0.00167181,0.122148
+1700,56.689967,0.0,0.0,46.0,104.34,237.0,255.0,74.0,108.0,118.757,128.0,155.0,115.0,128.0,133.784,141.0,167.0,0.0,1.0,11.3386,23.0,59.0,123.0,132.62,3.0243,1.93381,1.24548,8.0,8.0,8.0,0.0020719,0.106387
+1701,56.723333,0.0,0.0,45.0,103.291,234.0,255.0,74.0,109.0,118.825,128.0,144.0,113.0,128.0,133.857,141.0,168.0,0.0,1.0,11.3368,23.0,56.0,123.0,131.126,2.52002,1.91854,1.21918,8.0,8.0,8.0,0.00166895,0.0971622
+1702,56.7567,0.0,0.0,46.0,103.156,234.0,255.0,75.0,108.0,118.837,128.0,143.0,113.0,128.0,133.83,141.0,166.0,0.0,1.0,11.2857,22.0,57.0,124.0,133.109,2.33747,2.01815,1.31187,8.0,8.0,8.0,0.0017947,0.0965735
+1703,56.790067,0.0,0.0,45.0,103.152,235.0,255.0,71.0,108.0,118.818,128.0,143.0,109.0,128.0,133.841,141.0,165.0,0.0,1.0,11.3345,23.0,57.0,124.0,132.759,2.35994,1.96015,1.25186,8.0,8.0,8.0,0.00172897,0.0991455
+1704,56.823433,0.0,0.0,45.0,102.684,233.0,255.0,73.0,109.0,118.986,129.0,144.0,109.0,128.0,133.836,141.0,166.0,0.0,1.0,11.175,22.0,56.0,124.0,134.968,2.25023,1.86736,1.19619,8.0,8.0,8.0,0.00163466,0.0936357
+1705,56.8568,0.0,0.0,45.0,101.912,230.0,255.0,74.0,109.0,118.91,128.0,139.0,112.0,128.0,133.736,141.0,163.0,0.0,1.0,11.1899,22.0,58.0,123.0,132.432,2.75494,1.99352,1.3023,8.0,8.0,8.0,0.0017404,0.0864169
+1706,56.890167,0.0,0.0,44.0,101.016,228.0,255.0,72.0,109.0,118.872,128.0,144.0,115.0,128.0,133.797,141.0,164.0,0.0,1.0,11.2169,22.0,57.0,123.0,131.27,2.50287,1.98591,1.2926,8.0,8.0,8.0,0.00169182,0.0808013
+1707,56.923533,0.0,0.0,44.0,100.704,227.0,255.0,74.0,108.0,118.718,128.0,142.0,114.0,128.0,133.779,141.0,164.0,0.0,1.0,11.3367,23.0,58.0,123.0,131.62,2.69521,1.92236,1.23955,8.0,8.0,8.0,0.00184899,0.0774891
+1708,56.9569,0.0,0.0,45.0,101.103,228.0,255.0,74.0,108.0,118.716,128.0,144.0,114.0,128.0,133.849,141.0,164.0,0.0,1.0,11.3879,22.0,56.0,123.0,131.976,2.76181,1.94503,1.25205,8.0,8.0,8.0,0.0016318,0.080144
+1709,56.990267,0.0,0.0,44.0,101.171,228.0,255.0,74.0,108.0,118.837,128.0,144.0,114.0,128.0,133.902,141.0,165.0,0.0,1.0,11.3435,23.0,58.0,124.0,133.451,2.32106,1.9483,1.26407,8.0,8.0,8.0,0.00188615,0.0807928
+1710,57.023633,0.0,0.0,44.0,101.066,228.0,255.0,72.0,108.0,118.723,128.0,143.0,114.0,128.0,133.931,141.0,165.0,0.0,1.0,11.3952,23.0,57.0,123.0,131.79,2.57745,2.00704,1.32843,8.0,8.0,8.0,0.00159465,0.0811214
+1711,57.057,0.0,0.0,44.0,101.116,228.0,255.0,73.0,108.0,118.595,128.0,143.0,113.0,128.0,133.934,141.0,165.0,0.0,1.0,11.5346,23.0,58.0,123.0,131.08,2.14097,1.86412,1.19735,8.0,8.0,8.0,0.00170325,0.08131
+1712,57.090367,0.0,0.0,45.0,101.275,228.0,255.0,74.0,108.0,118.637,128.0,142.0,114.0,128.0,133.949,141.0,165.0,0.0,1.0,11.4997,23.0,57.0,123.0,132.62,2.31623,1.96,1.24966,8.0,8.0,8.0,0.00173754,0.0801126
+1713,57.123733,0.0,0.0,45.0,101.4,228.0,255.0,75.0,108.0,118.709,128.0,145.0,113.0,128.0,133.938,141.0,164.0,0.0,1.0,11.4349,23.0,58.0,123.0,130.98,2.58685,2.01821,1.31055,8.0,8.0,8.0,0.00184042,0.0808842
+1714,57.1571,0.0,0.0,44.0,101.248,228.0,255.0,71.0,108.0,118.748,128.0,158.0,113.0,128.0,133.975,141.0,165.0,0.0,1.0,11.4242,23.0,58.0,124.0,133.2,2.27821,1.97018,1.30141,8.0,8.0,8.0,0.00175469,0.080184
+1715,57.190467,0.0,0.0,44.0,101.329,228.0,255.0,72.0,108.0,118.637,128.0,144.0,111.0,128.0,133.884,141.0,165.0,0.0,1.0,11.4769,23.0,58.0,123.0,132.547,2.53011,1.94395,1.27204,8.0,8.0,8.0,0.0019233,0.0807413
+1716,57.223833,0.0,0.0,44.0,101.325,228.0,255.0,72.0,108.0,118.724,128.0,141.0,113.0,128.0,133.967,141.0,164.0,0.0,1.0,11.4369,23.0,57.0,124.0,133.106,2.0869,1.87758,1.21701,8.0,8.0,8.0,0.00179184,0.0811443
+1717,57.2572,0.0,0.0,45.0,101.191,227.0,255.0,72.0,108.0,118.799,128.0,141.0,112.0,128.0,133.875,141.0,168.0,0.0,1.0,11.3557,23.0,61.0,123.0,131.736,2.70427,2.01816,1.34511,8.0,8.0,8.0,0.00170325,0.0791038
+1718,57.290567,0.0,0.0,45.0,101.52,228.0,255.0,73.0,109.0,118.895,129.0,145.0,113.0,128.0,133.897,141.0,164.0,0.0,1.0,11.2803,23.0,58.0,124.0,133.967,2.57335,2.05433,1.33773,8.0,8.0,8.0,0.0018147,0.080827
+1719,57.323933,0.0,0.0,45.0,101.433,228.0,255.0,73.0,108.0,118.803,128.0,142.0,113.0,128.0,133.895,141.0,163.0,0.0,1.0,11.3431,23.0,57.0,124.0,133.236,2.12721,1.90017,1.18642,8.0,8.0,8.0,0.00164895,0.0807099
+1720,57.3573,0.0,0.0,45.0,101.384,228.0,255.0,73.0,108.0,118.814,129.0,146.0,114.0,128.0,133.859,141.0,163.0,0.0,1.0,11.3241,23.0,56.0,124.0,133.662,2.38687,1.89236,1.25322,8.0,8.0,8.0,0.00169182,0.0808471
+1721,57.390667,0.0,0.0,44.0,101.325,228.0,255.0,73.0,108.0,118.774,128.0,140.0,114.0,128.0,133.904,141.0,164.0,0.0,1.0,11.4115,23.0,57.0,123.0,132.313,2.12656,1.97591,1.29482,8.0,8.0,8.0,0.00160322,0.0809071
+1722,57.424033,0.0,0.0,45.0,101.63,228.0,255.0,73.0,108.0,118.721,128.0,145.0,115.0,128.0,133.927,141.0,163.0,0.0,1.0,11.4281,23.0,57.0,124.0,133.026,2.35013,2.02329,1.32705,8.0,8.0,8.0,0.00153178,0.08115
+1723,57.4574,0.0,0.0,44.0,101.695,229.0,255.0,72.0,108.0,118.568,128.0,145.0,112.0,128.0,133.89,141.0,166.0,0.0,1.0,11.5634,23.0,57.0,123.0,131.092,2.22121,1.97742,1.26478,8.0,8.0,8.0,0.00164037,0.0813357
+1724,57.490767,0.0,0.0,45.0,101.503,228.0,255.0,72.0,108.0,118.657,128.0,148.0,113.0,128.0,133.956,141.0,167.0,0.0,1.0,11.479,23.0,57.0,124.0,133.033,2.01749,1.91933,1.22691,8.0,8.0,8.0,0.00150034,0.0800726
+1725,57.524133,0.0,0.0,44.0,101.06,227.0,255.0,73.0,108.0,118.762,128.0,146.0,114.0,128.0,133.864,141.0,164.0,0.0,1.0,11.4334,23.0,61.0,123.0,132.136,2.49951,2.03338,1.33413,8.0,8.0,8.0,0.00167467,0.0781493
+1726,57.5575,0.0,0.0,44.0,101.15,227.0,255.0,70.0,108.0,118.842,128.0,145.0,112.0,128.0,133.899,141.0,166.0,0.0,1.0,11.2755,23.0,59.0,123.0,131.735,2.07599,1.98245,1.29145,8.0,8.0,8.0,0.00164323,0.0781693
+1727,57.590867,0.0,0.0,44.0,100.824,227.0,255.0,69.0,108.0,118.68,128.0,151.0,113.0,128.0,133.881,141.0,164.0,0.0,1.0,11.4727,23.0,60.0,123.0,133.453,2.20867,1.94528,1.23784,8.0,8.0,8.0,0.00160037,0.0771634
+1728,57.624233,0.0,0.0,45.0,100.801,227.0,255.0,70.0,108.0,118.795,128.0,150.0,112.0,128.0,133.927,141.0,163.0,0.0,1.0,11.3844,23.0,59.0,124.0,133.004,2.16349,1.95533,1.25334,8.0,8.0,8.0,0.00154035,0.0773605
+1729,57.6576,0.0,0.0,44.0,100.343,226.0,255.0,73.0,109.0,118.958,129.0,155.0,114.0,128.0,133.888,141.0,165.0,0.0,1.0,11.2701,23.0,59.0,124.0,135.149,2.16457,2.00447,1.26908,8.0,8.0,8.0,0.00175469,0.0746056
+1730,57.690967,0.0,0.0,44.0,99.9944,225.0,255.0,76.0,109.0,118.972,128.0,146.0,114.0,128.0,133.779,141.0,166.0,0.0,1.0,11.1263,22.0,58.0,123.0,132.541,2.35334,2.00599,1.32356,8.0,8.0,8.0,0.00171468,0.0714078
+1731,57.724333,0.0,0.0,44.0,99.7867,224.0,255.0,75.0,108.0,118.723,128.0,156.0,112.0,128.0,133.851,141.0,164.0,0.0,1.0,11.3862,23.0,58.0,123.0,132.282,1.89723,1.85774,1.17233,8.0,8.0,8.0,0.00172039,0.06865
+1732,57.7577,0.0,0.0,44.0,99.6916,224.0,255.0,71.0,108.0,118.795,128.0,158.0,114.0,128.0,133.825,141.0,165.0,0.0,1.0,11.2971,23.0,58.0,123.0,132.838,2.46819,1.88971,1.20316,8.0,8.0,8.0,0.00165181,0.0689586
+1733,57.791067,0.0,0.0,44.0,99.8626,224.0,255.0,73.0,109.0,118.968,128.0,160.0,115.0,128.0,133.853,141.0,166.0,0.0,1.0,11.2394,22.0,58.0,124.0,133.329,2.39338,1.94745,1.26752,8.0,8.0,8.0,0.00168896,0.0699417
+1734,57.824433,0.0,0.0,44.0,99.7809,224.0,255.0,73.0,109.0,118.988,129.0,162.0,113.0,128.0,133.838,141.0,164.0,0.0,1.0,11.2057,22.0,58.0,124.0,134.593,1.97282,1.95241,1.26171,8.0,8.0,8.0,0.0016118,0.069413
+1735,57.8578,0.0,0.0,44.0,99.6549,223.0,255.0,73.0,109.0,118.938,128.0,165.0,112.0,128.0,133.705,141.0,165.0,0.0,1.0,11.1869,22.0,57.0,123.0,131.944,2.12031,1.95242,1.2527,8.0,8.0,8.0,0.00170325,0.0683671
+1736,57.891167,0.0,0.0,44.0,99.5459,223.0,255.0,73.0,109.0,118.988,129.0,151.0,112.0,128.0,133.814,141.0,165.0,0.0,1.0,11.1692,22.0,60.0,124.0,133.969,1.94379,1.88365,1.16947,8.0,8.0,8.0,0.00164323,0.0680155
+1737,57.924533,0.0,0.0,44.0,99.7661,223.0,255.0,74.0,108.0,118.93,129.0,147.0,113.0,128.0,133.645,141.0,166.0,0.0,1.0,11.1777,22.0,58.0,123.0,132.928,2.29632,2.02487,1.29676,8.0,8.0,8.0,0.00158036,0.0689958
+1738,57.9579,0.0,0.0,44.0,99.7865,223.0,255.0,76.0,109.0,119.126,129.0,145.0,113.0,128.0,133.722,141.0,164.0,0.0,1.0,11.0492,22.0,58.0,124.0,134.74,2.20958,2.00082,1.30447,8.0,8.0,8.0,0.00149177,0.0686528
+1739,57.991267,0.0,0.0,44.0,99.7697,223.0,255.0,76.0,108.0,118.94,128.0,148.0,115.0,128.0,133.761,141.0,163.0,0.0,1.0,11.1924,22.0,56.0,124.0,133.186,1.96975,1.92075,1.23868,8.0,8.0,8.0,0.00156036,0.0682442
+1740,58.024633,0.0,0.0,44.0,99.7887,224.0,255.0,75.0,109.0,118.917,129.0,145.0,115.0,128.0,133.754,141.0,164.0,0.0,1.0,11.182,22.0,61.0,123.0,133.857,2.24582,1.95945,1.25656,8.0,8.0,8.0,0.00170039,0.068067
+1741,58.058,0.0,0.0,44.0,99.8989,224.0,255.0,73.0,109.0,118.941,128.0,144.0,115.0,128.0,133.786,141.0,163.0,0.0,1.0,11.1868,22.0,56.0,123.0,132.529,2.02998,1.93519,1.25597,8.0,8.0,8.0,0.00167467,0.0689386
+1742,58.091367,0.0,0.0,44.0,99.7363,224.0,255.0,73.0,109.0,118.865,129.0,141.0,116.0,128.0,133.8,141.0,164.0,0.0,1.0,11.2588,23.0,58.0,123.0,134.235,2.25242,1.99284,1.31821,8.0,8.0,8.0,0.00179184,0.0692044
+1743,58.124733,0.0,0.0,44.0,99.7557,224.0,255.0,73.0,108.0,118.672,128.0,144.0,115.0,128.0,133.863,141.0,163.0,0.0,1.0,11.4369,23.0,58.0,123.0,132.631,2.13481,1.99126,1.25668,8.0,8.0,8.0,0.00168324,0.0694016
+1744,58.1581,0.0,0.0,44.0,99.616,224.0,255.0,69.0,108.0,118.723,129.0,143.0,115.0,128.0,133.91,141.0,163.0,0.0,1.0,11.4136,23.0,60.0,124.0,134.176,1.9456,1.88535,1.18225,8.0,8.0,8.0,0.00178898,0.0688986
+1745,58.191467,0.0,0.0,44.0,99.6535,224.0,255.0,73.0,108.0,118.702,128.0,142.0,112.0,128.0,133.791,141.0,165.0,0.0,1.0,11.404,23.0,61.0,123.0,131.054,2.29282,2.01263,1.30278,8.0,8.0,8.0,0.00184328,0.0687929
+1746,58.224833,0.0,0.0,44.0,99.9179,224.0,255.0,73.0,109.0,118.947,128.0,141.0,113.0,128.0,133.905,141.0,166.0,0.0,1.0,11.2359,22.0,56.0,124.0,133.208,1.97755,1.98588,1.25154,8.0,8.0,8.0,0.00178326,0.0695616
+1747,58.2582,0.0,0.0,44.0,99.5787,224.0,255.0,72.0,108.0,118.759,128.0,144.0,113.0,128.0,133.813,141.0,164.0,0.0,1.0,11.3484,23.0,59.0,123.0,131.377,2.18441,1.99128,1.2647,8.0,8.0,8.0,0.0016861,0.0696073
+1748,58.291567,0.0,0.0,44.0,99.8222,224.0,255.0,74.0,108.0,118.56,128.0,144.0,112.0,128.0,133.873,141.0,164.0,0.0,1.0,11.5181,23.0,58.0,123.0,131.289,2.25298,1.98041,1.24598,8.0,8.0,8.0,0.00160608,0.0706733
+1749,58.324933,0.0,0.0,44.0,99.6809,224.0,255.0,72.0,108.0,118.713,128.0,159.0,114.0,128.0,133.901,141.0,168.0,0.0,1.0,11.4731,23.0,58.0,123.0,133.26,2.01053,1.95035,1.28571,8.0,8.0,8.0,0.00159751,0.0697988
+1750,58.3583,0.0,0.0,44.0,99.5829,224.0,255.0,75.0,108.0,118.776,128.0,163.0,114.0,128.0,133.864,141.0,165.0,0.0,1.0,11.3465,23.0,58.0,123.0,132.45,2.29612,1.98648,1.31373,8.0,8.0,8.0,0.00166038,0.0695388
+1751,58.391667,0.0,0.0,44.0,99.4511,224.0,255.0,73.0,108.0,118.737,128.0,160.0,115.0,127.0,133.868,141.0,164.0,0.0,1.0,11.4054,23.0,57.0,123.0,132.233,1.93214,1.90407,1.16806,8.0,8.0,8.0,0.00149177,0.0690558
+1752,58.425033,0.0,0.0,44.0,99.1025,223.0,255.0,74.0,108.0,118.749,128.0,151.0,115.0,128.0,133.813,141.0,167.0,0.0,1.0,11.3393,23.0,57.0,123.0,132.506,2.30155,1.94071,1.24967,8.0,8.0,8.0,0.00162037,0.0683242
+1753,58.4584,0.0,0.0,44.0,99.4398,223.0,255.0,74.0,108.0,118.626,128.0,151.0,113.0,127.0,133.821,141.0,165.0,0.0,1.0,11.4383,23.0,57.0,123.0,129.175,2.46857,1.97397,1.3208,8.0,8.0,8.0,0.00173468,0.0690786
+1754,58.491767,0.0,0.0,44.0,99.3349,223.0,255.0,72.0,108.0,118.878,128.0,161.0,112.0,128.0,133.843,141.0,162.0,0.0,1.0,11.244,23.0,57.0,124.0,132.847,2.15855,1.97477,1.28772,8.0,8.0,8.0,0.00154607,0.0674068
+1755,58.525133,0.0,0.0,44.0,99.4243,223.0,255.0,69.0,108.0,118.75,128.0,158.0,114.0,128.0,133.772,141.0,162.0,0.0,1.0,11.3377,23.0,60.0,123.0,131.931,2.50371,1.94779,1.28474,8.0,8.0,8.0,0.0016318,0.0678641
+1756,58.5585,0.0,0.0,44.0,99.7124,224.0,255.0,71.0,108.0,118.797,128.0,156.0,114.0,128.0,133.87,141.0,164.0,0.0,1.0,11.3677,23.0,58.0,123.0,133.23,2.11919,1.8886,1.19805,8.0,8.0,8.0,0.00161465,0.0702932
+1757,58.591867,0.0,0.0,44.0,99.6241,224.0,255.0,71.0,108.0,118.758,128.0,156.0,113.0,128.0,133.789,141.0,163.0,0.0,1.0,11.3884,23.0,57.0,123.0,132.983,2.41399,2.0558,1.34404,8.0,8.0,8.0,0.00154321,0.0698474
+1758,58.625233,0.0,0.0,44.0,99.7409,224.0,255.0,74.0,109.0,118.844,128.0,150.0,111.0,128.0,133.946,141.0,164.0,0.0,1.0,11.3217,22.0,58.0,124.0,132.964,2.54016,2.05618,1.37244,8.0,8.0,8.0,0.00173754,0.0694416
+1759,58.6586,0.0,0.0,44.0,99.6121,224.0,255.0,75.0,109.0,118.829,128.0,158.0,111.0,128.0,133.947,141.0,166.0,0.0,1.0,11.3482,22.0,56.0,124.0,133.204,1.99843,1.89846,1.19798,8.0,8.0,8.0,0.00159751,0.0689472
+1760,58.691967,0.0,0.0,44.0,99.5214,223.0,255.0,72.0,108.0,118.705,128.0,149.0,112.0,128.0,133.875,141.0,163.0,0.0,1.0,11.3983,23.0,60.0,123.0,132.464,2.23989,1.92175,1.24007,8.0,8.0,8.0,0.00166895,0.0690987
+1761,58.725333,0.0,0.0,44.0,99.6189,224.0,255.0,72.0,108.0,118.683,128.0,147.0,111.0,127.0,133.881,141.0,164.0,0.0,1.0,11.468,23.0,58.0,123.0,131.668,2.02674,1.96433,1.25906,8.0,8.0,8.0,0.00160894,0.0697131
+1762,58.7587,0.0,0.0,44.0,99.7774,224.0,255.0,71.0,109.0,119.132,129.0,157.0,111.0,128.0,133.737,141.0,164.0,0.0,1.0,11.0248,22.0,59.0,124.0,135.134,2.2714,2.05921,1.32466,8.0,8.0,8.0,0.00173754,0.069513
+1763,58.792067,0.0,0.0,44.0,99.8611,224.0,255.0,74.0,109.0,119.046,128.0,155.0,112.0,127.0,133.752,141.0,163.0,0.0,1.0,11.128,22.0,55.0,124.0,133.244,2.20756,1.90866,1.23485,8.0,8.0,8.0,0.00173754,0.0710019
+1764,58.825433,0.0,0.0,44.0,100.308,226.0,255.0,71.0,109.0,119.002,129.0,157.0,114.0,128.0,133.787,141.0,163.0,0.0,1.0,11.1691,22.0,58.0,124.0,135.708,2.01803,1.83648,1.18277,8.0,8.0,8.0,0.00160608,0.0742998
+1765,58.8588,0.0,0.0,44.0,100.861,228.0,255.0,73.0,108.0,118.856,128.0,149.0,114.0,128.0,133.796,141.0,163.0,0.0,1.0,11.3207,23.0,57.0,124.0,133.721,2.5268,1.98891,1.31803,8.0,8.0,8.0,0.00174897,0.0790038
+1766,58.892167,0.0,0.0,44.0,101.615,230.0,255.0,74.0,109.0,119.025,129.0,153.0,112.0,128.0,133.888,141.0,169.0,0.0,1.0,11.193,22.0,58.0,125.0,135.488,2.28515,1.89966,1.22635,8.0,8.0,8.0,0.00164037,0.0851652
+1767,58.925533,0.0,0.0,45.0,103.305,234.0,255.0,74.0,109.0,118.9,129.0,151.0,108.0,128.0,133.955,141.0,162.0,0.0,1.0,11.3501,22.0,56.0,124.0,135.659,2.92836,1.96236,1.26919,8.0,8.0,8.0,0.00171182,0.0979738
+1768,58.9589,0.0,0.0,45.0,103.614,235.0,255.0,77.0,108.0,118.727,128.0,156.0,111.0,128.0,133.913,141.0,166.0,0.0,1.0,11.424,22.0,55.0,123.0,133.624,2.53221,1.94129,1.23857,8.0,8.0,8.0,0.0018147,0.100874
+1769,58.992267,0.0,0.0,45.0,103.848,236.0,255.0,75.0,108.0,118.853,128.0,150.0,111.0,128.0,133.928,141.0,164.0,0.0,1.0,11.3811,23.0,57.0,124.0,134.92,2.15774,1.90311,1.23972,8.0,8.0,8.0,0.00169182,0.103186
+1770,59.025633,0.0,0.0,45.0,104.095,237.0,255.0,73.0,108.0,118.819,129.0,150.0,114.0,128.0,133.822,141.0,163.0,0.0,1.0,11.3088,23.0,58.0,124.0,134.091,2.40209,1.98417,1.29768,8.0,8.0,8.0,0.00184328,0.105313
+1771,59.059,0.0,0.0,45.0,104.132,237.0,255.0,73.0,109.0,118.872,128.0,150.0,114.0,128.0,133.876,141.0,163.0,0.0,1.0,11.306,22.0,59.0,124.0,133.495,2.01197,1.87325,1.17645,8.0,8.0,8.0,0.00161751,0.107279
+1772,59.092367,0.0,0.0,45.0,103.743,236.0,255.0,73.0,108.0,118.718,128.0,152.0,105.0,128.0,133.777,140.0,163.0,0.0,1.0,11.3543,23.0,56.0,123.0,133.079,2.50178,1.89401,1.24249,8.0,8.0,8.0,0.0016861,0.103544
+1773,59.125733,0.0,0.0,45.0,103.676,236.0,255.0,73.0,108.0,118.69,128.0,157.0,109.0,128.0,133.807,141.0,166.0,0.0,1.0,11.439,23.0,57.0,123.0,131.176,2.43486,1.9501,1.30879,8.0,8.0,8.0,0.00156321,0.102449
+1774,59.1591,0.0,0.0,45.0,103.912,236.0,255.0,76.0,108.0,118.712,128.0,157.0,114.0,128.0,133.884,141.0,163.0,0.0,1.0,11.4178,23.0,56.0,123.0,132.377,2.1369,1.93466,1.25601,8.0,8.0,8.0,0.00174611,0.103152
+1775,59.192467,0.0,0.0,45.0,104.042,236.0,255.0,75.0,108.0,118.653,128.0,169.0,107.0,128.0,133.785,141.0,163.0,0.0,1.0,11.4228,23.0,57.0,123.0,131.342,2.47139,1.9509,1.26525,8.0,8.0,8.0,0.00179755,0.103467
+1776,59.225833,0.0,0.0,45.0,104.076,236.0,255.0,73.0,108.0,118.699,128.0,162.0,108.0,128.0,133.786,141.0,162.0,0.0,1.0,11.3864,23.0,59.0,123.0,131.089,2.11853,1.90644,1.21196,8.0,8.0,8.0,0.00169753,0.103767
+1777,59.2592,0.0,0.0,45.0,104.011,236.0,255.0,74.0,108.0,118.749,129.0,164.0,110.0,128.0,133.779,141.0,166.0,0.0,1.0,11.3973,23.0,60.0,123.0,133.279,2.61862,2.05716,1.34955,8.0,8.0,8.0,0.00182327,0.103989
+1778,59.292567,0.0,0.0,45.0,103.942,236.0,255.0,75.0,109.0,118.928,128.0,164.0,108.0,128.0,133.729,141.0,165.0,0.0,1.0,11.1873,22.0,57.0,123.0,133.361,2.47921,2.07044,1.33882,8.0,8.0,8.0,0.00169753,0.103341
+1779,59.325933,0.0,0.0,45.0,103.925,236.0,255.0,71.0,109.0,118.91,129.0,162.0,106.0,128.0,133.781,141.0,162.0,0.0,1.0,11.2447,22.0,57.0,124.0,134.173,2.09043,1.89082,1.1803,8.0,8.0,8.0,0.00170325,0.103226
+1780,59.3593,0.0,0.0,45.0,103.795,236.0,255.0,75.0,108.0,118.755,128.0,157.0,113.0,128.0,133.848,141.0,164.0,0.0,1.0,11.3626,23.0,58.0,123.0,133.427,2.37457,1.99188,1.27677,8.0,8.0,8.0,0.00177469,0.102755
+1781,59.392667,0.0,0.0,45.0,103.695,236.0,255.0,74.0,108.0,118.598,128.0,160.0,110.0,127.0,133.866,141.0,165.0,0.0,1.0,11.5567,23.0,57.0,123.0,131.315,2.1101,1.96227,1.27183,8.0,8.0,8.0,0.00188615,0.102763
+1782,59.426033,0.0,0.0,45.0,103.953,236.0,255.0,75.0,108.0,118.778,128.0,163.0,110.0,128.0,133.746,141.0,161.0,0.0,1.0,11.3177,22.0,58.0,123.0,132.585,2.59138,2.03839,1.35344,8.0,8.0,8.0,0.00172325,0.103998
+1783,59.4594,0.0,0.0,45.0,103.92,236.0,255.0,76.0,108.0,118.866,128.0,160.0,112.0,128.0,133.696,141.0,162.0,0.0,1.0,11.2377,22.0,58.0,123.0,132.157,2.70056,1.99652,1.27979,8.0,8.0,8.0,0.00164323,0.103552
+1784,59.492767,0.0,0.0,45.0,104.04,237.0,255.0,75.0,109.0,118.893,128.0,159.0,112.0,128.0,133.868,141.0,163.0,0.0,1.0,11.2821,22.0,57.0,124.0,133.968,2.13928,1.89025,1.21891,8.0,8.0,8.0,0.00170896,0.104472
+1785,59.526133,0.0,0.0,45.0,104.094,237.0,255.0,75.0,108.0,118.835,128.0,161.0,112.0,128.0,133.869,141.0,164.0,0.0,1.0,11.3556,23.0,57.0,124.0,132.844,2.35582,2.01591,1.31995,8.0,8.0,8.0,0.00173182,0.105378
+1786,59.5595,0.0,0.0,45.0,104.252,237.0,255.0,76.0,109.0,118.953,129.0,166.0,96.0,128.0,133.848,141.0,163.0,0.0,1.0,11.2317,22.0,57.0,124.0,134.41,2.0766,1.94363,1.24721,8.0,8.0,8.0,0.00176326,0.105967
+1787,59.592867,0.0,0.0,46.0,104.291,237.0,255.0,75.0,109.0,118.921,129.0,174.0,112.0,128.0,133.868,141.0,163.0,0.0,1.0,11.2863,22.0,58.0,124.0,134.423,2.41037,2.0049,1.26057,8.0,8.0,8.0,0.00171754,0.106339
+1788,59.626233,0.0,0.0,46.0,104.167,237.0,255.0,76.0,108.0,118.68,128.0,168.0,106.0,128.0,133.93,141.0,162.0,0.0,1.0,11.4787,23.0,60.0,124.0,133.376,2.52632,2.02782,1.28964,8.0,8.0,8.0,0.00176326,0.105733
+1789,59.6596,0.0,0.0,45.0,104.13,237.0,255.0,75.0,108.0,118.676,128.0,163.0,106.0,128.0,133.987,141.0,165.0,0.0,1.0,11.5295,23.0,59.0,124.0,132.674,2.35681,2.02131,1.30397,8.0,8.0,8.0,0.00176612,0.10449
+1790,59.692967,0.0,0.0,46.0,104.293,237.0,255.0,73.0,109.0,118.766,128.0,167.0,109.0,128.0,133.904,141.0,168.0,0.0,1.0,11.3901,22.0,59.0,123.0,132.609,2.58531,2.05674,1.34459,8.0,8.0,8.0,0.00200332,0.105024
+1791,59.726333,0.0,0.0,45.0,104.226,237.0,255.0,76.0,109.0,118.86,128.0,166.0,114.0,128.0,133.905,141.0,165.0,0.0,1.0,11.3184,22.0,55.0,124.0,132.335,2.15595,1.8924,1.20823,8.0,8.0,8.0,0.00198617,0.104544
+1792,59.7597,0.0,0.0,45.0,103.774,236.0,255.0,72.0,108.0,118.81,129.0,168.0,113.0,128.0,133.899,141.0,164.0,0.0,1.0,11.3891,23.0,57.0,124.0,135.159,2.54103,1.95075,1.25474,8.0,8.0,8.0,0.00183185,0.102518
+1793,59.793067,0.0,0.0,45.0,103.966,236.0,255.0,75.0,108.0,118.904,128.0,164.0,112.0,128.0,133.825,141.0,162.0,0.0,1.0,11.2748,23.0,56.0,124.0,132.785,2.82601,2.02353,1.34095,8.0,8.0,8.0,0.00203761,0.103878
+1794,59.826433,0.0,0.0,45.0,104.057,236.0,255.0,74.0,109.0,119.011,129.0,161.0,115.0,128.0,133.932,141.0,163.0,0.0,1.0,11.1863,22.0,56.0,125.0,135.017,2.35915,1.95722,1.26259,8.0,8.0,8.0,0.00179184,0.103629
+1795,59.8598,0.0,0.0,46.0,104.124,236.0,255.0,75.0,109.0,118.937,128.0,163.0,115.0,128.0,133.897,141.0,162.0,0.0,1.0,11.2388,22.0,59.0,124.0,133.735,2.58041,1.91479,1.25917,8.0,8.0,8.0,0.00182613,0.102512
+1796,59.893167,0.0,0.0,46.0,104.155,236.0,255.0,77.0,108.0,118.901,128.0,160.0,113.0,128.0,133.967,141.0,165.0,0.0,1.0,11.2993,22.0,59.0,124.0,133.437,2.21311,1.8996,1.23069,8.0,8.0,8.0,0.00198331,0.103172
+1797,59.926533,0.0,0.0,45.0,103.726,235.0,255.0,74.0,108.0,118.668,128.0,162.0,114.0,128.0,133.765,141.0,166.0,0.0,1.0,11.4344,23.0,60.0,123.0,132.648,2.51575,2.03237,1.35622,8.0,8.0,8.0,0.00189472,0.100683
+1798,59.9599,0.0,0.0,45.0,103.993,235.0,255.0,76.0,109.0,118.94,129.0,165.0,108.0,128.0,133.791,141.0,164.0,0.0,1.0,11.178,22.0,55.0,124.0,134.08,2.38443,2.03764,1.33916,8.0,8.0,8.0,0.00183185,0.101132
+1799,59.993267,0.0,0.0,46.0,104.298,236.0,255.0,75.0,109.0,118.919,128.0,162.0,112.0,128.0,133.763,141.0,164.0,0.0,1.0,11.2052,22.0,57.0,124.0,133.281,2.20652,1.92687,1.20159,8.0,8.0,8.0,0.00198903,0.103084
+1800,60.026633,0.0,0.0,46.0,104.275,237.0,255.0,75.0,108.0,118.806,128.0,160.0,113.0,128.0,133.772,140.0,164.0,0.0,1.0,11.2583,22.0,56.0,123.0,133.67,2.47547,1.94094,1.21875,8.0,8.0,8.0,0.00184899,0.105087
+1801,60.06,0.0,0.0,46.0,104.523,238.0,255.0,74.0,108.0,118.722,128.0,160.0,113.0,128.0,133.776,141.0,164.0,0.0,1.0,11.4012,23.0,59.0,123.0,131.976,2.24036,1.9438,1.27038,8.0,8.0,8.0,0.00172325,0.108308
+1802,60.093367,0.0,0.0,46.0,104.744,238.0,255.0,76.0,108.0,118.847,129.0,160.0,112.0,128.0,133.885,141.0,163.0,0.0,1.0,11.3397,23.0,56.0,124.0,134.407,2.40408,1.97168,1.29587,8.0,8.0,8.0,0.00189472,0.108453
+1803,60.126733,0.0,0.0,46.0,104.844,239.0,255.0,74.0,109.0,118.814,128.0,160.0,113.0,128.0,133.884,141.0,164.0,0.0,1.0,11.3482,22.0,56.0,124.0,132.693,2.40309,1.92124,1.22423,8.0,8.0,8.0,0.0017061,0.111883
+1804,60.1601,0.0,0.0,46.0,104.674,238.0,255.0,73.0,109.0,118.766,128.0,161.0,111.0,128.0,133.915,141.0,164.0,0.0,1.0,11.3937,22.0,57.0,124.0,132.901,2.16501,1.82947,1.1837,8.0,8.0,8.0,0.00196331,0.110311
+1805,60.193467,0.0,0.0,46.0,105.209,240.0,255.0,74.0,108.0,118.531,128.0,159.0,112.0,128.0,133.889,141.0,165.0,0.0,1.0,11.5858,23.0,57.0,123.0,131.898,2.57603,2.01341,1.31847,8.0,8.0,8.0,0.00180041,0.11426
+1806,60.226833,0.0,0.0,46.0,105.303,240.0,255.0,74.0,108.0,118.698,128.0,163.0,112.0,128.0,133.909,141.0,164.0,0.0,1.0,11.425,23.0,59.0,123.0,132.381,2.1895,1.95013,1.23321,8.0,8.0,8.0,0.00160322,0.114758
+1807,60.2602,0.0,0.0,46.0,105.498,240.0,255.0,76.0,108.0,118.713,128.0,164.0,104.0,128.0,133.87,141.0,164.0,0.0,1.0,11.416,23.0,57.0,123.0,132.311,2.5183,1.95765,1.26015,8.0,8.0,8.0,0.00187471,0.11669
+1808,60.293567,0.0,0.0,46.0,105.511,241.0,255.0,73.0,108.0,118.64,128.0,160.0,108.0,128.0,133.843,141.0,166.0,0.0,1.0,11.4444,23.0,57.0,123.0,131.206,2.50804,1.95152,1.2552,8.0,8.0,8.0,0.00169467,0.11831
+1809,60.326933,0.0,0.0,46.0,105.402,240.0,255.0,74.0,108.0,118.647,128.0,165.0,109.0,128.0,133.928,141.0,165.0,0.0,1.0,11.5374,23.0,56.0,123.0,133.386,2.23178,1.98123,1.26305,8.0,8.0,8.0,0.001869,0.116887
+1810,60.3603,0.0,0.0,46.0,105.561,241.0,255.0,72.0,108.0,118.645,129.0,171.0,108.0,128.0,133.964,141.0,165.0,0.0,1.0,11.5615,23.0,59.0,124.0,134.572,2.49338,1.99862,1.31591,8.0,8.0,8.0,0.00167467,0.118599
+1811,60.393667,0.0,0.0,46.0,105.467,241.0,255.0,74.0,108.0,118.615,128.0,172.0,113.0,128.0,133.944,141.0,167.0,0.0,1.0,11.5585,23.0,59.0,123.0,131.893,2.1154,1.8555,1.20481,8.0,8.0,8.0,0.00182327,0.118956
+1812,60.427033,0.0,0.0,46.0,105.183,240.0,255.0,72.0,108.0,118.608,128.0,167.0,111.0,128.0,133.895,141.0,164.0,0.0,1.0,11.4907,23.0,56.0,123.0,132.301,2.37992,1.92922,1.24864,8.0,8.0,8.0,0.00179755,0.116027
+1813,60.4604,0.0,0.0,46.0,105.308,240.0,255.0,74.0,108.0,118.471,128.0,169.0,114.0,127.0,133.843,141.0,164.0,0.0,1.0,11.664,23.0,57.0,123.0,131.27,2.4697,1.9993,1.33291,8.0,8.0,8.0,0.00178326,0.117032
+1814,60.493767,0.0,0.0,46.0,105.32,240.0,255.0,72.0,108.0,118.688,128.0,161.0,107.0,128.0,133.873,141.0,164.0,0.0,1.0,11.4343,23.0,58.0,123.0,132.672,2.21532,1.93877,1.27387,8.0,8.0,8.0,0.00174897,0.116835
+1815,60.527133,0.0,0.0,46.0,105.346,240.0,255.0,71.0,109.0,118.712,128.0,161.0,114.0,128.0,133.741,141.0,163.0,0.0,1.0,11.3479,22.0,58.0,123.0,130.786,2.62714,1.9185,1.27237,8.0,8.0,8.0,0.00169467,0.116341
+1816,60.5605,0.0,0.0,45.0,105.342,241.0,255.0,73.0,108.0,118.739,128.0,163.0,108.0,128.0,133.767,141.0,163.0,0.0,1.0,11.3263,23.0,58.0,123.0,131.361,2.16203,1.84689,1.19977,8.0,8.0,8.0,0.001889,0.117258
+1817,60.593867,0.0,0.0,46.0,104.956,240.0,255.0,72.0,108.0,118.737,129.0,165.0,109.0,128.0,133.712,141.0,164.0,0.0,1.0,11.3729,23.0,57.0,123.0,133.115,2.56617,1.97684,1.28387,8.0,8.0,8.0,0.00180327,0.114586
+1818,60.627233,0.0,0.0,46.0,105.045,240.0,255.0,72.0,109.0,118.976,129.0,167.0,104.0,128.0,133.746,141.0,165.0,0.0,1.0,11.1641,22.0,57.0,124.0,134.095,2.79541,2.01796,1.31358,8.0,8.0,8.0,0.00176898,0.116104
+1819,60.6606,0.0,0.0,46.0,105.163,240.0,255.0,72.0,109.0,118.99,129.0,164.0,110.0,128.0,133.77,141.0,164.0,0.0,1.0,11.1993,22.0,57.0,124.0,134.675,2.15514,1.84769,1.19441,8.0,8.0,8.0,0.00172897,0.116844
+1820,60.693967,0.0,0.0,45.0,105.057,240.0,255.0,72.0,109.0,118.879,129.0,161.0,111.0,128.0,133.715,141.0,163.0,0.0,1.0,11.2244,22.0,57.0,123.0,132.515,2.44502,1.87062,1.23312,8.0,8.0,8.0,0.00168038,0.116592
+1821,60.727333,0.0,0.0,45.0,105.135,240.0,255.0,73.0,108.0,118.781,128.0,167.0,108.0,128.0,133.78,141.0,165.0,0.0,1.0,11.3359,23.0,58.0,123.0,131.49,2.16481,1.90184,1.26061,8.0,8.0,8.0,0.00170896,0.117204
+1822,60.7607,0.0,0.0,45.0,105.159,240.0,255.0,74.0,108.0,118.767,128.0,162.0,109.0,128.0,133.821,141.0,164.0,0.0,1.0,11.3339,23.0,57.0,123.0,133.634,2.68068,1.98659,1.30583,8.0,8.0,8.0,0.00172039,0.114998
+1823,60.794067,0.0,0.0,46.0,105.476,241.0,255.0,72.0,109.0,118.91,128.0,171.0,108.0,128.0,133.784,141.0,165.0,0.0,1.0,11.2355,22.0,58.0,123.0,132.545,2.36339,1.91022,1.21912,8.0,8.0,8.0,0.00184614,0.117261
+1824,60.827433,0.0,0.0,46.0,105.391,241.0,255.0,74.0,109.0,118.928,129.0,169.0,103.0,128.0,133.83,141.0,165.0,0.0,1.0,11.2379,22.0,58.0,124.0,134.63,2.03461,1.8457,1.18997,8.0,8.0,8.0,0.00177755,0.117533
+1825,60.8608,0.0,0.0,45.0,105.192,241.0,255.0,73.0,109.0,118.915,129.0,164.0,112.0,127.0,133.667,141.0,168.0,0.0,1.0,11.2275,22.0,59.0,123.0,132.859,2.40563,1.98245,1.3058,8.0,8.0,8.0,0.00175183,0.117524
+1826,60.894167,0.0,0.0,46.0,105.344,241.0,255.0,74.0,109.0,118.952,129.0,167.0,114.0,128.0,133.735,141.0,167.0,0.0,1.0,11.1783,22.0,56.0,123.0,133.714,2.09003,1.87669,1.23286,8.0,8.0,8.0,0.00176898,0.118301
+1827,60.927533,0.0,0.0,46.0,105.405,241.0,255.0,73.0,109.0,118.769,128.0,162.0,102.0,128.0,133.778,141.0,170.0,0.0,1.0,11.3145,22.0,57.0,123.0,131.503,2.21363,1.88917,1.2348,8.0,8.0,8.0,0.0016861,0.11865
+1828,60.9609,0.0,0.0,45.0,105.137,240.0,255.0,73.0,108.0,118.743,128.0,167.0,107.0,128.0,133.91,141.0,166.0,0.0,1.0,11.4133,23.0,57.0,123.0,132.298,2.44972,1.92514,1.25041,8.0,8.0,8.0,0.00185757,0.116561
+1829,60.994267,0.0,0.0,45.0,105.0,240.0,255.0,73.0,108.0,118.648,128.0,163.0,107.0,128.0,133.977,141.0,167.0,0.0,1.0,11.5487,23.0,58.0,123.0,132.418,2.11958,1.95147,1.24781,8.0,8.0,8.0,0.0017604,0.114646
+1830,61.027633,0.0,0.0,46.0,105.11,240.0,255.0,71.0,108.0,118.592,128.0,164.0,110.0,128.0,133.847,141.0,164.0,0.0,1.0,11.4893,23.0,58.0,123.0,131.453,2.43149,2.01504,1.31537,8.0,8.0,8.0,0.00167467,0.115401
+1831,61.061,0.0,0.0,46.0,105.299,240.0,255.0,72.0,109.0,118.731,128.0,156.0,113.0,127.0,133.843,141.0,166.0,0.0,1.0,11.4547,22.0,58.0,123.0,130.869,2.48624,2.23682,1.58089,8.0,8.0,8.0,0.00184614,0.116221
+1832,61.094367,0.0,0.0,45.0,105.084,240.0,255.0,70.0,108.0,118.724,128.0,165.0,106.0,128.0,133.817,141.0,165.0,0.0,1.0,11.3858,22.0,59.0,123.0,131.782,2.73661,2.09655,1.39855,8.0,8.0,8.0,0.00184042,0.116701
+1833,61.127733,0.0,0.0,45.0,105.041,240.0,255.0,73.0,108.0,118.424,128.0,167.0,110.0,128.0,133.778,141.0,163.0,0.0,1.0,11.609,23.0,57.0,122.0,129.028,2.41637,1.98943,1.26271,8.0,8.0,8.0,0.00196331,0.116318
+1834,61.1611,0.0,0.0,46.0,105.078,240.0,255.0,72.0,108.0,118.555,128.0,167.0,110.0,128.0,133.851,141.0,166.0,0.0,1.0,11.54,23.0,58.0,123.0,131.431,2.06061,1.85296,1.18953,8.0,8.0,8.0,0.00188043,0.114495
+1835,61.194467,0.0,0.0,46.0,105.011,239.0,255.0,73.0,108.0,118.711,128.0,162.0,115.0,127.0,133.738,141.0,163.0,0.0,1.0,11.4005,22.0,57.0,123.0,130.589,2.4752,1.98417,1.32007,8.0,8.0,8.0,0.00190043,0.112263
+1836,61.227833,0.0,0.0,46.0,105.187,239.0,255.0,74.0,109.0,118.784,128.0,166.0,114.0,128.0,133.817,141.0,163.0,0.0,1.0,11.3218,22.0,56.0,123.0,131.265,2.15004,1.93365,1.25367,8.0,8.0,8.0,0.00188615,0.113343
+1837,61.2612,0.0,0.0,45.0,105.061,240.0,255.0,72.0,108.0,118.506,128.0,165.0,108.0,128.0,133.854,141.0,165.0,0.0,1.0,11.5588,23.0,57.0,123.0,130.521,2.38166,1.95858,1.23935,8.0,8.0,8.0,0.00179755,0.114135
+1838,61.294567,0.0,0.0,46.0,104.837,239.0,255.0,72.0,108.0,118.743,129.0,172.0,107.0,127.0,133.739,141.0,164.0,0.0,1.0,11.3528,23.0,57.0,123.0,132.818,2.56017,1.96455,1.26158,8.0,8.0,8.0,0.00174611,0.1121
+1839,61.327933,0.0,0.0,46.0,104.979,239.0,255.0,75.0,109.0,118.774,128.0,160.0,110.0,128.0,133.869,141.0,164.0,0.0,1.0,11.4052,22.0,57.0,123.0,133.015,2.301,1.96302,1.30724,8.0,8.0,8.0,0.00178898,0.113163
+1840,61.3613,0.0,0.0,46.0,104.8,239.0,255.0,74.0,108.0,118.661,128.0,160.0,111.0,128.0,133.842,141.0,164.0,0.0,1.0,11.4217,22.0,55.0,123.0,132.414,2.70295,1.9127,1.28864,8.0,8.0,8.0,0.00190615,0.113106
+1841,61.394667,0.0,0.0,45.0,103.873,237.0,255.0,74.0,108.0,118.626,128.0,163.0,113.0,128.0,133.882,141.0,164.0,0.0,1.0,11.5073,23.0,63.0,123.0,130.949,2.42914,1.87485,1.20472,8.0,8.0,8.0,0.00181756,0.104938
+1842,61.428033,0.0,0.0,45.0,101.966,231.0,255.0,73.0,108.0,118.524,128.0,158.0,115.0,128.0,133.958,141.0,164.0,0.0,1.0,11.578,23.0,57.0,123.0,131.842,3.15093,1.96941,1.26067,8.0,8.0,8.0,0.00178041,0.0888032
+1843,61.4614,0.0,0.0,44.0,101.038,227.0,255.0,74.0,109.0,118.848,128.0,163.0,105.0,128.0,133.858,141.0,165.0,0.0,1.0,11.315,22.0,57.0,123.0,131.508,2.72445,1.99547,1.26571,8.0,8.0,8.0,0.00167467,0.0793781
+1844,61.494767,0.0,0.0,45.0,100.974,228.0,255.0,75.0,109.0,118.996,128.0,164.0,111.0,128.0,133.791,141.0,164.0,0.0,1.0,11.1305,22.0,57.0,124.0,133.383,2.05394,1.90585,1.27848,8.0,8.0,8.0,0.0017404,0.0795096
+1845,61.528133,0.0,0.0,44.0,100.549,227.0,255.0,74.0,109.0,119.014,128.0,162.0,113.0,128.0,133.659,140.0,164.0,0.0,1.0,11.0888,22.0,57.0,123.0,132.177,2.31307,1.89947,1.23728,8.0,8.0,8.0,0.00176326,0.0784665
+1846,61.5615,0.0,0.0,44.0,100.683,227.0,255.0,74.0,109.0,119.036,128.0,164.0,100.0,128.0,133.709,141.0,164.0,0.0,1.0,11.105,22.0,58.0,123.0,133.508,2.06903,1.86455,1.16424,8.0,8.0,8.0,0.00172611,0.0791895
+1847,61.594867,0.0,0.0,45.0,101.123,228.0,255.0,72.0,109.0,118.919,128.0,161.0,101.0,128.0,133.738,141.0,164.0,0.0,1.0,11.2273,22.0,57.0,123.0,132.869,2.46057,1.9882,1.25844,8.0,8.0,8.0,0.00183471,0.0813043
+1848,61.628233,0.0,0.0,45.0,101.187,228.0,255.0,73.0,109.0,119.03,128.0,171.0,112.0,128.0,133.87,141.0,163.0,0.0,1.0,11.1455,22.0,56.0,124.0,133.348,2.65285,1.9642,1.32551,8.0,8.0,8.0,0.00169182,0.0807299
+1849,61.6616,0.0,0.0,45.0,101.028,228.0,255.0,74.0,109.0,118.907,128.0,164.0,115.0,128.0,133.81,141.0,163.0,0.0,1.0,11.2383,22.0,59.0,123.0,132.114,2.2139,1.87175,1.18997,8.0,8.0,8.0,0.00180613,0.0802783
+1850,61.694967,0.0,0.0,45.0,100.748,227.0,255.0,75.0,109.0,119.016,128.0,159.0,112.0,128.0,133.758,141.0,164.0,0.0,1.0,11.117,22.0,55.0,124.0,132.983,2.67315,1.89769,1.23693,8.0,8.0,8.0,0.00164323,0.0780921
+1851,61.728333,0.0,0.0,44.0,100.691,227.0,255.0,74.0,109.0,119.132,128.0,162.0,114.0,128.0,133.745,141.0,165.0,0.0,1.0,11.0334,22.0,55.0,124.0,132.307,2.25548,1.9161,1.26828,8.0,8.0,8.0,0.00167467,0.0766118
+1852,61.7617,0.0,0.0,45.0,100.877,226.0,255.0,72.0,109.0,119.273,128.0,158.0,114.0,128.0,133.678,140.0,165.0,0.0,1.0,10.8275,21.0,57.0,124.0,133.053,2.76195,1.98882,1.31486,8.0,8.0,8.0,0.0015775,0.0762517
+1853,61.795067,0.0,0.0,45.0,101.118,228.0,255.0,75.0,109.0,118.926,128.0,159.0,106.0,128.0,133.729,141.0,163.0,0.0,1.0,11.1712,22.0,57.0,123.0,131.477,2.72475,1.91886,1.23025,8.0,8.0,8.0,0.0017947,0.0796553
+1854,61.828433,0.0,0.0,45.0,101.262,228.0,255.0,73.0,109.0,118.995,128.0,158.0,113.0,128.0,133.83,141.0,164.0,0.0,1.0,11.1548,22.0,56.0,124.0,133.259,2.2006,1.85581,1.20263,8.0,8.0,8.0,0.00190615,0.0800897
+1855,61.8618,0.0,0.0,45.0,101.48,228.0,255.0,73.0,109.0,118.824,128.0,160.0,114.0,128.0,133.77,141.0,164.0,0.0,1.0,11.2882,22.0,56.0,123.0,130.59,2.7708,1.96184,1.33724,8.0,8.0,8.0,0.00177755,0.0807385
+1856,61.895167,0.0,0.0,45.0,101.839,229.0,255.0,75.0,109.0,118.814,128.0,158.0,112.0,128.0,133.86,141.0,164.0,0.0,1.0,11.2794,22.0,56.0,123.0,131.493,2.28795,1.93711,1.25801,8.0,8.0,8.0,0.00159179,0.0817473
+1857,61.928533,0.0,0.0,45.0,101.396,228.0,255.0,73.0,108.0,118.625,128.0,165.0,109.0,128.0,133.714,141.0,161.0,0.0,1.0,11.4097,23.0,56.0,122.0,129.627,2.75294,1.96225,1.25846,8.0,8.0,8.0,0.00168038,0.0808242
+1858,61.9619,0.0,0.0,45.0,101.395,228.0,255.0,73.0,108.0,118.553,128.0,166.0,110.0,128.0,133.816,141.0,162.0,0.0,1.0,11.4803,23.0,57.0,122.0,129.684,2.41296,1.93613,1.2331,8.0,8.0,8.0,0.00163466,0.0810242
+1859,61.995267,0.0,0.0,44.0,101.413,228.0,255.0,73.0,108.0,118.672,128.0,164.0,105.0,128.0,133.828,141.0,164.0,0.0,1.0,11.4363,22.0,60.0,123.0,131.724,2.16821,1.8961,1.23265,8.0,8.0,8.0,0.00177469,0.0810528
+1860,62.028633,0.0,0.0,45.0,101.66,228.0,255.0,75.0,109.0,118.815,128.0,157.0,113.0,128.0,133.77,141.0,165.0,0.0,1.0,11.2599,22.0,58.0,123.0,131.228,2.66172,1.99175,1.29659,8.0,8.0,8.0,0.00189758,0.0819644
+1861,62.062,0.0,0.0,45.0,101.652,229.0,255.0,74.0,109.0,118.839,128.0,163.0,111.0,128.0,133.86,141.0,163.0,0.0,1.0,11.3297,22.0,58.0,123.0,132.299,2.21785,1.88186,1.21377,8.0,8.0,8.0,0.00180898,0.0823017
+1862,62.095367,0.0,0.0,44.0,101.463,229.0,255.0,75.0,109.0,118.693,128.0,162.0,113.0,128.0,133.823,141.0,163.0,0.0,1.0,11.4074,22.0,59.0,123.0,132.24,2.79203,1.93565,1.26068,8.0,8.0,8.0,0.00177183,0.0821845
+1863,62.128733,0.0,0.0,45.0,101.761,229.0,255.0,74.0,109.0,118.624,128.0,159.0,109.0,128.0,133.835,141.0,166.0,0.0,1.0,11.4639,23.0,58.0,123.0,129.788,2.6438,1.96812,1.29803,8.0,8.0,8.0,0.00178898,0.0827703
+1864,62.1621,0.0,0.0,45.0,101.741,229.0,255.0,73.0,109.0,118.675,128.0,167.0,112.0,128.0,133.92,141.0,164.0,0.0,1.0,11.4574,23.0,62.0,123.0,132.243,2.07078,1.94298,1.25414,8.0,8.0,8.0,0.00179184,0.0825332
+1865,62.195467,0.0,0.0,44.0,101.587,229.0,255.0,72.0,108.0,118.595,128.0,160.0,107.0,128.0,133.796,141.0,163.0,0.0,1.0,11.4807,23.0,58.0,122.0,129.922,2.39013,1.93895,1.25186,8.0,8.0,8.0,0.00178326,0.0821302
+1866,62.228833,0.0,0.0,44.0,101.536,229.0,255.0,74.0,108.0,118.555,128.0,156.0,102.0,128.0,133.876,141.0,170.0,0.0,1.0,11.5007,23.0,59.0,123.0,129.881,2.17527,1.92971,1.20806,8.0,8.0,8.0,0.00177469,0.083199
+1867,62.2622,0.0,0.0,44.0,100.195,225.0,255.0,70.0,108.0,118.621,128.0,159.0,104.0,128.0,133.795,141.0,167.0,0.0,1.0,11.4538,23.0,58.0,123.0,130.601,2.82567,2.00461,1.32459,8.0,8.0,8.0,0.00178898,0.0743084
+1868,62.295567,0.0,0.0,44.0,100.078,225.0,255.0,76.0,109.0,118.922,128.0,156.0,105.0,128.0,133.705,140.0,169.0,0.0,1.0,11.1632,22.0,58.0,123.0,132.614,2.80742,2.02822,1.33004,8.0,8.0,8.0,0.00176898,0.0734225
+1869,62.328933,0.0,0.0,44.0,99.8542,224.0,255.0,74.0,109.0,118.842,128.0,153.0,113.0,128.0,133.781,141.0,163.0,0.0,1.0,11.2493,22.0,56.0,123.0,132.021,2.35049,1.90614,1.19215,8.0,8.0,8.0,0.00186614,0.0713992
+1870,62.3623,0.0,0.0,44.0,99.8271,224.0,255.0,72.0,108.0,118.672,128.0,162.0,111.0,128.0,133.757,141.0,166.0,0.0,1.0,11.3776,22.0,56.0,123.0,130.926,2.64029,1.96962,1.25415,8.0,8.0,8.0,0.00184042,0.0713677
+1871,62.395667,0.0,0.0,44.0,99.7886,225.0,255.0,75.0,108.0,118.639,128.0,158.0,115.0,128.0,133.845,141.0,169.0,0.0,1.0,11.4858,23.0,58.0,123.0,131.142,2.21477,1.9132,1.28778,8.0,8.0,8.0,0.00192901,0.0713134
+1872,62.429033,0.0,0.0,44.0,99.6965,224.0,255.0,70.0,109.0,118.728,128.0,159.0,105.0,128.0,133.774,141.0,166.0,0.0,1.0,11.3243,22.0,58.0,123.0,131.159,2.46075,2.01427,1.31715,8.0,8.0,8.0,0.00180898,0.0702561
+1873,62.4624,0.0,0.0,44.0,99.3138,223.0,255.0,74.0,109.0,118.698,128.0,155.0,108.0,127.0,133.714,141.0,162.0,0.0,1.0,11.3382,22.0,55.0,122.0,129.807,2.32836,1.94631,1.2144,8.0,8.0,8.0,0.00170896,0.068227
+1874,62.495767,0.0,0.0,44.0,99.4023,223.0,255.0,73.0,108.0,118.626,128.0,163.0,104.0,128.0,133.765,141.0,166.0,0.0,1.0,11.3828,22.0,56.0,123.0,131.017,2.0549,1.87751,1.16364,8.0,8.0,8.0,0.00168324,0.0690072
+1875,62.529133,0.0,0.0,44.0,99.6702,224.0,255.0,75.0,108.0,118.539,128.0,158.0,104.0,128.0,133.811,141.0,167.0,0.0,1.0,11.5165,23.0,56.0,122.0,129.3,2.38051,1.95617,1.26707,8.0,8.0,8.0,0.00183185,0.070176
+1876,62.5625,0.0,0.0,44.0,99.9283,224.0,255.0,73.0,108.0,118.51,128.0,163.0,107.0,128.0,133.872,141.0,167.0,0.0,1.0,11.5297,23.0,62.0,123.0,130.394,2.24112,1.92962,1.23956,8.0,8.0,8.0,0.00186043,0.0709762
+1877,62.595867,0.0,0.0,44.0,99.8913,225.0,255.0,75.0,108.0,118.602,128.0,164.0,112.0,128.0,133.734,141.0,164.0,0.0,1.0,11.4268,23.0,58.0,122.0,129.886,2.51168,1.96025,1.29885,8.0,8.0,8.0,0.00172611,0.0713735
+1878,62.629233,0.0,0.0,44.0,99.6853,224.0,255.0,72.0,108.0,118.451,128.0,162.0,111.0,128.0,133.874,141.0,164.0,0.0,1.0,11.5861,23.0,59.0,123.0,129.686,2.43679,1.94194,1.27233,8.0,8.0,8.0,0.00173754,0.070639
+1879,62.6626,0.0,0.0,44.0,99.7559,224.0,255.0,74.0,108.0,118.545,128.0,166.0,109.0,128.0,133.861,141.0,167.0,0.0,1.0,11.5365,23.0,61.0,123.0,130.217,2.12165,1.93613,1.25365,8.0,8.0,8.0,0.00184899,0.0700131
+1880,62.695967,0.0,0.0,44.0,99.8366,224.0,255.0,70.0,108.0,118.594,128.0,155.0,112.0,128.0,133.786,141.0,163.0,0.0,1.0,11.419,23.0,59.0,122.0,128.988,2.41814,2.01944,1.32591,8.0,8.0,8.0,0.00158036,0.0701503
+1881,62.729333,0.0,0.0,44.0,100.045,224.0,255.0,73.0,109.0,118.682,128.0,166.0,106.0,128.0,133.879,141.0,167.0,0.0,1.0,11.4279,22.0,56.0,123.0,130.269,2.07362,1.87872,1.20777,8.0,8.0,8.0,0.00175469,0.0718707
+1882,62.7627,0.0,0.0,44.0,99.8807,224.0,255.0,75.0,108.0,118.634,128.0,158.0,112.0,128.0,133.845,141.0,163.0,0.0,1.0,11.4394,23.0,57.0,123.0,130.618,2.30423,1.98461,1.24921,8.0,8.0,8.0,0.00156321,0.0711505
+1883,62.796067,0.0,0.0,44.0,100.051,224.0,255.0,73.0,108.0,118.633,128.0,170.0,110.0,127.0,133.895,141.0,164.0,0.0,1.0,11.5442,23.0,60.0,123.0,130.995,2.5415,2.03054,1.31645,8.0,8.0,8.0,0.00168896,0.0708219
+1884,62.829433,0.0,0.0,44.0,99.8385,224.0,255.0,72.0,109.0,118.801,128.0,163.0,114.0,128.0,133.903,141.0,163.0,0.0,1.0,11.3432,23.0,57.0,124.0,132.526,2.08865,1.94583,1.23823,8.0,8.0,8.0,0.00174611,0.0698588
+1885,62.8628,0.0,0.0,43.0,97.9093,219.0,255.0,71.0,109.0,118.836,128.0,159.0,108.0,128.0,133.793,141.0,164.0,0.0,1.0,11.2978,22.0,59.0,123.0,132.206,3.06169,1.93955,1.23532,8.0,8.0,8.0,0.00167467,0.0562243
+1886,62.896167,0.0,0.0,43.0,95.7158,213.0,255.0,72.0,109.0,118.881,128.0,161.0,101.0,128.0,133.816,141.0,168.0,0.0,1.0,11.236,22.0,57.0,123.0,132.012,3.00716,1.92958,1.24926,8.0,8.0,8.0,0.00154893,0.0387689
+1887,62.929533,0.0,0.0,42.0,95.3949,212.0,255.0,73.0,108.0,118.65,128.0,163.0,104.0,128.0,133.762,141.0,168.0,0.0,1.0,11.438,23.0,58.0,123.0,131.498,2.36231,1.97561,1.24176,8.0,8.0,8.0,0.00152892,0.0368999
+1888,62.9629,0.0,0.0,43.0,95.8051,213.0,255.0,73.0,109.0,118.898,128.0,161.0,113.0,128.0,133.797,141.0,165.0,0.0,1.0,11.2244,22.0,56.0,123.0,132.359,2.46686,1.99507,1.33077,8.0,8.0,8.0,0.00177183,0.0371885
+1889,62.996267,0.0,0.0,43.0,95.6691,212.0,255.0,72.0,109.0,118.791,128.0,159.0,113.0,128.0,133.875,141.0,164.0,0.0,1.0,11.3457,22.0,57.0,123.0,132.543,1.94751,1.89419,1.20043,8.0,8.0,8.0,0.00169182,0.0370428
+1890,63.029633,0.0,0.0,42.0,95.5772,213.0,255.0,73.0,109.0,118.65,128.0,163.0,104.0,128.0,133.741,141.0,165.0,0.0,1.0,11.3869,22.0,58.0,122.0,131.57,2.40189,1.97291,1.26069,8.0,8.0,8.0,0.00150606,0.0376858
+1891,63.063,0.0,0.0,43.0,95.7826,213.0,255.0,73.0,108.0,118.636,128.0,160.0,107.0,128.0,133.739,141.0,165.0,0.0,1.0,11.4444,23.0,59.0,123.0,131.337,2.03646,1.96653,1.24067,8.0,8.0,8.0,0.00158608,0.0382945
+1892,63.096367,0.0,0.0,43.0,95.774,213.0,255.0,72.0,108.0,118.707,128.0,163.0,111.0,128.0,133.765,141.0,165.0,0.0,1.0,11.3682,22.0,58.0,123.0,132.33,2.48743,2.02011,1.33177,8.0,8.0,8.0,0.00152606,0.0381887
+1893,63.129733,0.0,0.0,43.0,95.7079,213.0,255.0,75.0,108.0,118.685,128.0,161.0,111.0,128.0,133.68,141.0,166.0,0.0,1.0,11.3498,22.0,58.0,123.0,130.901,2.40523,1.9306,1.27655,8.0,8.0,8.0,0.00177183,0.0374371
+1894,63.1631,0.0,0.0,42.0,95.5789,212.0,255.0,71.0,108.0,118.692,128.0,157.0,112.0,128.0,133.742,141.0,166.0,0.0,1.0,11.3622,22.0,58.0,123.0,132.212,1.99087,1.87873,1.19594,8.0,8.0,8.0,0.00184042,0.0372914
+1895,63.196467,0.0,0.0,42.0,95.51,213.0,255.0,73.0,108.0,118.649,128.0,152.0,114.0,127.0,133.535,141.0,166.0,0.0,1.0,11.3298,22.0,59.0,122.0,129.471,2.29461,2.0381,1.34034,8.0,8.0,8.0,0.0016318,0.0366798
+1896,63.229833,0.0,0.0,42.0,95.5908,213.0,255.0,74.0,109.0,118.735,128.0,147.0,112.0,127.0,133.516,140.0,163.0,0.0,1.0,11.2404,22.0,60.0,122.0,131.524,1.94676,1.93673,1.26959,8.0,8.0,8.0,0.00168896,0.036797
+1897,63.2632,0.0,0.0,42.0,95.4308,212.0,255.0,74.0,109.0,118.712,128.0,160.0,106.0,128.0,133.585,141.0,164.0,0.0,1.0,11.2743,22.0,60.0,122.0,130.364,2.34378,2.00372,1.29356,8.0,8.0,8.0,0.0016661,0.0368684
+1898,63.296567,0.0,0.0,42.0,95.3472,212.0,255.0,73.0,108.0,118.549,128.0,162.0,107.0,127.0,133.642,141.0,162.0,0.0,1.0,11.4362,22.0,59.0,122.0,129.557,2.48049,1.99286,1.29994,8.0,8.0,8.0,0.00167753,0.0359682
+1899,63.329933,0.0,0.0,42.0,95.4544,213.0,255.0,73.0,108.0,118.602,128.0,158.0,112.0,128.0,133.684,141.0,166.0,0.0,1.0,11.4349,23.0,58.0,122.0,131.242,2.15612,1.95868,1.28448,8.0,8.0,8.0,0.00157465,0.0370456
+1900,63.3633,0.0,0.0,43.0,95.8817,214.0,255.0,75.0,108.0,118.393,128.0,163.0,111.0,128.0,133.868,141.0,162.0,0.0,1.0,11.6522,23.0,60.0,122.0,130.234,2.65685,2.036,1.31916,8.0,8.0,8.0,0.00148034,0.0394976
+1901,63.396667,0.0,0.0,43.0,95.9045,214.0,255.0,71.0,108.0,118.388,128.0,159.0,108.0,128.0,133.985,141.0,163.0,0.0,1.0,11.7017,23.0,57.0,123.0,129.95,2.10468,1.86692,1.20945,8.0,8.0,8.0,0.0016661,0.0398377
+1902,63.430033,0.0,0.0,42.0,95.472,213.0,255.0,70.0,108.0,118.397,128.0,160.0,107.0,128.0,133.866,141.0,162.0,0.0,1.0,11.6668,23.0,58.0,123.0,132.124,2.57931,1.94384,1.26492,8.0,8.0,8.0,0.00164895,0.0391747
+1903,63.4634,0.0,0.0,42.0,95.3619,213.0,255.0,74.0,108.0,118.53,128.0,160.0,109.0,128.0,133.762,141.0,164.0,0.0,1.0,11.5433,23.0,57.0,122.0,130.894,2.64942,1.99339,1.33306,8.0,8.0,8.0,0.00163466,0.03764
+1904,63.496767,0.0,0.0,42.0,95.4248,213.0,255.0,73.0,108.0,118.578,128.0,155.0,111.0,128.0,133.831,141.0,166.0,0.0,1.0,11.4822,23.0,56.0,123.0,133.043,2.18645,1.94096,1.23755,8.0,8.0,8.0,0.00172325,0.0378715
+1905,63.530133,0.0,0.0,42.0,95.2835,212.0,255.0,72.0,108.0,118.518,128.0,153.0,112.0,128.0,133.761,141.0,163.0,0.0,1.0,11.4899,23.0,57.0,122.0,129.356,2.73074,1.9746,1.26948,8.0,8.0,8.0,0.00175469,0.0382373
+1906,63.5635,0.0,0.0,42.0,95.1665,212.0,255.0,73.0,108.0,118.505,128.0,150.0,113.0,128.0,133.791,141.0,163.0,0.0,1.0,11.5336,23.0,60.0,123.0,130.776,2.26023,1.95588,1.20645,8.0,8.0,8.0,0.00164323,0.0385545
+1907,63.596867,0.0,0.0,43.0,95.0256,212.0,255.0,74.0,108.0,118.451,128.0,144.0,115.0,128.0,133.754,141.0,164.0,0.0,1.0,11.5756,23.0,59.0,122.0,131.515,2.72743,2.01497,1.32383,8.0,8.0,8.0,0.00167753,0.0368941
+1908,63.630233,0.0,0.0,43.0,95.3207,212.0,255.0,74.0,108.0,118.555,128.0,144.0,114.0,128.0,133.939,141.0,166.0,0.0,1.0,11.5211,23.0,58.0,123.0,131.63,2.66503,2.00493,1.32993,8.0,8.0,8.0,0.00173182,0.0391175
+1909,63.6636,0.0,0.0,43.0,95.1499,212.0,255.0,75.0,108.0,118.517,128.0,140.0,110.0,128.0,133.924,141.0,162.0,0.0,1.0,11.5742,23.0,57.0,123.0,131.641,2.37599,1.89255,1.21589,8.0,8.0,8.0,0.00198617,0.0383688
+1910,63.696967,0.0,0.0,42.0,95.1131,212.0,255.0,76.0,108.0,118.39,128.0,146.0,110.0,128.0,133.824,141.0,163.0,0.0,1.0,11.6137,23.0,59.0,122.0,129.532,3.21155,2.00424,1.29274,8.0,8.0,8.0,0.00196045,0.03758
+1911,63.730333,0.0,0.0,42.0,95.0125,213.0,255.0,74.0,108.0,118.401,128.0,150.0,110.0,127.0,133.843,141.0,165.0,0.0,1.0,11.6527,23.0,61.0,122.0,129.4,2.59139,1.95724,1.28577,8.0,8.0,8.0,0.0014832,0.0375743
+1912,63.7637,0.0,0.0,42.0,95.2383,212.0,255.0,74.0,109.0,118.653,128.0,155.0,109.0,128.0,133.812,141.0,162.0,0.0,1.0,11.402,22.0,57.0,123.0,131.414,3.35974,1.99313,1.32867,8.0,8.0,8.0,0.00154893,0.0367856
+1913,63.797067,0.0,0.0,42.0,95.1437,212.0,255.0,73.0,108.0,118.675,128.0,159.0,109.0,128.0,133.77,141.0,163.0,0.0,1.0,11.3842,22.0,57.0,123.0,131.057,2.94324,1.91965,1.25866,8.0,8.0,8.0,0.0015775,0.036154
+1914,63.830433,0.0,0.0,42.0,92.8129,206.0,255.0,74.0,108.0,118.715,128.0,160.0,112.0,128.0,133.804,141.0,163.0,0.0,1.0,11.3531,22.0,57.0,123.0,133.234,3.22936,1.92711,1.25447,8.0,8.0,8.0,0.00156607,0.0215821
+1915,63.8638,0.0,0.0,41.0,90.9092,201.0,254.0,74.0,108.0,118.681,128.0,160.0,110.0,127.0,133.602,141.0,162.0,0.0,1.0,11.3444,22.0,56.0,122.0,130.478,3.4287,1.94808,1.30041,8.0,8.0,8.0,0.00155464,0.00995085
+1916,63.897167,0.0,0.0,41.0,91.0006,201.0,255.0,73.0,108.0,118.688,128.0,157.0,112.0,128.0,133.697,141.0,165.0,0.0,1.0,11.3598,22.0,57.0,123.0,131.67,2.11886,1.94625,1.30029,8.0,8.0,8.0,0.00158893,0.0104195
+1917,63.930533,0.0,0.0,41.0,90.4448,200.0,255.0,73.0,108.0,118.666,128.0,169.0,111.0,127.0,133.645,141.0,165.0,0.0,1.0,11.3355,22.0,61.0,122.0,130.338,2.78687,1.97703,1.32551,8.0,8.0,8.0,0.00154893,0.00811614
+1918,63.9639,0.0,0.0,41.0,90.6011,201.0,255.0,72.0,108.0,118.498,128.0,169.0,110.0,128.0,133.807,141.0,170.0,0.0,1.0,11.5552,23.0,58.0,122.0,130.709,3.1213,2.04299,1.34435,8.0,8.0,8.0,0.00150606,0.0094593
+1919,63.997267,0.0,0.0,41.0,90.532,201.0,255.0,74.0,108.0,118.487,128.0,152.0,106.0,128.0,133.821,141.0,164.0,0.0,1.0,11.5971,23.0,57.0,123.0,131.266,2.58192,2.02933,1.32523,8.0,8.0,8.0,0.00191758,0.00991655
+1920,64.030633,0.0,0.0,41.0,90.3776,201.0,255.0,71.0,108.0,118.515,128.0,148.0,110.0,128.0,133.831,141.0,164.0,0.0,1.0,11.5144,23.0,59.0,123.0,130.522,3.62485,2.14635,1.42907,8.0,8.0,8.0,0.00182899,0.0104795
+1921,64.064,0.0,0.0,41.0,90.1885,200.0,255.0,73.0,108.0,118.565,128.0,149.0,109.0,128.0,133.823,141.0,162.0,0.0,1.0,11.4844,23.0,60.0,123.0,130.181,2.62585,1.93291,1.29202,8.0,8.0,8.0,0.00148605,0.010531
+1922,64.097367,0.0,0.0,41.0,89.4371,199.0,254.0,75.0,108.0,118.506,128.0,163.0,112.0,128.0,133.803,141.0,162.0,0.0,1.0,11.5454,23.0,58.0,123.0,131.048,3.75852,2.10974,1.42862,8.0,8.0,8.0,0.00141175,0.0092364
+1923,64.130733,0.0,0.0,41.0,89.2814,199.0,255.0,73.0,108.0,118.383,128.0,164.0,111.0,128.0,133.896,141.0,164.0,0.0,1.0,11.6842,23.0,59.0,122.0,129.638,3.41132,2.07645,1.4266,8.0,8.0,8.0,0.00138317,0.00901349
+1924,64.1641,0.0,0.0,41.0,89.2452,199.0,255.0,75.0,108.0,118.455,128.0,161.0,111.0,128.0,133.917,141.0,163.0,0.0,1.0,11.6055,23.0,57.0,123.0,130.941,2.33655,1.99264,1.2894,8.0,8.0,8.0,0.0015575,0.00900492
+1925,64.197467,0.0,0.0,41.0,89.0804,198.0,255.0,75.0,108.0,118.478,128.0,162.0,107.0,128.0,133.808,141.0,163.0,0.0,1.0,11.5438,23.0,60.0,122.0,130.206,2.80485,2.00561,1.31492,8.0,8.0,8.0,0.00167181,0.00863626
+1926,64.230833,0.0,0.0,41.0,89.0717,198.0,255.0,75.0,108.0,118.41,128.0,160.0,111.0,128.0,133.9,141.0,165.0,0.0,1.0,11.6358,23.0,58.0,122.0,130.467,2.08423,1.94497,1.25047,8.0,8.0,8.0,0.00147462,0.00824474
+1927,64.2642,0.0,0.0,41.0,88.8435,198.0,255.0,75.0,108.0,118.35,128.0,151.0,113.0,127.0,133.701,141.0,163.0,0.0,1.0,11.6496,23.0,59.0,122.0,130.203,2.51748,2.03401,1.35054,8.0,8.0,8.0,0.00152035,0.00873628
+1928,64.297567,0.0,0.0,41.0,89.1421,198.0,255.0,77.0,108.0,118.718,129.0,152.0,110.0,128.0,133.764,141.0,163.0,0.0,1.0,11.3776,22.0,61.0,123.0,133.389,2.35694,2.11517,1.3678,8.0,8.0,8.0,0.00145748,0.00958219
+1929,64.330933,0.0,0.0,41.0,89.0779,198.0,255.0,73.0,108.0,118.742,128.0,154.0,107.0,128.0,133.832,141.0,163.0,0.0,1.0,11.3795,22.0,60.0,123.0,133.312,1.7861,1.92699,1.21256,8.0,8.0,8.0,0.00154607,0.0090735
+1930,64.3643,0.0,0.0,41.0,88.8755,198.0,255.0,74.0,108.0,118.674,128.0,154.0,111.0,128.0,133.758,141.0,163.0,0.0,1.0,11.3848,22.0,59.0,123.0,131.933,2.22481,1.93284,1.28118,8.0,8.0,8.0,0.0015575,0.00888203
+1931,64.397667,0.0,0.0,41.0,88.7875,198.0,255.0,73.0,108.0,118.627,128.0,154.0,112.0,127.0,133.764,141.0,162.0,0.0,1.0,11.4535,23.0,60.0,123.0,130.916,1.92643,1.9273,1.27253,8.0,8.0,8.0,0.00148034,0.00895348
+1932,64.431033,0.0,0.0,41.0,88.9375,198.0,255.0,73.0,108.0,118.626,128.0,156.0,111.0,128.0,133.74,140.0,163.0,0.0,1.0,11.3962,22.0,60.0,123.0,131.939,2.31203,2.0152,1.31096,8.0,8.0,8.0,0.00142032,0.00944787
+1933,64.4644,0.0,0.0,41.0,89.161,198.0,255.0,73.0,109.0,118.664,128.0,157.0,109.0,127.0,133.797,141.0,162.0,0.0,1.0,11.4332,22.0,58.0,123.0,131.367,2.34055,1.93177,1.26723,8.0,8.0,8.0,0.00146033,0.00928498
+1934,64.497767,0.0,0.0,41.0,89.0347,198.0,255.0,73.0,108.0,118.598,128.0,154.0,110.0,128.0,133.858,141.0,162.0,0.0,1.0,11.5026,22.0,57.0,123.0,132.374,1.95905,1.90302,1.19925,8.0,8.0,8.0,0.0014832,0.00881344
+1935,64.531133,0.0,0.0,41.0,89.1713,198.0,255.0,74.0,108.0,118.573,128.0,152.0,114.0,128.0,133.782,141.0,163.0,0.0,1.0,11.5031,22.0,59.0,123.0,131.115,2.39927,1.97329,1.3013,8.0,8.0,8.0,0.00137174,0.00915066
+1936,64.5645,0.0,0.0,41.0,89.0574,198.0,255.0,74.0,108.0,118.623,129.0,165.0,107.0,128.0,133.828,141.0,162.0,0.0,1.0,11.4743,23.0,58.0,123.0,134.389,1.95674,1.94949,1.23689,8.0,8.0,8.0,0.00143176,0.00809899
+1937,64.597867,0.0,0.0,41.0,87.9664,195.0,255.0,75.0,108.0,118.638,128.0,148.0,111.0,128.0,133.776,141.0,162.0,0.0,1.0,11.4388,23.0,56.0,123.0,132.544,2.46734,1.97062,1.25544,8.0,8.0,8.0,0.00159465,0.00469822
+1938,64.631233,0.0,0.0,41.0,87.2736,193.0,254.0,74.0,108.0,118.497,128.0,159.0,105.0,128.0,133.8,141.0,164.0,0.0,1.0,11.571,23.0,58.0,123.0,132.14,2.20316,2.02163,1.25199,8.0,8.0,8.0,0.00151177,0.00294925
+1939,64.6646,0.0,0.0,40.0,87.0993,193.0,255.0,72.0,108.0,118.447,128.0,157.0,112.0,128.0,133.882,141.0,164.0,0.0,1.0,11.6615,23.0,58.0,123.0,131.379,1.83971,2.00433,1.30146,8.0,8.0,8.0,0.00148605,0.00284922
+1940,64.697967,0.0,0.0,41.0,87.1859,193.0,254.0,74.0,108.0,118.453,128.0,160.0,113.0,128.0,133.812,141.0,163.0,0.0,1.0,11.5731,23.0,57.0,122.0,130.198,2.19753,2.03209,1.32379,8.0,8.0,8.0,0.00140032,0.00256059
+1941,64.731333,0.0,0.0,40.0,86.9037,192.0,250.0,72.0,108.0,118.544,128.0,156.0,114.0,128.0,133.804,141.0,163.0,0.0,1.0,11.5411,23.0,58.0,123.0,132.075,1.81035,1.91387,1.21891,8.0,8.0,8.0,0.00145748,0.00218336
+1942,64.7647,0.0,0.0,40.0,86.8311,192.0,252.0,73.0,108.0,118.527,128.0,162.0,112.0,128.0,133.797,141.0,163.0,0.0,1.0,11.4904,23.0,59.0,123.0,131.528,1.98722,1.97986,1.27315,8.0,8.0,8.0,0.00142318,0.00203761
+1943,64.798067,0.0,0.0,41.0,86.8279,192.0,253.0,73.0,108.0,118.467,128.0,163.0,114.0,128.0,133.843,141.0,165.0,0.0,1.0,11.6214,23.0,61.0,123.0,131.811,1.99978,2.00344,1.30516,8.0,8.0,8.0,0.00152321,0.00212334
+1944,64.831433,0.0,0.0,40.0,86.7494,192.0,254.0,73.0,108.0,118.61,128.0,162.0,112.0,128.0,133.88,141.0,163.0,0.0,1.0,11.4962,23.0,62.0,123.0,132.751,1.71876,1.97136,1.28666,8.0,8.0,8.0,0.00147176,0.00206047
+1945,64.8648,0.0,0.0,40.0,86.6965,191.0,255.0,72.0,108.0,118.732,128.0,155.0,114.0,128.0,133.724,141.0,163.0,0.0,1.0,11.3454,22.0,58.0,123.0,131.816,1.94619,1.99567,1.32299,8.0,8.0,8.0,0.00143747,0.00206619
+1946,64.898167,0.0,0.0,40.0,86.7731,192.0,255.0,73.0,108.0,118.735,128.0,149.0,112.0,128.0,133.802,141.0,162.0,0.0,1.0,11.3507,22.0,56.0,123.0,133.054,1.72181,1.95309,1.19491,8.0,8.0,8.0,0.00153464,0.00206333
+1947,64.931533,0.0,0.0,40.0,86.4316,191.0,251.0,74.0,108.0,118.47,128.0,149.0,111.0,128.0,133.819,141.0,163.0,0.0,1.0,11.5909,23.0,57.0,123.0,130.786,2.28668,2.06908,1.33329,8.0,8.0,8.0,0.00141461,0.00216907
+1948,64.9649,0.0,0.0,40.0,86.6798,192.0,255.0,74.0,108.0,118.579,128.0,159.0,114.0,128.0,133.853,141.0,163.0,0.0,1.0,11.4795,23.0,58.0,123.0,130.902,2.13365,2.03706,1.37465,8.0,8.0,8.0,0.00158608,0.00204047
+1949,64.998267,0.0,0.0,40.0,86.5266,192.0,254.0,72.0,108.0,118.627,128.0,158.0,113.0,128.0,133.805,141.0,164.0,0.0,1.0,11.4461,23.0,57.0,123.0,131.875,1.68036,1.89545,1.20919,8.0,8.0,8.0,0.00150606,0.0020176
+1950,65.031633,0.0,0.0,40.0,86.554,191.0,251.0,73.0,108.0,118.633,128.0,151.0,114.0,128.0,133.805,141.0,165.0,0.0,1.0,11.4297,22.0,57.0,123.0,131.552,1.9965,1.98204,1.28587,8.0,8.0,8.0,0.00143461,0.00198903
+1951,65.065,0.0,0.0,40.0,86.5668,191.0,255.0,74.0,108.0,118.583,128.0,157.0,114.0,128.0,133.796,141.0,168.0,0.0,1.0,11.4729,23.0,58.0,123.0,131.415,1.78423,1.97479,1.27425,8.0,8.0,8.0,0.00159179,0.00211191
+1952,65.098367,0.0,0.0,40.0,86.5041,192.0,254.0,74.0,108.0,118.62,128.0,149.0,114.0,128.0,133.781,141.0,166.0,0.0,1.0,11.4415,23.0,60.0,123.0,132.311,2.12267,2.01406,1.33898,8.0,8.0,8.0,0.00147462,0.00229767
+1953,65.131733,0.0,0.0,40.0,86.5343,192.0,251.0,73.0,108.0,118.609,128.0,155.0,114.0,128.0,133.844,141.0,165.0,0.0,1.0,11.4937,23.0,57.0,123.0,132.655,2.01432,1.93006,1.2759,8.0,8.0,8.0,0.00162037,0.00222908
+1954,65.1651,0.0,0.0,40.0,86.3846,191.0,255.0,76.0,108.0,118.499,128.0,148.0,113.0,128.0,133.897,141.0,166.0,0.0,1.0,11.59,23.0,57.0,123.0,131.737,1.70853,1.91252,1.22374,8.0,8.0,8.0,0.00142032,0.0021462
+1955,65.198467,0.0,0.0,40.0,86.4341,191.0,247.0,75.0,108.0,118.384,128.0,154.0,115.0,127.0,133.782,141.0,167.0,0.0,1.0,11.6272,23.0,60.0,122.0,128.93,2.03419,2.01143,1.32361,8.0,8.0,8.0,0.0014489,0.00217764
+1956,65.231833,0.0,0.0,40.0,86.4706,192.0,255.0,73.0,108.0,118.432,128.0,155.0,110.0,128.0,133.882,141.0,166.0,0.0,1.0,11.6315,23.0,57.0,123.0,131.424,1.6892,1.91401,1.24151,8.0,8.0,8.0,0.00149749,0.00216049
+1957,65.2652,0.0,0.0,40.0,84.5996,187.0,248.0,74.0,108.0,118.468,128.0,156.0,110.0,128.0,133.817,141.0,165.0,0.0,1.0,11.5553,23.0,60.0,122.0,129.776,2.70069,1.98623,1.288,8.0,8.0,8.0,0.0016661,0.00131459
+1958,65.298567,0.0,0.0,39.0,82.2828,181.0,237.0,75.0,108.0,118.298,128.0,152.0,114.0,128.0,133.984,141.0,164.0,0.0,1.0,11.7765,23.0,57.0,123.0,129.478,3.15414,2.03388,1.36743,8.0,8.0,8.0,0.00143747,0.00119742
+1959,65.331933,0.0,0.0,39.0,82.0389,180.0,238.0,74.0,108.0,118.28,128.0,152.0,114.0,128.0,133.916,141.0,167.0,0.0,1.0,11.7933,23.0,58.0,122.0,129.158,1.56442,1.94998,1.25551,8.0,8.0,8.0,0.00140889,0.00120027
+1960,65.3653,0.0,0.0,39.0,82.0665,180.0,236.0,74.0,108.0,118.282,128.0,160.0,114.0,128.0,133.878,141.0,167.0,0.0,1.0,11.7519,23.0,58.0,122.0,129.591,1.7558,2.032,1.32002,8.0,8.0,8.0,0.00141747,0.00119456
+1961,65.398667,0.0,0.0,39.0,81.9554,180.0,240.0,74.0,108.0,118.309,128.0,146.0,114.0,128.0,134.012,141.0,166.0,0.0,1.0,11.773,23.0,56.0,123.0,129.032,1.48023,1.99142,1.26375,8.0,8.0,8.0,0.00134316,0.00119742
+1962,65.432033,0.0,0.0,39.0,82.1579,181.0,236.0,75.0,108.0,118.159,128.0,146.0,114.0,128.0,133.952,141.0,166.0,0.0,1.0,11.8655,23.0,58.0,122.0,128.884,1.81887,1.99347,1.31782,8.0,8.0,8.0,0.0014832,0.00119456
+1963,65.4654,0.0,0.0,39.0,81.9952,180.0,239.0,75.0,108.0,118.212,128.0,150.0,113.0,127.0,133.892,141.0,166.0,0.0,1.0,11.8261,23.0,59.0,122.0,128.598,1.73375,2.02695,1.31572,8.0,8.0,8.0,0.00142032,0.00119456
+1964,65.498767,0.0,0.0,39.0,82.0157,180.0,255.0,73.0,108.0,118.349,128.0,146.0,114.0,128.0,133.893,141.0,166.0,0.0,1.0,11.684,23.0,59.0,122.0,130.351,1.58873,1.9929,1.29642,8.0,8.0,8.0,0.00151463,0.00119742
+1965,65.532133,0.0,0.0,39.0,82.1674,180.0,240.0,74.0,108.0,118.48,128.0,149.0,114.0,127.0,133.753,141.0,165.0,0.0,1.0,11.5465,23.0,58.0,122.0,129.996,1.79554,1.99026,1.31351,8.0,8.0,8.0,0.00140032,0.00120027
+1966,65.5655,0.0,0.0,39.0,82.2101,181.0,240.0,71.0,108.0,118.517,128.0,152.0,113.0,127.0,133.741,141.0,164.0,0.0,1.0,11.5052,23.0,58.0,122.0,129.378,1.55579,1.93298,1.23676,8.0,8.0,8.0,0.00150606,0.00119456
+1967,65.598867,0.0,0.0,39.0,81.7644,180.0,240.0,75.0,108.0,118.43,128.0,149.0,113.0,128.0,133.754,141.0,164.0,0.0,1.0,11.6062,23.0,60.0,122.0,130.357,1.77674,2.02787,1.34735,8.0,8.0,8.0,0.00148605,0.00119742
+1968,65.632233,0.0,0.0,39.0,82.125,180.0,239.0,75.0,108.0,118.43,128.0,150.0,113.0,127.0,133.751,141.0,164.0,0.0,1.0,11.5829,23.0,57.0,122.0,129.459,1.7691,2.00461,1.33362,8.0,8.0,8.0,0.00141461,0.00119456
+1969,65.6656,0.0,0.0,39.0,82.0899,180.0,241.0,73.0,108.0,118.453,128.0,152.0,113.0,128.0,133.85,141.0,165.0,0.0,1.0,11.6014,23.0,56.0,123.0,130.237,1.50537,1.93885,1.22418,8.0,8.0,8.0,0.00139746,0.00119742
+1970,65.698967,0.0,0.0,39.0,82.0876,180.0,237.0,73.0,108.0,118.327,128.0,164.0,114.0,127.0,133.824,141.0,166.0,0.0,1.0,11.6884,23.0,57.0,122.0,128.475,1.68671,1.96765,1.27257,8.0,8.0,8.0,0.00136603,0.00119742
+1971,65.732333,0.0,0.0,39.0,81.9534,180.0,241.0,73.0,108.0,118.329,128.0,164.0,114.0,127.0,133.934,141.0,166.0,0.0,1.0,11.7551,23.0,59.0,122.0,128.481,1.63554,2.02997,1.30316,8.0,8.0,8.0,0.00148034,0.00119742
+1972,65.7657,0.0,0.0,39.0,81.9922,180.0,253.0,74.0,108.0,118.488,128.0,152.0,114.0,128.0,133.816,141.0,164.0,0.0,1.0,11.5318,23.0,56.0,122.0,129.911,1.80316,2.08174,1.33523,8.0,8.0,8.0,0.0016318,0.00120599
+1973,65.799067,0.0,0.0,39.0,82.2665,180.0,240.0,75.0,108.0,118.477,128.0,146.0,114.0,128.0,133.845,141.0,164.0,0.0,1.0,11.5946,23.0,60.0,123.0,129.738,1.86627,2.00026,1.34444,8.0,8.0,8.0,0.00137746,0.00119456
+1974,65.832433,0.0,0.0,39.0,82.1746,180.0,240.0,75.0,108.0,118.513,128.0,149.0,114.0,128.0,133.813,141.0,163.0,0.0,1.0,11.5207,23.0,60.0,123.0,130.56,1.57927,1.94505,1.25158,8.0,8.0,8.0,0.00149463,0.00119742
+1975,65.8658,0.0,0.0,39.0,82.1097,181.0,237.0,76.0,108.0,118.278,128.0,146.0,114.0,127.0,133.809,141.0,164.0,0.0,1.0,11.7381,23.0,57.0,122.0,128.437,1.98177,2.10409,1.37333,8.0,8.0,8.0,0.00158608,0.00119456
+1976,65.899167,0.0,0.0,39.0,82.3515,181.0,241.0,75.0,108.0,118.387,128.0,147.0,114.0,127.0,133.87,141.0,164.0,0.0,1.0,11.6684,23.0,57.0,122.0,129.96,1.69767,2.01225,1.33416,8.0,8.0,8.0,0.00155464,0.00119742
+1977,65.932533,0.0,0.0,39.0,82.1096,180.0,238.0,74.0,108.0,118.347,128.0,148.0,115.0,127.0,133.826,141.0,164.0,0.0,1.0,11.6646,23.0,59.0,122.0,128.85,1.90107,1.98898,1.32395,8.0,8.0,8.0,0.00162609,0.00119742
+1978,65.9659,0.0,0.0,39.0,81.9568,180.0,234.0,75.0,108.0,118.345,128.0,151.0,115.0,128.0,133.9,141.0,163.0,0.0,1.0,11.7006,23.0,58.0,122.0,129.342,1.84038,2.02263,1.30544,8.0,8.0,8.0,0.00158608,0.0011917
+1979,65.999267,0.0,0.0,39.0,82.0602,180.0,235.0,75.0,108.0,118.289,128.0,149.0,115.0,128.0,133.973,141.0,165.0,0.0,1.0,11.7959,23.0,57.0,123.0,130.763,1.72743,1.98176,1.26806,8.0,8.0,8.0,0.00166895,0.0011917
+1980,66.032633,0.0,0.0,39.0,82.183,180.0,235.0,75.0,108.0,118.257,128.0,147.0,115.0,128.0,133.957,141.0,166.0,0.0,1.0,11.7799,23.0,58.0,122.0,129.1,1.99122,2.00125,1.31792,8.0,8.0,8.0,0.00133173,0.0011917
+1981,66.066,0.0,0.0,39.0,81.9446,179.0,236.0,75.0,108.0,118.356,128.0,157.0,114.0,128.0,134.042,141.0,164.0,0.0,1.0,11.768,23.0,58.0,123.0,130.256,1.72669,1.93005,1.23509,8.0,8.0,8.0,0.00140032,0.00119456
+1982,66.099367,0.0,0.0,39.0,80.5965,176.0,230.0,73.0,108.0,118.266,128.0,151.0,115.0,128.0,134.092,141.0,164.0,0.0,1.0,11.8445,23.0,58.0,123.0,130.934,2.5308,1.98326,1.35046,8.0,8.0,8.0,0.00150034,0.0011917
+1983,66.132733,0.0,0.0,38.0,78.3234,170.0,231.0,73.0,107.0,118.047,128.0,150.0,115.0,128.0,134.168,141.0,166.0,0.0,1.0,12.078,24.0,59.0,123.0,129.625,3.47596,2.10439,1.44345,8.0,8.0,8.0,0.00180327,0.0011917
+1984,66.1661,0.0,0.0,38.0,77.4576,168.0,221.0,74.0,108.0,117.988,128.0,148.0,114.0,128.0,134.214,141.0,164.0,0.0,1.0,12.1256,23.0,58.0,123.0,129.366,2.23238,2.10741,1.41711,8.0,8.0,8.0,0.00162609,0.0011917
+1985,66.199467,0.0,0.0,38.0,77.4379,167.0,219.0,74.0,108.0,118.086,128.0,148.0,114.0,128.0,134.162,141.0,167.0,0.0,1.0,12.0407,24.0,57.0,122.0,128.933,1.93219,2.02763,1.31854,8.0,8.0,8.0,0.00164609,0.0011917
+1986,66.232833,0.0,0.0,38.0,77.4173,167.0,246.0,73.0,108.0,118.149,128.0,146.0,113.0,128.0,134.149,141.0,163.0,0.0,1.0,11.961,23.0,59.0,123.0,128.836,1.56233,1.98739,1.27745,8.0,8.0,8.0,0.00156893,0.00119742
+1987,66.2662,0.0,0.0,38.0,76.8941,166.0,221.0,73.0,107.0,118.036,128.0,149.0,114.0,128.0,133.976,141.0,166.0,0.0,1.0,11.9969,24.0,61.0,122.0,128.686,2.03546,2.10669,1.42788,8.0,8.0,8.0,0.00164037,0.0011917
+1988,66.299567,0.0,0.0,38.0,77.3197,167.0,221.0,75.0,108.0,118.352,128.0,146.0,114.0,128.0,134.041,141.0,165.0,0.0,1.0,11.78,23.0,56.0,123.0,130.121,1.87163,2.11283,1.42052,8.0,8.0,8.0,0.00151463,0.0011917
+1989,66.332933,0.0,0.0,38.0,77.227,167.0,221.0,74.0,108.0,118.435,128.0,149.0,113.0,128.0,133.965,141.0,161.0,0.0,1.0,11.6825,23.0,58.0,123.0,131.046,1.44465,1.98623,1.30927,8.0,8.0,8.0,0.00170039,0.0011917
+1990,66.3663,0.0,0.0,38.0,77.1623,167.0,219.0,72.0,108.0,118.396,128.0,150.0,114.0,128.0,133.91,141.0,162.0,0.0,1.0,11.6985,23.0,59.0,123.0,130.783,1.7555,2.04118,1.33202,8.0,8.0,8.0,0.0014489,0.00119456
+1991,66.399667,0.0,0.0,38.0,77.015,167.0,235.0,74.0,108.0,118.273,128.0,147.0,110.0,128.0,133.964,141.0,163.0,0.0,1.0,11.8073,23.0,58.0,122.0,129.394,1.5899,2.08366,1.35002,8.0,8.0,8.0,0.00149177,0.00119456
+1992,66.433033,0.0,0.0,38.0,76.9111,167.0,239.0,73.0,108.0,118.532,128.0,151.0,110.0,128.0,133.829,141.0,164.0,0.0,1.0,11.5432,23.0,57.0,123.0,130.804,1.79901,2.09587,1.37897,8.0,8.0,8.0,0.00140604,0.00119456
+1993,66.4664,0.0,0.0,38.0,76.9188,167.0,221.0,73.0,108.0,118.436,128.0,154.0,114.0,127.0,133.821,141.0,165.0,0.0,1.0,11.608,23.0,59.0,122.0,129.127,1.67708,2.01261,1.30112,8.0,8.0,8.0,0.00143747,0.0011917
+1994,66.499767,0.0,0.0,38.0,77.0615,167.0,219.0,73.0,108.0,118.402,128.0,157.0,115.0,128.0,133.821,141.0,164.0,0.0,1.0,11.6134,23.0,58.0,122.0,129.871,1.40854,1.92469,1.22321,8.0,8.0,8.0,0.00144033,0.0011917
+1995,66.533133,0.0,0.0,38.0,77.0186,167.0,220.0,72.0,108.0,118.302,128.0,149.0,114.0,127.0,133.79,141.0,165.0,0.0,1.0,11.7335,23.0,57.0,122.0,129.468,1.80468,2.05445,1.34015,8.0,8.0,8.0,0.00135174,0.0011917
+1996,66.5665,0.0,0.0,38.0,77.1348,167.0,220.0,73.0,108.0,118.442,128.0,149.0,114.0,127.0,133.841,141.0,164.0,0.0,1.0,11.6277,23.0,56.0,122.0,130.658,1.51761,2.00278,1.34698,8.0,8.0,8.0,0.00144604,0.0011917
+1997,66.599867,0.0,0.0,38.0,77.2474,167.0,222.0,74.0,108.0,118.52,128.0,149.0,114.0,127.0,133.763,141.0,165.0,0.0,1.0,11.5176,23.0,56.0,122.0,129.725,1.82669,2.05532,1.36049,8.0,8.0,8.0,0.00147748,0.0011917
+1998,66.633233,0.0,0.0,38.0,77.5332,168.0,221.0,72.0,108.0,118.427,128.0,151.0,113.0,127.0,133.714,141.0,164.0,0.0,1.0,11.5781,23.0,57.0,122.0,129.413,1.70518,2.01401,1.31124,8.0,8.0,8.0,0.0013946,0.0011917
+1999,66.6666,0.0,0.0,38.0,77.4617,168.0,221.0,75.0,108.0,118.364,128.0,144.0,112.0,128.0,133.77,141.0,165.0,0.0,1.0,11.663,23.0,57.0,122.0,129.686,1.46878,1.99327,1.30728,8.0,8.0,8.0,0.00146033,0.0011917
+2000,66.699967,0.0,0.0,38.0,77.538,168.0,223.0,75.0,108.0,118.313,128.0,151.0,112.0,127.0,133.741,141.0,164.0,0.0,1.0,11.6574,23.0,58.0,122.0,128.129,1.69011,2.02662,1.33884,8.0,8.0,8.0,0.00146891,0.0011917
+2001,66.733333,0.0,0.0,38.0,77.6275,168.0,224.0,75.0,108.0,118.48,128.0,151.0,112.0,127.0,133.795,141.0,164.0,0.0,1.0,11.5626,23.0,57.0,122.0,129.766,1.40573,1.95506,1.28371,8.0,8.0,8.0,0.00137174,0.0011917
+2002,66.7667,0.0,0.0,38.0,77.6865,168.0,219.0,75.0,108.0,118.487,128.0,148.0,113.0,128.0,133.684,140.0,163.0,0.0,1.0,11.512,22.0,57.0,122.0,130.468,1.56188,2.03988,1.29851,8.0,8.0,8.0,0.00135745,0.0011917
+2003,66.800067,0.0,0.0,38.0,77.6758,168.0,218.0,75.0,108.0,118.396,128.0,151.0,113.0,127.0,133.706,141.0,163.0,0.0,1.0,11.6169,23.0,60.0,122.0,128.786,1.60627,2.03933,1.35722,8.0,8.0,8.0,0.00140032,0.0011917
+2004,66.833433,0.0,0.0,38.0,77.6982,168.0,221.0,73.0,109.0,118.568,128.0,147.0,112.0,127.0,133.663,140.0,163.0,0.0,1.0,11.4191,22.0,57.0,122.0,130.29,1.42146,2.00775,1.30307,8.0,8.0,8.0,0.00148891,0.0011917
+2005,66.8668,0.0,0.0,38.0,77.8449,168.0,220.0,73.0,108.0,118.627,128.0,149.0,115.0,127.0,133.622,140.0,163.0,0.0,1.0,11.3735,22.0,55.0,122.0,128.866,1.58665,2.01246,1.30291,8.0,8.0,8.0,0.00136031,0.0011917
+2006,66.900167,0.0,0.0,38.0,77.8656,169.0,221.0,37.0,108.0,118.539,128.0,154.0,112.0,127.0,133.705,140.0,163.0,0.0,1.0,11.4648,22.0,92.0,122.0,128.383,1.41745,1.94313,1.26081,8.0,8.0,8.0,0.000814472,0.0011917
+2007,66.933533,0.0,0.0,38.0,77.5807,168.0,221.0,37.0,108.0,118.255,128.0,157.0,110.0,127.0,133.578,140.0,162.0,0.0,1.0,11.68,23.0,92.0,120.0,127.069,1.858,2.01249,1.36963,8.0,8.0,8.0,0.000840192,0.0011917
+2008,66.9669,0.0,0.0,38.0,77.633,168.0,226.0,72.0,108.0,118.497,128.0,147.0,112.0,127.0,133.699,141.0,163.0,0.0,1.0,11.4975,23.0,57.0,122.0,129.242,1.7879,2.0832,1.39624,8.0,8.0,8.0,0.00151177,0.0011917
+2009,67.000267,0.0,0.0,38.0,77.631,168.0,220.0,75.0,108.0,118.633,128.0,145.0,113.0,128.0,133.671,140.0,162.0,0.0,1.0,11.3794,22.0,56.0,122.0,129.938,1.40844,1.91163,1.21878,8.0,8.0,8.0,0.0014289,0.0011917
+2010,67.033633,0.0,0.0,38.0,77.5614,168.0,220.0,72.0,109.0,118.659,128.0,146.0,113.0,127.0,133.529,140.0,162.0,0.0,1.0,11.2924,22.0,56.0,122.0,128.28,1.62985,1.99208,1.28171,8.0,8.0,8.0,0.00140032,0.0011917
+2011,67.067,0.0,0.0,38.0,77.5979,168.0,223.0,39.0,108.0,118.598,128.0,153.0,110.0,127.0,133.593,141.0,164.0,0.0,1.0,11.4251,22.0,90.0,122.0,128.744,1.46805,2.00364,1.29087,8.0,8.0,8.0,0.000897348,0.0011917
+2012,67.100367,0.0,0.0,38.0,77.4715,168.0,222.0,38.0,108.0,118.511,128.0,162.0,110.0,127.0,133.671,141.0,162.0,0.0,1.0,11.5279,23.0,91.0,122.0,131.091,1.61582,2.04943,1.3424,8.0,8.0,8.0,0.000811614,0.0011917
+2013,67.133733,0.0,0.0,38.0,77.3027,167.0,221.0,37.0,108.0,118.651,128.0,160.0,112.0,127.0,133.696,141.0,164.0,0.0,1.0,11.4059,22.0,91.0,122.0,129.86,1.50469,1.96036,1.25861,8.0,8.0,8.0,0.000797325,0.0011917
+2014,67.1671,0.0,0.0,37.0,75.8756,164.0,216.0,37.0,108.0,118.543,128.0,153.0,109.0,128.0,133.741,141.0,165.0,0.0,1.0,11.5003,23.0,91.0,122.0,130.705,2.06591,2.01075,1.30625,8.0,8.0,8.0,0.000805898,0.0011917
+2015,67.200467,0.0,0.0,37.0,75.448,163.0,211.0,72.0,108.0,118.401,128.0,144.0,108.0,127.0,133.714,141.0,163.0,0.0,1.0,11.64,23.0,56.0,122.0,128.866,1.95438,2.04065,1.34127,8.0,8.0,8.0,0.00136031,0.0011917
+2016,67.233833,0.0,0.0,37.0,75.502,163.0,213.0,72.0,108.0,118.341,128.0,146.0,107.0,127.0,133.791,141.0,164.0,0.0,1.0,11.6689,23.0,60.0,122.0,128.866,1.50093,2.02796,1.35624,8.0,8.0,8.0,0.00144033,0.0011917
+2017,67.2672,0.0,0.0,37.0,75.0568,161.0,217.0,73.0,108.0,118.66,128.0,148.0,105.0,127.0,133.614,141.0,166.0,0.0,1.0,11.3639,22.0,59.0,122.0,129.738,1.6319,2.05269,1.33559,8.0,8.0,8.0,0.00142604,0.0011917
+2018,67.300567,0.0,0.0,37.0,75.385,162.0,218.0,76.0,108.0,118.55,128.0,147.0,115.0,127.0,133.754,141.0,165.0,0.0,1.0,11.5383,23.0,56.0,122.0,130.015,1.49249,2.08256,1.36698,8.0,8.0,8.0,0.00134888,0.0011917
+2019,67.333933,0.0,0.0,37.0,75.3202,162.0,213.0,74.0,108.0,118.54,128.0,151.0,107.0,127.0,133.742,141.0,164.0,0.0,1.0,11.5142,23.0,58.0,122.0,130.453,1.33636,2.0648,1.34861,8.0,8.0,8.0,0.00136031,0.0011917
+2020,67.3673,0.0,0.0,37.0,75.5341,163.0,213.0,73.0,108.0,118.371,128.0,150.0,105.0,127.0,133.69,141.0,165.0,0.0,1.0,11.6421,23.0,61.0,122.0,127.925,1.53816,2.10799,1.40821,8.0,8.0,8.0,0.00139175,0.0011917
+2021,67.400667,0.0,0.0,37.0,75.5658,163.0,213.0,75.0,108.0,118.486,128.0,148.0,111.0,127.0,133.759,141.0,166.0,0.0,1.0,11.5825,23.0,56.0,122.0,129.272,1.28172,1.99479,1.30273,8.0,8.0,8.0,0.0013546,0.0011917
+2022,67.434033,0.0,0.0,37.0,75.4586,163.0,212.0,75.0,108.0,118.474,128.0,147.0,108.0,127.0,133.656,140.0,164.0,0.0,1.0,11.4938,23.0,59.0,122.0,128.52,1.51275,2.08332,1.33278,8.0,8.0,8.0,0.0014289,0.00119456
+2023,67.4674,0.0,0.0,37.0,75.4207,163.0,214.0,75.0,108.0,118.305,128.0,151.0,112.0,127.0,133.678,141.0,164.0,0.0,1.0,11.7137,23.0,60.0,122.0,128.876,1.69172,2.08264,1.34089,8.0,8.0,8.0,0.00144319,0.0011917
+2024,67.500767,0.0,0.0,37.0,75.4864,163.0,217.0,71.0,108.0,118.429,128.0,147.0,107.0,127.0,133.692,141.0,164.0,0.0,1.0,11.5928,23.0,58.0,122.0,129.513,1.34034,2.03642,1.31852,8.0,8.0,8.0,0.00145176,0.0011917
+2025,67.534133,0.0,0.0,37.0,75.5799,163.0,215.0,75.0,108.0,118.584,128.0,145.0,109.0,127.0,133.662,141.0,164.0,0.0,1.0,11.4541,23.0,56.0,122.0,129.712,1.53653,2.06529,1.33443,8.0,8.0,8.0,0.00148034,0.00119456
+2026,67.5675,0.0,0.0,37.0,75.6772,163.0,214.0,73.0,108.0,118.599,128.0,146.0,108.0,127.0,133.668,141.0,163.0,0.0,1.0,11.4215,23.0,56.0,122.0,129.321,1.39508,1.98114,1.27637,8.0,8.0,8.0,0.00147748,0.0011917
+2027,67.600867,0.0,0.0,37.0,75.4031,163.0,215.0,73.0,108.0,118.608,128.0,145.0,106.0,127.0,133.579,141.0,164.0,0.0,1.0,11.4355,23.0,58.0,122.0,130.635,1.71131,2.06344,1.37281,8.0,8.0,8.0,0.00143747,0.0011917
+2028,67.634233,0.0,0.0,37.0,75.5922,163.0,215.0,77.0,109.0,118.761,128.0,145.0,108.0,127.0,133.633,140.0,165.0,0.0,1.0,11.299,22.0,57.0,123.0,130.202,1.82967,2.09246,1.39328,8.0,8.0,8.0,0.00138032,0.0011917
+2029,67.6676,0.0,0.0,37.0,75.4997,163.0,213.0,74.0,109.0,118.803,128.0,146.0,105.0,127.0,133.633,141.0,164.0,0.0,1.0,11.2803,22.0,56.0,123.0,130.771,1.52052,1.98509,1.29282,8.0,8.0,8.0,0.00147462,0.0011917
+2030,67.700967,0.0,0.0,37.0,75.336,163.0,222.0,75.0,109.0,118.786,128.0,151.0,104.0,127.0,133.59,140.0,164.0,0.0,1.0,11.2584,22.0,57.0,122.0,131.097,1.89259,2.06366,1.35066,8.0,8.0,8.0,0.00149463,0.0011917
+2031,67.734333,0.0,0.0,37.0,75.1525,162.0,215.0,73.0,108.0,118.736,128.0,147.0,106.0,127.0,133.653,141.0,164.0,0.0,1.0,11.3538,22.0,59.0,123.0,130.323,1.5628,2.03197,1.33189,8.0,8.0,8.0,0.00141747,0.0011917
+2032,67.7677,0.0,0.0,37.0,75.2628,162.0,212.0,74.0,108.0,118.703,128.0,144.0,113.0,127.0,133.645,140.0,162.0,0.0,1.0,11.3525,22.0,58.0,123.0,131.469,1.7714,2.08549,1.37021,8.0,8.0,8.0,0.00132602,0.0011917
+2033,67.801067,0.0,0.0,37.0,75.5368,162.0,214.0,73.0,109.0,118.78,128.0,145.0,113.0,127.0,133.635,141.0,163.0,0.0,1.0,11.2709,22.0,57.0,123.0,130.58,1.73837,2.01675,1.32399,8.0,8.0,8.0,0.00135745,0.0011917
+2034,67.834433,0.0,0.0,37.0,75.3924,162.0,215.0,75.0,108.0,118.769,129.0,146.0,111.0,127.0,133.646,141.0,163.0,0.0,1.0,11.3338,22.0,55.0,123.0,132.605,1.37726,1.97811,1.28969,8.0,8.0,8.0,0.00148605,0.0011917
+2035,67.8678,0.0,0.0,37.0,75.3414,162.0,214.0,75.0,108.0,118.612,128.0,147.0,114.0,127.0,133.62,141.0,165.0,0.0,1.0,11.4577,23.0,57.0,122.0,130.678,1.68993,2.09611,1.38149,8.0,8.0,8.0,0.0014489,0.0011917
+2036,67.901167,0.0,0.0,37.0,75.462,162.0,215.0,74.0,108.0,118.654,128.0,145.0,114.0,127.0,133.771,141.0,165.0,0.0,1.0,11.4411,23.0,58.0,123.0,131.238,1.43099,2.02124,1.32979,8.0,8.0,8.0,0.0014289,0.00119456
+2037,67.934533,0.0,0.0,37.0,75.421,162.0,216.0,74.0,108.0,118.729,129.0,147.0,114.0,127.0,133.638,141.0,165.0,0.0,1.0,11.3591,22.0,60.0,122.0,132.248,1.66433,2.0531,1.33856,8.0,8.0,8.0,0.00149177,0.0011917
+2038,67.9679,0.0,0.0,37.0,75.6825,163.0,217.0,75.0,108.0,118.724,128.0,145.0,113.0,127.0,133.635,141.0,164.0,0.0,1.0,11.308,22.0,58.0,123.0,131.371,1.77815,2.02801,1.3119,8.0,8.0,8.0,0.00152035,0.0011917
+2039,68.001267,0.0,0.0,37.0,75.3718,162.0,215.0,75.0,108.0,118.628,128.0,144.0,113.0,127.0,133.652,141.0,165.0,0.0,1.0,11.4361,23.0,58.0,122.0,131.18,1.55378,2.04118,1.32703,8.0,8.0,8.0,0.00156893,0.0011917
+2040,68.034633,0.0,0.0,37.0,75.4596,162.0,240.0,75.0,108.0,118.676,129.0,143.0,108.0,127.0,133.664,141.0,165.0,0.0,1.0,11.3961,22.0,58.0,123.0,132.31,1.79964,2.07674,1.37419,8.0,8.0,8.0,0.0015032,0.00119456
+2041,68.068,0.0,0.0,37.0,75.6541,163.0,215.0,74.0,109.0,118.772,128.0,141.0,114.0,127.0,133.663,141.0,164.0,0.0,1.0,11.3126,22.0,57.0,123.0,131.678,1.48252,2.02215,1.30262,8.0,8.0,8.0,0.00163466,0.0011917
+2042,68.101367,0.0,0.0,37.0,75.7486,162.0,217.0,75.0,108.0,118.579,128.0,149.0,113.0,127.0,133.731,141.0,164.0,0.0,1.0,11.5067,22.0,58.0,122.0,131.728,1.49827,2.00534,1.31262,8.0,8.0,8.0,0.00153464,0.0011917
+2043,68.134733,0.0,0.0,37.0,75.5945,163.0,219.0,74.0,108.0,118.418,128.0,143.0,115.0,127.0,133.689,141.0,166.0,0.0,1.0,11.6393,23.0,59.0,122.0,129.219,1.5223,2.05757,1.37165,8.0,8.0,8.0,0.00150034,0.0011917
+2044,68.1681,0.0,0.0,37.0,75.5745,163.0,216.0,75.0,108.0,118.497,128.0,149.0,115.0,127.0,133.724,141.0,165.0,0.0,1.0,11.5403,23.0,57.0,122.0,129.589,1.38824,1.97723,1.31155,8.0,8.0,8.0,0.00153464,0.0011917
+2045,68.201467,0.0,0.0,37.0,75.5984,162.0,223.0,73.0,108.0,118.394,128.0,147.0,112.0,127.0,133.737,141.0,164.0,0.0,1.0,11.6339,23.0,57.0,122.0,129.681,1.6392,2.00622,1.31646,8.0,8.0,8.0,0.0015575,0.0011917
+2046,68.234833,0.0,0.0,37.0,75.6914,163.0,216.0,76.0,108.0,118.306,128.0,150.0,107.0,127.0,133.782,141.0,164.0,0.0,1.0,11.7206,23.0,58.0,122.0,128.742,1.43363,1.98082,1.28876,8.0,8.0,8.0,0.00140889,0.0011917
+2047,68.2682,0.0,0.0,37.0,75.4388,162.0,216.0,74.0,108.0,118.281,128.0,146.0,112.0,127.0,133.771,141.0,163.0,0.0,1.0,11.7732,23.0,57.0,122.0,128.617,1.84023,2.12921,1.39548,8.0,8.0,8.0,0.00135174,0.0011917
+2048,68.301567,0.0,0.0,37.0,75.6644,163.0,218.0,73.0,108.0,118.437,128.0,144.0,115.0,127.0,133.805,141.0,162.0,0.0,1.0,11.6309,23.0,56.0,122.0,131.512,1.77013,2.07569,1.38817,8.0,8.0,8.0,0.00148891,0.0011917
+2049,68.334933,0.0,0.0,37.0,75.6209,162.0,218.0,76.0,108.0,118.516,128.0,144.0,115.0,127.0,133.791,141.0,163.0,0.0,1.0,11.5735,23.0,57.0,123.0,130.621,1.27788,1.94536,1.23224,8.0,8.0,8.0,0.00145462,0.0011917
+2050,68.3683,0.0,0.0,37.0,75.5935,162.0,228.0,76.0,108.0,118.488,128.0,148.0,102.0,127.0,133.766,141.0,165.0,0.0,1.0,11.5736,23.0,58.0,122.0,129.902,1.53247,1.98783,1.32012,8.0,8.0,8.0,0.00132888,0.00119742
+2051,68.401667,0.0,0.0,37.0,75.5163,163.0,216.0,75.0,108.0,118.352,128.0,147.0,116.0,127.0,133.804,141.0,164.0,0.0,1.0,11.7054,23.0,60.0,122.0,130.035,1.42101,2.00362,1.33033,8.0,8.0,8.0,0.00139746,0.0011917
+2052,68.435033,0.0,0.0,37.0,75.5398,163.0,216.0,72.0,108.0,118.411,128.0,146.0,112.0,127.0,133.784,141.0,161.0,0.0,1.0,11.6362,23.0,57.0,122.0,131.201,1.56461,2.01117,1.35376,8.0,8.0,8.0,0.00131744,0.0011917
+2053,68.4684,0.0,0.0,37.0,75.5756,162.0,236.0,74.0,108.0,118.499,128.0,147.0,115.0,127.0,133.782,141.0,163.0,0.0,1.0,11.5629,23.0,59.0,122.0,129.644,1.59329,1.9696,1.29975,8.0,8.0,8.0,0.0014289,0.00119456
+2054,68.501767,0.0,0.0,37.0,75.5578,162.0,238.0,76.0,108.0,118.513,128.0,143.0,116.0,128.0,133.838,141.0,165.0,0.0,1.0,11.5643,23.0,57.0,123.0,131.026,1.31719,1.97668,1.27556,8.0,8.0,8.0,0.00148034,0.00119456
+2055,68.535133,0.0,0.0,37.0,75.4143,162.0,213.0,75.0,108.0,118.498,128.0,148.0,115.0,127.0,133.851,141.0,163.0,0.0,1.0,11.6219,23.0,55.0,123.0,131.32,1.60427,2.04667,1.3801,8.0,8.0,8.0,0.00132316,0.0011917
+2056,68.5685,0.0,0.0,37.0,75.588,163.0,217.0,75.0,108.0,118.419,128.0,152.0,113.0,127.0,133.907,141.0,163.0,0.0,1.0,11.6828,23.0,58.0,123.0,131.023,1.43758,1.99737,1.34206,8.0,8.0,8.0,0.0013946,0.0011917
+2057,68.601867,0.0,0.0,37.0,75.4237,162.0,237.0,73.0,108.0,118.478,128.0,145.0,108.0,127.0,133.866,141.0,163.0,0.0,1.0,11.6211,23.0,57.0,123.0,130.431,1.56104,2.02646,1.34425,8.0,8.0,8.0,0.00157465,0.00119456
+2058,68.635233,0.0,0.0,37.0,75.6375,163.0,217.0,73.0,108.0,118.477,128.0,147.0,113.0,127.0,133.976,141.0,163.0,0.0,1.0,11.6741,23.0,58.0,123.0,131.0,1.60228,2.03948,1.32206,8.0,8.0,8.0,0.00142032,0.0011917
+2059,68.6686,0.0,0.0,37.0,75.4742,162.0,217.0,74.0,108.0,118.359,128.0,144.0,113.0,127.0,133.965,141.0,165.0,0.0,1.0,11.7872,23.0,57.0,123.0,131.029,1.38713,2.04234,1.33235,8.0,8.0,8.0,0.00125743,0.0011917
+2060,68.701967,0.0,0.0,37.0,75.5567,162.0,216.0,73.0,108.0,118.422,128.0,143.0,114.0,127.0,133.852,141.0,162.0,0.0,1.0,11.6764,23.0,60.0,123.0,131.432,1.55733,2.06486,1.37393,8.0,8.0,8.0,0.00140604,0.0011917
+2061,68.735333,0.0,0.0,37.0,75.6536,162.0,215.0,76.0,108.0,118.587,128.0,146.0,112.0,127.0,133.864,141.0,163.0,0.0,1.0,11.5235,23.0,59.0,123.0,130.725,1.31093,1.98416,1.27858,8.0,8.0,8.0,0.00140032,0.0011917
+2062,68.7687,0.0,0.0,37.0,75.4744,162.0,226.0,76.0,108.0,118.679,128.0,146.0,113.0,127.0,133.789,141.0,163.0,0.0,1.0,11.4178,23.0,56.0,123.0,130.866,1.42427,2.01345,1.34699,8.0,8.0,8.0,0.00140604,0.0011917
+2063,68.802067,0.0,0.0,37.0,75.4543,162.0,213.0,74.0,108.0,118.353,128.0,147.0,115.0,127.0,133.758,141.0,162.0,0.0,1.0,11.6866,23.0,58.0,122.0,129.041,1.60085,2.06626,1.36268,8.0,8.0,8.0,0.00139175,0.0011917
+2064,68.835433,0.0,0.0,37.0,75.5705,162.0,213.0,75.0,108.0,118.453,128.0,142.0,115.0,128.0,133.847,141.0,162.0,0.0,1.0,11.605,23.0,61.0,123.0,130.74,1.33621,2.00346,1.30178,8.0,8.0,8.0,0.00130316,0.0011917
+2065,68.8688,0.0,0.0,37.0,75.6877,163.0,213.0,73.0,108.0,118.537,128.0,148.0,113.0,127.0,133.718,141.0,162.0,0.0,1.0,11.527,23.0,59.0,122.0,130.369,1.51364,2.02848,1.35002,8.0,8.0,8.0,0.00148605,0.0011917
+2066,68.902167,0.0,0.0,37.0,75.7854,163.0,210.0,75.0,108.0,118.585,128.0,146.0,105.0,127.0,133.657,141.0,162.0,0.0,1.0,11.4547,22.0,57.0,122.0,130.379,1.32136,1.97342,1.27292,8.0,8.0,8.0,0.00146319,0.0011917
+2067,68.935533,0.0,0.0,37.0,75.3662,163.0,215.0,75.0,108.0,118.529,128.0,147.0,109.0,127.0,133.655,141.0,164.0,0.0,1.0,11.5098,23.0,59.0,122.0,130.282,1.65014,2.06135,1.37575,8.0,8.0,8.0,0.00138603,0.0011917
+2068,68.9689,0.0,0.0,37.0,75.5732,163.0,214.0,74.0,108.0,118.382,128.0,148.0,113.0,127.0,133.757,141.0,163.0,0.0,1.0,11.6268,23.0,61.0,122.0,128.912,1.53733,2.06774,1.39633,8.0,8.0,8.0,0.00148034,0.0011917
+2069,69.002267,0.0,0.0,37.0,75.5762,163.0,213.0,74.0,108.0,118.478,128.0,145.0,114.0,127.0,133.756,141.0,162.0,0.0,1.0,11.5711,23.0,55.0,122.0,129.648,1.31188,1.95169,1.277,8.0,8.0,8.0,0.00141461,0.0011917
+2070,69.035633,0.0,0.0,37.0,75.7083,163.0,213.0,73.0,108.0,118.461,128.0,146.0,114.0,127.0,133.719,141.0,164.0,0.0,1.0,11.5352,23.0,59.0,122.0,128.964,1.40142,1.99216,1.28807,8.0,8.0,8.0,0.00146605,0.0011917
+2071,69.069,0.0,0.0,37.0,75.6472,163.0,213.0,74.0,108.0,118.352,128.0,147.0,115.0,127.0,133.743,141.0,165.0,0.0,1.0,11.6724,23.0,55.0,122.0,128.76,1.39956,2.0132,1.26736,8.0,8.0,8.0,0.00151177,0.0011917
+2072,69.102367,0.0,0.0,37.0,75.5978,162.0,212.0,71.0,108.0,118.391,128.0,148.0,112.0,127.0,133.698,141.0,164.0,0.0,1.0,11.6196,23.0,58.0,122.0,129.601,1.70613,2.08885,1.38863,8.0,8.0,8.0,0.00146033,0.0011917
+2073,69.135733,0.0,0.0,37.0,75.7549,163.0,214.0,74.0,108.0,118.501,128.0,148.0,115.0,127.0,133.747,141.0,166.0,0.0,1.0,11.5333,23.0,56.0,122.0,129.627,1.50869,2.01317,1.31983,8.0,8.0,8.0,0.00147176,0.0011917
+2074,69.1691,0.0,0.0,37.0,75.846,163.0,213.0,72.0,108.0,118.495,128.0,160.0,112.0,127.0,133.716,141.0,164.0,0.0,1.0,11.5512,23.0,57.0,122.0,129.738,1.37744,1.97886,1.28326,8.0,8.0,8.0,0.0016318,0.0011917
+2075,69.202467,0.0,0.0,37.0,75.771,163.0,231.0,73.0,108.0,118.32,128.0,160.0,112.0,127.0,133.634,141.0,164.0,0.0,1.0,11.6804,23.0,58.0,121.0,128.707,1.56961,2.05071,1.36654,8.0,8.0,8.0,0.00153464,0.0011917
+2076,69.235833,0.0,0.0,37.0,75.7981,163.0,215.0,71.0,108.0,118.257,128.0,159.0,111.0,127.0,133.631,141.0,162.0,0.0,1.0,11.7071,23.0,59.0,121.0,128.315,1.36955,1.99386,1.35742,8.0,8.0,8.0,0.00138317,0.0011917
+2077,69.2692,0.0,0.0,37.0,75.8531,163.0,214.0,72.0,108.0,118.338,128.0,160.0,115.0,127.0,133.764,141.0,163.0,0.0,1.0,11.6919,23.0,57.0,122.0,129.821,1.50443,2.00774,1.37567,8.0,8.0,8.0,0.00146605,0.0011917
+2078,69.302567,0.0,0.0,37.0,75.7377,162.0,215.0,72.0,108.0,118.373,128.0,148.0,114.0,127.0,133.738,141.0,164.0,0.0,1.0,11.6405,23.0,58.0,122.0,128.871,1.51167,2.03836,1.33715,8.0,8.0,8.0,0.00146033,0.0011917
+2079,69.335933,0.0,0.0,37.0,75.6947,162.0,218.0,72.0,108.0,118.322,128.0,149.0,110.0,127.0,133.834,141.0,165.0,0.0,1.0,11.7318,23.0,56.0,122.0,130.118,1.32864,2.02036,1.32992,8.0,8.0,8.0,0.00159179,0.0011917
+2080,69.3693,0.0,0.0,37.0,75.8093,162.0,215.0,74.0,108.0,118.367,128.0,144.0,112.0,127.0,133.68,141.0,162.0,0.0,1.0,11.5866,23.0,56.0,122.0,129.321,1.67613,2.07393,1.39518,8.0,8.0,8.0,0.0014289,0.00119456
+2081,69.402667,0.0,0.0,37.0,75.7135,163.0,217.0,74.0,108.0,118.485,128.0,142.0,112.0,127.0,133.682,141.0,162.0,0.0,1.0,11.5745,23.0,55.0,122.0,130.384,1.80352,2.27316,1.60502,8.0,8.0,8.0,0.00134031,0.0011917
+2082,69.436033,0.0,0.0,37.0,75.8858,163.0,217.0,74.0,108.0,118.408,128.0,145.0,111.0,128.0,133.884,141.0,162.0,0.0,1.0,11.676,23.0,58.0,123.0,131.61,1.59887,2.08922,1.41875,8.0,8.0,8.0,0.00147176,0.0011917
+2083,69.4694,0.0,0.0,37.0,75.8225,163.0,217.0,71.0,108.0,118.212,128.0,149.0,114.0,127.0,133.88,141.0,164.0,0.0,1.0,11.8389,23.0,58.0,122.0,128.913,1.56511,2.04521,1.35337,8.0,8.0,8.0,0.00164895,0.0011917
+2084,69.502767,0.0,0.0,37.0,75.7701,163.0,215.0,76.0,108.0,118.3,128.0,146.0,114.0,128.0,133.908,141.0,163.0,0.0,1.0,11.7506,23.0,56.0,122.0,130.226,1.34886,1.96685,1.27173,8.0,8.0,8.0,0.00149749,0.0011917
+2085,69.536133,0.0,0.0,37.0,75.9166,163.0,220.0,73.0,108.0,118.317,128.0,144.0,105.0,127.0,133.74,141.0,164.0,0.0,1.0,11.6985,23.0,61.0,122.0,128.727,1.56753,2.01983,1.35692,8.0,8.0,8.0,0.00154035,0.0011917
+2086,69.5695,0.0,0.0,37.0,75.9361,163.0,215.0,72.0,108.0,118.437,128.0,143.0,106.0,127.0,133.776,141.0,162.0,0.0,1.0,11.6018,23.0,57.0,122.0,129.216,1.36946,2.00442,1.32507,8.0,8.0,8.0,0.00140604,0.0011917
+2087,69.602867,0.0,0.0,37.0,75.7376,163.0,215.0,75.0,108.0,118.441,128.0,148.0,105.0,127.0,133.758,141.0,162.0,0.0,1.0,11.6115,23.0,57.0,122.0,129.803,1.5947,2.00624,1.31387,8.0,8.0,8.0,0.0014832,0.0011917
+2088,69.636233,0.0,0.0,37.0,75.8393,163.0,215.0,75.0,108.0,118.357,128.0,154.0,111.0,127.0,133.84,141.0,163.0,0.0,1.0,11.6541,23.0,58.0,122.0,129.353,1.6,2.00601,1.30157,8.0,8.0,8.0,0.00153749,0.0011917
+2089,69.6696,0.0,0.0,37.0,75.9442,163.0,215.0,75.0,108.0,118.296,128.0,142.0,115.0,128.0,133.904,141.0,163.0,0.0,1.0,11.7739,23.0,60.0,122.0,130.153,1.33945,1.98117,1.28022,8.0,8.0,8.0,0.00166038,0.0011917
+2090,69.702967,0.0,0.0,37.0,75.8805,163.0,213.0,74.0,108.0,118.381,128.0,144.0,110.0,127.0,133.777,141.0,162.0,0.0,1.0,11.6486,23.0,60.0,122.0,129.559,1.55627,2.0591,1.32262,8.0,8.0,8.0,0.00134316,0.0011917
+2091,69.736333,0.0,0.0,37.0,75.7993,163.0,214.0,75.0,108.0,118.322,128.0,148.0,112.0,127.0,133.849,141.0,161.0,0.0,1.0,11.7019,23.0,57.0,122.0,128.483,1.31617,1.89096,1.22535,8.0,8.0,8.0,0.0014289,0.0011917
+2092,69.7697,0.0,0.0,38.0,76.2107,163.0,235.0,75.0,108.0,118.497,129.0,146.0,114.0,128.0,133.821,141.0,162.0,0.0,1.0,11.6202,23.0,55.0,123.0,134.147,1.51521,1.92607,1.28361,8.0,8.0,8.0,0.00143747,0.0011917
+2093,69.803067,0.0,0.0,61.0,132.96,192.0,230.0,75.0,125.0,127.779,130.0,140.0,115.0,126.0,127.871,130.0,136.0,0.0,0.0,1.9505,4.0,54.0,180.0,158.359,87.2254,9.99641,6.50146,8.0,8.0,8.0,0.00525549,0.00123171
+2094,69.836433,0.0,0.0,62.0,132.957,192.0,230.0,76.0,126.0,127.766,130.0,140.0,116.0,126.0,127.87,129.0,136.0,0.0,0.0,1.7923,3.0,52.0,180.0,156.109,1.76833,1.90479,1.19815,8.0,8.0,8.0,0.00508116,0.00124028
+2095,69.8698,0.0,0.0,62.0,132.61,192.0,225.0,77.0,126.0,127.773,130.0,139.0,116.0,126.0,127.874,129.0,137.0,0.0,1.0,1.87147,4.0,52.0,180.0,158.352,1.90589,1.88612,1.17349,8.0,8.0,8.0,0.00519833,0.00121171
+2096,69.903167,0.0,0.0,62.0,132.759,192.0,234.0,73.0,126.0,127.778,130.0,143.0,116.0,126.0,127.899,129.0,136.0,0.0,1.0,1.83258,4.0,55.0,180.0,158.046,1.24158,1.79856,1.11986,8.0,8.0,8.0,0.00519262,0.00121456
+2097,69.936533,0.0,0.0,61.0,132.477,192.0,226.0,77.0,126.0,127.806,130.0,140.0,116.0,126.0,127.843,129.0,137.0,0.0,0.0,1.93444,4.0,52.0,180.0,158.262,2.16868,1.89143,1.21923,8.0,8.0,8.0,0.00506973,0.00121456
+2098,69.9699,0.0,0.0,61.0,132.649,192.0,224.0,77.0,126.0,127.808,130.0,141.0,116.0,126.0,127.898,129.0,138.0,0.0,0.0,1.79345,4.0,52.0,180.0,158.085,1.77887,1.87548,1.2415,8.0,8.0,8.0,0.0049497,0.00121742
+2099,70.003267,0.0,0.0,62.0,132.669,192.0,213.0,76.0,126.0,127.843,130.0,143.0,116.0,126.0,127.859,129.0,136.0,0.0,0.0,1.79704,3.0,52.0,180.0,158.073,1.57201,1.79547,1.16184,8.0,8.0,8.0,0.00435814,0.00120885
+2100,70.036633,0.0,0.0,62.0,132.908,192.0,233.0,76.0,126.0,127.771,130.0,142.0,116.0,126.0,127.855,129.0,137.0,0.0,0.0,1.82147,4.0,53.0,180.0,156.308,1.80408,1.89183,1.20438,8.0,8.0,8.0,0.00527549,0.00121456
+2101,70.07,0.0,0.0,62.0,132.997,192.0,234.0,72.0,126.0,127.798,130.0,140.0,116.0,126.0,127.871,130.0,136.0,0.0,0.0,1.91994,4.0,56.0,180.0,159.737,1.47715,1.91303,1.21232,8.0,8.0,8.0,0.00518976,0.00120885
+2102,70.103367,0.0,0.0,62.0,132.76,192.0,213.0,76.0,126.0,127.815,130.0,142.0,116.0,126.0,127.874,129.0,137.0,0.0,1.0,1.80969,3.0,52.0,180.0,158.937,1.89598,1.92337,1.22377,8.0,8.0,8.0,0.00500972,0.00120885
+2103,70.136733,0.0,0.0,62.0,133.074,193.0,231.0,76.0,126.0,127.803,130.0,140.0,117.0,126.0,127.868,129.0,136.0,0.0,1.0,1.84058,4.0,52.0,180.0,156.461,1.55285,1.8664,1.15816,8.0,8.0,8.0,0.00525263,0.00120599
+2104,70.1701,0.0,0.0,62.0,132.951,192.0,234.0,76.0,126.0,127.792,130.0,141.0,117.0,126.0,127.878,129.0,136.0,0.0,0.0,1.80479,3.0,52.0,180.0,157.594,1.52451,1.82902,1.11762,8.0,8.0,8.0,0.0048011,0.00121171
+2105,70.203467,0.0,0.0,61.0,132.825,192.0,234.0,76.0,125.0,127.795,130.0,140.0,116.0,126.0,127.856,130.0,137.0,0.0,1.0,1.96964,4.0,53.0,180.0,158.515,2.04421,1.9745,1.29749,8.0,8.0,8.0,0.00464106,0.00120885
+2106,70.236833,0.0,0.0,61.0,132.961,192.0,233.0,76.0,126.0,127.762,130.0,140.0,116.0,126.0,127.886,129.0,142.0,0.0,1.0,1.83262,4.0,52.0,165.0,156.436,1.7342,1.98557,1.28735,8.0,8.0,8.0,0.0052069,0.00121456
+2107,70.2702,0.0,0.0,62.0,132.846,192.0,232.0,73.0,126.0,127.78,130.0,147.0,114.0,126.0,127.862,129.0,139.0,0.0,1.0,1.83995,4.0,55.0,180.0,156.682,1.48339,1.87159,1.16744,8.0,8.0,8.0,0.00503829,0.00123171
+2108,70.303567,0.0,0.0,62.0,132.988,193.0,211.0,73.0,126.0,127.792,130.0,140.0,115.0,126.0,127.875,129.0,139.0,0.0,1.0,1.82361,3.0,55.0,180.0,158.139,1.66818,1.83301,1.13262,8.0,8.0,8.0,0.00495542,0.00121742
+2109,70.336933,0.0,0.0,61.0,132.95,192.0,232.0,76.0,125.0,127.813,130.0,140.0,116.0,126.0,127.834,129.0,137.0,0.0,1.0,1.92122,4.0,52.0,180.0,158.685,1.48222,1.84576,1.16574,8.0,8.0,8.0,0.00504115,0.00120599
+2110,70.3703,0.0,0.0,61.0,132.816,192.0,226.0,74.0,126.0,127.823,130.0,143.0,116.0,126.0,127.881,129.0,137.0,0.0,0.0,1.77625,3.0,54.0,180.0,158.598,1.6913,1.90233,1.23198,8.0,8.0,8.0,0.00507259,0.00120599
+2111,70.403667,0.0,0.0,61.0,132.669,192.0,214.0,76.0,126.0,127.794,130.0,140.0,115.0,126.0,127.897,129.0,136.0,0.0,1.0,1.84064,4.0,52.0,180.0,158.238,1.31653,1.80778,1.12633,8.0,8.0,8.0,0.00477824,0.00120885
+2112,70.437033,0.0,0.0,61.0,132.331,192.0,233.0,72.0,126.0,127.85,130.0,141.0,112.0,126.0,127.879,129.0,147.0,0.0,0.0,1.79841,3.0,57.0,180.0,160.1,1.88732,1.84993,1.19266,8.0,8.0,8.0,0.00506973,0.00121456
+2113,70.4704,0.0,0.0,61.0,132.522,192.0,232.0,76.0,125.0,127.754,130.0,140.0,115.0,126.0,127.867,130.0,137.0,0.0,0.0,1.92519,4.0,53.0,180.0,157.968,1.59163,1.8309,1.19853,8.0,8.0,8.0,0.0051869,0.00121171
+2114,70.503767,0.0,0.0,61.0,132.437,192.0,233.0,76.0,126.0,127.819,130.0,140.0,115.0,126.0,127.899,129.0,135.0,0.0,0.0,1.78091,3.0,53.0,180.0,157.777,1.38825,1.82626,1.15447,8.0,8.0,8.0,0.0048954,0.00121171
+2115,70.537133,0.0,0.0,61.0,132.422,192.0,233.0,76.0,126.0,127.806,130.0,142.0,115.0,126.0,127.856,129.0,136.0,0.0,0.0,1.82974,4.0,53.0,180.0,156.322,1.95697,1.91276,1.20107,8.0,8.0,8.0,0.00406093,0.00121171
+2116,70.5705,0.0,0.0,61.0,132.514,192.0,232.0,76.0,126.0,127.801,130.0,143.0,115.0,126.0,127.887,129.0,138.0,0.0,0.0,1.76147,3.0,53.0,180.0,157.182,1.78188,1.88288,1.17754,8.0,8.0,8.0,0.00483539,0.00121171
+2117,70.603867,0.0,0.0,61.0,132.069,192.0,232.0,76.0,125.0,127.803,130.0,140.0,115.0,126.0,127.85,129.0,138.0,0.0,1.0,1.92868,4.0,53.0,180.0,159.306,2.06985,1.87175,1.17985,8.0,8.0,8.0,0.00515546,0.00120885
+2118,70.637233,0.0,0.0,61.0,132.538,192.0,211.0,76.0,126.0,127.812,130.0,142.0,115.0,126.0,127.87,129.0,140.0,0.0,1.0,1.78995,3.0,52.0,180.0,158.973,1.84104,1.90847,1.19106,8.0,8.0,8.0,0.00498685,0.00121456
+2119,70.6706,0.0,0.0,61.0,132.384,192.0,232.0,76.0,126.0,127.845,130.0,140.0,115.0,126.0,127.859,129.0,136.0,0.0,0.0,1.79701,3.0,52.0,180.0,158.643,1.35112,1.81233,1.12547,8.0,8.0,8.0,0.00472394,0.00120885
+2120,70.703967,0.0,0.0,61.0,132.584,192.0,233.0,76.0,126.0,127.815,130.0,141.0,115.0,126.0,127.858,129.0,136.0,0.0,0.0,1.76935,3.0,52.0,180.0,157.658,1.71918,1.79526,1.1416,8.0,8.0,8.0,0.00498971,0.00121171
+2121,70.737333,0.0,0.0,61.0,132.643,192.0,241.0,76.0,125.0,127.778,130.0,141.0,115.0,126.0,127.835,129.0,137.0,0.0,1.0,1.93456,4.0,53.0,180.0,157.186,1.57413,1.82469,1.16862,8.0,8.0,8.0,0.0052612,0.00121456
+2122,70.7707,0.0,0.0,61.0,132.352,192.0,231.0,76.0,126.0,127.858,130.0,141.0,115.0,126.0,127.909,129.0,145.0,0.0,0.0,1.72091,3.0,52.0,180.0,160.543,2.76202,1.92299,1.19144,8.0,8.0,8.0,0.00544124,0.00121742
+2123,70.804067,0.0,0.0,61.0,132.637,192.0,232.0,76.0,126.0,127.823,130.0,142.0,115.0,126.0,127.876,129.0,146.0,0.0,0.0,1.76363,3.0,52.0,180.0,157.092,2.31367,1.80849,1.14206,8.0,8.0,8.0,0.00487826,0.001246
+2124,70.837433,0.0,0.0,61.0,132.614,192.0,226.0,77.0,126.0,127.757,130.0,139.0,115.0,126.0,127.885,129.0,139.0,0.0,0.0,1.69646,3.0,51.0,161.0,154.622,1.58579,1.72873,1.08245,8.0,8.0,8.0,0.0046382,0.00122885
+2125,70.8708,0.0,0.0,61.0,132.638,192.0,225.0,71.0,125.0,127.782,130.0,141.0,115.0,126.0,127.916,130.0,137.0,0.0,0.0,1.92606,4.0,57.0,180.0,158.817,2.22932,1.93035,1.25303,8.0,8.0,8.0,0.00396376,0.00123171
+2126,70.904167,0.0,0.0,61.0,132.815,192.0,231.0,76.0,126.0,127.795,130.0,142.0,115.0,126.0,127.899,129.0,137.0,0.0,0.0,1.77643,3.0,53.0,180.0,157.637,1.8968,1.92875,1.26358,8.0,8.0,8.0,0.0050783,0.00120885
+2127,70.937533,0.0,0.0,61.0,132.398,192.0,230.0,63.0,126.0,127.731,130.0,142.0,113.0,126.0,127.857,129.0,136.0,0.0,0.0,1.8139,4.0,66.0,153.0,155.225,1.86126,1.85916,1.15789,8.0,8.0,8.0,0.00480681,0.00121171
+2128,70.9709,0.0,0.0,61.0,132.492,192.0,234.0,75.0,126.0,127.811,130.0,141.0,115.0,126.0,127.922,129.0,136.0,0.0,0.0,1.82202,4.0,54.0,180.0,160.268,1.57741,1.88781,1.14479,8.0,8.0,8.0,0.00523262,0.00120885
+2129,71.004267,0.0,0.0,61.0,132.387,192.0,212.0,75.0,126.0,127.812,130.0,144.0,114.0,126.0,127.86,129.0,137.0,0.0,0.0,1.92055,4.0,54.0,180.0,158.614,1.39446,1.8707,1.16457,8.0,8.0,8.0,0.00512403,0.00120885
+2130,71.037633,0.0,0.0,61.0,132.492,192.0,234.0,75.0,126.0,127.842,130.0,140.0,114.0,126.0,127.899,129.0,136.0,0.0,0.0,1.77099,3.0,54.0,180.0,160.348,1.87653,1.92011,1.241,8.0,8.0,8.0,0.00442673,0.00121171
+2131,71.071,0.0,0.0,61.0,132.576,192.0,232.0,74.0,126.0,127.838,130.0,139.0,114.0,126.0,127.871,129.0,138.0,0.0,0.0,1.77925,3.0,55.0,180.0,159.222,1.61752,1.81469,1.13044,8.0,8.0,8.0,0.00497828,0.00121171
+2132,71.104367,0.0,0.0,61.0,132.233,192.0,230.0,74.0,126.0,127.849,130.0,144.0,114.0,126.0,127.887,129.0,136.0,0.0,0.0,1.76854,3.0,55.0,180.0,160.218,1.91724,1.84346,1.13273,8.0,8.0,8.0,0.00490112,0.00121171
+2133,71.137733,0.0,0.0,61.0,132.348,192.0,235.0,75.0,125.0,127.784,130.0,143.0,114.0,126.0,127.878,130.0,140.0,0.0,1.0,1.92996,4.0,54.0,180.0,158.625,2.58071,1.92134,1.19762,8.0,8.0,8.0,0.00539266,0.00120313
+2134,71.1711,0.0,0.0,61.0,132.435,192.0,239.0,72.0,126.0,127.829,130.0,141.0,114.0,126.0,127.88,129.0,137.0,0.0,0.0,1.74625,3.0,57.0,180.0,157.776,1.59964,1.79857,1.17532,8.0,8.0,8.0,0.00444102,0.00120885
+2135,71.204467,0.0,0.0,61.0,132.477,192.0,239.0,74.0,126.0,127.822,130.0,139.0,114.0,126.0,127.897,129.0,150.0,0.0,0.0,1.81217,4.0,55.0,180.0,159.069,1.75604,1.81008,1.20528,8.0,8.0,8.0,0.00503258,0.00121171
+2136,71.237833,0.0,0.0,61.0,132.621,192.0,231.0,70.0,126.0,127.776,130.0,145.0,114.0,126.0,127.893,129.0,148.0,0.0,1.0,1.77378,3.0,58.0,180.0,156.667,1.39827,1.82358,1.16631,8.0,8.0,8.0,0.00502686,0.00120599
+2137,71.2712,0.0,0.0,61.0,132.447,192.0,226.0,69.0,126.0,127.813,130.0,141.0,115.0,126.0,127.857,130.0,143.0,0.0,1.0,1.94383,4.0,59.0,180.0,159.63,1.93566,1.91099,1.23328,8.0,8.0,8.0,0.00498685,0.00120599
+2138,71.304567,0.0,0.0,61.0,132.407,192.0,221.0,70.0,126.0,127.811,130.0,142.0,114.0,126.0,127.855,129.0,143.0,0.0,0.0,1.78275,3.0,58.0,180.0,158.015,1.76005,1.87796,1.24491,8.0,8.0,8.0,0.00502972,0.00120599
+2139,71.337933,0.0,0.0,61.0,132.336,192.0,235.0,72.0,126.0,127.84,130.0,140.0,115.0,126.0,127.859,129.0,153.0,0.0,1.0,1.84877,4.0,56.0,180.0,160.176,1.31945,1.80048,1.1207,8.0,8.0,8.0,0.00504115,0.00120599
+2140,71.3713,0.0,0.0,61.0,132.547,192.0,215.0,72.0,126.0,127.813,130.0,139.0,115.0,126.0,127.893,129.0,153.0,0.0,0.0,1.79935,3.0,56.0,180.0,159.082,1.87785,1.86829,1.20072,8.0,8.0,8.0,0.00421525,0.00120313
+2141,71.404667,0.0,0.0,61.0,132.643,192.0,209.0,66.0,125.0,127.768,130.0,140.0,113.0,126.0,127.868,130.0,141.0,0.0,1.0,1.94474,4.0,62.0,180.0,157.901,1.72507,1.88592,1.25543,8.0,8.0,8.0,0.0051326,0.00120885
+2142,71.438033,0.0,0.0,61.0,132.581,192.0,229.0,68.0,126.0,127.852,130.0,140.0,115.0,126.0,127.904,129.0,142.0,0.0,0.0,1.75622,3.0,60.0,180.0,159.587,1.85334,1.84132,1.2219,8.0,8.0,8.0,0.0048011,0.00120599
+2143,71.4714,0.0,0.0,61.0,132.632,192.0,237.0,68.0,126.0,127.797,130.0,140.0,114.0,126.0,127.913,129.0,144.0,0.0,0.0,1.79392,3.0,60.0,180.0,159.02,1.80761,1.80291,1.13082,8.0,8.0,8.0,0.00495256,0.00120885
+2144,71.504767,0.0,0.0,61.0,132.725,192.0,233.0,60.0,126.0,127.803,130.0,142.0,115.0,126.0,127.926,129.0,143.0,0.0,0.0,1.78323,3.0,68.0,180.0,159.138,1.35541,1.79722,1.11847,8.0,8.0,8.0,0.00503829,0.00120599
+2145,71.538133,0.0,0.0,61.0,132.745,192.0,238.0,70.0,126.0,127.84,130.0,141.0,110.0,126.0,127.895,129.0,137.0,0.0,0.0,1.90229,4.0,60.0,180.0,161.364,1.60969,1.89816,1.20088,8.0,8.0,8.0,0.004984,0.00120599
+2146,71.5715,0.0,0.0,61.0,132.923,193.0,232.0,63.0,126.0,127.759,130.0,140.0,114.0,126.0,127.877,129.0,136.0,0.0,0.0,1.79487,3.0,66.0,180.0,157.305,1.32325,1.8414,1.15246,8.0,8.0,8.0,0.00517261,0.00120313
+2147,71.604867,0.0,0.0,61.0,132.464,192.0,224.0,72.0,126.0,127.826,130.0,142.0,114.0,126.0,127.877,129.0,143.0,0.0,0.0,1.7822,3.0,56.0,180.0,159.243,2.06808,1.87418,1.17221,8.0,8.0,8.0,0.00518404,0.00121456
+2148,71.638233,0.0,0.0,61.0,132.712,193.0,233.0,73.0,126.0,127.79,130.0,142.0,113.0,126.0,127.911,129.0,143.0,0.0,0.0,1.73417,3.0,55.0,180.0,157.373,2.20129,1.80789,1.12244,8.0,8.0,8.0,0.00485825,0.00121171
+2149,71.6716,0.0,0.0,61.0,132.686,192.0,233.0,63.0,126.0,127.828,130.0,147.0,115.0,126.0,127.882,129.0,137.0,0.0,1.0,1.87621,4.0,65.0,180.0,159.091,1.7536,1.8454,1.15854,8.0,8.0,8.0,0.00399234,0.00120599
+2150,71.704967,0.0,0.0,61.0,132.753,192.0,231.0,73.0,126.0,127.821,130.0,142.0,114.0,126.0,127.879,129.0,135.0,0.0,0.0,1.76174,3.0,56.0,180.0,158.635,1.96443,1.93137,1.19955,8.0,8.0,8.0,0.00487826,0.00120599
+2151,71.738333,0.0,0.0,61.0,132.889,193.0,210.0,73.0,126.0,127.846,130.0,139.0,114.0,126.0,127.909,129.0,135.0,0.0,0.0,1.78235,3.0,56.0,180.0,161.151,1.36834,1.79347,1.06711,8.0,8.0,8.0,0.00472108,0.00120599
+2152,71.7717,0.0,0.0,61.0,132.785,193.0,230.0,73.0,126.0,127.851,130.0,142.0,114.0,126.0,127.935,129.0,136.0,0.0,0.0,1.77428,3.0,56.0,180.0,160.07,1.72159,1.79431,1.11399,8.0,8.0,8.0,0.00487826,0.00120313
+2153,71.805067,0.0,0.0,61.0,132.358,192.0,210.0,70.0,126.0,127.794,130.0,141.0,116.0,126.0,127.904,130.0,137.0,0.0,1.0,1.93735,4.0,59.0,180.0,158.772,1.73929,1.88363,1.19606,8.0,8.0,8.0,0.00504687,0.00120885
+2154,71.838433,0.0,0.0,61.0,132.607,192.0,228.0,72.0,126.0,127.808,130.0,142.0,117.0,126.0,127.899,129.0,136.0,0.0,0.0,1.80016,3.0,56.0,180.0,158.914,1.32008,1.83097,1.15181,8.0,8.0,8.0,0.00503544,0.00121742
+2155,71.8718,0.0,0.0,61.0,132.671,192.0,232.0,73.0,126.0,127.816,130.0,145.0,116.0,126.0,127.885,129.0,136.0,0.0,0.0,1.81663,4.0,55.0,180.0,158.718,1.9201,1.93538,1.18999,8.0,8.0,8.0,0.00422668,0.00120313
+2156,71.905167,0.0,0.0,61.0,132.814,192.0,235.0,73.0,126.0,127.77,130.0,140.0,115.0,126.0,127.89,129.0,137.0,0.0,0.0,1.78784,3.0,56.0,180.0,155.803,1.77094,1.87047,1.14472,8.0,8.0,8.0,0.00541838,0.00120599
+2157,71.938533,0.0,0.0,61.0,132.635,192.0,230.0,72.0,125.0,127.809,130.0,143.0,115.0,126.0,127.854,130.0,136.0,0.0,1.0,1.93221,4.0,57.0,180.0,159.689,2.01659,1.91075,1.23875,8.0,8.0,8.0,0.00522691,0.00120313
+2158,71.9719,0.0,0.0,61.0,132.819,193.0,220.0,74.0,126.0,127.829,130.0,139.0,115.0,126.0,127.89,129.0,137.0,0.0,0.0,1.73939,3.0,55.0,180.0,158.242,3.26107,1.90103,1.24057,8.0,8.0,8.0,0.00484396,0.00121171
+2159,72.005267,0.0,0.0,61.0,132.734,193.0,238.0,74.0,126.0,127.771,130.0,142.0,115.0,126.0,127.889,129.0,138.0,0.0,0.0,1.76896,3.0,55.0,180.0,156.658,1.89824,1.83107,1.14352,8.0,8.0,8.0,0.00459534,0.00120885
+2160,72.038633,0.0,0.0,61.0,132.734,192.0,233.0,72.0,126.0,127.866,130.0,145.0,115.0,126.0,127.91,129.0,141.0,0.0,0.0,1.79775,3.0,57.0,180.0,160.635,2.09959,1.94462,1.21887,8.0,8.0,8.0,0.0051326,0.00122028
+2161,72.072,0.0,0.0,61.0,132.857,193.0,213.0,70.0,125.0,127.786,130.0,142.0,116.0,126.0,127.879,129.0,150.0,0.0,0.0,1.9277,4.0,58.0,180.0,159.007,1.51493,1.91495,1.18533,8.0,8.0,8.0,0.00498114,0.00120885
+2162,72.105367,0.0,0.0,61.0,132.802,192.0,228.0,63.0,126.0,127.848,130.0,144.0,114.0,126.0,127.926,129.0,150.0,0.0,0.0,1.78369,3.0,65.0,180.0,160.596,1.75957,1.9171,1.20979,8.0,8.0,8.0,0.0053155,0.00120599
+2163,72.138733,0.0,0.0,61.0,132.846,193.0,217.0,72.0,126.0,127.822,130.0,140.0,115.0,126.0,127.907,129.0,147.0,0.0,0.0,1.81671,4.0,57.0,180.0,159.854,1.43958,1.82725,1.12814,8.0,8.0,8.0,0.0049297,0.00120885
+2164,72.1721,0.0,0.0,61.0,132.76,192.0,234.0,74.0,126.0,127.815,130.0,141.0,115.0,126.0,127.91,129.0,137.0,0.0,0.0,1.77131,3.0,55.0,180.0,158.534,1.26614,1.77557,1.08,8.0,8.0,8.0,0.00503544,0.00121742
+2165,72.205467,0.0,0.0,61.0,132.645,192.0,236.0,74.0,125.0,127.779,130.0,145.0,115.0,126.0,127.89,130.0,137.0,0.0,1.0,1.95793,4.0,55.0,180.0,159.108,2.18977,1.99415,1.27318,8.0,8.0,8.0,0.0038123,0.00120599
+2166,72.238833,0.0,0.0,61.0,132.809,193.0,232.0,75.0,126.0,127.82,130.0,141.0,115.0,126.0,127.863,129.0,137.0,0.0,1.0,1.80171,3.0,54.0,180.0,158.568,2.01545,2.00231,1.30118,8.0,8.0,8.0,0.00511545,0.00120599
+2167,72.2722,0.0,0.0,61.0,132.555,192.0,210.0,75.0,126.0,127.787,130.0,139.0,115.0,126.0,127.921,129.0,136.0,0.0,1.0,1.80409,3.0,54.0,180.0,158.727,1.58222,1.84112,1.15877,8.0,8.0,8.0,0.00510688,0.00120313
+2168,72.305567,0.0,0.0,61.0,132.779,192.0,233.0,75.0,126.0,127.815,130.0,141.0,115.0,126.0,127.882,129.0,137.0,0.0,0.0,1.77545,3.0,54.0,180.0,158.189,1.49629,1.82374,1.09474,8.0,8.0,8.0,0.00492684,0.00120885
+2169,72.338933,0.0,0.0,61.0,132.637,192.0,230.0,75.0,126.0,127.772,130.0,142.0,115.0,126.0,127.865,129.0,137.0,0.0,0.0,1.85666,4.0,54.0,180.0,156.492,1.26118,1.75942,1.09418,8.0,8.0,8.0,0.00514975,0.00121456
+2170,72.3723,0.0,0.0,61.0,132.682,192.0,232.0,76.0,126.0,127.825,130.0,139.0,115.0,126.0,127.917,129.0,137.0,0.0,0.0,1.62411,3.0,53.0,180.0,158.227,1.53916,1.70214,1.10165,8.0,8.0,8.0,0.00529264,0.00121742
+2171,72.405667,0.0,0.0,61.0,132.66,192.0,233.0,76.0,126.0,127.814,130.0,140.0,116.0,126.0,127.915,129.0,136.0,0.0,0.0,1.6574,3.0,53.0,180.0,157.758,1.29355,1.58059,0.979618,8.0,8.0,8.0,0.00503544,0.00121171
+2172,72.439033,0.0,0.0,61.0,132.313,192.0,235.0,76.0,126.0,127.836,130.0,139.0,115.0,127.0,127.916,129.0,137.0,0.0,0.0,1.60794,3.0,53.0,180.0,159.014,2.29941,1.6517,1.0333,8.0,8.0,8.0,0.00508688,0.00120313
+2173,72.4724,0.0,0.0,61.0,132.404,192.0,212.0,76.0,126.0,127.771,130.0,138.0,115.0,126.0,127.91,129.0,138.0,0.0,0.0,1.76866,4.0,53.0,180.0,156.42,1.86668,1.67281,1.06922,8.0,8.0,8.0,0.00487254,0.00120599
+2174,72.505767,0.0,0.0,61.0,132.49,192.0,236.0,76.0,126.0,127.807,130.0,139.0,116.0,127.0,127.909,129.0,136.0,0.0,0.0,1.63523,3.0,53.0,180.0,156.209,1.50113,1.64113,1.04246,8.0,8.0,8.0,0.0050583,0.00120885
+2175,72.539133,0.0,0.0,61.0,132.609,192.0,233.0,76.0,126.0,127.765,130.0,142.0,116.0,126.0,127.903,129.0,138.0,0.0,0.0,1.65866,3.0,53.0,180.0,155.393,1.93064,1.72467,1.06363,8.0,8.0,8.0,0.00427241,0.00121171
+2176,72.5725,0.0,0.0,61.0,132.717,192.0,227.0,75.0,126.0,127.819,130.0,140.0,116.0,126.0,127.884,129.0,137.0,0.0,0.0,1.64138,3.0,53.0,180.0,156.404,1.72704,1.69612,1.03241,8.0,8.0,8.0,0.00508116,0.00121171
+2177,72.605867,0.0,0.0,61.0,132.569,192.0,226.0,76.0,126.0,127.786,130.0,140.0,116.0,126.0,127.876,129.0,137.0,0.0,0.0,1.76519,4.0,53.0,180.0,157.543,2.01195,1.6841,1.06409,8.0,8.0,8.0,0.00514689,0.00120885
+2178,72.639233,0.0,0.0,61.0,132.583,192.0,232.0,76.0,126.0,127.813,130.0,139.0,116.0,126.0,127.879,129.0,136.0,0.0,0.0,1.64095,3.0,53.0,180.0,157.281,1.67363,1.68971,1.07295,8.0,8.0,8.0,0.00497257,0.00120599
+2179,72.6726,0.0,0.0,61.0,132.583,192.0,232.0,76.0,126.0,127.79,130.0,138.0,116.0,126.0,127.879,129.0,137.0,0.0,0.0,1.68065,3.0,53.0,180.0,156.021,1.30705,1.64969,0.998937,8.0,8.0,8.0,0.00506401,0.00121456
+2180,72.705967,0.0,0.0,61.0,132.639,192.0,229.0,76.0,126.0,127.808,130.0,139.0,116.0,127.0,127.93,129.0,136.0,0.0,0.0,1.64642,3.0,52.0,180.0,158.053,1.6217,1.68089,1.03203,8.0,8.0,8.0,0.00445816,0.00121171
+2181,72.739333,0.0,0.0,61.0,132.742,192.0,235.0,76.0,126.0,127.802,130.0,139.0,116.0,126.0,127.913,129.0,137.0,0.0,0.0,1.77572,4.0,53.0,180.0,158.645,1.46331,1.68173,1.04287,8.0,8.0,8.0,0.00490969,0.00121456
+2182,72.7727,0.0,0.0,61.0,132.474,192.0,227.0,69.0,126.0,127.819,130.0,138.0,116.0,127.0,127.908,129.0,135.0,0.0,0.0,1.58402,3.0,59.0,180.0,157.565,1.7307,1.70154,1.06767,8.0,8.0,8.0,0.00490969,0.00120599
+2183,72.806067,0.0,0.0,61.0,132.652,192.0,212.0,72.0,126.0,127.799,130.0,139.0,116.0,126.0,127.89,129.0,147.0,0.0,0.0,1.67673,3.0,56.0,180.0,157.163,2.44951,1.63533,1.01695,8.0,8.0,8.0,0.0049297,0.00120599
+2184,72.839433,0.0,0.0,61.0,132.732,192.0,234.0,69.0,126.0,127.781,130.0,138.0,115.0,127.0,127.902,129.0,135.0,0.0,0.0,1.6005,3.0,59.0,180.0,155.632,1.63353,1.6115,0.983333,8.0,8.0,8.0,0.00486683,0.00120885
+2185,72.8728,0.0,0.0,61.0,132.631,192.0,235.0,71.0,126.0,127.713,130.0,140.0,117.0,126.0,127.874,129.0,135.0,0.0,0.0,1.78141,4.0,57.0,158.0,154.614,1.88651,1.71175,1.09057,8.0,8.0,8.0,0.00473823,0.00120885
+2186,72.906167,0.0,0.0,61.0,132.793,192.0,228.0,76.0,126.0,127.802,130.0,144.0,116.0,127.0,127.901,129.0,136.0,0.0,0.0,1.60767,3.0,52.0,180.0,155.632,1.46524,1.66131,1.06081,8.0,8.0,8.0,0.00534408,0.00120885
+2187,72.939533,0.0,0.0,61.0,132.459,192.0,233.0,76.0,126.0,127.784,130.0,138.0,116.0,126.0,127.887,129.0,136.0,0.0,0.0,1.66551,3.0,52.0,180.0,156.909,1.65396,1.63045,1.00741,8.0,8.0,8.0,0.00499257,0.00121456
+2188,72.9729,0.0,0.0,61.0,132.663,192.0,234.0,78.0,126.0,127.825,130.0,138.0,116.0,127.0,127.917,129.0,138.0,0.0,0.0,1.62827,3.0,51.0,180.0,158.533,1.48651,1.62929,1.00237,8.0,8.0,8.0,0.00523834,0.00120599
+2189,73.006267,0.0,0.0,61.0,132.567,192.0,231.0,76.0,126.0,127.783,130.0,139.0,117.0,126.0,127.879,129.0,135.0,0.0,0.0,1.75793,3.0,52.0,180.0,156.494,1.35798,1.63947,0.989175,8.0,8.0,8.0,0.00525263,0.00121171
+2190,73.039633,0.0,0.0,61.0,132.717,192.0,231.0,78.0,126.0,127.815,130.0,141.0,117.0,126.0,127.896,129.0,136.0,0.0,0.0,1.65869,3.0,51.0,180.0,157.417,1.56834,1.72582,1.07833,8.0,8.0,8.0,0.0049297,0.00121171
+2191,73.073,0.0,0.0,61.0,132.692,192.0,232.0,79.0,126.0,127.787,130.0,142.0,116.0,126.0,127.912,129.0,142.0,0.0,0.0,1.68165,3.0,50.0,180.0,157.23,1.35988,1.63523,1.01741,8.0,8.0,8.0,0.00502115,0.00120885
+2192,73.106367,0.0,0.0,61.0,132.345,192.0,231.0,76.0,126.0,127.825,130.0,141.0,116.0,126.0,127.896,129.0,137.0,0.0,0.0,1.63304,3.0,52.0,180.0,157.745,1.65883,1.6534,1.04452,8.0,8.0,8.0,0.004984,0.00122314
+2193,73.139733,0.0,0.0,61.0,132.82,193.0,230.0,76.0,126.0,127.785,130.0,140.0,116.0,126.0,127.87,129.0,137.0,0.0,0.0,1.80232,4.0,52.0,180.0,157.838,1.57615,1.70833,1.06899,8.0,8.0,8.0,0.005004,0.00122314
+2194,73.1731,0.0,0.0,61.0,132.782,192.0,235.0,76.0,126.0,127.823,130.0,140.0,116.0,126.0,127.91,129.0,137.0,0.0,0.0,1.65582,3.0,52.0,180.0,158.366,1.34749,1.70346,1.05341,8.0,8.0,8.0,0.00501257,0.00121742
+2195,73.206467,0.0,0.0,61.0,132.864,193.0,210.0,76.0,126.0,127.762,130.0,140.0,116.0,126.0,127.895,129.0,139.0,0.0,0.0,1.67522,3.0,52.0,180.0,155.151,1.48688,1.66813,1.03201,8.0,8.0,8.0,0.00530979,0.00121456
+2196,73.239833,0.0,0.0,61.0,132.895,193.0,231.0,75.0,126.0,127.824,130.0,141.0,116.0,126.0,127.896,129.0,137.0,0.0,0.0,1.6373,3.0,53.0,180.0,157.472,1.29921,1.59627,0.947554,8.0,8.0,8.0,0.00523262,0.00120885
+2197,73.2732,0.0,0.0,61.0,132.282,192.0,210.0,72.0,126.0,127.822,130.0,139.0,112.0,126.0,127.85,129.0,147.0,0.0,0.0,1.77141,4.0,56.0,180.0,157.53,2.5913,1.71576,1.09675,8.0,8.0,8.0,0.00471536,0.00120885
+2198,73.306567,0.0,0.0,61.0,132.582,192.0,233.0,73.0,126.0,127.829,130.0,139.0,115.0,126.0,127.876,129.0,148.0,0.0,0.0,1.60657,3.0,55.0,180.0,156.742,2.12645,1.63145,1.06758,8.0,8.0,8.0,0.00506687,0.00122028
+2199,73.339933,0.0,0.0,61.0,132.629,192.0,214.0,78.0,126.0,127.771,130.0,139.0,113.0,126.0,127.903,129.0,148.0,0.0,0.0,1.64342,3.0,50.0,180.0,155.38,1.44572,1.57583,0.976177,8.0,8.0,8.0,0.00503544,0.00121171
+2200,73.3733,0.0,0.0,61.0,132.604,192.0,232.0,46.0,126.0,127.812,130.0,140.0,114.0,126.0,127.884,129.0,150.0,0.0,0.0,1.64055,3.0,82.0,180.0,157.097,1.70104,1.6089,1.01826,8.0,8.0,8.0,0.00445245,0.00121742
+2201,73.406667,0.0,0.0,61.0,132.555,192.0,217.0,66.0,126.0,127.8,130.0,140.0,114.0,126.0,127.861,129.0,151.0,0.0,0.0,1.76494,3.0,63.0,180.0,157.957,1.49733,1.66805,1.06902,8.0,8.0,8.0,0.0046382,0.00122028
+2202,73.440033,0.0,0.0,61.0,132.794,193.0,231.0,77.0,126.0,127.798,130.0,140.0,113.0,127.0,127.879,129.0,148.0,0.0,0.0,1.58885,3.0,51.0,180.0,157.174,1.96606,1.66305,1.04278,8.0,8.0,8.0,0.00503544,0.00121456
+2203,73.4734,0.0,0.0,61.0,132.726,192.0,231.0,75.0,126.0,127.766,130.0,138.0,112.0,126.0,127.871,129.0,147.0,0.0,0.0,1.61387,3.0,53.0,180.0,155.283,2.1502,1.58943,0.977789,8.0,8.0,8.0,0.00526692,0.00122028
+2204,73.506767,0.0,0.0,61.0,132.88,193.0,230.0,76.0,126.0,127.82,130.0,139.0,113.0,127.0,127.882,129.0,147.0,0.0,0.0,1.60817,3.0,52.0,180.0,156.508,1.55788,1.61487,0.991529,8.0,8.0,8.0,0.00477252,0.00122599
+2205,73.540133,0.0,0.0,61.0,132.799,192.0,212.0,73.0,126.0,127.771,130.0,140.0,111.0,126.0,127.871,129.0,148.0,0.0,0.0,1.76341,4.0,55.0,180.0,156.146,2.17251,1.73173,1.10198,8.0,8.0,8.0,0.00430956,0.00120885
+2206,73.5735,0.0,0.0,61.0,133.004,193.0,211.0,67.0,126.0,127.78,130.0,139.0,110.0,127.0,127.882,129.0,143.0,0.0,0.0,1.60245,3.0,61.0,180.0,156.58,1.84943,1.73577,1.10468,8.0,8.0,8.0,0.00473251,0.00121456
+2207,73.606867,0.0,0.0,61.0,132.662,192.0,233.0,77.0,126.0,127.788,130.0,141.0,116.0,126.0,127.856,129.0,155.0,0.0,0.0,1.63863,3.0,51.0,180.0,155.212,1.77519,1.62373,1.00393,8.0,8.0,8.0,0.0048554,0.00122599
+2208,73.640233,0.0,0.0,61.0,132.727,192.0,230.0,77.0,126.0,127.771,130.0,140.0,116.0,127.0,127.882,129.0,154.0,0.0,0.0,1.60586,3.0,51.0,180.0,155.293,2.18665,1.63256,0.990043,8.0,8.0,8.0,0.0048011,0.00122314
+2209,73.6736,0.0,0.0,61.0,132.757,192.0,227.0,74.0,126.0,127.788,130.0,140.0,113.0,126.0,127.862,129.0,147.0,0.0,0.0,1.73743,3.0,54.0,180.0,156.607,1.70557,1.65578,1.00982,8.0,8.0,8.0,0.00506687,0.00120599
+2210,73.706967,0.0,0.0,61.0,132.788,192.0,235.0,75.0,126.0,127.836,130.0,143.0,115.0,126.0,127.88,129.0,154.0,0.0,0.0,1.63138,3.0,53.0,180.0,158.073,1.83655,1.7226,1.08083,8.0,8.0,8.0,0.00475537,0.00120599
+2211,73.740333,0.0,0.0,61.0,132.765,192.0,235.0,76.0,126.0,127.768,130.0,139.0,115.0,126.0,127.873,129.0,154.0,0.0,0.0,1.66342,3.0,52.0,180.0,156.014,1.40557,1.60298,0.964598,8.0,8.0,8.0,0.00484396,0.00120599
+2212,73.7737,0.0,0.0,61.0,132.507,192.0,209.0,78.0,126.0,127.819,130.0,139.0,114.0,126.0,127.881,129.0,154.0,0.0,0.0,1.61057,3.0,50.0,180.0,157.32,1.78545,1.62029,0.983642,8.0,8.0,8.0,0.00487254,0.00125743
+2213,73.807067,0.0,0.0,61.0,132.515,192.0,228.0,76.0,126.0,127.785,130.0,143.0,115.0,126.0,127.845,129.0,149.0,0.0,0.0,1.73465,3.0,52.0,180.0,155.779,1.53378,1.64512,1.01764,8.0,8.0,8.0,0.00491541,0.00120885
+2214,73.840433,0.0,0.0,61.0,132.371,192.0,221.0,78.0,126.0,127.807,130.0,142.0,115.0,126.0,127.861,129.0,136.0,0.0,0.0,1.60624,3.0,50.0,180.0,155.5,1.46993,1.6144,0.997828,8.0,8.0,8.0,0.00490684,0.00121171
+2215,73.8738,0.0,0.0,61.0,132.34,192.0,211.0,79.0,126.0,127.754,130.0,140.0,114.0,126.0,127.868,129.0,136.0,0.0,0.0,1.64566,3.0,50.0,180.0,155.81,2.15166,1.69008,1.01846,8.0,8.0,8.0,0.0042524,0.00121456
+2216,73.907167,0.0,0.0,61.0,132.582,192.0,233.0,80.0,126.0,127.802,130.0,141.0,116.0,126.0,127.845,129.0,136.0,0.0,0.0,1.64271,3.0,49.0,180.0,156.236,1.85108,1.69912,1.05388,8.0,8.0,8.0,0.00517833,0.00121456
+2217,73.940533,0.0,0.0,61.0,132.224,192.0,231.0,80.0,126.0,127.756,130.0,140.0,117.0,126.0,127.836,129.0,136.0,0.0,0.0,1.77067,4.0,49.0,180.0,155.481,1.63399,1.67946,1.07947,8.0,8.0,8.0,0.0050783,0.00121742
+2218,73.9739,0.0,0.0,61.0,132.461,192.0,230.0,77.0,126.0,127.83,130.0,140.0,115.0,126.0,127.846,129.0,136.0,0.0,0.0,1.64315,3.0,52.0,180.0,157.866,2.01846,1.7447,1.08732,8.0,8.0,8.0,0.00502401,0.00121171
+2219,74.007267,0.0,0.0,61.0,132.426,192.0,232.0,77.0,126.0,127.811,130.0,141.0,117.0,126.0,127.868,129.0,135.0,0.0,0.0,1.64667,3.0,52.0,180.0,156.816,1.41815,1.63613,0.985585,8.0,8.0,8.0,0.0049497,0.00121171
+2220,74.040633,0.0,0.0,61.0,132.663,192.0,227.0,79.0,126.0,127.825,130.0,142.0,117.0,126.0,127.847,129.0,137.0,0.0,0.0,1.64166,3.0,50.0,180.0,156.475,1.56899,1.63033,1.00661,8.0,8.0,8.0,0.00502686,0.00121456
+2221,74.074,0.0,0.0,61.0,132.739,192.0,233.0,80.0,126.0,127.811,130.0,138.0,116.0,126.0,127.84,129.0,139.0,0.0,0.0,1.77383,4.0,49.0,180.0,157.926,1.3158,1.65396,1.04889,8.0,8.0,8.0,0.00507259,0.00120599
+2222,74.107367,0.0,0.0,61.0,132.655,192.0,236.0,80.0,126.0,127.838,130.0,144.0,116.0,127.0,127.869,129.0,135.0,0.0,0.0,1.57569,3.0,49.0,180.0,157.151,2.54188,1.69889,1.0677,8.0,8.0,8.0,0.00504687,0.00121171
+2223,74.140733,0.0,0.0,61.0,132.679,192.0,222.0,78.0,126.0,127.765,130.0,143.0,116.0,126.0,127.857,129.0,142.0,0.0,0.0,1.64215,3.0,50.0,180.0,155.825,2.24517,1.65599,0.971136,8.0,8.0,8.0,0.00491541,0.00121742
+2224,74.1741,0.0,0.0,61.0,132.729,193.0,236.0,72.0,126.0,127.821,130.0,140.0,114.0,127.0,127.886,129.0,145.0,0.0,0.0,1.57976,3.0,56.0,180.0,156.381,1.52781,1.61382,0.939598,8.0,8.0,8.0,0.00491827,0.00121171
+2225,74.207467,0.0,0.0,61.0,132.736,193.0,235.0,73.0,126.0,127.752,130.0,139.0,116.0,126.0,127.864,129.0,139.0,0.0,0.0,1.75313,4.0,55.0,180.0,155.607,1.84813,1.73208,1.07627,8.0,8.0,8.0,0.00492398,0.00121456
+2226,74.240833,0.0,0.0,61.0,132.909,193.0,212.0,79.0,126.0,127.817,130.0,141.0,114.0,126.0,127.875,129.0,161.0,0.0,0.0,1.61336,3.0,50.0,180.0,156.778,1.50392,1.71511,1.05895,8.0,8.0,8.0,0.00529835,0.00122314
+2227,74.2742,0.0,0.0,61.0,132.602,192.0,233.0,76.0,126.0,127.787,130.0,147.0,116.0,126.0,127.82,129.0,141.0,0.0,0.0,1.64114,3.0,52.0,180.0,154.205,1.5217,1.6178,1.02198,8.0,8.0,8.0,0.00504115,0.00120599
+2228,74.307567,0.0,0.0,61.0,132.691,192.0,232.0,78.0,126.0,127.819,130.0,140.0,115.0,126.0,127.83,129.0,139.0,0.0,0.0,1.62244,3.0,50.0,180.0,155.496,1.75626,1.63615,1.03297,8.0,8.0,8.0,0.00499829,0.00120599
+2229,74.340933,0.0,0.0,61.0,132.702,193.0,231.0,80.0,126.0,127.772,130.0,138.0,116.0,126.0,127.827,129.0,136.0,0.0,0.0,1.75061,4.0,49.0,180.0,154.981,1.31869,1.60902,1.02318,8.0,8.0,8.0,0.00503544,0.00120599
+2230,74.3743,0.0,0.0,61.0,132.832,193.0,234.0,80.0,126.0,127.832,130.0,141.0,116.0,126.0,127.885,129.0,136.0,0.0,0.0,1.59514,3.0,49.0,180.0,157.71,1.64467,1.64993,1.04163,8.0,8.0,8.0,0.00485825,0.00120313
+2231,74.407667,0.0,0.0,61.0,132.85,193.0,220.0,78.0,126.0,127.784,130.0,137.0,116.0,126.0,127.837,129.0,137.0,0.0,0.0,1.62718,3.0,50.0,180.0,154.607,1.40668,1.59192,0.985882,8.0,8.0,8.0,0.00465821,0.00121456
+2232,74.441033,0.0,0.0,61.0,132.498,192.0,226.0,78.0,126.0,127.816,130.0,140.0,116.0,126.0,127.867,129.0,137.0,0.0,0.0,1.59675,3.0,50.0,180.0,156.647,1.62259,1.6261,0.99561,8.0,8.0,8.0,0.00508688,0.00122599
+2233,74.4744,0.0,0.0,61.0,132.565,192.0,231.0,78.0,126.0,127.754,130.0,140.0,116.0,126.0,127.85,129.0,138.0,0.0,0.0,1.79857,4.0,50.0,165.0,155.414,2.29586,1.687,1.06072,8.0,8.0,8.0,0.00537266,0.00120885
+2234,74.507767,0.0,0.0,61.0,132.652,192.0,220.0,76.0,126.0,127.805,130.0,141.0,116.0,126.0,127.861,129.0,135.0,0.0,0.0,1.64417,3.0,52.0,180.0,156.026,1.39383,1.69915,1.02545,8.0,8.0,8.0,0.00515832,0.00120885
+2235,74.541133,0.0,0.0,61.0,132.654,192.0,231.0,76.0,126.0,127.759,130.0,139.0,116.0,126.0,127.842,129.0,135.0,0.0,0.0,1.67984,3.0,52.0,180.0,154.629,1.74863,1.73186,1.06382,8.0,8.0,8.0,0.00472679,0.00120599
+2236,74.5745,0.0,0.0,61.0,132.74,193.0,232.0,78.0,126.0,127.754,130.0,141.0,116.0,126.0,127.861,129.0,136.0,0.0,0.0,1.64911,3.0,50.0,180.0,154.121,1.5816,1.6919,1.03192,8.0,8.0,8.0,0.00524406,0.00122028
+2237,74.607867,0.0,0.0,61.0,132.274,192.0,232.0,77.0,126.0,127.743,130.0,140.0,115.0,126.0,127.815,129.0,136.0,0.0,0.0,1.80122,4.0,51.0,161.0,154.362,1.73941,1.6972,1.05796,8.0,8.0,8.0,0.00506687,0.00120885
+2238,74.641233,0.0,0.0,61.0,132.484,192.0,218.0,79.0,126.0,127.802,130.0,142.0,117.0,126.0,127.864,129.0,136.0,0.0,0.0,1.65471,3.0,50.0,180.0,156.387,1.94214,1.74866,1.12171,8.0,8.0,8.0,0.00514689,0.00120885
+2239,74.6746,0.0,0.0,61.0,132.451,192.0,226.0,79.0,126.0,127.789,130.0,140.0,116.0,126.0,127.822,129.0,135.0,0.0,0.0,1.68844,3.0,50.0,180.0,154.649,1.29508,1.64094,1.01728,8.0,8.0,8.0,0.00514975,0.00120313
+2240,74.707967,0.0,0.0,61.0,132.586,192.0,232.0,81.0,126.0,127.79,130.0,139.0,117.0,126.0,127.864,129.0,136.0,0.0,0.0,1.66523,3.0,48.0,180.0,155.272,1.83392,1.69548,1.05879,8.0,8.0,8.0,0.00431241,0.00121171
+2241,74.741333,0.0,0.0,61.0,132.671,192.0,231.0,76.0,126.0,127.81,130.0,139.0,116.0,126.0,127.865,129.0,137.0,0.0,0.0,1.72667,3.0,52.0,180.0,156.955,1.75366,1.70037,1.05599,8.0,8.0,8.0,0.00490684,0.00121171
+2242,74.7747,0.0,0.0,61.0,132.478,192.0,230.0,84.0,126.0,127.78,130.0,138.0,117.0,127.0,127.899,129.0,134.0,0.0,0.0,1.43052,3.0,45.0,180.0,153.009,1.74013,1.51096,0.927984,8.0,8.0,8.0,0.00470393,0.00120599
+2243,74.808067,0.0,0.0,61.0,132.515,192.0,232.0,86.0,126.0,127.761,129.0,138.0,117.0,127.0,127.874,129.0,135.0,0.0,0.0,1.40112,3.0,43.0,180.0,151.723,1.57136,1.31904,0.793073,8.0,8.0,8.0,0.00501829,0.00121171
+2244,74.841433,0.0,0.0,61.0,132.5,192.0,217.0,87.0,126.0,127.782,129.0,137.0,118.0,127.0,127.923,129.0,135.0,0.0,0.0,1.31821,2.0,42.0,180.0,152.658,1.35542,1.18317,0.673537,8.0,8.0,8.0,0.00499543,0.00120313
+2245,74.8748,0.0,0.0,61.0,132.545,192.0,228.0,88.0,126.0,127.729,129.0,139.0,117.0,127.0,127.894,129.0,135.0,0.0,0.0,1.43459,3.0,41.0,180.0,151.156,1.71961,1.23469,0.769056,8.0,8.0,8.0,0.00482968,0.00121171
+2246,74.908167,0.0,0.0,61.0,132.769,193.0,229.0,88.0,126.0,127.764,129.0,138.0,117.0,127.0,127.914,129.0,134.0,0.0,0.0,1.26188,2.0,41.0,180.0,150.66,1.41843,1.13849,0.714403,8.0,8.0,8.0,0.00482682,0.00120599
+2247,74.941533,0.0,0.0,61.0,132.337,192.0,233.0,88.0,126.0,127.768,129.0,138.0,117.0,127.0,127.87,129.0,134.0,0.0,0.0,1.30165,2.0,41.0,180.0,150.279,1.90763,1.13677,0.692638,8.0,8.0,8.0,0.00515832,0.00120599
+2248,74.9749,0.0,0.0,61.0,132.453,192.0,233.0,88.0,126.0,127.789,129.0,137.0,117.0,127.0,127.914,129.0,133.0,0.0,0.0,1.24217,2.0,41.0,180.0,151.346,2.15681,1.12373,0.680636,8.0,8.0,8.0,0.00505544,0.00120599
+2249,75.008267,0.0,0.0,61.0,132.346,192.0,231.0,88.0,126.0,127.756,129.0,138.0,117.0,127.0,127.891,129.0,135.0,0.0,0.0,1.37072,3.0,41.0,180.0,151.821,1.63017,1.10541,0.681653,8.0,8.0,8.0,0.00440101,0.00121171
+2250,75.041633,0.0,0.0,61.0,132.536,192.0,234.0,88.0,126.0,127.807,129.0,138.0,117.0,127.0,127.922,129.0,134.0,0.0,0.0,1.23527,2.0,40.0,180.0,153.838,1.77947,1.18216,0.73602,8.0,8.0,8.0,0.00520119,0.00121171
+2251,75.075,0.0,0.0,61.0,132.554,192.0,227.0,88.0,126.0,127.766,129.0,137.0,117.0,127.0,127.884,129.0,136.0,0.0,0.0,1.28277,2.0,40.0,180.0,151.195,1.27424,1.06968,0.637391,8.0,8.0,8.0,0.00518404,0.00124028
+2252,75.108367,0.0,0.0,61.0,132.371,192.0,225.0,88.0,126.0,127.782,129.0,137.0,117.0,127.0,127.922,129.0,136.0,0.0,0.0,1.25999,2.0,40.0,180.0,151.956,1.52326,1.1302,0.669113,8.0,8.0,8.0,0.0051326,0.00121742
+2253,75.141733,0.0,0.0,61.0,132.439,192.0,229.0,88.0,126.0,127.753,129.0,137.0,117.0,127.0,127.874,129.0,134.0,0.0,0.0,1.39548,3.0,41.0,180.0,150.526,1.77446,1.17157,0.726966,8.0,8.0,8.0,0.00537266,0.00121171
+2254,75.1751,0.0,0.0,61.0,132.478,192.0,235.0,87.0,126.0,127.794,129.0,136.0,118.0,127.0,127.924,129.0,133.0,0.0,0.0,1.28551,2.0,41.0,180.0,153.434,1.52592,1.16149,0.712814,8.0,8.0,8.0,0.00503544,0.00120885
+2255,75.208467,0.0,0.0,61.0,132.5,192.0,211.0,86.0,126.0,127.745,129.0,136.0,117.0,127.0,127.889,129.0,138.0,0.0,0.0,1.29861,2.0,42.0,180.0,149.993,1.7493,1.15672,0.695885,8.0,8.0,8.0,0.00496399,0.00120313
+2256,75.241833,0.0,0.0,61.0,132.633,192.0,232.0,90.0,126.0,127.767,129.0,136.0,117.0,127.0,127.912,129.0,141.0,0.0,0.0,1.26738,2.0,39.0,180.0,151.594,1.48806,1.15409,0.670267,8.0,8.0,8.0,0.0048954,0.00120313
+2257,75.2752,0.0,0.0,61.0,132.152,192.0,212.0,90.0,126.0,127.754,129.0,136.0,117.0,127.0,127.85,129.0,141.0,0.0,0.0,1.38616,3.0,39.0,180.0,150.372,1.87605,1.19607,0.727595,8.0,8.0,8.0,0.00501829,0.00120599
+2258,75.308567,0.0,0.0,61.0,132.447,192.0,231.0,86.0,126.0,127.786,129.0,149.0,117.0,127.0,127.896,129.0,146.0,0.0,0.0,1.2575,2.0,43.0,180.0,150.921,2.83994,1.23081,0.768827,8.0,8.0,8.0,0.00472108,0.00119742
+2259,75.341933,0.0,0.0,61.0,132.463,192.0,211.0,84.0,126.0,127.737,129.0,148.0,117.0,127.0,127.857,129.0,147.0,0.0,0.0,1.35854,3.0,45.0,161.0,148.549,1.72985,1.20598,0.725983,8.0,8.0,8.0,0.00433528,0.00120599
+2260,75.3753,0.0,0.0,61.0,132.619,192.0,230.0,84.0,126.0,127.779,129.0,160.0,115.0,127.0,127.872,129.0,146.0,0.0,0.0,1.39604,3.0,45.0,180.0,152.386,1.90453,1.3788,0.833756,8.0,8.0,8.0,0.00509831,0.00120313
+2261,75.408667,0.0,0.0,61.0,132.778,193.0,216.0,81.0,126.0,127.787,130.0,139.0,117.0,126.0,127.848,129.0,154.0,0.0,0.0,1.5664,3.0,47.0,180.0,154.041,1.46709,1.3977,0.861717,8.0,8.0,8.0,0.00493256,0.00120313
+2262,75.442033,0.0,0.0,61.0,132.56,192.0,212.0,83.0,126.0,127.8,130.0,151.0,117.0,127.0,127.884,129.0,154.0,0.0,0.0,1.46216,3.0,45.0,180.0,154.243,1.66443,1.44559,0.915123,8.0,8.0,8.0,0.00504401,0.00122885
+2263,75.4754,0.0,0.0,61.0,132.684,192.0,223.0,82.0,126.0,127.782,130.0,140.0,117.0,127.0,127.865,129.0,154.0,0.0,0.0,1.49942,3.0,47.0,180.0,153.651,1.79666,1.43197,0.864963,8.0,8.0,8.0,0.00502401,0.00121742
+2264,75.508767,0.0,0.0,61.0,132.754,192.0,229.0,78.0,126.0,127.772,130.0,137.0,117.0,127.0,127.877,129.0,152.0,0.0,0.0,1.48184,3.0,50.0,180.0,153.018,1.26145,1.40964,0.811317,8.0,8.0,8.0,0.00483253,0.00122885
+2265,75.542133,0.0,0.0,61.0,132.69,192.0,212.0,82.0,126.0,127.729,130.0,141.0,117.0,126.0,127.853,129.0,152.0,0.0,0.0,1.62094,3.0,46.0,153.0,152.068,1.8207,1.57139,0.965169,8.0,8.0,8.0,0.00440672,0.00122314
+2266,75.5755,0.0,0.0,61.0,132.792,192.0,233.0,82.0,126.0,127.817,130.0,138.0,117.0,127.0,127.869,129.0,152.0,0.0,0.0,1.46787,3.0,46.0,180.0,154.774,1.68498,1.54321,0.937872,8.0,8.0,8.0,0.00504973,0.00120885
+2267,75.608867,0.0,0.0,61.0,132.589,192.0,225.0,81.0,126.0,127.738,130.0,157.0,116.0,127.0,127.845,129.0,152.0,0.0,0.0,1.5094,3.0,47.0,153.0,150.887,1.5455,1.44649,0.855498,8.0,8.0,8.0,0.00488397,0.00120599
+2268,75.642233,0.0,0.0,61.0,132.523,192.0,232.0,82.0,126.0,127.812,130.0,151.0,117.0,127.0,127.888,129.0,152.0,0.0,0.0,1.47657,3.0,46.0,180.0,154.478,1.7209,1.44526,0.865489,8.0,8.0,8.0,0.00499257,0.00120313
+2269,75.6756,0.0,0.0,61.0,132.577,192.0,229.0,82.0,126.0,127.779,130.0,141.0,117.0,126.0,127.837,129.0,154.0,0.0,0.0,1.62677,3.0,46.0,180.0,153.062,1.36771,1.44194,0.898525,8.0,8.0,8.0,0.00499257,0.00121171
+2270,75.708967,0.0,0.0,61.0,132.659,192.0,224.0,75.0,126.0,127.762,130.0,138.0,115.0,127.0,127.872,129.0,151.0,0.0,0.0,1.50225,3.0,53.0,180.0,152.398,1.78052,1.54167,0.957465,8.0,8.0,8.0,0.00504687,0.00120313
+2271,75.742333,0.0,0.0,61.0,132.619,192.0,232.0,79.0,126.0,127.769,130.0,153.0,115.0,127.0,127.855,129.0,154.0,0.0,0.0,1.56257,3.0,49.0,180.0,152.572,1.51968,1.47394,0.888203,8.0,8.0,8.0,0.00528692,0.00121171
+2272,75.7757,0.0,0.0,61.0,132.208,192.0,224.0,73.0,126.0,127.829,130.0,148.0,117.0,127.0,127.898,129.0,154.0,0.0,0.0,1.61748,3.0,55.0,180.0,157.444,1.74998,1.58107,0.954995,8.0,8.0,8.0,0.00497828,0.00120885
+2273,75.809067,0.0,0.0,61.0,132.36,192.0,231.0,75.0,126.0,127.789,130.0,152.0,117.0,126.0,127.808,129.0,148.0,0.0,0.0,1.85325,4.0,53.0,180.0,155.456,1.94531,1.76595,1.07617,8.0,8.0,8.0,0.00495256,0.00120313
+2274,75.842433,0.0,0.0,61.0,132.399,192.0,230.0,75.0,126.0,127.818,130.0,168.0,115.0,126.0,127.835,129.0,143.0,0.0,0.0,1.75206,3.0,54.0,180.0,156.785,1.45132,1.80964,1.15066,8.0,8.0,8.0,0.00499829,0.00120313
+2275,75.8758,0.0,0.0,61.0,132.302,192.0,229.0,72.0,126.0,127.773,130.0,169.0,114.0,126.0,127.825,129.0,141.0,0.0,0.0,1.7905,3.0,56.0,153.0,155.081,1.55684,1.79544,1.12956,8.0,8.0,8.0,0.00499829,0.00120599
+2276,75.909167,0.0,0.0,61.0,132.343,192.0,236.0,75.0,126.0,127.843,130.0,163.0,115.0,126.0,127.877,129.0,153.0,0.0,0.0,1.77603,3.0,53.0,180.0,158.457,1.38121,1.77006,1.09284,8.0,8.0,8.0,0.00501257,0.00120599
+2277,75.942533,0.0,0.0,61.0,132.04,192.0,236.0,72.0,125.0,127.746,130.0,151.0,114.0,126.0,127.792,129.0,154.0,0.0,1.0,1.92971,4.0,57.0,153.0,154.268,1.64851,1.85287,1.15648,8.0,8.0,8.0,0.00495542,0.00121742
+2278,75.9759,0.0,0.0,61.0,132.337,192.0,227.0,67.0,126.0,127.792,130.0,155.0,114.0,126.0,127.838,129.0,152.0,0.0,0.0,1.79202,3.0,62.0,180.0,156.478,1.49809,1.91159,1.1668,8.0,8.0,8.0,0.0047468,0.00120885
+2279,76.009267,0.0,0.0,61.0,132.368,192.0,213.0,71.0,126.0,127.791,130.0,170.0,113.0,126.0,127.819,129.0,144.0,0.0,0.0,1.82149,4.0,58.0,161.0,155.673,1.42334,1.8674,1.13589,8.0,8.0,8.0,0.00474966,0.00120599
+2280,76.042633,0.0,0.0,61.0,132.419,192.0,211.0,75.0,126.0,127.808,130.0,158.0,111.0,126.0,127.858,129.0,149.0,0.0,0.0,1.77213,3.0,54.0,180.0,157.362,1.95038,1.85125,1.12914,8.0,8.0,8.0,0.00455818,0.00120885
+2281,76.076,0.0,0.0,61.0,132.506,192.0,211.0,74.0,125.0,127.757,130.0,149.0,114.0,126.0,127.797,129.0,145.0,0.0,0.0,1.90325,4.0,55.0,161.0,155.946,1.70039,1.88267,1.1479,8.0,8.0,8.0,0.00514403,0.00120599
+2282,76.109367,0.0,0.0,61.0,132.236,192.0,209.0,76.0,126.0,127.815,130.0,145.0,115.0,126.0,127.817,129.0,145.0,0.0,0.0,1.72375,3.0,53.0,180.0,157.167,1.6719,1.82858,1.13355,8.0,8.0,8.0,0.00506116,0.00123171
+2283,76.142733,0.0,0.0,61.0,132.559,192.0,233.0,70.0,126.0,127.781,130.0,160.0,113.0,126.0,127.823,129.0,141.0,0.0,0.0,1.80154,3.0,59.0,161.0,155.223,2.39718,1.82948,1.12047,8.0,8.0,8.0,0.00486683,0.00122028
+2284,76.1761,0.0,0.0,61.0,132.583,192.0,234.0,73.0,126.0,127.767,130.0,142.0,115.0,126.0,127.857,129.0,142.0,0.0,0.0,1.73411,3.0,55.0,161.0,154.854,1.73792,1.79052,1.07923,8.0,8.0,8.0,0.00439243,0.00121742
+2285,76.209467,0.0,0.0,61.0,132.577,192.0,212.0,74.0,125.0,127.767,130.0,141.0,115.0,126.0,127.792,129.0,148.0,0.0,1.0,1.95677,4.0,55.0,153.0,155.205,1.94973,1.91559,1.19704,8.0,8.0,8.0,0.00490684,0.00120313
+2286,76.242833,0.0,0.0,61.0,132.833,192.0,234.0,70.0,126.0,127.825,130.0,139.0,114.0,126.0,127.834,129.0,136.0,0.0,1.0,1.82861,4.0,59.0,180.0,158.261,1.41619,1.89231,1.20796,8.0,8.0,8.0,0.00490969,0.00120027
+2287,76.2762,0.0,0.0,61.0,132.578,192.0,234.0,70.0,125.0,127.719,130.0,141.0,114.0,126.0,127.806,129.0,138.0,0.0,1.0,1.89853,4.0,59.0,146.0,153.078,1.636,1.93792,1.22545,8.0,8.0,8.0,0.0049297,0.00120027
+2288,76.309567,0.0,0.0,61.0,132.695,192.0,228.0,67.0,125.0,127.792,130.0,140.0,114.0,126.0,127.817,129.0,136.0,0.0,1.0,1.89807,4.0,62.0,180.0,157.386,1.80777,1.98274,1.25064,8.0,8.0,8.0,0.00508973,0.00120027
+2289,76.342933,0.0,0.0,61.0,132.62,192.0,233.0,69.0,125.0,127.738,130.0,142.0,114.0,126.0,127.816,129.0,138.0,0.0,1.0,2.01123,4.0,60.0,153.0,155.624,1.32504,2.00153,1.27667,8.0,8.0,8.0,0.00496685,0.00120027
+2290,76.3763,0.0,0.0,61.0,132.667,192.0,210.0,68.0,125.0,127.827,130.0,141.0,115.0,126.0,127.832,129.0,138.0,0.0,1.0,1.92535,4.0,61.0,180.0,160.159,1.62341,2.06253,1.30993,8.0,8.0,8.0,0.00464392,0.00122028
+2291,76.409667,0.0,0.0,61.0,132.64,192.0,231.0,66.0,125.0,127.732,130.0,141.0,114.0,126.0,127.825,129.0,136.0,0.0,1.0,1.97494,4.0,63.0,153.0,155.761,1.44138,2.02094,1.26859,8.0,8.0,8.0,0.0051326,0.00120027
+2292,76.443033,0.0,0.0,61.0,132.425,192.0,211.0,66.0,126.0,127.843,130.0,141.0,114.0,126.0,127.836,129.0,137.0,0.0,1.0,1.91547,4.0,63.0,180.0,159.849,1.49593,2.03903,1.21136,8.0,8.0,8.0,0.00505258,0.00120313
+2293,76.4764,0.0,0.0,61.0,132.555,192.0,210.0,64.0,125.0,127.778,130.0,141.0,114.0,126.0,127.788,130.0,138.0,0.0,1.0,2.07587,4.0,65.0,161.0,157.367,1.54114,2.0547,1.28852,8.0,8.0,8.0,0.00518976,0.00120313
+2294,76.509767,0.0,0.0,61.0,132.633,192.0,233.0,67.0,125.0,127.76,130.0,141.0,116.0,126.0,127.836,129.0,136.0,0.0,1.0,1.97268,4.0,61.0,161.0,157.318,1.34085,2.06604,1.28232,8.0,8.0,8.0,0.0051326,0.00120599
+2295,76.543133,0.0,0.0,61.0,132.56,192.0,210.0,67.0,125.0,127.789,130.0,140.0,115.0,126.0,127.81,129.0,137.0,0.0,1.0,1.9727,4.0,62.0,161.0,157.586,1.55635,2.09272,1.28601,8.0,8.0,8.0,0.00501829,0.00121456
+2296,76.5765,0.0,0.0,61.0,132.533,192.0,233.0,68.0,125.0,127.76,130.0,141.0,116.0,126.0,127.825,129.0,138.0,0.0,1.0,1.94044,4.0,61.0,161.0,157.56,1.37755,2.03771,1.23698,8.0,8.0,8.0,0.00508402,0.00120599
+2297,76.609867,0.0,0.0,61.0,132.542,192.0,210.0,67.0,125.0,127.742,130.0,142.0,116.0,126.0,127.757,129.0,139.0,0.0,1.0,2.07334,4.0,61.0,161.0,156.845,1.59714,2.08541,1.31381,8.0,8.0,8.0,0.00513832,0.00120599
+2298,76.643233,0.0,0.0,61.0,132.586,192.0,233.0,68.0,125.0,127.737,130.0,143.0,116.0,126.0,127.815,129.0,138.0,0.0,1.0,1.93861,4.0,61.0,153.0,156.417,2.5337,2.1267,1.33799,8.0,8.0,8.0,0.00523262,0.00120313
+2299,76.6766,0.0,0.0,61.0,132.434,192.0,231.0,68.0,125.0,127.776,130.0,141.0,115.0,126.0,127.761,129.0,137.0,0.0,1.0,2.00261,4.0,61.0,153.0,157.064,1.45462,2.05581,1.25548,8.0,8.0,8.0,0.00489826,0.00120313
+2300,76.709967,0.0,0.0,61.0,132.503,192.0,229.0,68.0,125.0,127.785,130.0,142.0,115.0,126.0,127.825,129.0,138.0,0.0,1.0,1.98763,4.0,61.0,180.0,158.15,1.61939,2.09942,1.32971,8.0,8.0,8.0,0.00506401,0.00120313
+2301,76.743333,0.0,0.0,61.0,132.573,192.0,231.0,67.0,125.0,127.736,130.0,143.0,114.0,126.0,127.728,130.0,138.0,0.0,1.0,2.20482,5.0,62.0,153.0,155.825,1.46113,2.16329,1.36694,8.0,8.0,8.0,0.00525549,0.00120313
+2302,76.7767,0.0,0.0,61.0,132.535,192.0,231.0,68.0,125.0,127.765,130.0,141.0,114.0,126.0,127.811,129.0,139.0,0.0,1.0,2.06156,4.0,61.0,165.0,158.731,1.53379,2.21531,1.38592,8.0,8.0,8.0,0.00497257,0.00120313
+2303,76.810067,0.0,0.0,61.0,132.792,193.0,235.0,68.0,125.0,127.771,130.0,142.0,113.0,126.0,127.768,130.0,137.0,0.0,1.0,2.12138,4.0,61.0,161.0,158.426,1.63572,2.22916,1.39961,8.0,8.0,8.0,0.00510402,0.00120885
+2304,76.843433,0.0,0.0,61.0,132.771,193.0,233.0,67.0,125.0,127.814,130.0,142.0,114.0,126.0,127.807,130.0,138.0,0.0,1.0,2.08787,4.0,62.0,180.0,159.272,1.55934,2.23873,1.40591,8.0,8.0,8.0,0.00473823,0.00120313
+2305,76.8768,0.0,0.0,61.0,132.719,192.0,231.0,65.0,125.0,127.736,130.0,144.0,113.0,126.0,127.79,130.0,139.0,0.0,1.0,2.26284,5.0,63.0,153.0,158.129,2.05856,2.33693,1.50799,8.0,8.0,8.0,0.00425526,0.00120027
+2306,76.910167,0.0,0.0,61.0,132.842,192.0,233.0,67.0,125.0,127.761,130.0,142.0,108.0,126.0,127.818,130.0,138.0,0.0,1.0,2.09135,4.0,63.0,161.0,158.807,1.69507,2.32618,1.50679,8.0,8.0,8.0,0.00505544,0.00120027
+2307,76.943533,0.0,0.0,61.0,132.466,192.0,230.0,67.0,125.0,127.728,130.0,141.0,108.0,126.0,127.752,129.0,137.0,0.0,1.0,2.07222,4.0,63.0,146.0,154.901,1.74078,2.18812,1.39092,8.0,8.0,8.0,0.00513546,0.00120313
+2308,76.9769,0.0,0.0,61.0,132.433,192.0,230.0,65.0,125.0,127.772,130.0,143.0,110.0,126.0,127.803,130.0,140.0,0.0,1.0,2.12537,4.0,65.0,153.0,158.848,1.95062,2.25314,1.38672,8.0,8.0,8.0,0.00452103,0.00120599
+2309,77.010267,0.0,0.0,61.0,132.385,192.0,230.0,56.0,125.0,127.721,130.0,144.0,114.0,126.0,127.749,130.0,138.0,0.0,1.0,2.28061,5.0,72.0,153.0,157.346,1.66732,2.31472,1.44866,8.0,8.0,8.0,0.00440672,0.00120313
+2310,77.043633,0.0,0.0,61.0,132.426,192.0,232.0,61.0,125.0,127.777,130.0,142.0,110.0,126.0,127.806,130.0,155.0,0.0,1.0,2.11955,4.0,68.0,164.0,159.254,1.78588,2.29592,1.5075,8.0,8.0,8.0,0.00502686,0.00122885
+2311,77.077,0.0,0.0,61.0,132.522,192.0,232.0,65.0,125.0,127.79,130.0,142.0,111.0,126.0,127.816,130.0,141.0,0.0,1.0,2.12941,4.0,64.0,165.0,158.536,1.32809,2.25223,1.40235,8.0,8.0,8.0,0.0048954,0.00120599
+2312,77.110367,0.0,0.0,61.0,132.318,192.0,231.0,63.0,125.0,127.769,130.0,143.0,112.0,126.0,127.805,130.0,141.0,0.0,1.0,2.10988,4.0,66.0,161.0,158.525,1.85122,2.2681,1.41855,8.0,8.0,8.0,0.00513546,0.00121171
+2313,77.143733,0.0,0.0,61.0,132.46,192.0,210.0,65.0,125.0,127.792,131.0,145.0,111.0,126.0,127.791,130.0,139.0,0.0,1.0,2.25588,5.0,64.0,168.0,159.781,2.41135,2.32196,1.47063,8.0,8.0,8.0,0.00506973,0.00120599
+2314,77.1771,0.0,0.0,61.0,132.397,192.0,234.0,65.0,125.0,127.782,130.0,141.0,111.0,126.0,127.778,130.0,139.0,0.0,1.0,2.16078,4.0,64.0,161.0,158.552,1.39922,2.31907,1.46734,8.0,8.0,8.0,0.00500686,0.00120599
+2315,77.210467,0.0,0.0,61.0,132.505,192.0,233.0,63.0,125.0,127.792,131.0,144.0,111.0,126.0,127.773,130.0,139.0,0.0,1.0,2.23885,5.0,66.0,158.0,158.621,2.06655,2.43802,1.58658,8.0,8.0,8.0,0.0041438,0.00122028
+2316,77.243833,0.0,0.0,61.0,132.771,193.0,231.0,66.0,125.0,127.759,130.0,143.0,111.0,126.0,127.805,130.0,138.0,0.0,1.0,2.2084,4.0,64.0,153.0,158.524,1.79099,2.42221,1.52061,8.0,8.0,8.0,0.00523834,0.00120599
+2317,77.2772,0.0,0.0,61.0,132.182,192.0,232.0,64.0,125.0,127.736,130.0,144.0,111.0,126.0,127.743,130.0,151.0,0.0,1.0,2.3064,5.0,65.0,153.0,157.851,1.7969,2.40695,1.53683,8.0,8.0,8.0,0.00511545,0.00120313
+2318,77.310567,0.0,0.0,61.0,132.394,192.0,212.0,65.0,125.0,127.76,130.0,150.0,108.0,126.0,127.794,130.0,140.0,0.0,1.0,2.18066,4.0,66.0,153.0,158.672,1.97119,2.40241,1.54747,8.0,8.0,8.0,0.00525549,0.00121171
+2319,77.343933,0.0,0.0,61.0,132.434,192.0,231.0,66.0,125.0,127.792,131.0,143.0,111.0,126.0,127.798,130.0,164.0,0.0,1.0,2.24097,4.0,64.0,180.0,160.979,1.33823,2.33316,1.42884,8.0,8.0,8.0,0.00517547,0.00120313
+2320,77.3773,0.0,0.0,61.0,132.532,192.0,212.0,64.0,125.0,127.768,131.0,145.0,111.0,126.0,127.815,130.0,149.0,0.0,1.0,2.30326,5.0,65.0,161.0,160.095,1.55558,2.45764,1.56468,8.0,8.0,8.0,0.00527549,0.00120027
+2321,77.410667,0.0,0.0,61.0,132.625,192.0,214.0,56.0,125.0,127.837,131.0,169.0,109.0,126.0,127.768,130.0,155.0,0.0,1.0,2.49056,5.0,73.0,180.0,163.259,1.43448,2.55713,1.62038,8.0,8.0,8.0,0.00511831,0.00120313
+2322,77.444033,0.0,0.0,61.0,132.533,192.0,209.0,59.0,125.0,127.842,131.0,148.0,108.0,126.0,127.783,130.0,170.0,0.0,1.0,2.30246,5.0,71.0,180.0,161.967,2.71098,2.65279,1.71858,8.0,8.0,8.0,0.00456104,0.00121456
+2323,77.4774,0.0,0.0,61.0,132.83,193.0,232.0,58.0,125.0,127.776,131.0,144.0,108.0,126.0,127.802,130.0,154.0,0.0,1.0,2.35184,5.0,70.0,168.0,160.704,2.76349,2.52541,1.62596,8.0,8.0,8.0,0.00526692,0.00120027
+2324,77.510767,0.0,0.0,61.0,132.737,193.0,211.0,55.0,125.0,127.762,131.0,144.0,106.0,126.0,127.821,130.0,169.0,0.0,1.0,2.33346,5.0,75.0,165.0,161.13,1.64441,2.53115,1.59035,8.0,8.0,8.0,0.0045839,0.00120027
+2325,77.544133,0.0,0.0,61.0,132.711,193.0,231.0,53.0,125.0,127.79,131.0,164.0,110.0,126.0,127.804,130.0,158.0,0.0,1.0,2.53811,5.0,76.0,168.0,161.582,1.83635,2.64729,1.73561,8.0,8.0,8.0,0.00499543,0.00120313
+2326,77.5775,0.0,0.0,61.0,132.867,193.0,233.0,58.0,125.0,127.782,131.0,146.0,107.0,126.0,127.803,130.0,169.0,0.0,1.0,2.41976,5.0,71.0,165.0,160.754,1.3432,2.66879,1.71175,8.0,8.0,8.0,0.00508688,0.00121171
+2327,77.610867,0.0,0.0,61.0,132.529,192.0,233.0,55.0,125.0,127.727,131.0,144.0,110.0,126.0,127.832,130.0,163.0,0.0,1.0,2.41981,5.0,74.0,153.0,159.19,1.85252,2.65741,1.6718,8.0,8.0,8.0,0.005004,0.00120599
+2328,77.644233,0.0,0.0,61.0,132.692,192.0,225.0,60.0,125.0,127.797,131.0,142.0,109.0,126.0,127.833,130.0,163.0,0.0,1.0,2.38531,5.0,70.0,180.0,162.007,2.26463,2.65471,1.68345,8.0,8.0,8.0,0.00478395,0.00120885
+2329,77.6776,0.0,0.0,61.0,132.524,192.0,218.0,58.0,125.0,127.809,131.0,143.0,109.0,126.0,127.829,130.0,167.0,0.0,1.0,2.5794,5.0,72.0,180.0,163.102,1.47205,2.70097,1.72693,8.0,8.0,8.0,0.00464963,0.00120885
+2330,77.710967,0.0,0.0,61.0,132.63,192.0,231.0,56.0,125.0,127.797,131.0,145.0,109.0,126.0,127.808,130.0,167.0,0.0,1.0,2.37313,5.0,73.0,180.0,161.779,1.8832,2.77922,1.83621,8.0,8.0,8.0,0.00472394,0.00120599
+2331,77.744333,0.0,0.0,61.0,132.748,193.0,226.0,61.0,125.0,127.767,131.0,147.0,111.0,125.0,127.812,130.0,168.0,0.0,1.0,2.61883,5.0,68.0,180.0,162.537,2.01081,2.9658,2.07457,8.0,8.0,8.0,0.00506116,0.00121171
+2332,77.7777,0.0,0.0,61.0,132.732,192.0,210.0,56.0,125.0,127.835,131.0,146.0,111.0,126.0,127.798,130.0,168.0,0.0,1.0,2.45463,5.0,72.0,180.0,163.638,1.81971,2.77083,1.80548,8.0,8.0,8.0,0.00477252,0.00123171
+2333,77.811067,0.0,0.0,61.0,132.626,192.0,228.0,60.0,125.0,127.856,131.0,152.0,110.0,126.0,127.816,130.0,161.0,0.0,1.0,2.48251,5.0,70.0,180.0,162.021,2.3044,2.72143,1.73915,8.0,8.0,8.0,0.00507545,0.00120885
+2334,77.844433,0.0,0.0,61.0,132.633,192.0,212.0,57.0,125.0,127.82,131.0,172.0,109.0,126.0,127.868,130.0,159.0,0.0,1.0,2.38712,5.0,73.0,180.0,162.134,1.56221,2.63791,1.67031,8.0,8.0,8.0,0.00488683,0.00121456
+2335,77.8778,0.0,0.0,61.0,132.607,192.0,210.0,59.0,125.0,127.804,131.0,160.0,113.0,126.0,127.815,130.0,158.0,0.0,1.0,2.5931,5.0,70.0,180.0,163.435,1.86556,2.7354,1.75462,8.0,8.0,8.0,0.00517261,0.00121742
+2336,77.911167,0.0,0.0,61.0,132.778,192.0,233.0,55.0,125.0,127.825,131.0,148.0,111.0,126.0,127.807,130.0,163.0,0.0,1.0,2.49671,5.0,74.0,180.0,163.445,1.57794,2.82678,1.81031,8.0,8.0,8.0,0.0051126,0.00120313
+2337,77.944533,0.0,0.0,61.0,132.499,192.0,211.0,57.0,125.0,127.814,131.0,148.0,109.0,126.0,127.829,130.0,163.0,0.0,1.0,2.48885,5.0,72.0,168.0,161.773,1.60577,2.729,1.7361,8.0,8.0,8.0,0.00484682,0.00120313
+2338,77.9779,0.0,0.0,61.0,132.659,192.0,228.0,56.0,125.0,127.792,131.0,180.0,109.0,126.0,127.794,130.0,145.0,0.0,1.0,2.47413,5.0,74.0,161.0,161.514,1.83527,2.73921,1.73061,8.0,8.0,8.0,0.00489255,0.00120885
+2339,78.011267,0.0,0.0,61.0,132.656,192.0,231.0,56.0,125.0,127.813,131.0,155.0,109.0,126.0,127.824,130.0,162.0,0.0,1.0,2.60446,5.0,74.0,180.0,163.092,1.38966,2.76708,1.73727,8.0,8.0,8.0,0.00483825,0.00120599
+2340,78.044633,0.0,0.0,61.0,132.792,192.0,230.0,53.0,125.0,127.88,131.0,147.0,108.0,126.0,127.834,130.0,162.0,0.0,1.0,2.48696,5.0,77.0,180.0,165.147,1.96145,2.81507,1.83445,8.0,8.0,8.0,0.00439243,0.00120885
+2341,78.078,0.0,0.0,61.0,132.758,192.0,214.0,59.0,125.0,127.911,131.0,157.0,111.0,126.0,127.799,130.0,162.0,0.0,1.0,2.54744,5.0,71.0,180.0,165.65,1.71873,2.75904,1.7664,8.0,8.0,8.0,0.00476109,0.00121171
+2342,78.111367,0.0,0.0,61.0,132.849,192.0,211.0,52.0,125.0,127.874,131.0,181.0,108.0,126.0,127.871,130.0,158.0,0.0,1.0,2.49554,5.0,77.0,180.0,165.538,1.648,2.75589,1.75623,8.0,8.0,8.0,0.00478681,0.00120313
+2343,78.144733,0.0,0.0,61.0,132.742,192.0,217.0,53.0,125.0,127.823,131.0,160.0,110.0,126.0,127.846,130.0,166.0,0.0,1.0,2.62922,5.0,76.0,180.0,164.811,1.68354,2.81417,1.77418,8.0,8.0,8.0,0.00515546,0.00121742
+2344,78.1781,0.0,0.0,61.0,132.658,192.0,217.0,57.0,125.0,127.905,131.0,144.0,110.0,126.0,127.855,130.0,169.0,0.0,1.0,2.55305,5.0,73.0,180.0,166.944,1.54476,2.79911,1.78152,8.0,8.0,8.0,0.00485254,0.00121456
+2345,78.211467,0.0,0.0,61.0,132.609,192.0,211.0,54.0,125.0,127.874,131.0,147.0,108.0,126.0,127.861,130.0,176.0,0.0,1.0,2.57172,5.0,75.0,180.0,165.248,1.85179,2.84749,1.839,8.0,8.0,8.0,0.0046725,0.00120885
+2346,78.244833,0.0,0.0,61.0,132.786,192.0,222.0,51.0,125.0,127.827,131.0,174.0,109.0,126.0,127.842,130.0,151.0,0.0,1.0,2.5187,5.0,79.0,180.0,163.984,1.52943,2.78482,1.80754,8.0,8.0,8.0,0.00498114,0.00122028
+2347,78.2782,0.0,0.0,61.0,132.31,192.0,228.0,54.0,125.0,127.851,131.0,180.0,110.0,126.0,127.851,130.0,152.0,0.0,1.0,2.66885,5.0,75.0,180.0,164.683,2.17653,2.80866,1.86413,8.0,8.0,8.0,0.00478109,0.00121742
+2348,78.311567,0.0,0.0,61.0,132.555,192.0,217.0,57.0,125.0,127.79,131.0,147.0,107.0,126.0,127.85,130.0,172.0,0.0,1.0,2.47227,5.0,73.0,165.0,161.759,3.07601,2.83331,1.8166,8.0,8.0,8.0,0.00478109,0.00122599
+2349,78.344933,0.0,0.0,61.0,132.523,192.0,235.0,56.0,125.0,127.825,131.0,145.0,109.0,126.0,127.847,130.0,170.0,0.0,1.0,2.45557,5.0,74.0,168.0,162.161,1.74632,2.71598,1.71888,8.0,8.0,8.0,0.0044353,0.00121171
+2350,78.3783,0.0,0.0,61.0,132.478,192.0,211.0,50.0,125.0,127.862,131.0,153.0,106.0,126.0,127.832,130.0,166.0,0.0,1.0,2.51107,5.0,80.0,180.0,164.025,1.83847,2.76718,1.79191,8.0,8.0,8.0,0.00522691,0.00121456
+2351,78.411667,0.0,0.0,61.0,132.431,192.0,232.0,54.0,125.0,127.816,131.0,181.0,108.0,126.0,127.82,130.0,148.0,0.0,1.0,2.65647,5.0,76.0,180.0,163.964,1.37504,2.79791,1.82055,8.0,8.0,8.0,0.00537551,0.00121171
+2352,78.445033,0.0,0.0,61.0,132.303,192.0,212.0,59.0,125.0,127.864,131.0,155.0,108.0,126.0,127.861,130.0,141.0,0.0,1.0,2.51397,5.0,71.0,180.0,165.164,1.52665,2.83553,1.83266,8.0,8.0,8.0,0.00499829,0.00122028
+2353,78.4784,0.0,0.0,61.0,132.361,192.0,210.0,56.0,125.0,127.879,131.0,150.0,108.0,126.0,127.862,130.0,141.0,0.0,1.0,2.54523,5.0,73.0,180.0,166.323,1.51524,2.71566,1.75325,8.0,8.0,8.0,0.00500972,0.00121456
+2354,78.511767,0.0,0.0,61.0,132.477,192.0,231.0,57.0,125.0,127.915,131.0,146.0,112.0,126.0,127.811,130.0,139.0,0.0,1.0,2.55013,5.0,72.0,180.0,165.874,1.4364,2.75487,1.76578,8.0,8.0,8.0,0.00522119,0.00123457
+2355,78.545133,0.0,0.0,61.0,132.575,192.0,232.0,57.0,124.0,127.762,131.0,144.0,112.0,125.0,127.815,130.0,140.0,0.0,1.0,2.69654,5.0,72.0,165.0,163.335,1.94629,2.89794,1.90517,8.0,8.0,8.0,0.00455533,0.00121171
+2356,78.5785,0.0,0.0,61.0,132.821,193.0,214.0,57.0,125.0,127.783,131.0,144.0,112.0,126.0,127.841,130.0,140.0,0.0,1.0,2.51742,5.0,72.0,168.0,162.842,1.60521,2.84076,1.85162,8.0,8.0,8.0,0.00469822,0.00120027
+2357,78.611867,0.0,0.0,61.0,132.549,192.0,234.0,57.0,125.0,127.827,131.0,145.0,112.0,126.0,127.828,130.0,139.0,0.0,1.0,2.53698,5.0,72.0,180.0,163.111,1.56049,2.79869,1.77371,8.0,8.0,8.0,0.00496113,0.00120313
+2358,78.645233,0.0,0.0,61.0,132.639,192.0,232.0,56.0,125.0,127.86,131.0,147.0,112.0,126.0,127.822,130.0,139.0,0.0,1.0,2.45684,5.0,73.0,180.0,164.288,2.8024,2.80098,1.73698,8.0,8.0,8.0,0.00537837,0.00120599
+2359,78.6786,0.0,0.0,61.0,132.506,192.0,231.0,57.0,125.0,127.805,131.0,145.0,112.0,126.0,127.839,130.0,140.0,0.0,1.0,2.60229,5.0,72.0,180.0,164.516,1.98527,2.78939,1.80484,8.0,8.0,8.0,0.00370942,0.00120313
+2360,78.711967,0.0,0.0,61.0,132.668,192.0,234.0,55.0,125.0,127.881,131.0,146.0,112.0,126.0,127.809,130.0,139.0,0.0,1.0,2.52276,5.0,74.0,180.0,166.231,2.11704,2.82422,1.83809,8.0,8.0,8.0,0.00498971,0.00120027
+2361,78.745333,0.0,0.0,61.0,132.69,193.0,223.0,57.0,125.0,127.887,131.0,147.0,112.0,126.0,127.821,130.0,140.0,0.0,1.0,2.51564,5.0,72.0,180.0,165.767,1.33541,2.77868,1.74152,8.0,8.0,8.0,0.00520976,0.00120313
+2362,78.7787,0.0,0.0,61.0,132.843,193.0,229.0,57.0,125.0,127.842,131.0,145.0,112.0,126.0,127.837,130.0,139.0,0.0,1.0,2.51461,5.0,72.0,180.0,165.146,1.62724,2.79305,1.78732,8.0,8.0,8.0,0.00521262,0.00122028
+2363,78.812067,0.0,0.0,61.0,132.947,193.0,232.0,56.0,125.0,127.844,131.0,146.0,112.0,126.0,127.816,130.0,141.0,0.0,1.0,2.6832,5.0,73.0,180.0,165.991,1.42991,2.81177,1.85365,8.0,8.0,8.0,0.00522405,0.00121171
+2364,78.845433,0.0,0.0,61.0,133.014,193.0,233.0,56.0,125.0,127.888,131.0,145.0,112.0,126.0,127.848,130.0,139.0,0.0,1.0,2.55249,5.0,73.0,180.0,165.566,1.40065,2.8384,1.84912,8.0,8.0,8.0,0.0052412,0.00120885
+2365,78.8788,0.0,0.0,61.0,132.877,193.0,233.0,59.0,125.0,127.852,131.0,144.0,112.0,126.0,127.848,130.0,142.0,0.0,1.0,2.57013,5.0,70.0,180.0,164.988,2.11835,2.85471,1.88488,8.0,8.0,8.0,0.00423525,0.00120313
+2366,78.912167,0.0,0.0,61.0,132.963,193.0,218.0,57.0,125.0,127.846,131.0,144.0,112.0,126.0,127.833,130.0,140.0,0.0,1.0,2.49751,5.0,72.0,180.0,164.414,1.88474,2.85758,1.86723,8.0,8.0,8.0,0.00507545,0.00122028
+2367,78.945533,0.0,0.0,61.0,132.363,192.0,235.0,57.0,125.0,127.831,131.0,144.0,112.0,126.0,127.832,130.0,141.0,0.0,1.0,2.65289,5.0,72.0,180.0,165.116,1.74787,2.78188,1.82427,8.0,8.0,8.0,0.005004,0.00120885
+2368,78.9789,0.0,0.0,61.0,132.542,192.0,216.0,55.0,125.0,127.849,131.0,169.0,105.0,126.0,127.885,130.0,165.0,0.0,1.0,2.54201,5.0,76.0,180.0,165.634,1.8785,2.84338,1.86695,8.0,8.0,8.0,0.0049497,0.00120027
+2369,79.012267,0.0,0.0,61.0,132.532,192.0,228.0,55.0,125.0,127.861,131.0,160.0,106.0,126.0,127.86,130.0,162.0,0.0,1.0,2.55825,5.0,75.0,180.0,164.717,1.32721,2.79971,1.82323,8.0,8.0,8.0,0.0048754,0.00120599
+2370,79.045633,0.0,0.0,61.0,132.438,192.0,228.0,55.0,125.0,127.879,131.0,172.0,107.0,126.0,127.833,130.0,148.0,0.0,1.0,2.55259,5.0,75.0,180.0,165.085,1.63267,2.85793,1.81965,8.0,8.0,8.0,0.0048211,0.00120599
+2371,79.079,0.0,0.0,61.0,132.381,192.0,230.0,56.0,125.0,127.829,131.0,172.0,107.0,126.0,127.832,130.0,148.0,0.0,1.0,2.63413,5.0,74.0,180.0,163.519,1.47435,2.81795,1.82899,8.0,8.0,8.0,0.00499543,0.00120885
+2372,79.112367,0.0,0.0,61.0,132.067,192.0,213.0,57.0,125.0,127.908,131.0,173.0,106.0,126.0,127.853,130.0,146.0,0.0,1.0,2.48841,5.0,74.0,180.0,166.702,1.8036,2.74587,1.83985,8.0,8.0,8.0,0.00488112,0.00120599
+2373,79.145733,0.0,0.0,61.0,132.114,192.0,227.0,55.0,125.0,127.878,131.0,162.0,108.0,126.0,127.823,130.0,142.0,0.0,1.0,2.54241,5.0,75.0,180.0,164.292,2.0025,2.68761,1.79881,8.0,8.0,8.0,0.00512689,0.00121171
+2374,79.1791,0.0,0.0,61.0,132.358,192.0,220.0,57.0,125.0,127.908,131.0,147.0,109.0,126.0,127.865,130.0,139.0,0.0,1.0,2.53445,5.0,72.0,180.0,166.41,1.3505,2.68921,1.7827,8.0,8.0,8.0,0.00523548,0.00120599
+2375,79.212467,0.0,0.0,61.0,132.445,192.0,235.0,55.0,125.0,127.81,131.0,145.0,111.0,125.0,127.806,130.0,139.0,0.0,1.0,2.68781,5.0,74.0,180.0,164.19,1.5255,2.80692,1.857,8.0,8.0,8.0,0.00539838,0.00120885
+2376,79.245833,0.0,0.0,61.0,132.522,192.0,210.0,58.0,125.0,127.815,131.0,147.0,109.0,126.0,127.785,130.0,140.0,0.0,1.0,2.56376,5.0,71.0,180.0,164.099,1.29873,2.8314,1.82793,8.0,8.0,8.0,0.00530979,0.00121742
+2377,79.2792,0.0,0.0,61.0,132.427,192.0,234.0,55.0,125.0,127.861,131.0,145.0,111.0,126.0,127.828,130.0,141.0,0.0,1.0,2.57406,5.0,74.0,180.0,165.054,1.39346,2.80159,1.82042,8.0,8.0,8.0,0.00539838,0.00120027
+2378,79.312567,0.0,0.0,61.0,132.277,192.0,231.0,55.0,125.0,127.832,131.0,147.0,109.0,126.0,127.847,130.0,141.0,0.0,1.0,2.5197,5.0,74.0,180.0,164.348,1.99446,2.82786,1.83831,8.0,8.0,8.0,0.00523548,0.00121456
+2379,79.345933,0.0,0.0,61.0,132.21,192.0,213.0,57.0,125.0,127.831,131.0,145.0,111.0,126.0,127.808,130.0,140.0,0.0,1.0,2.63073,5.0,72.0,180.0,164.05,1.44413,2.6958,1.76006,8.0,8.0,8.0,0.00538409,0.00120313
+2380,79.3793,0.0,0.0,61.0,132.367,192.0,211.0,57.0,125.0,127.929,131.0,150.0,111.0,126.0,127.801,130.0,141.0,0.0,1.0,2.58759,5.0,72.0,180.0,165.652,1.65863,2.87226,1.84896,8.0,8.0,8.0,0.00563272,0.00120027
+2381,79.412667,0.0,0.0,61.0,132.353,192.0,226.0,54.0,125.0,127.845,131.0,173.0,110.0,126.0,127.816,130.0,140.0,0.0,1.0,2.63433,5.0,75.0,180.0,165.571,1.32689,2.86009,1.8056,8.0,8.0,8.0,0.00539838,0.00120027
+2382,79.446033,0.0,0.0,61.0,132.629,192.0,228.0,53.0,125.0,127.856,131.0,171.0,109.0,126.0,127.785,130.0,141.0,0.0,1.0,2.56736,5.0,76.0,180.0,164.519,1.55268,2.83548,1.83467,8.0,8.0,8.0,0.00509831,0.00120027
+2383,79.4794,0.0,0.0,61.0,132.722,193.0,227.0,55.0,125.0,127.864,131.0,157.0,110.0,126.0,127.813,130.0,141.0,0.0,1.0,2.67748,5.0,74.0,180.0,165.746,1.87759,2.85003,1.8543,8.0,8.0,8.0,0.00523262,0.00121171
+2384,79.512767,0.0,0.0,61.0,132.707,192.0,237.0,56.0,125.0,127.882,131.0,156.0,108.0,126.0,127.869,130.0,160.0,0.0,1.0,2.41888,5.0,74.0,180.0,164.648,1.88932,2.72929,1.79951,8.0,8.0,8.0,0.00408665,0.00121171
+2385,79.546133,0.0,0.0,61.0,132.69,192.0,212.0,60.0,125.0,127.823,131.0,173.0,109.0,126.0,127.843,130.0,147.0,0.0,1.0,2.47918,5.0,69.0,180.0,162.511,2.05802,2.59041,1.73113,8.0,8.0,8.0,0.00462391,0.00120313
+2386,79.5795,0.0,0.0,61.0,132.773,193.0,231.0,53.0,125.0,127.816,131.0,143.0,107.0,126.0,127.85,130.0,139.0,0.0,1.0,2.53735,5.0,76.0,180.0,163.389,1.35298,2.70737,1.77026,8.0,8.0,8.0,0.00472965,0.00120027
+2387,79.612867,0.0,0.0,61.0,132.321,192.0,230.0,55.0,125.0,127.846,131.0,176.0,104.0,126.0,127.855,130.0,140.0,0.0,1.0,2.6481,5.0,74.0,180.0,164.693,1.52308,2.78424,1.86103,8.0,8.0,8.0,0.00496399,0.00120313
+2388,79.646233,0.0,0.0,61.0,132.589,192.0,216.0,55.0,125.0,127.925,131.0,179.0,107.0,126.0,127.8,130.0,144.0,0.0,1.0,2.54789,5.0,74.0,180.0,165.622,1.56617,2.83107,1.86168,8.0,8.0,8.0,0.00497542,0.00120599
+2389,79.6796,0.0,0.0,61.0,132.622,192.0,227.0,55.0,125.0,127.841,131.0,179.0,111.0,126.0,127.832,130.0,142.0,0.0,1.0,2.54877,5.0,74.0,180.0,165.767,1.29489,2.73536,1.74348,8.0,8.0,8.0,0.00492684,0.00121456
+2390,79.712967,0.0,0.0,61.0,132.68,192.0,232.0,54.0,125.0,127.9,131.0,178.0,104.0,126.0,127.807,130.0,142.0,0.0,1.0,2.56589,5.0,76.0,180.0,165.617,1.8099,2.83108,1.8365,8.0,8.0,8.0,0.00429813,0.00121456
+2391,79.746333,0.0,0.0,61.0,132.624,192.0,229.0,55.0,125.0,127.924,131.0,177.0,108.0,125.0,127.799,130.0,142.0,0.0,1.0,2.67482,5.0,75.0,180.0,167.447,1.71768,2.85838,1.8975,8.0,8.0,8.0,0.00509259,0.00121171
+2392,79.7797,0.0,0.0,61.0,132.534,192.0,212.0,52.0,125.0,127.947,131.0,177.0,103.0,126.0,127.84,130.0,140.0,0.0,1.0,2.55957,5.0,77.0,180.0,167.664,1.70462,2.83787,1.90781,8.0,8.0,8.0,0.00498971,0.00120313
+2393,79.813067,0.0,0.0,61.0,132.661,193.0,233.0,50.0,125.0,127.853,131.0,177.0,103.0,126.0,127.795,130.0,141.0,0.0,1.0,2.62059,5.0,80.0,180.0,164.569,1.53953,2.79155,1.82334,8.0,8.0,8.0,0.00496685,0.00120027
+2394,79.846433,0.0,0.0,61.0,132.751,193.0,209.0,54.0,125.0,127.884,131.0,177.0,100.0,126.0,127.793,130.0,141.0,0.0,1.0,2.57326,5.0,75.0,180.0,165.801,1.42118,2.80287,1.83947,8.0,8.0,8.0,0.00462391,0.00120027
+2395,79.8798,0.0,0.0,61.0,132.525,192.0,233.0,53.0,125.0,127.834,131.0,162.0,95.0,126.0,127.844,130.0,142.0,0.0,1.0,2.68345,5.0,76.0,180.0,164.836,1.8139,2.87319,1.93877,8.0,8.0,8.0,0.00466964,0.00120027
+2396,79.913167,0.0,0.0,61.0,132.546,192.0,228.0,54.0,125.0,127.864,131.0,177.0,99.0,126.0,127.83,130.0,142.0,0.0,1.0,2.53218,5.0,76.0,180.0,164.844,1.54792,2.85344,1.90565,8.0,8.0,8.0,0.00502401,0.00120885
+2397,79.946533,0.0,0.0,61.0,132.702,192.0,213.0,54.0,125.0,127.832,131.0,158.0,91.0,126.0,127.819,130.0,142.0,0.0,1.0,2.55131,5.0,75.0,180.0,164.229,1.57094,2.74513,1.81352,8.0,8.0,8.0,0.00472108,0.00120313
+2398,79.9799,0.0,0.0,61.0,132.814,193.0,214.0,55.0,125.0,127.894,131.0,169.0,94.0,126.0,127.824,130.0,140.0,0.0,1.0,2.51598,5.0,74.0,180.0,164.537,2.39945,2.77135,1.8185,8.0,8.0,8.0,0.00487254,0.00120885
+2399,80.013267,0.0,0.0,61.0,132.702,193.0,233.0,54.0,125.0,127.836,131.0,181.0,100.0,126.0,127.822,130.0,141.0,0.0,1.0,2.58946,5.0,75.0,180.0,163.374,1.762,2.75612,1.82737,8.0,8.0,8.0,0.0042524,0.00122599
+2400,80.046633,0.0,0.0,61.0,132.849,193.0,228.0,57.0,125.0,127.921,131.0,144.0,103.0,126.0,127.794,130.0,142.0,0.0,1.0,2.50438,5.0,73.0,180.0,165.483,1.92931,2.78246,1.82739,8.0,8.0,8.0,0.00520405,0.00120313
+2401,80.08,0.0,0.0,61.0,132.952,193.0,231.0,55.0,125.0,127.873,131.0,146.0,108.0,126.0,127.773,130.0,142.0,0.0,1.0,2.5678,5.0,74.0,180.0,165.713,1.32014,2.74018,1.77219,8.0,8.0,8.0,0.00534694,0.00120599
+2402,80.113367,0.0,0.0,61.0,132.944,193.0,215.0,51.0,125.0,127.94,131.0,171.0,103.0,126.0,127.831,130.0,142.0,0.0,1.0,2.52221,5.0,78.0,180.0,167.856,1.37983,2.76184,1.7665,8.0,8.0,8.0,0.00522977,0.00124314
+2403,80.146733,0.0,0.0,61.0,132.751,193.0,214.0,57.0,125.0,127.861,131.0,166.0,110.0,125.0,127.81,130.0,141.0,0.0,1.0,2.66622,5.0,72.0,180.0,166.015,1.48785,2.86137,1.82783,8.0,8.0,8.0,0.0051326,0.00123743
+2404,80.1801,0.0,0.0,61.0,132.869,193.0,214.0,55.0,125.0,127.868,131.0,161.0,110.0,126.0,127.804,130.0,139.0,0.0,1.0,2.53298,5.0,74.0,180.0,165.409,1.44712,2.80568,1.841,8.0,8.0,8.0,0.00485254,0.00123171
+2405,80.213467,0.0,0.0,61.0,132.833,192.0,236.0,52.0,125.0,127.906,131.0,146.0,111.0,126.0,127.84,130.0,141.0,0.0,1.0,2.56318,5.0,77.0,180.0,167.839,1.88013,2.82008,1.82681,8.0,8.0,8.0,0.00442958,0.00120313
+2406,80.246833,0.0,0.0,61.0,132.942,193.0,236.0,54.0,125.0,127.868,131.0,145.0,110.0,126.0,127.81,130.0,142.0,0.0,1.0,2.50168,5.0,75.0,180.0,164.131,1.59114,2.80095,1.81307,8.0,8.0,8.0,0.00482968,0.00120599
+2407,80.2802,0.0,0.0,61.0,132.632,192.0,236.0,54.0,125.0,127.803,131.0,144.0,108.0,126.0,127.791,130.0,140.0,0.0,1.0,2.63252,5.0,75.0,180.0,163.275,1.80247,2.80446,1.84211,8.0,8.0,8.0,0.00478395,0.00120599
+2408,80.313567,0.0,0.0,61.0,132.693,192.0,237.0,54.0,125.0,127.909,131.0,145.0,109.0,126.0,127.843,130.0,141.0,0.0,1.0,2.49375,5.0,75.0,180.0,164.798,1.84982,2.80668,1.82971,8.0,8.0,8.0,0.00483825,0.00121171
+2409,80.346933,0.0,0.0,61.0,132.552,192.0,231.0,54.0,125.0,127.816,131.0,143.0,108.0,126.0,127.812,130.0,140.0,0.0,1.0,2.51651,5.0,76.0,180.0,162.971,1.77175,2.75177,1.785,8.0,8.0,8.0,0.00426097,0.00121171
+2410,80.3803,0.0,0.0,61.0,132.436,192.0,223.0,54.0,125.0,127.841,131.0,144.0,108.0,126.0,127.751,130.0,141.0,0.0,1.0,2.48349,5.0,76.0,180.0,162.787,2.11431,2.6796,1.77446,8.0,8.0,8.0,0.00496685,0.00120599
+2411,80.413667,0.0,0.0,61.0,132.464,192.0,212.0,53.0,125.0,127.825,131.0,147.0,108.0,125.0,127.769,130.0,140.0,0.0,1.0,2.69338,5.0,77.0,180.0,165.424,1.68463,2.7681,1.82401,8.0,8.0,8.0,0.0050783,0.00120885
+2412,80.447033,0.0,0.0,61.0,132.325,192.0,233.0,56.0,125.0,127.864,131.0,144.0,108.0,126.0,127.819,130.0,139.0,0.0,1.0,2.52817,5.0,74.0,180.0,164.882,1.8329,2.81199,1.86263,8.0,8.0,8.0,0.00488112,0.00120027
+2413,80.4804,0.0,0.0,61.0,132.353,192.0,230.0,58.0,125.0,127.901,131.0,149.0,108.0,126.0,127.782,130.0,140.0,0.0,1.0,2.58003,5.0,72.0,180.0,167.001,1.77836,2.81685,1.78747,8.0,8.0,8.0,0.00498971,0.00120313
+2414,80.513767,0.0,0.0,61.0,132.387,192.0,220.0,60.0,125.0,127.848,131.0,144.0,108.0,126.0,127.793,130.0,140.0,0.0,1.0,2.51531,5.0,69.0,180.0,163.506,1.34884,2.73008,1.75522,8.0,8.0,8.0,0.00499257,0.00120313
+2415,80.547133,0.0,0.0,61.0,132.495,192.0,237.0,58.0,125.0,127.854,131.0,145.0,108.0,125.0,127.804,130.0,139.0,0.0,1.0,2.70864,6.0,71.0,180.0,165.723,1.8151,2.8934,1.8977,8.0,8.0,8.0,0.00498114,0.00120313
+2416,80.5805,0.0,0.0,61.0,132.689,192.0,232.0,58.0,125.0,127.868,131.0,145.0,108.0,126.0,127.858,130.0,141.0,0.0,1.0,2.54091,5.0,71.0,180.0,164.952,1.58459,2.87613,1.85102,8.0,8.0,8.0,0.00512117,0.00120313
+2417,80.613867,0.0,0.0,61.0,132.489,192.0,236.0,57.0,125.0,127.81,131.0,144.0,108.0,126.0,127.799,130.0,140.0,0.0,1.0,2.58989,5.0,72.0,180.0,163.886,1.58412,2.81949,1.7937,8.0,8.0,8.0,0.00492112,0.00120885
+2418,80.647233,0.0,0.0,61.0,132.552,192.0,236.0,50.0,125.0,127.83,131.0,144.0,109.0,126.0,127.825,130.0,139.0,0.0,1.0,2.57684,5.0,79.0,180.0,164.589,1.85942,2.82346,1.82539,8.0,8.0,8.0,0.00502401,0.00120599
+2419,80.6806,0.0,0.0,61.0,132.51,192.0,235.0,58.0,125.0,127.857,131.0,153.0,108.0,125.0,127.794,130.0,140.0,0.0,1.0,2.69002,5.0,72.0,180.0,166.169,1.44556,2.83053,1.83651,8.0,8.0,8.0,0.00485825,0.00120599
+2420,80.713967,0.0,0.0,61.0,132.677,192.0,236.0,58.0,125.0,127.859,131.0,148.0,108.0,126.0,127.814,130.0,139.0,0.0,1.0,2.58935,5.0,72.0,180.0,164.692,1.64225,2.90438,1.87308,8.0,8.0,8.0,0.00515546,0.00121171
+2421,80.747333,0.0,0.0,61.0,132.765,192.0,232.0,58.0,125.0,127.815,131.0,145.0,108.0,126.0,127.807,130.0,140.0,0.0,1.0,2.5719,5.0,72.0,180.0,163.325,1.28573,2.81399,1.75238,8.0,8.0,8.0,0.00499543,0.00120027
+2422,80.7807,0.0,0.0,61.0,132.767,192.0,224.0,58.0,125.0,127.876,131.0,146.0,108.0,126.0,127.847,130.0,141.0,0.0,1.0,2.56069,5.0,72.0,180.0,165.566,1.57275,2.79904,1.78233,8.0,8.0,8.0,0.00471536,0.00120313
+2423,80.814067,0.0,0.0,61.0,132.789,192.0,236.0,58.0,125.0,127.832,131.0,144.0,108.0,126.0,127.816,130.0,141.0,0.0,1.0,2.66706,5.0,72.0,180.0,164.716,1.94879,2.88251,1.86581,8.0,8.0,8.0,0.00496971,0.00121171
+2424,80.847433,0.0,0.0,61.0,132.845,192.0,231.0,58.0,125.0,127.899,131.0,147.0,109.0,126.0,127.825,130.0,139.0,0.0,1.0,2.53368,5.0,72.0,180.0,164.963,1.38033,2.81044,1.80027,8.0,8.0,8.0,0.00509545,0.00119742
+2425,80.8808,0.0,0.0,61.0,132.735,192.0,230.0,58.0,125.0,127.857,131.0,146.0,109.0,126.0,127.814,130.0,142.0,0.0,1.0,2.59733,5.0,72.0,180.0,165.879,1.49228,2.79056,1.79552,8.0,8.0,8.0,0.00469822,0.00119742
+2426,80.914167,0.0,0.0,61.0,132.801,193.0,231.0,58.0,125.0,127.829,131.0,147.0,109.0,126.0,127.794,130.0,141.0,0.0,1.0,2.5622,5.0,72.0,180.0,163.253,1.2518,2.80854,1.76868,8.0,8.0,8.0,0.00512403,0.00120027
+2427,80.947533,0.0,0.0,61.0,132.545,192.0,227.0,58.0,125.0,127.793,131.0,147.0,109.0,125.0,127.805,130.0,140.0,0.0,1.0,2.641,5.0,72.0,180.0,163.809,1.54265,2.85417,1.86934,8.0,8.0,8.0,0.00490684,0.00120599
+2428,80.9809,0.0,0.0,61.0,132.558,192.0,209.0,57.0,125.0,127.837,131.0,148.0,109.0,126.0,127.833,130.0,138.0,0.0,1.0,2.51691,5.0,72.0,180.0,163.974,1.61422,2.80567,1.81942,8.0,8.0,8.0,0.00488112,0.00120313
+2429,81.014267,0.0,0.0,61.0,132.486,192.0,221.0,56.0,125.0,127.813,131.0,147.0,109.0,126.0,127.789,130.0,141.0,0.0,1.0,2.55777,5.0,73.0,180.0,162.718,1.71519,2.85855,1.84058,8.0,8.0,8.0,0.00444959,0.00120313
+2430,81.047633,0.0,0.0,61.0,132.444,192.0,211.0,56.0,125.0,127.861,131.0,144.0,109.0,126.0,127.806,130.0,138.0,0.0,1.0,2.56241,5.0,73.0,180.0,165.096,2.39792,2.85948,1.82976,8.0,8.0,8.0,0.00347794,0.00120885
+2431,81.081,0.0,0.0,61.0,132.533,192.0,235.0,58.0,125.0,127.831,131.0,145.0,109.0,125.0,127.736,130.0,139.0,0.0,1.0,2.66778,5.0,71.0,180.0,163.795,1.971,2.92767,1.87024,8.0,8.0,8.0,0.00524406,0.00120313
+2432,81.114367,0.0,0.0,61.0,132.453,192.0,209.0,58.0,125.0,127.837,131.0,145.0,109.0,126.0,127.802,130.0,140.0,0.0,1.0,2.51353,5.0,72.0,180.0,163.651,1.6247,2.83472,1.82242,8.0,8.0,8.0,0.00502401,0.00122885
+2433,81.147733,0.0,0.0,61.0,132.45,192.0,232.0,58.0,125.0,127.842,131.0,144.0,109.0,126.0,127.788,130.0,139.0,0.0,1.0,2.56171,5.0,72.0,180.0,164.011,1.78801,2.75797,1.79091,8.0,8.0,8.0,0.00467821,0.00120313
+2434,81.1811,0.0,0.0,61.0,132.379,192.0,230.0,58.0,125.0,127.831,131.0,143.0,108.0,126.0,127.84,130.0,139.0,0.0,1.0,2.5099,5.0,72.0,180.0,163.393,1.6884,2.79428,1.77233,8.0,8.0,8.0,0.0048011,0.00120885
+2435,81.214467,0.0,0.0,61.0,132.329,192.0,234.0,59.0,125.0,127.83,131.0,147.0,109.0,125.0,127.758,130.0,140.0,0.0,1.0,2.64379,5.0,71.0,180.0,164.955,1.81876,2.82686,1.80573,8.0,8.0,8.0,0.0051669,0.00120313
+2436,81.247833,0.0,0.0,61.0,132.458,192.0,228.0,58.0,125.0,127.887,131.0,151.0,109.0,126.0,127.808,130.0,140.0,0.0,1.0,2.54592,5.0,71.0,180.0,165.337,1.30312,2.83427,1.78887,8.0,8.0,8.0,0.00486111,0.00120313
+2437,81.2812,0.0,0.0,61.0,132.142,192.0,208.0,57.0,125.0,127.859,131.0,143.0,109.0,126.0,127.8,130.0,144.0,0.0,1.0,2.53939,5.0,73.0,180.0,164.959,1.8163,2.80985,1.79082,8.0,8.0,8.0,0.00472965,0.00119742
+2438,81.314567,0.0,0.0,61.0,132.278,192.0,233.0,58.0,125.0,127.821,131.0,146.0,109.0,126.0,127.8,130.0,141.0,0.0,1.0,2.58703,5.0,72.0,180.0,163.982,1.7154,2.79498,1.7922,8.0,8.0,8.0,0.005004,0.00119742
+2439,81.347933,0.0,0.0,61.0,132.327,192.0,222.0,59.0,125.0,127.889,131.0,146.0,109.0,125.0,127.761,130.0,139.0,0.0,1.0,2.62379,5.0,71.0,180.0,165.678,1.34721,2.79578,1.80666,8.0,8.0,8.0,0.00479252,0.00120313
+2440,81.3813,0.0,0.0,61.0,132.578,192.0,236.0,58.0,125.0,127.881,131.0,145.0,109.0,126.0,127.819,130.0,141.0,0.0,1.0,2.58133,5.0,72.0,180.0,166.824,1.66704,2.84787,1.86851,8.0,8.0,8.0,0.00506973,0.00121171
+2441,81.414667,0.0,0.0,61.0,132.632,192.0,235.0,56.0,125.0,127.872,131.0,147.0,109.0,126.0,127.815,130.0,141.0,0.0,1.0,2.58856,5.0,74.0,180.0,165.785,1.38801,2.7941,1.82237,8.0,8.0,8.0,0.0052412,0.00121171
+2442,81.448033,0.0,0.0,61.0,132.353,192.0,218.0,57.0,125.0,127.882,131.0,146.0,109.0,126.0,127.828,130.0,142.0,0.0,1.0,2.55727,5.0,72.0,180.0,166.15,1.55484,2.79827,1.8302,8.0,8.0,8.0,0.00456962,0.00120027
+2443,81.4814,0.0,0.0,61.0,132.427,192.0,236.0,53.0,125.0,127.84,131.0,146.0,108.0,125.0,127.803,130.0,145.0,0.0,1.0,2.71393,5.0,77.0,180.0,163.422,1.6247,2.86127,1.87162,8.0,8.0,8.0,0.00495828,0.00121456
+2444,81.514767,0.0,0.0,61.0,132.281,192.0,237.0,50.0,125.0,127.849,131.0,148.0,109.0,126.0,127.783,130.0,141.0,0.0,1.0,2.5487,5.0,80.0,180.0,165.122,1.46643,2.84522,1.90636,8.0,8.0,8.0,0.00533265,0.00120885
+2445,81.548133,0.0,0.0,61.0,132.269,192.0,235.0,59.0,125.0,127.849,131.0,145.0,109.0,126.0,127.779,130.0,139.0,0.0,1.0,2.64001,5.0,71.0,180.0,164.977,1.58643,2.84142,1.85294,8.0,8.0,8.0,0.00532122,0.00120885
+2446,81.5815,0.0,0.0,61.0,132.435,192.0,210.0,56.0,125.0,127.882,131.0,147.0,110.0,126.0,127.797,130.0,144.0,0.0,1.0,2.60107,5.0,74.0,180.0,164.929,1.40919,2.83029,1.81124,8.0,8.0,8.0,0.00501829,0.00121456
+2447,81.614867,0.0,0.0,61.0,131.849,191.0,229.0,59.0,125.0,127.833,131.0,144.0,110.0,125.0,127.799,130.0,143.0,0.0,1.0,2.69664,5.0,71.0,180.0,164.781,2.33446,2.93537,1.91979,8.0,8.0,8.0,0.00505258,0.00121171
+2448,81.648233,0.0,0.0,61.0,131.868,192.0,209.0,58.0,125.0,127.803,131.0,146.0,108.0,126.0,127.845,130.0,164.0,0.0,1.0,2.49358,5.0,72.0,161.0,162.108,2.58454,2.86884,1.85895,8.0,8.0,8.0,0.005004,0.00121456
+2449,81.6816,0.0,0.0,61.0,131.926,191.0,212.0,56.0,125.0,127.837,131.0,184.0,108.0,126.0,127.759,130.0,148.0,0.0,1.0,2.48765,5.0,73.0,180.0,163.343,1.8082,2.76943,1.7412,8.0,8.0,8.0,0.00428955,0.00123171
+2450,81.714967,0.0,0.0,61.0,131.965,191.0,219.0,56.0,125.0,127.855,131.0,180.0,109.0,126.0,127.81,130.0,147.0,0.0,1.0,2.48613,5.0,74.0,180.0,163.885,2.00809,2.74926,1.75261,8.0,8.0,8.0,0.00495828,0.00122028
+2451,81.748333,0.0,0.0,61.0,131.99,191.0,214.0,53.0,125.0,127.815,131.0,154.0,107.0,125.0,127.743,130.0,167.0,0.0,1.0,2.59617,5.0,77.0,174.0,162.294,1.50549,2.73447,1.763,8.0,8.0,8.0,0.00489255,0.00123171
+2452,81.7817,0.0,0.0,61.0,131.896,191.0,231.0,54.0,125.0,127.919,131.0,164.0,104.0,126.0,127.821,130.0,153.0,0.0,1.0,2.52276,5.0,77.0,180.0,167.311,1.56667,2.76669,1.79447,8.0,8.0,8.0,0.0048754,0.00122028
+2453,81.815067,0.0,0.0,61.0,131.992,192.0,231.0,57.0,125.0,127.841,131.0,185.0,107.0,126.0,127.725,130.0,145.0,0.0,1.0,2.58567,5.0,74.0,180.0,163.436,1.57077,2.79879,1.78973,8.0,8.0,8.0,0.00496685,0.00121456
+2454,81.848433,0.0,0.0,61.0,132.11,192.0,228.0,53.0,125.0,127.846,131.0,181.0,106.0,126.0,127.802,130.0,141.0,0.0,1.0,2.56124,5.0,77.0,180.0,164.755,1.73295,2.84426,1.80383,8.0,8.0,8.0,0.0043067,0.00121171
+2455,81.8818,0.0,0.0,61.0,132.182,192.0,236.0,56.0,125.0,127.906,131.0,183.0,109.0,125.0,127.751,130.0,142.0,0.0,1.0,2.74599,6.0,73.0,180.0,165.968,2.1815,2.94443,1.90059,8.0,8.0,8.0,0.0046725,0.00120599
+2456,81.915167,0.0,0.0,61.0,132.428,192.0,235.0,52.0,125.0,127.855,131.0,178.0,108.0,126.0,127.791,130.0,149.0,0.0,1.0,2.5337,5.0,78.0,180.0,165.512,1.81112,2.93546,1.90102,8.0,8.0,8.0,0.00536123,0.00120885
+2457,81.948533,0.0,0.0,61.0,132.038,192.0,210.0,54.0,125.0,127.805,131.0,182.0,105.0,126.0,127.76,130.0,141.0,0.0,1.0,2.5447,5.0,76.0,174.0,162.21,2.00239,2.77215,1.81916,8.0,8.0,8.0,0.00468964,0.00121456
+2458,81.9819,0.0,0.0,61.0,132.349,192.0,236.0,55.0,125.0,127.849,131.0,179.0,105.0,126.0,127.747,130.0,141.0,0.0,1.0,2.5251,5.0,76.0,180.0,164.404,1.90841,2.773,1.78843,8.0,8.0,8.0,0.00538123,0.00122314
+2459,82.015267,0.0,0.0,61.0,132.278,192.0,235.0,55.0,125.0,127.843,131.0,176.0,109.0,126.0,127.761,130.0,149.0,0.0,1.0,2.58125,5.0,75.0,180.0,163.436,1.76227,2.74321,1.79615,8.0,8.0,8.0,0.00427241,0.00122599
+2460,82.048633,0.0,0.0,61.0,132.425,192.0,237.0,56.0,125.0,127.834,131.0,171.0,108.0,126.0,127.777,130.0,151.0,0.0,1.0,2.5584,5.0,74.0,180.0,164.062,1.91531,2.83044,1.83803,8.0,8.0,8.0,0.00518404,0.00122314
+2461,82.082,0.0,0.0,61.0,132.458,192.0,210.0,55.0,125.0,127.859,131.0,170.0,106.0,126.0,127.761,130.0,153.0,0.0,1.0,2.56744,5.0,75.0,180.0,164.379,1.37199,2.82078,1.73134,8.0,8.0,8.0,0.0049497,0.00121171
+2462,82.115367,0.0,0.0,61.0,132.372,192.0,234.0,52.0,125.0,127.83,131.0,155.0,110.0,126.0,127.841,130.0,163.0,0.0,1.0,2.51876,5.0,77.0,180.0,165.104,1.70588,2.81211,1.76991,8.0,8.0,8.0,0.00476395,0.00122314
+2463,82.148733,0.0,0.0,61.0,132.373,192.0,232.0,58.0,125.0,127.839,131.0,148.0,109.0,126.0,127.795,130.0,164.0,0.0,1.0,2.56006,5.0,72.0,180.0,164.477,1.77618,2.7805,1.74625,8.0,8.0,8.0,0.00512117,0.00121742
+2464,82.1821,0.0,0.0,61.0,132.531,192.0,212.0,53.0,125.0,127.831,131.0,144.0,110.0,126.0,127.801,130.0,157.0,0.0,1.0,2.4676,5.0,76.0,180.0,163.431,1.61229,2.82331,1.75695,8.0,8.0,8.0,0.00484111,0.00121742
+2465,82.215467,0.0,0.0,61.0,132.582,192.0,213.0,55.0,125.0,127.876,131.0,170.0,108.0,126.0,127.797,130.0,160.0,0.0,1.0,2.45545,5.0,74.0,180.0,164.52,2.64,2.72349,1.71816,8.0,8.0,8.0,0.002492,0.00120027
+2466,82.248833,0.0,0.0,61.0,132.499,192.0,231.0,52.0,125.0,127.858,131.0,165.0,106.0,126.0,127.859,130.0,163.0,0.0,1.0,2.42412,5.0,78.0,180.0,164.342,2.38999,2.64306,1.63437,8.0,8.0,8.0,0.00470393,0.00120599
+2467,82.2822,0.0,0.0,37.0,76.4198,162.0,212.0,58.0,102.0,114.851,127.0,175.0,105.0,128.0,136.578,145.0,183.0,0.0,2.0,16.0972,30.0,77.0,123.0,124.377,87.279,13.4459,9.23477,8.0,8.0,8.0,0.00149749,0.0011917
+2468,82.315567,0.0,0.0,36.0,76.2684,164.0,214.0,57.0,102.0,114.286,126.0,186.0,107.0,127.0,135.832,145.0,177.0,0.0,2.0,16.1993,30.0,77.0,119.0,119.25,2.27178,3.16723,2.31227,8.0,8.0,8.0,0.00156321,0.0011917
+2469,82.348933,0.0,0.0,36.0,76.4044,164.0,216.0,58.0,101.0,114.217,126.0,175.0,103.0,128.0,135.753,144.0,178.0,0.0,2.0,16.2267,30.0,78.0,119.0,118.739,1.48729,2.88112,2.00652,8.0,8.0,8.0,0.00159465,0.0011917
+2470,82.3823,0.0,0.0,37.0,76.4526,164.0,222.0,57.0,102.0,114.366,127.0,177.0,102.0,127.0,135.501,144.0,186.0,0.0,2.0,16.0385,30.0,79.0,118.0,117.993,1.53162,2.87361,1.98888,8.0,8.0,8.0,0.00162894,0.0011917
+2471,82.415667,0.0,0.0,36.0,76.2684,164.0,214.0,58.0,102.0,114.518,127.0,176.0,107.0,127.0,135.381,144.0,172.0,0.0,2.0,15.8899,30.0,76.0,118.0,117.549,1.41632,2.93619,2.02894,8.0,8.0,8.0,0.00159465,0.0011917
+2472,82.449033,0.0,0.0,36.0,76.2574,164.0,224.0,55.0,102.0,114.344,127.0,178.0,107.0,127.0,135.528,144.0,176.0,0.0,2.0,16.0196,30.0,77.0,118.0,117.692,1.80954,3.03684,2.09872,8.0,8.0,8.0,0.00158608,0.00119456
+2473,82.4824,0.0,0.0,37.0,76.1814,163.0,231.0,59.0,101.0,114.35,126.0,179.0,103.0,127.0,135.488,144.0,175.0,0.0,2.0,16.0059,30.0,75.0,118.0,117.495,1.84423,2.91175,2.00388,8.0,8.0,8.0,0.00158893,0.0011917
+2474,82.515767,0.0,0.0,37.0,76.2086,163.0,213.0,59.0,102.0,114.395,126.0,174.0,105.0,127.0,135.495,144.0,175.0,0.0,2.0,15.9608,30.0,76.0,118.0,118.039,1.53446,2.88989,1.99704,8.0,8.0,8.0,0.00151463,0.0011917
+2475,82.549133,0.0,0.0,37.0,76.251,163.0,214.0,57.0,102.0,114.431,126.0,172.0,108.0,127.0,135.38,144.0,172.0,0.0,2.0,15.9192,30.0,73.0,118.0,117.063,1.89012,2.96579,2.06075,8.0,8.0,8.0,0.0015032,0.0011917
+2476,82.5825,0.0,0.0,37.0,76.3265,163.0,219.0,58.0,101.0,114.307,127.0,187.0,106.0,127.0,135.525,144.0,174.0,0.0,2.0,16.0824,30.0,74.0,118.0,117.675,1.52994,2.97694,2.05704,8.0,8.0,8.0,0.00146605,0.0011917
+2477,82.615867,0.0,0.0,37.0,76.1455,163.0,212.0,55.0,102.0,114.383,126.0,181.0,101.0,127.0,135.426,144.0,175.0,0.0,2.0,15.9515,30.0,75.0,118.0,117.84,1.65079,2.98631,2.05934,8.0,8.0,8.0,0.00154035,0.0011917
+2478,82.649233,0.0,0.0,37.0,76.302,163.0,223.0,58.0,101.0,114.275,126.0,191.0,107.0,127.0,135.318,144.0,181.0,0.0,2.0,16.0263,30.0,78.0,117.0,116.539,1.65116,2.95719,2.04647,8.0,8.0,8.0,0.00155178,0.0011917
+2479,82.6826,0.0,0.0,37.0,76.1538,163.0,214.0,57.0,101.0,114.141,126.0,174.0,109.0,127.0,135.325,144.0,175.0,0.0,2.0,16.1284,30.0,75.0,117.0,116.405,1.47351,2.98714,2.02642,8.0,8.0,8.0,0.00162037,0.0011917
+2480,82.715967,0.0,0.0,37.0,76.1213,163.0,214.0,55.0,101.0,114.094,126.0,177.0,98.0,127.0,135.426,144.0,173.0,0.0,2.0,16.2174,30.0,76.0,117.0,116.61,1.68791,2.98733,2.04369,8.0,8.0,8.0,0.00149463,0.0011917
+2481,82.749333,0.0,0.0,37.0,76.3914,163.0,213.0,56.0,102.0,114.164,126.0,175.0,108.0,127.0,135.447,144.0,174.0,0.0,3.0,16.1688,30.0,78.0,117.0,116.967,1.38966,2.92453,1.99512,8.0,8.0,8.0,0.00159179,0.0011917
+2482,82.7827,0.0,0.0,37.0,76.4733,163.0,218.0,51.0,101.0,114.08,126.0,178.0,92.0,127.0,135.444,144.0,175.0,0.0,2.0,16.2235,30.0,79.0,117.0,116.829,1.62274,2.9706,2.05478,8.0,8.0,8.0,0.00153749,0.0011917
+2483,82.816067,0.0,0.0,37.0,76.5861,164.0,240.0,56.0,101.0,114.041,126.0,176.0,94.0,127.0,135.327,144.0,173.0,0.0,2.0,16.2076,30.0,74.0,116.0,115.544,1.77464,2.9743,2.10428,8.0,8.0,8.0,0.00169467,0.00119456
+2484,82.849433,0.0,0.0,37.0,76.6072,163.0,212.0,58.0,102.0,114.324,127.0,179.0,100.0,127.0,135.298,144.0,173.0,0.0,2.0,15.9525,30.0,80.0,117.0,117.644,1.49726,2.93864,2.03014,8.0,8.0,8.0,0.00154035,0.0011917
+2485,82.8828,0.0,0.0,37.0,76.3868,163.0,214.0,57.0,101.0,114.367,126.0,169.0,103.0,127.0,135.224,144.0,174.0,0.0,2.0,15.907,30.0,76.0,117.0,116.673,1.61078,2.96479,2.02458,8.0,8.0,8.0,0.00162037,0.0011917
+2486,82.916167,0.0,0.0,37.0,76.2883,163.0,212.0,56.0,101.0,114.281,126.0,176.0,101.0,127.0,135.229,144.0,173.0,0.0,2.0,15.9486,30.0,77.0,117.0,115.803,1.38109,2.92899,2.00061,8.0,8.0,8.0,0.0015775,0.0011917
+2487,82.949533,0.0,0.0,37.0,76.2084,163.0,212.0,58.0,101.0,113.973,126.0,179.0,106.0,127.0,135.263,144.0,176.0,0.0,2.0,16.2605,30.0,77.0,116.0,115.419,1.57683,2.97747,2.09334,8.0,8.0,8.0,0.00157465,0.0011917
+2488,82.9829,0.0,0.0,37.0,76.4129,163.0,230.0,56.0,101.0,114.085,126.0,173.0,92.0,127.0,135.208,144.0,174.0,0.0,3.0,16.1492,30.0,82.0,116.0,115.686,1.52971,2.98168,2.07278,8.0,8.0,8.0,0.00167181,0.0011917
+2489,83.016267,0.0,0.0,37.0,76.3957,163.0,213.0,57.0,101.0,113.995,126.0,188.0,99.0,127.0,135.314,144.0,173.0,0.0,2.0,16.2465,30.0,75.0,116.0,116.023,1.30039,2.92986,1.99441,8.0,8.0,8.0,0.00150606,0.0011917
+2490,83.049633,0.0,0.0,37.0,76.5043,163.0,213.0,59.0,101.0,113.822,126.0,180.0,98.0,127.0,135.275,144.0,175.0,0.0,3.0,16.3748,30.0,76.0,116.0,115.277,1.55963,3.00288,2.0284,8.0,8.0,8.0,0.00145748,0.0011917
+2491,83.083,0.0,0.0,37.0,76.5452,163.0,217.0,57.0,101.0,113.895,126.0,189.0,106.0,127.0,135.343,144.0,178.0,0.0,3.0,16.3853,31.0,78.0,116.0,115.539,1.43237,3.0341,2.02642,8.0,8.0,8.0,0.00146605,0.0011917
+2492,83.116367,0.0,0.0,37.0,76.3999,163.0,212.0,57.0,101.0,113.992,126.0,180.0,101.0,127.0,135.354,144.0,174.0,0.0,2.0,16.2759,30.0,75.0,117.0,116.101,1.72366,3.07086,2.11799,8.0,8.0,8.0,0.00156036,0.0011917
+2493,83.149733,0.0,0.0,37.0,76.465,163.0,212.0,57.0,101.0,113.994,126.0,180.0,101.0,127.0,135.384,144.0,176.0,0.0,2.0,16.3252,31.0,75.0,117.0,116.037,1.55426,2.97653,2.04832,8.0,8.0,8.0,0.00156893,0.0011917
+2494,83.1831,0.0,0.0,37.0,76.6214,163.0,213.0,58.0,101.0,114.047,127.0,179.0,108.0,127.0,135.504,144.0,177.0,0.0,2.0,16.3107,31.0,75.0,118.0,118.029,1.34708,2.9666,2.00337,8.0,8.0,8.0,0.00156036,0.0011917
+2495,83.216467,0.0,0.0,37.0,76.5376,163.0,213.0,58.0,101.0,114.049,127.0,178.0,107.0,127.0,135.351,144.0,173.0,0.0,2.0,16.2553,31.0,75.0,117.0,116.517,1.67111,3.06684,2.08444,8.0,8.0,8.0,0.0015032,0.0011917
+2496,83.249833,0.0,0.0,37.0,76.5434,163.0,214.0,59.0,101.0,114.114,126.0,178.0,108.0,127.0,135.497,145.0,172.0,0.0,2.0,16.245,30.0,78.0,117.0,116.089,1.4797,2.99023,2.05599,8.0,8.0,8.0,0.00153464,0.0011917
+2497,83.2832,0.0,0.0,37.0,76.4766,163.0,214.0,56.0,101.0,113.98,126.0,189.0,102.0,127.0,135.483,144.0,175.0,0.0,2.0,16.3381,31.0,75.0,117.0,115.82,1.58969,2.98581,2.0681,8.0,8.0,8.0,0.00157465,0.0011917
+2498,83.316567,0.0,0.0,37.0,76.6106,163.0,213.0,59.0,101.0,113.977,126.0,179.0,105.0,127.0,135.69,145.0,175.0,0.0,2.0,16.4198,31.0,73.0,118.0,116.565,1.64705,2.97255,2.05498,8.0,8.0,8.0,0.00148034,0.0011917
+2499,83.349933,0.0,0.0,37.0,76.6691,163.0,215.0,58.0,101.0,113.802,126.0,189.0,100.0,127.0,135.72,145.0,178.0,0.0,2.0,16.5766,31.0,77.0,118.0,116.949,1.43843,2.98549,2.01971,8.0,8.0,8.0,0.00153464,0.0011917
+2500,83.3833,0.0,0.0,37.0,76.8184,164.0,215.0,56.0,101.0,113.85,126.0,175.0,104.0,127.0,135.736,145.0,176.0,0.0,2.0,16.59,31.0,78.0,118.0,116.994,1.6761,3.01771,2.08341,8.0,8.0,8.0,0.00156036,0.0011917
+2501,83.416667,0.0,0.0,37.0,76.9063,164.0,217.0,56.0,101.0,113.984,126.0,174.0,108.0,127.0,135.633,145.0,176.0,0.0,2.0,16.4179,31.0,76.0,118.0,116.866,1.40486,2.95365,2.0329,8.0,8.0,8.0,0.00154893,0.0011917
+2502,83.450033,0.0,0.0,37.0,76.7461,164.0,212.0,55.0,101.0,114.159,127.0,184.0,90.0,127.0,135.635,145.0,177.0,0.0,2.0,16.2661,31.0,75.0,118.0,118.108,1.59473,2.94617,2.04079,8.0,8.0,8.0,0.00159179,0.0011917
+2503,83.4834,0.0,0.0,37.0,76.5703,164.0,218.0,55.0,101.0,114.095,126.0,180.0,96.0,127.0,135.46,144.0,190.0,0.0,2.0,16.2784,31.0,78.0,117.0,116.644,1.6734,3.00887,2.04718,8.0,8.0,8.0,0.00147748,0.0011917
+2504,83.516767,0.0,0.0,37.0,76.6185,164.0,220.0,54.0,101.0,114.21,126.0,181.0,104.0,127.0,135.643,145.0,175.0,0.0,2.0,16.2172,30.0,76.0,119.0,117.877,1.42887,2.95138,2.03623,8.0,8.0,8.0,0.0015775,0.00119456
+2505,83.550133,0.0,0.0,37.0,76.5284,163.0,213.0,54.0,101.0,114.14,127.0,178.0,105.0,127.0,135.526,144.0,172.0,0.0,2.0,16.2438,31.0,75.0,118.0,117.107,1.53798,2.9639,2.02491,8.0,8.0,8.0,0.00153464,0.0011917
+2506,83.5835,0.0,0.0,37.0,76.5551,163.0,212.0,54.0,101.0,114.23,126.0,177.0,109.0,127.0,135.57,145.0,178.0,0.0,2.0,16.1786,30.0,75.0,118.0,116.908,1.34969,2.91939,1.98865,8.0,8.0,8.0,0.00151177,0.0011917
+2507,83.616867,0.0,0.0,37.0,76.4594,163.0,215.0,58.0,101.0,114.053,127.0,172.0,107.0,127.0,135.504,144.0,187.0,0.0,2.0,16.3045,31.0,77.0,117.0,116.898,1.61192,3.00942,2.09498,8.0,8.0,8.0,0.00152892,0.0011917
+2508,83.650233,0.0,0.0,37.0,76.8398,164.0,214.0,53.0,101.0,114.101,126.0,179.0,103.0,127.0,135.728,145.0,187.0,0.0,2.0,16.3343,30.0,77.0,119.0,118.12,1.62617,3.02341,2.05697,8.0,8.0,8.0,0.00155464,0.0011917
+2509,83.6836,0.0,0.0,37.0,76.6578,164.0,216.0,56.0,101.0,114.202,127.0,178.0,108.0,127.0,135.729,145.0,175.0,0.0,2.0,16.2791,31.0,76.0,119.0,119.295,1.41204,2.96417,1.99147,8.0,8.0,8.0,0.00152606,0.0011917
+2510,83.716967,0.0,0.0,37.0,76.3738,163.0,214.0,56.0,101.0,114.164,127.0,188.0,108.0,127.0,135.507,145.0,174.0,0.0,2.0,16.2274,30.0,79.0,118.0,117.019,1.6226,2.93979,2.05893,8.0,8.0,8.0,0.00161465,0.0011917
+2511,83.750333,0.0,0.0,37.0,76.4104,163.0,214.0,56.0,101.0,114.16,127.0,184.0,105.0,127.0,135.565,145.0,176.0,0.0,2.0,16.2669,30.0,74.0,118.0,117.142,1.39364,2.96708,2.07947,8.0,8.0,8.0,0.00161465,0.0011917
+2512,83.7837,0.0,0.0,37.0,76.4849,163.0,215.0,57.0,101.0,114.191,127.0,179.0,107.0,127.0,135.614,145.0,174.0,0.0,2.0,16.221,30.0,74.0,118.0,117.429,1.47958,3.02319,2.08482,8.0,8.0,8.0,0.00151463,0.00119456
+2513,83.817067,0.0,0.0,37.0,76.5672,163.0,217.0,55.0,101.0,114.183,127.0,187.0,104.0,127.0,135.45,144.0,175.0,0.0,2.0,16.1894,31.0,76.0,118.0,116.67,1.4686,3.01462,2.08664,8.0,8.0,8.0,0.00159751,0.0011917
+2514,83.850433,0.0,0.0,37.0,76.668,163.0,214.0,56.0,101.0,114.187,127.0,183.0,104.0,127.0,135.476,144.0,173.0,0.0,2.0,16.1771,30.0,78.0,118.0,117.85,1.32296,2.9726,1.96205,8.0,8.0,8.0,0.00155464,0.0011917
+2515,83.8838,0.0,0.0,37.0,76.7083,163.0,213.0,55.0,101.0,114.174,127.0,185.0,104.0,127.0,135.323,144.0,172.0,0.0,2.0,16.1483,30.0,77.0,117.0,116.673,1.6051,3.01573,2.06471,8.0,8.0,8.0,0.00160608,0.0011917
+2516,83.917167,0.0,0.0,37.0,76.7191,164.0,218.0,56.0,101.0,114.209,127.0,198.0,97.0,127.0,135.427,144.0,175.0,0.0,2.0,16.1462,30.0,76.0,118.0,116.822,1.42157,2.96211,2.07844,8.0,8.0,8.0,0.00161751,0.0011917
+2517,83.950533,0.0,0.0,37.0,76.3667,163.0,216.0,56.0,101.0,113.942,127.0,185.0,104.0,127.0,135.289,144.0,174.0,0.0,2.0,16.326,31.0,82.0,116.0,116.0,1.59811,3.02227,2.0956,8.0,8.0,8.0,0.00164037,0.0011917
+2518,83.9839,0.0,0.0,37.0,76.7979,164.0,212.0,56.0,101.0,114.252,127.0,185.0,107.0,127.0,135.373,144.0,175.0,0.0,2.0,16.1161,30.0,75.0,117.0,116.251,1.53688,3.05179,2.07723,8.0,8.0,8.0,0.00158322,0.00119456
+2519,84.017267,0.0,0.0,37.0,76.637,163.0,214.0,56.0,101.0,114.374,127.0,188.0,102.0,127.0,135.41,144.0,175.0,0.0,2.0,16.0295,30.0,77.0,118.0,117.511,1.41102,3.04777,2.05155,8.0,8.0,8.0,0.00163466,0.0011917
+2520,84.050633,0.0,0.0,37.0,76.5923,163.0,216.0,13.0,101.0,114.333,127.0,190.0,106.0,127.0,135.254,144.0,175.0,0.0,2.0,16.0014,30.0,115.0,117.0,116.212,1.73118,3.02503,2.11677,8.0,8.0,8.0,0.000965935,0.00123743
+2521,84.084,0.0,0.0,37.0,76.7962,164.0,217.0,57.0,101.0,114.456,127.0,182.0,101.0,127.0,135.244,144.0,174.0,0.0,2.0,15.9232,30.0,77.0,118.0,116.962,1.40507,2.94457,1.99911,8.0,8.0,8.0,0.00150606,0.0011917
+2522,84.117367,0.0,0.0,37.0,76.83,164.0,214.0,55.0,102.0,114.698,127.0,178.0,98.0,127.0,135.169,144.0,177.0,0.0,2.0,15.6494,30.0,81.0,118.0,118.068,1.5443,2.99081,2.02226,8.0,8.0,8.0,0.00156036,0.0011917
+2523,84.150733,0.0,0.0,37.0,76.632,164.0,216.0,57.0,101.0,114.351,127.0,194.0,102.0,127.0,135.24,144.0,184.0,0.0,2.0,15.9849,30.0,79.0,117.0,116.713,1.77284,3.02103,2.05552,8.0,8.0,8.0,0.0015032,0.0011917
+2524,84.1841,0.0,0.0,37.0,76.8319,164.0,213.0,55.0,101.0,114.453,127.0,180.0,99.0,127.0,135.3,144.0,177.0,0.0,2.0,15.8768,30.0,77.0,118.0,117.348,1.40888,2.94295,1.97517,8.0,8.0,8.0,0.00158893,0.0011917
+2525,84.217467,0.0,0.0,37.0,76.8104,164.0,215.0,55.0,101.0,114.3,126.0,173.0,107.0,127.0,135.449,144.0,174.0,0.0,2.0,16.0772,30.0,77.0,118.0,116.315,1.62738,2.97666,2.06384,8.0,8.0,8.0,0.00149749,0.0011917
+2526,84.250833,0.0,0.0,37.0,76.9087,164.0,217.0,54.0,101.0,114.279,126.0,184.0,103.0,127.0,135.493,144.0,181.0,0.0,2.0,16.0933,30.0,77.0,118.0,116.959,1.4199,2.93106,2.01192,8.0,8.0,8.0,0.00158036,0.0011917
+2527,84.2842,0.0,0.0,37.0,76.6841,163.0,213.0,56.0,101.0,114.155,127.0,178.0,93.0,127.0,135.355,144.0,182.0,0.0,2.0,16.1827,30.0,75.0,117.0,116.352,1.70924,3.02126,2.12785,8.0,8.0,8.0,0.00145748,0.0011917
+2528,84.317567,0.0,0.0,37.0,76.8513,164.0,229.0,52.0,102.0,114.602,127.0,180.0,101.0,127.0,135.184,144.0,184.0,0.0,2.0,15.7404,30.0,79.0,117.0,116.988,1.72408,3.00919,2.0465,8.0,8.0,8.0,0.00149177,0.0011917
+2529,84.350933,0.0,0.0,37.0,76.6948,164.0,212.0,55.0,102.0,114.513,127.0,181.0,104.0,127.0,135.259,144.0,176.0,0.0,2.0,15.8254,30.0,75.0,118.0,117.67,1.49298,2.93093,2.01667,8.0,8.0,8.0,0.00153178,0.0011917
+2530,84.3843,0.0,0.0,37.0,76.6608,164.0,213.0,55.0,101.0,114.487,127.0,178.0,103.0,127.0,135.16,144.0,174.0,0.0,2.0,15.8302,30.0,75.0,117.0,117.184,1.82186,2.97457,2.04372,8.0,8.0,8.0,0.00150606,0.0011917
+2531,84.417667,0.0,0.0,37.0,76.6122,164.0,213.0,57.0,101.0,114.434,127.0,169.0,101.0,127.0,135.221,144.0,176.0,0.0,2.0,15.9217,30.0,76.0,117.0,116.463,1.56902,2.9825,2.01188,8.0,8.0,8.0,0.00145176,0.0011917
+2532,84.451033,0.0,0.0,37.0,76.9185,164.0,217.0,56.0,102.0,114.501,127.0,179.0,100.0,127.0,135.17,144.0,174.0,0.0,2.0,15.8244,30.0,80.0,117.0,117.167,2.06351,3.06244,2.06878,8.0,8.0,8.0,0.00160322,0.0011917
+2533,84.4844,0.0,0.0,37.0,76.7084,163.0,215.0,54.0,101.0,114.162,127.0,193.0,104.0,127.0,135.289,144.0,176.0,0.0,2.0,16.1575,30.0,79.0,117.0,116.0,1.88365,3.02218,2.07588,8.0,8.0,8.0,0.00152321,0.0011917
+2534,84.517767,0.0,0.0,37.0,76.8379,163.0,215.0,52.0,101.0,114.164,127.0,184.0,102.0,127.0,135.373,144.0,174.0,0.0,2.0,16.1517,31.0,77.0,117.0,117.457,1.44221,2.98648,2.00737,8.0,8.0,8.0,0.00158608,0.0011917
+2535,84.551133,0.0,0.0,37.0,77.0252,164.0,213.0,57.0,101.0,114.269,127.0,177.0,104.0,127.0,135.23,144.0,177.0,0.0,2.0,15.9993,30.0,76.0,117.0,116.562,1.74455,3.02497,2.09717,8.0,8.0,8.0,0.00156893,0.0011917
+2536,84.5845,0.0,0.0,37.0,77.1998,164.0,216.0,56.0,101.0,114.252,127.0,179.0,109.0,127.0,135.301,144.0,174.0,0.0,2.0,16.0587,30.0,74.0,117.0,116.664,1.43963,3.00982,2.04587,8.0,8.0,8.0,0.00164609,0.0011917
+2537,84.617867,0.0,0.0,38.0,77.2186,164.0,231.0,58.0,101.0,114.238,127.0,184.0,104.0,127.0,135.109,144.0,171.0,0.0,2.0,16.0146,30.0,77.0,116.0,117.069,1.64037,3.02897,2.06133,8.0,8.0,8.0,0.00176898,0.0011917
+2538,84.651233,0.0,0.0,37.0,77.407,164.0,238.0,58.0,102.0,114.477,126.0,182.0,105.0,127.0,135.272,144.0,175.0,0.0,2.0,15.8549,30.0,76.0,117.0,116.536,1.71775,3.00583,2.07938,8.0,8.0,8.0,0.00156607,0.00119456
+2539,84.6846,0.0,0.0,37.0,77.3828,164.0,216.0,59.0,102.0,114.416,127.0,182.0,105.0,127.0,135.284,144.0,172.0,0.0,2.0,15.9055,30.0,77.0,117.0,117.755,1.48432,2.9563,2.05009,8.0,8.0,8.0,0.00166895,0.0011917
+2540,84.717967,0.0,0.0,37.0,77.2837,164.0,221.0,58.0,101.0,114.123,126.0,183.0,105.0,127.0,135.229,144.0,171.0,0.0,2.0,16.1182,30.0,77.0,116.0,116.375,1.61815,2.96718,2.07063,8.0,8.0,8.0,0.00160894,0.0011917
+2541,84.751333,0.0,0.0,37.0,77.2691,164.0,219.0,57.0,101.0,114.142,126.0,177.0,98.0,127.0,135.398,144.0,175.0,0.0,2.0,16.2087,31.0,77.0,117.0,115.849,1.39239,2.98506,2.06325,8.0,8.0,8.0,0.00182613,0.00119456
+2542,84.7847,0.0,0.0,37.0,77.341,164.0,230.0,57.0,101.0,114.409,127.0,181.0,89.0,127.0,135.341,144.0,174.0,0.0,2.0,15.9057,30.0,75.0,118.0,117.58,1.59562,2.98548,2.05142,8.0,8.0,8.0,0.00190329,0.0011917
+2543,84.818067,0.0,0.0,37.0,77.3156,164.0,213.0,58.0,101.0,114.441,127.0,175.0,100.0,127.0,135.37,144.0,173.0,0.0,2.0,15.9328,30.0,74.0,118.0,117.271,1.77931,3.01894,2.0661,8.0,8.0,8.0,0.00156893,0.0011917
+2544,84.851433,0.0,0.0,38.0,77.4103,164.0,218.0,56.0,101.0,114.498,127.0,182.0,101.0,127.0,135.47,144.0,172.0,0.0,2.0,15.8902,30.0,79.0,118.0,118.279,1.44081,2.93281,2.06578,8.0,8.0,8.0,0.00175754,0.00119456
+2545,84.8848,0.0,0.0,37.0,77.4399,164.0,214.0,56.0,102.0,114.441,127.0,180.0,101.0,127.0,135.349,144.0,172.0,0.0,2.0,15.8951,30.0,80.0,118.0,116.924,1.59696,2.95656,2.0516,8.0,8.0,8.0,0.0017061,0.0011917
+2546,84.918167,0.0,0.0,37.0,77.4723,164.0,213.0,56.0,102.0,114.539,127.0,179.0,104.0,127.0,135.503,144.0,173.0,0.0,2.0,15.8661,30.0,76.0,119.0,117.749,1.42806,2.95309,2.02373,8.0,8.0,8.0,0.00179755,0.0011917
+2547,84.951533,0.0,0.0,37.0,77.1076,164.0,211.0,58.0,101.0,114.041,126.0,173.0,100.0,127.0,135.516,144.0,173.0,0.0,2.0,16.2922,31.0,78.0,118.0,117.254,1.638,3.06533,2.08209,8.0,8.0,8.0,0.00170896,0.0011917
+2548,84.9849,0.0,0.0,37.0,77.1389,164.0,212.0,56.0,101.0,114.175,127.0,174.0,99.0,127.0,135.544,145.0,173.0,0.0,2.0,16.2063,31.0,79.0,118.0,117.43,1.75366,3.0534,2.10951,8.0,8.0,8.0,0.00160322,0.00119456
+2549,85.018267,0.0,0.0,37.0,77.1305,164.0,211.0,57.0,101.0,114.477,127.0,182.0,101.0,127.0,135.597,145.0,175.0,0.0,2.0,15.9921,30.0,76.0,119.0,118.685,1.37783,2.96006,2.02866,8.0,8.0,8.0,0.0015775,0.0011917
+2550,85.051633,0.0,0.0,37.0,77.0581,164.0,215.0,57.0,101.0,114.497,127.0,176.0,108.0,127.0,135.399,144.0,176.0,0.0,2.0,15.8855,30.0,76.0,118.0,118.171,1.52186,2.94803,2.04175,8.0,8.0,8.0,0.00159179,0.0011917
+2551,85.085,0.0,0.0,37.0,76.9032,164.0,212.0,56.0,101.0,114.491,127.0,185.0,103.0,127.0,135.403,145.0,174.0,0.0,2.0,15.9167,30.0,76.0,118.0,117.068,1.46788,3.01046,2.03137,8.0,8.0,8.0,0.00154035,0.0011917
+2552,85.118367,0.0,0.0,37.0,77.0074,164.0,214.0,57.0,102.0,114.611,127.0,182.0,105.0,127.0,135.463,144.0,175.0,0.0,2.0,15.8163,30.0,73.0,119.0,118.781,1.86619,3.02158,2.07657,8.0,8.0,8.0,0.00158322,0.0011917
+2553,85.151733,0.0,0.0,37.0,77.077,164.0,217.0,56.0,101.0,114.376,127.0,191.0,102.0,127.0,135.456,144.0,171.0,0.0,2.0,15.994,30.0,76.0,118.0,117.917,1.84014,3.00657,2.04122,8.0,8.0,8.0,0.00158893,0.0011917
+2554,85.1851,0.0,0.0,37.0,77.0378,164.0,215.0,57.0,101.0,114.252,127.0,183.0,103.0,127.0,135.511,144.0,177.0,0.0,2.0,16.1428,30.0,76.0,118.0,118.049,1.48106,2.98472,1.99851,8.0,8.0,8.0,0.00148605,0.0011917
+2555,85.218467,0.0,0.0,37.0,77.0669,164.0,226.0,58.0,101.0,114.212,126.0,183.0,96.0,127.0,135.496,144.0,175.0,0.0,2.0,16.1679,30.0,79.0,118.0,117.088,1.87668,3.02933,2.10615,8.0,8.0,8.0,0.00168324,0.0011917
+2556,85.251833,0.0,0.0,37.0,77.1998,164.0,216.0,57.0,101.0,114.309,126.0,190.0,96.0,127.0,135.515,144.0,174.0,0.0,2.0,16.0473,30.0,73.0,118.0,117.081,1.52053,2.96247,2.05366,8.0,8.0,8.0,0.00164609,0.0011917
+2557,85.2852,0.0,0.0,37.0,77.0103,164.0,214.0,56.0,101.0,114.195,126.0,195.0,104.0,127.0,135.4,144.0,174.0,0.0,2.0,16.1289,30.0,75.0,117.0,116.793,1.61036,2.97733,2.034,8.0,8.0,8.0,0.00164609,0.0011917
+2558,85.318567,0.0,0.0,37.0,77.2358,164.0,220.0,58.0,101.0,114.163,126.0,190.0,102.0,127.0,135.493,144.0,176.0,0.0,2.0,16.1842,30.0,74.0,118.0,116.54,1.61094,3.00925,2.0479,8.0,8.0,8.0,0.00158893,0.0011917
+2559,85.351933,0.0,0.0,37.0,77.2696,164.0,212.0,58.0,101.0,114.178,127.0,193.0,100.0,127.0,135.507,144.0,178.0,0.0,2.0,16.188,31.0,76.0,118.0,117.688,1.45849,3.079,2.0922,8.0,8.0,8.0,0.0017061,0.00119456
+2560,85.3853,0.0,0.0,37.0,77.2795,164.0,241.0,57.0,101.0,114.178,126.0,175.0,107.0,127.0,135.396,144.0,172.0,0.0,2.0,16.1058,31.0,74.0,117.0,117.024,1.5981,2.98619,2.04393,8.0,8.0,8.0,0.0016118,0.00119456
+2561,85.418667,0.0,0.0,37.0,77.0932,164.0,214.0,54.0,101.0,114.183,126.0,183.0,98.0,127.0,135.44,144.0,173.0,0.0,2.0,16.1478,30.0,76.0,118.0,116.517,1.39278,2.95135,1.98736,8.0,8.0,8.0,0.00148891,0.0011917
+2562,85.452033,0.0,0.0,37.0,77.2288,164.0,226.0,56.0,102.0,114.393,127.0,184.0,107.0,127.0,135.324,144.0,173.0,0.0,2.0,15.9058,30.0,77.0,118.0,117.674,1.62224,2.90533,2.02866,8.0,8.0,8.0,0.00161751,0.0011917
+2563,85.4854,0.0,0.0,37.0,77.3126,165.0,213.0,58.0,101.0,114.135,126.0,178.0,99.0,127.0,135.616,145.0,175.0,0.0,2.0,16.2726,30.0,79.0,118.0,117.047,1.7103,3.00821,2.12965,8.0,8.0,8.0,0.00164037,0.0011917
+2564,85.518767,0.0,0.0,37.0,77.2233,164.0,217.0,58.0,101.0,114.095,126.0,179.0,107.0,127.0,135.64,144.0,175.0,0.0,2.0,16.2674,30.0,76.0,118.0,117.92,1.50595,2.98348,2.07719,8.0,8.0,8.0,0.00154035,0.0011917
+2565,85.552133,0.0,0.0,37.0,77.1334,164.0,215.0,58.0,101.0,114.252,126.0,189.0,102.0,127.0,135.499,144.0,176.0,0.0,2.0,16.1178,30.0,77.0,118.0,117.676,1.69271,3.0036,2.06096,8.0,8.0,8.0,0.00151749,0.0011917
+2566,85.5855,0.0,0.0,37.0,77.2117,164.0,215.0,56.0,102.0,114.453,127.0,191.0,101.0,127.0,135.54,144.0,173.0,0.0,2.0,15.9694,30.0,81.0,119.0,118.296,1.49836,2.96487,2.0298,8.0,8.0,8.0,0.0016318,0.0011917
+2567,85.618867,0.0,0.0,37.0,77.173,164.0,238.0,58.0,101.0,114.297,127.0,176.0,109.0,127.0,135.516,144.0,174.0,0.0,2.0,16.0599,30.0,72.0,118.0,117.757,1.69889,3.04143,2.06955,8.0,8.0,8.0,0.00158893,0.00119456
+2568,85.652233,0.0,0.0,37.0,77.0561,164.0,215.0,58.0,101.0,114.26,126.0,170.0,108.0,127.0,135.464,144.0,175.0,0.0,2.0,16.071,30.0,74.0,118.0,117.049,1.65214,3.01589,2.04547,8.0,8.0,8.0,0.00150606,0.0011917
+2569,85.6856,0.0,0.0,37.0,77.0009,164.0,220.0,57.0,102.0,114.418,127.0,181.0,106.0,127.0,135.539,144.0,172.0,0.0,2.0,15.9905,30.0,74.0,119.0,118.549,1.33596,2.94831,1.98778,8.0,8.0,8.0,0.00153178,0.0011917
+2570,85.718967,0.0,0.0,37.0,76.8984,164.0,217.0,58.0,102.0,114.428,127.0,179.0,103.0,127.0,135.397,144.0,173.0,0.0,2.0,15.9205,30.0,73.0,118.0,116.981,1.53662,2.91804,2.03358,8.0,8.0,8.0,0.00164037,0.0011917
+2571,85.752333,0.0,0.0,37.0,76.6912,164.0,218.0,57.0,101.0,114.33,126.0,187.0,102.0,127.0,135.42,144.0,177.0,0.0,2.0,16.0523,30.0,76.0,117.0,116.573,1.45146,2.98857,2.05,8.0,8.0,8.0,0.00162323,0.0011917
+2572,85.7857,0.0,0.0,37.0,76.7621,164.0,213.0,56.0,102.0,114.234,126.0,184.0,101.0,127.0,135.294,144.0,174.0,0.0,2.0,16.0486,30.0,76.0,117.0,116.489,1.7252,3.01481,2.08131,8.0,8.0,8.0,0.00158036,0.0011917
+2573,85.819067,0.0,0.0,37.0,77.0957,164.0,215.0,59.0,101.0,114.194,126.0,186.0,98.0,127.0,135.349,144.0,175.0,0.0,3.0,16.1092,30.0,77.0,117.0,115.842,1.63072,2.99009,2.04771,8.0,8.0,8.0,0.00152892,0.00119456
+2574,85.852433,0.0,0.0,37.0,76.9546,164.0,216.0,58.0,101.0,114.169,126.0,189.0,103.0,127.0,135.416,144.0,179.0,0.0,3.0,16.142,30.0,76.0,117.0,116.806,1.43583,2.91826,2.0202,8.0,8.0,8.0,0.00165181,0.0011917
+2575,85.8858,0.0,0.0,37.0,76.895,164.0,226.0,55.0,101.0,114.012,126.0,197.0,102.0,127.0,135.341,144.0,174.0,0.0,3.0,16.3049,30.0,78.0,116.0,115.477,1.69816,3.02002,2.07753,8.0,8.0,8.0,0.00171468,0.0011917
+2576,85.919167,0.0,0.0,37.0,76.9641,164.0,238.0,52.0,101.0,114.084,126.0,186.0,101.0,127.0,135.432,144.0,175.0,0.0,3.0,16.2562,30.0,77.0,117.0,115.589,1.41345,3.05878,2.03025,8.0,8.0,8.0,0.00167467,0.00119456
+2577,85.952533,0.0,0.0,37.0,76.8047,164.0,214.0,53.0,101.0,113.882,126.0,192.0,103.0,127.0,135.621,145.0,175.0,0.0,3.0,16.4999,31.0,77.0,117.0,116.707,1.53607,3.04296,2.04647,8.0,8.0,8.0,0.00171182,0.0011917
+2578,85.9859,0.0,0.0,37.0,76.703,164.0,212.0,52.0,101.0,113.676,126.0,181.0,106.0,127.0,135.567,145.0,173.0,0.0,3.0,16.7062,31.0,81.0,117.0,115.957,1.61211,3.10759,2.13056,8.0,8.0,8.0,0.0015775,0.0011917
+2579,86.019267,0.0,0.0,37.0,76.7008,164.0,229.0,52.0,99.0,113.286,126.0,193.0,107.0,127.0,135.732,145.0,177.0,0.0,3.0,17.1523,32.0,83.0,116.0,116.251,1.48499,3.20997,2.20637,8.0,8.0,8.0,0.00154893,0.0011917
+2580,86.052633,0.0,0.0,37.0,76.701,163.0,214.0,46.0,100.0,113.489,126.0,193.0,101.0,127.0,135.638,145.0,176.0,0.0,3.0,16.9263,32.0,84.0,117.0,115.815,1.81577,3.39005,2.33551,8.0,8.0,8.0,0.00160037,0.0011917
+2581,86.086,0.0,0.0,37.0,76.5647,163.0,212.0,53.0,99.0,113.196,126.0,188.0,103.0,127.0,135.994,146.0,177.0,0.0,3.0,17.4023,33.0,79.0,117.0,116.649,1.54941,3.41805,2.34992,8.0,8.0,8.0,0.00160894,0.0011917
+2582,86.119367,0.0,0.0,37.0,76.6909,164.0,217.0,47.0,99.0,113.029,126.0,196.0,99.0,127.0,136.057,146.0,186.0,0.0,3.0,17.5504,33.0,83.0,117.0,116.913,1.85806,3.33775,2.34547,8.0,8.0,8.0,0.0016118,0.0011917
+2583,86.152733,0.0,0.0,37.0,76.6725,164.0,215.0,53.0,99.0,113.149,126.0,196.0,106.0,127.0,136.133,146.0,181.0,0.0,3.0,17.531,33.0,84.0,118.0,116.777,1.68167,3.33267,2.29147,8.0,8.0,8.0,0.00152606,0.0011917
+2584,86.1861,0.0,0.0,37.0,76.4858,163.0,213.0,48.0,99.0,113.164,126.0,186.0,105.0,127.0,136.213,146.0,177.0,0.0,3.0,17.5152,33.0,84.0,118.0,117.943,1.51164,3.33759,2.30542,8.0,8.0,8.0,0.00158608,0.0011917
+2585,86.219467,0.0,0.0,37.0,76.3687,163.0,212.0,48.0,99.0,113.037,126.0,188.0,103.0,127.0,136.049,146.0,176.0,0.0,3.0,17.5296,33.0,83.0,117.0,116.408,1.69656,3.26361,2.30696,8.0,8.0,8.0,0.00160608,0.0011917
+2586,86.252833,0.0,0.0,37.0,76.4514,163.0,212.0,51.0,99.0,113.1,126.0,183.0,105.0,127.0,136.218,146.0,178.0,0.0,3.0,17.5639,33.0,83.0,118.0,117.742,1.42038,3.2468,2.20399,8.0,8.0,8.0,0.00155178,0.0011917
+2587,86.2862,0.0,0.0,37.0,76.3462,163.0,211.0,52.0,99.0,113.408,126.0,191.0,88.0,127.0,135.988,146.0,187.0,0.0,3.0,17.2132,33.0,85.0,118.0,117.362,1.64205,3.30254,2.29497,8.0,8.0,8.0,0.00156036,0.0011917
+2588,86.319567,0.0,0.0,37.0,76.3767,163.0,213.0,50.0,99.0,112.942,126.0,183.0,99.0,127.0,136.153,146.0,177.0,0.0,3.0,17.6497,33.0,89.0,117.0,116.969,1.70414,3.36853,2.32583,8.0,8.0,8.0,0.00156607,0.0011917
+2589,86.352933,0.0,0.0,37.0,76.5408,163.0,212.0,49.0,99.0,113.197,126.0,190.0,99.0,127.0,136.041,146.0,176.0,0.0,3.0,17.4119,33.0,82.0,118.0,117.468,1.35522,3.26246,2.21781,8.0,8.0,8.0,0.00143747,0.0011917
+2590,86.3863,0.0,0.0,37.0,76.5189,163.0,228.0,50.0,99.0,113.212,127.0,197.0,94.0,127.0,135.872,145.0,176.0,0.0,2.0,17.3396,33.0,81.0,117.0,116.959,1.54441,3.33867,2.27409,8.0,8.0,8.0,0.00153464,0.0011917
+2591,86.419667,0.0,0.0,37.0,76.3573,163.0,212.0,49.0,99.0,113.214,126.0,197.0,99.0,127.0,135.994,146.0,179.0,0.0,3.0,17.4294,33.0,83.0,117.0,115.873,1.42092,3.32587,2.2969,8.0,8.0,8.0,0.00151463,0.0011917
+2592,86.453033,0.0,0.0,37.0,76.3457,163.0,231.0,51.0,99.0,112.992,126.0,196.0,99.0,127.0,135.766,145.0,175.0,0.0,3.0,17.4719,33.0,82.0,116.0,116.019,1.67109,3.34895,2.32127,8.0,8.0,8.0,0.0016861,0.0011917
+2593,86.4864,0.0,0.0,37.0,76.6546,164.0,215.0,52.0,100.0,113.542,127.0,189.0,103.0,127.0,135.684,145.0,175.0,0.0,2.0,17.0041,32.0,81.0,117.0,116.723,1.51313,3.38209,2.26553,8.0,8.0,8.0,0.00163752,0.0011917
+2594,86.519767,0.0,0.0,37.0,76.6141,164.0,216.0,48.0,99.0,113.47,126.0,194.0,103.0,127.0,135.765,145.0,177.0,0.0,3.0,17.0987,32.0,84.0,117.0,117.19,1.43524,3.27128,2.24934,8.0,8.0,8.0,0.00170896,0.0011917
+2595,86.553133,0.0,0.0,37.0,76.6034,164.0,211.0,51.0,99.0,113.131,126.0,182.0,106.0,127.0,135.68,145.0,180.0,0.0,3.0,17.3394,33.0,81.0,116.0,115.633,1.71523,3.39026,2.2972,8.0,8.0,8.0,0.00180898,0.0011917
+2596,86.5865,0.0,0.0,37.0,76.7699,164.0,213.0,52.0,99.0,113.305,127.0,198.0,102.0,127.0,135.743,145.0,179.0,0.0,3.0,17.2321,33.0,80.0,117.0,116.541,1.5568,3.32295,2.30839,8.0,8.0,8.0,0.0016118,0.0011917
+2597,86.619867,0.0,0.0,37.0,76.8597,164.0,211.0,50.0,100.0,113.454,126.0,191.0,105.0,127.0,135.775,145.0,179.0,0.0,3.0,17.0901,32.0,81.0,117.0,116.634,1.76557,3.30692,2.27541,8.0,8.0,8.0,0.00172897,0.0011917
+2598,86.653233,0.0,0.0,37.0,76.6174,164.0,216.0,52.0,99.0,113.235,126.0,178.0,95.0,127.0,135.877,145.0,177.0,0.0,3.0,17.3093,33.0,81.0,117.0,116.988,1.8448,3.36743,2.29955,8.0,8.0,8.0,0.00164037,0.0011917
+2599,86.6866,0.0,0.0,37.0,76.5133,163.0,213.0,52.0,100.0,113.315,126.0,190.0,100.0,127.0,135.837,145.0,178.0,0.0,3.0,17.2263,32.0,81.0,117.0,116.8,1.51852,3.31764,2.271,8.0,8.0,8.0,0.00162037,0.0011917
+2600,86.719967,0.0,0.0,37.0,76.6816,164.0,222.0,52.0,100.0,113.427,126.0,193.0,102.0,127.0,135.837,145.0,181.0,0.0,3.0,17.1324,32.0,80.0,117.0,117.025,1.74218,3.36901,2.27409,8.0,8.0,8.0,0.00176612,0.0011917
+2601,86.753333,0.0,0.0,37.0,76.6882,164.0,213.0,52.0,100.0,113.324,126.0,177.0,89.0,127.0,135.765,145.0,180.0,0.0,3.0,17.1988,32.0,84.0,117.0,116.156,1.41029,3.32321,2.24883,8.0,8.0,8.0,0.00184614,0.0011917
+2602,86.7867,0.0,0.0,37.0,76.409,163.0,212.0,52.0,99.0,113.171,126.0,174.0,87.0,127.0,135.723,145.0,179.0,0.0,3.0,17.275,32.0,83.0,116.0,116.243,1.64265,3.31883,2.28619,8.0,8.0,8.0,0.00167181,0.0011917
+2603,86.820067,0.0,0.0,37.0,76.5797,163.0,213.0,52.0,100.0,113.427,126.0,188.0,104.0,127.0,135.808,146.0,179.0,0.0,3.0,17.1689,32.0,82.0,117.0,116.839,1.64251,3.30115,2.30293,8.0,8.0,8.0,0.00167753,0.0011917
+2604,86.853433,0.0,0.0,37.0,76.5489,163.0,214.0,50.0,100.0,113.463,127.0,183.0,91.0,127.0,135.804,145.0,181.0,0.0,2.0,17.0709,32.0,80.0,118.0,117.63,1.4813,3.32889,2.31864,8.0,8.0,8.0,0.00165466,0.00119456
+2605,86.8868,0.0,0.0,37.0,76.4133,163.0,227.0,52.0,99.0,113.44,127.0,182.0,108.0,127.0,135.773,145.0,177.0,0.0,2.0,17.0867,32.0,82.0,117.0,116.736,1.66128,3.24915,2.25673,8.0,8.0,8.0,0.00177755,0.0011917
+2606,86.920167,0.0,0.0,37.0,76.4758,163.0,214.0,53.0,99.0,113.292,126.0,187.0,80.0,127.0,135.897,146.0,177.0,0.0,3.0,17.2695,32.0,82.0,117.0,115.723,1.44265,3.24041,2.24152,8.0,8.0,8.0,0.00153464,0.0011917
+2607,86.953533,0.0,0.0,37.0,76.236,163.0,212.0,53.0,99.0,113.358,126.0,182.0,86.0,127.0,135.755,145.0,179.0,0.0,3.0,17.1744,33.0,79.0,117.0,116.967,1.63633,3.33997,2.3192,8.0,8.0,8.0,0.00156893,0.0011917
+2608,86.9869,0.0,0.0,37.0,76.3309,163.0,212.0,53.0,99.0,112.97,126.0,182.0,92.0,127.0,135.941,145.0,178.0,0.0,3.0,17.5614,33.0,81.0,117.0,115.795,1.65638,3.35674,2.32426,8.0,8.0,8.0,0.00167181,0.0011917
+2609,87.020267,0.0,0.0,37.0,76.4581,163.0,210.0,49.0,98.0,112.78,126.0,173.0,92.0,127.0,136.148,146.0,177.0,0.0,3.0,17.8295,34.0,81.0,118.0,117.111,1.4337,3.26537,2.2754,8.0,8.0,8.0,0.00165752,0.0011917
+2610,87.053633,0.0,0.0,37.0,76.616,164.0,210.0,47.0,98.0,112.45,126.0,189.0,93.0,127.0,136.249,146.0,179.0,0.0,3.0,18.1997,34.0,85.0,117.0,116.094,1.70981,3.36509,2.33613,8.0,8.0,8.0,0.00152606,0.00119456
+2611,87.087,0.0,0.0,37.0,76.5074,163.0,212.0,49.0,98.0,112.391,126.0,171.0,93.0,127.0,136.347,146.0,183.0,0.0,3.0,18.2896,34.0,84.0,117.0,115.872,1.52576,3.42987,2.42963,8.0,8.0,8.0,0.00177755,0.0011917
+2612,87.120367,0.0,0.0,37.0,76.4379,163.0,216.0,48.0,97.0,112.242,126.0,190.0,92.0,127.0,136.228,146.0,177.0,0.0,3.0,18.3612,35.0,83.0,117.0,116.028,1.76888,3.48353,2.44355,8.0,8.0,8.0,0.00154035,0.0011917
+2613,87.153733,0.0,0.0,37.0,76.4322,163.0,231.0,48.0,97.0,111.957,126.0,170.0,102.0,127.0,136.308,147.0,184.0,0.0,3.0,18.6603,35.0,86.0,116.0,115.882,1.62384,3.50736,2.41751,8.0,8.0,8.0,0.00170896,0.0011917
+2614,87.1871,0.0,0.0,37.0,76.461,163.0,212.0,48.0,97.0,111.879,126.0,185.0,97.0,127.0,136.469,147.0,179.0,0.0,3.0,18.7544,35.0,84.0,117.0,116.175,1.38947,3.54164,2.41789,8.0,8.0,8.0,0.00156893,0.0011917
+2615,87.220467,0.0,0.0,37.0,76.3917,163.0,216.0,47.0,96.0,111.833,126.0,183.0,102.0,127.0,136.45,147.0,181.0,0.0,3.0,18.853,35.0,87.0,117.0,116.085,1.65343,3.63637,2.48169,8.0,8.0,8.0,0.00152606,0.0011917
+2616,87.253833,0.0,0.0,37.0,76.4931,163.0,214.0,48.0,97.0,111.894,126.0,188.0,89.0,127.0,136.599,147.0,182.0,0.0,3.0,18.8579,35.0,86.0,117.0,116.885,1.42725,3.58541,2.47977,8.0,8.0,8.0,0.00161465,0.0011917
+2617,87.2872,0.0,0.0,37.0,76.4557,163.0,215.0,48.0,97.0,111.873,126.0,185.0,99.0,127.0,136.421,147.0,178.0,0.0,3.0,18.7971,35.0,88.0,117.0,116.08,1.69211,3.54615,2.48017,8.0,8.0,8.0,0.00152606,0.0011917
+2618,87.320567,0.0,0.0,37.0,76.52,163.0,213.0,46.0,96.0,111.583,126.0,190.0,103.0,127.0,136.5,147.0,176.0,0.0,3.0,19.0497,35.0,87.0,116.0,115.57,1.49741,3.56241,2.47732,8.0,8.0,8.0,0.00154321,0.0011917
+2619,87.353933,0.0,0.0,37.0,76.524,163.0,213.0,48.0,96.0,111.744,126.0,184.0,102.0,127.0,136.648,147.0,181.0,0.0,3.0,19.0268,36.0,86.0,117.0,117.351,1.44141,3.63168,2.46073,8.0,8.0,8.0,0.0015775,0.0011917
+2620,87.3873,0.0,0.0,37.0,76.7652,164.0,215.0,46.0,97.0,111.858,126.0,187.0,104.0,127.0,136.493,147.0,180.0,0.0,3.0,18.8534,35.0,89.0,117.0,116.382,1.56217,3.57093,2.48615,8.0,8.0,8.0,0.00148034,0.0011917
+2621,87.420667,0.0,0.0,37.0,76.7329,164.0,214.0,47.0,97.0,111.991,126.0,182.0,81.0,127.0,136.468,147.0,181.0,0.0,3.0,18.7889,35.0,89.0,117.0,116.085,1.36881,3.51709,2.47825,8.0,8.0,8.0,0.00158608,0.0011917
+2622,87.454033,0.0,0.0,37.0,76.742,164.0,214.0,45.0,97.0,111.812,126.0,194.0,82.0,127.0,136.492,147.0,178.0,0.0,3.0,18.8909,35.0,86.0,117.0,116.952,1.57619,3.55422,2.45342,8.0,8.0,8.0,0.00147462,0.0011917
+2623,87.4874,0.0,0.0,37.0,76.9518,165.0,210.0,47.0,97.0,111.867,126.0,189.0,84.0,127.0,136.689,147.0,183.0,0.0,3.0,18.9838,36.0,92.0,118.0,116.394,1.79714,3.61356,2.53253,8.0,8.0,8.0,0.00165466,0.0011917
+2624,87.520767,0.0,0.0,37.0,77.0066,165.0,235.0,46.0,97.0,111.923,126.0,182.0,87.0,127.0,136.722,147.0,180.0,0.0,3.0,18.909,35.0,87.0,118.0,117.287,1.39944,3.51392,2.52709,8.0,8.0,8.0,0.00170896,0.0011917
+2625,87.554133,0.0,0.0,37.0,76.8316,164.0,214.0,49.0,97.0,111.75,126.0,179.0,82.0,127.0,136.684,147.0,182.0,0.0,3.0,19.0343,36.0,88.0,117.0,116.654,1.53865,3.49029,2.48836,8.0,8.0,8.0,0.00156036,0.0011917
+2626,87.5875,0.0,0.0,37.0,76.9495,164.0,217.0,45.0,97.0,111.916,126.0,204.0,106.0,127.0,136.889,147.0,182.0,0.0,3.0,18.9778,36.0,86.0,118.0,117.438,1.31286,3.50695,2.44251,8.0,8.0,8.0,0.00174611,0.0011917
+2627,87.620867,0.0,0.0,37.0,77.0097,164.0,231.0,48.0,96.0,111.659,126.0,188.0,90.0,127.0,136.827,147.0,180.0,0.0,3.0,19.1771,36.0,93.0,118.0,117.442,1.57351,3.57545,2.50551,8.0,8.0,8.0,0.00172039,0.0011917
+2628,87.654233,0.0,0.0,37.0,76.7447,164.0,236.0,49.0,97.0,111.793,126.0,192.0,89.0,127.0,136.892,147.0,186.0,0.0,3.0,19.0588,36.0,88.0,118.0,117.08,1.61584,3.62494,2.53563,8.0,8.0,8.0,0.00162894,0.00119456
+2629,87.6876,0.0,0.0,37.0,76.9165,164.0,216.0,47.0,97.0,111.772,126.0,186.0,82.0,127.0,136.896,147.0,183.0,0.0,3.0,19.0721,36.0,86.0,118.0,117.528,1.34039,3.60031,2.47142,8.0,8.0,8.0,0.00156036,0.0011917
+2630,87.720967,0.0,0.0,37.0,76.8794,164.0,212.0,47.0,97.0,111.787,126.0,190.0,87.0,127.0,136.617,147.0,180.0,0.0,3.0,18.9467,36.0,85.0,117.0,116.506,1.5316,3.53597,2.46347,8.0,8.0,8.0,0.00156321,0.0011917
+2631,87.754333,0.0,0.0,37.0,76.7907,164.0,217.0,49.0,97.0,111.886,126.0,183.0,91.0,127.0,136.657,147.0,183.0,0.0,3.0,18.9104,36.0,89.0,118.0,116.951,1.39851,3.54949,2.46604,8.0,8.0,8.0,0.00158608,0.0011917
+2632,87.7877,0.0,0.0,37.0,76.6468,163.0,215.0,47.0,96.0,111.663,126.0,200.0,102.0,127.0,136.715,147.0,180.0,0.0,3.0,19.1218,36.0,88.0,117.0,116.943,1.56551,3.63955,2.56646,8.0,8.0,8.0,0.00160608,0.0011917
+2633,87.821067,0.0,0.0,37.0,76.7434,164.0,213.0,49.0,97.0,111.779,126.0,184.0,95.0,127.0,136.769,147.0,181.0,0.0,3.0,19.0262,36.0,87.0,118.0,116.848,1.55534,3.62162,2.53155,8.0,8.0,8.0,0.00154035,0.0011917
+2634,87.854433,0.0,0.0,37.0,76.8887,164.0,212.0,48.0,97.0,111.845,126.0,193.0,97.0,127.0,136.719,147.0,180.0,0.0,3.0,18.9517,35.0,89.0,117.0,117.236,1.37522,3.56976,2.52465,8.0,8.0,8.0,0.00145176,0.0011917
+2635,87.8878,0.0,0.0,37.0,76.7685,164.0,213.0,45.0,97.0,111.841,126.0,183.0,104.0,127.0,136.399,147.0,180.0,0.0,3.0,18.8728,35.0,88.0,117.0,116.274,1.57888,3.5665,2.49145,8.0,8.0,8.0,0.00152892,0.0011917
+2636,87.921167,0.0,0.0,37.0,76.7943,164.0,215.0,44.0,97.0,111.84,126.0,189.0,99.0,127.0,136.427,147.0,178.0,0.0,3.0,18.8672,35.0,90.0,117.0,116.256,1.38642,3.60858,2.45581,8.0,8.0,8.0,0.00151463,0.0011917
+2637,87.954533,0.0,0.0,37.0,76.992,164.0,214.0,45.0,97.0,112.145,126.0,203.0,97.0,127.0,136.495,147.0,178.0,0.0,3.0,18.6315,35.0,86.0,117.0,117.738,1.586,3.67275,2.47527,8.0,8.0,8.0,0.00161751,0.0011917
+2638,87.9879,0.0,0.0,37.0,76.885,164.0,215.0,42.0,97.0,112.031,126.0,182.0,99.0,127.0,136.426,147.0,179.0,0.0,3.0,18.6958,35.0,88.0,117.0,116.624,1.6105,3.60702,2.48003,8.0,8.0,8.0,0.00168324,0.0011917
+2639,88.021267,0.0,0.0,37.0,76.8219,164.0,236.0,47.0,97.0,112.032,126.0,188.0,82.0,127.0,136.385,147.0,181.0,0.0,3.0,18.6873,35.0,88.0,117.0,116.919,1.52367,3.56954,2.51054,8.0,8.0,8.0,0.00161465,0.00119456
+2640,88.054633,0.0,0.0,37.0,76.9562,164.0,216.0,47.0,97.0,111.936,126.0,181.0,87.0,127.0,136.331,147.0,181.0,0.0,3.0,18.721,35.0,88.0,116.0,115.69,1.78491,3.55812,2.48843,8.0,8.0,8.0,0.00152035,0.00119742
+2641,88.088,0.0,0.0,37.0,77.0148,164.0,214.0,45.0,97.0,112.025,126.0,185.0,82.0,127.0,136.361,147.0,178.0,0.0,3.0,18.6789,35.0,87.0,116.0,115.373,1.4911,3.50075,2.41558,8.0,8.0,8.0,0.00158608,0.0011917
+2642,88.121367,0.0,0.0,37.0,77.1255,164.0,237.0,47.0,97.0,111.934,126.0,190.0,84.0,127.0,136.33,147.0,182.0,0.0,3.0,18.7565,35.0,85.0,116.0,115.91,1.70396,3.54371,2.47859,8.0,8.0,8.0,0.00160322,0.00119456
+2643,88.154733,0.0,0.0,37.0,77.1692,164.0,217.0,47.0,96.0,111.949,126.0,185.0,81.0,127.0,136.183,146.0,189.0,0.0,3.0,18.7418,36.0,87.0,116.0,115.934,1.82018,3.6058,2.47083,8.0,8.0,8.0,0.00149463,0.00119456
+2644,88.1881,0.0,0.0,37.0,77.2449,164.0,217.0,43.0,97.0,112.208,126.0,183.0,90.0,127.0,136.112,146.0,189.0,0.0,3.0,18.4139,35.0,93.0,116.0,116.543,1.46708,3.60856,2.42011,8.0,8.0,8.0,0.0016318,0.00119456
+2645,88.221467,0.0,0.0,37.0,77.1743,164.0,229.0,44.0,97.0,112.155,126.0,191.0,88.0,127.0,136.055,146.0,188.0,0.0,3.0,18.4873,35.0,86.0,116.0,115.695,1.73116,3.54112,2.48265,8.0,8.0,8.0,0.00161465,0.00119742
+2646,88.254833,0.0,0.0,37.0,76.9981,164.0,213.0,46.0,97.0,112.081,126.0,206.0,103.0,127.0,136.198,146.0,182.0,0.0,3.0,18.5733,35.0,88.0,116.0,116.088,1.47782,3.5424,2.43006,8.0,8.0,8.0,0.00168896,0.0011917
+2647,88.2882,0.0,0.0,37.0,77.1822,165.0,217.0,12.0,97.0,112.058,126.0,201.0,91.0,127.0,136.175,146.0,180.0,0.0,3.0,18.5904,35.0,118.0,116.0,116.338,1.88779,3.65981,2.49059,8.0,8.0,8.0,0.000900206,0.00132888
+2648,88.321567,0.0,0.0,37.0,77.2168,165.0,214.0,9.0,97.0,111.753,126.0,209.0,88.0,127.0,136.205,146.0,187.0,0.0,3.0,18.8624,35.0,121.0,116.0,114.722,1.71574,3.61463,2.50131,8.0,8.0,8.0,0.000983082,0.00132888
+2649,88.354933,0.0,0.0,37.0,77.2398,165.0,215.0,12.0,96.0,111.734,126.0,203.0,85.0,127.0,136.384,147.0,186.0,0.0,3.0,18.9563,36.0,117.0,116.0,115.572,1.40061,3.50957,2.42864,8.0,8.0,8.0,0.00102023,0.00131744
+2650,88.3883,0.0,0.0,37.0,77.3274,165.0,214.0,46.0,97.0,112.043,126.0,174.0,95.0,127.0,136.272,147.0,188.0,0.0,3.0,18.6178,35.0,85.0,116.0,116.23,1.6496,3.63419,2.50061,8.0,8.0,8.0,0.00153178,0.0011917
+2651,88.421667,0.0,0.0,37.0,77.4024,165.0,212.0,45.0,97.0,112.131,126.0,189.0,96.0,127.0,136.241,147.0,181.0,0.0,3.0,18.5753,35.0,89.0,116.0,115.919,1.43114,3.62867,2.45814,8.0,8.0,8.0,0.00168324,0.0011917
+2652,88.455033,0.0,0.0,37.0,77.1098,165.0,227.0,44.0,97.0,112.256,126.0,188.0,84.0,127.0,136.073,146.0,180.0,0.0,3.0,18.366,35.0,89.0,116.0,116.354,1.68187,3.63499,2.56165,8.0,8.0,8.0,0.00180613,0.00119742
+2653,88.4884,0.0,0.0,37.0,77.0932,165.0,211.0,41.0,97.0,111.941,126.0,194.0,80.0,127.0,136.155,146.0,179.0,0.0,3.0,18.6836,35.0,89.0,116.0,115.252,1.5555,3.6554,2.46143,8.0,8.0,8.0,0.00163466,0.0011917
+2654,88.521767,0.0,0.0,37.0,77.2043,165.0,212.0,47.0,97.0,111.934,126.0,200.0,101.0,127.0,136.388,147.0,181.0,0.0,3.0,18.7768,36.0,88.0,117.0,116.889,1.43756,3.49473,2.50043,8.0,8.0,8.0,0.00179184,0.0011917
+2655,88.555133,0.0,0.0,37.0,77.0236,164.0,212.0,44.0,96.0,111.856,126.0,183.0,83.0,127.0,136.302,147.0,184.0,0.0,3.0,18.8054,36.0,90.0,116.0,115.222,1.7393,3.5694,2.55384,8.0,8.0,8.0,0.00179755,0.0011917
+2656,88.5885,0.0,0.0,37.0,76.762,163.0,214.0,46.0,96.0,111.818,126.0,193.0,94.0,127.0,136.214,146.0,182.0,0.0,3.0,18.8023,35.0,88.0,116.0,114.81,1.61108,3.6091,2.51053,8.0,8.0,8.0,0.00170896,0.0011917
+2657,88.621867,0.0,0.0,37.0,77.2549,164.0,237.0,45.0,97.0,112.201,126.0,189.0,105.0,127.0,136.138,146.0,179.0,0.0,3.0,18.4423,35.0,89.0,116.0,116.25,1.70742,3.62525,2.49353,8.0,8.0,8.0,0.00156893,0.00119456
+2658,88.655233,0.0,0.0,37.0,77.2739,165.0,234.0,44.0,97.0,112.28,126.0,203.0,93.0,127.0,136.042,146.0,179.0,0.0,3.0,18.3864,34.0,87.0,116.0,115.893,1.63016,3.5401,2.48307,8.0,8.0,8.0,0.00170039,0.0011917
+2659,88.6886,0.0,0.0,37.0,77.1179,164.0,234.0,45.0,97.0,112.258,126.0,185.0,91.0,127.0,136.189,147.0,180.0,0.0,3.0,18.4357,35.0,89.0,116.0,116.455,1.478,3.5492,2.49503,8.0,8.0,8.0,0.00168324,0.0011917
+2660,88.721967,0.0,0.0,37.0,77.0985,164.0,212.0,46.0,97.0,112.276,126.0,183.0,84.0,127.0,136.135,146.0,178.0,0.0,3.0,18.396,35.0,87.0,116.0,115.721,1.70558,3.50361,2.48444,8.0,8.0,8.0,0.00157179,0.0011917
+2661,88.755333,0.0,0.0,37.0,77.1889,164.0,215.0,47.0,97.0,112.268,126.0,189.0,91.0,127.0,136.209,147.0,182.0,0.0,3.0,18.424,35.0,88.0,117.0,116.04,1.40559,3.46373,2.44114,8.0,8.0,8.0,0.00155464,0.0011917
+2662,88.7887,0.0,0.0,37.0,77.2893,164.0,216.0,47.0,97.0,111.971,126.0,189.0,87.0,127.0,136.308,147.0,180.0,0.0,3.0,18.6765,35.0,85.0,116.0,115.964,1.65263,3.58715,2.48547,8.0,8.0,8.0,0.00173182,0.00119456
+2663,88.822067,0.0,0.0,37.0,77.2582,164.0,215.0,47.0,97.0,111.975,126.0,190.0,88.0,127.0,136.254,147.0,177.0,0.0,3.0,18.6962,35.0,88.0,116.0,115.892,1.58851,3.60182,2.48729,8.0,8.0,8.0,0.00174326,0.0011917
+2664,88.855433,0.0,0.0,37.0,77.5905,164.0,214.0,44.0,97.0,112.088,126.0,192.0,92.0,127.0,136.321,146.0,179.0,0.0,3.0,18.5783,35.0,90.0,116.0,116.25,1.51171,3.56302,2.49593,8.0,8.0,8.0,0.00167753,0.00119456
+2665,88.8888,0.0,0.0,37.0,77.4038,165.0,212.0,45.0,97.0,112.228,126.0,185.0,95.0,127.0,136.177,147.0,179.0,0.0,3.0,18.4507,35.0,87.0,116.0,116.839,1.67522,3.52012,2.51055,8.0,8.0,8.0,0.00163466,0.0011917
+2666,88.922167,0.0,0.0,37.0,77.3918,165.0,213.0,45.0,97.0,112.251,126.0,197.0,104.0,127.0,136.145,146.0,181.0,0.0,3.0,18.4183,35.0,86.0,116.0,116.818,1.53767,3.5329,2.45596,8.0,8.0,8.0,0.0018147,0.0011917
+2667,88.955533,0.0,0.0,37.0,77.1837,164.0,218.0,46.0,97.0,112.227,126.0,194.0,106.0,127.0,136.148,147.0,179.0,0.0,3.0,18.4761,35.0,86.0,116.0,116.768,1.7708,3.54915,2.49582,8.0,8.0,8.0,0.00165752,0.0011917
+2668,88.9889,0.0,0.0,37.0,77.4626,165.0,213.0,47.0,97.0,112.022,126.0,201.0,104.0,127.0,136.371,147.0,179.0,0.0,3.0,18.6925,35.0,85.0,117.0,115.833,1.74607,3.63099,2.57693,8.0,8.0,8.0,0.0017604,0.0011917
+2669,89.022267,0.0,0.0,37.0,77.4425,165.0,216.0,47.0,96.0,111.787,126.0,189.0,86.0,127.0,136.467,147.0,178.0,0.0,3.0,18.8999,36.0,90.0,117.0,116.469,1.43937,3.5416,2.46211,8.0,8.0,8.0,0.00164895,0.0011917
+2670,89.055633,0.0,0.0,37.0,77.4828,164.0,215.0,48.0,97.0,111.879,126.0,194.0,85.0,127.0,136.379,146.0,177.0,0.0,3.0,18.8126,35.0,84.0,116.0,116.265,1.60876,3.55645,2.51115,8.0,8.0,8.0,0.00150892,0.0011917
+2671,89.089,0.0,0.0,37.0,77.486,165.0,217.0,48.0,97.0,111.913,126.0,168.0,97.0,127.0,136.402,147.0,179.0,0.0,3.0,18.7755,35.0,88.0,116.0,115.948,1.44405,3.56531,2.48775,8.0,8.0,8.0,0.00155178,0.0011917
+2672,89.122367,0.0,0.0,37.0,77.2755,164.0,217.0,44.0,97.0,111.728,126.0,178.0,99.0,127.0,136.338,147.0,182.0,0.0,3.0,18.893,36.0,91.0,116.0,115.621,1.71387,3.54296,2.46309,8.0,8.0,8.0,0.00158893,0.0011917
+2673,89.155733,0.0,0.0,37.0,77.4465,164.0,217.0,46.0,96.0,111.501,126.0,183.0,91.0,127.0,136.516,147.0,181.0,0.0,3.0,19.155,36.0,86.0,116.0,115.034,1.84194,3.55634,2.52542,8.0,8.0,8.0,0.00177469,0.00119456
+2674,89.1891,0.0,0.0,37.0,77.4398,164.0,215.0,48.0,96.0,111.573,126.0,189.0,92.0,127.0,136.604,147.0,178.0,0.0,3.0,19.1133,36.0,88.0,117.0,116.254,1.67579,3.54396,2.45815,8.0,8.0,8.0,0.00187186,0.0011917
+2675,89.222467,0.0,0.0,37.0,77.42,165.0,212.0,48.0,96.0,111.543,126.0,180.0,88.0,127.0,136.513,147.0,181.0,0.0,3.0,19.1496,36.0,92.0,116.0,115.147,2.24223,3.60969,2.54648,8.0,8.0,8.0,0.00178898,0.0011917
+2676,89.255833,0.0,0.0,37.0,77.6147,165.0,216.0,46.0,96.0,111.353,126.0,185.0,93.0,127.0,136.613,147.0,180.0,0.0,3.0,19.3561,36.0,88.0,116.0,115.495,1.77709,3.60752,2.49019,8.0,8.0,8.0,0.00160894,0.0011917
+2677,89.2892,0.0,0.0,37.0,77.4511,165.0,213.0,47.0,96.0,111.449,126.0,180.0,96.0,127.0,136.474,147.0,179.0,0.0,3.0,19.1654,36.0,86.0,116.0,115.66,2.02515,3.66025,2.50855,8.0,8.0,8.0,0.00156607,0.0011917
+2678,89.322567,0.0,0.0,37.0,77.277,164.0,213.0,47.0,96.0,111.34,126.0,188.0,96.0,127.0,136.586,147.0,181.0,0.0,3.0,19.3091,36.0,90.0,116.0,115.134,1.91849,3.61168,2.53017,8.0,8.0,8.0,0.00148891,0.0011917
+2679,89.355933,0.0,0.0,37.0,77.2225,164.0,213.0,46.0,96.0,111.341,126.0,208.0,89.0,127.0,136.618,147.0,183.0,0.0,3.0,19.387,36.0,87.0,116.0,116.509,1.57242,3.66064,2.47346,8.0,8.0,8.0,0.00150034,0.0011917
+2680,89.3893,0.0,0.0,37.0,77.1165,164.0,214.0,49.0,96.0,111.412,126.0,198.0,103.0,127.0,136.534,147.0,181.0,0.0,3.0,19.2582,36.0,89.0,116.0,115.722,2.04223,3.62845,2.52901,8.0,8.0,8.0,0.00172039,0.0011917
+2681,89.422667,0.0,0.0,37.0,77.2159,164.0,215.0,45.0,96.0,111.528,126.0,190.0,84.0,127.0,136.518,147.0,184.0,0.0,3.0,19.1563,36.0,94.0,116.0,115.228,1.55088,3.47465,2.45247,8.0,8.0,8.0,0.00165752,0.0011917
+2682,89.456033,0.0,0.0,37.0,77.0878,164.0,215.0,43.0,96.0,111.501,126.0,193.0,89.0,127.0,136.556,147.0,185.0,0.0,3.0,19.1454,36.0,96.0,116.0,115.369,1.68902,3.49849,2.46405,8.0,8.0,8.0,0.00164323,0.0011917
+2683,89.4894,0.0,0.0,37.0,77.1182,165.0,213.0,48.0,96.0,111.314,126.0,195.0,91.0,127.0,136.425,147.0,184.0,0.0,3.0,19.3143,36.0,91.0,116.0,114.221,1.72542,3.56853,2.55757,8.0,8.0,8.0,0.00145748,0.0011917
+2684,89.522767,0.0,0.0,37.0,77.3332,165.0,214.0,45.0,96.0,111.509,126.0,183.0,103.0,127.0,136.59,147.0,182.0,0.0,3.0,19.1576,36.0,88.0,116.0,115.614,1.3931,3.53637,2.5065,8.0,8.0,8.0,0.00147748,0.00119456
+2685,89.556133,0.0,0.0,37.0,77.3405,165.0,234.0,48.0,96.0,111.278,126.0,193.0,99.0,127.0,136.462,147.0,180.0,0.0,3.0,19.3799,36.0,91.0,116.0,114.768,1.52742,3.59271,2.52851,8.0,8.0,8.0,0.00154607,0.0011917
+2686,89.5895,0.0,0.0,37.0,77.1933,165.0,212.0,48.0,96.0,111.23,126.0,183.0,105.0,127.0,136.48,147.0,178.0,0.0,3.0,19.4094,36.0,89.0,116.0,114.651,1.36403,3.51307,2.5077,8.0,8.0,8.0,0.00152321,0.0011917
+2687,89.622867,0.0,0.0,37.0,77.1515,164.0,231.0,47.0,96.0,111.428,126.0,176.0,104.0,127.0,136.556,147.0,183.0,0.0,3.0,19.2756,36.0,90.0,116.0,115.927,1.67144,3.62481,2.56536,8.0,8.0,8.0,0.00152321,0.0011917
+2688,89.656233,0.0,0.0,37.0,77.2876,164.0,216.0,44.0,96.0,111.252,126.0,189.0,84.0,127.0,136.563,147.0,182.0,0.0,3.0,19.4124,36.0,93.0,116.0,114.993,1.70907,3.63666,2.52578,8.0,8.0,8.0,0.00149749,0.0011917
+2689,89.6896,0.0,0.0,37.0,77.2249,165.0,216.0,43.0,96.0,111.33,126.0,191.0,87.0,127.0,136.577,147.0,181.0,0.0,3.0,19.3449,36.0,93.0,116.0,115.353,1.41636,3.51559,2.44384,8.0,8.0,8.0,0.00147748,0.0011917
+2690,89.722967,0.0,0.0,37.0,77.2899,165.0,213.0,47.0,96.0,111.352,126.0,184.0,93.0,127.0,136.423,147.0,185.0,0.0,3.0,19.2728,36.0,88.0,116.0,114.667,1.64791,3.55629,2.50179,8.0,8.0,8.0,0.00158036,0.0011917
+2691,89.756333,0.0,0.0,37.0,77.2851,165.0,227.0,47.0,96.0,111.442,126.0,183.0,98.0,127.0,136.607,147.0,188.0,0.0,3.0,19.2888,36.0,87.0,116.0,114.892,1.48861,3.59628,2.5005,8.0,8.0,8.0,0.00154893,0.0011917
+2692,89.7897,0.0,0.0,37.0,76.8539,163.0,217.0,46.0,96.0,111.484,126.0,190.0,96.0,127.0,136.291,147.0,190.0,0.0,3.0,19.1011,36.0,93.0,116.0,114.883,2.03102,3.61622,2.62139,8.0,8.0,8.0,0.00143461,0.0011917
+2693,89.823067,0.0,0.0,37.0,77.0597,164.0,216.0,47.0,96.0,111.462,126.0,173.0,99.0,127.0,136.329,147.0,183.0,0.0,3.0,19.126,36.0,86.0,116.0,114.972,1.9531,3.62673,2.5341,8.0,8.0,8.0,0.00149177,0.0011917
+2694,89.856433,0.0,0.0,37.0,77.0237,164.0,216.0,45.0,96.0,111.602,126.0,188.0,94.0,127.0,136.473,147.0,179.0,0.0,3.0,19.0263,36.0,92.0,116.0,115.64,1.4308,3.54938,2.43912,8.0,8.0,8.0,0.00151749,0.0011917
+2695,89.8898,0.0,0.0,37.0,76.8108,164.0,215.0,46.0,96.0,111.649,126.0,184.0,104.0,127.0,136.366,147.0,179.0,0.0,3.0,19.021,36.0,94.0,116.0,115.347,1.74089,3.55983,2.52048,8.0,8.0,8.0,0.00141461,0.0011917
+2696,89.923167,0.0,0.0,37.0,76.7022,164.0,213.0,45.0,96.0,111.649,126.0,188.0,104.0,127.0,136.381,147.0,182.0,0.0,3.0,19.0108,36.0,97.0,116.0,115.215,1.48889,3.53916,2.49913,8.0,8.0,8.0,0.00152321,0.0011917
+2697,89.956533,0.0,0.0,37.0,76.6767,164.0,217.0,47.0,97.0,111.825,126.0,186.0,101.0,127.0,136.236,146.0,180.0,0.0,3.0,18.7875,35.0,88.0,116.0,115.727,1.74725,3.56679,2.49416,8.0,8.0,8.0,0.00151749,0.00119456
+2698,89.9899,0.0,0.0,37.0,76.6337,164.0,212.0,50.0,97.0,111.706,126.0,185.0,103.0,127.0,136.246,147.0,181.0,0.0,3.0,18.9099,35.0,88.0,116.0,114.833,2.00198,3.62508,2.52574,8.0,8.0,8.0,0.00156893,0.00119456
+2699,90.023267,0.0,0.0,37.0,76.6572,164.0,215.0,48.0,96.0,111.659,126.0,179.0,96.0,127.0,136.352,147.0,184.0,0.0,3.0,18.9752,36.0,90.0,116.0,115.554,1.42529,3.53567,2.50646,8.0,8.0,8.0,0.0014832,0.0011917
+2700,90.056633,0.0,0.0,37.0,76.8675,164.0,215.0,47.0,96.0,111.659,126.0,194.0,103.0,127.0,136.236,146.0,186.0,0.0,3.0,18.9508,36.0,92.0,116.0,115.308,1.71567,3.57511,2.54097,8.0,8.0,8.0,0.00160608,0.0011917
+2701,90.09,0.0,0.0,37.0,76.9414,164.0,215.0,48.0,97.0,111.962,126.0,190.0,77.0,127.0,136.262,147.0,182.0,0.0,3.0,18.7247,35.0,88.0,116.0,115.54,1.46557,3.47467,2.47388,8.0,8.0,8.0,0.00150034,0.0011917
+2702,90.123367,0.0,0.0,37.0,76.6822,164.0,234.0,45.0,96.0,111.783,126.0,189.0,83.0,127.0,136.128,146.0,181.0,0.0,3.0,18.7891,36.0,91.0,116.0,115.265,1.75263,3.51711,2.47952,8.0,8.0,8.0,0.0017061,0.00119456
+2703,90.156733,0.0,0.0,37.0,76.9575,165.0,212.0,47.0,97.0,111.938,126.0,179.0,97.0,127.0,136.112,146.0,183.0,0.0,3.0,18.689,35.0,89.0,116.0,114.887,1.79661,3.5759,2.52659,8.0,8.0,8.0,0.00162037,0.0011917
+2704,90.1901,0.0,0.0,37.0,76.927,164.0,228.0,48.0,96.0,111.849,126.0,196.0,96.0,127.0,136.27,146.0,182.0,0.0,3.0,18.7882,36.0,86.0,116.0,115.623,1.51319,3.58964,2.51456,8.0,8.0,8.0,0.00160894,0.0011917
+2705,90.223467,0.0,0.0,37.0,76.8797,164.0,215.0,48.0,96.0,111.763,126.0,183.0,104.0,127.0,136.246,146.0,180.0,0.0,3.0,18.8971,35.0,88.0,116.0,115.748,1.72504,3.56839,2.53136,8.0,8.0,8.0,0.00146605,0.0011917
+2706,90.256833,0.0,0.0,37.0,76.9023,164.0,212.0,47.0,96.0,111.623,126.0,188.0,106.0,127.0,136.328,147.0,183.0,0.0,3.0,18.9811,36.0,88.0,116.0,114.453,1.46367,3.56621,2.43801,8.0,8.0,8.0,0.00149463,0.0011917
+2707,90.2902,0.0,0.0,37.0,76.6538,164.0,217.0,47.0,96.0,111.942,126.0,184.0,95.0,127.0,136.287,146.0,183.0,0.0,3.0,18.7158,35.0,87.0,116.0,116.133,1.79857,3.62491,2.52252,8.0,8.0,8.0,0.00148034,0.0011917
+2708,90.323567,0.0,0.0,37.0,76.2822,164.0,214.0,44.0,97.0,111.814,126.0,187.0,106.0,127.0,136.211,146.0,184.0,0.0,3.0,18.7985,35.0,88.0,116.0,114.6,1.94253,3.62306,2.527,8.0,8.0,8.0,0.00154035,0.0011917
+2709,90.356933,0.0,0.0,37.0,76.1714,164.0,214.0,46.0,97.0,111.956,126.0,185.0,105.0,127.0,136.288,146.0,181.0,0.0,3.0,18.6805,35.0,87.0,116.0,116.07,1.57125,3.51543,2.39858,8.0,8.0,8.0,0.00150892,0.0011917
+2710,90.3903,0.0,0.0,37.0,75.9217,163.0,223.0,39.0,97.0,112.104,126.0,184.0,104.0,127.0,136.059,146.0,179.0,0.0,3.0,18.4883,35.0,92.0,116.0,114.965,1.96578,3.58883,2.46703,8.0,8.0,8.0,0.00156607,0.0011917
+2711,90.423667,0.0,0.0,37.0,75.7978,163.0,236.0,44.0,97.0,112.218,126.0,184.0,102.0,127.0,136.116,146.0,182.0,0.0,3.0,18.484,35.0,89.0,116.0,115.161,1.62598,3.58569,2.45574,8.0,8.0,8.0,0.00160894,0.00119456
+2712,90.457033,0.0,0.0,37.0,75.6099,163.0,215.0,43.0,97.0,111.862,126.0,184.0,106.0,127.0,136.243,146.0,186.0,0.0,3.0,18.7562,35.0,94.0,116.0,115.158,1.89072,3.57941,2.50174,8.0,8.0,8.0,0.00161465,0.0011917
+2713,90.4904,0.0,0.0,37.0,75.6639,163.0,217.0,48.0,96.0,111.777,126.0,184.0,101.0,127.0,136.374,147.0,182.0,0.0,3.0,18.911,36.0,88.0,116.0,114.859,1.81386,3.55557,2.48793,8.0,8.0,8.0,0.00149177,0.0011917
+2714,90.523767,0.0,0.0,37.0,75.7198,163.0,212.0,45.0,97.0,111.81,126.0,195.0,94.0,127.0,136.544,147.0,182.0,0.0,3.0,18.9202,35.0,94.0,117.0,116.74,1.50524,3.52994,2.48588,8.0,8.0,8.0,0.00162609,0.0011917
+2715,90.557133,0.0,0.0,37.0,75.9146,163.0,213.0,47.0,96.0,111.604,126.0,188.0,105.0,127.0,136.439,147.0,182.0,0.0,3.0,19.0852,36.0,86.0,116.0,114.958,1.87691,3.60862,2.58292,8.0,8.0,8.0,0.00145748,0.0011917
+2716,90.5905,0.0,0.0,37.0,76.0305,164.0,224.0,44.0,96.0,111.494,126.0,184.0,100.0,127.0,136.472,147.0,180.0,0.0,3.0,19.172,36.0,91.0,116.0,115.214,1.64529,3.55917,2.55145,8.0,8.0,8.0,0.00151177,0.00119742
+2717,90.623867,0.0,0.0,37.0,75.805,162.0,211.0,46.0,96.0,111.594,126.0,184.0,102.0,127.0,136.439,147.0,180.0,0.0,3.0,19.0905,36.0,89.0,116.0,115.277,2.15885,3.75657,2.70497,8.0,8.0,8.0,0.00156607,0.0011917
+2718,90.657233,0.0,0.0,37.0,76.0537,163.0,213.0,46.0,96.0,111.634,126.0,188.0,93.0,127.0,136.448,147.0,180.0,0.0,3.0,19.0093,36.0,89.0,116.0,115.101,1.97976,3.70772,2.55021,8.0,8.0,8.0,0.00149749,0.0011917
+2719,90.6906,0.0,0.0,37.0,76.0309,163.0,214.0,45.0,96.0,111.603,126.0,189.0,104.0,127.0,136.552,147.0,180.0,0.0,3.0,19.1086,36.0,89.0,116.0,115.913,1.56063,3.56382,2.43365,8.0,8.0,8.0,0.00147462,0.0011917
+2720,90.723967,0.0,0.0,37.0,76.2486,164.0,215.0,46.0,96.0,111.552,126.0,183.0,84.0,127.0,136.409,147.0,179.0,0.0,3.0,19.1317,36.0,93.0,116.0,115.165,1.98298,3.64786,2.49893,8.0,8.0,8.0,0.00173754,0.0011917
+2721,90.757333,0.0,0.0,37.0,76.2096,164.0,235.0,42.0,96.0,111.508,126.0,188.0,84.0,127.0,136.62,147.0,185.0,0.0,3.0,19.2786,36.0,92.0,116.0,115.294,1.63705,3.59044,2.50226,8.0,8.0,8.0,0.00158036,0.0011917
+2722,90.7907,0.0,0.0,37.0,76.302,164.0,214.0,46.0,96.0,111.303,126.0,188.0,89.0,127.0,136.524,147.0,182.0,0.0,3.0,19.3476,36.0,90.0,116.0,115.608,1.90093,3.65153,2.54704,8.0,8.0,8.0,0.00151177,0.0011917
+2723,90.824067,0.0,0.0,37.0,76.2626,164.0,214.0,45.0,96.0,111.263,126.0,186.0,91.0,127.0,136.654,147.0,185.0,0.0,3.0,19.4169,36.0,87.0,116.0,114.98,1.9512,3.62724,2.53643,8.0,8.0,8.0,0.00154607,0.0011917
+2724,90.857433,0.0,0.0,37.0,76.3785,163.0,243.0,42.0,96.0,111.226,126.0,187.0,91.0,127.0,136.796,147.0,181.0,0.0,3.0,19.5198,37.0,89.0,117.0,115.799,1.51766,3.5049,2.48099,8.0,8.0,8.0,0.00158608,0.00119456
+2725,90.8908,0.0,0.0,37.0,76.3355,163.0,214.0,46.0,95.0,110.985,126.0,191.0,82.0,127.0,136.654,147.0,183.0,0.0,3.0,19.7305,37.0,90.0,116.0,114.838,1.88198,3.66987,2.58037,8.0,8.0,8.0,0.0015775,0.0011917
+2726,90.924167,0.0,0.0,37.0,76.3705,163.0,230.0,45.0,95.0,110.863,126.0,197.0,82.0,127.0,136.807,147.0,186.0,0.0,3.0,19.8734,37.0,91.0,116.0,114.852,1.5035,3.57467,2.57357,8.0,8.0,8.0,0.00160894,0.00119456
+2727,90.957533,0.0,0.0,37.0,76.4896,164.0,216.0,45.0,94.0,110.602,126.0,204.0,97.0,127.0,136.726,147.0,182.0,0.0,3.0,20.0936,38.0,91.0,116.0,115.276,1.93085,3.66209,2.57498,8.0,8.0,8.0,0.00160894,0.0011917
+2728,90.9909,0.0,0.0,37.0,76.4101,163.0,216.0,46.0,95.0,110.661,126.0,192.0,82.0,127.0,136.694,147.0,180.0,0.0,3.0,20.017,37.0,96.0,116.0,114.846,2.02427,3.74731,2.61883,8.0,8.0,8.0,0.0015575,0.0011917
+2729,91.024267,0.0,0.0,37.0,76.3659,163.0,215.0,45.0,94.0,110.45,126.0,199.0,98.0,127.0,136.729,148.0,183.0,0.0,3.0,20.2399,38.0,91.0,116.0,114.807,1.61244,3.70501,2.63283,8.0,8.0,8.0,0.00165466,0.0011917
+2730,91.057633,0.0,0.0,37.0,76.3968,163.0,214.0,43.0,94.0,110.657,126.0,198.0,88.0,127.0,136.642,147.0,183.0,0.0,3.0,20.006,38.0,93.0,116.0,114.433,1.9586,3.69372,2.68245,8.0,8.0,8.0,0.00150034,0.0011917
+2731,91.091,0.0,0.0,37.0,76.4163,163.0,217.0,44.0,95.0,110.677,126.0,184.0,104.0,127.0,136.674,147.0,181.0,0.0,3.0,20.0171,37.0,95.0,116.0,113.712,1.57346,3.58433,2.5569,8.0,8.0,8.0,0.00156321,0.0011917
+2732,91.124367,0.0,0.0,37.0,76.2374,163.0,212.0,42.0,94.0,110.474,126.0,190.0,104.0,127.0,136.585,147.0,180.0,0.0,3.0,20.1381,38.0,95.0,115.0,114.581,1.86614,3.74969,2.64695,8.0,8.0,8.0,0.00144033,0.0011917
+2733,91.157733,0.0,0.0,37.0,75.9273,162.0,217.0,42.0,95.0,110.661,126.0,190.0,105.0,127.0,136.74,147.0,181.0,0.0,3.0,20.0454,37.0,96.0,116.0,115.257,1.8003,3.76393,2.6176,8.0,8.0,8.0,0.0014832,0.0011917
+2734,91.1911,0.0,0.0,37.0,76.0393,163.0,213.0,41.0,95.0,110.839,126.0,211.0,100.0,127.0,136.661,147.0,182.0,0.0,3.0,19.8889,38.0,93.0,116.0,115.486,1.58495,3.7642,2.65365,8.0,8.0,8.0,0.00150034,0.0011917
+2735,91.224467,0.0,0.0,37.0,75.9752,162.0,212.0,44.0,95.0,111.008,126.0,182.0,102.0,127.0,136.664,147.0,190.0,0.0,3.0,19.735,37.0,94.0,116.0,115.79,1.83488,3.74931,2.60944,8.0,8.0,8.0,0.00158322,0.0011917
+2736,91.257833,0.0,0.0,37.0,75.9069,162.0,215.0,44.0,95.0,111.132,126.0,184.0,104.0,127.0,136.764,147.0,182.0,0.0,3.0,19.6879,37.0,95.0,116.0,115.878,1.50714,3.69512,2.58341,8.0,8.0,8.0,0.00165181,0.0011917
+2737,91.2912,0.0,0.0,37.0,76.0906,163.0,215.0,46.0,95.0,111.176,126.0,198.0,105.0,127.0,136.735,148.0,184.0,0.0,3.0,19.6233,37.0,91.0,116.0,115.826,1.78896,3.79829,2.63587,8.0,8.0,8.0,0.00161751,0.0011917
+2738,91.324567,0.0,0.0,37.0,75.8983,163.0,226.0,42.0,95.0,111.143,126.0,186.0,105.0,127.0,136.89,148.0,183.0,0.0,3.0,19.7153,37.0,93.0,117.0,116.007,1.87648,3.73659,2.63235,8.0,8.0,8.0,0.00160322,0.0011917
+2739,91.357933,0.0,0.0,37.0,75.9501,163.0,222.0,43.0,95.0,111.098,126.0,203.0,97.0,127.0,136.896,148.0,183.0,0.0,3.0,19.7901,37.0,94.0,117.0,116.786,1.51718,3.71103,2.5663,8.0,8.0,8.0,0.0015575,0.0011917
+2740,91.3913,0.0,0.0,37.0,75.9835,163.0,213.0,43.0,95.0,111.107,126.0,195.0,76.0,127.0,136.72,148.0,181.0,0.0,3.0,19.706,37.0,93.0,116.0,115.155,1.89265,3.75808,2.60413,8.0,8.0,8.0,0.00146605,0.0011917
+2741,91.424667,0.0,0.0,37.0,76.0458,163.0,212.0,45.0,95.0,111.195,126.0,205.0,103.0,127.0,136.87,148.0,184.0,0.0,3.0,19.7358,37.0,90.0,116.0,115.206,1.61835,3.75904,2.5937,8.0,8.0,8.0,0.00151177,0.0011917
+2742,91.458033,0.0,0.0,37.0,75.6399,162.0,235.0,43.0,95.0,111.225,126.0,195.0,95.0,127.0,136.764,148.0,182.0,0.0,3.0,19.6031,37.0,91.0,117.0,116.423,2.26386,3.87994,2.69172,8.0,8.0,8.0,0.00148034,0.0011917
+2743,91.4914,0.0,0.0,37.0,75.6797,163.0,214.0,44.0,96.0,111.506,126.0,199.0,100.0,127.0,136.423,147.0,183.0,0.0,3.0,19.2503,36.0,91.0,116.0,115.512,1.96055,3.74571,2.57355,8.0,8.0,8.0,0.00155464,0.0011917
+2744,91.524767,0.0,0.0,37.0,75.578,163.0,213.0,44.0,96.0,111.778,126.0,194.0,87.0,127.0,136.52,147.0,183.0,0.0,3.0,19.0455,36.0,91.0,117.0,117.139,1.62385,3.7277,2.53069,8.0,8.0,8.0,0.00154321,0.0011917
+2745,91.558133,0.0,0.0,37.0,75.438,163.0,217.0,45.0,96.0,111.692,126.0,192.0,106.0,127.0,136.457,147.0,183.0,0.0,3.0,19.1119,36.0,90.0,116.0,116.32,2.20078,3.79071,2.63212,8.0,8.0,8.0,0.00169753,0.0011917
+2746,91.5915,0.0,0.0,37.0,75.5201,163.0,215.0,45.0,96.0,111.566,126.0,186.0,96.0,127.0,136.512,147.0,182.0,0.0,3.0,19.2233,36.0,89.0,116.0,116.151,1.74031,3.69863,2.60789,8.0,8.0,8.0,0.0016318,0.0011917
+2747,91.624867,0.0,0.0,37.0,75.536,163.0,214.0,45.0,96.0,111.628,126.0,191.0,106.0,127.0,136.513,147.0,187.0,0.0,3.0,19.1624,36.0,91.0,116.0,116.391,1.81909,3.67819,2.62856,8.0,8.0,8.0,0.00146605,0.0011917
+2748,91.658233,0.0,0.0,37.0,75.612,163.0,213.0,45.0,97.0,111.696,126.0,186.0,105.0,127.0,136.71,147.0,184.0,0.0,3.0,19.1251,36.0,90.0,117.0,116.473,2.08719,3.6163,2.59695,8.0,8.0,8.0,0.00162894,0.0011917
+2749,91.6916,0.0,0.0,37.0,75.5807,162.0,212.0,44.0,96.0,111.666,126.0,186.0,103.0,127.0,136.805,147.0,184.0,0.0,3.0,19.2412,36.0,90.0,118.0,117.798,1.78792,3.67225,2.56113,8.0,8.0,8.0,0.00172611,0.0011917
+2750,91.724967,0.0,0.0,37.0,75.5116,162.0,211.0,43.0,96.0,111.563,126.0,181.0,103.0,127.0,136.534,147.0,186.0,0.0,3.0,19.217,36.0,91.0,116.0,116.135,2.12401,3.74737,2.63877,8.0,8.0,8.0,0.00166895,0.0011917
+2751,91.758333,0.0,0.0,37.0,75.5036,162.0,225.0,42.0,96.0,111.746,126.0,173.0,103.0,127.0,136.661,147.0,188.0,0.0,3.0,19.1127,36.0,90.0,117.0,116.434,1.59163,3.68012,2.56888,8.0,8.0,8.0,0.00164323,0.0011917
+2752,91.7917,0.0,0.0,37.0,75.5279,162.0,211.0,42.0,96.0,111.64,126.0,172.0,104.0,127.0,136.373,147.0,184.0,0.0,3.0,19.0737,36.0,92.0,116.0,116.019,1.85213,3.73561,2.61631,8.0,8.0,8.0,0.00172897,0.00119742
+2753,91.825067,0.0,0.0,37.0,75.6349,163.0,212.0,44.0,96.0,111.438,126.0,176.0,101.0,127.0,136.56,147.0,185.0,0.0,3.0,19.355,37.0,90.0,116.0,115.896,1.88316,3.73824,2.66485,8.0,8.0,8.0,0.00174611,0.0011917
+2754,91.858433,0.0,0.0,37.0,75.5567,162.0,214.0,44.0,96.0,111.542,126.0,190.0,100.0,127.0,136.662,148.0,185.0,0.0,3.0,19.2745,36.0,92.0,117.0,116.456,1.76003,3.72375,2.62529,8.0,8.0,8.0,0.00143747,0.0011917
+2755,91.8918,0.0,0.0,37.0,75.5247,162.0,209.0,44.0,96.0,111.543,126.0,173.0,102.0,127.0,136.378,147.0,184.0,0.0,3.0,19.1929,37.0,91.0,116.0,115.345,2.08174,3.72237,2.62477,8.0,8.0,8.0,0.00164323,0.0011917
+2756,91.925167,0.0,0.0,37.0,75.3745,162.0,224.0,43.0,95.0,111.492,127.0,184.0,93.0,127.0,136.586,148.0,185.0,0.0,3.0,19.3379,37.0,87.0,116.0,116.223,1.64764,3.72786,2.62048,8.0,8.0,8.0,0.00153749,0.00119456
+2757,91.958533,0.0,0.0,37.0,75.1999,161.0,215.0,45.0,95.0,111.187,126.0,174.0,103.0,127.0,136.52,147.0,186.0,0.0,3.0,19.5298,37.0,90.0,116.0,115.711,2.12246,3.83976,2.73197,8.0,8.0,8.0,0.00160608,0.0011917
+2758,91.9919,0.0,0.0,37.0,75.3671,162.0,216.0,40.0,95.0,111.286,126.0,181.0,103.0,127.0,136.626,148.0,182.0,0.0,3.0,19.4819,37.0,93.0,116.0,115.129,1.93718,3.84719,2.64186,8.0,8.0,8.0,0.00165466,0.0011917
+2759,92.025267,0.0,0.0,37.0,75.1887,162.0,214.0,45.0,95.0,111.23,126.0,189.0,104.0,127.0,136.597,147.0,183.0,0.0,3.0,19.4861,37.0,90.0,116.0,115.45,1.42226,3.74289,2.52134,8.0,8.0,8.0,0.00166324,0.0011917
+2760,92.058633,0.0,0.0,37.0,75.3575,162.0,212.0,44.0,95.0,110.956,126.0,173.0,105.0,127.0,136.558,147.0,182.0,0.0,3.0,19.7382,37.0,92.0,116.0,114.859,1.76157,3.74526,2.57308,8.0,8.0,8.0,0.00151463,0.0011917
+2761,92.092,0.0,0.0,37.0,75.555,162.0,212.0,43.0,95.0,110.897,126.0,167.0,102.0,127.0,136.674,148.0,184.0,0.0,3.0,19.8218,37.0,95.0,116.0,114.9,1.54391,3.71217,2.59547,8.0,8.0,8.0,0.0014489,0.0011917
+2762,92.125367,0.0,0.0,37.0,75.7093,162.0,214.0,41.0,95.0,110.806,126.0,170.0,102.0,127.0,136.819,148.0,182.0,0.0,3.0,19.9418,37.0,96.0,116.0,115.333,2.06758,3.82457,2.68106,8.0,8.0,8.0,0.00132316,0.0011917
+2763,92.158733,0.0,0.0,37.0,75.8553,162.0,214.0,42.0,95.0,110.603,126.0,179.0,103.0,127.0,136.81,147.0,182.0,0.0,3.0,20.0884,37.0,99.0,116.0,114.749,2.16302,3.80361,2.73323,8.0,8.0,8.0,0.00160608,0.0011917
+2764,92.1921,0.0,0.0,37.0,75.957,162.0,236.0,38.0,95.0,110.677,126.0,189.0,88.0,127.0,136.885,147.0,182.0,0.0,3.0,20.0392,38.0,93.0,116.0,115.01,1.60299,3.62066,2.5767,8.0,8.0,8.0,0.00160608,0.00119456
+2765,92.225467,0.0,0.0,37.0,75.9206,163.0,213.0,43.0,94.0,110.598,126.0,193.0,89.0,127.0,136.693,147.0,184.0,0.0,3.0,20.11,38.0,93.0,116.0,114.179,1.95212,3.72271,2.57772,8.0,8.0,8.0,0.00158893,0.0011917
+2766,92.258833,0.0,0.0,37.0,75.977,163.0,214.0,41.0,94.0,110.568,126.0,194.0,84.0,127.0,136.873,148.0,187.0,0.0,3.0,20.2049,38.0,91.0,116.0,114.775,1.54599,3.72729,2.61527,8.0,8.0,8.0,0.00155464,0.00119456
+2767,92.2922,0.0,0.0,37.0,76.0098,163.0,234.0,44.0,95.0,110.587,126.0,187.0,86.0,127.0,136.795,147.0,184.0,0.0,3.0,20.1419,38.0,90.0,116.0,114.852,1.67877,3.70622,2.6201,8.0,8.0,8.0,0.00158608,0.0011917
+2768,92.325567,0.0,0.0,37.0,76.0708,163.0,232.0,41.0,94.0,110.67,126.0,190.0,85.0,127.0,136.878,148.0,181.0,0.0,3.0,20.1277,38.0,89.0,116.0,114.891,1.83258,3.71494,2.55356,8.0,8.0,8.0,0.00157465,0.0011917
+2769,92.358933,0.0,0.0,37.0,75.8834,163.0,214.0,38.0,94.0,110.496,126.0,192.0,100.0,127.0,136.828,148.0,188.0,0.0,3.0,20.2266,38.0,101.0,116.0,114.49,1.56944,3.71281,2.59859,8.0,8.0,8.0,0.0015032,0.0011917
+2770,92.3923,0.0,0.0,37.0,75.7439,162.0,234.0,43.0,95.0,110.745,126.0,179.0,93.0,127.0,136.71,147.0,185.0,0.0,3.0,19.9612,38.0,92.0,116.0,114.609,1.9452,3.67613,2.67996,8.0,8.0,8.0,0.00147462,0.0011917
+2771,92.425667,0.0,0.0,37.0,75.7677,163.0,214.0,42.0,95.0,110.64,126.0,196.0,87.0,127.0,136.875,148.0,185.0,0.0,3.0,20.1297,38.0,90.0,116.0,114.179,1.49377,3.62949,2.54624,8.0,8.0,8.0,0.0015032,0.0011917
+2772,92.459033,0.0,0.0,37.0,75.8466,163.0,213.0,43.0,94.0,110.321,126.0,197.0,88.0,127.0,136.954,148.0,182.0,0.0,3.0,20.4343,38.0,94.0,116.0,114.732,1.72015,3.68617,2.63378,8.0,8.0,8.0,0.00150892,0.0011917
+2773,92.4924,0.0,0.0,37.0,75.8353,163.0,217.0,42.0,94.0,110.53,126.0,187.0,99.0,127.0,136.874,148.0,183.0,0.0,3.0,20.237,38.0,91.0,116.0,115.144,1.74634,3.73256,2.65404,8.0,8.0,8.0,0.00150892,0.0011917
+2774,92.525767,0.0,0.0,37.0,76.0316,163.0,217.0,44.0,95.0,110.609,126.0,186.0,83.0,127.0,136.982,148.0,182.0,0.0,3.0,20.1789,38.0,96.0,116.0,115.84,1.44552,3.76331,2.58027,8.0,8.0,8.0,0.00152035,0.0011917
+2775,92.559133,0.0,0.0,37.0,76.0683,163.0,218.0,41.0,95.0,110.764,126.0,186.0,95.0,127.0,136.912,148.0,184.0,0.0,3.0,20.0416,38.0,92.0,116.0,114.724,1.64851,3.76277,2.60409,8.0,8.0,8.0,0.00144319,0.0011917
+2776,92.5925,0.0,0.0,37.0,76.0581,163.0,215.0,43.0,94.0,110.656,126.0,197.0,93.0,127.0,137.007,148.0,186.0,0.0,3.0,20.1992,38.0,95.0,116.0,115.289,1.41488,3.72018,2.57308,8.0,8.0,8.0,0.00134602,0.0011917
+2777,92.625867,0.0,0.0,37.0,76.0184,163.0,214.0,42.0,94.0,110.648,126.0,175.0,96.0,127.0,136.992,148.0,186.0,0.0,3.0,20.1814,38.0,95.0,116.0,115.62,1.70863,3.82758,2.64481,8.0,8.0,8.0,0.00147748,0.0011917
+2778,92.659233,0.0,0.0,37.0,76.0578,163.0,225.0,40.0,95.0,110.709,126.0,172.0,89.0,127.0,137.056,148.0,185.0,0.0,3.0,20.123,38.0,95.0,116.0,114.836,1.60506,3.7336,2.63925,8.0,8.0,8.0,0.00146319,0.0011917
+2779,92.6926,0.0,0.0,37.0,75.8808,163.0,211.0,41.0,94.0,110.66,126.0,176.0,95.0,127.0,137.103,148.0,184.0,0.0,3.0,20.1835,38.0,96.0,117.0,115.851,1.38583,3.64567,2.55344,8.0,8.0,8.0,0.00147176,0.0011917
+2780,92.725967,0.0,0.0,37.0,75.9071,163.0,217.0,43.0,94.0,110.52,126.0,174.0,92.0,127.0,137.019,148.0,188.0,0.0,3.0,20.2825,38.0,92.0,116.0,114.619,1.60057,3.652,2.58164,8.0,8.0,8.0,0.00143461,0.0011917
+2781,92.759333,0.0,0.0,37.0,75.9441,163.0,213.0,44.0,94.0,110.674,126.0,162.0,92.0,127.0,137.018,148.0,185.0,0.0,3.0,20.1904,38.0,92.0,116.0,114.548,1.43121,3.67195,2.58755,8.0,8.0,8.0,0.00138317,0.0011917
+2782,92.7927,0.0,0.0,37.0,75.8914,163.0,214.0,42.0,94.0,110.716,126.0,158.0,105.0,127.0,137.065,148.0,190.0,0.0,3.0,20.0846,38.0,95.0,116.0,115.687,1.65096,3.72548,2.64145,8.0,8.0,8.0,0.00140318,0.0011917
+2783,92.826067,0.0,0.0,37.0,75.8919,163.0,212.0,41.0,94.0,110.646,126.0,167.0,105.0,127.0,137.087,148.0,188.0,0.0,3.0,20.1785,38.0,94.0,117.0,116.176,1.6965,3.69042,2.59839,8.0,8.0,8.0,0.00135174,0.0011917
+2784,92.859433,0.0,0.0,37.0,75.8607,163.0,237.0,43.0,94.0,110.741,126.0,164.0,105.0,127.0,137.167,148.0,193.0,0.0,3.0,20.1445,38.0,93.0,117.0,117.001,1.37809,3.69079,2.55125,8.0,8.0,8.0,0.00154607,0.00119456
+2785,92.8928,0.0,0.0,37.0,75.6997,163.0,209.0,44.0,94.0,110.87,126.0,163.0,104.0,127.0,136.94,148.0,189.0,0.0,3.0,19.9546,38.0,94.0,116.0,115.66,1.65365,3.75438,2.61479,8.0,8.0,8.0,0.00161465,0.0011917
+2786,92.926167,0.0,0.0,37.0,75.7065,163.0,211.0,39.0,95.0,110.883,126.0,162.0,104.0,127.0,136.989,148.0,187.0,0.0,3.0,19.9227,38.0,100.0,117.0,115.352,1.40682,3.70279,2.56076,8.0,8.0,8.0,0.00153464,0.0011917
+2787,92.959533,0.0,0.0,37.0,75.702,163.0,237.0,44.0,95.0,110.884,126.0,162.0,105.0,127.0,136.996,148.0,189.0,0.0,3.0,19.935,38.0,92.0,117.0,115.851,1.62547,3.69735,2.60133,8.0,8.0,8.0,0.00158608,0.00119456
+2788,92.9929,0.0,0.0,37.0,75.9155,163.0,213.0,44.0,95.0,110.863,126.0,155.0,104.0,127.0,137.074,148.0,185.0,0.0,3.0,19.9838,38.0,94.0,117.0,115.6,1.56788,3.70436,2.59154,8.0,8.0,8.0,0.00145748,0.00119456
+2789,93.026267,0.0,0.0,37.0,75.8418,163.0,213.0,42.0,94.0,110.929,126.0,167.0,105.0,127.0,137.061,148.0,181.0,0.0,3.0,19.9255,38.0,94.0,117.0,116.645,1.38478,3.65474,2.59004,8.0,8.0,8.0,0.00155464,0.0011917
+2790,93.059633,0.0,0.0,37.0,75.8919,163.0,213.0,42.0,95.0,110.989,126.0,164.0,101.0,127.0,137.107,148.0,190.0,0.0,3.0,19.8933,38.0,91.0,117.0,116.529,1.62115,3.71782,2.63171,8.0,8.0,8.0,0.00141461,0.00119456
+2791,93.093,0.0,0.0,37.0,75.952,163.0,227.0,45.0,95.0,111.154,126.0,163.0,102.0,127.0,137.212,148.0,182.0,0.0,3.0,19.8189,37.0,90.0,118.0,117.11,1.33147,3.68773,2.59204,8.0,8.0,8.0,0.00153178,0.0011917
+2792,93.126367,0.0,0.0,37.0,75.656,162.0,215.0,43.0,95.0,110.837,126.0,162.0,100.0,127.0,137.099,148.0,181.0,0.0,3.0,19.9946,38.0,91.0,117.0,116.871,1.62026,3.70963,2.6065,8.0,8.0,8.0,0.0015775,0.0011917
+2793,93.159733,0.0,0.0,37.0,75.6146,162.0,213.0,42.0,95.0,110.925,126.0,158.0,104.0,127.0,137.049,148.0,182.0,0.0,3.0,19.9418,38.0,99.0,117.0,115.853,1.64859,3.7298,2.6493,8.0,8.0,8.0,0.00152321,0.0011917
+2794,93.1931,0.0,0.0,37.0,75.7666,163.0,212.0,43.0,95.0,111.059,126.0,164.0,103.0,127.0,136.971,148.0,184.0,0.0,3.0,19.7822,37.0,91.0,117.0,116.393,1.37533,3.55705,2.56222,8.0,8.0,8.0,0.00159179,0.0011917
+2795,93.226467,0.0,0.0,37.0,75.7545,163.0,228.0,44.0,95.0,110.939,126.0,160.0,106.0,127.0,136.718,148.0,184.0,0.0,3.0,19.8144,38.0,90.0,116.0,115.194,1.58613,3.59182,2.57824,8.0,8.0,8.0,0.0014832,0.0011917
+2796,93.259833,0.0,0.0,37.0,75.8179,163.0,211.0,40.0,95.0,110.949,126.0,158.0,103.0,127.0,136.915,148.0,180.0,0.0,3.0,19.84,38.0,98.0,117.0,115.473,1.42675,3.61168,2.53719,8.0,8.0,8.0,0.00139175,0.0011917
+2797,93.2932,0.0,0.0,37.0,75.64,163.0,213.0,44.0,95.0,111.218,126.0,163.0,93.0,127.0,136.718,148.0,182.0,0.0,3.0,19.5889,37.0,91.0,116.0,116.326,1.76423,3.69444,2.66532,8.0,8.0,8.0,0.00137746,0.0011917
+2798,93.326567,0.0,0.0,37.0,75.6443,163.0,214.0,42.0,95.0,111.235,126.0,173.0,106.0,127.0,136.666,148.0,182.0,0.0,3.0,19.5223,37.0,92.0,116.0,115.171,1.95376,3.7234,2.67393,8.0,8.0,8.0,0.00146319,0.0011917
+2799,93.359933,0.0,0.0,37.0,75.6084,163.0,222.0,42.0,95.0,111.236,126.0,167.0,94.0,127.0,136.85,148.0,182.0,0.0,3.0,19.5988,37.0,91.0,117.0,116.306,1.50523,3.62667,2.5168,8.0,8.0,8.0,0.00147748,0.0011917
+2800,93.3933,0.0,0.0,37.0,75.837,163.0,214.0,46.0,95.0,110.97,126.0,168.0,89.0,127.0,136.741,148.0,182.0,0.0,3.0,19.78,37.0,87.0,116.0,115.327,1.79309,3.62423,2.56764,8.0,8.0,8.0,0.00147462,0.0011917
+2801,93.426667,0.0,0.0,37.0,76.0066,163.0,213.0,44.0,95.0,110.902,126.0,172.0,91.0,127.0,136.81,148.0,183.0,0.0,3.0,19.8814,38.0,93.0,116.0,114.896,1.53462,3.54481,2.5815,8.0,8.0,8.0,0.00142318,0.0011917
+2802,93.460033,0.0,0.0,37.0,75.6134,162.0,211.0,41.0,95.0,110.91,126.0,171.0,90.0,127.0,136.777,147.0,182.0,0.0,3.0,19.8435,37.0,92.0,116.0,115.378,1.92933,3.73333,2.60306,8.0,8.0,8.0,0.00138317,0.0011917
+2803,93.4934,0.0,0.0,37.0,75.7054,163.0,217.0,43.0,95.0,110.822,126.0,165.0,100.0,127.0,136.757,148.0,179.0,0.0,3.0,19.9437,38.0,97.0,116.0,115.199,1.80911,3.69671,2.61043,8.0,8.0,8.0,0.00140318,0.0011917
+2804,93.526767,0.0,0.0,37.0,75.7293,163.0,213.0,42.0,95.0,110.929,126.0,171.0,88.0,127.0,136.881,148.0,181.0,0.0,3.0,19.8826,37.0,92.0,116.0,115.907,1.51646,3.7161,2.57486,8.0,8.0,8.0,0.00154321,0.00119456
+2805,93.560133,0.0,0.0,37.0,75.557,163.0,211.0,44.0,95.0,110.876,126.0,169.0,87.0,127.0,136.77,147.0,181.0,0.0,3.0,19.8682,37.0,93.0,116.0,114.964,1.89449,3.63408,2.62675,8.0,8.0,8.0,0.00140604,0.0011917
+2806,93.5935,0.0,0.0,37.0,75.698,163.0,215.0,43.0,95.0,110.783,126.0,165.0,89.0,127.0,136.879,148.0,181.0,0.0,3.0,20.0133,38.0,90.0,116.0,115.185,1.57373,3.63363,2.54831,8.0,8.0,8.0,0.00154893,0.0011917
+2807,93.626867,0.0,0.0,37.0,75.4868,162.0,213.0,45.0,95.0,110.7,126.0,170.0,90.0,127.0,136.904,148.0,184.0,0.0,3.0,20.0539,38.0,93.0,116.0,115.615,1.75009,3.64995,2.57966,8.0,8.0,8.0,0.00144604,0.0011917
+2808,93.660233,0.0,0.0,37.0,75.4466,162.0,217.0,43.0,95.0,110.892,126.0,166.0,91.0,127.0,136.702,147.0,180.0,0.0,3.0,19.811,38.0,89.0,116.0,115.332,1.67785,3.72234,2.6043,8.0,8.0,8.0,0.00150606,0.0011917
+2809,93.6936,0.0,0.0,37.0,75.5077,162.0,212.0,45.0,94.0,110.764,126.0,165.0,94.0,127.0,136.878,148.0,181.0,0.0,3.0,19.9764,38.0,94.0,116.0,115.928,1.4286,3.67677,2.60063,8.0,8.0,8.0,0.0015775,0.0011917
+2810,93.726967,0.0,0.0,37.0,75.377,162.0,213.0,42.0,94.0,110.711,126.0,177.0,104.0,127.0,136.732,147.0,184.0,0.0,3.0,19.9922,38.0,93.0,116.0,114.946,1.80295,3.74177,2.59963,8.0,8.0,8.0,0.00148605,0.0011917
+2811,93.760333,0.0,0.0,37.0,75.4119,162.0,229.0,46.0,95.0,110.919,126.0,173.0,103.0,127.0,136.81,148.0,184.0,0.0,3.0,19.8816,37.0,92.0,116.0,115.039,1.49266,3.66733,2.53808,8.0,8.0,8.0,0.00156607,0.0011917
+2812,93.7937,0.0,0.0,37.0,75.3059,162.0,212.0,42.0,95.0,110.955,126.0,177.0,100.0,127.0,136.616,147.0,182.0,0.0,3.0,19.7442,37.0,89.0,116.0,115.066,1.75488,3.72542,2.62638,8.0,8.0,8.0,0.00164037,0.0011917
+2813,93.827067,0.0,0.0,37.0,75.4811,162.0,211.0,45.0,95.0,110.923,126.0,169.0,102.0,127.0,136.746,148.0,182.0,0.0,3.0,19.8411,37.0,93.0,116.0,116.059,1.76574,3.67575,2.59346,8.0,8.0,8.0,0.00145748,0.0011917
+2814,93.860433,0.0,0.0,37.0,75.6978,163.0,231.0,45.0,95.0,111.045,126.0,180.0,105.0,127.0,136.803,148.0,181.0,0.0,3.0,19.7406,37.0,93.0,116.0,116.474,1.47692,3.66684,2.5672,8.0,8.0,8.0,0.0016861,0.00119742
+2815,93.8938,0.0,0.0,37.0,75.4821,162.0,214.0,44.0,95.0,111.083,126.0,174.0,101.0,127.0,136.612,148.0,183.0,0.0,3.0,19.6441,38.0,93.0,116.0,115.211,1.63965,3.66383,2.58683,8.0,8.0,8.0,0.00149463,0.0011917
+2816,93.927167,0.0,0.0,37.0,75.3383,162.0,215.0,45.0,95.0,111.044,126.0,167.0,97.0,127.0,136.601,148.0,181.0,0.0,3.0,19.661,38.0,90.0,116.0,115.194,1.49076,3.61868,2.51644,8.0,8.0,8.0,0.00158036,0.00119456
+2817,93.960533,0.0,0.0,37.0,75.4251,162.0,213.0,44.0,95.0,111.036,126.0,168.0,102.0,127.0,136.613,147.0,185.0,0.0,3.0,19.6613,38.0,92.0,116.0,116.18,1.7132,3.69249,2.58976,8.0,8.0,8.0,0.00159751,0.0011917
+2818,93.9939,0.0,0.0,37.0,75.5606,162.0,213.0,42.0,95.0,111.127,126.0,164.0,104.0,127.0,136.727,148.0,186.0,0.0,3.0,19.5725,37.0,89.0,116.0,115.377,1.66531,3.71276,2.55536,8.0,8.0,8.0,0.00160608,0.0011917
+2819,94.027267,0.0,0.0,37.0,75.6112,162.0,224.0,41.0,95.0,111.28,126.0,177.0,102.0,127.0,136.597,148.0,182.0,0.0,3.0,19.4642,37.0,89.0,116.0,116.263,1.35765,3.65841,2.543,8.0,8.0,8.0,0.00181184,0.0011917
+2820,94.060633,0.0,0.0,37.0,75.7077,163.0,214.0,45.0,95.0,111.351,126.0,178.0,101.0,127.0,136.372,147.0,181.0,0.0,3.0,19.3115,37.0,94.0,116.0,116.298,1.65195,3.67342,2.59681,8.0,8.0,8.0,0.00153464,0.0011917
+2821,94.094,0.0,0.0,37.0,75.7741,163.0,213.0,41.0,95.0,111.345,126.0,182.0,95.0,127.0,136.457,147.0,182.0,0.0,3.0,19.3939,37.0,90.0,116.0,114.954,1.50007,3.65625,2.54944,8.0,8.0,8.0,0.00160037,0.0011917
+2822,94.127367,0.0,0.0,37.0,75.5599,163.0,228.0,43.0,95.0,111.165,126.0,174.0,98.0,127.0,136.343,147.0,182.0,0.0,3.0,19.451,37.0,91.0,116.0,114.878,1.65045,3.66245,2.56629,8.0,8.0,8.0,0.00160894,0.0011917
+2823,94.160733,0.0,0.0,37.0,75.5409,163.0,220.0,44.0,95.0,110.882,126.0,170.0,100.0,127.0,136.509,147.0,181.0,0.0,3.0,19.7385,37.0,87.0,116.0,114.045,1.65604,3.69052,2.53108,8.0,8.0,8.0,0.00169467,0.0011917
+2824,94.1941,0.0,0.0,37.0,75.4736,162.0,241.0,40.0,95.0,110.976,126.0,175.0,100.0,127.0,136.566,147.0,182.0,0.0,3.0,19.6668,37.0,90.0,116.0,115.07,1.38366,3.59475,2.55934,8.0,8.0,8.0,0.00176326,0.00119456
+2825,94.227467,0.0,0.0,37.0,75.5539,162.0,223.0,34.0,94.0,110.811,126.0,177.0,98.0,127.0,136.554,147.0,183.0,0.0,3.0,19.8313,38.0,95.0,116.0,114.639,1.64217,3.68928,2.63557,8.0,8.0,8.0,0.00174611,0.0011917
+2826,94.260833,0.0,0.0,37.0,75.6526,163.0,215.0,32.0,94.0,110.848,126.0,173.0,103.0,127.0,136.782,148.0,182.0,0.0,3.0,19.9048,38.0,97.0,116.0,115.367,1.40784,3.67204,2.5414,8.0,8.0,8.0,0.00150034,0.0011917
+2827,94.2942,0.0,0.0,37.0,75.743,163.0,211.0,40.0,95.0,110.849,126.0,176.0,102.0,127.0,136.648,147.0,183.0,0.0,3.0,19.8217,38.0,96.0,116.0,115.715,1.63963,3.68885,2.5333,8.0,8.0,8.0,0.00162037,0.00119456
+2828,94.327567,0.0,0.0,37.0,75.5609,162.0,217.0,44.0,95.0,111.125,126.0,173.0,95.0,127.0,136.575,147.0,178.0,0.0,3.0,19.5999,37.0,90.0,116.0,115.834,1.63753,3.69489,2.57789,8.0,8.0,8.0,0.00148891,0.0011917
+2829,94.360933,0.0,0.0,37.0,75.5388,162.0,219.0,44.0,95.0,111.118,126.0,170.0,101.0,127.0,136.626,147.0,180.0,0.0,3.0,19.6244,37.0,89.0,116.0,116.177,1.51436,3.62347,2.55353,8.0,8.0,8.0,0.00137746,0.0011917
+2830,94.3943,0.0,0.0,37.0,75.4671,162.0,212.0,46.0,95.0,111.061,126.0,176.0,98.0,127.0,136.528,147.0,181.0,0.0,3.0,19.6098,37.0,89.0,116.0,114.357,1.73449,3.63581,2.55167,8.0,8.0,8.0,0.00147176,0.0011917
+2831,94.427667,0.0,0.0,37.0,75.4427,162.0,212.0,43.0,95.0,111.183,126.0,174.0,104.0,127.0,136.742,148.0,184.0,0.0,3.0,19.6191,37.0,94.0,116.0,115.533,1.40879,3.61896,2.52611,8.0,8.0,8.0,0.00151463,0.0011917
+2832,94.461033,0.0,0.0,37.0,75.3895,162.0,222.0,41.0,95.0,110.777,126.0,169.0,101.0,127.0,136.554,147.0,186.0,0.0,3.0,19.863,38.0,91.0,116.0,114.836,1.55032,3.74611,2.55482,8.0,8.0,8.0,0.00152606,0.0011917
+2833,94.4944,0.0,0.0,37.0,75.3586,162.0,213.0,35.0,94.0,110.904,126.0,171.0,106.0,127.0,136.671,148.0,181.0,0.0,3.0,19.8245,38.0,94.0,116.0,115.126,1.61568,3.77399,2.59977,8.0,8.0,8.0,0.0015032,0.0011917
+2834,94.527767,0.0,0.0,37.0,75.3266,162.0,213.0,34.0,94.0,110.963,126.0,165.0,101.0,127.0,136.705,147.0,181.0,0.0,3.0,19.7387,38.0,95.0,116.0,115.887,1.3827,3.68985,2.55129,8.0,8.0,8.0,0.00143747,0.0011917
+2835,94.561133,0.0,0.0,37.0,75.2988,162.0,213.0,38.0,95.0,110.972,126.0,182.0,102.0,127.0,136.628,147.0,181.0,0.0,3.0,19.7283,37.0,91.0,116.0,115.06,1.48778,3.64105,2.55184,8.0,8.0,8.0,0.0013746,0.0011917
+2836,94.5945,0.0,0.0,37.0,75.4088,162.0,241.0,44.0,95.0,110.917,126.0,169.0,103.0,127.0,136.705,148.0,184.0,0.0,3.0,19.8244,38.0,92.0,116.0,115.32,1.3298,3.68829,2.52123,8.0,8.0,8.0,0.00152321,0.00119456
+2837,94.627867,0.0,0.0,37.0,75.3733,162.0,211.0,35.0,94.0,111.008,126.0,168.0,101.0,127.0,136.666,148.0,180.0,0.0,3.0,19.6861,38.0,93.0,116.0,115.926,1.50556,3.69949,2.64414,8.0,8.0,8.0,0.00151463,0.0011917
+2838,94.661233,0.0,0.0,37.0,75.4239,162.0,215.0,39.0,94.0,110.942,126.0,175.0,99.0,127.0,136.73,148.0,182.0,0.0,3.0,19.7723,38.0,90.0,116.0,115.75,1.60225,3.67127,2.61412,8.0,8.0,8.0,0.00146033,0.0011917
+2839,94.6946,0.0,0.0,37.0,75.421,162.0,229.0,37.0,94.0,110.84,126.0,174.0,105.0,127.0,136.907,148.0,181.0,0.0,3.0,19.9494,38.0,93.0,117.0,116.66,1.33859,3.66818,2.55039,8.0,8.0,8.0,0.00158608,0.0011917
+2840,94.727967,0.0,0.0,37.0,75.4419,162.0,235.0,41.0,95.0,110.803,126.0,178.0,91.0,127.0,136.812,148.0,184.0,0.0,3.0,19.9503,38.0,94.0,116.0,115.44,1.67537,3.70394,2.56634,8.0,8.0,8.0,0.0014289,0.0011917
+2841,94.761333,0.0,0.0,37.0,75.405,162.0,216.0,34.0,95.0,110.771,126.0,180.0,99.0,127.0,136.925,148.0,187.0,0.0,3.0,20.0716,38.0,98.0,116.0,115.406,1.53501,3.61891,2.55956,8.0,8.0,8.0,0.00147176,0.0011917
+2842,94.7947,0.0,0.0,37.0,75.5552,162.0,215.0,36.0,95.0,110.856,126.0,174.0,102.0,127.0,136.698,148.0,184.0,0.0,3.0,19.8603,38.0,94.0,116.0,115.195,2.03837,3.68541,2.64061,8.0,8.0,8.0,0.00144604,0.0011917
+2843,94.828067,0.0,0.0,37.0,75.6476,163.0,214.0,35.0,94.0,110.928,126.0,189.0,104.0,127.0,136.645,148.0,182.0,0.0,3.0,19.7974,38.0,94.0,116.0,114.531,1.93349,3.7106,2.58422,8.0,8.0,8.0,0.0014489,0.0011917
+2844,94.861433,0.0,0.0,37.0,75.695,163.0,215.0,31.0,95.0,111.177,126.0,178.0,103.0,127.0,136.657,147.0,182.0,0.0,3.0,19.5939,37.0,99.0,116.0,115.751,1.40627,3.68312,2.57094,8.0,8.0,8.0,0.00141175,0.0011917
+2845,94.8948,0.0,0.0,37.0,75.4209,162.0,216.0,37.0,95.0,111.169,126.0,183.0,103.0,127.0,136.552,147.0,181.0,0.0,3.0,19.5729,37.0,94.0,116.0,115.407,1.80775,3.70896,2.62915,8.0,8.0,8.0,0.00155464,0.0011917
+2846,94.928167,0.0,0.0,37.0,75.4716,162.0,216.0,36.0,95.0,111.111,126.0,182.0,103.0,127.0,136.733,148.0,180.0,0.0,3.0,19.6535,37.0,94.0,116.0,115.767,1.5281,3.60589,2.53065,8.0,8.0,8.0,0.00152321,0.0011917
+2847,94.961533,0.0,0.0,37.0,75.1919,162.0,217.0,38.0,95.0,111.15,126.0,183.0,102.0,127.0,136.535,147.0,187.0,0.0,3.0,19.5934,38.0,95.0,116.0,115.701,1.83154,3.67159,2.58108,8.0,8.0,8.0,0.00151463,0.0011917
+2848,94.9949,0.0,0.0,37.0,75.3311,162.0,214.0,37.0,95.0,111.281,126.0,176.0,103.0,127.0,136.483,147.0,181.0,0.0,3.0,19.4275,37.0,94.0,116.0,114.945,1.86085,3.65976,2.54561,8.0,8.0,8.0,0.00145176,0.0011917
+2849,95.028267,0.0,0.0,37.0,75.24,162.0,212.0,38.0,95.0,111.296,126.0,180.0,103.0,127.0,136.468,147.0,181.0,0.0,3.0,19.4194,37.0,92.0,116.0,115.555,1.48248,3.58338,2.52623,8.0,8.0,8.0,0.00147462,0.0011917
+2850,95.061633,0.0,0.0,37.0,75.3251,162.0,214.0,43.0,95.0,111.467,126.0,171.0,94.0,126.0,136.41,147.0,182.0,0.0,3.0,19.2379,37.0,90.0,116.0,114.925,1.74067,3.62381,2.61067,8.0,8.0,8.0,0.00134602,0.0011917
+2851,95.095,0.0,0.0,37.0,75.4455,162.0,216.0,46.0,95.0,111.486,126.0,168.0,93.0,126.0,136.455,147.0,182.0,0.0,3.0,19.2777,37.0,92.0,116.0,115.352,1.41625,3.61491,2.52455,8.0,8.0,8.0,0.0015032,0.0011917
+2852,95.128367,0.0,0.0,37.0,75.2967,162.0,214.0,42.0,95.0,111.411,127.0,174.0,96.0,127.0,136.467,147.0,183.0,0.0,3.0,19.3406,37.0,91.0,116.0,115.841,1.75194,3.64808,2.53952,8.0,8.0,8.0,0.00148034,0.0011917
+2853,95.161733,0.0,0.0,37.0,75.2954,162.0,216.0,39.0,95.0,111.49,126.0,170.0,104.0,127.0,136.435,147.0,183.0,0.0,3.0,19.2873,37.0,90.0,116.0,115.596,1.69818,3.71024,2.57495,8.0,8.0,8.0,0.00146033,0.0011917
+2854,95.1951,0.0,0.0,37.0,75.2801,162.0,216.0,38.0,95.0,111.464,127.0,177.0,100.0,127.0,136.484,147.0,181.0,0.0,3.0,19.2722,37.0,94.0,116.0,116.015,1.60249,3.7148,2.58717,8.0,8.0,8.0,0.00154607,0.0011917
+2855,95.228467,0.0,0.0,37.0,75.2295,162.0,212.0,41.0,95.0,111.232,126.0,174.0,93.0,127.0,136.411,147.0,183.0,0.0,3.0,19.4473,37.0,90.0,116.0,114.598,2.04197,3.73915,2.60998,8.0,8.0,8.0,0.0016318,0.0011917
+2856,95.261833,0.0,0.0,37.0,75.2989,162.0,212.0,39.0,95.0,111.192,126.0,174.0,97.0,127.0,136.597,147.0,183.0,0.0,3.0,19.5609,37.0,90.0,116.0,115.533,1.68933,3.65689,2.52514,8.0,8.0,8.0,0.00151177,0.0011917
+2857,95.2952,0.0,0.0,37.0,75.2889,162.0,229.0,41.0,95.0,111.434,126.0,183.0,94.0,127.0,136.467,147.0,182.0,0.0,3.0,19.3008,37.0,90.0,116.0,116.438,2.11994,3.69155,2.58781,8.0,8.0,8.0,0.00152321,0.0011917
+2858,95.328567,0.0,0.0,37.0,75.3722,162.0,214.0,41.0,95.0,111.151,126.0,177.0,95.0,127.0,136.53,147.0,181.0,0.0,3.0,19.5792,38.0,88.0,116.0,115.596,1.70135,3.69577,2.58147,8.0,8.0,8.0,0.00157465,0.0011917
+2859,95.361933,0.0,0.0,37.0,75.262,162.0,215.0,41.0,95.0,111.274,126.0,173.0,95.0,127.0,136.559,147.0,181.0,0.0,3.0,19.4997,37.0,92.0,116.0,116.036,1.41622,3.60025,2.52107,8.0,8.0,8.0,0.00158322,0.00119456
+2860,95.3953,0.0,0.0,37.0,75.3649,162.0,215.0,34.0,95.0,111.286,126.0,177.0,102.0,127.0,136.419,147.0,180.0,0.0,3.0,19.457,37.0,94.0,116.0,115.422,1.71877,3.63895,2.55349,8.0,8.0,8.0,0.00139175,0.0011917
+2861,95.428667,0.0,0.0,37.0,75.3631,162.0,214.0,37.0,95.0,111.091,126.0,169.0,100.0,127.0,136.667,147.0,183.0,0.0,3.0,19.6768,37.0,92.0,116.0,115.507,1.48144,3.62594,2.56215,8.0,8.0,8.0,0.00140604,0.0011917
+2862,95.462033,0.0,0.0,37.0,75.4272,162.0,233.0,37.0,95.0,110.953,126.0,167.0,98.0,127.0,136.426,147.0,184.0,0.0,3.0,19.6858,37.0,91.0,116.0,114.593,1.81838,3.66701,2.65058,8.0,8.0,8.0,0.00148605,0.0011917
+2863,95.4954,0.0,0.0,37.0,75.5962,162.0,241.0,38.0,95.0,111.115,126.0,170.0,93.0,126.0,136.359,147.0,180.0,0.0,3.0,19.5689,37.0,91.0,116.0,114.772,1.71636,3.69888,2.59272,8.0,8.0,8.0,0.00160322,0.00119456
+2864,95.528767,0.0,0.0,37.0,75.7021,162.0,213.0,36.0,95.0,111.221,126.0,181.0,102.0,127.0,136.565,147.0,181.0,0.0,3.0,19.5066,37.0,94.0,116.0,116.523,1.49858,3.6691,2.51639,8.0,8.0,8.0,0.00163466,0.0011917
+2865,95.562133,0.0,0.0,37.0,75.5173,162.0,228.0,36.0,95.0,111.162,126.0,174.0,95.0,127.0,136.396,147.0,180.0,0.0,3.0,19.5148,37.0,93.0,116.0,115.229,1.77181,3.66918,2.56636,8.0,8.0,8.0,0.00156607,0.0011917
+2866,95.5955,0.0,0.0,37.0,75.6248,162.0,214.0,37.0,95.0,111.153,126.0,179.0,99.0,127.0,136.588,147.0,179.0,0.0,3.0,19.5935,37.0,92.0,116.0,115.721,1.51539,3.66676,2.63156,8.0,8.0,8.0,0.00161751,0.0011917
+2867,95.628867,0.0,0.0,37.0,75.4611,162.0,234.0,36.0,95.0,111.335,126.0,180.0,101.0,127.0,136.397,147.0,180.0,0.0,3.0,19.3376,37.0,93.0,116.0,114.864,1.74361,3.65872,2.56117,8.0,8.0,8.0,0.00152606,0.0011917
+2868,95.662233,0.0,0.0,37.0,75.5345,163.0,213.0,41.0,95.0,111.048,126.0,179.0,102.0,127.0,136.596,147.0,179.0,0.0,3.0,19.6785,37.0,95.0,116.0,116.032,1.61717,3.67318,2.53371,8.0,8.0,8.0,0.00151463,0.00119456
+2869,95.6956,0.0,0.0,37.0,75.4955,162.0,210.0,46.0,95.0,111.052,126.0,175.0,90.0,127.0,136.624,147.0,183.0,0.0,3.0,19.6731,37.0,93.0,116.0,115.951,1.4335,3.66667,2.54151,8.0,8.0,8.0,0.0014832,0.0011917
+2870,95.728967,0.0,0.0,37.0,75.4671,162.0,223.0,46.0,95.0,111.306,126.0,174.0,88.0,127.0,136.408,147.0,180.0,0.0,3.0,19.3485,37.0,88.0,116.0,115.722,1.7682,3.64897,2.58302,8.0,8.0,8.0,0.00153178,0.0011917
+2871,95.762333,0.0,0.0,37.0,75.5032,162.0,211.0,45.0,95.0,111.528,126.0,173.0,89.0,127.0,136.534,147.0,182.0,0.0,3.0,19.2655,37.0,91.0,117.0,115.721,1.48204,3.58377,2.54832,8.0,8.0,8.0,0.00138317,0.0011917
+2872,95.7957,0.0,0.0,37.0,75.4092,162.0,212.0,45.0,95.0,111.042,126.0,177.0,94.0,127.0,136.632,147.0,181.0,0.0,3.0,19.674,38.0,92.0,116.0,116.395,1.52448,3.66171,2.54262,8.0,8.0,8.0,0.00149463,0.00119456
+2873,95.829067,0.0,0.0,37.0,75.3352,162.0,238.0,45.0,95.0,111.207,126.0,181.0,91.0,127.0,136.482,147.0,185.0,0.0,3.0,19.5057,37.0,92.0,116.0,115.214,1.73506,3.76208,2.59118,8.0,8.0,8.0,0.00163466,0.00119456
+2874,95.862433,0.0,0.0,37.0,75.5136,162.0,213.0,45.0,95.0,111.268,126.0,172.0,96.0,127.0,136.551,147.0,180.0,0.0,3.0,19.4332,37.0,91.0,116.0,115.618,1.44711,3.64783,2.53152,8.0,8.0,8.0,0.00156321,0.0011917
+2875,95.8958,0.0,0.0,37.0,75.6714,163.0,225.0,46.0,95.0,111.008,126.0,178.0,96.0,127.0,136.543,147.0,187.0,0.0,3.0,19.6827,37.0,92.0,116.0,115.762,1.5958,3.67038,2.587,8.0,8.0,8.0,0.0016861,0.0011917
+2876,95.929167,0.0,0.0,37.0,75.7912,163.0,219.0,40.0,95.0,111.001,126.0,177.0,97.0,127.0,136.633,147.0,180.0,0.0,3.0,19.698,38.0,98.0,116.0,115.681,1.43556,3.62484,2.53973,8.0,8.0,8.0,0.00151177,0.0011917
+2877,95.962533,0.0,0.0,37.0,75.4492,163.0,215.0,43.0,95.0,111.111,126.0,174.0,93.0,127.0,136.542,147.0,188.0,0.0,3.0,19.5908,38.0,96.0,116.0,114.743,1.77296,3.75575,2.64794,8.0,8.0,8.0,0.00149749,0.0011917
+2878,95.9959,0.0,0.0,37.0,75.32,162.0,215.0,46.0,95.0,111.095,126.0,179.0,102.0,127.0,136.662,147.0,183.0,0.0,3.0,19.6581,37.0,94.0,116.0,115.846,1.8037,3.74227,2.63545,8.0,8.0,8.0,0.00160037,0.00119456
+2879,96.029267,0.0,0.0,37.0,75.2786,162.0,221.0,46.0,95.0,110.94,126.0,186.0,99.0,127.0,136.892,148.0,187.0,0.0,3.0,19.8644,38.0,94.0,116.0,115.91,1.43893,3.61704,2.55424,8.0,8.0,8.0,0.00159465,0.0011917
+2880,96.062633,0.0,0.0,37.0,75.5339,162.0,213.0,44.0,94.0,110.986,126.0,182.0,102.0,127.0,136.863,148.0,180.0,0.0,3.0,19.8114,38.0,91.0,117.0,116.138,1.89606,3.6733,2.56637,8.0,8.0,8.0,0.00175183,0.00119456
+2881,96.096,0.0,0.0,37.0,75.7317,163.0,214.0,38.0,95.0,111.099,126.0,184.0,105.0,127.0,136.968,148.0,182.0,0.0,3.0,19.8291,38.0,91.0,117.0,116.563,1.69398,3.67196,2.58138,8.0,8.0,8.0,0.00158608,0.0011917
+2882,96.129367,0.0,0.0,37.0,75.5081,163.0,213.0,45.0,95.0,110.862,126.0,183.0,82.0,127.0,136.821,148.0,188.0,0.0,3.0,19.8996,38.0,90.0,116.0,116.867,2.26578,3.79178,2.71712,8.0,8.0,8.0,0.00167467,0.0011917
+2883,96.162733,0.0,0.0,37.0,75.6253,163.0,217.0,44.0,94.0,110.835,126.0,196.0,82.0,127.0,137.012,148.0,183.0,0.0,3.0,20.0775,38.0,92.0,117.0,116.839,2.25603,3.78612,2.65237,8.0,8.0,8.0,0.00149463,0.00119456
+2884,96.1961,0.0,0.0,37.0,75.7565,163.0,215.0,36.0,95.0,110.856,126.0,184.0,79.0,127.0,136.934,148.0,186.0,0.0,3.0,19.9756,38.0,93.0,116.0,116.052,1.78592,3.62699,2.59233,8.0,8.0,8.0,0.001869,0.00119456
+2885,96.229467,0.0,0.0,37.0,75.6923,163.0,236.0,39.0,94.0,110.781,126.0,190.0,82.0,127.0,136.734,148.0,184.0,0.0,3.0,19.9981,38.0,94.0,116.0,115.302,2.35477,3.71529,2.68474,8.0,8.0,8.0,0.00182042,0.00119456
+2886,96.262833,0.0,0.0,37.0,75.9352,163.0,212.0,38.0,94.0,110.7,126.0,194.0,85.0,127.0,136.84,148.0,183.0,0.0,3.0,20.1058,38.0,95.0,116.0,115.568,1.78291,3.71684,2.59108,8.0,8.0,8.0,0.00152892,0.00119456
+2887,96.2962,0.0,0.0,37.0,75.6798,163.0,209.0,41.0,95.0,110.884,126.0,178.0,79.0,127.0,136.804,148.0,182.0,0.0,3.0,19.9042,38.0,96.0,116.0,116.057,2.1348,3.72677,2.60709,8.0,8.0,8.0,0.00150892,0.0011917
+2888,96.329567,0.0,0.0,37.0,75.8248,163.0,212.0,35.0,95.0,110.969,126.0,181.0,87.0,127.0,137.026,148.0,184.0,0.0,3.0,19.9261,38.0,93.0,117.0,116.42,2.05871,3.67108,2.56215,8.0,8.0,8.0,0.00156893,0.0011917
+2889,96.362933,0.0,0.0,37.0,75.8362,163.0,229.0,39.0,94.0,110.884,126.0,188.0,79.0,127.0,137.091,148.0,190.0,0.0,3.0,20.0393,38.0,94.0,117.0,117.233,1.63042,3.68455,2.58325,8.0,8.0,8.0,0.00154035,0.0011917
+2890,96.3963,0.0,0.0,37.0,75.9173,163.0,232.0,40.0,94.0,110.763,126.0,186.0,79.0,127.0,137.067,148.0,188.0,0.0,3.0,20.1254,38.0,95.0,117.0,116.59,1.82554,3.8086,2.59494,8.0,8.0,8.0,0.0015775,0.0011917
+2891,96.429667,0.0,0.0,37.0,75.9426,163.0,215.0,44.0,94.0,110.877,126.0,194.0,84.0,127.0,137.156,148.0,189.0,0.0,3.0,20.0782,38.0,91.0,117.0,116.272,1.44783,3.69076,2.5687,8.0,8.0,8.0,0.00151463,0.0011917
+2892,96.463033,0.0,0.0,37.0,75.5217,162.0,215.0,45.0,95.0,110.84,126.0,173.0,82.0,127.0,137.025,148.0,184.0,0.0,3.0,20.0206,38.0,92.0,117.0,116.26,1.71032,3.67844,2.64122,8.0,8.0,8.0,0.00154321,0.0011917
+2893,96.4964,0.0,0.0,37.0,75.8172,163.0,215.0,44.0,94.0,110.715,126.0,184.0,84.0,127.0,137.161,149.0,185.0,0.0,3.0,20.2051,38.0,94.0,117.0,115.936,1.81172,3.73266,2.69719,8.0,8.0,8.0,0.00153749,0.0011917
+2894,96.529767,0.0,0.0,37.0,75.9135,163.0,215.0,41.0,94.0,110.775,126.0,180.0,78.0,127.0,137.131,148.0,182.0,0.0,3.0,20.1032,38.0,96.0,117.0,116.472,1.46941,3.67925,2.5976,8.0,8.0,8.0,0.00141461,0.0011917
+2895,96.563133,0.0,0.0,37.0,75.8308,163.0,212.0,42.0,94.0,110.915,126.0,177.0,80.0,127.0,136.918,148.0,183.0,0.0,3.0,19.9269,38.0,97.0,117.0,115.391,1.68079,3.63841,2.60975,8.0,8.0,8.0,0.00149749,0.0011917
+2896,96.5965,0.0,0.0,37.0,75.8987,163.0,215.0,46.0,94.0,110.898,126.0,180.0,75.0,127.0,137.037,148.0,186.0,0.0,3.0,19.992,38.0,89.0,117.0,116.228,1.43134,3.65179,2.54098,8.0,8.0,8.0,0.00141461,0.0011917
+2897,96.629867,0.0,0.0,37.0,75.8661,163.0,214.0,46.0,94.0,110.761,126.0,183.0,79.0,127.0,137.016,148.0,184.0,0.0,3.0,20.1304,38.0,95.0,117.0,116.017,1.80201,3.75434,2.66477,8.0,8.0,8.0,0.00147748,0.0011917
+2898,96.663233,0.0,0.0,37.0,75.7539,163.0,215.0,46.0,94.0,111.057,126.0,183.0,82.0,127.0,136.86,148.0,185.0,0.0,3.0,19.8365,38.0,95.0,117.0,116.721,1.81558,3.78072,2.67651,8.0,8.0,8.0,0.00146891,0.0011917
+2899,96.6966,0.0,0.0,37.0,75.8076,163.0,214.0,40.0,94.0,110.958,126.0,183.0,84.0,127.0,137.148,148.0,186.0,0.0,3.0,19.9915,38.0,96.0,117.0,117.415,1.34128,3.61757,2.5607,8.0,8.0,8.0,0.00144604,0.0011917
+2900,96.729967,0.0,0.0,37.0,75.9326,163.0,215.0,33.0,94.0,110.713,126.0,186.0,83.0,127.0,137.027,148.0,183.0,0.0,3.0,20.1607,38.0,96.0,117.0,116.094,1.56197,3.61343,2.57719,8.0,8.0,8.0,0.00147462,0.0011917
+2901,96.763333,0.0,0.0,37.0,75.9394,163.0,233.0,39.0,94.0,110.739,126.0,184.0,81.0,127.0,137.2,149.0,189.0,0.0,3.0,20.2125,39.0,96.0,117.0,115.608,1.42382,3.63141,2.5962,8.0,8.0,8.0,0.00150034,0.0011917
+2902,96.7967,0.0,0.0,37.0,75.9153,163.0,241.0,38.0,94.0,110.638,126.0,183.0,84.0,127.0,137.154,148.0,184.0,0.0,3.0,20.2434,39.0,93.0,117.0,115.944,1.63675,3.71615,2.63432,8.0,8.0,8.0,0.0014832,0.00119456
+2903,96.830067,0.0,0.0,37.0,76.0479,163.0,215.0,36.0,95.0,110.635,126.0,187.0,104.0,127.0,137.131,148.0,191.0,0.0,3.0,20.245,38.0,93.0,117.0,116.007,1.65698,3.77626,2.57286,8.0,8.0,8.0,0.00143176,0.0011917
+2904,96.863433,0.0,0.0,37.0,76.2132,164.0,215.0,34.0,95.0,110.97,126.0,188.0,103.0,127.0,137.143,148.0,183.0,0.0,3.0,19.9618,38.0,95.0,117.0,116.631,1.38032,3.6914,2.52156,8.0,8.0,8.0,0.00140604,0.0011917
+2905,96.8968,0.0,0.0,37.0,76.0488,164.0,221.0,41.0,94.0,111.068,126.0,182.0,81.0,127.0,136.9,148.0,186.0,0.0,3.0,19.8124,38.0,94.0,117.0,115.875,1.64226,3.72055,2.62074,8.0,8.0,8.0,0.00143461,0.0011917
+2906,96.930167,0.0,0.0,37.0,75.9435,164.0,217.0,38.0,94.0,111.016,126.0,183.0,86.0,127.0,136.941,148.0,183.0,0.0,3.0,19.8948,38.0,92.0,117.0,116.775,1.4302,3.68929,2.56976,8.0,8.0,8.0,0.00146891,0.0011917
+2907,96.963533,0.0,0.0,37.0,75.6478,163.0,213.0,36.0,95.0,110.908,126.0,185.0,88.0,127.0,137.011,148.0,184.0,0.0,3.0,19.9297,38.0,93.0,117.0,116.12,1.5089,3.69632,2.58089,8.0,8.0,8.0,0.00142318,0.0011917
+2908,96.9969,0.0,0.0,37.0,75.4653,163.0,214.0,35.0,95.0,111.045,126.0,187.0,86.0,127.0,137.06,148.0,184.0,0.0,3.0,19.8618,38.0,94.0,117.0,116.086,1.58166,3.6958,2.5657,8.0,8.0,8.0,0.0013203,0.0011917
+2909,97.030267,0.0,0.0,37.0,75.3465,163.0,235.0,44.0,94.0,110.9,126.0,175.0,81.0,127.0,137.242,149.0,184.0,0.0,3.0,20.0625,38.0,93.0,118.0,116.434,1.44324,3.70011,2.6306,8.0,8.0,8.0,0.0015032,0.0011917
+2910,97.063633,0.0,0.0,37.0,75.5779,163.0,214.0,45.0,94.0,110.82,126.0,171.0,87.0,127.0,137.144,148.0,182.0,0.0,3.0,20.0906,38.0,93.0,117.0,116.581,1.63616,3.74966,2.59817,8.0,8.0,8.0,0.00131744,0.0011917
+2911,97.097,0.0,0.0,37.0,75.6032,163.0,234.0,44.0,95.0,111.236,126.0,171.0,85.0,127.0,137.211,148.0,185.0,0.0,3.0,19.7952,38.0,95.0,118.0,117.49,1.32492,3.71471,2.56065,8.0,8.0,8.0,0.00139175,0.0011917
+2912,97.130367,0.0,0.0,37.0,75.7029,163.0,214.0,43.0,94.0,110.806,126.0,178.0,80.0,127.0,137.137,148.0,184.0,0.0,3.0,20.0878,38.0,96.0,117.0,116.127,1.55188,3.74462,2.61718,8.0,8.0,8.0,0.00146891,0.0011917
+2913,97.163733,0.0,0.0,37.0,75.6584,163.0,214.0,42.0,94.0,110.853,126.0,168.0,83.0,127.0,136.971,148.0,188.0,0.0,3.0,20.0379,38.0,97.0,117.0,115.57,1.55694,3.73884,2.65652,8.0,8.0,8.0,0.00146033,0.0011917
+2914,97.1971,0.0,0.0,37.0,75.7337,163.0,230.0,43.0,95.0,111.048,126.0,179.0,85.0,127.0,137.111,148.0,185.0,0.0,3.0,19.8786,38.0,94.0,117.0,116.639,1.39284,3.68832,2.59268,8.0,8.0,8.0,0.0014489,0.0011917
+2915,97.230467,0.0,0.0,37.0,75.6489,163.0,211.0,44.0,94.0,110.865,126.0,176.0,82.0,127.0,137.01,148.0,184.0,0.0,3.0,20.0324,38.0,95.0,117.0,115.79,1.49411,3.62209,2.58549,8.0,8.0,8.0,0.00138032,0.0011917
+2916,97.263833,0.0,0.0,37.0,75.6784,163.0,214.0,45.0,94.0,110.613,126.0,179.0,81.0,127.0,137.137,149.0,184.0,0.0,3.0,20.3019,39.0,94.0,117.0,115.236,1.3395,3.65099,2.5512,8.0,8.0,8.0,0.00147462,0.0011917
+2917,97.2972,0.0,0.0,37.0,75.5134,162.0,211.0,43.0,94.0,110.878,126.0,180.0,83.0,127.0,137.106,149.0,185.0,0.0,3.0,20.0603,39.0,93.0,117.0,116.349,1.6163,3.75176,2.65672,8.0,8.0,8.0,0.00143747,0.0011917
+2918,97.330567,0.0,0.0,37.0,75.702,163.0,214.0,38.0,94.0,110.853,126.0,184.0,83.0,127.0,137.229,149.0,182.0,0.0,3.0,20.1682,39.0,94.0,118.0,116.818,1.61793,3.77557,2.67548,8.0,8.0,8.0,0.00143461,0.0011917
+2919,97.363933,0.0,0.0,37.0,75.7395,163.0,215.0,43.0,94.0,110.817,126.0,186.0,94.0,127.0,137.335,149.0,184.0,0.0,3.0,20.2546,39.0,94.0,118.0,117.318,1.32769,3.74259,2.64994,8.0,8.0,8.0,0.00142604,0.0011917
+2920,97.3973,0.0,0.0,37.0,75.7149,163.0,227.0,39.0,93.0,110.543,126.0,188.0,97.0,127.0,137.344,149.0,186.0,0.0,3.0,20.4701,39.0,96.0,117.0,117.28,1.54807,3.74976,2.63908,8.0,8.0,8.0,0.00135745,0.0011917
+2921,97.430667,0.0,0.0,37.0,75.7553,163.0,212.0,40.0,93.0,110.325,126.0,186.0,88.0,127.0,137.488,149.0,186.0,0.0,3.0,20.7989,40.0,99.0,117.0,116.389,1.43376,3.82623,2.71348,8.0,8.0,8.0,0.00143747,0.0011917
+2922,97.464033,0.0,0.0,37.0,75.738,163.0,213.0,39.0,91.0,109.341,126.0,191.0,77.0,127.0,137.977,150.0,191.0,0.0,3.0,21.856,42.0,102.0,117.0,116.613,1.6652,4.13453,2.84834,8.0,8.0,8.0,0.00143176,0.0011917
+2923,97.4974,0.0,0.0,37.0,75.853,164.0,234.0,36.0,91.0,109.328,126.0,178.0,84.0,127.0,137.982,150.0,188.0,0.0,3.0,21.9274,42.0,103.0,117.0,116.874,1.59961,3.99479,2.80903,8.0,8.0,8.0,0.00159751,0.0011917
+2924,97.530767,0.0,0.0,37.0,75.8229,163.0,212.0,35.0,91.0,109.455,126.0,186.0,85.0,127.0,138.065,150.0,190.0,0.0,3.0,21.7907,42.0,102.0,118.0,117.517,1.40339,4.02739,2.79097,8.0,8.0,8.0,0.00147176,0.0011917
+2925,97.564133,0.0,0.0,37.0,75.6815,163.0,212.0,37.0,92.0,109.585,126.0,193.0,93.0,127.0,137.96,150.0,194.0,0.0,3.0,21.7035,42.0,104.0,118.0,116.972,1.68566,4.09475,2.85017,8.0,8.0,8.0,0.00142032,0.0011917
+2926,97.5975,0.0,0.0,37.0,75.6904,163.0,231.0,39.0,92.0,109.532,126.0,183.0,79.0,127.0,137.996,150.0,189.0,0.0,3.0,21.7227,42.0,100.0,118.0,116.702,1.42777,4.02194,2.81515,8.0,8.0,8.0,0.00156893,0.0011917
+2927,97.630867,0.0,0.0,37.0,75.9423,164.0,212.0,39.0,92.0,109.45,126.0,184.0,93.0,127.0,137.668,150.0,192.0,0.0,3.0,21.6865,41.0,102.0,117.0,115.966,1.58449,4.05319,2.85701,8.0,8.0,8.0,0.00144604,0.0011917
+2928,97.664233,0.0,0.0,37.0,75.8402,163.0,214.0,34.0,91.0,109.515,126.0,189.0,88.0,127.0,137.851,150.0,191.0,0.0,3.0,21.7234,42.0,100.0,117.0,116.946,1.49,4.03434,2.86642,8.0,8.0,8.0,0.00151749,0.0011917
+2929,97.6976,0.0,0.0,37.0,75.8182,163.0,214.0,36.0,91.0,109.526,126.0,186.0,83.0,127.0,137.842,150.0,188.0,0.0,3.0,21.6643,42.0,101.0,117.0,117.203,1.332,4.03916,2.85003,8.0,8.0,8.0,0.0014489,0.0011917
+2930,97.730967,0.0,0.0,37.0,75.8558,163.0,213.0,37.0,91.0,109.435,126.0,183.0,79.0,127.0,137.798,150.0,189.0,0.0,3.0,21.699,42.0,98.0,117.0,116.48,1.62193,4.05716,2.85868,8.0,8.0,8.0,0.00143747,0.0011917
+2931,97.764333,0.0,0.0,37.0,75.8335,163.0,211.0,36.0,91.0,109.461,126.0,178.0,68.0,127.0,137.956,150.0,195.0,0.0,3.0,21.7645,42.0,97.0,117.0,115.923,1.38407,4.07212,2.86708,8.0,8.0,8.0,0.00146605,0.0011917
+2932,97.7977,0.0,0.0,37.0,75.8381,163.0,212.0,38.0,91.0,109.202,126.0,173.0,80.0,127.0,137.883,150.0,190.0,0.0,3.0,21.9285,42.0,99.0,117.0,117.322,1.74334,4.05237,2.87725,8.0,8.0,8.0,0.00141747,0.0011917
+2933,97.831067,0.0,0.0,37.0,75.5788,163.0,213.0,37.0,92.0,109.572,126.0,176.0,81.0,127.0,137.703,150.0,189.0,0.0,3.0,21.5694,41.0,105.0,117.0,116.265,2.03336,4.09673,2.82858,8.0,8.0,8.0,0.00138032,0.0011917
+2934,97.864433,0.0,0.0,37.0,75.7376,163.0,215.0,35.0,92.0,109.637,126.0,184.0,79.0,127.0,137.788,150.0,187.0,0.0,3.0,21.4943,41.0,102.0,117.0,117.301,1.72535,4.06263,2.84507,8.0,8.0,8.0,0.00155178,0.0011917
+2935,97.8978,0.0,0.0,37.0,75.5949,163.0,215.0,38.0,92.0,109.591,126.0,192.0,102.0,127.0,137.616,150.0,187.0,0.0,3.0,21.5168,41.0,104.0,117.0,116.371,2.13961,4.07627,2.9055,8.0,8.0,8.0,0.00155178,0.0011917
+2936,97.931167,0.0,0.0,37.0,75.5661,163.0,215.0,34.0,92.0,109.586,126.0,184.0,77.0,127.0,137.618,150.0,185.0,0.0,3.0,21.5251,41.0,105.0,117.0,116.837,1.65532,3.95909,2.78827,8.0,8.0,8.0,0.0014489,0.0011917
+2937,97.964533,0.0,0.0,37.0,75.6495,163.0,213.0,39.0,92.0,109.667,126.0,178.0,79.0,127.0,137.675,150.0,189.0,0.0,3.0,21.4778,41.0,96.0,117.0,116.964,2.05454,4.10255,2.88185,8.0,8.0,8.0,0.00140889,0.00119456
+2938,97.9979,0.0,0.0,37.0,75.6128,163.0,212.0,38.0,91.0,109.379,126.0,190.0,101.0,127.0,137.887,150.0,188.0,0.0,3.0,21.7916,42.0,99.0,117.0,116.531,2.08545,4.17628,2.88347,8.0,8.0,8.0,0.00138889,0.00119456
+2939,98.031267,0.0,0.0,37.0,75.5498,162.0,214.0,36.0,91.0,109.341,126.0,183.0,69.0,127.0,137.806,150.0,187.0,0.0,3.0,21.7833,42.0,101.0,117.0,116.857,1.52148,3.97645,2.84264,8.0,8.0,8.0,0.00144319,0.0011917
+2940,98.064633,0.0,0.0,37.0,75.72,163.0,235.0,31.0,92.0,109.529,126.0,188.0,77.0,127.0,137.784,149.0,190.0,0.0,3.0,21.6076,41.0,108.0,117.0,116.513,1.78306,3.9845,2.78548,8.0,8.0,8.0,0.00164037,0.0011917
+2941,98.098,0.0,0.0,37.0,75.7455,163.0,213.0,38.0,92.0,109.791,126.0,189.0,86.0,127.0,137.803,150.0,185.0,0.0,3.0,21.4166,41.0,100.0,118.0,117.159,1.46787,3.98928,2.83449,8.0,8.0,8.0,0.00144319,0.0011917
+2942,98.131367,0.0,0.0,37.0,75.5264,163.0,211.0,35.0,92.0,109.617,126.0,184.0,84.0,127.0,137.744,150.0,187.0,0.0,3.0,21.5201,41.0,103.0,117.0,116.995,1.753,4.03567,2.90287,8.0,8.0,8.0,0.00149463,0.0011917
+2943,98.164733,0.0,0.0,37.0,75.7134,163.0,213.0,40.0,92.0,109.68,126.0,187.0,75.0,127.0,137.759,150.0,186.0,0.0,3.0,21.4911,41.0,99.0,117.0,116.787,1.68479,4.0237,2.83283,8.0,8.0,8.0,0.00140032,0.0011917
+2944,98.1981,0.0,0.0,37.0,75.6161,163.0,213.0,29.0,92.0,109.891,126.0,194.0,96.0,127.0,137.623,150.0,186.0,0.0,3.0,21.2286,41.0,103.0,117.0,116.758,1.31974,3.92807,2.78671,8.0,8.0,8.0,0.0014489,0.0011917
+2945,98.231467,0.0,0.0,37.0,75.4271,162.0,214.0,33.0,92.0,109.891,126.0,192.0,89.0,127.0,137.461,150.0,185.0,0.0,3.0,21.2104,41.0,98.0,117.0,116.038,1.65285,4.05117,2.8408,8.0,8.0,8.0,0.00151749,0.0011917
+2946,98.264833,0.0,0.0,37.0,75.4692,163.0,213.0,37.0,92.0,109.981,126.0,192.0,88.0,127.0,137.508,149.0,188.0,0.0,3.0,21.1577,40.0,98.0,117.0,116.85,1.42794,3.98858,2.82742,8.0,8.0,8.0,0.00146891,0.0011917
+2947,98.2982,0.0,0.0,37.0,75.3885,162.0,231.0,38.0,92.0,109.998,126.0,177.0,86.0,127.0,137.51,149.0,188.0,0.0,3.0,21.1275,40.0,96.0,117.0,116.127,1.59019,3.94827,2.84092,8.0,8.0,8.0,0.00155464,0.0011917
+2948,98.331567,0.0,0.0,37.0,75.2524,162.0,210.0,33.0,92.0,109.935,126.0,191.0,81.0,127.0,137.545,149.0,185.0,0.0,3.0,21.1536,41.0,96.0,117.0,116.94,1.69665,3.96758,2.7771,8.0,8.0,8.0,0.00143461,0.0011917
+2949,98.364933,0.0,0.0,37.0,75.3025,162.0,212.0,36.0,92.0,110.125,126.0,181.0,93.0,127.0,137.566,150.0,189.0,0.0,3.0,21.0095,40.0,99.0,117.0,117.029,1.48312,4.04271,2.77603,8.0,8.0,8.0,0.00144604,0.0011917
+2950,98.3983,0.0,0.0,37.0,75.4867,163.0,211.0,37.0,92.0,109.922,126.0,180.0,95.0,127.0,137.493,149.0,186.0,0.0,3.0,21.1921,40.0,99.0,117.0,116.757,1.70754,4.02083,2.84793,8.0,8.0,8.0,0.00142604,0.0011917
+2951,98.431667,0.0,0.0,37.0,75.4755,163.0,212.0,38.0,92.0,109.956,126.0,193.0,79.0,127.0,137.722,150.0,192.0,0.0,3.0,21.3367,41.0,97.0,118.0,117.83,1.41742,4.04188,2.89339,8.0,8.0,8.0,0.00143747,0.0011917
+2952,98.465033,0.0,0.0,37.0,75.2937,163.0,224.0,36.0,92.0,109.69,126.0,187.0,85.0,127.0,137.336,149.0,190.0,0.0,3.0,21.3717,41.0,97.0,116.0,115.765,1.67741,4.10615,2.89967,8.0,8.0,8.0,0.00150606,0.0011917
+2953,98.4984,0.0,0.0,37.0,75.5817,163.0,213.0,37.0,92.0,109.646,126.0,182.0,82.0,127.0,137.55,150.0,189.0,0.0,3.0,21.4933,41.0,102.0,116.0,115.864,1.66976,4.09793,2.90047,8.0,8.0,8.0,0.00148605,0.0011917
+2954,98.531767,0.0,0.0,37.0,75.6115,163.0,225.0,31.0,91.0,109.291,126.0,193.0,77.0,127.0,137.836,150.0,191.0,0.0,3.0,21.9163,42.0,104.0,117.0,116.952,1.46667,4.10996,2.91537,8.0,8.0,8.0,0.00150034,0.0011917
+2955,98.565133,0.0,0.0,37.0,75.7486,163.0,212.0,34.0,91.0,109.104,126.0,186.0,77.0,126.0,137.805,150.0,192.0,0.0,3.0,22.1484,42.0,102.0,117.0,116.922,1.79929,4.18176,2.97319,8.0,8.0,8.0,0.00162037,0.0011917
+2956,98.5985,0.0,0.0,37.0,75.8861,163.0,213.0,35.0,90.0,108.863,126.0,185.0,80.0,127.0,138.004,151.0,188.0,0.0,3.0,22.4077,43.0,104.0,117.0,116.525,1.54223,4.16174,2.97315,8.0,8.0,8.0,0.0014489,0.0011917
+2957,98.631867,0.0,0.0,37.0,75.8027,163.0,214.0,32.0,90.0,108.826,126.0,197.0,86.0,126.0,137.833,151.0,192.0,0.0,3.0,22.4191,43.0,105.0,116.0,115.964,1.81804,4.27204,3.04048,8.0,8.0,8.0,0.00158608,0.0011917
+2958,98.665233,0.0,0.0,37.0,75.7681,163.0,214.0,33.0,90.0,108.921,126.0,196.0,97.0,127.0,138.013,151.0,191.0,0.0,3.0,22.385,43.0,108.0,117.0,116.807,1.76334,4.38947,3.08709,8.0,8.0,8.0,0.00142032,0.0011917
+2959,98.6986,0.0,0.0,37.0,75.7317,163.0,214.0,29.0,90.0,108.899,126.0,200.0,96.0,127.0,138.07,151.0,194.0,0.0,3.0,22.4484,43.0,105.0,117.0,117.781,1.39728,4.31547,2.93537,8.0,8.0,8.0,0.00137174,0.0011917
+2960,98.731967,0.0,0.0,37.0,75.7778,163.0,213.0,28.0,90.0,108.872,126.0,204.0,99.0,127.0,137.884,151.0,193.0,0.0,3.0,22.384,43.0,110.0,116.0,116.499,1.6038,4.33188,2.96727,8.0,8.0,8.0,0.00152606,0.0011917
+2961,98.765333,0.0,0.0,37.0,75.8044,163.0,211.0,29.0,90.0,108.803,126.0,189.0,94.0,126.0,138.082,151.0,192.0,0.0,3.0,22.5903,43.0,102.0,117.0,116.566,1.41828,4.35097,3.01887,8.0,8.0,8.0,0.00145748,0.0011917
+2962,98.7987,0.0,0.0,37.0,75.874,163.0,216.0,29.0,89.0,108.506,126.0,193.0,88.0,126.0,138.187,151.0,193.0,0.0,3.0,22.9008,44.0,102.0,117.0,117.327,1.70882,4.34371,3.04035,8.0,8.0,8.0,0.00144604,0.0011917
+2963,98.832067,0.0,0.0,37.0,76.0762,164.0,213.0,31.0,89.0,108.626,126.0,177.0,100.0,127.0,138.307,151.0,197.0,0.0,3.0,22.7809,44.0,105.0,117.0,117.185,1.59888,4.35362,3.1767,8.0,8.0,8.0,0.00142032,0.0011917
+2964,98.865433,0.0,0.0,37.0,76.0976,163.0,236.0,24.0,89.0,108.681,127.0,193.0,97.0,127.0,138.322,151.0,194.0,0.0,3.0,22.7547,44.0,106.0,118.0,118.903,1.45089,4.30326,3.06717,8.0,8.0,8.0,0.0014832,0.00119456
+2965,98.8988,0.0,0.0,37.0,75.9487,163.0,233.0,24.0,89.0,108.366,126.0,197.0,98.0,127.0,138.372,151.0,192.0,0.0,3.0,23.0385,45.0,106.0,117.0,117.555,1.82814,4.37732,3.08221,8.0,8.0,8.0,0.00150034,0.0011917
+2966,98.932167,0.0,0.0,37.0,76.0953,164.0,216.0,23.0,89.0,108.356,126.0,201.0,99.0,127.0,138.523,152.0,194.0,0.0,3.0,23.1079,44.0,109.0,117.0,116.775,1.6582,4.38051,3.08426,8.0,8.0,8.0,0.0014289,0.0011917
+2967,98.965533,0.0,0.0,37.0,75.951,164.0,213.0,27.0,89.0,108.307,126.0,194.0,94.0,127.0,138.262,151.0,190.0,0.0,3.0,23.0573,44.0,106.0,117.0,116.336,2.03138,4.45716,3.26373,8.0,8.0,8.0,0.00153464,0.0011917
+2968,98.9989,0.0,0.0,37.0,75.5966,163.0,215.0,26.0,89.0,108.053,126.0,194.0,97.0,127.0,138.43,152.0,195.0,0.0,3.0,23.3784,45.0,107.0,117.0,115.774,1.95711,4.37388,3.17148,8.0,8.0,8.0,0.00146319,0.0011917
+2969,99.032267,0.0,0.0,37.0,75.6166,163.0,214.0,24.0,89.0,108.269,126.0,195.0,79.0,127.0,138.318,151.0,187.0,0.0,3.0,23.0719,44.0,113.0,117.0,116.341,1.41031,4.2981,3.06741,8.0,8.0,8.0,0.00139746,0.0011917
+2970,99.065633,0.0,0.0,37.0,75.6596,163.0,212.0,28.0,89.0,108.377,126.0,197.0,84.0,127.0,138.114,151.0,192.0,0.0,3.0,22.9336,44.0,107.0,116.0,115.747,1.59096,4.29633,3.07086,8.0,8.0,8.0,0.00138317,0.0011917
+2971,99.099,0.0,0.0,37.0,75.6053,163.0,216.0,25.0,89.0,108.361,126.0,192.0,87.0,126.0,138.133,151.0,194.0,0.0,3.0,22.9716,44.0,106.0,116.0,115.242,1.39638,4.33301,3.08555,8.0,8.0,8.0,0.0013203,0.0011917
+2972,99.132367,0.0,0.0,37.0,75.5789,163.0,215.0,25.0,89.0,108.116,126.0,186.0,80.0,127.0,138.162,151.0,194.0,0.0,3.0,23.1531,45.0,111.0,116.0,115.705,1.75327,4.40131,3.12361,8.0,8.0,8.0,0.00137174,0.0011917
+2973,99.165733,0.0,0.0,37.0,75.8382,163.0,234.0,26.0,89.0,108.332,126.0,191.0,88.0,126.0,138.174,151.0,189.0,0.0,3.0,22.982,44.0,104.0,116.0,115.705,2.05241,4.39532,3.08911,8.0,8.0,8.0,0.00156321,0.0011917
+2974,99.1991,0.0,0.0,37.0,75.9767,164.0,214.0,25.0,89.0,108.311,126.0,190.0,81.0,127.0,138.3,151.0,191.0,0.0,3.0,23.0463,45.0,104.0,117.0,116.556,1.53606,4.25839,2.98281,8.0,8.0,8.0,0.00152321,0.0011917
+2975,99.232467,0.0,0.0,37.0,76.1311,164.0,235.0,27.0,88.0,107.932,126.0,203.0,84.0,126.0,138.287,151.0,197.0,0.0,4.0,23.4274,45.0,107.0,116.0,115.218,1.84256,4.47477,3.1027,8.0,8.0,8.0,0.00145462,0.0011917
+2976,99.265833,0.0,0.0,37.0,76.3364,164.0,213.0,26.0,88.0,107.829,126.0,189.0,79.0,127.0,138.478,152.0,192.0,0.0,4.0,23.5357,45.0,105.0,116.0,115.585,1.46437,4.36994,3.06875,8.0,8.0,8.0,0.00150034,0.0011917
+2977,99.2992,0.0,0.0,37.0,76.3078,164.0,215.0,31.0,89.0,107.95,126.0,181.0,75.0,127.0,138.164,151.0,192.0,0.0,3.0,23.3165,45.0,105.0,116.0,115.414,1.74316,4.39946,3.09251,8.0,8.0,8.0,0.00144033,0.0011917
+2978,99.332567,0.0,0.0,37.0,76.2452,164.0,212.0,27.0,89.0,107.836,126.0,195.0,89.0,126.0,138.261,151.0,193.0,0.0,3.0,23.4352,45.0,107.0,116.0,115.038,1.70809,4.36766,3.04055,8.0,8.0,8.0,0.00154607,0.0011917
+2979,99.365933,0.0,0.0,37.0,76.3627,164.0,231.0,29.0,89.0,107.835,126.0,202.0,98.0,127.0,138.348,152.0,194.0,0.0,3.0,23.4915,45.0,105.0,116.0,115.107,1.46385,4.30426,3.0586,8.0,8.0,8.0,0.00151177,0.0011917
+2980,99.3993,0.0,0.0,37.0,76.5616,164.0,215.0,25.0,89.0,107.902,126.0,171.0,96.0,127.0,138.289,151.0,189.0,0.0,3.0,23.3205,45.0,106.0,116.0,115.929,1.72654,4.38189,3.11068,8.0,8.0,8.0,0.0014489,0.0011917
+2981,99.432667,0.0,0.0,37.0,76.6172,164.0,214.0,32.0,89.0,108.15,126.0,194.0,84.0,127.0,138.34,151.0,192.0,0.0,3.0,23.1937,44.0,107.0,116.0,116.216,1.39046,4.36672,3.03016,8.0,8.0,8.0,0.00154321,0.0011917
+2982,99.466033,0.0,0.0,37.0,76.4816,164.0,216.0,30.0,89.0,108.15,126.0,182.0,82.0,127.0,138.008,151.0,196.0,0.0,3.0,23.0304,44.0,104.0,116.0,115.328,1.56004,4.3225,3.03396,8.0,8.0,8.0,0.00151463,0.0011917
+2983,99.4994,0.0,0.0,37.0,76.634,165.0,214.0,32.0,89.0,108.481,126.0,196.0,94.0,127.0,138.233,151.0,192.0,0.0,3.0,22.8805,44.0,106.0,117.0,115.886,1.65233,4.33869,3.08227,8.0,8.0,8.0,0.00147748,0.0011917
+2984,99.532767,0.0,0.0,37.0,76.6779,165.0,213.0,30.0,89.0,108.199,126.0,189.0,89.0,127.0,138.383,151.0,193.0,0.0,4.0,23.1643,44.0,104.0,117.0,116.156,1.38338,4.28401,3.03181,8.0,8.0,8.0,0.00157179,0.0011917
+2985,99.566133,0.0,0.0,37.0,76.5367,164.0,212.0,32.0,89.0,108.018,126.0,193.0,87.0,127.0,138.321,151.0,197.0,0.0,3.0,23.3058,44.0,110.0,116.0,115.431,1.58637,4.32635,3.07491,8.0,8.0,8.0,0.00148605,0.0011917
+2986,99.5995,0.0,0.0,37.0,76.5512,164.0,211.0,25.0,89.0,108.08,126.0,193.0,92.0,127.0,138.596,152.0,200.0,0.0,4.0,23.3513,44.0,109.0,117.0,115.716,1.38929,4.30513,2.97494,8.0,8.0,8.0,0.00133173,0.0011917
+2987,99.632867,0.0,0.0,37.0,76.4385,164.0,218.0,26.0,90.0,108.4,126.0,187.0,88.0,127.0,138.033,151.0,196.0,0.0,3.0,22.8658,44.0,107.0,116.0,116.141,1.64133,4.32314,3.11932,8.0,8.0,8.0,0.00161751,0.0011917
+2988,99.666233,0.0,0.0,37.0,76.4798,164.0,212.0,26.0,89.0,108.187,126.0,187.0,89.0,127.0,138.385,151.0,203.0,0.0,3.0,23.1929,44.0,106.0,117.0,116.258,1.60014,4.29743,3.1304,8.0,8.0,8.0,0.00152035,0.0011917
+2989,99.6996,0.0,0.0,37.0,76.5086,164.0,238.0,29.0,89.0,108.226,126.0,179.0,79.0,127.0,138.33,151.0,197.0,0.0,3.0,23.0915,44.0,109.0,117.0,116.885,1.35271,4.27451,3.01836,8.0,8.0,8.0,0.00162894,0.00119456
+2990,99.732967,0.0,0.0,37.0,76.5155,164.0,213.0,33.0,89.0,108.393,126.0,181.0,81.0,127.0,138.088,151.0,193.0,0.0,3.0,22.8484,44.0,108.0,116.0,116.404,1.49085,4.34631,3.04899,8.0,8.0,8.0,0.00144604,0.0011917
+2991,99.766333,0.0,0.0,37.0,76.5907,165.0,222.0,33.0,89.0,108.108,126.0,186.0,84.0,127.0,138.282,151.0,194.0,0.0,4.0,23.2119,44.0,108.0,116.0,115.426,1.38226,4.33309,3.05263,8.0,8.0,8.0,0.00152606,0.0011917
+2992,99.7997,0.0,0.0,37.0,76.2565,164.0,213.0,30.0,89.0,108.163,126.0,186.0,87.0,127.0,138.193,151.0,196.0,0.0,4.0,23.1095,44.0,105.0,116.0,115.671,1.66866,4.32465,3.08102,8.0,8.0,8.0,0.00168896,0.0011917
+2993,99.833067,0.0,0.0,37.0,76.4097,164.0,215.0,33.0,89.0,108.231,126.0,189.0,88.0,127.0,138.33,151.0,198.0,0.0,4.0,23.1182,44.0,111.0,116.0,116.183,1.4914,4.27045,3.04632,8.0,8.0,8.0,0.00158893,0.0011917
+2994,99.866433,0.0,0.0,37.0,76.3505,164.0,213.0,28.0,89.0,108.094,126.0,185.0,81.0,127.0,138.42,151.0,197.0,0.0,3.0,23.1915,44.0,113.0,117.0,116.145,1.31626,4.3048,3.02549,8.0,8.0,8.0,0.00145748,0.0011917
+2995,99.8998,0.0,0.0,37.0,76.3742,164.0,234.0,31.0,89.0,107.95,126.0,176.0,79.0,126.0,138.125,151.0,196.0,0.0,3.0,23.3069,44.0,106.0,116.0,114.562,1.58982,4.3423,3.13369,8.0,8.0,8.0,0.00158608,0.0011917
+2996,99.933167,0.0,0.0,37.0,76.4581,164.0,214.0,29.0,89.0,108.113,126.0,188.0,93.0,126.0,138.211,151.0,199.0,0.0,3.0,23.2094,44.0,115.0,116.0,115.714,1.43289,4.36403,3.07934,8.0,8.0,8.0,0.00136603,0.0011917
+2997,99.966533,0.0,0.0,37.0,76.4367,164.0,213.0,30.0,89.0,108.448,126.0,193.0,94.0,127.0,138.095,151.0,202.0,0.0,3.0,22.8491,44.0,108.0,116.0,116.53,1.55292,4.43312,3.04513,8.0,8.0,8.0,0.00152321,0.0011917
+2998,99.9999,0.0,0.0,37.0,76.5692,164.0,214.0,33.0,90.0,109.082,126.0,191.0,92.0,126.0,137.77,150.0,197.0,0.0,3.0,22.1257,43.0,105.0,116.0,115.765,1.51479,4.37206,3.02245,8.0,8.0,8.0,0.00148891,0.0011917
+2999,100.033267,0.0,0.0,37.0,76.6276,164.0,213.0,34.0,91.0,109.294,126.0,215.0,102.0,127.0,137.762,150.0,199.0,0.0,3.0,21.8718,42.0,103.0,117.0,116.594,1.35751,4.16288,2.95074,8.0,8.0,8.0,0.00153749,0.0011917
+3000,100.066633,0.0,0.0,37.0,76.7967,165.0,213.0,29.0,91.0,109.118,126.0,201.0,101.0,127.0,137.874,150.0,196.0,0.0,3.0,22.0595,42.0,107.0,117.0,116.376,1.57153,4.18053,2.91335,8.0,8.0,8.0,0.00162037,0.0011917
+3001,100.1,0.0,0.0,37.0,76.8289,165.0,214.0,35.0,90.0,109.033,126.0,190.0,91.0,127.0,137.895,151.0,192.0,0.0,3.0,22.1936,43.0,102.0,117.0,116.364,1.35494,4.0794,2.86517,8.0,8.0,8.0,0.00136603,0.0011917
+3002,100.133367,0.0,0.0,37.0,76.7755,165.0,212.0,35.0,90.0,108.774,126.0,184.0,88.0,127.0,137.82,150.0,195.0,0.0,3.0,22.3314,43.0,104.0,116.0,115.629,1.49953,4.1662,2.92965,8.0,8.0,8.0,0.00148034,0.00119742
+3003,100.166733,0.0,0.0,37.0,76.97,165.0,212.0,35.0,90.0,108.866,126.0,194.0,100.0,127.0,137.877,150.0,190.0,0.0,3.0,22.3501,43.0,103.0,116.0,116.818,1.67463,4.17864,2.99728,8.0,8.0,8.0,0.00144033,0.0011917
+3004,100.2001,0.0,0.0,37.0,76.9632,165.0,213.0,33.0,90.0,108.848,126.0,193.0,102.0,127.0,137.934,150.0,190.0,0.0,3.0,22.3209,43.0,103.0,116.0,116.188,1.43289,4.10927,2.97151,8.0,8.0,8.0,0.00158893,0.0011917
+3005,100.233467,0.0,0.0,37.0,76.8914,165.0,212.0,35.0,90.0,108.903,126.0,199.0,102.0,127.0,137.737,150.0,193.0,0.0,3.0,22.2549,43.0,101.0,116.0,116.655,1.6033,4.11336,2.93072,8.0,8.0,8.0,0.00135745,0.0011917
+3006,100.266833,0.0,0.0,37.0,77.055,166.0,230.0,32.0,90.0,108.866,126.0,196.0,94.0,127.0,137.901,150.0,190.0,0.0,3.0,22.3519,43.0,101.0,116.0,116.044,1.43575,4.13373,2.96984,8.0,8.0,8.0,0.00143747,0.0011917
+3007,100.3002,0.0,0.0,37.0,76.6897,165.0,213.0,34.0,90.0,109.204,126.0,210.0,99.0,127.0,137.62,150.0,188.0,0.0,3.0,21.9529,42.0,105.0,116.0,116.735,1.70935,4.22798,2.99132,8.0,8.0,8.0,0.00145176,0.0011917
+3008,100.333567,0.0,0.0,37.0,76.5007,164.0,210.0,25.0,90.0,109.132,126.0,204.0,96.0,126.0,137.629,150.0,188.0,0.0,3.0,22.0374,42.0,107.0,116.0,115.983,1.67971,4.21068,2.91019,8.0,8.0,8.0,0.00145748,0.00119456
+3009,100.366933,0.0,0.0,37.0,76.5089,164.0,210.0,26.0,90.0,109.217,126.0,193.0,99.0,127.0,137.747,150.0,201.0,0.0,3.0,21.9656,43.0,103.0,117.0,117.355,1.40214,4.19592,2.94998,8.0,8.0,8.0,0.00132602,0.0011917
+3010,100.4003,0.0,0.0,37.0,76.576,165.0,212.0,28.0,90.0,108.996,126.0,199.0,101.0,127.0,137.625,150.0,191.0,0.0,3.0,22.08,43.0,103.0,116.0,115.907,1.46134,4.17561,2.93086,8.0,8.0,8.0,0.00133459,0.00119456
+3011,100.433667,0.0,0.0,37.0,76.5467,165.0,237.0,30.0,90.0,108.964,126.0,188.0,100.0,127.0,137.693,150.0,190.0,0.0,3.0,22.1732,43.0,102.0,116.0,116.06,1.36833,4.13006,2.95849,8.0,8.0,8.0,0.00141747,0.00119456
+3012,100.467033,0.0,0.0,37.0,76.3649,164.0,215.0,27.0,90.0,108.721,126.0,198.0,100.0,127.0,137.94,150.0,194.0,0.0,3.0,22.4462,43.0,103.0,117.0,117.026,1.5665,4.19262,2.99099,8.0,8.0,8.0,0.0013746,0.00119456
+3013,100.5004,0.0,0.0,37.0,76.4014,165.0,218.0,28.0,90.0,108.99,126.0,200.0,98.0,127.0,137.939,150.0,188.0,0.0,3.0,22.225,43.0,103.0,117.0,116.46,1.57233,4.16685,2.95782,8.0,8.0,8.0,0.00154607,0.00119742
+3014,100.533767,0.0,0.0,37.0,76.3114,164.0,235.0,34.0,90.0,108.816,126.0,192.0,100.0,127.0,137.983,150.0,190.0,0.0,3.0,22.3447,43.0,109.0,117.0,116.904,1.30319,4.08823,2.88832,8.0,8.0,8.0,0.00144319,0.0011917
+3015,100.567133,0.0,0.0,37.0,76.0493,164.0,214.0,35.0,90.0,108.815,126.0,200.0,102.0,127.0,137.777,150.0,187.0,0.0,3.0,22.3205,43.0,103.0,116.0,116.417,1.58286,4.1366,2.9579,8.0,8.0,8.0,0.00134602,0.0011917
+3016,100.6005,0.0,0.0,37.0,76.1828,164.0,213.0,36.0,90.0,108.836,126.0,216.0,100.0,127.0,137.849,150.0,192.0,0.0,3.0,22.351,43.0,106.0,116.0,116.458,1.38648,4.17994,2.9251,8.0,8.0,8.0,0.00136603,0.0011917
+3017,100.633867,0.0,0.0,37.0,76.3956,164.0,242.0,27.0,90.0,108.971,126.0,206.0,101.0,127.0,137.88,150.0,186.0,0.0,3.0,22.2134,43.0,105.0,117.0,116.652,1.59848,4.1689,2.95242,8.0,8.0,8.0,0.00155178,0.00119456
+3018,100.667233,0.0,0.0,37.0,76.3118,164.0,231.0,32.0,90.0,108.856,126.0,201.0,99.0,127.0,138.096,151.0,191.0,0.0,3.0,22.391,43.0,106.0,117.0,117.454,1.48661,4.17825,2.94728,8.0,8.0,8.0,0.00160894,0.00119456
+3019,100.7006,0.0,0.0,37.0,76.3803,164.0,214.0,25.0,90.0,109.166,127.0,210.0,101.0,127.0,138.016,150.0,190.0,0.0,3.0,22.1352,43.0,106.0,118.0,119.237,1.52035,4.21834,2.96619,8.0,8.0,8.0,0.000814472,0.0011917
+3020,100.733967,0.0,0.0,37.0,76.5669,165.0,215.0,27.0,90.0,109.264,127.0,191.0,100.0,127.0,137.796,150.0,188.0,0.0,3.0,21.9272,42.0,103.0,117.0,118.732,1.81763,4.14823,2.90104,8.0,8.0,8.0,0.000891632,0.0011917
+3021,100.767333,0.0,0.0,37.0,76.5655,165.0,214.0,36.0,91.0,109.463,127.0,204.0,102.0,127.0,137.915,150.0,189.0,0.0,3.0,21.8281,42.0,103.0,118.0,119.191,1.49496,4.10013,2.91244,8.0,8.0,8.0,0.00138889,0.0011917
+3022,100.8007,0.0,0.0,37.0,76.5568,165.0,213.0,35.0,90.0,109.245,127.0,207.0,100.0,127.0,138.116,150.0,188.0,0.0,3.0,22.0654,43.0,106.0,118.0,120.171,1.6327,4.15049,2.91883,8.0,8.0,8.0,0.00136031,0.0011917
+3023,100.834067,0.0,0.0,37.0,76.5826,164.0,212.0,35.0,91.0,109.652,127.0,198.0,102.0,127.0,138.149,151.0,191.0,0.0,3.0,21.7792,42.0,102.0,119.0,121.429,1.73643,4.221,2.9551,8.0,8.0,8.0,0.00138603,0.0011917
+3024,100.867433,0.0,0.0,37.0,76.613,164.0,230.0,29.0,91.0,109.586,127.0,198.0,90.0,127.0,138.267,150.0,189.0,0.0,3.0,21.8384,42.0,104.0,119.0,121.029,1.57604,4.13249,2.94952,8.0,8.0,8.0,0.00145462,0.0011917
+3025,100.9008,0.0,0.0,37.0,76.3992,164.0,208.0,29.0,91.0,109.475,127.0,205.0,96.0,127.0,138.169,151.0,190.0,0.0,3.0,21.9182,42.0,103.0,119.0,121.01,1.76203,4.04794,2.90047,8.0,8.0,8.0,0.00138889,0.0011917
+3026,100.934167,0.0,0.0,37.0,76.5578,164.0,230.0,29.0,91.0,109.545,127.0,176.0,89.0,127.0,138.328,151.0,190.0,0.0,3.0,21.9453,42.0,105.0,119.0,122.42,1.42713,4.0082,2.86237,8.0,8.0,8.0,0.00142318,0.0011917
+3027,100.967533,0.0,0.0,37.0,76.4905,164.0,231.0,34.0,90.0,109.346,127.0,212.0,82.0,127.0,138.436,151.0,188.0,0.0,3.0,22.1653,43.0,102.0,119.0,121.871,1.89689,4.16126,2.99424,8.0,8.0,8.0,0.00142604,0.0011917
+3028,101.0009,0.0,0.0,37.0,76.3686,164.0,215.0,25.0,91.0,109.637,127.0,207.0,98.0,127.0,138.285,151.0,191.0,0.0,3.0,21.8706,43.0,106.0,119.0,122.632,1.70694,4.26451,2.98451,8.0,8.0,8.0,0.00140318,0.0011917
+3029,101.034267,0.0,0.0,37.0,76.4068,164.0,235.0,33.0,91.0,109.598,127.0,185.0,99.0,127.0,138.53,151.0,193.0,0.0,3.0,22.0228,43.0,105.0,120.0,123.45,1.46605,4.12593,2.89345,8.0,8.0,8.0,0.00154035,0.0011917
+3030,101.067633,0.0,0.0,37.0,76.4393,164.0,212.0,28.0,91.0,109.855,127.0,184.0,85.0,127.0,138.343,151.0,188.0,0.0,3.0,21.6834,42.0,101.0,120.0,122.858,1.86453,4.1555,2.98045,8.0,8.0,8.0,0.00157179,0.0011917
+3031,101.101,0.0,0.0,37.0,76.3879,164.0,214.0,29.0,91.0,109.956,127.0,194.0,96.0,127.0,138.404,151.0,190.0,0.0,3.0,21.7004,43.0,105.0,120.0,123.922,1.62512,4.14952,2.99094,8.0,8.0,8.0,0.00139746,0.0011917
+3032,101.134367,0.0,0.0,37.0,76.2784,164.0,216.0,26.0,90.0,109.834,127.0,197.0,102.0,127.0,138.276,150.0,190.0,0.0,2.0,21.7333,43.0,105.0,120.0,124.68,2.02012,4.23559,3.03757,8.0,8.0,8.0,0.00134602,0.0011917
+3033,101.167733,0.0,0.0,37.0,76.368,164.0,216.0,29.0,91.0,110.09,127.0,196.0,101.0,127.0,138.108,151.0,190.0,0.0,2.0,21.4671,42.0,105.0,120.0,123.256,1.53959,4.12876,2.94294,8.0,8.0,8.0,0.00138032,0.0011917
+3034,101.2011,0.0,0.0,37.0,76.2472,164.0,216.0,27.0,91.0,110.021,127.0,196.0,96.0,127.0,138.216,150.0,192.0,0.0,3.0,21.5421,42.0,102.0,120.0,124.049,1.44484,4.15157,2.93546,8.0,8.0,8.0,0.00149749,0.0011917
+3035,101.234467,0.0,0.0,37.0,76.1803,163.0,216.0,28.0,91.0,109.819,127.0,191.0,94.0,127.0,138.197,151.0,193.0,0.0,3.0,21.7015,42.0,107.0,119.0,122.192,1.83723,4.21904,2.96639,8.0,8.0,8.0,0.00156893,0.0011917
+3036,101.267833,0.0,0.0,37.0,76.258,163.0,215.0,30.0,91.0,109.988,127.0,193.0,96.0,127.0,138.348,151.0,191.0,0.0,2.0,21.58,42.0,102.0,120.0,123.378,1.5372,4.1406,2.89336,8.0,8.0,8.0,0.0014289,0.0011917
+3037,101.3012,0.0,0.0,37.0,76.533,164.0,214.0,29.0,91.0,110.002,127.0,187.0,99.0,127.0,138.375,151.0,192.0,0.0,3.0,21.5888,42.0,102.0,120.0,123.851,2.00355,4.1689,2.99608,8.0,8.0,8.0,0.00147462,0.0011917
+3038,101.334567,0.0,0.0,37.0,76.4667,164.0,216.0,29.0,91.0,109.862,127.0,200.0,101.0,127.0,138.204,150.0,192.0,0.0,3.0,21.6271,42.0,102.0,119.0,122.604,2.00816,4.20385,2.99482,8.0,8.0,8.0,0.00144319,0.0011917
+3039,101.367933,0.0,0.0,37.0,76.5061,164.0,219.0,29.0,91.0,110.08,127.0,196.0,100.0,127.0,138.362,151.0,194.0,0.0,2.0,21.5463,42.0,103.0,120.0,124.753,1.52916,4.06843,2.88274,8.0,8.0,8.0,0.00136603,0.0011917
+3040,101.4013,0.0,0.0,37.0,76.5731,164.0,215.0,28.0,91.0,110.113,127.0,205.0,98.0,127.0,138.291,150.0,189.0,0.0,2.0,21.4617,42.0,103.0,120.0,124.847,1.81474,4.08187,2.95361,8.0,8.0,8.0,0.00152035,0.0011917
+3041,101.434667,0.0,0.0,37.0,76.6924,164.0,216.0,29.0,92.0,110.075,127.0,196.0,96.0,127.0,138.461,151.0,191.0,0.0,3.0,21.5721,42.0,103.0,120.0,123.684,1.47156,4.03,2.92637,8.0,8.0,8.0,0.00148034,0.0011917
+3042,101.468033,0.0,0.0,37.0,76.6248,164.0,212.0,27.0,90.0,109.597,127.0,201.0,100.0,127.0,138.504,151.0,191.0,0.0,3.0,21.985,43.0,103.0,120.0,124.645,1.87109,4.11505,2.90634,8.0,8.0,8.0,0.0013746,0.0011917
+3043,101.5014,0.0,0.0,37.0,76.8343,165.0,212.0,30.0,91.0,109.865,127.0,197.0,101.0,127.0,138.567,151.0,193.0,0.0,3.0,21.8368,42.0,105.0,120.0,124.617,1.93717,4.1592,2.97561,8.0,8.0,8.0,0.00141175,0.0011917
+3044,101.534767,0.0,0.0,37.0,76.7249,164.0,211.0,28.0,91.0,109.743,127.0,196.0,101.0,128.0,138.63,151.0,188.0,0.0,2.0,21.8919,43.0,103.0,120.0,124.708,1.54099,4.14723,2.90349,8.0,8.0,8.0,0.00150892,0.0011917
+3045,101.568133,0.0,0.0,37.0,76.5775,164.0,212.0,24.0,91.0,109.632,127.0,195.0,102.0,127.0,138.56,151.0,186.0,0.0,3.0,22.005,42.0,106.0,120.0,123.974,1.82193,4.15575,2.93643,8.0,8.0,8.0,0.00147748,0.0011917
+3046,101.6015,0.0,0.0,37.0,76.6886,164.0,212.0,26.0,90.0,109.686,127.0,197.0,102.0,128.0,138.691,151.0,187.0,0.0,3.0,21.968,43.0,105.0,120.0,124.299,1.47633,4.06255,2.88985,8.0,8.0,8.0,0.00141461,0.0011917
+3047,101.634867,0.0,0.0,37.0,76.6242,164.0,213.0,27.0,91.0,109.822,127.0,195.0,100.0,127.0,138.543,151.0,189.0,0.0,2.0,21.8093,42.0,105.0,120.0,124.588,1.817,4.14862,2.95728,8.0,8.0,8.0,0.00150034,0.0011917
+3048,101.668233,0.0,0.0,37.0,76.4851,164.0,212.0,26.0,91.0,109.883,127.0,197.0,97.0,127.0,138.492,151.0,189.0,0.0,2.0,21.7746,43.0,103.0,120.0,124.845,1.77036,4.21142,2.96716,8.0,8.0,8.0,0.00143176,0.0011917
+3049,101.7016,0.0,0.0,37.0,76.5368,164.0,213.0,32.0,91.0,110.08,127.0,196.0,88.0,128.0,138.621,151.0,191.0,0.0,3.0,21.683,43.0,98.0,121.0,125.922,1.36905,4.12289,2.92101,8.0,8.0,8.0,0.00138317,0.0011917
+3050,101.734967,0.0,0.0,37.0,76.4225,164.0,213.0,34.0,92.0,110.337,127.0,193.0,93.0,127.0,138.303,150.0,192.0,0.0,3.0,21.2936,42.0,102.0,120.0,124.987,1.56481,4.11883,2.94755,8.0,8.0,8.0,0.0014289,0.0011917
+3051,101.768333,0.0,0.0,37.0,76.235,164.0,215.0,34.0,92.0,110.42,127.0,189.0,89.0,127.0,138.28,151.0,192.0,0.0,2.0,21.2483,42.0,107.0,121.0,124.408,1.4154,4.08626,2.95634,8.0,8.0,8.0,0.00144319,0.0011917
+3052,101.8017,0.0,0.0,37.0,76.2863,165.0,213.0,26.0,91.0,110.003,127.0,171.0,87.0,127.0,138.081,150.0,196.0,0.0,2.0,21.4765,42.0,104.0,120.0,123.493,1.66536,4.17867,2.97502,8.0,8.0,8.0,0.0014489,0.00119456
+3053,101.835067,0.0,0.0,37.0,76.2765,164.0,212.0,27.0,92.0,110.281,127.0,193.0,81.0,127.0,138.228,151.0,191.0,0.0,2.0,21.3406,42.0,102.0,120.0,124.24,1.5989,4.11879,2.90951,8.0,8.0,8.0,0.00148605,0.0011917
+3054,101.868433,0.0,0.0,37.0,76.1303,164.0,217.0,33.0,91.0,110.332,128.0,186.0,81.0,127.0,138.121,150.0,189.0,0.0,2.0,21.244,42.0,102.0,120.0,125.682,1.40253,4.12904,2.885,8.0,8.0,8.0,0.00126315,0.0011917
+3055,101.9018,0.0,0.0,37.0,76.1861,164.0,214.0,35.0,91.0,110.164,127.0,181.0,79.0,127.0,137.932,150.0,191.0,0.0,2.0,21.3066,42.0,104.0,119.0,124.116,1.89099,4.20952,2.96079,8.0,8.0,8.0,0.0011374,0.0011917
+3056,101.935167,0.0,0.0,37.0,76.4047,164.0,229.0,32.0,92.0,110.085,128.0,177.0,81.0,127.0,138.124,150.0,193.0,0.0,2.0,21.4473,42.0,104.0,120.0,124.492,1.64514,4.09667,2.942,8.0,8.0,8.0,0.00138317,0.0011917
+3057,101.968533,0.0,0.0,37.0,76.5957,164.0,213.0,26.0,92.0,110.71,128.0,198.0,102.0,127.0,137.958,150.0,188.0,0.0,2.0,20.9215,41.0,103.0,120.0,126.879,1.72582,4.21236,2.98533,8.0,8.0,8.0,0.00154035,0.0011917
+3058,102.0019,0.0,0.0,37.0,76.1751,163.0,211.0,35.0,91.0,110.424,128.0,191.0,92.0,127.0,138.034,150.0,193.0,0.0,2.0,21.1334,42.0,105.0,120.0,124.695,1.51065,4.18993,2.90774,8.0,8.0,8.0,0.00147176,0.0011917
+3059,102.035267,0.0,0.0,37.0,76.1507,164.0,211.0,35.0,92.0,110.597,128.0,191.0,94.0,127.0,138.053,150.0,190.0,0.0,2.0,21.0118,41.0,101.0,120.0,126.248,1.37108,4.15266,2.87052,8.0,8.0,8.0,0.00142318,0.0011917
+3060,102.068633,0.0,0.0,37.0,76.3346,164.0,218.0,35.0,92.0,110.671,128.0,188.0,95.0,127.0,137.972,150.0,191.0,0.0,2.0,20.9155,41.0,101.0,120.0,126.394,1.57169,4.16589,2.8968,8.0,8.0,8.0,0.0013746,0.0011917
+3061,102.102,0.0,0.0,37.0,76.402,164.0,211.0,34.0,92.0,110.653,128.0,189.0,80.0,127.0,138.149,150.0,191.0,0.0,2.0,20.9997,41.0,102.0,121.0,125.769,1.29914,4.07925,2.89902,8.0,8.0,8.0,0.00140032,0.0011917
+3062,102.135367,0.0,0.0,37.0,76.0523,163.0,214.0,35.0,91.0,110.539,128.0,192.0,90.0,127.0,137.906,150.0,191.0,0.0,2.0,21.0281,42.0,101.0,120.0,126.419,1.62693,4.16947,2.91031,8.0,8.0,8.0,0.00148605,0.00119456
+3063,102.168733,0.0,0.0,37.0,76.4895,164.0,214.0,34.0,92.0,110.504,128.0,197.0,100.0,127.0,137.79,150.0,192.0,0.0,2.0,21.0133,41.0,104.0,120.0,125.91,1.62692,4.18515,2.92142,8.0,8.0,8.0,0.00145748,0.0011917
+3064,102.2021,0.0,0.0,37.0,76.3709,164.0,212.0,34.0,92.0,110.607,128.0,194.0,76.0,127.0,137.949,150.0,189.0,0.0,2.0,20.9308,41.0,101.0,120.0,125.798,1.36907,4.08278,2.89114,8.0,8.0,8.0,0.00143461,0.00119456
+3065,102.235467,0.0,0.0,37.0,76.421,164.0,211.0,34.0,92.0,110.426,128.0,190.0,87.0,127.0,137.775,150.0,192.0,0.0,2.0,21.0646,41.0,105.0,119.0,124.45,1.55746,4.1089,2.95257,8.0,8.0,8.0,0.0014289,0.0011917
+3066,102.268833,0.0,0.0,37.0,76.4937,164.0,213.0,34.0,91.0,110.284,128.0,198.0,97.0,127.0,138.021,150.0,190.0,0.0,2.0,21.2586,42.0,102.0,120.0,125.094,1.33904,4.01566,2.87588,8.0,8.0,8.0,0.00141461,0.0011917
+3067,102.3022,0.0,0.0,37.0,76.337,164.0,227.0,34.0,92.0,110.423,128.0,189.0,94.0,127.0,137.842,150.0,190.0,0.0,2.0,21.0759,41.0,104.0,120.0,124.688,1.52309,4.11615,2.94608,8.0,8.0,8.0,0.00154893,0.0011917
+3068,102.335567,0.0,0.0,37.0,76.2893,164.0,211.0,34.0,91.0,110.211,128.0,206.0,95.0,127.0,137.902,150.0,195.0,0.0,2.0,21.2527,42.0,103.0,119.0,125.025,1.54339,4.20279,2.9602,8.0,8.0,8.0,0.00151749,0.0011917
+3069,102.368933,0.0,0.0,37.0,76.4099,164.0,215.0,32.0,91.0,110.306,128.0,178.0,74.0,127.0,137.983,150.0,193.0,0.0,2.0,21.1725,42.0,99.0,120.0,125.524,1.39042,4.08925,2.89947,8.0,8.0,8.0,0.00131459,0.00119456
+3070,102.4023,0.0,0.0,37.0,76.322,164.0,212.0,36.0,92.0,110.434,128.0,183.0,85.0,127.0,137.911,150.0,190.0,0.0,2.0,21.0873,41.0,101.0,120.0,125.361,1.54672,4.14433,2.95254,8.0,8.0,8.0,0.00148034,0.0011917
+3071,102.435667,0.0,0.0,37.0,76.3106,164.0,212.0,36.0,91.0,110.349,127.0,195.0,89.0,127.0,138.035,151.0,192.0,0.0,2.0,21.1986,42.0,102.0,120.0,124.031,1.40981,4.13649,2.95001,8.0,8.0,8.0,0.00167181,0.00119456
+3072,102.469033,0.0,0.0,37.0,76.0316,163.0,211.0,34.0,91.0,110.254,128.0,192.0,97.0,127.0,137.863,150.0,190.0,0.0,2.0,21.2001,42.0,102.0,119.0,125.287,1.732,4.21736,2.93943,8.0,8.0,8.0,0.00150892,0.00119456
+3073,102.5024,0.0,0.0,37.0,76.0473,163.0,212.0,32.0,92.0,110.745,128.0,181.0,69.0,127.0,138.034,150.0,189.0,0.0,2.0,20.9404,41.0,102.0,121.0,126.722,1.71143,4.17061,2.95904,8.0,8.0,8.0,0.0014289,0.00119456
+3074,102.535767,0.0,0.0,37.0,76.0868,163.0,213.0,35.0,92.0,110.82,128.0,178.0,81.0,127.0,138.019,150.0,192.0,0.0,2.0,20.7991,41.0,99.0,121.0,126.273,1.50023,4.04572,2.85019,8.0,8.0,8.0,0.00162323,0.0011917
+3075,102.569133,0.0,0.0,37.0,76.0738,164.0,214.0,32.0,91.0,110.377,128.0,170.0,84.0,127.0,137.877,150.0,186.0,0.0,2.0,21.1765,42.0,107.0,120.0,125.317,1.87794,4.16517,2.9128,8.0,8.0,8.0,0.00143461,0.0011917
+3076,102.6025,0.0,0.0,37.0,76.1674,164.0,213.0,36.0,92.0,110.376,128.0,186.0,77.0,127.0,138.145,151.0,188.0,0.0,2.0,21.2463,41.0,102.0,120.0,125.277,1.53489,4.19404,3.01934,8.0,8.0,8.0,0.00144033,0.0011917
+3077,102.635867,0.0,0.0,37.0,76.1832,164.0,213.0,36.0,92.0,110.288,128.0,182.0,77.0,127.0,137.844,150.0,191.0,0.0,2.0,21.1604,41.0,98.0,119.0,124.09,1.05014,4.06805,2.9229,8.0,8.0,8.0,0.00149749,0.0011917
+3078,102.669233,0.0,0.0,37.0,76.0329,163.0,237.0,35.0,91.0,110.268,128.0,183.0,74.0,127.0,138.205,151.0,189.0,0.0,2.0,21.3331,42.0,99.0,120.0,125.369,2.2554,4.23211,3.00839,8.0,8.0,8.0,0.00134316,0.00119456
+3079,102.7026,0.0,0.0,37.0,76.0128,163.0,214.0,33.0,92.0,110.501,128.0,184.0,81.0,127.0,138.263,151.0,189.0,0.0,2.0,21.1885,41.0,108.0,121.0,126.156,1.49628,4.1983,2.94115,8.0,8.0,8.0,0.00152606,0.0011917
+3080,102.735967,0.0,0.0,37.0,76.221,164.0,211.0,33.0,92.0,110.5,128.0,192.0,81.0,127.0,138.133,150.0,188.0,0.0,2.0,21.1367,42.0,104.0,121.0,126.316,1.84759,4.13382,2.93905,8.0,8.0,8.0,0.00136888,0.0011917
+3081,102.769333,0.0,0.0,37.0,76.1706,164.0,217.0,34.0,92.0,110.465,128.0,178.0,82.0,127.0,138.145,151.0,188.0,0.0,2.0,21.188,42.0,102.0,120.0,125.067,1.59029,4.09821,2.91377,8.0,8.0,8.0,0.00155464,0.0011917
+3082,102.8027,0.0,0.0,37.0,76.1834,163.0,215.0,38.0,92.0,110.459,128.0,178.0,74.0,127.0,138.151,151.0,190.0,0.0,2.0,21.1805,42.0,104.0,120.0,126.023,1.81332,4.11383,2.93905,8.0,8.0,8.0,0.00164609,0.0011917
+3083,102.836067,0.0,0.0,37.0,76.317,164.0,216.0,33.0,92.0,110.468,128.0,191.0,80.0,127.0,138.159,151.0,191.0,0.0,2.0,21.1996,42.0,109.0,120.0,125.335,1.70931,4.16344,2.94061,8.0,8.0,8.0,0.00133173,0.0011917
+3084,102.869433,0.0,0.0,37.0,76.2568,164.0,214.0,34.0,91.0,110.274,128.0,176.0,91.0,127.0,138.373,151.0,189.0,0.0,2.0,21.4019,42.0,101.0,121.0,125.635,1.47659,4.15486,2.90072,8.0,8.0,8.0,0.00131173,0.0011917
+3085,102.9028,0.0,0.0,37.0,76.4025,164.0,214.0,36.0,91.0,110.213,128.0,190.0,82.0,127.0,138.247,151.0,189.0,0.0,2.0,21.3856,42.0,105.0,120.0,126.112,1.6464,4.15673,2.92689,8.0,8.0,8.0,0.00129172,0.0011917
+3086,102.936167,0.0,0.0,37.0,76.5859,164.0,215.0,33.0,91.0,110.092,127.0,183.0,100.0,127.0,138.294,150.0,190.0,0.0,2.0,21.47,42.0,102.0,120.0,124.834,1.40779,4.14324,2.84791,8.0,8.0,8.0,0.00135745,0.0011917
+3087,102.969533,0.0,0.0,37.0,76.1482,164.0,215.0,36.0,91.0,110.423,128.0,191.0,77.0,127.0,138.333,151.0,190.0,0.0,2.0,21.2752,42.0,104.0,121.0,125.877,1.67014,4.19303,2.9587,8.0,8.0,8.0,0.00131173,0.0011917
+3088,103.0029,0.0,0.0,37.0,76.1236,164.0,213.0,32.0,91.0,110.162,127.0,185.0,87.0,127.0,138.48,151.0,192.0,0.0,2.0,21.5568,42.0,106.0,121.0,125.342,1.95127,4.25753,2.98783,8.0,8.0,8.0,0.00137746,0.0011917
+3089,103.036267,0.0,0.0,37.0,76.2226,164.0,213.0,34.0,91.0,110.126,127.0,186.0,85.0,127.0,138.547,151.0,192.0,0.0,2.0,21.6016,42.0,102.0,121.0,125.73,1.55065,4.08628,2.893,8.0,8.0,8.0,0.00160322,0.0011917
+3090,103.069633,0.0,0.0,37.0,76.4096,164.0,236.0,32.0,91.0,110.004,127.0,186.0,85.0,127.0,138.54,151.0,192.0,0.0,3.0,21.6985,42.0,104.0,121.0,125.515,1.91734,4.14499,2.91285,8.0,8.0,8.0,0.00164609,0.00119456
+3091,103.103,0.0,0.0,37.0,76.3711,164.0,236.0,35.0,91.0,109.881,127.0,176.0,80.0,127.0,138.534,151.0,193.0,0.0,2.0,21.7902,42.0,105.0,121.0,125.146,1.58172,4.13948,2.89306,8.0,8.0,8.0,0.00141175,0.00119456
+3092,103.136367,0.0,0.0,37.0,75.9718,163.0,215.0,34.0,91.0,109.959,127.0,177.0,100.0,127.0,138.485,151.0,191.0,0.0,2.0,21.7084,42.0,103.0,120.0,125.471,1.73664,4.16653,2.90704,8.0,8.0,8.0,0.00138889,0.0011917
+3093,103.169733,0.0,0.0,37.0,76.1159,164.0,214.0,34.0,92.0,110.375,128.0,177.0,88.0,127.0,138.291,151.0,190.0,0.0,2.0,21.2854,42.0,104.0,120.0,125.505,1.77886,4.15848,2.94944,8.0,8.0,8.0,0.00146033,0.0011917
+3094,103.2031,0.0,0.0,37.0,76.1263,164.0,216.0,32.0,91.0,110.24,127.0,197.0,101.0,127.0,138.503,151.0,191.0,0.0,2.0,21.4482,42.0,103.0,121.0,125.843,1.43727,4.20814,2.92972,8.0,8.0,8.0,0.00158608,0.0011917
+3095,103.236467,0.0,0.0,37.0,76.0237,164.0,213.0,34.0,91.0,109.828,127.0,174.0,89.0,127.0,138.419,151.0,191.0,0.0,2.0,21.764,43.0,105.0,120.0,123.914,1.8473,4.20074,2.9702,8.0,8.0,8.0,0.00128315,0.0011917
+3096,103.269833,0.0,0.0,37.0,76.1802,164.0,232.0,31.0,91.0,109.919,127.0,177.0,84.0,127.0,138.498,151.0,189.0,0.0,2.0,21.7245,42.0,105.0,120.0,124.25,1.52984,4.16203,2.90051,8.0,8.0,8.0,0.00154035,0.0011917
+3097,103.3032,0.0,0.0,37.0,76.0223,164.0,212.0,32.0,91.0,110.116,127.0,166.0,76.0,127.0,138.284,151.0,192.0,0.0,2.0,21.4945,42.0,105.0,120.0,124.563,1.60569,4.16634,2.90254,8.0,8.0,8.0,0.00138032,0.0011917
+3098,103.336567,0.0,0.0,37.0,75.8628,163.0,215.0,35.0,91.0,109.876,127.0,180.0,73.0,127.0,138.299,150.0,195.0,0.0,3.0,21.6279,42.0,100.0,120.0,123.939,1.93822,4.18845,2.96955,8.0,8.0,8.0,0.00142318,0.0011917
+3099,103.369933,0.0,0.0,37.0,76.0423,163.0,215.0,32.0,92.0,110.169,127.0,194.0,81.0,127.0,138.396,151.0,190.0,0.0,2.0,21.4231,42.0,103.0,120.0,125.206,1.69684,4.10868,2.95202,8.0,8.0,8.0,0.00168324,0.0011917
+3100,103.4033,0.0,0.0,37.0,76.1201,163.0,212.0,31.0,91.0,109.941,127.0,189.0,75.0,127.0,138.186,150.0,195.0,0.0,2.0,21.5102,42.0,108.0,120.0,124.043,2.05143,4.17314,2.9362,8.0,8.0,8.0,0.00180613,0.0011917
+3101,103.436667,0.0,0.0,37.0,76.0732,163.0,213.0,33.0,91.0,109.643,127.0,184.0,72.0,127.0,138.348,151.0,187.0,0.0,3.0,21.8867,42.0,100.0,120.0,123.644,1.56513,4.09787,2.88171,8.0,8.0,8.0,0.00148034,0.0011917
+3102,103.470033,0.0,0.0,37.0,75.9423,163.0,214.0,33.0,91.0,109.862,127.0,184.0,78.0,127.0,138.067,150.0,189.0,0.0,2.0,21.5822,42.0,104.0,119.0,124.25,1.5967,4.09989,2.93768,8.0,8.0,8.0,0.00149177,0.0011917
+3103,103.5034,0.0,0.0,37.0,76.1498,163.0,216.0,35.0,91.0,109.976,127.0,195.0,78.0,127.0,138.116,151.0,195.0,0.0,2.0,21.518,42.0,99.0,119.0,122.292,1.74375,4.19759,2.98466,8.0,8.0,8.0,0.00150606,0.0011917
+3104,103.536767,0.0,0.0,37.0,76.0577,163.0,215.0,32.0,91.0,109.921,127.0,178.0,74.0,127.0,138.252,150.0,189.0,0.0,3.0,21.5871,42.0,104.0,120.0,124.251,1.37946,4.15892,2.88992,8.0,8.0,8.0,0.00146319,0.0011917
+3105,103.570133,0.0,0.0,37.0,76.0483,163.0,216.0,34.0,91.0,110.012,127.0,180.0,79.0,127.0,138.172,150.0,190.0,0.0,2.0,21.5321,42.0,103.0,120.0,124.227,1.6287,4.15708,2.97072,8.0,8.0,8.0,0.00133459,0.0011917
+3106,103.6035,0.0,0.0,37.0,76.1105,163.0,215.0,33.0,91.0,110.067,127.0,189.0,77.0,127.0,138.248,150.0,198.0,0.0,2.0,21.5046,42.0,105.0,120.0,124.01,1.43121,4.11323,2.89906,8.0,8.0,8.0,0.00131173,0.0011917
+3107,103.636867,0.0,0.0,37.0,75.943,163.0,232.0,35.0,91.0,110.221,128.0,191.0,81.0,127.0,138.069,150.0,194.0,0.0,2.0,21.3134,42.0,101.0,120.0,125.012,1.68212,4.21441,2.93258,8.0,8.0,8.0,0.00145176,0.0011917
+3108,103.670233,0.0,0.0,37.0,75.8796,163.0,211.0,33.0,91.0,109.866,127.0,183.0,93.0,127.0,138.205,150.0,187.0,0.0,2.0,21.61,42.0,101.0,120.0,123.926,1.81162,4.23563,2.99784,8.0,8.0,8.0,0.00146319,0.0011917
+3109,103.7036,0.0,0.0,37.0,75.9794,163.0,214.0,33.0,91.0,109.946,127.0,174.0,100.0,127.0,138.391,151.0,191.0,0.0,2.0,21.6455,42.0,103.0,120.0,124.843,1.38657,4.11277,2.97755,8.0,8.0,8.0,0.00133173,0.0011917
+3110,103.736967,0.0,0.0,37.0,75.8654,163.0,214.0,34.0,91.0,109.882,127.0,181.0,99.0,127.0,138.23,150.0,191.0,0.0,2.0,21.6175,42.0,111.0,120.0,123.805,1.55844,4.13324,2.94001,8.0,8.0,8.0,0.00132602,0.0011917
+3111,103.770333,0.0,0.0,37.0,75.7952,163.0,225.0,34.0,91.0,109.784,127.0,178.0,89.0,127.0,138.287,151.0,195.0,0.0,2.0,21.7787,43.0,106.0,120.0,123.713,1.40147,4.16405,2.9279,8.0,8.0,8.0,0.00136603,0.0011917
+3112,103.8037,0.0,0.0,37.0,75.9205,163.0,215.0,36.0,91.0,110.199,128.0,177.0,96.0,127.0,137.993,150.0,196.0,0.0,2.0,21.3007,42.0,101.0,120.0,125.396,1.7081,4.25828,2.99707,8.0,8.0,8.0,0.00140889,0.0011917
+3113,103.837067,0.0,0.0,37.0,75.84,163.0,215.0,34.0,92.0,110.296,127.0,186.0,97.0,127.0,138.056,150.0,190.0,0.0,2.0,21.2282,42.0,106.0,120.0,124.536,1.83954,4.21622,2.97179,8.0,8.0,8.0,0.00138317,0.0011917
+3114,103.870433,0.0,0.0,37.0,75.7996,163.0,212.0,35.0,91.0,110.082,127.0,178.0,101.0,127.0,138.154,150.0,190.0,0.0,2.0,21.4267,42.0,104.0,120.0,124.811,1.49097,4.12128,2.91081,8.0,8.0,8.0,0.00145462,0.0011917
+3115,103.9038,0.0,0.0,37.0,75.6775,163.0,211.0,35.0,91.0,109.63,127.0,176.0,100.0,127.0,138.165,151.0,192.0,0.0,3.0,21.8117,43.0,106.0,119.0,122.999,1.79127,4.13178,2.98656,8.0,8.0,8.0,0.00132316,0.0011917
+3116,103.937167,0.0,0.0,37.0,75.8278,163.0,213.0,32.0,91.0,109.669,127.0,179.0,93.0,127.0,138.422,151.0,192.0,0.0,3.0,21.8767,42.0,106.0,120.0,123.149,1.42136,4.13538,2.98296,8.0,8.0,8.0,0.00120027,0.0011917
+3117,103.970533,0.0,0.0,37.0,75.628,163.0,231.0,33.0,91.0,109.838,127.0,174.0,82.0,127.0,138.137,150.0,192.0,0.0,2.0,21.6502,42.0,103.0,120.0,123.973,1.80183,4.10003,3.01931,8.0,8.0,8.0,0.00147748,0.0011917
+3118,104.0039,0.0,0.0,37.0,75.4962,162.0,227.0,34.0,91.0,109.918,127.0,176.0,99.0,127.0,138.306,151.0,195.0,0.0,2.0,21.6507,42.0,101.0,120.0,124.385,1.7123,4.12906,2.9911,8.0,8.0,8.0,0.00150892,0.0011917
+3119,104.037267,0.0,0.0,37.0,75.5777,162.0,212.0,33.0,91.0,109.827,128.0,178.0,77.0,127.0,138.3,151.0,186.0,0.0,2.0,21.8186,42.0,105.0,120.0,125.776,1.36537,4.11738,2.93781,8.0,8.0,8.0,0.00145176,0.0011917
+3120,104.070633,0.0,0.0,37.0,75.7331,163.0,212.0,33.0,91.0,109.792,127.0,176.0,84.0,127.0,138.336,151.0,188.0,0.0,3.0,21.7717,42.0,101.0,120.0,124.162,1.71031,4.16283,2.96545,8.0,8.0,8.0,0.00141175,0.0011917
+3121,104.104,0.0,0.0,37.0,75.7105,163.0,213.0,34.0,90.0,109.699,127.0,176.0,81.0,127.0,138.471,151.0,190.0,0.0,2.0,21.9134,43.0,106.0,120.0,124.287,1.41037,4.03945,2.86519,8.0,8.0,8.0,0.00149749,0.0011917
+3122,104.137367,0.0,0.0,37.0,75.8681,163.0,215.0,34.0,91.0,109.48,127.0,180.0,85.0,127.0,138.439,151.0,189.0,0.0,2.0,22.0789,43.0,102.0,120.0,125.121,1.90777,4.22099,2.91519,8.0,8.0,8.0,0.00137746,0.0011917
+3123,104.170733,0.0,0.0,37.0,75.9891,163.0,213.0,33.0,90.0,109.316,127.0,168.0,92.0,127.0,138.605,151.0,192.0,0.0,2.0,22.2843,43.0,110.0,120.0,123.536,1.82144,4.22332,2.95932,8.0,8.0,8.0,0.00124886,0.0011917
+3124,104.2041,0.0,0.0,37.0,75.8378,163.0,213.0,33.0,90.0,109.504,127.0,179.0,75.0,127.0,138.398,151.0,187.0,0.0,2.0,22.0485,43.0,102.0,120.0,124.163,1.50215,4.14745,2.93818,8.0,8.0,8.0,0.00152606,0.0011917
+3125,104.237467,0.0,0.0,37.0,75.7196,163.0,213.0,34.0,90.0,109.556,127.0,191.0,74.0,127.0,138.38,151.0,189.0,0.0,2.0,22.0452,43.0,102.0,120.0,124.666,1.76735,4.17685,2.92572,8.0,8.0,8.0,0.00150892,0.0011917
+3126,104.270833,0.0,0.0,37.0,75.837,163.0,214.0,36.0,91.0,109.649,127.0,196.0,83.0,127.0,138.561,151.0,188.0,0.0,2.0,21.988,42.0,103.0,120.0,124.276,1.45046,4.12063,2.90255,8.0,8.0,8.0,0.00142318,0.0011917
+3127,104.3042,0.0,0.0,37.0,75.7499,163.0,223.0,35.0,91.0,109.618,128.0,181.0,80.0,127.0,138.324,151.0,188.0,0.0,2.0,21.974,43.0,104.0,120.0,124.696,1.83695,4.21564,2.97305,8.0,8.0,8.0,0.00141747,0.0011917
+3128,104.337567,0.0,0.0,37.0,75.6012,163.0,215.0,34.0,90.0,109.733,127.0,182.0,90.0,127.0,138.204,151.0,192.0,0.0,2.0,21.777,43.0,100.0,120.0,124.247,1.89979,4.187,2.97658,8.0,8.0,8.0,0.00141461,0.00119456
+3129,104.370933,0.0,0.0,37.0,75.6539,163.0,215.0,34.0,90.0,109.774,127.0,176.0,91.0,127.0,138.427,151.0,187.0,0.0,2.0,21.8418,43.0,102.0,120.0,125.252,1.687,4.07869,2.9156,8.0,8.0,8.0,0.00149177,0.0011917
+3130,104.4043,0.0,0.0,37.0,75.5549,163.0,216.0,34.0,90.0,109.575,127.0,181.0,97.0,127.0,138.417,151.0,193.0,0.0,3.0,21.9875,43.0,109.0,120.0,125.077,2.16457,4.19209,2.92567,8.0,8.0,8.0,0.00138032,0.0011917
+3131,104.437667,0.0,0.0,37.0,75.4673,163.0,215.0,32.0,90.0,109.353,127.0,180.0,81.0,127.0,138.401,151.0,190.0,0.0,2.0,22.1502,43.0,109.0,119.0,123.325,1.76461,4.23628,2.97772,8.0,8.0,8.0,0.00134602,0.0011917
+3132,104.471033,0.0,0.0,37.0,75.5136,163.0,216.0,32.0,90.0,109.307,127.0,184.0,87.0,127.0,138.457,151.0,195.0,0.0,2.0,22.1848,43.0,105.0,120.0,124.303,1.96603,4.16896,2.96958,8.0,8.0,8.0,0.00138889,0.0011917
+3133,104.5044,0.0,0.0,37.0,75.0911,162.0,219.0,32.0,90.0,109.693,128.0,180.0,97.0,127.0,138.606,151.0,190.0,0.0,2.0,21.9797,43.0,105.0,120.0,125.373,2.15785,4.16854,2.95405,8.0,8.0,8.0,0.00148605,0.0011917
+3134,104.537767,0.0,0.0,37.0,74.8451,162.0,213.0,34.0,91.0,109.821,127.0,176.0,100.0,127.0,138.569,151.0,187.0,0.0,2.0,21.8474,43.0,101.0,121.0,125.85,1.59038,4.08649,2.90528,8.0,8.0,8.0,0.00144604,0.00119456
+3135,104.571133,0.0,0.0,37.0,74.6677,162.0,212.0,27.0,90.0,109.572,127.0,179.0,98.0,127.0,138.26,151.0,193.0,0.0,2.0,21.9309,43.0,112.0,119.0,124.318,2.20139,4.14855,2.94415,8.0,8.0,8.0,0.00154035,0.0011917
+3136,104.6045,0.0,0.0,37.0,74.7629,162.0,210.0,33.0,90.0,109.708,127.0,181.0,96.0,127.0,138.492,151.0,186.0,0.0,2.0,21.8785,43.0,104.0,120.0,124.472,1.77403,4.22467,2.89616,8.0,8.0,8.0,0.00143461,0.0011917
+3137,104.637867,0.0,0.0,37.0,74.6132,162.0,214.0,33.0,90.0,109.457,127.0,170.0,101.0,127.0,138.412,151.0,189.0,0.0,3.0,22.0341,43.0,106.0,120.0,124.14,2.237,4.29483,2.94771,8.0,8.0,8.0,0.00144319,0.0011917
+3138,104.671233,0.0,0.0,37.0,74.705,162.0,217.0,33.0,90.0,109.284,127.0,184.0,86.0,127.0,138.503,151.0,193.0,0.0,2.0,22.2479,43.0,104.0,120.0,123.952,1.90829,4.15168,2.92806,8.0,8.0,8.0,0.00160894,0.0011917
+3139,104.7046,0.0,0.0,37.0,74.8165,162.0,217.0,32.0,90.0,109.301,127.0,182.0,101.0,127.0,138.579,151.0,189.0,0.0,2.0,22.2575,43.0,103.0,120.0,124.297,1.55597,4.20593,2.95298,8.0,8.0,8.0,0.00152321,0.0011917
+3140,104.737967,0.0,0.0,37.0,74.947,162.0,212.0,33.0,90.0,109.338,127.0,194.0,79.0,127.0,138.444,151.0,195.0,0.0,2.0,22.1592,43.0,102.0,120.0,123.599,1.94344,4.20203,2.99807,8.0,8.0,8.0,0.00149463,0.0011917
+3141,104.771333,0.0,0.0,37.0,74.9848,162.0,227.0,34.0,90.0,109.27,127.0,182.0,66.0,127.0,138.574,151.0,190.0,0.0,3.0,22.3239,43.0,107.0,120.0,123.288,1.60146,4.12926,2.9458,8.0,8.0,8.0,0.00161465,0.0011917
+3142,104.8047,0.0,0.0,37.0,75.0802,162.0,213.0,34.0,90.0,109.481,127.0,188.0,85.0,127.0,138.619,151.0,191.0,0.0,2.0,22.129,43.0,104.0,120.0,125.042,2.06327,4.24395,2.96253,8.0,8.0,8.0,0.00156893,0.0011917
+3143,104.838067,0.0,0.0,37.0,75.2216,162.0,213.0,34.0,90.0,109.468,127.0,185.0,86.0,127.0,138.527,151.0,188.0,0.0,2.0,22.1484,43.0,101.0,120.0,123.535,1.80195,4.20431,2.99846,8.0,8.0,8.0,0.00136603,0.0011917
+3144,104.871433,0.0,0.0,37.0,75.1676,162.0,214.0,31.0,91.0,109.649,128.0,183.0,78.0,127.0,138.571,151.0,192.0,0.0,2.0,21.9826,43.0,111.0,120.0,125.869,1.5169,4.17042,2.98272,8.0,8.0,8.0,0.00128315,0.0011917
+3145,104.9048,0.0,0.0,37.0,75.0713,162.0,213.0,32.0,91.0,109.671,127.0,183.0,78.0,127.0,138.297,151.0,192.0,0.0,2.0,21.8885,43.0,108.0,120.0,124.758,1.67808,4.0769,2.97349,8.0,8.0,8.0,0.00136888,0.0011917
+3146,104.938167,0.0,0.0,37.0,75.1704,162.0,214.0,37.0,91.0,109.644,127.0,191.0,75.0,127.0,138.416,151.0,191.0,0.0,2.0,21.9238,42.0,101.0,120.0,124.292,1.39738,4.13921,2.96132,8.0,8.0,8.0,0.00138889,0.0011917
+3147,104.971533,0.0,0.0,37.0,74.9361,162.0,215.0,35.0,91.0,109.987,128.0,197.0,101.0,127.0,138.363,151.0,195.0,0.0,2.0,21.6659,42.0,107.0,120.0,125.426,1.70697,4.18134,3.00224,8.0,8.0,8.0,0.00129172,0.00119456
+3148,105.0049,0.0,0.0,37.0,75.0755,162.0,212.0,34.0,90.0,109.625,128.0,182.0,89.0,127.0,138.317,150.0,192.0,0.0,2.0,21.8784,43.0,104.0,120.0,124.888,1.72413,4.28386,2.97899,8.0,8.0,8.0,0.0013946,0.0011917
+3149,105.038267,0.0,0.0,37.0,75.1364,162.0,214.0,33.0,91.0,109.645,127.0,176.0,92.0,127.0,138.533,151.0,195.0,0.0,2.0,21.9587,42.0,108.0,120.0,126.01,1.34447,4.14113,2.89659,8.0,8.0,8.0,0.00141175,0.0011917
+3150,105.071633,0.0,0.0,37.0,75.2144,162.0,210.0,34.0,90.0,109.79,128.0,188.0,102.0,127.0,138.534,151.0,191.0,0.0,2.0,21.8768,43.0,102.0,120.0,126.156,1.616,4.16085,2.90096,8.0,8.0,8.0,0.00142032,0.0011917
+3151,105.105,0.0,0.0,37.0,75.1043,162.0,213.0,30.0,90.0,109.742,128.0,178.0,99.0,127.0,138.572,151.0,193.0,0.0,2.0,21.9276,43.0,105.0,120.0,125.777,1.4868,4.1238,2.95053,8.0,8.0,8.0,0.00149177,0.0011917
+3152,105.138367,0.0,0.0,37.0,75.0022,162.0,216.0,33.0,91.0,109.821,128.0,174.0,100.0,127.0,138.465,151.0,194.0,0.0,2.0,21.7769,42.0,101.0,120.0,125.88,1.72619,4.16086,2.97233,8.0,8.0,8.0,0.00139175,0.0011917
+3153,105.171733,0.0,0.0,37.0,75.1339,162.0,230.0,31.0,91.0,110.016,128.0,171.0,78.0,127.0,138.301,151.0,187.0,0.0,2.0,21.5768,42.0,105.0,120.0,125.22,1.66108,4.12849,2.91417,8.0,8.0,8.0,0.00153749,0.0011917
+3154,105.2051,0.0,0.0,37.0,75.0898,162.0,216.0,35.0,91.0,109.89,128.0,176.0,90.0,127.0,138.39,151.0,188.0,0.0,2.0,21.6784,42.0,103.0,120.0,125.342,1.42152,4.07434,2.87077,8.0,8.0,8.0,0.00135174,0.0011917
+3155,105.238467,0.0,0.0,37.0,74.976,162.0,217.0,31.0,91.0,110.056,128.0,193.0,99.0,127.0,138.363,151.0,189.0,0.0,2.0,21.6684,43.0,103.0,120.0,125.597,1.82557,4.21144,2.95776,8.0,8.0,8.0,0.00133459,0.0011917
+3156,105.271833,0.0,0.0,37.0,75.125,162.0,220.0,31.0,91.0,110.175,128.0,188.0,78.0,127.0,138.39,151.0,192.0,0.0,2.0,21.5057,42.0,104.0,121.0,126.054,1.55205,4.22603,2.97134,8.0,8.0,8.0,0.00140889,0.0011917
+3157,105.3052,0.0,0.0,37.0,75.1043,162.0,210.0,32.0,91.0,109.909,128.0,177.0,77.0,127.0,138.469,151.0,195.0,0.0,2.0,21.7369,42.0,102.0,120.0,125.629,1.53892,4.13711,2.89271,8.0,8.0,8.0,0.00141175,0.0011917
+3158,105.338567,0.0,0.0,37.0,75.0748,162.0,233.0,32.0,91.0,109.77,127.0,180.0,83.0,127.0,138.32,151.0,191.0,0.0,2.0,21.7542,42.0,107.0,120.0,123.654,1.55718,4.16561,2.93233,8.0,8.0,8.0,0.00139175,0.00119456
+3159,105.371933,0.0,0.0,37.0,74.9934,162.0,216.0,26.0,91.0,109.976,127.0,180.0,81.0,127.0,138.289,151.0,193.0,0.0,2.0,21.6245,42.0,103.0,120.0,124.963,1.41072,4.20992,2.96276,8.0,8.0,8.0,0.00136888,0.0011917
+3160,105.4053,0.0,0.0,37.0,74.9801,162.0,235.0,30.0,91.0,109.904,127.0,183.0,79.0,127.0,138.126,150.0,191.0,0.0,2.0,21.5991,42.0,102.0,120.0,123.842,1.64996,4.21653,2.99817,8.0,8.0,8.0,0.00142032,0.0011917
+3161,105.438667,0.0,0.0,37.0,75.0271,162.0,236.0,31.0,91.0,109.941,127.0,183.0,78.0,127.0,138.206,151.0,191.0,0.0,2.0,21.6255,42.0,104.0,120.0,123.904,1.35778,4.10796,2.86433,8.0,8.0,8.0,0.00138032,0.00119456
+3162,105.472033,0.0,0.0,37.0,75.1318,162.0,215.0,31.0,91.0,109.993,128.0,177.0,87.0,127.0,138.021,150.0,190.0,0.0,2.0,21.4373,42.0,102.0,120.0,124.309,1.83157,4.15879,2.96839,8.0,8.0,8.0,0.00147176,0.0011917
+3163,105.5054,0.0,0.0,37.0,75.3525,163.0,211.0,27.0,91.0,109.829,127.0,191.0,79.0,127.0,138.112,151.0,192.0,0.0,2.0,21.7089,42.0,105.0,120.0,123.716,1.83582,4.19757,2.99073,8.0,8.0,8.0,0.00136317,0.0011917
+3164,105.538767,0.0,0.0,37.0,75.401,163.0,238.0,31.0,90.0,109.736,128.0,186.0,76.0,127.0,138.24,151.0,188.0,0.0,2.0,21.7695,43.0,104.0,120.0,124.393,1.43116,4.13042,2.89535,8.0,8.0,8.0,0.00139746,0.00119742
+3165,105.572133,0.0,0.0,37.0,75.4721,163.0,212.0,28.0,91.0,109.711,127.0,189.0,88.0,127.0,138.19,151.0,190.0,0.0,2.0,21.7815,42.0,101.0,119.0,124.065,1.63837,4.14607,2.91573,8.0,8.0,8.0,0.00144319,0.0011917
+3166,105.6055,0.0,0.0,37.0,75.7116,163.0,212.0,23.0,90.0,109.608,127.0,176.0,99.0,127.0,138.255,151.0,188.0,0.0,2.0,21.8964,43.0,106.0,120.0,123.777,1.38896,4.13214,2.87485,8.0,8.0,8.0,0.00134602,0.00119456
+3167,105.638867,0.0,0.0,37.0,75.3641,163.0,212.0,28.0,91.0,109.888,127.0,179.0,82.0,127.0,138.213,151.0,188.0,0.0,2.0,21.6199,42.0,101.0,120.0,124.879,1.77075,4.17289,3.00767,8.0,8.0,8.0,0.00133745,0.0011917
+3168,105.672233,0.0,0.0,37.0,75.4228,163.0,215.0,33.0,91.0,109.646,127.0,175.0,87.0,127.0,138.42,151.0,191.0,0.0,2.0,21.9424,43.0,105.0,120.0,124.524,1.96626,4.27229,3.04027,8.0,8.0,8.0,0.00140032,0.0011917
+3169,105.7056,0.0,0.0,37.0,75.4472,163.0,213.0,32.0,91.0,109.798,127.0,178.0,99.0,127.0,138.493,151.0,191.0,0.0,2.0,21.8385,42.0,102.0,120.0,125.514,1.51063,4.16134,2.97795,8.0,8.0,8.0,0.00142604,0.00119456
+3170,105.738967,0.0,0.0,37.0,75.5843,163.0,215.0,27.0,90.0,109.623,127.0,191.0,101.0,127.0,138.373,151.0,189.0,0.0,2.0,21.8864,43.0,104.0,120.0,123.482,1.78047,4.31071,2.96846,8.0,8.0,8.0,0.00142032,0.0011917
+3171,105.772333,0.0,0.0,37.0,75.5384,163.0,214.0,34.0,90.0,109.661,127.0,190.0,82.0,127.0,138.338,151.0,191.0,0.0,3.0,21.867,43.0,104.0,120.0,123.144,1.4719,4.2422,2.96804,8.0,8.0,8.0,0.00129172,0.0011917
+3172,105.8057,0.0,0.0,37.0,75.5198,162.0,215.0,34.0,90.0,109.631,127.0,178.0,80.0,127.0,138.356,151.0,191.0,0.0,3.0,21.9207,43.0,100.0,120.0,124.318,1.77887,4.26238,2.95264,8.0,8.0,8.0,0.0013946,0.0011917
+3173,105.839067,0.0,0.0,37.0,75.8899,164.0,216.0,33.0,91.0,110.013,127.0,179.0,83.0,127.0,138.177,151.0,195.0,0.0,2.0,21.5564,42.0,106.0,120.0,124.804,1.67401,4.13573,2.89094,8.0,8.0,8.0,0.00133459,0.0011917
+3174,105.872433,0.0,0.0,37.0,75.9938,164.0,230.0,32.0,91.0,109.737,127.0,185.0,81.0,127.0,138.287,151.0,191.0,0.0,2.0,21.7859,42.0,103.0,120.0,124.381,1.40625,4.15055,2.87309,8.0,8.0,8.0,0.00137174,0.0011917
+3175,105.9058,0.0,0.0,37.0,75.981,164.0,211.0,35.0,90.0,109.525,127.0,183.0,80.0,127.0,138.302,151.0,189.0,0.0,2.0,21.9988,43.0,104.0,120.0,123.725,1.79284,4.21608,2.99842,8.0,8.0,8.0,0.00134888,0.0011917
+3176,105.939167,0.0,0.0,37.0,75.9825,164.0,214.0,27.0,91.0,109.667,127.0,187.0,82.0,127.0,138.316,151.0,192.0,0.0,3.0,21.9115,43.0,106.0,120.0,124.247,1.51037,4.15578,2.96365,8.0,8.0,8.0,0.00137174,0.0011917
+3177,105.972533,0.0,0.0,37.0,75.7503,163.0,222.0,28.0,91.0,109.689,127.0,191.0,103.0,127.0,138.397,151.0,191.0,0.0,2.0,21.8789,43.0,107.0,120.0,124.69,1.9441,4.19284,2.97926,8.0,8.0,8.0,0.00136603,0.0011917
+3178,106.0059,0.0,0.0,37.0,75.8396,163.0,236.0,27.0,90.0,109.325,127.0,182.0,85.0,127.0,138.219,151.0,188.0,0.0,3.0,22.1276,43.0,104.0,119.0,122.674,1.91006,4.23362,3.01105,8.0,8.0,8.0,0.00142318,0.00119456
+3179,106.039267,0.0,0.0,37.0,75.8649,163.0,213.0,31.0,91.0,109.696,127.0,193.0,88.0,127.0,138.314,151.0,188.0,0.0,3.0,21.8524,42.0,109.0,120.0,123.505,1.53776,4.15162,2.93976,8.0,8.0,8.0,0.00137174,0.0011917
+3180,106.072633,0.0,0.0,37.0,75.9467,163.0,231.0,23.0,91.0,109.98,127.0,191.0,83.0,127.0,138.023,150.0,190.0,0.0,2.0,21.4486,42.0,107.0,119.0,123.459,1.91075,4.17493,2.91682,8.0,8.0,8.0,0.00141461,0.0011917
+3181,106.106,0.0,0.0,37.0,75.937,164.0,211.0,32.0,91.0,110.11,127.0,186.0,87.0,127.0,138.065,150.0,189.0,0.0,2.0,21.3991,42.0,103.0,120.0,124.135,1.50132,4.07695,2.89779,8.0,8.0,8.0,0.00139175,0.0011917
+3182,106.139367,0.0,0.0,37.0,75.7817,163.0,213.0,34.0,91.0,109.941,127.0,185.0,73.0,127.0,138.019,150.0,187.0,0.0,2.0,21.5107,42.0,105.0,119.0,124.071,2.08261,4.18704,2.98748,8.0,8.0,8.0,0.00126315,0.0011917
+3183,106.172733,0.0,0.0,37.0,75.9907,164.0,212.0,27.0,91.0,110.076,127.0,191.0,82.0,127.0,138.03,150.0,190.0,0.0,2.0,21.4177,42.0,102.0,119.0,123.862,2.00491,4.24657,2.98449,8.0,8.0,8.0,0.0013946,0.0011917
+3184,106.2061,0.0,0.0,37.0,75.8135,163.0,213.0,25.0,91.0,109.793,127.0,195.0,102.0,127.0,138.123,151.0,191.0,0.0,2.0,21.6685,43.0,105.0,119.0,124.446,1.50615,4.20894,2.92454,8.0,8.0,8.0,0.00140032,0.0011917
+3185,106.239467,0.0,0.0,37.0,75.7902,163.0,214.0,24.0,90.0,109.641,127.0,189.0,86.0,127.0,138.026,150.0,186.0,0.0,2.0,21.7377,42.0,105.0,119.0,122.903,1.6782,4.20508,2.95952,8.0,8.0,8.0,0.00133459,0.0011917
+3186,106.272833,0.0,0.0,37.0,75.9437,163.0,216.0,26.0,91.0,109.764,127.0,188.0,77.0,127.0,138.116,151.0,188.0,0.0,2.0,21.7311,42.0,107.0,119.0,123.063,1.37967,4.14458,2.91718,8.0,8.0,8.0,0.0013003,0.0011917
+3187,106.3062,0.0,0.0,37.0,75.7927,163.0,214.0,27.0,91.0,110.06,127.0,187.0,84.0,127.0,137.992,150.0,187.0,0.0,2.0,21.447,42.0,102.0,120.0,124.642,1.67533,4.16318,2.94881,8.0,8.0,8.0,0.00130601,0.0011917
+3188,106.339567,0.0,0.0,37.0,75.7285,163.0,213.0,33.0,91.0,109.919,128.0,190.0,85.0,127.0,137.957,150.0,187.0,0.0,2.0,21.5705,42.0,103.0,119.0,123.419,1.72801,4.18208,2.97746,8.0,8.0,8.0,0.0014289,0.0011917
+3189,106.372933,0.0,0.0,37.0,75.8206,164.0,211.0,34.0,91.0,110.203,128.0,186.0,77.0,127.0,138.03,150.0,190.0,0.0,2.0,21.3203,42.0,104.0,120.0,125.344,1.30092,4.06752,2.94909,8.0,8.0,8.0,0.00149749,0.0011917
+3190,106.4063,0.0,0.0,37.0,75.9111,164.0,221.0,32.0,91.0,109.988,127.0,187.0,73.0,127.0,137.975,150.0,191.0,0.0,2.0,21.4812,42.0,106.0,119.0,124.23,1.49819,4.07868,2.93884,8.0,8.0,8.0,0.00139175,0.0011917
+3191,106.439667,0.0,0.0,37.0,75.7914,163.0,212.0,34.0,91.0,109.773,127.0,187.0,73.0,127.0,138.178,151.0,193.0,0.0,2.0,21.7907,43.0,100.0,120.0,124.543,1.40924,4.12067,2.98979,8.0,8.0,8.0,0.0013946,0.0011917
+3192,106.473033,0.0,0.0,37.0,75.6238,163.0,213.0,36.0,91.0,109.84,127.0,189.0,77.0,127.0,138.117,151.0,190.0,0.0,2.0,21.6599,42.0,102.0,120.0,124.345,1.63096,4.19767,2.96245,8.0,8.0,8.0,0.00138032,0.0011917
+3193,106.5064,0.0,0.0,37.0,75.9197,164.0,214.0,32.0,91.0,110.152,127.0,190.0,77.0,127.0,138.152,151.0,187.0,0.0,2.0,21.4332,42.0,105.0,120.0,125.234,1.6411,4.21388,2.94826,8.0,8.0,8.0,0.00143176,0.0011917
+3194,106.539767,0.0,0.0,37.0,75.8491,163.0,214.0,31.0,91.0,109.946,127.0,184.0,73.0,127.0,138.304,151.0,189.0,0.0,2.0,21.6168,43.0,106.0,120.0,124.699,1.42011,4.1567,2.94123,8.0,8.0,8.0,0.00149749,0.0011917
+3195,106.573133,0.0,0.0,37.0,75.6828,163.0,213.0,33.0,91.0,109.933,127.0,185.0,73.0,127.0,138.145,150.0,196.0,0.0,2.0,21.6143,43.0,107.0,120.0,124.953,1.78315,4.21032,2.98674,8.0,8.0,8.0,0.00142318,0.0011917
+3196,106.6065,0.0,0.0,37.0,75.7702,163.0,214.0,33.0,91.0,110.164,128.0,197.0,97.0,127.0,138.22,151.0,190.0,0.0,2.0,21.4631,42.0,106.0,120.0,125.196,1.49325,4.16726,2.97918,8.0,8.0,8.0,0.0014489,0.00119456
+3197,106.639867,0.0,0.0,37.0,75.5256,162.0,217.0,35.0,91.0,110.269,128.0,181.0,101.0,127.0,138.258,151.0,191.0,0.0,2.0,21.3703,42.0,103.0,120.0,126.02,1.58302,4.15708,2.95098,8.0,8.0,8.0,0.00156607,0.0011917
+3198,106.673233,0.0,0.0,37.0,75.4558,162.0,214.0,35.0,91.0,109.96,127.0,204.0,80.0,127.0,138.341,151.0,201.0,0.0,2.0,21.6439,43.0,103.0,120.0,124.894,1.72754,4.26607,3.01284,8.0,8.0,8.0,0.00142604,0.0011917
+3199,106.7066,0.0,0.0,37.0,75.4242,162.0,230.0,34.0,91.0,109.949,128.0,195.0,75.0,127.0,138.395,151.0,199.0,0.0,2.0,21.7158,43.0,111.0,120.0,125.805,1.55339,4.23616,2.99367,8.0,8.0,8.0,0.00138032,0.0011917
+3200,106.739967,0.0,0.0,37.0,75.3957,162.0,217.0,35.0,91.0,110.07,128.0,174.0,86.0,127.0,138.255,151.0,193.0,0.0,2.0,21.5143,42.0,105.0,120.0,124.777,1.7432,4.27182,3.04755,8.0,8.0,8.0,0.00137174,0.0011917
+3201,106.773333,0.0,0.0,37.0,75.302,162.0,223.0,35.0,91.0,110.232,128.0,166.0,101.0,127.0,138.091,151.0,195.0,0.0,2.0,21.3676,42.0,105.0,120.0,124.892,1.42455,4.22366,3.02479,8.0,8.0,8.0,0.00150892,0.0011917
+3202,106.8067,0.0,0.0,37.0,75.6521,163.0,213.0,30.0,91.0,110.034,128.0,174.0,99.0,127.0,138.136,151.0,190.0,0.0,2.0,21.4951,42.0,104.0,120.0,125.246,1.61279,4.19966,3.02766,8.0,8.0,8.0,0.00132602,0.0011917
+3203,106.840067,0.0,0.0,37.0,75.9221,163.0,230.0,33.0,91.0,110.19,127.0,180.0,87.0,127.0,138.057,150.0,192.0,0.0,2.0,21.3475,42.0,102.0,120.0,124.174,1.69748,4.19315,3.09963,8.0,8.0,8.0,0.00152606,0.0011917
+3204,106.873433,0.0,0.0,37.0,75.9577,163.0,214.0,34.0,91.0,110.152,127.0,177.0,84.0,127.0,138.238,151.0,193.0,0.0,2.0,21.4229,42.0,102.0,120.0,125.485,1.43308,4.18669,3.03128,8.0,8.0,8.0,0.00133459,0.0011917
+3205,106.9068,0.0,0.0,37.0,75.8498,163.0,212.0,33.0,91.0,109.829,127.0,184.0,84.0,127.0,138.311,151.0,196.0,0.0,2.0,21.7476,42.0,109.0,120.0,125.259,1.588,4.19968,2.98831,8.0,8.0,8.0,0.00124028,0.0011917
+3206,106.940167,0.0,0.0,37.0,75.9659,163.0,215.0,24.0,91.0,109.773,127.0,188.0,88.0,127.0,138.556,151.0,193.0,0.0,3.0,21.8578,43.0,107.0,120.0,124.718,1.40798,4.152,2.95504,8.0,8.0,8.0,0.00136603,0.0011917
+3207,106.973533,0.0,0.0,37.0,75.674,163.0,213.0,33.0,90.0,109.5,127.0,188.0,89.0,127.0,138.164,151.0,191.0,0.0,2.0,21.9148,43.0,101.0,119.0,123.088,1.61913,4.23568,3.0318,8.0,8.0,8.0,0.001266,0.0011917
+3208,107.0069,0.0,0.0,37.0,75.653,163.0,215.0,34.0,90.0,109.473,127.0,175.0,100.0,127.0,138.376,151.0,190.0,0.0,3.0,22.0233,43.0,107.0,120.0,123.867,1.68084,4.19826,2.99582,8.0,8.0,8.0,0.00139175,0.0011917
+3209,107.040267,0.0,0.0,37.0,75.6565,163.0,213.0,30.0,90.0,109.503,127.0,179.0,86.0,127.0,138.338,151.0,188.0,0.0,3.0,21.9728,43.0,102.0,120.0,123.451,1.43303,4.14693,2.94523,8.0,8.0,8.0,0.00136031,0.0011917
+3210,107.073633,0.0,0.0,37.0,75.7313,163.0,215.0,29.0,90.0,109.542,127.0,179.0,86.0,127.0,138.416,151.0,195.0,0.0,3.0,22.0055,43.0,107.0,120.0,123.873,1.6114,4.08495,2.95175,8.0,8.0,8.0,0.00135745,0.0011917
+3211,107.107,0.0,0.0,37.0,75.6311,163.0,234.0,33.0,90.0,109.319,127.0,178.0,100.0,127.0,138.717,151.0,188.0,0.0,2.0,22.3284,43.0,105.0,120.0,124.118,1.40362,4.19925,3.04733,8.0,8.0,8.0,0.00139746,0.0011917
+3212,107.140367,0.0,0.0,37.0,75.5696,163.0,214.0,30.0,90.0,109.382,127.0,177.0,89.0,127.0,138.636,151.0,193.0,0.0,3.0,22.2208,43.0,103.0,120.0,124.696,1.54923,4.18561,2.97977,8.0,8.0,8.0,0.00142318,0.0011917
+3213,107.173733,0.0,0.0,37.0,75.8376,163.0,215.0,33.0,90.0,109.495,127.0,177.0,93.0,127.0,138.382,151.0,190.0,0.0,3.0,22.0115,43.0,102.0,120.0,123.348,1.51556,4.2802,2.9784,8.0,8.0,8.0,0.00127458,0.0011917
+3214,107.2071,0.0,0.0,37.0,75.6634,163.0,213.0,35.0,89.0,109.244,127.0,172.0,90.0,127.0,138.546,151.0,198.0,0.0,3.0,22.2742,44.0,104.0,120.0,123.954,1.31295,4.23723,2.92755,8.0,8.0,8.0,0.00133173,0.0011917
+3215,107.240467,0.0,0.0,37.0,75.6332,163.0,234.0,33.0,89.0,109.14,127.0,170.0,86.0,127.0,138.551,151.0,188.0,0.0,3.0,22.394,44.0,106.0,119.0,124.271,1.62334,4.26,2.99562,8.0,8.0,8.0,0.0015775,0.0011917
+3216,107.273833,0.0,0.0,37.0,75.8722,163.0,215.0,33.0,90.0,109.381,127.0,177.0,83.0,128.0,138.643,151.0,190.0,0.0,3.0,22.1807,43.0,101.0,120.0,124.139,1.49634,4.24789,2.97707,8.0,8.0,8.0,0.00152035,0.0011917
+3217,107.3072,0.0,0.0,37.0,75.8085,163.0,213.0,36.0,91.0,109.962,127.0,188.0,102.0,127.0,137.991,150.0,190.0,0.0,2.0,21.4624,42.0,102.0,119.0,124.165,1.94843,4.34939,3.20687,8.0,8.0,8.0,0.0013946,0.0011917
+3218,107.340567,0.0,0.0,37.0,75.5562,162.0,232.0,33.0,91.0,109.858,127.0,174.0,77.0,127.0,138.208,151.0,186.0,0.0,2.0,21.5917,42.0,103.0,120.0,123.379,1.70686,4.16826,3.02601,8.0,8.0,8.0,0.0015575,0.0011917
+3219,107.373933,0.0,0.0,37.0,75.692,162.0,215.0,35.0,91.0,110.292,127.0,178.0,84.0,127.0,138.229,150.0,187.0,0.0,2.0,21.2349,42.0,104.0,120.0,125.536,1.43584,4.08026,2.87251,8.0,8.0,8.0,0.00157179,0.0011917
+3220,107.4073,0.0,0.0,37.0,75.6588,162.0,213.0,34.0,91.0,109.988,127.0,172.0,99.0,127.0,138.172,150.0,188.0,0.0,2.0,21.4696,42.0,105.0,120.0,124.15,1.55645,4.07888,2.91349,8.0,8.0,8.0,0.00151749,0.0011917
+3221,107.440667,0.0,0.0,37.0,75.5846,162.0,222.0,36.0,91.0,109.915,127.0,172.0,99.0,127.0,138.367,151.0,189.0,0.0,3.0,21.635,42.0,101.0,120.0,123.775,1.3805,4.12157,2.9687,8.0,8.0,8.0,0.0013203,0.0011917
+3222,107.474033,0.0,0.0,37.0,75.6528,162.0,214.0,32.0,91.0,109.886,127.0,175.0,98.0,128.0,138.407,150.0,192.0,0.0,3.0,21.6674,42.0,103.0,120.0,125.452,1.63499,4.20894,2.94937,8.0,8.0,8.0,0.00139746,0.0011917
+3223,107.5074,0.0,0.0,37.0,75.7772,162.0,214.0,33.0,91.0,109.794,127.0,171.0,100.0,127.0,138.477,151.0,194.0,0.0,2.0,21.7288,42.0,102.0,120.0,124.174,1.56285,4.17689,2.92012,8.0,8.0,8.0,0.0015032,0.0011917
+3224,107.540767,0.0,0.0,37.0,75.6396,162.0,212.0,11.0,91.0,109.709,127.0,192.0,99.0,128.0,138.464,151.0,193.0,0.0,3.0,21.8042,42.0,120.0,120.0,124.13,1.41775,4.09259,2.86709,8.0,8.0,8.0,0.000785894,0.00134031
+3225,107.574133,0.0,0.0,37.0,75.62,162.0,213.0,33.0,91.0,109.788,127.0,179.0,94.0,127.0,138.394,151.0,188.0,0.0,3.0,21.7451,43.0,103.0,120.0,124.122,1.67531,4.14743,2.94065,8.0,8.0,8.0,0.00151463,0.0011917
+3226,107.6075,0.0,0.0,37.0,75.7477,163.0,210.0,30.0,91.0,109.908,127.0,176.0,90.0,127.0,138.293,150.0,192.0,0.0,2.0,21.5597,42.0,107.0,120.0,123.976,1.4318,4.12051,2.90193,8.0,8.0,8.0,0.00141175,0.0011917
+3227,107.640867,0.0,0.0,37.0,75.7273,163.0,215.0,32.0,91.0,109.964,127.0,180.0,85.0,127.0,138.154,150.0,191.0,0.0,3.0,21.4958,42.0,103.0,120.0,123.908,1.64025,4.11947,2.92662,8.0,8.0,8.0,0.00152606,0.0011917
+3228,107.674233,0.0,0.0,37.0,75.7523,163.0,212.0,33.0,92.0,110.314,128.0,173.0,99.0,127.0,137.991,150.0,189.0,0.0,2.0,21.1137,41.0,101.0,120.0,125.246,1.48617,4.08459,2.92972,8.0,8.0,8.0,0.00144319,0.0011917
+3229,107.7076,0.0,0.0,37.0,75.6184,163.0,214.0,31.0,91.0,110.282,128.0,179.0,94.0,127.0,138.1,150.0,189.0,0.0,2.0,21.2375,42.0,104.0,120.0,125.849,1.42676,3.98749,2.8852,8.0,8.0,8.0,0.00150892,0.00119456
+3230,107.740967,0.0,0.0,37.0,75.6062,163.0,213.0,30.0,91.0,109.917,127.0,179.0,100.0,127.0,138.107,150.0,190.0,0.0,2.0,21.4989,42.0,103.0,120.0,124.053,1.60451,4.09783,2.91734,8.0,8.0,8.0,0.00145462,0.0011917
+3231,107.774333,0.0,0.0,37.0,75.5686,163.0,216.0,31.0,91.0,109.798,127.0,181.0,93.0,127.0,138.355,151.0,189.0,0.0,2.0,21.6961,43.0,102.0,120.0,124.22,1.33102,4.01588,2.88955,8.0,8.0,8.0,0.00130601,0.0011917
+3232,107.8077,0.0,0.0,37.0,75.6864,163.0,210.0,31.0,91.0,109.984,127.0,171.0,102.0,127.0,138.293,151.0,188.0,0.0,2.0,21.5133,42.0,106.0,120.0,125.56,1.6279,4.10412,2.92497,8.0,8.0,8.0,0.00141461,0.0011917
+3233,107.841067,0.0,0.0,37.0,75.7229,163.0,215.0,34.0,91.0,110.15,127.0,176.0,101.0,127.0,138.162,151.0,191.0,0.0,2.0,21.332,42.0,101.0,120.0,124.88,1.60327,4.16666,2.94219,8.0,8.0,8.0,0.00134602,0.0011917
+3234,107.874433,0.0,0.0,37.0,75.6644,163.0,218.0,35.0,91.0,110.257,127.0,197.0,92.0,127.0,138.206,150.0,188.0,0.0,2.0,21.2402,42.0,105.0,120.0,125.356,1.53997,4.15943,2.89882,8.0,8.0,8.0,0.00153749,0.0011917
+3235,107.9078,0.0,0.0,37.0,75.6862,163.0,239.0,36.0,92.0,110.516,127.0,184.0,92.0,127.0,137.755,150.0,186.0,0.0,2.0,20.7974,41.0,101.0,120.0,124.173,1.76285,4.07651,2.9023,8.0,8.0,8.0,0.00152035,0.00119456
+3236,107.941167,0.0,0.0,37.0,75.761,163.0,212.0,34.0,93.0,110.839,127.0,170.0,80.0,127.0,137.801,149.0,185.0,0.0,2.0,20.4976,40.0,105.0,120.0,124.36,1.50105,4.02693,2.78352,8.0,8.0,8.0,0.00151463,0.0011917
+3237,107.974533,0.0,0.0,37.0,75.8184,163.0,238.0,37.0,92.0,110.501,127.0,188.0,97.0,127.0,137.829,150.0,185.0,0.0,2.0,20.8137,41.0,102.0,120.0,123.872,2.11103,4.11444,2.86397,8.0,8.0,8.0,0.0015032,0.00119456
+3238,108.0079,0.0,0.0,37.0,76.0731,163.0,215.0,38.0,93.0,110.672,127.0,180.0,84.0,127.0,137.804,149.0,194.0,0.0,2.0,20.6277,40.0,96.0,120.0,123.998,2.04813,4.015,2.86773,8.0,8.0,8.0,0.00158036,0.00119456
+3239,108.041267,0.0,0.0,37.0,76.0255,163.0,214.0,38.0,92.0,110.752,128.0,188.0,85.0,128.0,137.888,150.0,186.0,0.0,2.0,20.5943,41.0,98.0,120.0,125.731,1.53281,3.85833,2.76527,8.0,8.0,8.0,0.00168324,0.0011917
+3240,108.074633,0.0,0.0,37.0,76.0584,163.0,215.0,36.0,92.0,110.692,127.0,179.0,100.0,127.0,137.768,149.0,190.0,0.0,2.0,20.5717,40.0,101.0,120.0,123.934,1.67268,3.93993,2.75794,8.0,8.0,8.0,0.00131744,0.0011917
+3241,108.108,0.0,0.0,37.0,75.9591,163.0,213.0,37.0,92.0,110.648,127.0,176.0,85.0,127.0,137.883,150.0,191.0,0.0,2.0,20.6977,40.0,101.0,120.0,124.107,1.37548,3.93537,2.75144,8.0,8.0,8.0,0.00141461,0.0011917
+3242,108.141367,0.0,0.0,37.0,75.9999,163.0,214.0,36.0,93.0,110.577,127.0,174.0,86.0,127.0,137.852,149.0,191.0,0.0,2.0,20.7463,40.0,98.0,120.0,124.489,1.72165,3.94545,2.76485,8.0,8.0,8.0,0.00134316,0.0011917
+3243,108.174733,0.0,0.0,37.0,75.6499,163.0,216.0,37.0,92.0,110.481,127.0,176.0,89.0,127.0,137.952,150.0,187.0,0.0,2.0,20.8534,41.0,98.0,120.0,123.765,1.72894,3.91371,2.76241,8.0,8.0,8.0,0.00138032,0.0011917
+3244,108.2081,0.0,0.0,37.0,75.5014,163.0,214.0,39.0,92.0,110.404,127.0,191.0,101.0,128.0,138.004,150.0,184.0,0.0,2.0,20.8822,41.0,96.0,120.0,124.27,1.48561,3.83914,2.7243,8.0,8.0,8.0,0.00144033,0.00119456
+3245,108.241467,0.0,0.0,37.0,75.401,163.0,214.0,37.0,92.0,110.32,127.0,176.0,85.0,127.0,137.978,150.0,188.0,0.0,2.0,21.0072,41.0,100.0,120.0,123.059,1.80352,3.87284,2.74816,8.0,8.0,8.0,0.00128315,0.00119456
+3246,108.274833,0.0,0.0,37.0,75.5086,163.0,215.0,39.0,92.0,110.436,127.0,182.0,87.0,128.0,138.03,150.0,189.0,0.0,2.0,20.9127,41.0,97.0,120.0,124.413,1.5003,3.86413,2.72311,8.0,8.0,8.0,0.00133459,0.0011917
+3247,108.3082,0.0,0.0,37.0,75.0814,162.0,216.0,36.0,92.0,110.521,127.0,172.0,101.0,127.0,137.999,150.0,194.0,0.0,2.0,20.8417,41.0,99.0,120.0,124.87,1.87935,3.93234,2.77128,8.0,8.0,8.0,0.00132888,0.0011917
+3248,108.341567,0.0,0.0,37.0,75.2858,162.0,213.0,37.0,92.0,110.537,127.0,182.0,97.0,127.0,138.022,150.0,191.0,0.0,2.0,20.8554,41.0,106.0,120.0,124.679,1.93212,3.94058,2.76893,8.0,8.0,8.0,0.00132888,0.00119456
+3249,108.374933,0.0,0.0,37.0,75.2452,162.0,216.0,38.0,92.0,110.58,127.0,174.0,101.0,128.0,137.968,150.0,187.0,0.0,2.0,20.824,41.0,100.0,120.0,125.713,1.60164,3.90998,2.79058,8.0,8.0,8.0,0.00144033,0.00119456
+3250,108.4083,0.0,0.0,37.0,75.0402,162.0,216.0,35.0,93.0,110.579,127.0,176.0,102.0,127.0,137.874,150.0,186.0,0.0,2.0,20.7576,40.0,103.0,120.0,123.78,1.90371,3.97405,2.77743,8.0,8.0,8.0,0.0013546,0.0011917
+3251,108.441667,0.0,0.0,37.0,74.8891,162.0,233.0,37.0,92.0,110.535,127.0,170.0,101.0,127.0,137.953,150.0,190.0,0.0,2.0,20.8598,41.0,98.0,120.0,124.453,1.50091,3.88003,2.71245,8.0,8.0,8.0,0.0014489,0.0011917
+3252,108.475033,0.0,0.0,37.0,74.7669,161.0,215.0,38.0,93.0,110.9,127.0,177.0,102.0,127.0,137.832,150.0,188.0,0.0,2.0,20.4513,40.0,97.0,120.0,124.779,1.76582,3.98801,2.79865,8.0,8.0,8.0,0.00138603,0.00119456
+3253,108.5084,0.0,0.0,37.0,74.8371,161.0,214.0,39.0,93.0,110.865,127.0,190.0,97.0,127.0,137.807,150.0,188.0,0.0,2.0,20.497,41.0,99.0,120.0,124.508,1.68903,3.98883,2.78567,8.0,8.0,8.0,0.00135174,0.0011917
+3254,108.541767,0.0,0.0,37.0,74.9205,161.0,230.0,38.0,93.0,110.759,127.0,173.0,95.0,127.0,137.847,149.0,187.0,0.0,2.0,20.5412,40.0,98.0,120.0,124.618,1.52187,3.92622,2.75951,8.0,8.0,8.0,0.00143461,0.0011917
+3255,108.575133,0.0,0.0,37.0,74.9784,161.0,212.0,41.0,93.0,110.902,127.0,174.0,101.0,127.0,137.644,149.0,187.0,0.0,2.0,20.3105,40.0,95.0,120.0,123.405,1.9129,3.87732,2.75648,8.0,8.0,8.0,0.00142032,0.0011917
+3256,108.6085,0.0,0.0,37.0,75.1773,162.0,214.0,41.0,93.0,111.237,127.0,172.0,91.0,127.0,137.613,149.0,187.0,0.0,2.0,20.0391,39.0,99.0,120.0,124.57,1.60955,3.83897,2.64079,8.0,8.0,8.0,0.00137174,0.0011917
+3257,108.641867,0.0,0.0,37.0,74.9599,161.0,214.0,39.0,93.0,111.013,127.0,183.0,90.0,127.0,137.651,149.0,190.0,0.0,2.0,20.2175,39.0,97.0,120.0,124.19,1.98743,3.88869,2.74971,8.0,8.0,8.0,0.00143747,0.00119456
+3258,108.675233,0.0,0.0,37.0,75.0486,162.0,213.0,40.0,94.0,111.591,128.0,181.0,93.0,127.0,137.538,149.0,188.0,0.0,2.0,19.7331,39.0,101.0,120.0,126.093,1.59784,3.93316,2.67777,8.0,8.0,8.0,0.00135174,0.0011917
+3259,108.7086,0.0,0.0,37.0,74.9604,162.0,215.0,42.0,94.0,111.686,128.0,177.0,97.0,127.0,137.639,149.0,187.0,0.0,2.0,19.7144,39.0,92.0,121.0,126.617,1.51845,3.76452,2.58879,8.0,8.0,8.0,0.00136603,0.0011917
+3260,108.741967,0.0,0.0,37.0,74.6638,161.0,212.0,40.0,94.0,111.481,128.0,183.0,103.0,127.0,137.497,149.0,183.0,0.0,2.0,19.7826,39.0,95.0,120.0,124.971,1.90329,3.84175,2.66131,8.0,8.0,8.0,0.00125457,0.0011917
+3261,108.775333,0.0,0.0,37.0,74.5714,161.0,214.0,41.0,94.0,111.462,127.0,175.0,99.0,127.0,137.568,149.0,189.0,0.0,2.0,19.8266,39.0,96.0,120.0,124.362,1.56889,3.81795,2.65906,8.0,8.0,8.0,0.00127172,0.0011917
+3262,108.8087,0.0,0.0,37.0,74.815,161.0,213.0,42.0,94.0,111.63,127.0,181.0,103.0,128.0,137.657,149.0,185.0,0.0,2.0,19.7009,38.0,93.0,121.0,125.809,2.06625,3.86445,2.67471,8.0,8.0,8.0,0.00138317,0.0011917
+3263,108.842067,0.0,0.0,37.0,74.6988,161.0,213.0,38.0,94.0,111.358,127.0,175.0,101.0,127.0,137.709,149.0,185.0,0.0,2.0,19.9666,39.0,97.0,120.0,125.508,2.37727,3.85137,2.73164,8.0,8.0,8.0,0.0013003,0.0011917
+3264,108.875433,0.0,0.0,37.0,74.6073,161.0,229.0,42.0,94.0,111.456,127.0,174.0,103.0,128.0,137.749,149.0,184.0,0.0,2.0,19.8683,39.0,97.0,121.0,126.042,1.72492,3.76988,2.61483,8.0,8.0,8.0,0.00158036,0.0011917
+3265,108.9088,0.0,0.0,37.0,74.5781,161.0,213.0,42.0,94.0,111.529,128.0,174.0,103.0,127.0,137.544,149.0,183.0,0.0,2.0,19.7871,39.0,100.0,120.0,124.732,2.13073,3.78979,2.66528,8.0,8.0,8.0,0.00158322,0.0011917
+3266,108.942167,0.0,0.0,37.0,74.6362,162.0,215.0,38.0,94.0,111.57,127.0,180.0,86.0,127.0,137.613,149.0,187.0,0.0,2.0,19.7376,39.0,96.0,120.0,124.854,1.59643,3.80682,2.68353,8.0,8.0,8.0,0.00143176,0.0011917
+3267,108.975533,0.0,0.0,37.0,74.3198,161.0,213.0,40.0,94.0,111.187,127.0,177.0,103.0,127.0,137.532,149.0,189.0,0.0,2.0,20.0264,39.0,98.0,120.0,124.516,1.95469,3.8789,2.7173,8.0,8.0,8.0,0.0013746,0.0011917
+3268,109.0089,0.0,0.0,37.0,74.436,161.0,214.0,40.0,94.0,111.623,128.0,184.0,93.0,127.0,137.57,149.0,187.0,0.0,2.0,19.7141,38.0,96.0,121.0,125.549,1.73159,3.88013,2.70146,8.0,8.0,8.0,0.00144604,0.0011917
+3269,109.042267,0.0,0.0,37.0,74.3059,161.0,214.0,38.0,94.0,111.598,128.0,178.0,104.0,127.0,137.628,149.0,189.0,0.0,2.0,19.7772,39.0,93.0,121.0,126.348,1.52645,3.80372,2.64867,8.0,8.0,8.0,0.00126315,0.0011917
+3270,109.075633,0.0,0.0,37.0,74.3302,161.0,228.0,40.0,94.0,111.45,128.0,169.0,84.0,127.0,137.527,149.0,186.0,0.0,2.0,19.8219,39.0,95.0,120.0,124.906,1.78951,3.80602,2.70057,8.0,8.0,8.0,0.00136317,0.0011917
+3271,109.109,0.0,0.0,37.0,74.287,161.0,210.0,38.0,94.0,111.336,127.0,170.0,93.0,127.0,137.617,149.0,188.0,0.0,2.0,19.9469,39.0,97.0,120.0,123.578,1.39171,3.74239,2.68554,8.0,8.0,8.0,0.00136317,0.0011917
+3272,109.142367,0.0,0.0,37.0,74.2595,161.0,213.0,39.0,94.0,111.554,128.0,170.0,95.0,127.0,137.591,149.0,188.0,0.0,2.0,19.763,39.0,92.0,120.0,125.099,1.6206,3.75514,2.69272,8.0,8.0,8.0,0.00134316,0.0011917
+3273,109.175733,0.0,0.0,37.0,74.2157,161.0,216.0,37.0,94.0,111.253,127.0,167.0,98.0,127.0,137.52,149.0,184.0,0.0,2.0,19.9596,39.0,94.0,120.0,124.02,1.6937,3.83633,2.71684,8.0,8.0,8.0,0.00130601,0.0011917
+3274,109.2091,0.0,0.0,37.0,74.4142,161.0,214.0,41.0,94.0,111.296,127.0,174.0,100.0,127.0,137.577,149.0,185.0,0.0,2.0,19.9318,39.0,95.0,120.0,125.175,1.38142,3.78961,2.6171,8.0,8.0,8.0,0.00132602,0.0011917
+3275,109.242467,0.0,0.0,37.0,74.4885,161.0,216.0,40.0,94.0,111.381,127.0,171.0,96.0,127.0,137.407,149.0,195.0,0.0,2.0,19.7743,39.0,97.0,120.0,124.354,1.50165,3.74223,2.64344,8.0,8.0,8.0,0.00138603,0.0011917
+3276,109.275833,0.0,0.0,37.0,74.5899,161.0,214.0,43.0,94.0,111.542,127.0,180.0,86.0,127.0,137.401,149.0,185.0,0.0,2.0,19.6516,38.0,93.0,120.0,124.09,1.3261,3.73828,2.58437,8.0,8.0,8.0,0.00144319,0.0011917
+3277,109.3092,0.0,0.0,37.0,74.3431,160.0,215.0,37.0,94.0,111.207,127.0,177.0,80.0,127.0,137.43,149.0,185.0,0.0,2.0,19.9392,39.0,102.0,120.0,123.968,1.87529,3.86421,2.69634,8.0,8.0,8.0,0.0013003,0.0011917
+3278,109.342567,0.0,0.0,37.0,74.6148,160.0,232.0,41.0,95.0,111.636,127.0,176.0,83.0,127.0,137.472,149.0,184.0,0.0,2.0,19.6024,38.0,95.0,120.0,125.029,2.16093,3.78216,2.71805,8.0,8.0,8.0,0.00136031,0.0011917
+3279,109.375933,0.0,0.0,37.0,74.6524,161.0,238.0,41.0,94.0,111.497,128.0,175.0,91.0,127.0,137.538,149.0,185.0,0.0,2.0,19.7451,38.0,92.0,120.0,125.116,1.61685,3.71619,2.59599,8.0,8.0,8.0,0.00136031,0.00119456
+3280,109.4093,0.0,0.0,37.0,74.785,161.0,216.0,42.0,94.0,111.451,128.0,173.0,93.0,127.0,137.369,148.0,186.0,0.0,2.0,19.7079,38.0,94.0,120.0,124.944,1.89244,3.73094,2.6099,8.0,8.0,8.0,0.00140604,0.0011917
+3281,109.442667,0.0,0.0,37.0,74.691,161.0,216.0,43.0,95.0,111.899,128.0,171.0,86.0,127.0,137.238,148.0,186.0,0.0,2.0,19.2499,38.0,91.0,120.0,124.961,1.52425,3.64922,2.62875,8.0,8.0,8.0,0.00129172,0.0011917
+3282,109.476033,0.0,0.0,37.0,74.763,161.0,215.0,45.0,95.0,112.091,128.0,167.0,88.0,127.0,136.991,148.0,181.0,0.0,2.0,18.9439,37.0,89.0,120.0,124.754,1.83815,3.63972,2.60247,8.0,8.0,8.0,0.00134031,0.0011917
+3283,109.5094,0.0,0.0,37.0,74.7591,161.0,215.0,44.0,95.0,112.039,128.0,168.0,92.0,127.0,137.104,148.0,185.0,0.0,2.0,19.0512,37.0,88.0,120.0,124.572,1.69735,3.56163,2.54927,8.0,8.0,8.0,0.0014289,0.0011917
+3284,109.542767,0.0,0.0,37.0,74.8595,161.0,211.0,42.0,95.0,111.957,127.0,182.0,98.0,127.0,137.18,148.0,181.0,0.0,2.0,19.1582,37.0,91.0,120.0,124.847,1.36159,3.61179,2.46813,8.0,8.0,8.0,0.00143461,0.0011917
+3285,109.576133,0.0,0.0,37.0,74.9075,162.0,212.0,40.0,95.0,112.117,127.0,172.0,82.0,127.0,137.026,148.0,184.0,0.0,2.0,18.9862,37.0,89.0,120.0,124.143,1.66735,3.70628,2.55663,8.0,8.0,8.0,0.00137746,0.0011917
+3286,109.6095,0.0,0.0,37.0,74.9833,162.0,227.0,45.0,96.0,112.382,128.0,169.0,84.0,127.0,137.099,148.0,186.0,0.0,2.0,18.7734,37.0,91.0,120.0,124.699,1.4462,3.71113,2.52151,8.0,8.0,8.0,0.00137746,0.0011917
+3287,109.642867,0.0,0.0,37.0,74.9724,162.0,216.0,44.0,96.0,112.407,128.0,180.0,82.0,127.0,136.846,148.0,191.0,0.0,2.0,18.6463,37.0,98.0,120.0,125.134,1.75951,3.61949,2.53251,8.0,8.0,8.0,0.00142032,0.0011917
+3288,109.676233,0.0,0.0,37.0,75.2231,162.0,216.0,43.0,97.0,112.733,128.0,166.0,92.0,127.0,136.924,148.0,185.0,0.0,2.0,18.4005,36.0,89.0,121.0,126.099,1.73611,3.6303,2.48919,8.0,8.0,8.0,0.00139746,0.0011917
+3289,109.7096,0.0,0.0,37.0,75.131,162.0,234.0,46.0,96.0,112.634,128.0,183.0,101.0,127.0,137.036,148.0,188.0,0.0,2.0,18.5358,36.0,91.0,121.0,126.887,1.3934,3.62561,2.43993,8.0,8.0,8.0,0.00140889,0.0011917
+3290,109.742967,0.0,0.0,37.0,75.0975,162.0,243.0,45.0,96.0,112.446,128.0,172.0,84.0,128.0,136.963,147.0,185.0,0.0,2.0,18.6293,36.0,89.0,120.0,125.971,1.54488,3.61808,2.47455,8.0,8.0,8.0,0.00140604,0.00119456
+3291,109.776333,0.0,0.0,37.0,75.0366,162.0,217.0,45.0,96.0,112.474,128.0,166.0,81.0,127.0,137.086,148.0,184.0,0.0,2.0,18.6833,36.0,87.0,120.0,125.754,1.29078,3.5511,2.45054,8.0,8.0,8.0,0.00132602,0.0011917
+3292,109.8097,0.0,0.0,37.0,75.0242,161.0,210.0,43.0,96.0,112.296,127.0,176.0,82.0,128.0,137.212,148.0,188.0,0.0,2.0,18.831,37.0,88.0,121.0,124.653,1.51039,3.63496,2.47802,8.0,8.0,8.0,0.00144604,0.0011917
+3293,109.843067,0.0,0.0,37.0,75.0314,162.0,216.0,42.0,96.0,112.276,127.0,170.0,87.0,128.0,137.285,148.0,185.0,0.0,2.0,18.892,37.0,92.0,121.0,125.237,1.61284,3.67897,2.53783,8.0,8.0,8.0,0.00149177,0.0011917
+3294,109.876433,0.0,0.0,37.0,75.1658,162.0,214.0,46.0,96.0,112.384,128.0,172.0,84.0,128.0,137.255,148.0,182.0,0.0,2.0,18.7817,37.0,88.0,121.0,126.86,1.41773,3.50504,2.46502,8.0,8.0,8.0,0.00142604,0.0011917
+3295,109.9098,0.0,0.0,37.0,75.0798,162.0,216.0,46.0,96.0,112.458,127.0,169.0,89.0,127.0,137.048,148.0,183.0,0.0,2.0,18.6222,36.0,93.0,120.0,124.834,1.59407,3.50191,2.49505,8.0,8.0,8.0,0.00130601,0.0011917
+3296,109.943167,0.0,0.0,37.0,75.1241,162.0,217.0,42.0,97.0,112.569,127.0,172.0,88.0,127.0,137.15,148.0,183.0,0.0,2.0,18.6052,36.0,88.0,121.0,124.803,1.31349,3.46702,2.39426,8.0,8.0,8.0,0.00137746,0.0011917
+3297,109.976533,0.0,0.0,37.0,74.9092,162.0,214.0,46.0,96.0,112.076,127.0,176.0,87.0,127.0,136.97,148.0,184.0,0.0,2.0,18.951,37.0,90.0,120.0,124.835,1.67845,3.63931,2.51246,8.0,8.0,8.0,0.00136031,0.0011917
+3298,110.0099,0.0,0.0,37.0,74.8909,161.0,217.0,45.0,96.0,112.531,128.0,175.0,87.0,127.0,136.971,148.0,181.0,0.0,2.0,18.5455,36.0,90.0,120.0,124.837,1.5365,3.58479,2.50458,8.0,8.0,8.0,0.00130887,0.0011917
+3299,110.043267,0.0,0.0,37.0,74.9404,161.0,231.0,45.0,96.0,112.541,127.0,176.0,88.0,127.0,137.02,148.0,182.0,0.0,2.0,18.5595,36.0,89.0,120.0,125.08,1.2788,3.56512,2.45939,8.0,8.0,8.0,0.00146319,0.0011917
+3300,110.076633,0.0,0.0,37.0,75.017,161.0,216.0,47.0,96.0,112.338,128.0,163.0,91.0,127.0,137.044,147.0,184.0,0.0,2.0,18.7405,36.0,90.0,120.0,125.395,1.42868,3.53277,2.48825,8.0,8.0,8.0,0.00136603,0.0011917
+3301,110.11,0.0,0.0,37.0,75.1103,162.0,214.0,46.0,96.0,112.225,128.0,173.0,86.0,127.0,137.218,148.0,182.0,0.0,2.0,18.9207,37.0,89.0,121.0,125.407,1.32088,3.58256,2.46706,8.0,8.0,8.0,0.00133745,0.0011917
+3302,110.143367,0.0,0.0,37.0,74.9832,162.0,214.0,46.0,96.0,112.424,127.0,172.0,87.0,128.0,137.102,147.0,185.0,0.0,2.0,18.644,36.0,86.0,121.0,125.063,1.55202,3.63258,2.54275,8.0,8.0,8.0,0.00141461,0.0011917
+3303,110.176733,0.0,0.0,37.0,74.9189,162.0,213.0,44.0,96.0,112.467,128.0,175.0,106.0,127.0,137.057,148.0,186.0,0.0,2.0,18.6433,36.0,95.0,120.0,125.556,1.55613,3.54771,2.47098,8.0,8.0,8.0,0.0013946,0.0011917
+3304,110.2101,0.0,0.0,37.0,74.9696,162.0,213.0,45.0,97.0,112.624,128.0,169.0,88.0,128.0,137.078,147.0,186.0,0.0,2.0,18.4757,36.0,87.0,121.0,125.667,1.32385,3.42636,2.42028,8.0,8.0,8.0,0.0013746,0.0011917
+3305,110.243467,0.0,0.0,37.0,74.8769,162.0,212.0,42.0,97.0,112.51,127.0,174.0,91.0,128.0,137.023,148.0,183.0,0.0,2.0,18.5463,36.0,91.0,120.0,124.927,1.64255,3.51806,2.46129,8.0,8.0,8.0,0.00130316,0.0011917
+3306,110.276833,0.0,0.0,37.0,74.8648,162.0,211.0,47.0,96.0,112.558,127.0,183.0,86.0,127.0,137.048,148.0,185.0,0.0,2.0,18.4842,36.0,90.0,120.0,123.881,1.4394,3.43202,2.42583,8.0,8.0,8.0,0.00136603,0.0011917
+3307,110.3102,0.0,0.0,37.0,74.7682,162.0,217.0,46.0,96.0,112.564,127.0,170.0,90.0,127.0,136.841,147.0,180.0,0.0,2.0,18.4039,36.0,87.0,120.0,124.311,1.50454,3.46296,2.42703,8.0,8.0,8.0,0.00143176,0.0011917
+3308,110.343567,0.0,0.0,37.0,74.9149,162.0,215.0,46.0,97.0,112.813,128.0,172.0,88.0,128.0,136.971,148.0,183.0,0.0,2.0,18.2545,36.0,91.0,121.0,125.328,1.50742,3.45864,2.40415,8.0,8.0,8.0,0.00135174,0.0011917
+3309,110.376933,0.0,0.0,37.0,74.763,162.0,214.0,46.0,97.0,112.771,128.0,170.0,90.0,128.0,136.897,147.0,181.0,0.0,2.0,18.2334,36.0,87.0,121.0,125.841,1.38634,3.40333,2.36588,8.0,8.0,8.0,0.00133459,0.0011917
+3310,110.4103,0.0,0.0,37.0,74.7147,162.0,217.0,47.0,97.0,112.893,127.0,163.0,90.0,127.0,136.748,147.0,183.0,0.0,2.0,18.0482,35.0,90.0,120.0,123.959,1.67917,3.39451,2.36855,8.0,8.0,8.0,0.00141175,0.0011917
+3311,110.443667,0.0,0.0,37.0,74.6661,161.0,218.0,47.0,97.0,112.738,127.0,164.0,88.0,127.0,136.795,147.0,182.0,0.0,2.0,18.1917,35.0,90.0,120.0,122.818,1.394,3.31112,2.28919,8.0,8.0,8.0,0.00130887,0.0011917
+3312,110.477033,0.0,0.0,37.0,74.7644,162.0,215.0,47.0,97.0,112.895,127.0,170.0,90.0,127.0,136.588,147.0,182.0,0.0,2.0,17.9959,35.0,90.0,120.0,124.211,1.92142,3.45018,2.47067,8.0,8.0,8.0,0.00128887,0.0011917
+3313,110.5104,0.0,0.0,37.0,74.7016,162.0,214.0,48.0,97.0,112.727,127.0,167.0,88.0,128.0,136.709,147.0,182.0,0.0,2.0,18.1915,35.0,87.0,120.0,123.826,2.09824,3.4279,2.46766,8.0,8.0,8.0,0.00136603,0.0011917
+3314,110.543767,0.0,0.0,37.0,74.7644,162.0,214.0,47.0,97.0,112.774,127.0,168.0,93.0,127.0,136.797,147.0,181.0,0.0,2.0,18.1653,35.0,86.0,120.0,123.966,1.59607,3.36217,2.4044,8.0,8.0,8.0,0.00154607,0.0011917
+3315,110.577133,0.0,0.0,37.0,74.7112,162.0,212.0,49.0,97.0,112.667,127.0,180.0,105.0,127.0,136.797,147.0,180.0,0.0,2.0,18.2725,36.0,91.0,120.0,123.734,1.90969,3.41337,2.45118,8.0,8.0,8.0,0.00143176,0.0011917
+3316,110.6105,0.0,0.0,37.0,74.805,162.0,214.0,47.0,97.0,112.68,127.0,171.0,88.0,127.0,136.87,147.0,181.0,0.0,2.0,18.2735,36.0,89.0,120.0,124.032,1.5806,3.39089,2.34238,8.0,8.0,8.0,0.00144604,0.0011917
+3317,110.643867,0.0,0.0,37.0,74.8876,162.0,211.0,45.0,97.0,112.604,127.0,168.0,94.0,127.0,136.748,147.0,178.0,0.0,2.0,18.3439,36.0,91.0,120.0,124.024,1.93795,3.47347,2.44689,8.0,8.0,8.0,0.00145748,0.0011917
+3318,110.677233,0.0,0.0,37.0,74.9772,162.0,215.0,49.0,97.0,112.666,127.0,182.0,106.0,127.0,136.748,147.0,182.0,0.0,2.0,18.2511,35.0,85.0,120.0,123.882,1.87366,3.51417,2.44689,8.0,8.0,8.0,0.00152606,0.0011917
+3319,110.7106,0.0,0.0,37.0,74.9169,162.0,214.0,46.0,97.0,112.586,127.0,177.0,101.0,127.0,136.833,147.0,178.0,0.0,2.0,18.331,36.0,87.0,120.0,123.836,1.41289,3.34999,2.37475,8.0,8.0,8.0,0.0013946,0.0011917
+3320,110.743967,0.0,0.0,37.0,75.0943,162.0,216.0,45.0,97.0,112.581,127.0,172.0,85.0,127.0,136.704,147.0,179.0,0.0,2.0,18.267,36.0,90.0,120.0,122.695,1.66254,3.39775,2.357,8.0,8.0,8.0,0.00141461,0.00119456
+3321,110.777333,0.0,0.0,37.0,75.0996,162.0,216.0,49.0,97.0,113.052,127.0,168.0,106.0,127.0,136.733,147.0,177.0,0.0,2.0,17.8987,35.0,85.0,120.0,124.105,1.45761,3.4087,2.34195,8.0,8.0,8.0,0.00152606,0.0011917
+3322,110.8107,0.0,0.0,37.0,75.1461,162.0,216.0,48.0,99.0,113.512,127.0,178.0,108.0,128.0,136.241,146.0,178.0,0.0,2.0,17.214,33.0,82.0,120.0,124.52,1.77889,3.33286,2.33765,8.0,8.0,8.0,0.00156607,0.00119456
+3323,110.844067,0.0,0.0,37.0,75.1801,162.0,216.0,50.0,98.0,113.438,127.0,174.0,88.0,127.0,136.306,146.0,175.0,0.0,2.0,17.3344,34.0,87.0,120.0,124.095,1.62793,3.20663,2.23348,8.0,8.0,8.0,0.00147748,0.0011917
+3324,110.877433,0.0,0.0,37.0,75.1648,162.0,213.0,51.0,99.0,113.595,128.0,172.0,96.0,128.0,136.373,146.0,176.0,0.0,2.0,17.2299,34.0,82.0,121.0,125.524,1.41574,3.17956,2.16976,8.0,8.0,8.0,0.00148034,0.0011917
+3325,110.9108,0.0,0.0,37.0,75.0695,162.0,212.0,50.0,98.0,113.512,127.0,176.0,101.0,127.0,136.198,146.0,177.0,0.0,2.0,17.2581,34.0,83.0,120.0,123.955,1.61732,3.21595,2.25613,8.0,8.0,8.0,0.00151177,0.0011917
+3326,110.944167,0.0,0.0,37.0,75.1321,162.0,214.0,52.0,98.0,113.45,127.0,166.0,94.0,127.0,136.399,146.0,177.0,0.0,2.0,17.3759,34.0,86.0,120.0,124.215,1.44368,3.20636,2.26652,8.0,8.0,8.0,0.00152606,0.0011917
+3327,110.977533,0.0,0.0,37.0,75.1712,162.0,212.0,52.0,98.0,113.314,127.0,170.0,90.0,128.0,136.421,146.0,178.0,0.0,2.0,17.4827,34.0,86.0,120.0,124.108,1.62182,3.23067,2.24547,8.0,8.0,8.0,0.00158893,0.00119456
+3328,111.0109,0.0,0.0,37.0,74.9257,162.0,214.0,49.0,99.0,113.661,127.0,165.0,89.0,127.0,136.246,146.0,177.0,0.0,2.0,17.1047,33.0,85.0,120.0,124.236,1.71521,3.2329,2.24878,8.0,8.0,8.0,0.00135745,0.0011917
+3329,111.044267,0.0,0.0,37.0,74.925,162.0,214.0,51.0,99.0,113.537,127.0,168.0,87.0,127.0,136.36,146.0,180.0,0.0,2.0,17.2869,33.0,82.0,120.0,123.497,1.44687,3.22199,2.2531,8.0,8.0,8.0,0.00149463,0.0011917
+3330,111.077633,0.0,0.0,37.0,74.9988,162.0,236.0,50.0,98.0,113.41,127.0,180.0,89.0,127.0,136.257,146.0,177.0,0.0,2.0,17.3473,34.0,82.0,120.0,122.981,1.67429,3.22605,2.26391,8.0,8.0,8.0,0.00158036,0.00119456
+3331,111.111,0.0,0.0,37.0,74.986,162.0,211.0,52.0,99.0,113.613,128.0,164.0,88.0,127.0,136.362,146.0,179.0,0.0,2.0,17.2326,34.0,83.0,120.0,124.648,1.40805,3.18962,2.20769,8.0,8.0,8.0,0.00146033,0.00119456
+3332,111.144367,0.0,0.0,37.0,74.9649,162.0,213.0,51.0,99.0,113.621,128.0,165.0,88.0,128.0,136.386,146.0,179.0,0.0,2.0,17.2286,34.0,80.0,120.0,125.155,1.62918,3.23491,2.21404,8.0,8.0,8.0,0.00138603,0.00119456
+3333,111.177733,0.0,0.0,37.0,74.9479,162.0,214.0,53.0,99.0,113.635,128.0,168.0,85.0,127.0,136.297,146.0,180.0,0.0,2.0,17.1703,34.0,82.0,120.0,123.591,1.62044,3.22465,2.24151,8.0,8.0,8.0,0.0015032,0.0011917
+3334,111.2111,0.0,0.0,37.0,74.8706,162.0,216.0,54.0,100.0,114.201,128.0,165.0,88.0,128.0,136.278,146.0,177.0,0.0,2.0,16.6127,33.0,81.0,121.0,125.34,1.47635,3.24961,2.16484,8.0,8.0,8.0,0.00146319,0.0011917
+3335,111.244467,0.0,0.0,37.0,74.8766,162.0,217.0,56.0,101.0,114.654,128.0,161.0,92.0,127.0,135.83,145.0,176.0,0.0,2.0,16.0204,31.0,79.0,120.0,125.166,1.69476,3.16942,2.13509,8.0,8.0,8.0,0.00152035,0.00119456
+3336,111.277833,0.0,0.0,37.0,74.9375,162.0,218.0,54.0,101.0,114.665,128.0,174.0,93.0,127.0,135.821,145.0,175.0,0.0,2.0,16.035,31.0,78.0,121.0,125.032,1.43258,3.0088,2.00622,8.0,8.0,8.0,0.00158036,0.00119456
+3337,111.3112,0.0,0.0,37.0,74.7789,161.0,226.0,54.0,101.0,114.638,128.0,175.0,93.0,127.0,135.873,145.0,176.0,0.0,2.0,16.0989,31.0,77.0,121.0,125.32,1.6742,3.0039,2.10524,8.0,8.0,8.0,0.00146891,0.0011917
+3338,111.344567,0.0,0.0,37.0,75.0311,162.0,231.0,54.0,101.0,114.75,128.0,174.0,107.0,127.0,135.842,145.0,175.0,0.0,2.0,15.9446,31.0,77.0,121.0,124.766,1.80406,3.09976,2.14917,8.0,8.0,8.0,0.00152892,0.00119742
+3339,111.377933,0.0,0.0,37.0,74.875,162.0,214.0,55.0,101.0,114.662,128.0,172.0,90.0,127.0,135.822,145.0,175.0,0.0,2.0,16.0029,31.0,82.0,121.0,125.078,1.375,3.01636,2.01163,8.0,8.0,8.0,0.00136317,0.00119456
+3340,111.4113,0.0,0.0,37.0,75.0054,162.0,215.0,53.0,101.0,114.601,128.0,168.0,92.0,127.0,135.746,145.0,173.0,0.0,2.0,16.0347,31.0,77.0,120.0,125.277,1.65196,2.96543,2.0106,8.0,8.0,8.0,0.0015775,0.0011917
+3341,111.444667,0.0,0.0,37.0,74.8899,162.0,215.0,47.0,101.0,114.603,128.0,172.0,92.0,127.0,135.799,145.0,174.0,0.0,2.0,16.0754,31.0,81.0,121.0,124.564,1.5182,2.97878,2.02457,8.0,8.0,8.0,0.00133173,0.0011917
+3342,111.478033,0.0,0.0,37.0,74.6871,162.0,215.0,48.0,101.0,114.874,128.0,171.0,88.0,127.0,135.744,145.0,175.0,0.0,2.0,15.807,31.0,80.0,121.0,125.31,1.71666,3.02786,2.0967,8.0,8.0,8.0,0.00138889,0.0011917
+3343,111.5114,0.0,0.0,37.0,74.8236,162.0,233.0,48.0,101.0,114.622,128.0,177.0,95.0,127.0,135.767,145.0,173.0,0.0,2.0,16.0341,31.0,80.0,120.0,125.085,1.57275,2.97574,2.02946,8.0,8.0,8.0,0.00139746,0.0011917
+3344,111.544767,0.0,0.0,37.0,74.678,162.0,229.0,48.0,101.0,114.831,128.0,172.0,108.0,128.0,135.82,145.0,176.0,0.0,2.0,15.8518,31.0,82.0,121.0,125.882,1.30761,2.92038,1.98261,8.0,8.0,8.0,0.00148605,0.0011917
+3345,111.578133,0.0,0.0,37.0,74.4684,161.0,214.0,50.0,101.0,115.186,128.0,173.0,102.0,127.0,135.537,145.0,174.0,0.0,2.0,15.4539,30.0,78.0,121.0,125.497,1.5811,3.01235,2.08282,8.0,8.0,8.0,0.00130601,0.0011917
+3346,111.6115,0.0,0.0,37.0,74.501,161.0,216.0,51.0,102.0,115.649,128.0,172.0,98.0,127.0,135.302,144.0,172.0,0.0,2.0,14.8693,29.0,77.0,121.0,125.581,1.35702,2.94056,1.97713,8.0,8.0,8.0,0.00129172,0.0011917
+3347,111.644867,0.0,0.0,37.0,74.3724,161.0,215.0,56.0,103.0,115.619,128.0,163.0,105.0,127.0,135.169,144.0,174.0,0.0,2.0,14.873,29.0,76.0,120.0,125.094,1.43497,2.86423,1.93908,8.0,8.0,8.0,0.00134316,0.0011917
+3348,111.678233,0.0,0.0,37.0,74.4341,161.0,214.0,58.0,102.0,115.436,128.0,175.0,101.0,127.0,135.292,144.0,175.0,0.0,2.0,15.0467,30.0,73.0,120.0,124.128,1.49049,2.88506,1.98457,8.0,8.0,8.0,0.00136888,0.0011917
+3349,111.7116,0.0,0.0,37.0,74.3565,161.0,240.0,60.0,102.0,115.427,128.0,161.0,97.0,127.0,135.37,144.0,174.0,0.0,2.0,15.1151,30.0,75.0,121.0,125.99,1.42729,2.81489,1.97816,8.0,8.0,8.0,0.00138032,0.00119456
+3350,111.744967,0.0,0.0,37.0,74.4431,161.0,216.0,60.0,102.0,115.4,128.0,161.0,96.0,127.0,135.371,144.0,174.0,0.0,2.0,15.1143,30.0,73.0,120.0,125.464,1.63781,2.85314,1.96794,8.0,8.0,8.0,0.00146033,0.0011917
+3351,111.778333,0.0,0.0,37.0,74.4489,161.0,219.0,61.0,102.0,115.417,128.0,158.0,96.0,127.0,135.507,145.0,176.0,0.0,2.0,15.1572,30.0,73.0,121.0,125.247,1.33278,2.74628,1.8835,8.0,8.0,8.0,0.00137746,0.0011917
+3352,111.8117,0.0,0.0,37.0,74.2696,161.0,232.0,58.0,102.0,115.387,128.0,163.0,94.0,128.0,135.51,144.0,178.0,0.0,2.0,15.1709,30.0,73.0,121.0,125.632,1.57622,2.81706,1.94701,8.0,8.0,8.0,0.00129458,0.0011917
+3353,111.845067,0.0,0.0,37.0,74.0929,160.0,232.0,60.0,102.0,115.364,128.0,167.0,89.0,128.0,135.515,145.0,178.0,0.0,2.0,15.2027,30.0,74.0,121.0,125.572,1.68645,2.85385,1.95669,8.0,8.0,8.0,0.0013003,0.0011917
+3354,111.878433,0.0,0.0,37.0,74.1957,160.0,214.0,57.0,102.0,115.427,128.0,159.0,90.0,128.0,135.513,144.0,178.0,0.0,2.0,15.1175,29.0,75.0,121.0,125.769,1.40032,2.8584,1.91365,8.0,8.0,8.0,0.00149749,0.0011917
+3355,111.9118,0.0,0.0,37.0,74.3731,161.0,213.0,57.0,102.0,115.387,128.0,161.0,91.0,127.0,135.419,144.0,175.0,0.0,2.0,15.1302,30.0,76.0,121.0,124.999,1.58837,2.84233,1.94119,8.0,8.0,8.0,0.0014289,0.0011917
+3356,111.945167,0.0,0.0,37.0,74.5461,161.0,215.0,58.0,102.0,115.438,128.0,162.0,98.0,128.0,135.572,145.0,175.0,0.0,2.0,15.1339,30.0,75.0,122.0,124.919,1.38908,2.77078,1.87668,8.0,8.0,8.0,0.00147176,0.00119456
+3357,111.978533,0.0,0.0,37.0,74.4599,161.0,219.0,52.0,103.0,115.845,128.0,164.0,99.0,127.0,135.188,144.0,172.0,0.0,2.0,14.6141,29.0,76.0,121.0,124.623,1.70196,2.81571,1.93775,8.0,8.0,8.0,0.00138317,0.0011917
+3358,112.0119,0.0,0.0,37.0,74.6009,161.0,212.0,62.0,103.0,115.836,127.0,163.0,94.0,128.0,135.315,144.0,169.0,0.0,2.0,14.5782,29.0,72.0,121.0,124.059,1.65593,2.74505,1.88034,8.0,8.0,8.0,0.00140032,0.0011917
+3359,112.045267,0.0,0.0,37.0,74.5481,161.0,215.0,61.0,103.0,115.817,127.0,171.0,102.0,128.0,135.335,144.0,173.0,0.0,2.0,14.6313,29.0,73.0,121.0,124.706,1.37067,2.65169,1.79323,8.0,8.0,8.0,0.00141747,0.0011917
+3360,112.078633,0.0,0.0,37.0,74.6761,161.0,219.0,57.0,103.0,115.943,128.0,169.0,108.0,128.0,135.26,144.0,171.0,0.0,2.0,14.5055,28.0,73.0,122.0,124.555,1.61575,2.7091,1.80136,8.0,8.0,8.0,0.00130316,0.0011917
+3361,112.112,0.0,0.0,37.0,74.7067,161.0,216.0,60.0,103.0,115.958,128.0,166.0,96.0,128.0,135.311,144.0,174.0,0.0,2.0,14.5413,29.0,72.0,122.0,125.069,1.40907,2.68755,1.81508,8.0,8.0,8.0,0.00130316,0.0011917
+3362,112.145367,0.0,0.0,37.0,74.6412,162.0,232.0,62.0,103.0,115.759,127.0,160.0,98.0,128.0,135.263,144.0,171.0,0.0,2.0,14.6273,28.0,69.0,121.0,124.369,1.60151,2.69697,1.87881,8.0,8.0,8.0,0.00138603,0.0011917
+3363,112.178733,0.0,0.0,37.0,74.6584,162.0,215.0,58.0,103.0,116.044,128.0,170.0,96.0,127.0,135.153,144.0,173.0,0.0,2.0,14.417,28.0,70.0,121.0,125.095,1.61426,2.67407,1.816,8.0,8.0,8.0,0.00133459,0.0011917
+3364,112.2121,0.0,0.0,37.0,74.5987,162.0,214.0,55.0,104.0,116.118,128.0,164.0,96.0,128.0,135.213,144.0,171.0,0.0,2.0,14.347,28.0,73.0,122.0,126.557,1.36515,2.63193,1.73131,8.0,8.0,8.0,0.00146319,0.0011917
+3365,112.245467,0.0,0.0,37.0,74.5943,162.0,214.0,55.0,103.0,115.761,128.0,164.0,89.0,127.0,135.192,144.0,172.0,0.0,2.0,14.6584,29.0,73.0,121.0,124.54,1.77939,2.75009,1.79593,8.0,8.0,8.0,0.0014832,0.0011917
+3366,112.278833,0.0,0.0,37.0,74.6912,162.0,215.0,62.0,103.0,115.705,127.0,163.0,91.0,128.0,135.255,144.0,169.0,0.0,2.0,14.7041,29.0,72.0,121.0,123.294,1.55721,2.6792,1.79909,8.0,8.0,8.0,0.00141461,0.0011917
+3367,112.3122,0.0,0.0,37.0,74.6052,161.0,236.0,59.0,103.0,115.958,128.0,164.0,100.0,128.0,135.229,144.0,172.0,0.0,2.0,14.4762,28.0,71.0,121.0,124.406,2.08696,2.77152,1.83803,8.0,8.0,8.0,0.00140889,0.00119456
+3368,112.345567,0.0,0.0,37.0,74.798,162.0,228.0,59.0,103.0,116.001,127.0,157.0,104.0,128.0,135.183,144.0,173.0,0.0,2.0,14.3811,28.0,71.0,121.0,123.725,2.05438,2.68133,1.83234,8.0,8.0,8.0,0.00145462,0.0011917
+3369,112.378933,0.0,0.0,37.0,74.7479,162.0,230.0,64.0,104.0,116.525,128.0,157.0,107.0,128.0,134.949,143.0,170.0,0.0,2.0,13.8409,27.0,70.0,122.0,125.539,1.56363,2.63993,1.78182,8.0,8.0,8.0,0.00149177,0.0011917
+3370,112.4123,0.0,0.0,37.0,74.7537,162.0,232.0,65.0,105.0,116.867,128.0,164.0,101.0,128.0,134.752,143.0,171.0,0.0,2.0,13.4258,26.0,67.0,122.0,124.976,1.81352,2.57227,1.7441,8.0,8.0,8.0,0.00154607,0.00119742
+3371,112.445667,0.0,0.0,37.0,74.709,162.0,215.0,61.0,105.0,116.907,128.0,158.0,99.0,127.0,134.732,143.0,168.0,0.0,2.0,13.3836,26.0,69.0,122.0,124.175,1.38759,2.39161,1.63676,8.0,8.0,8.0,0.00142318,0.0011917
+3372,112.479033,0.0,0.0,37.0,74.3912,161.0,232.0,64.0,105.0,116.694,128.0,159.0,106.0,128.0,134.827,143.0,166.0,0.0,2.0,13.5736,27.0,66.0,122.0,125.334,1.57254,2.46268,1.65996,8.0,8.0,8.0,0.00142604,0.0011917
+3373,112.5124,0.0,0.0,37.0,74.4116,161.0,210.0,65.0,105.0,116.796,127.0,162.0,110.0,127.0,134.742,143.0,172.0,0.0,2.0,13.4775,26.0,67.0,121.0,123.413,1.68855,2.53138,1.75337,8.0,8.0,8.0,0.00138889,0.0011917
+3374,112.545767,0.0,0.0,37.0,74.4409,161.0,215.0,65.0,105.0,116.719,128.0,161.0,110.0,128.0,134.887,143.0,169.0,0.0,2.0,13.5949,27.0,65.0,122.0,124.969,1.40773,2.48817,1.68754,8.0,8.0,8.0,0.0013946,0.0011917
+3375,112.579133,0.0,0.0,37.0,74.5444,161.0,217.0,64.0,105.0,116.451,127.0,160.0,97.0,128.0,134.778,143.0,170.0,0.0,2.0,13.7485,27.0,66.0,120.0,122.983,1.63613,2.49973,1.72716,8.0,8.0,8.0,0.00137174,0.0011917
+3376,112.6125,0.0,0.0,37.0,74.6715,161.0,216.0,66.0,105.0,116.413,127.0,165.0,96.0,128.0,134.974,143.0,171.0,0.0,2.0,13.8992,27.0,68.0,121.0,123.803,1.3893,2.45356,1.67365,8.0,8.0,8.0,0.00138603,0.0011917
+3377,112.645867,0.0,0.0,37.0,74.6181,161.0,214.0,67.0,104.0,116.424,128.0,163.0,94.0,128.0,134.929,143.0,172.0,0.0,2.0,13.8573,27.0,70.0,121.0,124.571,1.59931,2.52794,1.77165,8.0,8.0,8.0,0.00134031,0.0011917
+3378,112.679233,0.0,0.0,37.0,74.7738,162.0,223.0,67.0,104.0,116.452,127.0,166.0,97.0,128.0,134.936,143.0,172.0,0.0,2.0,13.8385,27.0,69.0,121.0,123.387,1.72419,2.50989,1.7233,8.0,8.0,8.0,0.00134031,0.0011917
+3379,112.7126,0.0,0.0,37.0,74.7418,162.0,216.0,66.0,105.0,116.462,128.0,170.0,100.0,128.0,134.893,143.0,170.0,0.0,2.0,13.8148,27.0,66.0,121.0,124.221,1.44019,2.43309,1.65221,8.0,8.0,8.0,0.00138603,0.0011917
+3380,112.745967,0.0,0.0,37.0,74.8729,162.0,213.0,66.0,104.0,116.269,127.0,167.0,95.0,128.0,134.953,143.0,167.0,0.0,2.0,13.9789,27.0,65.0,121.0,123.152,1.67201,2.50564,1.67198,8.0,8.0,8.0,0.00134888,0.0011917
+3381,112.779333,0.0,0.0,37.0,74.935,162.0,215.0,67.0,104.0,116.118,127.0,165.0,90.0,128.0,135.071,143.0,170.0,0.0,2.0,14.1909,28.0,68.0,121.0,122.945,1.42908,2.4945,1.67457,8.0,8.0,8.0,0.00134316,0.0011917
+3382,112.8127,0.0,0.0,37.0,74.9741,162.0,214.0,63.0,104.0,116.246,127.0,169.0,112.0,128.0,135.032,143.0,172.0,0.0,2.0,14.0298,27.0,68.0,121.0,124.262,1.66503,2.53857,1.68971,8.0,8.0,8.0,0.00134602,0.0011917
+3383,112.846067,0.0,0.0,37.0,75.0364,162.0,216.0,65.0,105.0,116.562,127.0,160.0,102.0,128.0,134.817,143.0,172.0,0.0,2.0,13.6412,26.0,68.0,121.0,123.065,1.7414,2.53935,1.64132,8.0,8.0,8.0,0.00143176,0.0011917
+3384,112.879433,0.0,0.0,37.0,74.9889,162.0,215.0,68.0,105.0,116.768,127.0,157.0,97.0,128.0,134.698,142.0,169.0,0.0,2.0,13.3619,26.0,62.0,121.0,123.472,1.50869,2.36371,1.54226,8.0,8.0,8.0,0.00140604,0.0011917
+3385,112.9128,0.0,0.0,37.0,74.9923,162.0,214.0,69.0,106.0,116.851,127.0,163.0,100.0,128.0,134.47,142.0,170.0,0.0,2.0,13.2102,26.0,60.0,120.0,122.474,1.87269,2.3627,1.60217,8.0,8.0,8.0,0.0013746,0.0011917
+3386,112.946167,0.0,0.0,37.0,75.0494,162.0,217.0,68.0,105.0,116.852,127.0,158.0,111.0,128.0,134.581,142.0,172.0,0.0,2.0,13.2319,26.0,64.0,121.0,122.749,1.5563,2.32986,1.60032,8.0,8.0,8.0,0.00138603,0.0011917
+3387,112.979533,0.0,0.0,37.0,74.7795,161.0,215.0,68.0,106.0,116.862,127.0,160.0,113.0,128.0,134.543,142.0,167.0,0.0,2.0,13.1907,26.0,67.0,120.0,122.412,1.67053,2.3156,1.56811,8.0,8.0,8.0,0.00144604,0.0011917
+3388,113.0129,0.0,0.0,37.0,74.8971,162.0,213.0,67.0,105.0,116.78,127.0,163.0,112.0,128.0,134.581,142.0,171.0,0.0,2.0,13.3012,26.0,65.0,120.0,123.199,1.59998,2.32318,1.53416,8.0,8.0,8.0,0.00133173,0.0011917
+3389,113.046267,0.0,0.0,37.0,74.8576,162.0,213.0,68.0,105.0,116.886,127.0,167.0,109.0,128.0,134.548,142.0,174.0,0.0,2.0,13.2303,26.0,68.0,120.0,123.88,1.47774,2.36325,1.54609,8.0,8.0,8.0,0.0013203,0.0011917
+3390,113.079633,0.0,0.0,37.0,74.8508,162.0,216.0,70.0,106.0,116.909,127.0,157.0,111.0,128.0,134.519,142.0,174.0,0.0,2.0,13.1592,26.0,64.0,120.0,123.349,1.70045,2.34144,1.59697,8.0,8.0,8.0,0.00129744,0.0011917
+3391,113.113,0.0,0.0,37.0,74.8649,162.0,212.0,70.0,106.0,116.935,127.0,162.0,95.0,128.0,134.59,142.0,169.0,0.0,2.0,13.1711,26.0,68.0,121.0,121.777,1.39779,2.32044,1.52701,8.0,8.0,8.0,0.00138889,0.0011917
+3392,113.146367,0.0,0.0,37.0,74.6716,161.0,213.0,69.0,106.0,116.914,127.0,161.0,112.0,128.0,134.506,142.0,166.0,0.0,2.0,13.1594,26.0,63.0,120.0,123.481,1.68231,2.31933,1.5912,8.0,8.0,8.0,0.00134031,0.0011917
+3393,113.179733,0.0,0.0,37.0,74.8986,162.0,214.0,70.0,106.0,116.981,127.0,155.0,110.0,128.0,134.478,142.0,166.0,0.0,2.0,13.1136,25.0,66.0,120.0,122.678,1.54542,2.33578,1.60912,8.0,8.0,8.0,0.00146891,0.0011917
+3394,113.2131,0.0,0.0,37.0,74.8178,162.0,215.0,69.0,106.0,117.009,127.0,159.0,108.0,128.0,134.556,142.0,166.0,0.0,2.0,13.1063,26.0,66.0,121.0,124.392,1.48825,2.31113,1.57934,8.0,8.0,8.0,0.00143747,0.00119456
+3395,113.246467,0.0,0.0,37.0,74.7816,162.0,213.0,66.0,106.0,116.996,127.0,157.0,102.0,128.0,134.5,142.0,169.0,0.0,2.0,13.1171,26.0,64.0,120.0,122.845,1.74753,2.35258,1.58716,8.0,8.0,8.0,0.00147748,0.0011917
+3396,113.279833,0.0,0.0,37.0,74.9378,162.0,212.0,69.0,106.0,117.168,128.0,166.0,108.0,128.0,134.509,142.0,168.0,0.0,2.0,12.9817,25.0,63.0,121.0,124.032,1.50914,2.32266,1.53488,8.0,8.0,8.0,0.00159179,0.0011917
+3397,113.3132,0.0,0.0,37.0,74.6044,161.0,212.0,71.0,106.0,116.952,127.0,162.0,98.0,128.0,134.5,142.0,167.0,0.0,2.0,13.1289,26.0,64.0,120.0,121.63,1.79756,2.37027,1.60206,8.0,8.0,8.0,0.00143176,0.0011917
+3398,113.346567,0.0,0.0,37.0,74.591,161.0,215.0,70.0,107.0,117.433,127.0,160.0,98.0,127.0,134.167,142.0,170.0,0.0,2.0,12.5431,25.0,59.0,120.0,121.86,1.75134,2.42476,1.61449,8.0,8.0,8.0,0.00156607,0.0011917
+3399,113.379933,0.0,0.0,37.0,74.6595,161.0,212.0,69.0,107.0,117.547,127.0,155.0,105.0,128.0,134.257,142.0,165.0,0.0,1.0,12.4971,24.0,61.0,121.0,123.519,1.54953,2.2485,1.4868,8.0,8.0,8.0,0.00151177,0.0011917
+3400,113.4133,0.0,0.0,37.0,74.8063,161.0,214.0,70.0,107.0,117.566,128.0,154.0,112.0,128.0,134.171,141.0,166.0,0.0,1.0,12.4273,24.0,61.0,120.0,123.444,1.72064,2.28925,1.51578,8.0,8.0,8.0,0.00151749,0.0011917
+3401,113.446667,0.0,0.0,37.0,74.7484,161.0,214.0,69.0,106.0,117.467,128.0,160.0,97.0,128.0,134.226,142.0,169.0,0.0,1.0,12.5796,25.0,64.0,120.0,123.245,1.45398,2.23724,1.51117,8.0,8.0,8.0,0.00163752,0.0011917
+3402,113.480033,0.0,0.0,37.0,75.0873,162.0,212.0,69.0,107.0,117.681,128.0,163.0,98.0,128.0,134.157,142.0,168.0,0.0,1.0,12.3391,24.0,60.0,121.0,124.218,1.66823,2.26361,1.51256,8.0,8.0,8.0,0.00146033,0.0011917
+3403,113.5134,0.0,0.0,37.0,75.0584,162.0,223.0,70.0,107.0,117.451,127.0,163.0,98.0,128.0,134.24,142.0,167.0,0.0,2.0,12.5874,25.0,62.0,121.0,122.951,1.64066,2.2635,1.49652,8.0,8.0,8.0,0.00150034,0.0011917
+3404,113.546767,0.0,0.0,37.0,75.09,162.0,234.0,71.0,107.0,117.494,128.0,172.0,104.0,128.0,134.306,142.0,169.0,0.0,1.0,12.5832,25.0,64.0,121.0,124.064,1.40117,2.19938,1.45313,8.0,8.0,8.0,0.0016118,0.00119456
+3405,113.580133,0.0,0.0,37.0,75.0795,162.0,235.0,70.0,107.0,117.503,127.0,167.0,97.0,128.0,134.191,142.0,171.0,0.0,2.0,12.5593,25.0,66.0,120.0,123.054,1.78727,2.31369,1.53258,8.0,8.0,8.0,0.00160608,0.0011917
+3406,113.6135,0.0,0.0,37.0,75.2603,162.0,212.0,71.0,107.0,117.492,127.0,160.0,102.0,128.0,134.288,142.0,166.0,0.0,1.0,12.5627,25.0,63.0,121.0,123.402,1.59622,2.26571,1.49897,8.0,8.0,8.0,0.00143747,0.00119742
+3407,113.646867,0.0,0.0,37.0,74.9241,162.0,215.0,69.0,107.0,117.498,128.0,159.0,105.0,128.0,134.25,142.0,165.0,0.0,1.0,12.547,25.0,61.0,121.0,124.168,1.84693,2.27111,1.54446,8.0,8.0,8.0,0.00149749,0.00119456
+3408,113.680233,0.0,0.0,37.0,75.2246,162.0,233.0,67.0,107.0,117.659,128.0,154.0,104.0,128.0,134.272,142.0,166.0,0.0,1.0,12.4336,24.0,62.0,122.0,124.785,1.66142,2.25179,1.49226,8.0,8.0,8.0,0.00146319,0.0011917
+3409,113.7136,0.0,0.0,37.0,75.1817,162.0,216.0,69.0,107.0,117.791,128.0,158.0,106.0,128.0,134.254,142.0,170.0,0.0,1.0,12.3305,24.0,65.0,122.0,124.949,1.39112,2.24808,1.49151,8.0,8.0,8.0,0.00154035,0.0011917
+3410,113.746967,0.0,0.0,37.0,75.0783,162.0,218.0,72.0,107.0,117.929,128.0,155.0,105.0,128.0,134.11,141.0,166.0,0.0,1.0,12.0858,24.0,63.0,122.0,124.351,1.65455,2.25702,1.54487,8.0,8.0,8.0,0.00161465,0.0011917
+3411,113.780333,0.0,0.0,37.0,74.9817,162.0,216.0,72.0,107.0,117.915,127.0,157.0,105.0,128.0,134.133,141.0,167.0,0.0,1.0,12.0945,24.0,58.0,122.0,123.427,1.36627,2.11748,1.4051,8.0,8.0,8.0,0.00142318,0.0011917
+3412,113.8137,0.0,0.0,37.0,75.1923,162.0,216.0,70.0,108.0,117.972,128.0,159.0,109.0,128.0,134.111,141.0,166.0,0.0,1.0,12.0245,24.0,60.0,122.0,124.82,1.56912,2.16688,1.40378,8.0,8.0,8.0,0.00154893,0.0011917
+3413,113.847067,0.0,0.0,37.0,75.1011,162.0,213.0,72.0,107.0,117.852,127.0,163.0,110.0,128.0,134.203,142.0,166.0,0.0,1.0,12.2093,24.0,59.0,122.0,123.698,1.81682,2.23102,1.46842,8.0,8.0,8.0,0.00153749,0.0011917
+3414,113.880433,0.0,0.0,37.0,75.0495,162.0,230.0,69.0,107.0,117.814,128.0,166.0,108.0,128.0,134.192,141.0,163.0,0.0,1.0,12.2068,24.0,60.0,122.0,124.404,1.49333,2.17586,1.44865,8.0,8.0,8.0,0.00140318,0.0011917
+3415,113.9138,0.0,0.0,37.0,75.0758,162.0,209.0,38.0,107.0,117.865,128.0,167.0,105.0,128.0,134.101,141.0,167.0,0.0,1.0,12.1344,24.0,90.0,122.0,124.326,1.58751,2.16325,1.4593,8.0,8.0,8.0,0.00086877,0.0011917
+3416,113.947167,0.0,0.0,37.0,75.1801,162.0,234.0,72.0,108.0,117.986,128.0,162.0,104.0,128.0,134.072,141.0,165.0,0.0,1.0,11.9874,23.0,57.0,122.0,124.183,1.34661,2.12531,1.36183,8.0,8.0,8.0,0.00140604,0.0011917
+3417,113.980533,0.0,0.0,37.0,75.1612,162.0,220.0,37.0,107.0,117.652,127.0,169.0,108.0,128.0,134.054,141.0,166.0,0.0,1.0,12.2957,24.0,91.0,120.0,122.961,1.5808,2.21461,1.43059,8.0,8.0,8.0,0.00079161,0.0011917
+3418,114.0139,0.0,0.0,37.0,75.1879,162.0,216.0,37.0,108.0,117.977,127.0,167.0,108.0,128.0,134.01,141.0,163.0,0.0,1.0,11.9858,23.0,91.0,122.0,123.526,1.67911,2.2181,1.47287,8.0,8.0,8.0,0.000780178,0.0011917
+3419,114.047267,0.0,0.0,37.0,75.072,162.0,213.0,55.0,107.0,117.971,128.0,164.0,110.0,128.0,134.022,141.0,164.0,0.0,1.0,12.0042,24.0,74.0,122.0,124.54,1.4657,2.06995,1.36435,8.0,8.0,8.0,0.00089449,0.0011917
+3420,114.080633,0.0,0.0,37.0,74.8933,162.0,214.0,56.0,107.0,117.864,127.0,161.0,109.0,128.0,134.062,141.0,165.0,0.0,1.0,12.091,24.0,72.0,121.0,123.554,1.78984,2.12493,1.41363,8.0,8.0,8.0,0.000911637,0.0011917
+3421,114.114,0.0,0.0,37.0,75.0027,162.0,219.0,72.0,107.0,117.773,127.0,160.0,104.0,128.0,134.131,141.0,166.0,0.0,1.0,12.226,24.0,61.0,121.0,123.849,1.5316,2.10992,1.41264,8.0,8.0,8.0,0.00138603,0.0011917
+3422,114.147367,0.0,0.0,37.0,74.947,162.0,214.0,70.0,108.0,117.949,128.0,158.0,105.0,128.0,133.998,141.0,166.0,0.0,1.0,11.9982,23.0,61.0,121.0,124.984,1.65325,2.14146,1.44288,8.0,8.0,8.0,0.00131173,0.0011917
+3423,114.180733,0.0,0.0,37.0,74.8662,162.0,222.0,74.0,107.0,117.911,128.0,159.0,106.0,128.0,133.987,141.0,166.0,0.0,1.0,12.0379,24.0,61.0,121.0,123.864,1.46901,2.09847,1.3761,8.0,8.0,8.0,0.0014289,0.0011917
+3424,114.2141,0.0,0.0,37.0,74.7552,162.0,211.0,71.0,107.0,117.936,128.0,156.0,103.0,128.0,134.019,141.0,167.0,0.0,1.0,12.0189,24.0,59.0,122.0,125.042,1.32351,2.06411,1.34017,8.0,8.0,8.0,0.00138317,0.0011917
+3425,114.247467,0.0,0.0,37.0,74.7354,161.0,214.0,74.0,107.0,117.997,128.0,158.0,107.0,128.0,133.988,141.0,166.0,0.0,1.0,11.9655,24.0,60.0,121.0,123.857,1.54953,2.1429,1.47811,8.0,8.0,8.0,0.0014832,0.0011917
+3426,114.280833,0.0,0.0,37.0,74.7666,161.0,214.0,72.0,108.0,118.11,128.0,155.0,111.0,128.0,134.081,141.0,163.0,0.0,1.0,11.9009,23.0,58.0,122.0,124.219,1.3471,2.13283,1.4107,8.0,8.0,8.0,0.00147176,0.0011917
+3427,114.3142,0.0,0.0,37.0,74.5191,161.0,215.0,73.0,107.0,117.895,128.0,166.0,113.0,128.0,134.082,141.0,163.0,0.0,1.0,12.0898,24.0,59.0,122.0,124.491,1.6691,2.22869,1.41025,8.0,8.0,8.0,0.00142032,0.0011917
+3428,114.347567,0.0,0.0,37.0,74.5958,161.0,224.0,70.0,108.0,118.07,128.0,155.0,105.0,128.0,134.069,141.0,168.0,0.0,1.0,11.9345,23.0,59.0,122.0,124.444,1.76003,2.15485,1.39408,8.0,8.0,8.0,0.00150034,0.0011917
+3429,114.380933,0.0,0.0,37.0,74.5426,161.0,215.0,73.0,108.0,118.06,128.0,155.0,105.0,128.0,134.034,141.0,168.0,0.0,1.0,11.9099,23.0,57.0,122.0,124.242,1.5157,2.11558,1.40141,8.0,8.0,8.0,0.00163752,0.0011917
+3430,114.4143,0.0,0.0,37.0,74.4494,161.0,216.0,72.0,108.0,118.091,128.0,154.0,107.0,128.0,133.928,141.0,164.0,0.0,1.0,11.852,23.0,59.0,121.0,123.847,1.83436,2.12771,1.44992,8.0,8.0,8.0,0.00162609,0.0011917
+3431,114.447667,0.0,0.0,37.0,74.3291,161.0,234.0,72.0,107.0,118.051,128.0,153.0,112.0,127.0,133.912,141.0,166.0,0.0,1.0,11.9118,24.0,61.0,121.0,123.436,1.50012,2.07662,1.37508,8.0,8.0,8.0,0.00146319,0.0011917
+3432,114.481033,0.0,0.0,37.0,74.3688,161.0,215.0,72.0,108.0,118.446,128.0,156.0,107.0,128.0,133.861,141.0,164.0,0.0,1.0,11.5375,23.0,57.0,122.0,126.388,1.64076,2.13794,1.38844,8.0,8.0,8.0,0.0014489,0.0011917
+3433,114.5144,0.0,0.0,37.0,74.3327,161.0,213.0,72.0,108.0,118.233,128.0,159.0,95.0,127.0,133.859,141.0,164.0,0.0,1.0,11.7589,23.0,59.0,121.0,123.9,1.80477,2.14628,1.42445,8.0,8.0,8.0,0.00140604,0.0011917
+3434,114.547767,0.0,0.0,37.0,74.318,161.0,215.0,73.0,108.0,118.322,128.0,154.0,109.0,128.0,133.761,141.0,166.0,0.0,1.0,11.5886,23.0,58.0,121.0,124.11,1.5917,2.11704,1.42003,8.0,8.0,8.0,0.00152606,0.0011917
+3435,114.581133,0.0,0.0,37.0,74.2608,160.0,212.0,74.0,108.0,118.389,128.0,156.0,100.0,127.0,133.735,141.0,167.0,0.0,1.0,11.5486,23.0,56.0,121.0,123.753,1.86515,2.11337,1.39819,8.0,8.0,8.0,0.00140604,0.0011917
+3436,114.6145,0.0,0.0,37.0,74.2725,160.0,213.0,72.0,108.0,118.332,128.0,164.0,99.0,128.0,133.816,141.0,167.0,0.0,1.0,11.6036,23.0,60.0,121.0,124.266,1.5011,2.08511,1.37461,8.0,8.0,8.0,0.00146605,0.0011917
+3437,114.647867,0.0,0.0,37.0,74.3702,161.0,210.0,73.0,108.0,118.277,128.0,162.0,99.0,128.0,133.84,141.0,168.0,0.0,1.0,11.6904,23.0,58.0,121.0,124.522,1.69705,2.14564,1.41861,8.0,8.0,8.0,0.00134602,0.0011917
+3438,114.681233,0.0,0.0,37.0,74.6766,161.0,213.0,70.0,108.0,118.408,128.0,157.0,102.0,128.0,133.805,141.0,163.0,0.0,1.0,11.5703,23.0,59.0,122.0,125.608,1.62795,2.15525,1.437,8.0,8.0,8.0,0.00151749,0.0011917
+3439,114.7146,0.0,0.0,37.0,74.5802,161.0,212.0,67.0,108.0,118.353,128.0,157.0,101.0,128.0,133.924,141.0,167.0,0.0,1.0,11.66,23.0,62.0,122.0,126.001,1.33,2.03887,1.36164,8.0,8.0,8.0,0.00146891,0.0011917
+3440,114.747967,0.0,0.0,37.0,74.6365,161.0,217.0,73.0,108.0,118.176,128.0,160.0,101.0,128.0,133.874,141.0,164.0,0.0,1.0,11.7367,23.0,60.0,121.0,124.215,1.49915,2.11513,1.40283,8.0,8.0,8.0,0.00153464,0.0011917
+3441,114.781333,0.0,0.0,37.0,74.6528,161.0,215.0,75.0,108.0,118.234,128.0,163.0,100.0,127.0,133.867,141.0,166.0,0.0,1.0,11.7364,23.0,57.0,121.0,124.095,1.3859,2.09516,1.41228,8.0,8.0,8.0,0.00163466,0.0011917
+3442,114.8147,0.0,0.0,37.0,75.05,162.0,210.0,71.0,108.0,118.32,128.0,164.0,104.0,128.0,133.907,141.0,165.0,0.0,1.0,11.6436,23.0,58.0,122.0,125.304,1.69802,2.11822,1.40381,8.0,8.0,8.0,0.00130887,0.0011917
+3443,114.848067,0.0,0.0,37.0,74.7797,162.0,216.0,72.0,108.0,118.253,128.0,158.0,103.0,128.0,133.821,141.0,163.0,0.0,1.0,11.6628,23.0,58.0,121.0,123.532,1.69383,2.09082,1.37995,8.0,8.0,8.0,0.00157179,0.0011917
+3444,114.881433,0.0,0.0,37.0,74.9933,162.0,215.0,74.0,108.0,118.375,128.0,156.0,94.0,128.0,133.861,141.0,167.0,0.0,1.0,11.5737,23.0,57.0,122.0,125.243,1.48021,2.01966,1.34191,8.0,8.0,8.0,0.00154321,0.0011917
+3445,114.9148,0.0,0.0,37.0,75.0056,162.0,213.0,73.0,108.0,118.454,128.0,158.0,99.0,128.0,133.731,141.0,165.0,0.0,1.0,11.4714,22.0,56.0,121.0,124.698,1.8209,2.10884,1.41553,8.0,8.0,8.0,0.00142318,0.0011917
+3446,114.948167,0.0,0.0,37.0,75.1969,162.0,214.0,75.0,109.0,118.51,128.0,155.0,112.0,128.0,133.777,141.0,164.0,0.0,1.0,11.42,22.0,56.0,122.0,125.308,1.51163,2.11864,1.37643,8.0,8.0,8.0,0.00143176,0.0011917
+3447,114.981533,0.0,0.0,37.0,74.89,162.0,212.0,75.0,108.0,118.355,128.0,159.0,114.0,128.0,133.762,141.0,165.0,0.0,1.0,11.5498,23.0,58.0,121.0,124.806,1.61504,2.06864,1.38495,8.0,8.0,8.0,0.00134031,0.0011917
+3448,115.0149,0.0,0.0,37.0,74.9622,162.0,212.0,72.0,108.0,118.409,128.0,154.0,115.0,128.0,133.78,141.0,163.0,0.0,1.0,11.4953,23.0,57.0,122.0,124.383,1.50552,2.03818,1.33939,8.0,8.0,8.0,0.00136888,0.0011917
+3449,115.048267,0.0,0.0,37.0,74.9224,162.0,212.0,75.0,108.0,118.494,128.0,155.0,112.0,128.0,133.809,141.0,165.0,0.0,1.0,11.4382,22.0,57.0,122.0,125.518,1.42374,2.05825,1.35544,8.0,8.0,8.0,0.00142318,0.0011917
+3450,115.081633,0.0,0.0,37.0,74.9293,162.0,211.0,75.0,108.0,118.471,128.0,157.0,113.0,128.0,133.683,141.0,167.0,0.0,1.0,11.4063,22.0,56.0,121.0,124.246,1.77261,2.07818,1.41229,8.0,8.0,8.0,0.00134031,0.0011917
+3451,115.115,0.0,0.0,37.0,74.8916,161.0,236.0,74.0,109.0,118.743,128.0,159.0,100.0,128.0,133.653,140.0,164.0,0.0,1.0,11.1721,22.0,55.0,122.0,125.38,1.50716,2.03241,1.34152,8.0,8.0,8.0,0.00147748,0.00119456
+3452,115.148367,0.0,0.0,37.0,74.693,161.0,212.0,74.0,109.0,118.651,128.0,152.0,114.0,128.0,133.701,141.0,164.0,0.0,1.0,11.2668,22.0,57.0,122.0,125.521,1.83845,2.02841,1.33523,8.0,8.0,8.0,0.00138317,0.0011917
+3453,115.181733,0.0,0.0,37.0,74.6526,162.0,210.0,76.0,109.0,118.523,128.0,160.0,111.0,128.0,133.781,141.0,164.0,0.0,1.0,11.4194,22.0,58.0,122.0,124.806,1.79071,2.08699,1.39691,8.0,8.0,8.0,0.00141461,0.0011917
+3454,115.2151,0.0,0.0,37.0,74.6478,162.0,235.0,78.0,109.0,118.577,128.0,156.0,111.0,128.0,133.8,141.0,164.0,0.0,1.0,11.3375,22.0,56.0,122.0,125.554,1.44814,2.03633,1.32614,8.0,8.0,8.0,0.00137174,0.0011917
+3455,115.248467,0.0,0.0,37.0,74.4913,161.0,215.0,73.0,109.0,118.534,128.0,155.0,102.0,128.0,133.718,141.0,166.0,0.0,1.0,11.3395,22.0,57.0,121.0,123.61,1.72939,2.05341,1.35495,8.0,8.0,8.0,0.00135745,0.00119456
+3456,115.281833,0.0,0.0,37.0,74.3287,161.0,210.0,72.0,108.0,118.468,128.0,153.0,104.0,128.0,133.75,141.0,165.0,0.0,1.0,11.3842,22.0,57.0,121.0,123.221,1.42686,1.95589,1.26233,8.0,8.0,8.0,0.00144604,0.00119456
+3457,115.3152,0.0,0.0,37.0,74.2707,162.0,216.0,72.0,108.0,118.311,127.0,154.0,102.0,128.0,133.776,141.0,163.0,0.0,1.0,11.5536,23.0,57.0,120.0,122.395,2.12517,2.14372,1.43324,8.0,8.0,8.0,0.00154607,0.0011917
+3458,115.348567,0.0,0.0,37.0,74.1249,161.0,217.0,75.0,109.0,118.54,128.0,160.0,106.0,128.0,133.806,141.0,164.0,0.0,1.0,11.381,22.0,56.0,122.0,123.599,2.23829,2.1216,1.40861,8.0,8.0,8.0,0.00161751,0.0011917
+3459,115.381933,0.0,0.0,37.0,73.9616,161.0,212.0,73.0,108.0,118.431,128.0,159.0,112.0,128.0,133.814,141.0,164.0,0.0,1.0,11.4862,23.0,60.0,122.0,125.342,1.74103,2.02311,1.2876,8.0,8.0,8.0,0.00172039,0.0011917
+3460,115.4153,0.0,0.0,37.0,73.7873,161.0,213.0,74.0,108.0,118.347,128.0,160.0,109.0,128.0,133.773,141.0,163.0,0.0,1.0,11.5061,23.0,56.0,121.0,123.002,2.09078,2.07203,1.37245,8.0,8.0,8.0,0.00141461,0.0011917
+3461,115.448667,0.0,0.0,36.0,73.6445,161.0,213.0,75.0,108.0,118.446,128.0,153.0,105.0,128.0,133.822,141.0,169.0,0.0,1.0,11.4773,23.0,56.0,121.0,123.301,1.65061,2.00589,1.35678,8.0,8.0,8.0,0.00132316,0.0011917
+3462,115.482033,0.0,0.0,37.0,73.5699,161.0,212.0,73.0,108.0,118.505,128.0,153.0,107.0,128.0,133.825,141.0,167.0,0.0,1.0,11.4055,23.0,57.0,122.0,124.379,2.02775,2.08238,1.39809,8.0,8.0,8.0,0.00148891,0.0011917
+3463,115.5154,0.0,0.0,36.0,73.5567,161.0,212.0,71.0,108.0,118.458,128.0,155.0,106.0,128.0,133.782,141.0,163.0,0.0,1.0,11.425,23.0,57.0,121.0,123.203,1.94576,2.03573,1.30386,8.0,8.0,8.0,0.00148605,0.0011917
+3464,115.548767,0.0,0.0,37.0,73.6748,161.0,213.0,76.0,109.0,118.56,128.0,154.0,106.0,128.0,133.796,141.0,166.0,0.0,1.0,11.3271,22.0,57.0,122.0,123.975,1.63545,1.939,1.24593,8.0,8.0,8.0,0.00154893,0.0011917
+3465,115.582133,0.0,0.0,37.0,73.7802,161.0,212.0,75.0,108.0,118.532,128.0,154.0,108.0,128.0,133.668,140.0,170.0,0.0,1.0,11.3266,22.0,57.0,121.0,123.073,2.05965,2.04089,1.35287,8.0,8.0,8.0,0.00144033,0.0011917
+3466,115.6155,0.0,0.0,36.0,73.8984,161.0,213.0,74.0,109.0,118.507,127.0,165.0,107.0,128.0,133.661,140.0,166.0,0.0,1.0,11.3105,22.0,55.0,120.0,121.61,1.67845,1.98631,1.32425,8.0,8.0,8.0,0.00149463,0.0011917
+3467,115.648867,0.0,0.0,37.0,74.0665,161.0,213.0,74.0,109.0,118.611,128.0,168.0,111.0,128.0,133.618,141.0,165.0,0.0,1.0,11.2648,22.0,57.0,121.0,124.251,2.20462,2.27042,1.59842,8.0,8.0,8.0,0.00154607,0.0011917
+3468,115.682233,0.0,0.0,37.0,74.3265,162.0,213.0,70.0,109.0,118.675,128.0,157.0,112.0,128.0,133.68,140.0,166.0,0.0,1.0,11.1884,22.0,59.0,122.0,123.14,2.10479,2.08155,1.41047,8.0,8.0,8.0,0.0015032,0.0011917
+3469,115.7156,0.0,0.0,37.0,74.3814,162.0,211.0,72.0,109.0,118.609,128.0,157.0,113.0,128.0,133.649,140.0,168.0,0.0,1.0,11.2363,22.0,57.0,121.0,123.602,1.62685,1.96376,1.25535,8.0,8.0,8.0,0.00154893,0.0011917
+3470,115.748967,0.0,0.0,37.0,74.6345,162.0,211.0,71.0,108.0,118.456,128.0,160.0,113.0,128.0,133.674,140.0,164.0,0.0,1.0,11.362,22.0,58.0,120.0,122.67,2.10409,1.99502,1.30066,8.0,8.0,8.0,0.00145748,0.00119742
+3471,115.782333,0.0,0.0,37.0,74.6432,161.0,213.0,74.0,108.0,118.422,127.0,153.0,111.0,128.0,133.704,141.0,163.0,0.0,1.0,11.4198,22.0,56.0,120.0,121.773,1.79876,2.00599,1.33233,8.0,8.0,8.0,0.00151463,0.0011917
+3472,115.8157,0.0,0.0,37.0,74.8117,162.0,215.0,75.0,108.0,118.305,127.0,161.0,111.0,128.0,133.819,141.0,164.0,0.0,1.0,11.5407,23.0,55.0,121.0,122.733,2.10892,2.01972,1.39954,8.0,8.0,8.0,0.00145176,0.0011917
+3473,115.849067,0.0,0.0,37.0,74.6499,161.0,218.0,75.0,108.0,118.357,128.0,148.0,112.0,128.0,133.757,141.0,167.0,0.0,1.0,11.475,23.0,61.0,121.0,123.394,1.86829,1.98154,1.3094,8.0,8.0,8.0,0.00157179,0.00119456
+3474,115.882433,0.0,0.0,37.0,74.8296,161.0,212.0,74.0,109.0,118.411,128.0,152.0,108.0,128.0,133.829,141.0,163.0,0.0,1.0,11.4502,22.0,55.0,122.0,123.171,1.72312,1.94971,1.28416,8.0,8.0,8.0,0.00149463,0.0011917
+3475,115.9158,0.0,0.0,37.0,74.8304,161.0,218.0,74.0,108.0,118.357,127.0,153.0,105.0,128.0,133.727,141.0,162.0,0.0,1.0,11.4681,22.0,57.0,120.0,122.249,2.1251,1.99632,1.34083,8.0,8.0,8.0,0.00154607,0.00119456
+3476,115.949167,0.0,0.0,37.0,74.6999,161.0,218.0,73.0,109.0,118.666,128.0,154.0,107.0,128.0,133.625,140.0,163.0,0.0,1.0,11.1435,22.0,56.0,121.0,123.854,1.71061,1.97431,1.24859,8.0,8.0,8.0,0.00156321,0.0011917
+3477,115.982533,0.0,0.0,37.0,74.5758,162.0,215.0,77.0,109.0,118.773,128.0,153.0,105.0,128.0,133.637,140.0,165.0,0.0,1.0,11.0566,22.0,54.0,122.0,124.66,1.89504,1.96837,1.24354,8.0,8.0,8.0,0.00144319,0.0011917
+3478,116.0159,0.0,0.0,37.0,74.3377,162.0,214.0,75.0,109.0,118.804,127.0,160.0,107.0,128.0,133.546,140.0,163.0,0.0,1.0,10.9742,21.0,55.0,121.0,122.381,2.11429,1.94615,1.27657,8.0,8.0,8.0,0.00140032,0.0011917
+3479,116.049267,0.0,0.0,37.0,74.1163,161.0,217.0,75.0,109.0,118.749,128.0,160.0,107.0,128.0,133.565,140.0,162.0,0.0,1.0,11.0442,22.0,55.0,121.0,122.919,1.55121,1.87856,1.24702,8.0,8.0,8.0,0.00147462,0.0011917
+3480,116.082633,0.0,0.0,37.0,74.0969,161.0,215.0,78.0,109.0,118.752,128.0,155.0,107.0,128.0,133.693,140.0,163.0,0.0,1.0,11.079,22.0,54.0,122.0,123.407,1.82213,1.92023,1.28687,8.0,8.0,8.0,0.00154607,0.00119742
+3481,116.116,0.0,0.0,37.0,74.1679,161.0,215.0,39.0,109.0,118.861,128.0,166.0,110.0,128.0,133.69,140.0,163.0,0.0,1.0,11.0063,21.0,89.0,122.0,123.005,1.47552,1.89321,1.17459,8.0,8.0,8.0,0.000794467,0.0011917
+3482,116.149367,0.0,0.0,37.0,74.2551,162.0,216.0,40.0,109.0,118.797,128.0,158.0,108.0,128.0,133.625,140.0,163.0,0.0,1.0,11.0321,21.0,89.0,122.0,124.217,1.90849,1.95582,1.24826,8.0,8.0,8.0,0.000811614,0.0011917
+3483,116.182733,0.0,0.0,37.0,74.7035,162.0,211.0,41.0,109.0,118.62,128.0,159.0,106.0,128.0,133.634,140.0,163.0,0.0,1.0,11.2233,22.0,87.0,121.0,122.859,2.00721,1.99145,1.3111,8.0,8.0,8.0,0.000848765,0.0011917
+3484,116.2161,0.0,0.0,37.0,74.7812,162.0,214.0,76.0,109.0,118.888,128.0,159.0,106.0,128.0,133.643,140.0,161.0,0.0,1.0,10.9509,21.0,56.0,122.0,124.902,1.73194,1.99975,1.27655,8.0,8.0,8.0,0.00146319,0.0011917
+3485,116.249467,0.0,0.0,37.0,74.6635,162.0,212.0,78.0,110.0,118.906,128.0,152.0,105.0,128.0,133.472,140.0,164.0,0.0,1.0,10.8602,21.0,55.0,121.0,122.744,2.09878,1.93845,1.26364,8.0,8.0,8.0,0.00141747,0.0011917
+3486,116.282833,0.0,0.0,37.0,74.6717,162.0,214.0,77.0,109.0,118.799,127.0,152.0,104.0,128.0,133.519,140.0,161.0,0.0,1.0,10.9669,21.0,54.0,121.0,122.51,1.6654,1.86385,1.17225,8.0,8.0,8.0,0.00148605,0.0011917
+3487,116.3162,0.0,0.0,37.0,74.4941,161.0,214.0,77.0,110.0,118.992,128.0,157.0,104.0,128.0,133.525,140.0,163.0,0.0,1.0,10.8136,21.0,58.0,122.0,124.214,2.20711,1.95802,1.30375,8.0,8.0,8.0,0.00151749,0.0011917
+3488,116.349567,0.0,0.0,37.0,74.2585,161.0,217.0,77.0,110.0,118.945,128.0,154.0,107.0,128.0,133.452,140.0,166.0,0.0,1.0,10.8051,21.0,57.0,121.0,122.984,2.16428,1.98753,1.28405,8.0,8.0,8.0,0.00145176,0.0011917
+3489,116.382933,0.0,0.0,37.0,74.1696,161.0,213.0,76.0,110.0,119.061,128.0,154.0,108.0,128.0,133.512,140.0,163.0,0.0,1.0,10.7624,21.0,54.0,122.0,124.797,1.54829,1.84066,1.15048,8.0,8.0,8.0,0.00138603,0.0011917
+3490,116.4163,0.0,0.0,37.0,74.0659,160.0,214.0,76.0,110.0,119.094,128.0,158.0,113.0,128.0,133.441,140.0,163.0,0.0,1.0,10.6756,21.0,54.0,122.0,123.983,1.80765,1.89273,1.23845,8.0,8.0,8.0,0.00140889,0.0011917
+3491,116.449667,0.0,0.0,36.0,74.032,160.0,235.0,76.0,110.0,119.154,128.0,160.0,113.0,128.0,133.506,140.0,168.0,0.0,1.0,10.7081,21.0,54.0,122.0,124.499,1.5159,1.90955,1.24857,8.0,8.0,8.0,0.0014832,0.0011917
+3492,116.483033,0.0,0.0,37.0,73.8586,160.0,231.0,77.0,110.0,119.134,128.0,155.0,113.0,128.0,133.417,140.0,165.0,0.0,1.0,10.6251,21.0,56.0,122.0,123.302,1.98005,1.97037,1.29342,8.0,8.0,8.0,0.00139175,0.0011917
+3493,116.5164,0.0,0.0,36.0,73.7961,160.0,212.0,77.0,110.0,119.198,128.0,155.0,114.0,128.0,133.451,140.0,163.0,0.0,1.0,10.5999,21.0,54.0,122.0,124.016,1.94914,1.85965,1.21762,8.0,8.0,8.0,0.00130887,0.0011917
+3494,116.549767,0.0,0.0,36.0,73.7302,160.0,213.0,75.0,110.0,119.256,128.0,160.0,110.0,128.0,133.47,140.0,160.0,0.0,1.0,10.562,21.0,53.0,122.0,124.356,1.51422,1.82701,1.17159,8.0,8.0,8.0,0.00136603,0.0011917
+3495,116.583133,0.0,0.0,36.0,73.5983,159.0,232.0,78.0,110.0,119.237,128.0,151.0,103.0,128.0,133.353,140.0,163.0,0.0,1.0,10.556,21.0,53.0,122.0,124.4,1.81047,1.88377,1.2711,8.0,8.0,8.0,0.00137746,0.0011917
+3496,116.6165,0.0,0.0,36.0,73.5831,159.0,216.0,78.0,110.0,119.28,128.0,151.0,105.0,128.0,133.364,140.0,164.0,0.0,1.0,10.4776,21.0,52.0,122.0,124.116,1.45008,1.86124,1.22478,8.0,8.0,8.0,0.0013546,0.0011917
+3497,116.649867,0.0,0.0,37.0,73.7328,159.0,212.0,78.0,110.0,119.46,128.0,158.0,108.0,128.0,133.274,140.0,163.0,0.0,1.0,10.3345,20.0,57.0,122.0,125.138,1.65542,1.86063,1.21441,8.0,8.0,8.0,0.00130601,0.0011917
+3498,116.683233,0.0,0.0,37.0,73.9505,160.0,210.0,77.0,110.0,119.187,128.0,153.0,108.0,128.0,133.375,140.0,161.0,0.0,1.0,10.5996,21.0,52.0,122.0,124.242,1.66722,1.89731,1.22199,8.0,8.0,8.0,0.00131173,0.0011917
+3499,116.7166,0.0,0.0,37.0,73.8721,160.0,220.0,76.0,110.0,119.315,128.0,164.0,106.0,128.0,133.364,140.0,161.0,0.0,1.0,10.5132,21.0,53.0,122.0,125.063,1.55016,1.90793,1.22731,8.0,8.0,8.0,0.00154607,0.0011917
+3500,116.749967,0.0,0.0,37.0,74.0572,160.0,224.0,75.0,110.0,119.369,128.0,161.0,115.0,128.0,133.298,140.0,160.0,0.0,1.0,10.392,20.0,54.0,122.0,124.304,1.87001,1.89983,1.27849,8.0,8.0,8.0,0.0014489,0.0011917
+3501,116.783333,0.0,0.0,37.0,74.0964,160.0,211.0,76.0,111.0,119.468,128.0,155.0,106.0,128.0,133.299,140.0,162.0,0.0,1.0,10.3142,20.0,53.0,122.0,123.947,1.46329,1.8285,1.15806,8.0,8.0,8.0,0.00138889,0.0011917
+3502,116.8167,0.0,0.0,37.0,74.1466,161.0,213.0,73.0,110.0,119.305,128.0,155.0,109.0,128.0,133.334,140.0,163.0,0.0,1.0,10.4416,20.0,56.0,122.0,124.874,2.01632,1.84986,1.2108,8.0,8.0,8.0,0.00151749,0.0011917
+3503,116.850067,0.0,0.0,37.0,74.3495,161.0,227.0,77.0,110.0,119.38,128.0,157.0,111.0,128.0,133.332,140.0,161.0,0.0,1.0,10.4295,20.0,53.0,122.0,124.877,2.40023,1.90091,1.27754,8.0,8.0,8.0,0.00152892,0.0011917
+3504,116.883433,0.0,0.0,37.0,74.3419,161.0,210.0,76.0,110.0,119.356,128.0,156.0,104.0,128.0,133.33,140.0,161.0,0.0,1.0,10.4158,20.0,53.0,122.0,125.245,1.81376,1.82243,1.20861,8.0,8.0,8.0,0.00171182,0.0011917
+3505,116.9168,0.0,0.0,37.0,74.3351,161.0,211.0,78.0,110.0,119.325,128.0,157.0,108.0,128.0,133.219,139.0,161.0,0.0,1.0,10.3918,20.0,52.0,121.0,123.413,2.11749,1.84343,1.24934,8.0,8.0,8.0,0.00146605,0.0011917
+3506,116.950167,0.0,0.0,37.0,74.3427,161.0,210.0,78.0,110.0,119.231,128.0,163.0,115.0,128.0,133.253,139.0,162.0,0.0,1.0,10.491,20.0,55.0,121.0,124.2,1.54915,1.81568,1.16459,8.0,8.0,8.0,0.0014489,0.0011917
+3507,116.983533,0.0,0.0,37.0,74.3432,161.0,213.0,77.0,110.0,119.316,128.0,156.0,112.0,128.0,133.189,139.0,163.0,0.0,1.0,10.3932,20.0,52.0,121.0,125.07,1.79087,1.90384,1.23961,8.0,8.0,8.0,0.00146319,0.0011917
+3508,117.0169,0.0,0.0,37.0,74.4251,161.0,213.0,79.0,110.0,119.183,128.0,162.0,112.0,128.0,133.248,140.0,162.0,0.0,1.0,10.5036,21.0,54.0,120.0,122.969,1.84197,1.88747,1.24962,8.0,8.0,8.0,0.00148891,0.0011917
+3509,117.050267,0.0,0.0,37.0,74.3912,161.0,217.0,79.0,110.0,119.165,128.0,161.0,115.0,128.0,133.263,140.0,163.0,0.0,1.0,10.5513,21.0,55.0,121.0,124.35,1.4146,1.80327,1.15186,8.0,8.0,8.0,0.00142032,0.0011917
+3510,117.083633,0.0,0.0,37.0,74.555,161.0,216.0,77.0,110.0,119.199,128.0,156.0,116.0,128.0,133.293,140.0,160.0,0.0,1.0,10.5218,21.0,52.0,121.0,123.897,1.64917,1.82764,1.18463,8.0,8.0,8.0,0.00144604,0.0011917
+3511,117.117,0.0,0.0,37.0,74.4723,161.0,213.0,78.0,110.0,119.183,128.0,165.0,110.0,128.0,133.301,140.0,161.0,0.0,1.0,10.551,21.0,52.0,121.0,124.057,1.44603,1.79952,1.17626,8.0,8.0,8.0,0.00157179,0.0011917
+3512,117.150367,0.0,0.0,37.0,74.3662,161.0,233.0,78.0,110.0,119.123,128.0,164.0,111.0,128.0,133.375,140.0,163.0,0.0,1.0,10.6063,21.0,55.0,122.0,125.01,1.67662,1.89776,1.24256,8.0,8.0,8.0,0.00158036,0.0011917
+3513,117.183733,0.0,0.0,37.0,74.6142,161.0,212.0,76.0,110.0,119.192,128.0,165.0,112.0,128.0,133.281,140.0,161.0,0.0,1.0,10.5209,20.0,53.0,121.0,123.205,1.87954,1.85585,1.21978,8.0,8.0,8.0,0.00156321,0.0011917
+3514,117.2171,0.0,0.0,37.0,74.6865,161.0,214.0,76.0,110.0,119.287,128.0,167.0,115.0,128.0,133.266,139.0,163.0,0.0,1.0,10.4503,20.0,53.0,121.0,124.11,1.47446,1.79393,1.17244,8.0,8.0,8.0,0.00156036,0.0011917
+3515,117.250467,0.0,0.0,37.0,74.4213,161.0,213.0,77.0,110.0,119.259,128.0,169.0,113.0,128.0,133.228,140.0,162.0,0.0,1.0,10.4701,20.0,52.0,120.0,123.119,1.77383,1.88332,1.26425,8.0,8.0,8.0,0.00150892,0.0011917
+3516,117.283833,0.0,0.0,37.0,74.3493,161.0,211.0,79.0,110.0,119.334,128.0,169.0,114.0,128.0,133.244,140.0,162.0,0.0,1.0,10.4193,21.0,55.0,121.0,124.737,1.45152,1.89065,1.20295,8.0,8.0,8.0,0.00165181,0.0011917
+3517,117.3172,0.0,0.0,37.0,74.1725,160.0,213.0,75.0,111.0,119.39,128.0,168.0,114.0,128.0,133.177,139.0,162.0,0.0,1.0,10.325,20.0,54.0,121.0,124.573,1.76971,1.90441,1.21337,8.0,8.0,8.0,0.00148034,0.0011917
+3518,117.350567,0.0,0.0,37.0,74.3522,161.0,214.0,75.0,110.0,119.029,128.0,169.0,116.0,128.0,133.328,140.0,162.0,0.0,1.0,10.661,21.0,53.0,120.0,122.531,1.5537,1.87253,1.20326,8.0,8.0,8.0,0.00153749,0.0011917
+3519,117.383933,0.0,0.0,37.0,74.4422,161.0,213.0,79.0,110.0,119.069,128.0,171.0,113.0,128.0,133.314,140.0,164.0,0.0,1.0,10.6593,21.0,52.0,120.0,123.525,1.45857,1.84747,1.18911,8.0,8.0,8.0,0.00146319,0.0011917
+3520,117.4173,0.0,0.0,37.0,74.6899,161.0,213.0,78.0,110.0,119.159,128.0,168.0,115.0,128.0,133.316,140.0,163.0,0.0,1.0,10.5672,20.0,53.0,120.0,123.569,1.75715,1.92694,1.24174,8.0,8.0,8.0,0.00142604,0.0011917
+3521,117.450667,0.0,0.0,37.0,74.6734,161.0,231.0,78.0,110.0,119.271,128.0,164.0,116.0,128.0,133.331,140.0,163.0,0.0,1.0,10.4682,20.0,51.0,122.0,123.258,1.43789,1.81015,1.13246,8.0,8.0,8.0,0.00170039,0.0011917
+3522,117.484033,0.0,0.0,37.0,74.472,161.0,231.0,80.0,110.0,119.049,128.0,165.0,115.0,128.0,133.274,140.0,164.0,0.0,1.0,10.6132,21.0,52.0,120.0,123.032,1.79793,1.82397,1.20326,8.0,8.0,8.0,0.00164037,0.0011917
+3523,117.5174,0.0,0.0,37.0,74.4887,161.0,214.0,80.0,110.0,119.386,128.0,162.0,115.0,128.0,133.282,140.0,162.0,0.0,1.0,10.3445,20.0,52.0,122.0,123.295,1.73681,1.88979,1.19534,8.0,8.0,8.0,0.00159179,0.0011917
+3524,117.550767,0.0,0.0,37.0,74.5542,161.0,215.0,79.0,110.0,119.287,128.0,161.0,117.0,128.0,133.281,140.0,163.0,0.0,1.0,10.4034,20.0,53.0,121.0,123.974,1.43334,1.81345,1.14378,8.0,8.0,8.0,0.00162037,0.0011917
+3525,117.584133,0.0,0.0,37.0,74.5507,161.0,215.0,79.0,110.0,119.247,128.0,162.0,114.0,128.0,133.265,140.0,164.0,0.0,1.0,10.452,20.0,53.0,121.0,123.51,1.63086,1.80557,1.17371,8.0,8.0,8.0,0.00159179,0.0011917
+3526,117.6175,0.0,0.0,37.0,74.6583,161.0,211.0,79.0,110.0,119.207,128.0,160.0,115.0,128.0,133.246,139.0,163.0,0.0,1.0,10.4671,20.0,53.0,120.0,122.672,1.4108,1.77101,1.11981,8.0,8.0,8.0,0.00151463,0.0011917
+3527,117.650867,0.0,0.0,37.0,74.7819,161.0,214.0,77.0,110.0,119.347,128.0,165.0,115.0,128.0,133.295,139.0,165.0,0.0,1.0,10.3973,20.0,52.0,122.0,124.52,1.7253,1.87992,1.21779,8.0,8.0,8.0,0.00151463,0.0011917
+3528,117.684233,0.0,0.0,37.0,74.5172,161.0,212.0,74.0,110.0,119.332,127.0,161.0,115.0,128.0,133.301,139.0,163.0,0.0,1.0,10.3664,20.0,55.0,122.0,123.445,1.91682,1.83904,1.24707,8.0,8.0,8.0,0.00147462,0.0011917
+3529,117.7176,0.0,0.0,37.0,74.7025,161.0,213.0,77.0,110.0,119.361,128.0,164.0,112.0,128.0,133.353,140.0,163.0,0.0,1.0,10.376,20.0,52.0,122.0,124.614,1.50463,1.75514,1.12998,8.0,8.0,8.0,0.00151463,0.0011917
+3530,117.750967,0.0,0.0,37.0,74.8016,161.0,216.0,77.0,110.0,119.32,128.0,163.0,115.0,128.0,133.281,139.0,160.0,0.0,1.0,10.3853,20.0,52.0,121.0,123.706,1.79095,1.81928,1.183,8.0,8.0,8.0,0.00147462,0.0011917
+3531,117.784333,0.0,0.0,37.0,74.9213,161.0,215.0,76.0,110.0,119.329,128.0,165.0,115.0,128.0,133.273,140.0,161.0,0.0,1.0,10.4326,20.0,52.0,121.0,123.524,1.49846,1.7853,1.15103,8.0,8.0,8.0,0.00145462,0.0011917
+3532,117.8177,0.0,0.0,37.0,74.6551,161.0,213.0,79.0,110.0,119.261,128.0,162.0,114.0,128.0,133.353,140.0,163.0,0.0,1.0,10.4628,20.0,53.0,122.0,124.667,1.90548,1.87662,1.21613,8.0,8.0,8.0,0.00152035,0.0011917
+3533,117.851067,0.0,0.0,37.0,74.9391,162.0,214.0,76.0,110.0,119.328,128.0,165.0,113.0,128.0,133.352,140.0,161.0,0.0,1.0,10.4335,20.0,55.0,122.0,123.095,1.75399,1.8404,1.16758,8.0,8.0,8.0,0.00154035,0.0011917
+3534,117.884433,0.0,0.0,37.0,74.8867,161.0,212.0,76.0,111.0,119.297,128.0,163.0,113.0,128.0,133.334,140.0,162.0,0.0,1.0,10.436,20.0,52.0,122.0,124.512,1.44541,1.7636,1.11436,8.0,8.0,8.0,0.00152606,0.00119456
+3535,117.9178,0.0,0.0,37.0,74.766,161.0,213.0,76.0,110.0,119.327,128.0,165.0,114.0,128.0,133.337,140.0,164.0,0.0,1.0,10.4347,20.0,54.0,122.0,124.59,1.87056,1.83984,1.20855,8.0,8.0,8.0,0.00162894,0.0011917
+3536,117.951167,0.0,0.0,37.0,74.694,161.0,226.0,78.0,110.0,119.325,128.0,162.0,114.0,128.0,133.36,140.0,161.0,0.0,1.0,10.4252,20.0,51.0,122.0,123.244,1.56784,1.78257,1.21655,8.0,8.0,8.0,0.00164895,0.0011917
+3537,117.984533,0.0,0.0,37.0,74.9603,162.0,216.0,77.0,110.0,119.34,128.0,154.0,115.0,128.0,133.266,140.0,160.0,0.0,1.0,10.3835,21.0,53.0,122.0,123.97,1.9967,1.82782,1.21043,8.0,8.0,8.0,0.00153178,0.0011917
+3538,118.0179,0.0,0.0,37.0,74.8811,162.0,215.0,76.0,110.0,119.159,128.0,157.0,113.0,128.0,133.361,140.0,162.0,0.0,1.0,10.5843,21.0,54.0,122.0,123.437,1.93592,1.80956,1.20512,8.0,8.0,8.0,0.00164895,0.0011917
+3539,118.051267,0.0,0.0,37.0,74.8905,162.0,213.0,78.0,110.0,119.266,128.0,157.0,114.0,128.0,133.363,140.0,160.0,0.0,1.0,10.525,21.0,51.0,122.0,124.634,1.54779,1.83038,1.22964,8.0,8.0,8.0,0.00146605,0.0011917
+3540,118.084633,0.0,0.0,37.0,74.847,161.0,211.0,80.0,110.0,119.378,128.0,158.0,113.0,128.0,133.232,139.0,164.0,0.0,1.0,10.3469,20.0,51.0,121.0,124.563,1.79466,1.87266,1.28102,8.0,8.0,8.0,0.0014289,0.00119742
+3541,118.118,0.0,0.0,37.0,74.9014,161.0,214.0,79.0,111.0,119.44,128.0,161.0,115.0,128.0,133.237,140.0,161.0,0.0,1.0,10.2842,20.0,52.0,122.0,123.85,1.46096,1.77381,1.14679,8.0,8.0,8.0,0.00146605,0.0011917
+3542,118.151367,0.0,0.0,37.0,74.8904,161.0,213.0,78.0,110.0,119.237,128.0,163.0,114.0,128.0,133.234,139.0,162.0,0.0,1.0,10.4541,21.0,51.0,121.0,123.885,1.73743,1.8372,1.16611,8.0,8.0,8.0,0.00146891,0.0011917
+3543,118.184733,0.0,0.0,37.0,75.07,162.0,213.0,79.0,110.0,119.253,128.0,164.0,114.0,128.0,133.27,140.0,162.0,0.0,1.0,10.4757,21.0,51.0,121.0,123.123,1.69283,1.84675,1.21118,8.0,8.0,8.0,0.00152606,0.0011917
+3544,118.2181,0.0,0.0,37.0,75.0046,162.0,215.0,74.0,110.0,119.261,128.0,161.0,113.0,128.0,133.32,140.0,161.0,0.0,1.0,10.4788,21.0,54.0,122.0,124.813,1.50257,1.85751,1.19752,8.0,8.0,8.0,0.00164323,0.0011917
+3545,118.251467,0.0,0.0,37.0,75.0052,162.0,215.0,79.0,110.0,119.248,128.0,158.0,113.0,128.0,133.197,140.0,160.0,0.0,1.0,10.4422,21.0,54.0,120.0,123.331,1.741,1.92343,1.21199,8.0,8.0,8.0,0.00139175,0.0011917
+3546,118.284833,0.0,0.0,37.0,75.0527,162.0,214.0,77.0,110.0,119.23,128.0,158.0,117.0,128.0,133.21,140.0,161.0,0.0,1.0,10.4461,21.0,51.0,120.0,123.289,1.51175,1.80465,1.15281,8.0,8.0,8.0,0.00165752,0.0011917
+3547,118.3182,0.0,0.0,37.0,75.0254,162.0,213.0,78.0,110.0,119.377,128.0,159.0,113.0,128.0,133.194,140.0,162.0,0.0,1.0,10.3694,21.0,52.0,122.0,125.126,1.74468,1.89134,1.26089,8.0,8.0,8.0,0.00146319,0.0011917
+3548,118.351567,0.0,0.0,37.0,75.0051,162.0,218.0,76.0,110.0,119.146,128.0,159.0,115.0,128.0,133.284,140.0,161.0,0.0,1.0,10.5628,21.0,53.0,121.0,123.469,1.74589,1.89156,1.27381,8.0,8.0,8.0,0.00151749,0.00119742
+3549,118.384933,0.0,0.0,37.0,75.0632,162.0,215.0,78.0,110.0,119.142,128.0,159.0,114.0,128.0,133.345,140.0,162.0,0.0,1.0,10.5919,21.0,51.0,121.0,124.257,1.49252,1.80919,1.16495,8.0,8.0,8.0,0.00133459,0.00119456
+3550,118.4183,0.0,0.0,37.0,75.2413,163.0,213.0,77.0,110.0,119.165,128.0,155.0,113.0,128.0,133.323,140.0,162.0,0.0,1.0,10.5626,21.0,51.0,122.0,124.169,1.62337,1.85353,1.17379,8.0,8.0,8.0,0.00142604,0.00119456
+3551,118.451667,0.0,0.0,37.0,75.1846,163.0,214.0,79.0,110.0,119.143,128.0,151.0,115.0,128.0,133.201,140.0,160.0,0.0,1.0,10.5188,21.0,52.0,120.0,121.974,1.44414,1.84396,1.19634,8.0,8.0,8.0,0.00143747,0.00119456
+3552,118.485033,0.0,0.0,37.0,75.0672,162.0,214.0,78.0,110.0,119.113,128.0,159.0,112.0,128.0,133.204,140.0,160.0,0.0,1.0,10.5369,21.0,53.0,120.0,123.332,1.7093,1.89915,1.24688,8.0,8.0,8.0,0.00148891,0.00119456
+3553,118.5184,0.0,0.0,37.0,75.1417,163.0,214.0,79.0,110.0,119.387,128.0,160.0,114.0,128.0,133.135,139.0,164.0,0.0,1.0,10.2886,20.0,55.0,121.0,122.868,1.72325,1.83106,1.21644,8.0,8.0,8.0,0.00143176,0.0011917
+3554,118.551767,0.0,0.0,37.0,75.0522,162.0,219.0,81.0,110.0,119.291,128.0,151.0,114.0,128.0,133.26,140.0,160.0,0.0,1.0,10.4123,21.0,51.0,122.0,124.179,1.52403,1.80285,1.14665,8.0,8.0,8.0,0.00137746,0.0011917
+3555,118.585133,0.0,0.0,37.0,75.0191,162.0,217.0,78.0,110.0,119.264,128.0,147.0,110.0,128.0,133.235,140.0,163.0,0.0,1.0,10.4609,21.0,51.0,121.0,123.753,1.89755,1.8825,1.22194,8.0,8.0,8.0,0.00140889,0.0011917
+3556,118.6185,0.0,0.0,37.0,75.0955,163.0,217.0,79.0,110.0,119.288,128.0,152.0,109.0,128.0,133.267,140.0,161.0,0.0,1.0,10.4336,21.0,52.0,121.0,123.841,1.59427,1.79784,1.21107,8.0,8.0,8.0,0.001266,0.0011917
+3557,118.651867,0.0,0.0,37.0,74.9979,162.0,234.0,80.0,110.0,119.412,128.0,156.0,110.0,128.0,133.179,139.0,164.0,0.0,1.0,10.2995,20.0,55.0,122.0,124.464,1.85442,1.83881,1.22534,8.0,8.0,8.0,0.00129744,0.0011917
+3558,118.685233,0.0,0.0,37.0,74.9058,162.0,215.0,78.0,110.0,119.318,128.0,154.0,110.0,128.0,133.151,139.0,164.0,0.0,1.0,10.3481,20.0,52.0,120.0,123.262,1.82496,1.85404,1.19949,8.0,8.0,8.0,0.00141747,0.0011917
+3559,118.7186,0.0,0.0,37.0,74.9693,162.0,214.0,77.0,110.0,119.317,128.0,161.0,115.0,128.0,133.151,139.0,161.0,0.0,1.0,10.3609,20.0,53.0,120.0,123.644,1.53907,1.86736,1.19383,8.0,8.0,8.0,0.0013203,0.0011917
+3560,118.751967,0.0,0.0,37.0,74.9573,162.0,216.0,78.0,110.0,119.263,128.0,152.0,113.0,128.0,133.175,139.0,163.0,0.0,1.0,10.3923,20.0,51.0,120.0,122.714,1.83982,1.88939,1.245,8.0,8.0,8.0,0.00129744,0.0011917
+3561,118.785333,0.0,0.0,37.0,74.9022,162.0,219.0,75.0,110.0,119.22,128.0,152.0,115.0,128.0,133.246,140.0,163.0,0.0,1.0,10.4679,21.0,55.0,121.0,122.447,1.48574,1.76622,1.15191,8.0,8.0,8.0,0.00142604,0.0011917
+3562,118.8187,0.0,0.0,37.0,74.899,162.0,217.0,77.0,110.0,119.226,128.0,151.0,113.0,128.0,133.185,139.0,163.0,0.0,1.0,10.4342,21.0,54.0,120.0,124.09,1.57327,1.85221,1.2019,8.0,8.0,8.0,0.00138603,0.0011917
+3563,118.852067,0.0,0.0,37.0,74.9872,162.0,215.0,81.0,110.0,119.463,128.0,152.0,111.0,128.0,133.177,139.0,163.0,0.0,1.0,10.2598,20.0,53.0,122.0,123.61,1.75544,1.91516,1.27821,8.0,8.0,8.0,0.00146319,0.0011917
+3564,118.885433,0.0,0.0,37.0,74.9597,162.0,215.0,78.0,110.0,119.344,128.0,152.0,110.0,128.0,133.185,139.0,163.0,0.0,1.0,10.3571,20.0,52.0,122.0,124.748,1.41698,1.81968,1.22324,8.0,8.0,8.0,0.00132888,0.0011917
+3565,118.9188,0.0,0.0,37.0,74.9574,162.0,241.0,78.0,110.0,119.325,128.0,146.0,110.0,128.0,133.159,139.0,161.0,0.0,1.0,10.3555,20.0,53.0,121.0,123.559,1.70909,1.83954,1.23461,8.0,8.0,8.0,0.0014832,0.00119456
+3566,118.952167,0.0,0.0,37.0,75.1094,163.0,215.0,80.0,110.0,119.37,128.0,151.0,113.0,128.0,133.153,139.0,162.0,0.0,1.0,10.294,20.0,55.0,121.0,122.985,1.51784,1.78664,1.1771,8.0,8.0,8.0,0.00146319,0.0011917
+3567,118.985533,0.0,0.0,37.0,74.591,162.0,217.0,80.0,110.0,119.398,128.0,155.0,112.0,127.0,133.114,139.0,159.0,0.0,1.0,10.3025,21.0,51.0,121.0,123.713,2.36119,1.93544,1.30655,8.0,8.0,8.0,0.00133459,0.0011917
+3568,119.0189,0.0,0.0,37.0,74.5587,162.0,231.0,78.0,110.0,119.279,128.0,150.0,116.0,128.0,133.152,140.0,160.0,0.0,1.0,10.3719,21.0,51.0,120.0,121.984,2.25795,1.96288,1.32753,8.0,8.0,8.0,0.00143176,0.0011917
+3569,119.052267,0.0,0.0,37.0,74.631,162.0,213.0,78.0,110.0,119.252,128.0,156.0,111.0,128.0,133.253,140.0,159.0,0.0,1.0,10.4514,21.0,51.0,121.0,123.283,1.7962,1.8524,1.20897,8.0,8.0,8.0,0.00136603,0.0011917
+3570,119.085633,0.0,0.0,37.0,74.4358,161.0,214.0,78.0,110.0,119.165,128.0,152.0,115.0,128.0,133.255,140.0,160.0,0.0,1.0,10.5099,21.0,50.0,120.0,122.725,2.47993,1.95879,1.30428,8.0,8.0,8.0,0.00136031,0.0011917
+3571,119.119,0.0,0.0,37.0,74.1605,161.0,222.0,77.0,110.0,119.111,128.0,150.0,115.0,128.0,133.277,140.0,162.0,0.0,1.0,10.5976,21.0,53.0,120.0,122.866,1.99962,1.86169,1.25104,8.0,8.0,8.0,0.00142318,0.0011917
+3572,119.152367,0.0,0.0,37.0,73.9465,160.0,212.0,76.0,110.0,119.223,128.0,159.0,110.0,128.0,133.229,140.0,161.0,0.0,1.0,10.4616,21.0,53.0,120.0,123.151,2.16805,1.91774,1.31041,8.0,8.0,8.0,0.0013546,0.00119742
+3573,119.185733,0.0,0.0,37.0,74.1355,161.0,235.0,79.0,110.0,119.269,128.0,154.0,110.0,128.0,133.256,140.0,166.0,0.0,1.0,10.4312,21.0,52.0,121.0,122.846,1.96889,1.91682,1.27947,8.0,8.0,8.0,0.0015575,0.0011917
+3574,119.2191,0.0,0.0,37.0,74.2395,161.0,214.0,79.0,110.0,119.266,128.0,155.0,107.0,128.0,133.231,140.0,162.0,0.0,1.0,10.4141,21.0,54.0,121.0,122.702,1.73854,1.85334,1.2069,8.0,8.0,8.0,0.00151749,0.00119456
+3575,119.252467,0.0,0.0,37.0,74.4269,161.0,214.0,78.0,110.0,119.215,128.0,159.0,114.0,128.0,133.139,140.0,162.0,0.0,1.0,10.4503,21.0,56.0,120.0,122.37,2.15123,1.93045,1.2961,8.0,8.0,8.0,0.00147748,0.0011917
+3576,119.285833,0.0,0.0,37.0,74.5733,162.0,214.0,75.0,110.0,119.38,127.0,163.0,104.0,128.0,133.256,140.0,164.0,0.0,1.0,10.3439,20.0,54.0,121.0,122.123,1.61029,1.88667,1.20918,8.0,8.0,8.0,0.00138889,0.0011917
+3577,119.3192,0.0,0.0,37.0,74.6408,162.0,217.0,78.0,110.0,119.196,128.0,163.0,112.0,128.0,133.378,140.0,161.0,0.0,1.0,10.5744,21.0,53.0,122.0,123.988,1.90678,1.93892,1.28834,8.0,8.0,8.0,0.00144319,0.0011917
+3578,119.352567,0.0,0.0,37.0,74.7035,161.0,215.0,79.0,110.0,119.074,127.0,163.0,114.0,128.0,133.379,140.0,163.0,0.0,1.0,10.6329,21.0,52.0,121.0,122.721,2.10984,1.97357,1.33531,8.0,8.0,8.0,0.00142032,0.0011917
+3579,119.385933,0.0,0.0,37.0,74.7367,161.0,215.0,77.0,110.0,119.068,128.0,160.0,116.0,128.0,133.439,140.0,164.0,0.0,1.0,10.6971,21.0,53.0,122.0,123.122,1.77195,1.8894,1.24401,8.0,8.0,8.0,0.00169182,0.0011917
+3580,119.4193,0.0,0.0,37.0,74.8363,161.0,212.0,78.0,110.0,119.06,127.0,160.0,115.0,128.0,133.342,140.0,165.0,0.0,1.0,10.6311,21.0,52.0,120.0,121.832,2.09291,1.9209,1.28733,8.0,8.0,8.0,0.00143461,0.0011917
+3581,119.452667,0.0,0.0,37.0,74.7657,161.0,233.0,78.0,110.0,119.115,128.0,161.0,114.0,128.0,133.411,140.0,165.0,0.0,1.0,10.6398,21.0,51.0,122.0,123.131,1.58066,1.83633,1.17889,8.0,8.0,8.0,0.00147748,0.0011917
+3582,119.486033,0.0,0.0,37.0,74.8023,162.0,215.0,77.0,110.0,119.131,128.0,163.0,115.0,128.0,133.367,140.0,160.0,0.0,1.0,10.5944,21.0,52.0,122.0,123.901,1.87842,1.89781,1.25399,8.0,8.0,8.0,0.00152606,0.0011917
+3583,119.5194,0.0,0.0,37.0,74.9915,162.0,215.0,78.0,110.0,119.142,128.0,158.0,115.0,128.0,133.413,140.0,161.0,0.0,1.0,10.629,21.0,52.0,122.0,123.854,2.07763,1.97209,1.35139,8.0,8.0,8.0,0.00138889,0.0011917
+3584,119.552767,0.0,0.0,37.0,74.7892,162.0,214.0,77.0,110.0,119.18,128.0,157.0,114.0,128.0,133.361,140.0,160.0,0.0,1.0,10.5302,21.0,52.0,122.0,123.884,1.5563,1.91964,1.24758,8.0,8.0,8.0,0.00144033,0.0011917
+3585,119.586133,0.0,0.0,37.0,74.6606,162.0,210.0,77.0,110.0,119.133,128.0,147.0,109.0,128.0,133.241,140.0,161.0,0.0,1.0,10.529,21.0,55.0,120.0,122.565,1.89767,1.95263,1.24482,8.0,8.0,8.0,0.0014489,0.0011917
+3586,119.6195,0.0,0.0,37.0,74.7718,162.0,209.0,75.0,110.0,119.178,128.0,142.0,113.0,128.0,133.277,140.0,163.0,0.0,1.0,10.4844,21.0,54.0,121.0,122.009,1.57975,1.85816,1.17127,8.0,8.0,8.0,0.00129458,0.0011917
+3587,119.652867,0.0,0.0,37.0,74.6279,161.0,207.0,77.0,110.0,119.106,128.0,145.0,113.0,128.0,133.254,140.0,161.0,0.0,1.0,10.548,21.0,52.0,120.0,122.692,1.95548,1.91349,1.27495,8.0,8.0,8.0,0.0013203,0.0011917
+3588,119.686233,0.0,0.0,37.0,75.0413,162.0,213.0,78.0,110.0,119.07,127.0,149.0,114.0,128.0,133.395,140.0,163.0,0.0,1.0,10.6292,21.0,53.0,121.0,122.43,2.19479,1.97805,1.30301,8.0,8.0,8.0,0.00140032,0.0011917
+3589,119.7196,0.0,0.0,37.0,75.0508,162.0,233.0,80.0,110.0,119.093,127.0,160.0,113.0,128.0,133.425,140.0,161.0,0.0,1.0,10.6509,21.0,56.0,122.0,123.834,1.56503,1.8528,1.19123,8.0,8.0,8.0,0.00145176,0.0011917
+3590,119.752967,0.0,0.0,37.0,75.1238,162.0,216.0,78.0,110.0,119.111,128.0,154.0,109.0,128.0,133.349,140.0,160.0,0.0,1.0,10.6007,21.0,53.0,121.0,122.905,1.78993,1.90605,1.24067,8.0,8.0,8.0,0.00149177,0.0011917
+3591,119.786333,0.0,0.0,37.0,75.0338,162.0,215.0,78.0,110.0,119.098,127.0,154.0,114.0,128.0,133.336,140.0,162.0,0.0,1.0,10.613,21.0,53.0,121.0,121.694,1.48128,1.83179,1.21608,8.0,8.0,8.0,0.00138889,0.0011917
+3592,119.8197,0.0,0.0,37.0,75.0299,162.0,214.0,79.0,110.0,119.188,128.0,150.0,116.0,128.0,133.339,140.0,160.0,0.0,1.0,10.5167,21.0,52.0,122.0,124.523,1.8422,1.88641,1.27691,8.0,8.0,8.0,0.00146891,0.0011917
+3593,119.853067,0.0,0.0,37.0,75.181,162.0,213.0,79.0,110.0,119.168,128.0,150.0,111.0,128.0,133.368,140.0,161.0,0.0,1.0,10.5509,21.0,53.0,122.0,123.536,1.73426,1.89688,1.23549,8.0,8.0,8.0,0.00147462,0.0011917
+3594,119.886433,0.0,0.0,37.0,75.1117,162.0,213.0,77.0,110.0,119.154,128.0,146.0,109.0,128.0,133.379,140.0,163.0,0.0,1.0,10.5747,21.0,56.0,122.0,123.224,1.55634,1.85666,1.22126,8.0,8.0,8.0,0.00126029,0.0011917
+3595,119.9198,0.0,0.0,37.0,74.9993,162.0,212.0,78.0,110.0,119.255,128.0,147.0,104.0,128.0,133.281,140.0,164.0,0.0,1.0,10.4728,21.0,53.0,121.0,123.908,1.88563,1.90897,1.27403,8.0,8.0,8.0,0.001246,0.0011917
+3596,119.953167,0.0,0.0,37.0,75.1202,162.0,215.0,79.0,110.0,119.311,128.0,151.0,107.0,128.0,133.326,140.0,162.0,0.0,1.0,10.4327,20.0,51.0,122.0,123.109,1.63009,1.94604,1.31047,8.0,8.0,8.0,0.00138032,0.0011917
+3597,119.986533,0.0,0.0,37.0,74.8537,162.0,217.0,77.0,110.0,119.316,128.0,156.0,115.0,128.0,133.27,140.0,162.0,0.0,1.0,10.412,21.0,55.0,122.0,124.156,1.77622,1.9505,1.27693,8.0,8.0,8.0,0.0015575,0.0011917
diff --git a/nulrdcscripts/vqc/vqcgui.py b/nulrdcscripts/vqc/vqcgui.py
new file mode 100644
index 0000000..3aea7ca
--- /dev/null
+++ b/nulrdcscripts/vqc/vqcgui.py
@@ -0,0 +1,96 @@
+import tkinter as tk
+from tkinter import *
+from tkinter import ttk
+
+
+def retrieve():
+ input_value = input_path.get()
+ output_value = output_path.get()
+ print(f"Input Path: {input_value}")
+ print(f"Output Path: {output_value}")
+
+
+root = Tk()
+root.title("Video Quality Control")
+mainframe = ttk.Frame(root, padding="10")
+mainframe.pack()
+
+bottomframe = ttk.Frame(mainframe, padding="10")
+bottomframe.pack(side="bottom")
+
+leftframe = ttk.Frame(mainframe, padding="10")
+leftframe.pack(side="left")
+
+rightframe = ttk.Frame(mainframe, padding="10")
+rightframe.pack(side="right")
+
+title = ttk.Label(mainframe, text="Video Quality Control", font=("Helvetica", 16))
+title.pack(pady=10)
+
+# Creates input entry box
+input_label = ttk.Label(leftframe, text="Input Path:")
+input_label.pack(anchor=W)
+input_path = ttk.Entry(leftframe, width=30)
+input_path.insert(0, "Input Path to File or Folder")
+input_path.pack(pady=5)
+
+# Creates output entry box
+output_label = ttk.Label(leftframe, text="Output Path:")
+output_label.pack(anchor=W)
+output_path = ttk.Entry(leftframe, width=30)
+output_path.insert(0, "Output Path to File or Folder")
+output_path.pack(pady=5)
+
+
+# Creates that suggestions radiobuttons --> Yes, No STR
+suggest_frame = ttk.Frame(leftframe, padding=10)
+suggest_label = ttk.Label(leftframe, text = 'Suggestions? : ')
+suggest_label.pack(anchor=W)
+
+suggest_var = StringVar()
+suggestions = ttk.Label(leftframe, text='Suggestions? :')
+suggestions_yes = ttk.Radiobutton(leftframe, text="Yes", variable=suggest_var, value='yes')
+suggestions_no = ttk.Radiobutton(leftframe, text="No", variable=suggest_var, value='no')
+suggestions_yes.pack(anchor=W, padx=10)
+suggestions_no.pack(anchor=W,padx=10)
+
+# Creates the bit depth radiobuttons --> 10, 8, Unknown INT -- Unknown comes back as 999
+bit_frame = ttk.Frame(leftframe,padding=10)
+bit_label = ttk.Label(leftframe, text='Bit Depth:')
+bit_label.pack(anchor=W)
+bitdepth_var = IntVar()
+bitdepth_10 = ttk.Radiobutton(leftframe, text='8 Bit', variable=bitdepth_var,value=10)
+bitdepth_8 = ttk.Radiobutton(leftframe, text = '10 Bit', variable = bitdepth_var,value=8)
+bitdepth_ukn = ttk.Radiobutton(leftframe, text= 'Evaluate',variable = bitdepth_var,value=999)
+bitdepth_10.pack(anchor=W,padx=10)
+bitdepth_8.pack(anchor=W,padx=10)
+bitdepth_ukn.pack(anchor=W,padx=10)
+
+# Select verbosity level
+verb_var_begin=BooleanVar()
+verb_var_expert=BooleanVar()
+verbosity_frame = ttk.Frame(rightframe, padding=10)
+verbosity_label = ttk.Label(rightframe, text='Verbosity Level:')
+verbosity_label.pack(anchor=W)
+verbosity_beginner = ttk.Checkbutton(rightframe, text='Beginner', variable=verb_var_begin)
+verbosity_expert = ttk.Checkbutton(rightframe, text='Expert', variable=verb_var_expert)
+verbosity_beginner.pack(anchor=W, padx=10)
+verbosity_expert.pack(anchor=W, padx=10)
+
+# Video Type
+
+video_type_frame = ttk.Frame(rightframe, padding=10)
+video_type_label = ttk.Label(rightframe, text='Video Type:')
+video_type_label.pack(anchor=W)
+video_type_var = StringVar()
+video_type_color = ttk.Radiobutton(rightframe, text='Color', variable=video_type_var, value='color')
+video_type_bw= ttk.Radiobutton(rightframe, text='Black & White', variable=video_type_var, value='bw')
+video_type_bw.pack(anchor=W, padx=10)
+video_type_color.pack(anchor=W, padx=10)
+
+
+# Execute button --> retrieves the data and uses it to run VQC
+runButton = ttk.Button(bottomframe, text="Run VQC Analysis", command=retrieve)
+runButton.pack(pady=10)
+
+mainframe.mainloop()
diff --git a/poetry.lock b/poetry.lock
index 5b9f72e..5b05ba4 100644
--- a/poetry.lock
+++ b/poetry.lock
@@ -1,8 +1,968 @@
-package = []
+# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand.
+
+[[package]]
+name = "appnope"
+version = "0.1.4"
+description = "Disable App Nap on macOS >= 10.9"
+optional = false
+python-versions = ">=3.6"
+files = [
+ {file = "appnope-0.1.4-py2.py3-none-any.whl", hash = "sha256:502575ee11cd7a28c0205f379b525beefebab9d161b7c964670864014ed7213c"},
+ {file = "appnope-0.1.4.tar.gz", hash = "sha256:1de3860566df9caf38f01f86f65e0e13e379af54f9e4bee1e66b48f2efffd1ee"},
+]
+
+[[package]]
+name = "asttokens"
+version = "2.4.1"
+description = "Annotate AST trees with source code positions"
+optional = false
+python-versions = "*"
+files = [
+ {file = "asttokens-2.4.1-py2.py3-none-any.whl", hash = "sha256:051ed49c3dcae8913ea7cd08e46a606dba30b79993209636c4875bc1d637bc24"},
+ {file = "asttokens-2.4.1.tar.gz", hash = "sha256:b03869718ba9a6eb027e134bfdf69f38a236d681c83c160d510768af11254ba0"},
+]
+
+[package.dependencies]
+six = ">=1.12.0"
+
+[package.extras]
+astroid = ["astroid (>=1,<2)", "astroid (>=2,<4)"]
+test = ["astroid (>=1,<2)", "astroid (>=2,<4)", "pytest"]
+
+[[package]]
+name = "cffi"
+version = "1.16.0"
+description = "Foreign Function Interface for Python calling C code."
+optional = false
+python-versions = ">=3.8"
+files = [
+ {file = "cffi-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088"},
+ {file = "cffi-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9"},
+ {file = "cffi-1.16.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673"},
+ {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896"},
+ {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684"},
+ {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7"},
+ {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614"},
+ {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743"},
+ {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d"},
+ {file = "cffi-1.16.0-cp310-cp310-win32.whl", hash = "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a"},
+ {file = "cffi-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1"},
+ {file = "cffi-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404"},
+ {file = "cffi-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417"},
+ {file = "cffi-1.16.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627"},
+ {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936"},
+ {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d"},
+ {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56"},
+ {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e"},
+ {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc"},
+ {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb"},
+ {file = "cffi-1.16.0-cp311-cp311-win32.whl", hash = "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab"},
+ {file = "cffi-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba"},
+ {file = "cffi-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956"},
+ {file = "cffi-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e"},
+ {file = "cffi-1.16.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e"},
+ {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2"},
+ {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357"},
+ {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6"},
+ {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969"},
+ {file = "cffi-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520"},
+ {file = "cffi-1.16.0-cp312-cp312-win32.whl", hash = "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b"},
+ {file = "cffi-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235"},
+ {file = "cffi-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc"},
+ {file = "cffi-1.16.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0"},
+ {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b"},
+ {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c"},
+ {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b"},
+ {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324"},
+ {file = "cffi-1.16.0-cp38-cp38-win32.whl", hash = "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a"},
+ {file = "cffi-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36"},
+ {file = "cffi-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed"},
+ {file = "cffi-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2"},
+ {file = "cffi-1.16.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872"},
+ {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8"},
+ {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f"},
+ {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4"},
+ {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098"},
+ {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000"},
+ {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe"},
+ {file = "cffi-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4"},
+ {file = "cffi-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8"},
+ {file = "cffi-1.16.0.tar.gz", hash = "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0"},
+]
+
+[package.dependencies]
+pycparser = "*"
+
+[[package]]
+name = "colorama"
+version = "0.4.6"
+description = "Cross-platform colored terminal text."
+optional = false
+python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7"
+files = [
+ {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"},
+ {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"},
+]
+
+[[package]]
+name = "comm"
+version = "0.2.2"
+description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc."
+optional = false
+python-versions = ">=3.8"
+files = [
+ {file = "comm-0.2.2-py3-none-any.whl", hash = "sha256:e6fb86cb70ff661ee8c9c14e7d36d6de3b4066f1441be4063df9c5009f0a64d3"},
+ {file = "comm-0.2.2.tar.gz", hash = "sha256:3fd7a84065306e07bea1773df6eb8282de51ba82f77c72f9c85716ab11fe980e"},
+]
+
+[package.dependencies]
+traitlets = ">=4"
+
+[package.extras]
+test = ["pytest"]
+
+[[package]]
+name = "debugpy"
+version = "1.8.1"
+description = "An implementation of the Debug Adapter Protocol for Python"
+optional = false
+python-versions = ">=3.8"
+files = [
+ {file = "debugpy-1.8.1-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:3bda0f1e943d386cc7a0e71bfa59f4137909e2ed947fb3946c506e113000f741"},
+ {file = "debugpy-1.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dda73bf69ea479c8577a0448f8c707691152e6c4de7f0c4dec5a4bc11dee516e"},
+ {file = "debugpy-1.8.1-cp310-cp310-win32.whl", hash = "sha256:3a79c6f62adef994b2dbe9fc2cc9cc3864a23575b6e387339ab739873bea53d0"},
+ {file = "debugpy-1.8.1-cp310-cp310-win_amd64.whl", hash = "sha256:7eb7bd2b56ea3bedb009616d9e2f64aab8fc7000d481faec3cd26c98a964bcdd"},
+ {file = "debugpy-1.8.1-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:016a9fcfc2c6b57f939673c874310d8581d51a0fe0858e7fac4e240c5eb743cb"},
+ {file = "debugpy-1.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd97ed11a4c7f6d042d320ce03d83b20c3fb40da892f994bc041bbc415d7a099"},
+ {file = "debugpy-1.8.1-cp311-cp311-win32.whl", hash = "sha256:0de56aba8249c28a300bdb0672a9b94785074eb82eb672db66c8144fff673146"},
+ {file = "debugpy-1.8.1-cp311-cp311-win_amd64.whl", hash = "sha256:1a9fe0829c2b854757b4fd0a338d93bc17249a3bf69ecf765c61d4c522bb92a8"},
+ {file = "debugpy-1.8.1-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:3ebb70ba1a6524d19fa7bb122f44b74170c447d5746a503e36adc244a20ac539"},
+ {file = "debugpy-1.8.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2e658a9630f27534e63922ebf655a6ab60c370f4d2fc5c02a5b19baf4410ace"},
+ {file = "debugpy-1.8.1-cp312-cp312-win32.whl", hash = "sha256:caad2846e21188797a1f17fc09c31b84c7c3c23baf2516fed5b40b378515bbf0"},
+ {file = "debugpy-1.8.1-cp312-cp312-win_amd64.whl", hash = "sha256:edcc9f58ec0fd121a25bc950d4578df47428d72e1a0d66c07403b04eb93bcf98"},
+ {file = "debugpy-1.8.1-cp38-cp38-macosx_11_0_x86_64.whl", hash = "sha256:7a3afa222f6fd3d9dfecd52729bc2e12c93e22a7491405a0ecbf9e1d32d45b39"},
+ {file = "debugpy-1.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d915a18f0597ef685e88bb35e5d7ab968964b7befefe1aaea1eb5b2640b586c7"},
+ {file = "debugpy-1.8.1-cp38-cp38-win32.whl", hash = "sha256:92116039b5500633cc8d44ecc187abe2dfa9b90f7a82bbf81d079fcdd506bae9"},
+ {file = "debugpy-1.8.1-cp38-cp38-win_amd64.whl", hash = "sha256:e38beb7992b5afd9d5244e96ad5fa9135e94993b0c551ceebf3fe1a5d9beb234"},
+ {file = "debugpy-1.8.1-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:bfb20cb57486c8e4793d41996652e5a6a885b4d9175dd369045dad59eaacea42"},
+ {file = "debugpy-1.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efd3fdd3f67a7e576dd869c184c5dd71d9aaa36ded271939da352880c012e703"},
+ {file = "debugpy-1.8.1-cp39-cp39-win32.whl", hash = "sha256:58911e8521ca0c785ac7a0539f1e77e0ce2df753f786188f382229278b4cdf23"},
+ {file = "debugpy-1.8.1-cp39-cp39-win_amd64.whl", hash = "sha256:6df9aa9599eb05ca179fb0b810282255202a66835c6efb1d112d21ecb830ddd3"},
+ {file = "debugpy-1.8.1-py2.py3-none-any.whl", hash = "sha256:28acbe2241222b87e255260c76741e1fbf04fdc3b6d094fcf57b6c6f75ce1242"},
+ {file = "debugpy-1.8.1.zip", hash = "sha256:f696d6be15be87aef621917585f9bb94b1dc9e8aced570db1b8a6fc14e8f9b42"},
+]
+
+[[package]]
+name = "decorator"
+version = "5.1.1"
+description = "Decorators for Humans"
+optional = false
+python-versions = ">=3.5"
+files = [
+ {file = "decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186"},
+ {file = "decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330"},
+]
+
+[[package]]
+name = "exceptiongroup"
+version = "1.2.0"
+description = "Backport of PEP 654 (exception groups)"
+optional = false
+python-versions = ">=3.7"
+files = [
+ {file = "exceptiongroup-1.2.0-py3-none-any.whl", hash = "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14"},
+ {file = "exceptiongroup-1.2.0.tar.gz", hash = "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68"},
+]
+
+[package.extras]
+test = ["pytest (>=6)"]
+
+[[package]]
+name = "executing"
+version = "2.0.1"
+description = "Get the currently executing AST node of a frame, and other information"
+optional = false
+python-versions = ">=3.5"
+files = [
+ {file = "executing-2.0.1-py2.py3-none-any.whl", hash = "sha256:eac49ca94516ccc753f9fb5ce82603156e590b27525a8bc32cce8ae302eb61bc"},
+ {file = "executing-2.0.1.tar.gz", hash = "sha256:35afe2ce3affba8ee97f2d69927fa823b08b472b7b994e36a52a964b93d16147"},
+]
+
+[package.extras]
+tests = ["asttokens (>=2.1.0)", "coverage", "coverage-enable-subprocess", "ipython", "littleutils", "pytest", "rich"]
+
+[[package]]
+name = "ipykernel"
+version = "6.29.3"
+description = "IPython Kernel for Jupyter"
+optional = false
+python-versions = ">=3.8"
+files = [
+ {file = "ipykernel-6.29.3-py3-none-any.whl", hash = "sha256:5aa086a4175b0229d4eca211e181fb473ea78ffd9869af36ba7694c947302a21"},
+ {file = "ipykernel-6.29.3.tar.gz", hash = "sha256:e14c250d1f9ea3989490225cc1a542781b095a18a19447fcf2b5eaf7d0ac5bd2"},
+]
+
+[package.dependencies]
+appnope = {version = "*", markers = "platform_system == \"Darwin\""}
+comm = ">=0.1.1"
+debugpy = ">=1.6.5"
+ipython = ">=7.23.1"
+jupyter-client = ">=6.1.12"
+jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0"
+matplotlib-inline = ">=0.1"
+nest-asyncio = "*"
+packaging = "*"
+psutil = "*"
+pyzmq = ">=24"
+tornado = ">=6.1"
+traitlets = ">=5.4.0"
+
+[package.extras]
+cov = ["coverage[toml]", "curio", "matplotlib", "pytest-cov", "trio"]
+docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "trio"]
+pyqt5 = ["pyqt5"]
+pyside6 = ["pyside6"]
+test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-asyncio (>=0.23.5)", "pytest-cov", "pytest-timeout"]
+
+[[package]]
+name = "ipython"
+version = "8.22.2"
+description = "IPython: Productive Interactive Computing"
+optional = false
+python-versions = ">=3.10"
+files = [
+ {file = "ipython-8.22.2-py3-none-any.whl", hash = "sha256:3c86f284c8f3d8f2b6c662f885c4889a91df7cd52056fd02b7d8d6195d7f56e9"},
+ {file = "ipython-8.22.2.tar.gz", hash = "sha256:2dcaad9049f9056f1fef63514f176c7d41f930daa78d05b82a176202818f2c14"},
+]
+
+[package.dependencies]
+colorama = {version = "*", markers = "sys_platform == \"win32\""}
+decorator = "*"
+exceptiongroup = {version = "*", markers = "python_version < \"3.11\""}
+jedi = ">=0.16"
+matplotlib-inline = "*"
+pexpect = {version = ">4.3", markers = "sys_platform != \"win32\" and sys_platform != \"emscripten\""}
+prompt-toolkit = ">=3.0.41,<3.1.0"
+pygments = ">=2.4.0"
+stack-data = "*"
+traitlets = ">=5.13.0"
+
+[package.extras]
+all = ["ipython[black,doc,kernel,nbconvert,nbformat,notebook,parallel,qtconsole,terminal]", "ipython[test,test-extra]"]
+black = ["black"]
+doc = ["docrepr", "exceptiongroup", "ipykernel", "ipython[test]", "matplotlib", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "sphinxcontrib-jquery", "stack-data", "typing-extensions"]
+kernel = ["ipykernel"]
+nbconvert = ["nbconvert"]
+nbformat = ["nbformat"]
+notebook = ["ipywidgets", "notebook"]
+parallel = ["ipyparallel"]
+qtconsole = ["qtconsole"]
+test = ["pickleshare", "pytest (<8)", "pytest-asyncio (<0.22)", "testpath"]
+test-extra = ["curio", "ipython[test]", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.23)", "pandas", "trio"]
+
+[[package]]
+name = "jedi"
+version = "0.19.1"
+description = "An autocompletion tool for Python that can be used for text editors."
+optional = false
+python-versions = ">=3.6"
+files = [
+ {file = "jedi-0.19.1-py2.py3-none-any.whl", hash = "sha256:e983c654fe5c02867aef4cdfce5a2fbb4a50adc0af145f70504238f18ef5e7e0"},
+ {file = "jedi-0.19.1.tar.gz", hash = "sha256:cf0496f3651bc65d7174ac1b7d043eff454892c708a87d1b683e57b569927ffd"},
+]
+
+[package.dependencies]
+parso = ">=0.8.3,<0.9.0"
+
+[package.extras]
+docs = ["Jinja2 (==2.11.3)", "MarkupSafe (==1.1.1)", "Pygments (==2.8.1)", "alabaster (==0.7.12)", "babel (==2.9.1)", "chardet (==4.0.0)", "commonmark (==0.8.1)", "docutils (==0.17.1)", "future (==0.18.2)", "idna (==2.10)", "imagesize (==1.2.0)", "mock (==1.0.1)", "packaging (==20.9)", "pyparsing (==2.4.7)", "pytz (==2021.1)", "readthedocs-sphinx-ext (==2.1.4)", "recommonmark (==0.5.0)", "requests (==2.25.1)", "six (==1.15.0)", "snowballstemmer (==2.1.0)", "sphinx (==1.8.5)", "sphinx-rtd-theme (==0.4.3)", "sphinxcontrib-serializinghtml (==1.1.4)", "sphinxcontrib-websupport (==1.2.4)", "urllib3 (==1.26.4)"]
+qa = ["flake8 (==5.0.4)", "mypy (==0.971)", "types-setuptools (==67.2.0.1)"]
+testing = ["Django", "attrs", "colorama", "docopt", "pytest (<7.0.0)"]
+
+[[package]]
+name = "jinja2"
+version = "3.1.3"
+description = "A very fast and expressive template engine."
+optional = false
+python-versions = ">=3.7"
+files = [
+ {file = "Jinja2-3.1.3-py3-none-any.whl", hash = "sha256:7d6d50dd97d52cbc355597bd845fabfbac3f551e1f99619e39a35ce8c370b5fa"},
+ {file = "Jinja2-3.1.3.tar.gz", hash = "sha256:ac8bd6544d4bb2c9792bf3a159e80bba8fda7f07e81bc3aed565432d5925ba90"},
+]
+
+[package.dependencies]
+MarkupSafe = ">=2.0"
+
+[package.extras]
+i18n = ["Babel (>=2.7)"]
+
+[[package]]
+name = "jupyter-client"
+version = "8.6.1"
+description = "Jupyter protocol implementation and client libraries"
+optional = false
+python-versions = ">=3.8"
+files = [
+ {file = "jupyter_client-8.6.1-py3-none-any.whl", hash = "sha256:3b7bd22f058434e3b9a7ea4b1500ed47de2713872288c0d511d19926f99b459f"},
+ {file = "jupyter_client-8.6.1.tar.gz", hash = "sha256:e842515e2bab8e19186d89fdfea7abd15e39dd581f94e399f00e2af5a1652d3f"},
+]
+
+[package.dependencies]
+jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0"
+python-dateutil = ">=2.8.2"
+pyzmq = ">=23.0"
+tornado = ">=6.2"
+traitlets = ">=5.3"
+
+[package.extras]
+docs = ["ipykernel", "myst-parser", "pydata-sphinx-theme", "sphinx (>=4)", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"]
+test = ["coverage", "ipykernel (>=6.14)", "mypy", "paramiko", "pre-commit", "pytest", "pytest-cov", "pytest-jupyter[client] (>=0.4.1)", "pytest-timeout"]
+
+[[package]]
+name = "jupyter-core"
+version = "5.7.2"
+description = "Jupyter core package. A base package on which Jupyter projects rely."
+optional = false
+python-versions = ">=3.8"
+files = [
+ {file = "jupyter_core-5.7.2-py3-none-any.whl", hash = "sha256:4f7315d2f6b4bcf2e3e7cb6e46772eba760ae459cd1f59d29eb57b0a01bd7409"},
+ {file = "jupyter_core-5.7.2.tar.gz", hash = "sha256:aa5f8d32bbf6b431ac830496da7392035d6f61b4f54872f15c4bd2a9c3f536d9"},
+]
+
+[package.dependencies]
+platformdirs = ">=2.5"
+pywin32 = {version = ">=300", markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\""}
+traitlets = ">=5.3"
+
+[package.extras]
+docs = ["myst-parser", "pydata-sphinx-theme", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "traitlets"]
+test = ["ipykernel", "pre-commit", "pytest (<8)", "pytest-cov", "pytest-timeout"]
+
+[[package]]
+name = "markupsafe"
+version = "2.1.5"
+description = "Safely add untrusted strings to HTML/XML markup."
+optional = false
+python-versions = ">=3.7"
+files = [
+ {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc"},
+ {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5"},
+ {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46"},
+ {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f"},
+ {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900"},
+ {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff"},
+ {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad"},
+ {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd"},
+ {file = "MarkupSafe-2.1.5-cp310-cp310-win32.whl", hash = "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4"},
+ {file = "MarkupSafe-2.1.5-cp310-cp310-win_amd64.whl", hash = "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5"},
+ {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f"},
+ {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2"},
+ {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced"},
+ {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5"},
+ {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c"},
+ {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f"},
+ {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a"},
+ {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f"},
+ {file = "MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906"},
+ {file = "MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617"},
+ {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1"},
+ {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4"},
+ {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee"},
+ {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5"},
+ {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b"},
+ {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a"},
+ {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f"},
+ {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169"},
+ {file = "MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad"},
+ {file = "MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb"},
+ {file = "MarkupSafe-2.1.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f"},
+ {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf"},
+ {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a"},
+ {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52"},
+ {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9"},
+ {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df"},
+ {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50"},
+ {file = "MarkupSafe-2.1.5-cp37-cp37m-win32.whl", hash = "sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371"},
+ {file = "MarkupSafe-2.1.5-cp37-cp37m-win_amd64.whl", hash = "sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2"},
+ {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a"},
+ {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46"},
+ {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532"},
+ {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab"},
+ {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68"},
+ {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0"},
+ {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4"},
+ {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3"},
+ {file = "MarkupSafe-2.1.5-cp38-cp38-win32.whl", hash = "sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff"},
+ {file = "MarkupSafe-2.1.5-cp38-cp38-win_amd64.whl", hash = "sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029"},
+ {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf"},
+ {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2"},
+ {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8"},
+ {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3"},
+ {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465"},
+ {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e"},
+ {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea"},
+ {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6"},
+ {file = "MarkupSafe-2.1.5-cp39-cp39-win32.whl", hash = "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf"},
+ {file = "MarkupSafe-2.1.5-cp39-cp39-win_amd64.whl", hash = "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5"},
+ {file = "MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b"},
+]
+
+[[package]]
+name = "matplotlib-inline"
+version = "0.1.6"
+description = "Inline Matplotlib backend for Jupyter"
+optional = false
+python-versions = ">=3.5"
+files = [
+ {file = "matplotlib-inline-0.1.6.tar.gz", hash = "sha256:f887e5f10ba98e8d2b150ddcf4702c1e5f8b3a20005eb0f74bfdbd360ee6f304"},
+ {file = "matplotlib_inline-0.1.6-py3-none-any.whl", hash = "sha256:f1f41aab5328aa5aaea9b16d083b128102f8712542f819fe7e6a420ff581b311"},
+]
+
+[package.dependencies]
+traitlets = "*"
+
+[[package]]
+name = "nest-asyncio"
+version = "1.6.0"
+description = "Patch asyncio to allow nested event loops"
+optional = false
+python-versions = ">=3.5"
+files = [
+ {file = "nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c"},
+ {file = "nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe"},
+]
+
+[[package]]
+name = "numpy"
+version = "1.26.4"
+description = "Fundamental package for array computing in Python"
+optional = false
+python-versions = ">=3.9"
+files = [
+ {file = "numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0"},
+ {file = "numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a"},
+ {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4"},
+ {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f"},
+ {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a"},
+ {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2"},
+ {file = "numpy-1.26.4-cp310-cp310-win32.whl", hash = "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07"},
+ {file = "numpy-1.26.4-cp310-cp310-win_amd64.whl", hash = "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5"},
+ {file = "numpy-1.26.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71"},
+ {file = "numpy-1.26.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef"},
+ {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e"},
+ {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5"},
+ {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a"},
+ {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a"},
+ {file = "numpy-1.26.4-cp311-cp311-win32.whl", hash = "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20"},
+ {file = "numpy-1.26.4-cp311-cp311-win_amd64.whl", hash = "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2"},
+ {file = "numpy-1.26.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218"},
+ {file = "numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b"},
+ {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b"},
+ {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed"},
+ {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a"},
+ {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0"},
+ {file = "numpy-1.26.4-cp312-cp312-win32.whl", hash = "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110"},
+ {file = "numpy-1.26.4-cp312-cp312-win_amd64.whl", hash = "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818"},
+ {file = "numpy-1.26.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c"},
+ {file = "numpy-1.26.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be"},
+ {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764"},
+ {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3"},
+ {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd"},
+ {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c"},
+ {file = "numpy-1.26.4-cp39-cp39-win32.whl", hash = "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6"},
+ {file = "numpy-1.26.4-cp39-cp39-win_amd64.whl", hash = "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea"},
+ {file = "numpy-1.26.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30"},
+ {file = "numpy-1.26.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c"},
+ {file = "numpy-1.26.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0"},
+ {file = "numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010"},
+]
+
+[[package]]
+name = "packaging"
+version = "24.0"
+description = "Core utilities for Python packages"
+optional = false
+python-versions = ">=3.7"
+files = [
+ {file = "packaging-24.0-py3-none-any.whl", hash = "sha256:2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5"},
+ {file = "packaging-24.0.tar.gz", hash = "sha256:eb82c5e3e56209074766e6885bb04b8c38a0c015d0a30036ebe7ece34c9989e9"},
+]
+
+[[package]]
+name = "pandas"
+version = "2.2.1"
+description = "Powerful data structures for data analysis, time series, and statistics"
+optional = false
+python-versions = ">=3.9"
+files = [
+ {file = "pandas-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8df8612be9cd1c7797c93e1c5df861b2ddda0b48b08f2c3eaa0702cf88fb5f88"},
+ {file = "pandas-2.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0f573ab277252ed9aaf38240f3b54cfc90fff8e5cab70411ee1d03f5d51f3944"},
+ {file = "pandas-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f02a3a6c83df4026e55b63c1f06476c9aa3ed6af3d89b4f04ea656ccdaaaa359"},
+ {file = "pandas-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c38ce92cb22a4bea4e3929429aa1067a454dcc9c335799af93ba9be21b6beb51"},
+ {file = "pandas-2.2.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:c2ce852e1cf2509a69e98358e8458775f89599566ac3775e70419b98615f4b06"},
+ {file = "pandas-2.2.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:53680dc9b2519cbf609c62db3ed7c0b499077c7fefda564e330286e619ff0dd9"},
+ {file = "pandas-2.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:94e714a1cca63e4f5939cdce5f29ba8d415d85166be3441165edd427dc9f6bc0"},
+ {file = "pandas-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f821213d48f4ab353d20ebc24e4faf94ba40d76680642fb7ce2ea31a3ad94f9b"},
+ {file = "pandas-2.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c70e00c2d894cb230e5c15e4b1e1e6b2b478e09cf27cc593a11ef955b9ecc81a"},
+ {file = "pandas-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e97fbb5387c69209f134893abc788a6486dbf2f9e511070ca05eed4b930b1b02"},
+ {file = "pandas-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:101d0eb9c5361aa0146f500773395a03839a5e6ecde4d4b6ced88b7e5a1a6403"},
+ {file = "pandas-2.2.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:7d2ed41c319c9fb4fd454fe25372028dfa417aacb9790f68171b2e3f06eae8cd"},
+ {file = "pandas-2.2.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:af5d3c00557d657c8773ef9ee702c61dd13b9d7426794c9dfeb1dc4a0bf0ebc7"},
+ {file = "pandas-2.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:06cf591dbaefb6da9de8472535b185cba556d0ce2e6ed28e21d919704fef1a9e"},
+ {file = "pandas-2.2.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:88ecb5c01bb9ca927ebc4098136038519aa5d66b44671861ffab754cae75102c"},
+ {file = "pandas-2.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:04f6ec3baec203c13e3f8b139fb0f9f86cd8c0b94603ae3ae8ce9a422e9f5bee"},
+ {file = "pandas-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a935a90a76c44fe170d01e90a3594beef9e9a6220021acfb26053d01426f7dc2"},
+ {file = "pandas-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c391f594aae2fd9f679d419e9a4d5ba4bce5bb13f6a989195656e7dc4b95c8f0"},
+ {file = "pandas-2.2.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9d1265545f579edf3f8f0cb6f89f234f5e44ba725a34d86535b1a1d38decbccc"},
+ {file = "pandas-2.2.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:11940e9e3056576ac3244baef2fedade891977bcc1cb7e5cc8f8cc7d603edc89"},
+ {file = "pandas-2.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:4acf681325ee1c7f950d058b05a820441075b0dd9a2adf5c4835b9bc056bf4fb"},
+ {file = "pandas-2.2.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9bd8a40f47080825af4317d0340c656744f2bfdb6819f818e6ba3cd24c0e1397"},
+ {file = "pandas-2.2.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:df0c37ebd19e11d089ceba66eba59a168242fc6b7155cba4ffffa6eccdfb8f16"},
+ {file = "pandas-2.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:739cc70eaf17d57608639e74d63387b0d8594ce02f69e7a0b046f117974b3019"},
+ {file = "pandas-2.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9d3558d263073ed95e46f4650becff0c5e1ffe0fc3a015de3c79283dfbdb3df"},
+ {file = "pandas-2.2.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4aa1d8707812a658debf03824016bf5ea0d516afdea29b7dc14cf687bc4d4ec6"},
+ {file = "pandas-2.2.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:76f27a809cda87e07f192f001d11adc2b930e93a2b0c4a236fde5429527423be"},
+ {file = "pandas-2.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:1ba21b1d5c0e43416218db63037dbe1a01fc101dc6e6024bcad08123e48004ab"},
+ {file = "pandas-2.2.1.tar.gz", hash = "sha256:0ab90f87093c13f3e8fa45b48ba9f39181046e8f3317d3aadb2fffbb1b978572"},
+]
+
+[package.dependencies]
+numpy = [
+ {version = ">=1.22.4,<2", markers = "python_version < \"3.11\""},
+ {version = ">=1.23.2,<2", markers = "python_version == \"3.11\""},
+ {version = ">=1.26.0,<2", markers = "python_version >= \"3.12\""},
+]
+python-dateutil = ">=2.8.2"
+pytz = ">=2020.1"
+tzdata = ">=2022.7"
+
+[package.extras]
+all = ["PyQt5 (>=5.15.9)", "SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)", "beautifulsoup4 (>=4.11.2)", "bottleneck (>=1.3.6)", "dataframe-api-compat (>=0.1.7)", "fastparquet (>=2022.12.0)", "fsspec (>=2022.11.0)", "gcsfs (>=2022.11.0)", "html5lib (>=1.1)", "hypothesis (>=6.46.1)", "jinja2 (>=3.1.2)", "lxml (>=4.9.2)", "matplotlib (>=3.6.3)", "numba (>=0.56.4)", "numexpr (>=2.8.4)", "odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "pandas-gbq (>=0.19.0)", "psycopg2 (>=2.9.6)", "pyarrow (>=10.0.1)", "pymysql (>=1.0.2)", "pyreadstat (>=1.2.0)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "qtpy (>=2.3.0)", "s3fs (>=2022.11.0)", "scipy (>=1.10.0)", "tables (>=3.8.0)", "tabulate (>=0.9.0)", "xarray (>=2022.12.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)", "zstandard (>=0.19.0)"]
+aws = ["s3fs (>=2022.11.0)"]
+clipboard = ["PyQt5 (>=5.15.9)", "qtpy (>=2.3.0)"]
+compression = ["zstandard (>=0.19.0)"]
+computation = ["scipy (>=1.10.0)", "xarray (>=2022.12.0)"]
+consortium-standard = ["dataframe-api-compat (>=0.1.7)"]
+excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)"]
+feather = ["pyarrow (>=10.0.1)"]
+fss = ["fsspec (>=2022.11.0)"]
+gcp = ["gcsfs (>=2022.11.0)", "pandas-gbq (>=0.19.0)"]
+hdf5 = ["tables (>=3.8.0)"]
+html = ["beautifulsoup4 (>=4.11.2)", "html5lib (>=1.1)", "lxml (>=4.9.2)"]
+mysql = ["SQLAlchemy (>=2.0.0)", "pymysql (>=1.0.2)"]
+output-formatting = ["jinja2 (>=3.1.2)", "tabulate (>=0.9.0)"]
+parquet = ["pyarrow (>=10.0.1)"]
+performance = ["bottleneck (>=1.3.6)", "numba (>=0.56.4)", "numexpr (>=2.8.4)"]
+plot = ["matplotlib (>=3.6.3)"]
+postgresql = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "psycopg2 (>=2.9.6)"]
+pyarrow = ["pyarrow (>=10.0.1)"]
+spss = ["pyreadstat (>=1.2.0)"]
+sql-other = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)"]
+test = ["hypothesis (>=6.46.1)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)"]
+xml = ["lxml (>=4.9.2)"]
+
+[[package]]
+name = "parso"
+version = "0.8.3"
+description = "A Python Parser"
+optional = false
+python-versions = ">=3.6"
+files = [
+ {file = "parso-0.8.3-py2.py3-none-any.whl", hash = "sha256:c001d4636cd3aecdaf33cbb40aebb59b094be2a74c556778ef5576c175e19e75"},
+ {file = "parso-0.8.3.tar.gz", hash = "sha256:8c07be290bb59f03588915921e29e8a50002acaf2cdc5fa0e0114f91709fafa0"},
+]
+
+[package.extras]
+qa = ["flake8 (==3.8.3)", "mypy (==0.782)"]
+testing = ["docopt", "pytest (<6.0.0)"]
+
+[[package]]
+name = "pexpect"
+version = "4.9.0"
+description = "Pexpect allows easy control of interactive console applications."
+optional = false
+python-versions = "*"
+files = [
+ {file = "pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523"},
+ {file = "pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f"},
+]
+
+[package.dependencies]
+ptyprocess = ">=0.5"
+
+[[package]]
+name = "platformdirs"
+version = "4.2.0"
+description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
+optional = false
+python-versions = ">=3.8"
+files = [
+ {file = "platformdirs-4.2.0-py3-none-any.whl", hash = "sha256:0614df2a2f37e1a662acbd8e2b25b92ccf8632929bc6d43467e17fe89c75e068"},
+ {file = "platformdirs-4.2.0.tar.gz", hash = "sha256:ef0cc731df711022c174543cb70a9b5bd22e5a9337c8624ef2c2ceb8ddad8768"},
+]
+
+[package.extras]
+docs = ["furo (>=2023.9.10)", "proselint (>=0.13)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"]
+test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)"]
+
+[[package]]
+name = "progress"
+version = "1.6"
+description = "Easy to use progress bars"
+optional = false
+python-versions = "*"
+files = [
+ {file = "progress-1.6.tar.gz", hash = "sha256:c9c86e98b5c03fa1fe11e3b67c1feda4788b8d0fe7336c2ff7d5644ccfba34cd"},
+]
+
+[[package]]
+name = "prompt-toolkit"
+version = "3.0.43"
+description = "Library for building powerful interactive command lines in Python"
+optional = false
+python-versions = ">=3.7.0"
+files = [
+ {file = "prompt_toolkit-3.0.43-py3-none-any.whl", hash = "sha256:a11a29cb3bf0a28a387fe5122cdb649816a957cd9261dcedf8c9f1fef33eacf6"},
+ {file = "prompt_toolkit-3.0.43.tar.gz", hash = "sha256:3527b7af26106cbc65a040bcc84839a3566ec1b051bb0bfe953631e704b0ff7d"},
+]
+
+[package.dependencies]
+wcwidth = "*"
+
+[[package]]
+name = "psutil"
+version = "5.9.8"
+description = "Cross-platform lib for process and system monitoring in Python."
+optional = false
+python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"
+files = [
+ {file = "psutil-5.9.8-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:26bd09967ae00920df88e0352a91cff1a78f8d69b3ecabbfe733610c0af486c8"},
+ {file = "psutil-5.9.8-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:05806de88103b25903dff19bb6692bd2e714ccf9e668d050d144012055cbca73"},
+ {file = "psutil-5.9.8-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:611052c4bc70432ec770d5d54f64206aa7203a101ec273a0cd82418c86503bb7"},
+ {file = "psutil-5.9.8-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:50187900d73c1381ba1454cf40308c2bf6f34268518b3f36a9b663ca87e65e36"},
+ {file = "psutil-5.9.8-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:02615ed8c5ea222323408ceba16c60e99c3f91639b07da6373fb7e6539abc56d"},
+ {file = "psutil-5.9.8-cp27-none-win32.whl", hash = "sha256:36f435891adb138ed3c9e58c6af3e2e6ca9ac2f365efe1f9cfef2794e6c93b4e"},
+ {file = "psutil-5.9.8-cp27-none-win_amd64.whl", hash = "sha256:bd1184ceb3f87651a67b2708d4c3338e9b10c5df903f2e3776b62303b26cb631"},
+ {file = "psutil-5.9.8-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:aee678c8720623dc456fa20659af736241f575d79429a0e5e9cf88ae0605cc81"},
+ {file = "psutil-5.9.8-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8cb6403ce6d8e047495a701dc7c5bd788add903f8986d523e3e20b98b733e421"},
+ {file = "psutil-5.9.8-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d06016f7f8625a1825ba3732081d77c94589dca78b7a3fc072194851e88461a4"},
+ {file = "psutil-5.9.8-cp36-cp36m-win32.whl", hash = "sha256:7d79560ad97af658a0f6adfef8b834b53f64746d45b403f225b85c5c2c140eee"},
+ {file = "psutil-5.9.8-cp36-cp36m-win_amd64.whl", hash = "sha256:27cc40c3493bb10de1be4b3f07cae4c010ce715290a5be22b98493509c6299e2"},
+ {file = "psutil-5.9.8-cp37-abi3-win32.whl", hash = "sha256:bc56c2a1b0d15aa3eaa5a60c9f3f8e3e565303b465dbf57a1b730e7a2b9844e0"},
+ {file = "psutil-5.9.8-cp37-abi3-win_amd64.whl", hash = "sha256:8db4c1b57507eef143a15a6884ca10f7c73876cdf5d51e713151c1236a0e68cf"},
+ {file = "psutil-5.9.8-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:d16bbddf0693323b8c6123dd804100241da461e41d6e332fb0ba6058f630f8c8"},
+ {file = "psutil-5.9.8.tar.gz", hash = "sha256:6be126e3225486dff286a8fb9a06246a5253f4c7c53b475ea5f5ac934e64194c"},
+]
+
+[package.extras]
+test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"]
+
+[[package]]
+name = "ptyprocess"
+version = "0.7.0"
+description = "Run a subprocess in a pseudo terminal"
+optional = false
+python-versions = "*"
+files = [
+ {file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"},
+ {file = "ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"},
+]
+
+[[package]]
+name = "pure-eval"
+version = "0.2.2"
+description = "Safely evaluate AST nodes without side effects"
+optional = false
+python-versions = "*"
+files = [
+ {file = "pure_eval-0.2.2-py3-none-any.whl", hash = "sha256:01eaab343580944bc56080ebe0a674b39ec44a945e6d09ba7db3cb8cec289350"},
+ {file = "pure_eval-0.2.2.tar.gz", hash = "sha256:2b45320af6dfaa1750f543d714b6d1c520a1688dec6fd24d339063ce0aaa9ac3"},
+]
+
+[package.extras]
+tests = ["pytest"]
+
+[[package]]
+name = "pycparser"
+version = "2.21"
+description = "C parser in Python"
+optional = false
+python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
+files = [
+ {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"},
+ {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"},
+]
+
+[[package]]
+name = "pygments"
+version = "2.17.2"
+description = "Pygments is a syntax highlighting package written in Python."
+optional = false
+python-versions = ">=3.7"
+files = [
+ {file = "pygments-2.17.2-py3-none-any.whl", hash = "sha256:b27c2826c47d0f3219f29554824c30c5e8945175d888647acd804ddd04af846c"},
+ {file = "pygments-2.17.2.tar.gz", hash = "sha256:da46cec9fd2de5be3a8a784f434e4c4ab670b4ff54d605c4c2717e9d49c4c367"},
+]
+
+[package.extras]
+plugins = ["importlib-metadata"]
+windows-terminal = ["colorama (>=0.4.6)"]
+
+[[package]]
+name = "python-dateutil"
+version = "2.9.0.post0"
+description = "Extensions to the standard Python datetime module"
+optional = false
+python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7"
+files = [
+ {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"},
+ {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"},
+]
+
+[package.dependencies]
+six = ">=1.5"
+
+[[package]]
+name = "pytz"
+version = "2024.1"
+description = "World timezone definitions, modern and historical"
+optional = false
+python-versions = "*"
+files = [
+ {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"},
+ {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"},
+]
+
+[[package]]
+name = "pywin32"
+version = "306"
+description = "Python for Window Extensions"
+optional = false
+python-versions = "*"
+files = [
+ {file = "pywin32-306-cp310-cp310-win32.whl", hash = "sha256:06d3420a5155ba65f0b72f2699b5bacf3109f36acbe8923765c22938a69dfc8d"},
+ {file = "pywin32-306-cp310-cp310-win_amd64.whl", hash = "sha256:84f4471dbca1887ea3803d8848a1616429ac94a4a8d05f4bc9c5dcfd42ca99c8"},
+ {file = "pywin32-306-cp311-cp311-win32.whl", hash = "sha256:e65028133d15b64d2ed8f06dd9fbc268352478d4f9289e69c190ecd6818b6407"},
+ {file = "pywin32-306-cp311-cp311-win_amd64.whl", hash = "sha256:a7639f51c184c0272e93f244eb24dafca9b1855707d94c192d4a0b4c01e1100e"},
+ {file = "pywin32-306-cp311-cp311-win_arm64.whl", hash = "sha256:70dba0c913d19f942a2db25217d9a1b726c278f483a919f1abfed79c9cf64d3a"},
+ {file = "pywin32-306-cp312-cp312-win32.whl", hash = "sha256:383229d515657f4e3ed1343da8be101000562bf514591ff383ae940cad65458b"},
+ {file = "pywin32-306-cp312-cp312-win_amd64.whl", hash = "sha256:37257794c1ad39ee9be652da0462dc2e394c8159dfd913a8a4e8eb6fd346da0e"},
+ {file = "pywin32-306-cp312-cp312-win_arm64.whl", hash = "sha256:5821ec52f6d321aa59e2db7e0a35b997de60c201943557d108af9d4ae1ec7040"},
+ {file = "pywin32-306-cp37-cp37m-win32.whl", hash = "sha256:1c73ea9a0d2283d889001998059f5eaaba3b6238f767c9cf2833b13e6a685f65"},
+ {file = "pywin32-306-cp37-cp37m-win_amd64.whl", hash = "sha256:72c5f621542d7bdd4fdb716227be0dd3f8565c11b280be6315b06ace35487d36"},
+ {file = "pywin32-306-cp38-cp38-win32.whl", hash = "sha256:e4c092e2589b5cf0d365849e73e02c391c1349958c5ac3e9d5ccb9a28e017b3a"},
+ {file = "pywin32-306-cp38-cp38-win_amd64.whl", hash = "sha256:e8ac1ae3601bee6ca9f7cb4b5363bf1c0badb935ef243c4733ff9a393b1690c0"},
+ {file = "pywin32-306-cp39-cp39-win32.whl", hash = "sha256:e25fd5b485b55ac9c057f67d94bc203f3f6595078d1fb3b458c9c28b7153a802"},
+ {file = "pywin32-306-cp39-cp39-win_amd64.whl", hash = "sha256:39b61c15272833b5c329a2989999dcae836b1eed650252ab1b7bfbe1d59f30f4"},
+]
+
+[[package]]
+name = "pyzmq"
+version = "25.1.2"
+description = "Python bindings for 0MQ"
+optional = false
+python-versions = ">=3.6"
+files = [
+ {file = "pyzmq-25.1.2-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:e624c789359f1a16f83f35e2c705d07663ff2b4d4479bad35621178d8f0f6ea4"},
+ {file = "pyzmq-25.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:49151b0efece79f6a79d41a461d78535356136ee70084a1c22532fc6383f4ad0"},
+ {file = "pyzmq-25.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d9a5f194cf730f2b24d6af1f833c14c10f41023da46a7f736f48b6d35061e76e"},
+ {file = "pyzmq-25.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:faf79a302f834d9e8304fafdc11d0d042266667ac45209afa57e5efc998e3872"},
+ {file = "pyzmq-25.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f51a7b4ead28d3fca8dda53216314a553b0f7a91ee8fc46a72b402a78c3e43d"},
+ {file = "pyzmq-25.1.2-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:0ddd6d71d4ef17ba5a87becf7ddf01b371eaba553c603477679ae817a8d84d75"},
+ {file = "pyzmq-25.1.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:246747b88917e4867e2367b005fc8eefbb4a54b7db363d6c92f89d69abfff4b6"},
+ {file = "pyzmq-25.1.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:00c48ae2fd81e2a50c3485de1b9d5c7c57cd85dc8ec55683eac16846e57ac979"},
+ {file = "pyzmq-25.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:5a68d491fc20762b630e5db2191dd07ff89834086740f70e978bb2ef2668be08"},
+ {file = "pyzmq-25.1.2-cp310-cp310-win32.whl", hash = "sha256:09dfe949e83087da88c4a76767df04b22304a682d6154de2c572625c62ad6886"},
+ {file = "pyzmq-25.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:fa99973d2ed20417744fca0073390ad65ce225b546febb0580358e36aa90dba6"},
+ {file = "pyzmq-25.1.2-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:82544e0e2d0c1811482d37eef297020a040c32e0687c1f6fc23a75b75db8062c"},
+ {file = "pyzmq-25.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:01171fc48542348cd1a360a4b6c3e7d8f46cdcf53a8d40f84db6707a6768acc1"},
+ {file = "pyzmq-25.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc69c96735ab501419c432110016329bf0dea8898ce16fab97c6d9106dc0b348"},
+ {file = "pyzmq-25.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3e124e6b1dd3dfbeb695435dff0e383256655bb18082e094a8dd1f6293114642"},
+ {file = "pyzmq-25.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7598d2ba821caa37a0f9d54c25164a4fa351ce019d64d0b44b45540950458840"},
+ {file = "pyzmq-25.1.2-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:d1299d7e964c13607efd148ca1f07dcbf27c3ab9e125d1d0ae1d580a1682399d"},
+ {file = "pyzmq-25.1.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:4e6f689880d5ad87918430957297c975203a082d9a036cc426648fcbedae769b"},
+ {file = "pyzmq-25.1.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:cc69949484171cc961e6ecd4a8911b9ce7a0d1f738fcae717177c231bf77437b"},
+ {file = "pyzmq-25.1.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9880078f683466b7f567b8624bfc16cad65077be046b6e8abb53bed4eeb82dd3"},
+ {file = "pyzmq-25.1.2-cp311-cp311-win32.whl", hash = "sha256:4e5837af3e5aaa99a091302df5ee001149baff06ad22b722d34e30df5f0d9097"},
+ {file = "pyzmq-25.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:25c2dbb97d38b5ac9fd15586e048ec5eb1e38f3d47fe7d92167b0c77bb3584e9"},
+ {file = "pyzmq-25.1.2-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:11e70516688190e9c2db14fcf93c04192b02d457b582a1f6190b154691b4c93a"},
+ {file = "pyzmq-25.1.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:313c3794d650d1fccaaab2df942af9f2c01d6217c846177cfcbc693c7410839e"},
+ {file = "pyzmq-25.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b3cbba2f47062b85fe0ef9de5b987612140a9ba3a9c6d2543c6dec9f7c2ab27"},
+ {file = "pyzmq-25.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc31baa0c32a2ca660784d5af3b9487e13b61b3032cb01a115fce6588e1bed30"},
+ {file = "pyzmq-25.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:02c9087b109070c5ab0b383079fa1b5f797f8d43e9a66c07a4b8b8bdecfd88ee"},
+ {file = "pyzmq-25.1.2-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:f8429b17cbb746c3e043cb986328da023657e79d5ed258b711c06a70c2ea7537"},
+ {file = "pyzmq-25.1.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:5074adeacede5f810b7ef39607ee59d94e948b4fd954495bdb072f8c54558181"},
+ {file = "pyzmq-25.1.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:7ae8f354b895cbd85212da245f1a5ad8159e7840e37d78b476bb4f4c3f32a9fe"},
+ {file = "pyzmq-25.1.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:b264bf2cc96b5bc43ce0e852be995e400376bd87ceb363822e2cb1964fcdc737"},
+ {file = "pyzmq-25.1.2-cp312-cp312-win32.whl", hash = "sha256:02bbc1a87b76e04fd780b45e7f695471ae6de747769e540da909173d50ff8e2d"},
+ {file = "pyzmq-25.1.2-cp312-cp312-win_amd64.whl", hash = "sha256:ced111c2e81506abd1dc142e6cd7b68dd53747b3b7ae5edbea4578c5eeff96b7"},
+ {file = "pyzmq-25.1.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:7b6d09a8962a91151f0976008eb7b29b433a560fde056ec7a3db9ec8f1075438"},
+ {file = "pyzmq-25.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:967668420f36878a3c9ecb5ab33c9d0ff8d054f9c0233d995a6d25b0e95e1b6b"},
+ {file = "pyzmq-25.1.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5edac3f57c7ddaacdb4d40f6ef2f9e299471fc38d112f4bc6d60ab9365445fb0"},
+ {file = "pyzmq-25.1.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:0dabfb10ef897f3b7e101cacba1437bd3a5032ee667b7ead32bbcdd1a8422fe7"},
+ {file = "pyzmq-25.1.2-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:2c6441e0398c2baacfe5ba30c937d274cfc2dc5b55e82e3749e333aabffde561"},
+ {file = "pyzmq-25.1.2-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:16b726c1f6c2e7625706549f9dbe9b06004dfbec30dbed4bf50cbdfc73e5b32a"},
+ {file = "pyzmq-25.1.2-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:a86c2dd76ef71a773e70551a07318b8e52379f58dafa7ae1e0a4be78efd1ff16"},
+ {file = "pyzmq-25.1.2-cp36-cp36m-win32.whl", hash = "sha256:359f7f74b5d3c65dae137f33eb2bcfa7ad9ebefd1cab85c935f063f1dbb245cc"},
+ {file = "pyzmq-25.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:55875492f820d0eb3417b51d96fea549cde77893ae3790fd25491c5754ea2f68"},
+ {file = "pyzmq-25.1.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b8c8a419dfb02e91b453615c69568442e897aaf77561ee0064d789705ff37a92"},
+ {file = "pyzmq-25.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8807c87fa893527ae8a524c15fc505d9950d5e856f03dae5921b5e9aa3b8783b"},
+ {file = "pyzmq-25.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5e319ed7d6b8f5fad9b76daa0a68497bc6f129858ad956331a5835785761e003"},
+ {file = "pyzmq-25.1.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:3c53687dde4d9d473c587ae80cc328e5b102b517447456184b485587ebd18b62"},
+ {file = "pyzmq-25.1.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:9add2e5b33d2cd765ad96d5eb734a5e795a0755f7fc49aa04f76d7ddda73fd70"},
+ {file = "pyzmq-25.1.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:e690145a8c0c273c28d3b89d6fb32c45e0d9605b2293c10e650265bf5c11cfec"},
+ {file = "pyzmq-25.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:00a06faa7165634f0cac1abb27e54d7a0b3b44eb9994530b8ec73cf52e15353b"},
+ {file = "pyzmq-25.1.2-cp37-cp37m-win32.whl", hash = "sha256:0f97bc2f1f13cb16905a5f3e1fbdf100e712d841482b2237484360f8bc4cb3d7"},
+ {file = "pyzmq-25.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:6cc0020b74b2e410287e5942e1e10886ff81ac77789eb20bec13f7ae681f0fdd"},
+ {file = "pyzmq-25.1.2-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:bef02cfcbded83473bdd86dd8d3729cd82b2e569b75844fb4ea08fee3c26ae41"},
+ {file = "pyzmq-25.1.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:e10a4b5a4b1192d74853cc71a5e9fd022594573926c2a3a4802020360aa719d8"},
+ {file = "pyzmq-25.1.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8c5f80e578427d4695adac6fdf4370c14a2feafdc8cb35549c219b90652536ae"},
+ {file = "pyzmq-25.1.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5dde6751e857910c1339890f3524de74007958557593b9e7e8c5f01cd919f8a7"},
+ {file = "pyzmq-25.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea1608dd169da230a0ad602d5b1ebd39807ac96cae1845c3ceed39af08a5c6df"},
+ {file = "pyzmq-25.1.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:0f513130c4c361201da9bc69df25a086487250e16b5571ead521b31ff6b02220"},
+ {file = "pyzmq-25.1.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:019744b99da30330798bb37df33549d59d380c78e516e3bab9c9b84f87a9592f"},
+ {file = "pyzmq-25.1.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2e2713ef44be5d52dd8b8e2023d706bf66cb22072e97fc71b168e01d25192755"},
+ {file = "pyzmq-25.1.2-cp38-cp38-win32.whl", hash = "sha256:07cd61a20a535524906595e09344505a9bd46f1da7a07e504b315d41cd42eb07"},
+ {file = "pyzmq-25.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb7e49a17fb8c77d3119d41a4523e432eb0c6932187c37deb6fbb00cc3028088"},
+ {file = "pyzmq-25.1.2-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:94504ff66f278ab4b7e03e4cba7e7e400cb73bfa9d3d71f58d8972a8dc67e7a6"},
+ {file = "pyzmq-25.1.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6dd0d50bbf9dca1d0bdea219ae6b40f713a3fb477c06ca3714f208fd69e16fd8"},
+ {file = "pyzmq-25.1.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:004ff469d21e86f0ef0369717351073e0e577428e514c47c8480770d5e24a565"},
+ {file = "pyzmq-25.1.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c0b5ca88a8928147b7b1e2dfa09f3b6c256bc1135a1338536cbc9ea13d3b7add"},
+ {file = "pyzmq-25.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c9a79f1d2495b167119d02be7448bfba57fad2a4207c4f68abc0bab4b92925b"},
+ {file = "pyzmq-25.1.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:518efd91c3d8ac9f9b4f7dd0e2b7b8bf1a4fe82a308009016b07eaa48681af82"},
+ {file = "pyzmq-25.1.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:1ec23bd7b3a893ae676d0e54ad47d18064e6c5ae1fadc2f195143fb27373f7f6"},
+ {file = "pyzmq-25.1.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:db36c27baed588a5a8346b971477b718fdc66cf5b80cbfbd914b4d6d355e44e2"},
+ {file = "pyzmq-25.1.2-cp39-cp39-win32.whl", hash = "sha256:39b1067f13aba39d794a24761e385e2eddc26295826530a8c7b6c6c341584289"},
+ {file = "pyzmq-25.1.2-cp39-cp39-win_amd64.whl", hash = "sha256:8e9f3fabc445d0ce320ea2c59a75fe3ea591fdbdeebec5db6de530dd4b09412e"},
+ {file = "pyzmq-25.1.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a8c1d566344aee826b74e472e16edae0a02e2a044f14f7c24e123002dcff1c05"},
+ {file = "pyzmq-25.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:759cfd391a0996345ba94b6a5110fca9c557ad4166d86a6e81ea526c376a01e8"},
+ {file = "pyzmq-25.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c61e346ac34b74028ede1c6b4bcecf649d69b707b3ff9dc0fab453821b04d1e"},
+ {file = "pyzmq-25.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4cb8fc1f8d69b411b8ec0b5f1ffbcaf14c1db95b6bccea21d83610987435f1a4"},
+ {file = "pyzmq-25.1.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:3c00c9b7d1ca8165c610437ca0c92e7b5607b2f9076f4eb4b095c85d6e680a1d"},
+ {file = "pyzmq-25.1.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:df0c7a16ebb94452d2909b9a7b3337940e9a87a824c4fc1c7c36bb4404cb0cde"},
+ {file = "pyzmq-25.1.2-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:45999e7f7ed5c390f2e87ece7f6c56bf979fb213550229e711e45ecc7d42ccb8"},
+ {file = "pyzmq-25.1.2-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ac170e9e048b40c605358667aca3d94e98f604a18c44bdb4c102e67070f3ac9b"},
+ {file = "pyzmq-25.1.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d1b604734bec94f05f81b360a272fc824334267426ae9905ff32dc2be433ab96"},
+ {file = "pyzmq-25.1.2-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:a793ac733e3d895d96f865f1806f160696422554e46d30105807fdc9841b9f7d"},
+ {file = "pyzmq-25.1.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0806175f2ae5ad4b835ecd87f5f85583316b69f17e97786f7443baaf54b9bb98"},
+ {file = "pyzmq-25.1.2-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:ef12e259e7bc317c7597d4f6ef59b97b913e162d83b421dd0db3d6410f17a244"},
+ {file = "pyzmq-25.1.2-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ea253b368eb41116011add00f8d5726762320b1bda892f744c91997b65754d73"},
+ {file = "pyzmq-25.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b9b1f2ad6498445a941d9a4fee096d387fee436e45cc660e72e768d3d8ee611"},
+ {file = "pyzmq-25.1.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:8b14c75979ce932c53b79976a395cb2a8cd3aaf14aef75e8c2cb55a330b9b49d"},
+ {file = "pyzmq-25.1.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:889370d5174a741a62566c003ee8ddba4b04c3f09a97b8000092b7ca83ec9c49"},
+ {file = "pyzmq-25.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a18fff090441a40ffda8a7f4f18f03dc56ae73f148f1832e109f9bffa85df15"},
+ {file = "pyzmq-25.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:99a6b36f95c98839ad98f8c553d8507644c880cf1e0a57fe5e3a3f3969040882"},
+ {file = "pyzmq-25.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4345c9a27f4310afbb9c01750e9461ff33d6fb74cd2456b107525bbeebcb5be3"},
+ {file = "pyzmq-25.1.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:3516e0b6224cf6e43e341d56da15fd33bdc37fa0c06af4f029f7d7dfceceabbc"},
+ {file = "pyzmq-25.1.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:146b9b1f29ead41255387fb07be56dc29639262c0f7344f570eecdcd8d683314"},
+ {file = "pyzmq-25.1.2.tar.gz", hash = "sha256:93f1aa311e8bb912e34f004cf186407a4e90eec4f0ecc0efd26056bf7eda0226"},
+]
+
+[package.dependencies]
+cffi = {version = "*", markers = "implementation_name == \"pypy\""}
+
+[[package]]
+name = "six"
+version = "1.16.0"
+description = "Python 2 and 3 compatibility utilities"
+optional = false
+python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
+files = [
+ {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"},
+ {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
+]
+
+[[package]]
+name = "stack-data"
+version = "0.6.3"
+description = "Extract data from python stack frames and tracebacks for informative displays"
+optional = false
+python-versions = "*"
+files = [
+ {file = "stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695"},
+ {file = "stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9"},
+]
+
+[package.dependencies]
+asttokens = ">=2.1.0"
+executing = ">=1.2.0"
+pure-eval = "*"
+
+[package.extras]
+tests = ["cython", "littleutils", "pygments", "pytest", "typeguard"]
+
+[[package]]
+name = "tabulate"
+version = "0.9.0"
+description = "Pretty-print tabular data"
+optional = false
+python-versions = ">=3.7"
+files = [
+ {file = "tabulate-0.9.0-py3-none-any.whl", hash = "sha256:024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f"},
+ {file = "tabulate-0.9.0.tar.gz", hash = "sha256:0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c"},
+]
+
+[package.extras]
+widechars = ["wcwidth"]
+
+[[package]]
+name = "tornado"
+version = "6.4"
+description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed."
+optional = false
+python-versions = ">= 3.8"
+files = [
+ {file = "tornado-6.4-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:02ccefc7d8211e5a7f9e8bc3f9e5b0ad6262ba2fbb683a6443ecc804e5224ce0"},
+ {file = "tornado-6.4-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:27787de946a9cffd63ce5814c33f734c627a87072ec7eed71f7fc4417bb16263"},
+ {file = "tornado-6.4-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f7894c581ecdcf91666a0912f18ce5e757213999e183ebfc2c3fdbf4d5bd764e"},
+ {file = "tornado-6.4-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e43bc2e5370a6a8e413e1e1cd0c91bedc5bd62a74a532371042a18ef19e10579"},
+ {file = "tornado-6.4-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f0251554cdd50b4b44362f73ad5ba7126fc5b2c2895cc62b14a1c2d7ea32f212"},
+ {file = "tornado-6.4-cp38-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:fd03192e287fbd0899dd8f81c6fb9cbbc69194d2074b38f384cb6fa72b80e9c2"},
+ {file = "tornado-6.4-cp38-abi3-musllinux_1_1_i686.whl", hash = "sha256:88b84956273fbd73420e6d4b8d5ccbe913c65d31351b4c004ae362eba06e1f78"},
+ {file = "tornado-6.4-cp38-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:71ddfc23a0e03ef2df1c1397d859868d158c8276a0603b96cf86892bff58149f"},
+ {file = "tornado-6.4-cp38-abi3-win32.whl", hash = "sha256:6f8a6c77900f5ae93d8b4ae1196472d0ccc2775cc1dfdc9e7727889145c45052"},
+ {file = "tornado-6.4-cp38-abi3-win_amd64.whl", hash = "sha256:10aeaa8006333433da48dec9fe417877f8bcc21f48dda8d661ae79da357b2a63"},
+ {file = "tornado-6.4.tar.gz", hash = "sha256:72291fa6e6bc84e626589f1c29d90a5a6d593ef5ae68052ee2ef000dfd273dee"},
+]
+
+[[package]]
+name = "traitlets"
+version = "5.14.2"
+description = "Traitlets Python configuration system"
+optional = false
+python-versions = ">=3.8"
+files = [
+ {file = "traitlets-5.14.2-py3-none-any.whl", hash = "sha256:fcdf85684a772ddeba87db2f398ce00b40ff550d1528c03c14dbf6a02003cd80"},
+ {file = "traitlets-5.14.2.tar.gz", hash = "sha256:8cdd83c040dab7d1dee822678e5f5d100b514f7b72b01615b26fc5718916fdf9"},
+]
+
+[package.extras]
+docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"]
+test = ["argcomplete (>=3.0.3)", "mypy (>=1.7.0)", "pre-commit", "pytest (>=7.0,<8.1)", "pytest-mock", "pytest-mypy-testing"]
+
+[[package]]
+name = "tzdata"
+version = "2024.1"
+description = "Provider of IANA time zone data"
+optional = false
+python-versions = ">=2"
+files = [
+ {file = "tzdata-2024.1-py2.py3-none-any.whl", hash = "sha256:9068bc196136463f5245e51efda838afa15aaeca9903f49050dfa2679db4d252"},
+ {file = "tzdata-2024.1.tar.gz", hash = "sha256:2674120f8d891909751c38abcdfd386ac0a5a1127954fbc332af6b5ceae07efd"},
+]
+
+[[package]]
+name = "wcwidth"
+version = "0.2.13"
+description = "Measures the displayed width of unicode strings in a terminal"
+optional = false
+python-versions = "*"
+files = [
+ {file = "wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859"},
+ {file = "wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5"},
+]
[metadata]
-lock-version = "1.1"
+lock-version = "2.0"
python-versions = "^3.10"
-content-hash = "17ca553b0bb9298a6ed528dd21e544ca433179192dba32a9920168e1c199d74f"
-
-[metadata.files]
+content-hash = "c88990c3c59bcf5dda61e154db004a4d91620ca6b7f0a61e97b18eb7d64cdc89"
diff --git a/pyproject.toml b/pyproject.toml
index 1fc9591..918b1d8 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -14,6 +14,10 @@ readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
+progress = "^1.6"
+pandas = "^2.2.1"
+jinja2 = "^3.1.3"
+tabulate = "^0.9.0"
[tool.poetry.dev-dependencies]
@@ -21,6 +25,10 @@ python = "^3.10"
aproc = 'nulrdcscripts.aproc.aproc:main'
vproc = 'nulrdcscripts.vproc.vproc:main'
ingest = 'nulrdcscripts.ingest.ingest:main'
+
+[tool.poetry.group.dev.dependencies]
+ipykernel = "^6.29.3"
+
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
\ No newline at end of file
diff --git a/samplefbyf.json b/samplefbyf.json
new file mode 100644
index 0000000..12051ce
--- /dev/null
+++ b/samplefbyf.json
@@ -0,0 +1,20232 @@
+{
+ "1": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "607",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "2": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "608",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "88",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "3": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "610",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "4": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "611",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "5": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "610",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "6": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "607",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "7": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "608",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "8": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "609",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "9": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "610",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "10": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "608",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "11": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "609",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "12": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "610",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "13": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "611",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "14": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "610",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "100",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "15": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "611",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "16": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "611",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "17": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "609",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "107",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "18": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "609",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "19": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "610",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "20": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "609",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "21": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "610",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "22": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "611",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "23": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "608",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "90",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "24": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "609",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "25": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "610",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "131",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "26": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "609",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "27": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "611",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "28": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "613",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "29": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "611",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "30": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "610",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "88",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "31": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "610",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "32": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "611",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "88",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "33": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "612",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "34": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "610",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "35": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "613",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "36": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "614",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "110",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "37": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "615",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "38": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "614",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "39": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "613",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "40": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "614",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "41": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "614",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "494",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "42": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "614",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "494",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "43": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "612",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "495",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "44": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "611",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "45": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "613",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "494",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "46": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "611",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "47": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "614",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "48": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "615",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "87",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "49": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "612",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "50": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "613",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "51": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "52": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "53": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "54": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "614",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "55": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "612",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "56": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "613",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "115",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "57": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "88",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "58": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "613",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "90",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "59": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "610",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "60": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "611",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "61": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "615",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "62": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "63": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "612",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "64": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "614",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "65": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "614",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "90",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "66": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "613",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "67": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "612",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "68": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "612",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "69": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "609",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "108",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "70": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "610",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "71": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "613",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "72": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "613",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "73": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "612",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "74": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "610",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "75": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "610",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "96",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "76": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "612",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "77": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "611",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "97",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "78": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "610",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "101",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "79": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "609",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "97",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "80": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "608",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "118",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "81": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "608",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "100",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "82": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "612",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "97",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "83": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "609",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "100",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "84": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "607",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "98",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "85": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "608",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "97",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "86": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "607",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "99",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "87": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "607",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "100",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "88": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "605",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "104",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "89": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "605",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "98",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "90": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "607",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "91": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "607",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "98",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "92": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "606",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "102",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "93": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "607",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "99",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "94": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "609",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "495",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "95": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "610",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "96": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "609",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "97",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "97": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "608",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "96",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "98": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "607",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "99",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "99": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "610",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "100": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "613",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "101": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "612",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "102": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "607",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "97",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "103": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "608",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "104": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "611",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "105": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "612",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "106": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "611",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "107": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "611",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "99",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "108": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "611",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "109": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "611",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "96",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "110": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "613",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "111": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "612",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "124",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "112": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "611",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "113": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "613",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "114": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "613",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "115": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "612",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "116": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "608",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "117": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "610",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "118": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "613",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "119": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "615",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "120": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "616",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "121": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "122": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "615",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "168",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "123": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "124": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "125": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "96",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "126": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "127": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "90",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "128": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "615",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "129": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "615",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "130": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "615",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "131": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "613",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "132": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "613",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "133": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "134": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "135": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "136": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "117",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "137": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "138": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "139": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "140": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "90",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "141": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "104",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "142": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "143": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "144": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "494",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "88",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "145": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "495",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "146": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "147": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "148": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "624",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "495",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "149": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "495",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "151",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "150": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "494",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "151": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "494",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "152": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "625",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "153": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "626",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "154": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "625",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "155": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "494",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "156": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "495",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "157": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "625",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "495",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "158": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "626",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "495",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "159": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "624",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "160": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "628",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "161": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "627",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "162": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "628",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "495",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "163": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "628",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "494",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "164": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "626",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "494",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "165": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "625",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "97",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "166": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "628",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "167": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "627",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "168": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "628",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "169": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "628",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "99",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "170": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "628",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "118",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "171": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "627",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "172": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "629",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "173": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "628",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "101",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "174": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "625",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "175": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "625",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "176": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "626",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "177": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "628",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "178": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "625",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "179": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "628",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "180": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "627",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "133",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "181": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "628",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "494",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "113",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "182": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "628",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "183": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "626",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "184": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "625",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "185": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "625",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "186": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "627",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "187": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "628",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "188": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "625",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "494",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "116",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "189": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "623",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "190": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "625",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "191": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "627",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "192": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "627",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "193": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "626",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "194": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "626",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "195": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "626",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "196": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "628",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "96",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "197": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "627",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "198": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "625",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "199": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "626",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "200": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "627",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "201": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "626",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "202": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "625",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "103",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "203": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "626",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "90",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "204": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "628",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "88",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "205": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "627",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "206": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "625",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "90",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "207": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "625",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "208": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "623",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "209": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "627",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "103",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "210": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "625",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "102",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "211": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "624",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "212": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "623",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "213": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "623",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "214": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "626",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "215": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "626",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "130",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "216": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "625",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "494",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "217": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "624",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "218": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "625",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "219": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "625",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "220": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "624",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "221": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "222": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "223": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "624",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "120",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "224": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "626",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "225": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "625",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "105",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "226": {
+ "ylow": {
+ "Video Value": "136",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "623",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "227": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "228": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "229": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "230": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "231": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "232": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "110",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "233": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "234": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "235": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "146",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "236": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "237": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "238": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "239": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "240": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "241": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "88",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "242": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "243": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "244": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "245": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "115",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "246": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "133",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "247": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "88",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "248": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "249": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "250": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "251": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "252": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "253": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "254": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "255": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "256": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "257": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "258": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "100",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "259": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "260": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "261": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "124",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "262": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "263": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "264": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "265": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "266": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "267": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "490",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "268": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "269": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "490",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "270": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "271": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "187",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "272": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "273": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "107",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "274": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "275": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "276": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "277": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "278": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "110",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "279": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "280": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "281": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "122",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "282": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "283": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "284": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "285": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "286": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "287": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "288": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "289": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "290": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "291": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "490",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "292": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "490",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "293": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "490",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "294": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "295": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "88",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "296": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "297": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "298": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "299": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "615",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "300": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "105",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "301": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "302": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "303": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "98",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "304": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "615",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "107",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "305": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "88",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "306": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "140",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "307": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "308": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "309": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "310": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "616",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "98",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "311": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "88",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "312": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "313": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "314": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "616",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "315": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "134",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "316": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "111",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "317": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "318": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "319": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "320": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "321": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "322": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "323": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "612",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "324": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "614",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "325": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "615",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "326": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "615",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "327": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "615",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "328": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "329": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "330": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "331": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "332": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "333": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "334": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "335": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "336": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "337": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "113",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "338": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "339": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "340": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "499",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "341": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "615",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "342": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "616",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "343": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "344": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "96",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "345": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "346": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "347": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "348": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "349": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "350": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "351": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "96",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "352": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "353": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "354": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "624",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "133",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "355": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "356": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "148",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "357": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "358": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "623",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "359": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "360": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "122",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "361": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "362": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "363": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "97",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "364": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "623",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "490",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "365": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "366": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "108",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "367": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "368": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "369": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "370": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "371": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "372": {
+ "ylow": {
+ "Video Value": "135",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "490",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "138",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "373": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "623",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "490",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "374": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "490",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "88",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "375": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "88",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "376": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "87",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "377": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "378": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "622",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "102",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "379": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "380": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "381": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "382": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "112",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "383": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "131",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "384": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "107",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "385": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "386": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "490",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "387": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "388": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "99",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "389": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "616",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "390": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "391": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "392": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "620",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "393": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "621",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "394": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "395": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "616",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "396": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "397": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "398": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "615",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "151",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "399": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "613",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "400": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "616",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "401": {
+ "ylow": {
+ "Video Value": "134",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "402": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "618",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "403": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "404": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "616",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "405": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "616",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "406": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "407": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "619",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "96",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "408": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "409": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "614",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "410": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "612",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "411": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "615",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "412": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "617",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "413": {
+ "ylow": {
+ "Video Value": "133",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "613",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "414": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "613",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "415": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "613",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "416": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "613",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "417": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "613",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "418": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "610",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "419": {
+ "ylow": {
+ "Video Value": "132",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "607",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "420": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "611",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "421": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "612",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "422": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "611",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "90",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "423": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "609",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "424": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "609",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "88",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "425": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "609",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "426": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "608",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "427": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "611",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "428": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "608",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "429": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "609",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "88",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "430": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "608",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "97",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "431": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "608",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "432": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "609",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "433": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "606",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "87",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "434": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "607",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "491",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "435": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "607",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "436": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "607",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "114",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "437": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "603",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "495",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "161",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "438": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "604",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "494",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "439": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "606",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "495",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "440": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "605",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "441": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "604",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "442": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "602",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "443": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "601",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "494",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "444": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "602",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "494",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "445": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "603",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "446": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "603",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "88",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "447": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "604",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "448": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "604",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "495",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "449": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "606",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "450": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "604",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "451": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "603",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "452": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "603",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "453": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "604",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "454": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "607",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "492",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "455": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "607",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "493",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "456": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "606",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "494",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "457": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "605",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "495",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "458": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "603",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "459": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "604",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "460": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "604",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "461": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "603",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "462": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "602",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "463": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "604",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "464": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "601",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "465": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "600",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "466": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "601",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "467": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "598",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "111",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "468": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "601",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "469": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "603",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "470": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "599",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "471": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "598",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "114",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "472": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "601",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "129",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "473": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "602",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "474": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "599",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "475": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "601",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "100",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "476": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "597",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "477": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "597",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "478": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "599",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "125",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "479": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "599",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "480": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "596",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "110",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "481": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "592",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "482": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "596",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "483": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "597",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "484": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "596",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "485": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "595",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "486": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "589",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "487": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "594",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "488": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "596",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "489": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "598",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "490": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "596",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "491": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "594",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "492": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "598",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "113",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "493": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "598",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "90",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "494": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "598",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "495": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "596",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "496": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "596",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "497": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "598",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "90",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "498": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "597",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "499": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "595",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "500": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "592",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "136",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "501": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "593",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "126",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "502": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "595",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "503": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "597",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "88",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "504": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "592",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "513",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "505": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "592",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "506": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "594",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "507": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "593",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "128",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "508": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "593",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "509": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "593",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "510": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "592",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "511": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "594",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "512": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "596",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "513": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "595",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "514": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "592",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "515": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "593",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "516": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "592",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "517": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "592",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "95",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "518": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "591",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "519": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "590",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "520": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "588",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "521": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "589",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "522": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "588",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "523": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "587",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "122",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "524": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "587",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "102",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "525": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "588",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "526": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "590",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "106",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "527": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "590",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "528": {
+ "ylow": {
+ "Video Value": "131",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "583",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "529": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "584",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "530": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "585",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "531": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "585",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "88",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "532": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "585",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "90",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "533": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "587",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "87",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "534": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "588",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "87",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "535": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "588",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "536": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "588",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "537": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "587",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "88",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "538": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "586",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "539": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "582",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "109",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "540": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "586",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "541": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "587",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "542": {
+ "ylow": {
+ "Video Value": "127",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "585",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "84",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "543": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "583",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "87",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "544": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "584",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "545": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "586",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "133",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "546": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "588",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "547": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "585",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "548": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "579",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "549": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "578",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "90",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "550": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "580",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "551": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "582",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "498",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "90",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "552": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "582",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "553": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "582",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "500",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "554": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "582",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "94",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "555": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "582",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "556": {
+ "ylow": {
+ "Video Value": "130",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "583",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "145",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "557": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "580",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "558": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "582",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "102",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "559": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "581",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "560": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "583",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "561": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "585",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "562": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "582",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "563": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "580",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "564": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "582",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "565": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "583",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "88",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "566": {
+ "ylow": {
+ "Video Value": "127",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "581",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "567": {
+ "ylow": {
+ "Video Value": "127",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "580",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "501",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "568": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "581",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "111",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "569": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "583",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "570": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "582",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "571": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "581",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "572": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "578",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "573": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "578",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "495",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "88",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "574": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "580",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "575": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "580",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "576": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "580",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "577": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "578",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "109",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "578": {
+ "ylow": {
+ "Video Value": "127",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "579",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "579": {
+ "ylow": {
+ "Video Value": "127",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "579",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "495",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "580": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "580",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "129",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "581": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "580",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "582": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "580",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "583": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "580",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "584": {
+ "ylow": {
+ "Video Value": "127",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "581",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "116",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "585": {
+ "ylow": {
+ "Video Value": "127",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "579",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "586": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "575",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "587": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "576",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "588": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "577",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "589": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "576",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "88",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "590": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "576",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "116",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "591": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "576",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "91",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "592": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "577",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "88",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "593": {
+ "ylow": {
+ "Video Value": "128",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "578",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "497",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "92",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "594": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "582",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "89",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ },
+ "595": {
+ "ylow": {
+ "Video Value": "129",
+ "Pass/Fail": "Pass"
+ },
+ "yhigh": {
+ "Video Value": "580",
+ "Pass/Fail": "Pass"
+ },
+ "ulow": {
+ "Video Value": "496",
+ "Pass/Fail": "Pass"
+ },
+ "uhigh": {
+ "Video Value": "512",
+ "Pass/Fail": "Pass"
+ },
+ "vlow": {
+ "Video Value": "502",
+ "Pass/Fail": "Pass"
+ },
+ "vhigh": {
+ "Video Value": "514",
+ "Pass/Fail": "Pass"
+ },
+ "satmax": {
+ "Video Values": "93",
+ "Pass/Fail": "Pass"
+ },
+ "vrep": {
+ "Video Value": "0",
+ "Pass/Fail": "Pass"
+ }
+ }
+}
\ No newline at end of file
diff --git a/videodata.csv b/videodata.csv
new file mode 100644
index 0000000..ed9327a
--- /dev/null
+++ b/videodata.csv
@@ -0,0 +1,3598 @@
+,Frame Time,ubitdepth,ymin,ylow,yavg,yhigh,ymax,umin,ulow,uavg,uhigh,umax,vmin,vlow,vavg,vhigh,vmax,satmin,satlow,satavg,sathigh,satmax,huemed,hueavg,ydif,udif,vdif,ybitdepth,vbitdepth
+1,0.0,10.0,4.0,67.0,127.534,201.0,944.0,88.0,469.0,497.068,526.0,721.0,352.0,500.0,516.045,532.0,722.0,0.0,5.0,29.3857,64.0,427.0,113.0,137.589,0.0,0.0,0.0,10.0,10.0
+2,0.033,10.0,4.0,66.0,126.079,201.0,941.0,84.0,469.0,497.204,525.0,721.0,380.0,499.0,515.728,532.0,769.0,0.0,5.0,29.2924,63.0,435.0,112.0,137.864,16.2291,15.0909,10.9393,10.0,10.0
+3,0.067,10.0,4.0,67.0,127.343,203.0,1019.0,114.0,468.0,496.523,525.0,723.0,352.0,499.0,516.017,533.0,749.0,0.0,5.0,29.9017,64.0,408.0,111.0,136.775,13.295,15.2955,10.8338,10.0,10.0
+4,0.1,10.0,4.0,66.0,127.055,202.0,945.0,114.0,468.0,496.65,524.0,732.0,372.0,499.0,515.997,533.0,728.0,0.0,5.0,29.4897,63.0,403.0,112.0,136.968,12.2822,15.0964,10.8751,10.0,10.0
+5,0.133,10.0,4.0,66.0,126.749,200.0,963.0,107.0,469.0,496.923,526.0,724.0,372.0,499.0,515.913,532.0,741.0,0.0,5.0,29.4925,63.0,406.0,112.0,137.385,13.2825,15.102,10.8055,10.0,10.0
+6,0.167,10.0,4.0,66.0,126.894,201.0,960.0,35.0,469.0,496.915,525.0,746.0,374.0,499.0,516.154,533.0,734.0,0.0,5.0,29.5187,64.0,482.0,112.0,137.46,11.9191,15.1491,10.8679,10.0,10.0
+7,0.2,10.0,4.0,64.0,125.433,199.0,946.0,107.0,469.0,496.87,525.0,727.0,386.0,499.0,515.827,532.0,741.0,0.0,5.0,29.4759,63.0,409.0,111.0,137.202,13.8115,15.0696,10.7625,10.0,10.0
+8,0.234,10.0,4.0,66.0,126.357,200.0,953.0,108.0,468.0,496.814,525.0,718.0,374.0,499.0,516.081,533.0,735.0,0.0,5.0,29.7972,64.0,408.0,113.0,137.799,13.7458,15.3163,10.8267,10.0,10.0
+9,0.267,10.0,4.0,66.0,127.293,201.0,933.0,104.0,468.0,496.726,525.0,721.0,368.0,499.0,516.078,533.0,736.0,0.0,5.0,29.5247,63.0,409.0,112.0,136.824,13.6696,15.2285,10.8668,10.0,10.0
+10,0.3,10.0,4.0,66.0,127.288,203.0,1019.0,96.0,469.0,496.742,524.0,719.0,360.0,499.0,515.652,532.0,741.0,0.0,5.0,29.4265,63.0,420.0,111.0,136.454,16.7543,15.2413,10.9494,10.0,10.0
+11,0.334,10.0,4.0,66.0,127.556,203.0,936.0,114.0,468.0,496.532,524.0,727.0,377.0,499.0,516.125,533.0,742.0,0.0,5.0,29.6927,63.0,402.0,112.0,136.21,13.6547,15.2031,10.9026,10.0,10.0
+12,0.367,10.0,4.0,65.0,126.855,204.0,1019.0,114.0,469.0,496.907,526.0,711.0,370.0,499.0,515.77,532.0,762.0,0.0,5.0,29.6647,64.0,402.0,111.0,137.512,12.9479,15.1227,10.8353,10.0,10.0
+13,0.4,10.0,4.0,67.0,127.313,202.0,935.0,106.0,468.0,496.451,525.0,725.0,348.0,499.0,515.927,532.0,776.0,0.0,5.0,29.7604,64.0,407.0,111.0,136.359,15.0578,15.1643,10.7613,10.0,10.0
+14,0.434,10.0,4.0,66.0,127.236,202.0,960.0,91.0,468.0,496.598,525.0,716.0,358.0,499.0,516.039,532.0,744.0,0.0,5.0,29.6623,64.0,425.0,112.0,136.815,11.5971,15.0699,10.8894,10.0,10.0
+15,0.467,10.0,4.0,67.0,127.59,203.0,962.0,124.0,468.0,496.375,524.0,743.0,380.0,499.0,515.711,532.0,727.0,0.0,6.0,29.6979,63.0,392.0,110.0,135.279,12.331,15.0313,10.8382,10.0,10.0
+16,0.501,10.0,4.0,66.0,127.234,202.0,973.0,118.0,469.0,496.373,524.0,724.0,370.0,499.0,515.833,532.0,769.0,0.0,5.0,29.7415,63.0,397.0,111.0,136.21,11.3641,14.9119,10.7359,10.0,10.0
+17,0.534,10.0,4.0,66.0,126.611,200.0,1019.0,113.0,469.0,496.692,524.0,723.0,358.0,499.0,515.585,532.0,745.0,0.0,5.0,29.3193,63.0,401.0,110.0,135.665,12.5402,14.9198,10.8355,10.0,10.0
+18,0.567,10.0,4.0,67.0,127.011,199.0,1019.0,69.0,469.0,496.731,525.0,713.0,361.0,499.0,515.789,532.0,751.0,0.0,5.0,29.6086,63.0,449.0,111.0,136.466,12.7522,15.0074,10.8186,10.0,10.0
+19,0.601,10.0,4.0,67.0,126.844,201.0,937.0,100.0,468.0,496.661,524.0,744.0,348.0,499.0,515.979,532.0,724.0,0.0,5.0,29.4775,63.0,423.0,112.0,136.928,11.9878,14.9675,10.7696,10.0,10.0
+20,0.634,10.0,4.0,66.0,126.609,200.0,1019.0,115.0,469.0,496.964,526.0,722.0,359.0,498.0,515.601,532.0,766.0,0.0,5.0,29.5078,63.0,429.0,111.0,136.946,13.528,14.8882,10.8073,10.0,10.0
+21,0.667,10.0,4.0,67.0,127.189,200.0,956.0,124.0,469.0,497.078,525.0,748.0,366.0,499.0,516.003,532.0,746.0,0.0,5.0,29.4309,63.0,391.0,112.0,137.444,11.9653,14.9659,10.908,10.0,10.0
+22,0.701,10.0,4.0,66.0,126.636,200.0,973.0,74.0,469.0,497.387,526.0,723.0,358.0,499.0,515.649,532.0,752.0,0.0,5.0,29.2815,64.0,442.0,112.0,138.127,12.5656,14.9006,10.7259,10.0,10.0
+23,0.734,10.0,4.0,67.0,126.95,200.0,933.0,124.0,468.0,496.919,526.0,756.0,380.0,499.0,515.638,532.0,758.0,0.0,5.0,29.4363,63.0,394.0,111.0,136.474,13.2282,14.8925,10.6351,10.0,10.0
+24,0.767,10.0,4.0,66.0,126.628,199.0,944.0,116.0,469.0,496.683,525.0,735.0,372.0,499.0,515.974,532.0,822.0,0.0,5.0,29.6039,63.0,399.0,111.0,137.082,11.3174,14.9436,10.7018,10.0,10.0
+25,0.801,10.0,4.0,67.0,127.262,200.0,1019.0,105.0,469.0,496.411,524.0,767.0,384.0,499.0,515.705,532.0,767.0,0.0,5.0,29.5521,63.0,408.0,111.0,135.675,12.5177,14.9119,10.748,10.0,10.0
+26,0.834,10.0,4.0,67.0,127.114,200.0,1019.0,81.0,469.0,496.742,525.0,731.0,368.0,500.0,516.311,533.0,783.0,0.0,5.0,29.6696,63.0,433.0,113.0,137.282,11.7191,15.0091,10.938,10.0,10.0
+27,0.868,10.0,4.0,64.0,125.028,196.0,943.0,142.0,469.0,496.753,524.0,737.0,352.0,500.0,516.067,532.0,803.0,0.0,5.0,29.3883,63.0,377.0,112.0,137.309,13.7611,15.0581,10.8651,10.0,10.0
+28,0.901,10.0,4.0,65.0,125.768,199.0,953.0,124.0,469.0,496.98,526.0,734.0,376.0,499.0,515.969,533.0,792.0,0.0,5.0,29.6515,64.0,415.0,112.0,137.379,12.1017,14.965,10.7504,10.0,10.0
+29,0.934,10.0,4.0,66.0,126.143,199.0,948.0,112.0,468.0,497.047,525.0,765.0,374.0,499.0,515.921,532.0,799.0,0.0,5.0,29.5777,64.0,401.0,113.0,137.871,11.6094,15.1151,10.9086,10.0,10.0
+30,0.968,10.0,4.0,65.0,126.324,199.0,1019.0,94.0,469.0,497.001,525.0,764.0,375.0,498.0,515.576,532.0,743.0,0.0,5.0,29.5482,64.0,422.0,111.0,137.167,12.1938,15.0341,10.84,10.0,10.0
+31,1.001,10.0,4.0,66.0,126.622,199.0,955.0,117.0,468.0,497.036,525.0,779.0,348.0,499.0,516.143,533.0,762.0,0.0,5.0,29.6599,64.0,396.0,113.0,138.417,11.3319,15.0338,10.7634,10.0,10.0
+32,1.034,10.0,4.0,65.0,125.651,198.0,961.0,128.0,469.0,496.899,524.0,731.0,352.0,499.0,515.649,532.0,830.0,0.0,5.0,29.3669,63.0,388.0,111.0,137.016,12.3936,15.0187,10.8684,10.0,10.0
+33,1.068,10.0,4.0,66.0,125.58,199.0,1019.0,100.0,469.0,497.007,526.0,729.0,351.0,499.0,515.956,532.0,780.0,0.0,5.0,29.3727,63.0,413.0,112.0,137.164,12.9308,14.8355,10.7492,10.0,10.0
+34,1.101,10.0,4.0,66.0,126.13,199.0,1019.0,100.0,469.0,497.04,526.0,763.0,355.0,499.0,515.789,532.0,742.0,0.0,5.0,29.6781,64.0,415.0,112.0,137.625,11.8991,15.059,10.7971,10.0,10.0
+35,1.134,10.0,4.0,66.0,126.128,199.0,970.0,110.0,469.0,497.323,526.0,723.0,372.0,498.0,515.402,532.0,799.0,0.0,5.0,29.1493,63.0,402.0,111.0,136.416,13.9753,15.1077,10.7636,10.0,10.0
+36,1.168,10.0,4.0,66.0,127.19,200.0,958.0,118.0,469.0,497.183,525.0,721.0,357.0,499.0,515.823,532.0,821.0,0.0,5.0,29.3262,63.0,398.0,113.0,137.604,12.4406,15.1033,10.8738,10.0,10.0
+37,1.201,10.0,4.0,65.0,126.477,198.0,941.0,108.0,469.0,497.375,526.0,740.0,358.0,498.0,515.43,532.0,756.0,0.0,5.0,29.1873,63.0,404.0,111.0,137.246,12.5894,14.9557,10.7318,10.0,10.0
+38,1.235,10.0,4.0,65.0,125.569,200.0,939.0,81.0,469.0,497.359,526.0,726.0,372.0,499.0,515.571,532.0,800.0,0.0,5.0,29.3666,63.0,435.0,111.0,137.646,16.1647,15.0679,10.6162,10.0,10.0
+39,1.268,10.0,4.0,65.0,126.137,200.0,1019.0,96.0,469.0,497.3,526.0,723.0,370.0,499.0,515.945,532.0,792.0,0.0,5.0,29.3166,63.0,421.0,113.0,138.676,11.6651,14.9149,10.7341,10.0,10.0
+40,1.301,10.0,4.0,66.0,126.471,200.0,1019.0,96.0,468.0,496.94,525.0,728.0,380.0,499.0,515.571,532.0,831.0,0.0,5.0,29.5531,64.0,418.0,111.0,137.339,12.6286,15.0326,10.8357,10.0,10.0
+41,1.335,10.0,4.0,66.0,126.622,201.0,944.0,107.0,469.0,496.803,525.0,720.0,381.0,500.0,516.215,533.0,777.0,0.0,5.0,29.573,64.0,406.0,112.0,136.899,11.6375,14.9347,10.7848,10.0,10.0
+42,1.368,10.0,4.0,65.0,126.035,200.0,1019.0,118.0,469.0,497.34,526.0,737.0,376.0,499.0,515.38,532.0,752.0,0.0,5.0,29.1742,64.0,399.0,111.0,137.452,12.7291,15.1172,10.835,10.0,10.0
+43,1.401,10.0,4.0,65.0,126.055,199.0,938.0,106.0,469.0,497.52,526.0,726.0,373.0,499.0,515.511,532.0,760.0,0.0,5.0,29.1385,63.0,409.0,112.0,137.909,12.2564,15.0735,10.7933,10.0,10.0
+44,1.435,10.0,4.0,64.0,125.558,199.0,968.0,122.0,469.0,497.606,526.0,742.0,371.0,499.0,515.567,532.0,732.0,0.0,5.0,29.1985,64.0,392.0,112.0,138.177,11.8801,15.0376,10.717,10.0,10.0
+45,1.468,10.0,4.0,64.0,125.1,199.0,1019.0,110.0,470.0,497.84,526.0,736.0,358.0,498.0,514.991,530.0,750.0,0.0,5.0,28.8606,63.0,402.0,110.0,137.302,14.7252,14.9113,10.724,10.0,10.0
+46,1.502,10.0,4.0,64.0,125.22,198.0,936.0,106.0,470.0,497.87,526.0,740.0,384.0,499.0,515.592,532.0,737.0,0.0,5.0,28.921,63.0,409.0,113.0,138.517,13.2763,14.9568,10.737,10.0,10.0
+47,1.535,10.0,4.0,64.0,125.427,197.0,965.0,93.0,469.0,497.904,526.0,720.0,380.0,498.0,515.29,531.0,769.0,0.0,5.0,28.9138,63.0,422.0,111.0,138.461,12.8549,14.9664,10.5953,10.0,10.0
+48,1.568,10.0,4.0,67.0,127.074,201.0,949.0,128.0,470.0,497.717,526.0,756.0,352.0,499.0,515.646,532.0,724.0,0.0,5.0,28.94,63.0,388.0,112.0,137.581,12.4627,14.8242,10.8221,10.0,10.0
+49,1.602,10.0,4.0,66.0,126.058,199.0,936.0,75.0,470.0,497.579,526.0,736.0,380.0,499.0,515.722,532.0,770.0,0.0,5.0,28.9966,63.0,438.0,112.0,137.885,12.301,14.4993,10.4937,10.0,10.0
+50,1.635,10.0,4.0,64.0,125.091,198.0,964.0,85.0,469.0,497.53,526.0,765.0,367.0,498.0,515.261,532.0,747.0,0.0,5.0,29.0883,64.0,432.0,111.0,136.936,13.4628,14.9086,10.525,10.0,10.0
+51,1.668,10.0,4.0,65.0,125.987,199.0,1019.0,105.0,469.0,497.782,526.0,773.0,356.0,498.0,515.548,532.0,728.0,0.0,5.0,29.081,63.0,410.0,113.0,138.997,11.8179,14.9452,10.6419,10.0,10.0
+52,1.702,10.0,4.0,65.0,125.821,199.0,976.0,140.0,469.0,497.584,526.0,722.0,380.0,499.0,515.268,531.0,747.0,0.0,5.0,29.0939,63.0,374.0,111.0,137.251,12.3237,14.9378,10.7347,10.0,10.0
+53,1.735,10.0,4.0,66.0,126.645,199.0,966.0,108.0,470.0,497.71,526.0,736.0,345.0,498.0,515.283,532.0,742.0,0.0,5.0,29.0479,63.0,405.0,111.0,137.583,13.3488,14.8865,10.7376,10.0,10.0
+54,1.768,10.0,4.0,66.0,126.565,199.0,965.0,124.0,469.0,497.943,526.0,729.0,358.0,498.0,515.347,532.0,744.0,0.0,5.0,29.0214,64.0,390.0,112.0,138.91,11.5765,15.0546,10.8359,10.0,10.0
+55,1.802,10.0,4.0,66.0,126.583,200.0,962.0,92.0,470.0,497.854,526.0,773.0,387.0,498.0,514.959,530.0,723.0,0.0,5.0,28.7908,63.0,422.0,111.0,138.371,12.2833,14.8962,10.6125,10.0,10.0
+56,1.835,10.0,4.0,66.0,126.41,200.0,928.0,106.0,470.0,498.047,526.0,726.0,380.0,499.0,515.252,532.0,748.0,0.0,5.0,28.7693,63.0,409.0,112.0,138.772,11.3154,14.752,10.5352,10.0,10.0
+57,1.869,10.0,4.0,63.0,124.069,197.0,952.0,106.0,470.0,497.91,526.0,756.0,366.0,498.0,514.935,530.0,728.0,0.0,5.0,28.7952,63.0,409.0,111.0,137.983,12.6379,14.8799,10.5635,10.0,10.0
+58,1.902,10.0,4.0,62.0,124.327,198.0,1019.0,86.0,470.0,498.058,526.0,720.0,372.0,498.0,515.234,532.0,742.0,0.0,5.0,28.8286,63.0,433.0,112.0,138.799,12.5024,14.9138,10.5857,10.0,10.0
+59,1.935,10.0,4.0,62.0,123.7,196.0,955.0,122.0,470.0,497.609,526.0,734.0,368.0,498.0,515.497,532.0,744.0,0.0,5.0,29.0966,63.0,391.0,112.0,138.094,11.9735,15.0063,10.79,10.0,10.0
+60,1.969,10.0,4.0,64.0,124.976,199.0,951.0,140.0,470.0,497.736,526.0,731.0,380.0,498.0,515.192,531.0,741.0,0.0,5.0,28.9312,63.0,374.0,111.0,138.042,13.763,14.9612,10.7016,10.0,10.0
+61,2.002,10.0,4.0,65.0,125.723,200.0,1019.0,97.0,470.0,497.856,526.0,738.0,360.0,499.0,515.709,532.0,763.0,0.0,5.0,28.8974,63.0,415.0,114.0,139.21,12.4885,14.8827,10.6833,10.0,10.0
+62,2.035,10.0,4.0,64.0,125.132,200.0,979.0,81.0,470.0,498.158,526.0,736.0,370.0,498.0,515.428,532.0,761.0,0.0,5.0,28.7629,63.0,435.0,113.0,140.129,12.7477,14.83,10.6931,10.0,10.0
+63,2.069,10.0,4.0,64.0,125.219,198.0,960.0,106.0,469.0,497.811,526.0,737.0,348.0,499.0,515.593,532.0,747.0,0.0,5.0,29.097,63.0,410.0,113.0,138.932,14.0785,15.0429,10.7424,10.0,10.0
+64,2.102,10.0,4.0,63.0,125.083,198.0,962.0,106.0,469.0,498.0,526.0,750.0,361.0,499.0,515.939,532.0,747.0,0.0,5.0,29.0787,63.0,408.0,116.0,140.871,12.3013,14.9513,10.7978,10.0,10.0
+65,2.135,10.0,4.0,62.0,124.596,198.0,939.0,118.0,470.0,497.904,526.0,935.0,349.0,498.0,515.556,532.0,750.0,0.0,5.0,28.9117,63.0,423.0,113.0,139.284,12.973,14.8339,10.7822,10.0,10.0
+66,2.169,10.0,4.0,63.0,125.454,199.0,951.0,94.0,470.0,498.101,526.0,934.0,359.0,499.0,515.942,532.0,740.0,0.0,5.0,29.0764,63.0,422.0,116.0,140.83,11.2212,14.8588,10.6827,10.0,10.0
+67,2.202,10.0,4.0,62.0,124.521,198.0,953.0,104.0,470.0,498.429,526.0,865.0,362.0,499.0,515.72,532.0,752.0,0.0,5.0,28.6072,63.0,409.0,116.0,141.207,12.896,15.0026,10.7999,10.0,10.0
+68,2.236,10.0,4.0,62.0,123.968,197.0,956.0,106.0,470.0,498.423,527.0,891.0,366.0,499.0,516.167,533.0,734.0,0.0,5.0,28.872,62.0,407.0,117.0,142.216,12.7452,15.0877,10.8913,10.0,10.0
+69,2.269,10.0,4.0,62.0,124.364,198.0,945.0,124.0,470.0,498.375,526.0,891.0,370.0,500.0,516.578,533.0,736.0,0.0,5.0,28.8208,62.0,392.0,118.0,141.648,11.4774,15.194,10.8528,10.0,10.0
+70,2.302,10.0,4.0,62.0,124.656,199.0,945.0,90.0,471.0,498.571,527.0,871.0,353.0,500.0,516.588,533.0,736.0,0.0,5.0,28.8306,63.0,425.0,119.0,142.775,13.8401,14.8301,10.8417,10.0,10.0
+71,2.336,10.0,4.0,63.0,124.496,197.0,944.0,100.0,471.0,498.531,527.0,885.0,381.0,500.0,516.769,533.0,743.0,0.0,5.0,28.8937,62.0,414.0,119.0,142.628,12.9414,14.8789,10.9337,10.0,10.0
+72,2.369,10.0,4.0,61.0,124.327,198.0,1013.0,99.0,470.0,498.107,527.0,917.0,358.0,500.0,516.829,534.0,778.0,0.0,5.0,29.1327,63.0,417.0,119.0,142.182,12.6716,14.8008,10.9213,10.0,10.0
+73,2.402,10.0,4.0,62.0,124.036,197.0,1019.0,118.0,470.0,498.026,526.0,784.0,228.0,500.0,516.832,533.0,745.0,0.0,5.0,28.9489,63.0,394.0,119.0,141.453,12.1108,14.9287,10.8568,10.0,10.0
+74,2.436,10.0,4.0,62.0,123.798,198.0,1019.0,90.0,470.0,498.143,526.0,920.0,366.0,500.0,516.944,533.0,731.0,0.0,5.0,28.9637,62.0,424.0,119.0,142.489,11.4567,14.8153,10.9203,10.0,10.0
+75,2.469,10.0,4.0,63.0,124.238,198.0,944.0,107.0,471.0,498.39,526.0,882.0,359.0,500.0,516.62,533.0,744.0,0.0,5.0,28.6214,63.0,411.0,119.0,142.027,12.2625,14.703,10.9176,10.0,10.0
+76,2.503,10.0,4.0,63.0,124.036,197.0,967.0,114.0,471.0,498.821,527.0,954.0,358.0,500.0,516.874,533.0,732.0,0.0,5.0,28.6228,63.0,442.0,120.0,144.221,11.2146,14.8147,10.8355,10.0,10.0
+77,2.536,10.0,4.0,66.0,126.659,201.0,945.0,114.0,469.0,498.034,527.0,736.0,343.0,500.0,516.882,533.0,752.0,0.0,5.0,29.2107,64.0,399.0,120.0,142.835,13.8213,14.9538,10.9596,10.0,10.0
+78,2.569,10.0,4.0,66.0,126.869,201.0,952.0,86.0,470.0,498.261,527.0,734.0,352.0,500.0,517.055,534.0,826.0,0.0,5.0,29.2455,63.0,427.0,120.0,143.891,13.4191,15.1685,10.9554,10.0,10.0
+79,2.603,10.0,4.0,65.0,126.341,200.0,953.0,108.0,470.0,498.565,527.0,909.0,344.0,500.0,517.038,534.0,746.0,0.0,5.0,28.9282,63.0,406.0,121.0,144.139,11.2039,14.975,10.9673,10.0,10.0
+80,2.636,10.0,4.0,65.0,126.661,200.0,957.0,106.0,471.0,498.624,527.0,940.0,380.0,500.0,516.542,533.0,731.0,0.0,5.0,28.7543,63.0,430.0,120.0,144.021,12.0155,14.569,10.8481,10.0,10.0
+81,2.669,10.0,4.0,65.0,126.827,201.0,947.0,118.0,470.0,498.558,526.0,915.0,383.0,500.0,517.01,533.0,746.0,0.0,5.0,28.825,63.0,410.0,122.0,144.045,11.5495,14.7565,10.8113,10.0,10.0
+82,2.703,10.0,4.0,65.0,126.419,201.0,971.0,92.0,470.0,498.312,527.0,721.0,174.0,500.0,516.799,534.0,729.0,0.0,5.0,29.1463,63.0,426.0,120.0,143.434,13.3463,14.844,11.0289,10.0,10.0
+83,2.736,10.0,4.0,66.0,126.437,200.0,1019.0,67.0,470.0,498.014,527.0,916.0,352.0,500.0,517.245,534.0,745.0,0.0,5.0,29.3941,63.0,449.0,120.0,143.278,12.4273,14.9594,10.942,10.0,10.0
+84,2.769,10.0,4.0,65.0,126.09,200.0,1019.0,119.0,470.0,498.006,527.0,778.0,194.0,500.0,516.894,533.0,745.0,0.0,5.0,29.3778,63.0,395.0,119.0,142.567,11.9798,14.9032,11.0356,10.0,10.0
+85,2.803,10.0,4.0,65.0,125.635,199.0,945.0,105.0,469.0,498.006,527.0,733.0,240.0,500.0,516.305,533.0,756.0,0.0,5.0,29.27,64.0,407.0,116.0,141.828,14.5115,15.1009,10.9184,10.0,10.0
+86,2.836,10.0,4.0,65.0,125.807,200.0,989.0,67.0,470.0,498.249,527.0,732.0,214.0,500.0,516.753,533.0,742.0,0.0,5.0,29.1939,64.0,448.0,119.0,142.904,12.8035,15.0217,10.7339,10.0,10.0
+87,2.87,10.0,4.0,64.0,125.128,200.0,928.0,108.0,469.0,498.343,527.0,747.0,246.0,500.0,516.398,533.0,764.0,0.0,5.0,28.9673,64.0,407.0,118.0,143.399,13.3631,15.0925,10.8211,10.0,10.0
+88,2.903,10.0,4.0,66.0,126.128,201.0,1019.0,116.0,470.0,498.393,526.0,712.0,198.0,500.0,516.832,533.0,756.0,0.0,5.0,28.7227,62.0,398.0,120.0,143.323,13.2239,14.7953,10.812,10.0,10.0
+89,2.936,10.0,4.0,65.0,126.102,201.0,948.0,106.0,470.0,498.298,526.0,715.0,262.0,499.0,516.574,533.0,752.0,0.0,5.0,28.9153,63.0,407.0,120.0,143.42,11.8847,14.8825,10.9677,10.0,10.0
+90,2.97,10.0,4.0,66.0,126.791,201.0,954.0,100.0,470.0,498.693,527.0,942.0,378.0,500.0,516.546,533.0,728.0,0.0,5.0,28.7296,63.0,430.0,119.0,142.736,13.2664,15.0908,10.9292,10.0,10.0
+91,3.003,10.0,4.0,66.0,126.508,200.0,1019.0,124.0,471.0,498.708,527.0,892.0,364.0,499.0,516.817,533.0,733.0,0.0,5.0,28.8886,63.0,392.0,122.0,144.591,11.8049,14.8473,10.8906,10.0,10.0
+92,3.036,10.0,4.0,66.0,127.008,201.0,994.0,128.0,471.0,498.889,528.0,932.0,362.0,499.0,516.439,533.0,749.0,0.0,5.0,28.6878,63.0,425.0,120.0,144.05,14.0391,14.7879,10.9471,10.0,10.0
+93,3.07,10.0,4.0,66.0,126.713,202.0,1019.0,143.0,470.0,498.937,527.0,832.0,365.0,499.0,516.404,533.0,742.0,0.0,5.0,28.6786,63.0,379.0,120.0,143.736,12.6451,14.6381,10.7787,10.0,10.0
+94,3.103,10.0,4.0,65.0,126.079,199.0,946.0,74.0,470.0,499.016,528.0,889.0,358.0,499.0,516.287,533.0,769.0,0.0,5.0,28.6011,63.0,438.0,120.0,144.285,12.6484,14.8509,10.8061,10.0,10.0
+95,3.136,10.0,4.0,65.0,125.633,199.0,949.0,138.0,470.0,498.937,527.0,884.0,370.0,499.0,516.095,532.0,760.0,0.0,5.0,28.5731,63.0,411.0,118.0,143.083,15.5132,14.9928,10.7034,10.0,10.0
+96,3.17,10.0,4.0,65.0,126.101,199.0,940.0,117.0,470.0,498.827,528.0,864.0,368.0,500.0,516.755,533.0,779.0,0.0,5.0,28.8684,63.0,396.0,120.0,143.879,13.2892,15.1501,10.9781,10.0,10.0
+97,3.203,10.0,4.0,65.0,126.488,200.0,961.0,125.0,470.0,498.648,527.0,814.0,365.0,500.0,516.74,533.0,742.0,0.0,5.0,28.9773,63.0,388.0,120.0,144.37,12.5917,15.0549,10.8879,10.0,10.0
+98,3.237,10.0,4.0,64.0,124.514,198.0,913.0,122.0,472.0,499.355,528.0,746.0,358.0,500.0,516.525,533.0,806.0,0.0,5.0,28.3257,62.0,393.0,121.0,144.963,14.3253,14.9493,10.9193,10.0,10.0
+99,3.27,10.0,4.0,64.0,125.149,198.0,957.0,116.0,471.0,499.296,527.0,718.0,373.0,499.0,516.496,533.0,757.0,0.0,5.0,28.2414,62.0,397.0,122.0,145.501,11.6696,14.6136,10.8351,10.0,10.0
+100,3.303,10.0,4.0,63.0,124.486,197.0,954.0,118.0,471.0,499.459,528.0,757.0,376.0,499.0,516.344,533.0,758.0,0.0,5.0,28.2587,62.0,397.0,121.0,145.311,12.6562,14.513,10.799,10.0,10.0
+101,3.337,10.0,4.0,63.0,124.687,198.0,964.0,100.0,471.0,499.423,528.0,722.0,358.0,500.0,516.495,533.0,730.0,0.0,5.0,28.4633,63.0,413.0,122.0,145.912,11.6865,14.7455,10.8743,10.0,10.0
+102,3.37,10.0,4.0,64.0,125.004,197.0,965.0,86.0,471.0,498.877,528.0,730.0,358.0,500.0,516.519,533.0,746.0,0.0,5.0,28.6639,63.0,428.0,120.0,143.721,14.8774,15.0298,10.9816,10.0,10.0
+103,3.403,10.0,4.0,66.0,125.72,198.0,949.0,176.0,471.0,499.18,527.0,784.0,364.0,500.0,516.382,533.0,763.0,0.0,5.0,28.4099,63.0,343.0,120.0,144.588,13.3776,14.8504,10.8424,10.0,10.0
+104,3.437,10.0,4.0,65.0,126.109,199.0,954.0,128.0,472.0,499.647,529.0,731.0,382.0,499.0,516.299,533.0,736.0,0.0,5.0,28.323,63.0,388.0,121.0,144.943,11.415,14.8045,10.8902,10.0,10.0
+105,3.47,10.0,4.0,65.0,126.083,200.0,949.0,113.0,471.0,499.582,529.0,729.0,366.0,499.0,516.103,532.0,733.0,0.0,5.0,28.2954,63.0,400.0,120.0,145.271,13.1734,14.8565,10.7341,10.0,10.0
+106,3.504,10.0,4.0,66.0,127.11,201.0,958.0,75.0,471.0,499.175,528.0,745.0,379.0,500.0,516.591,533.0,728.0,0.0,5.0,28.463,64.0,439.0,121.0,144.448,12.3847,15.0365,10.9373,10.0,10.0
+107,3.537,10.0,4.0,65.0,125.788,199.0,969.0,124.0,470.0,498.966,527.0,723.0,364.0,500.0,516.409,533.0,765.0,0.0,5.0,28.4537,63.0,392.0,120.0,143.628,13.1644,14.9666,10.8185,10.0,10.0
+108,3.57,10.0,4.0,66.0,126.317,200.0,955.0,133.0,471.0,499.173,528.0,736.0,380.0,500.0,516.505,533.0,735.0,0.0,5.0,28.3351,63.0,381.0,120.0,144.607,12.3381,14.8937,10.8184,10.0,10.0
+109,3.604,10.0,4.0,65.0,126.201,200.0,968.0,118.0,471.0,499.368,528.0,737.0,379.0,500.0,516.506,533.0,732.0,0.0,5.0,28.4388,63.0,394.0,120.0,144.719,11.4423,14.749,10.8295,10.0,10.0
+110,3.637,10.0,4.0,65.0,125.442,199.0,945.0,100.0,471.0,499.565,529.0,726.0,376.0,499.0,516.2,533.0,741.0,0.0,5.0,28.3582,63.0,416.0,120.0,145.268,13.4462,14.7658,10.7843,10.0,10.0
+111,3.67,10.0,4.0,64.0,125.566,201.0,1019.0,102.0,471.0,499.636,528.0,730.0,376.0,499.0,516.313,533.0,746.0,0.0,5.0,28.229,63.0,414.0,122.0,146.421,12.4836,14.661,10.8766,10.0,10.0
+112,3.704,10.0,4.0,65.0,125.658,200.0,949.0,96.0,471.0,499.605,528.0,730.0,360.0,499.0,516.229,533.0,740.0,0.0,5.0,28.1033,62.0,420.0,120.0,145.372,12.7487,14.6937,10.8821,10.0,10.0
+113,3.737,10.0,4.0,65.0,126.36,202.0,964.0,91.0,471.0,499.156,528.0,740.0,376.0,500.0,516.469,533.0,760.0,0.0,5.0,28.3644,63.0,423.0,120.0,144.483,12.677,14.792,10.7563,10.0,10.0
+114,3.77,10.0,4.0,65.0,126.055,201.0,971.0,114.0,472.0,499.254,528.0,741.0,374.0,500.0,516.343,533.0,762.0,0.0,5.0,28.2031,62.0,405.0,120.0,144.323,11.5648,14.7684,10.7954,10.0,10.0
+115,3.804,10.0,4.0,65.0,125.397,199.0,975.0,124.0,471.0,499.225,527.0,718.0,366.0,499.0,516.001,532.0,746.0,0.0,5.0,28.1374,62.0,392.0,119.0,144.073,12.628,14.7118,10.578,10.0,10.0
+116,3.837,10.0,4.0,65.0,125.974,199.0,959.0,128.0,471.0,499.319,527.0,733.0,380.0,500.0,516.582,533.0,758.0,0.0,5.0,28.2511,61.0,386.0,121.0,145.203,11.148,14.5485,10.7056,10.0,10.0
+117,3.871,10.0,4.0,60.0,121.565,192.0,962.0,120.0,472.0,499.367,527.0,720.0,376.0,500.0,516.034,532.0,747.0,0.0,5.0,27.692,61.0,394.0,119.0,144.213,13.304,14.5933,10.7696,10.0,10.0
+118,3.904,10.0,4.0,46.0,80.5418,106.0,860.0,99.0,473.0,493.049,511.0,618.0,433.0,508.0,520.03,534.0,747.0,0.0,5.0,24.6202,45.0,419.0,109.0,117.225,66.185,28.0632,18.0353,10.0,10.0
+119,3.937,10.0,4.0,50.0,84.1581,109.0,629.0,119.0,473.0,492.938,511.0,603.0,425.0,508.0,520.653,535.0,721.0,0.0,5.0,24.8721,46.0,396.0,111.0,119.063,10.4683,13.9183,9.88872,10.0,10.0
+120,3.971,10.0,4.0,52.0,86.5922,112.0,623.0,124.0,473.0,492.731,511.0,601.0,438.0,508.0,520.713,536.0,718.0,0.0,5.0,25.0307,46.0,393.0,111.0,118.392,11.5713,13.9905,10.1125,10.0,10.0
+121,4.004,10.0,4.0,53.0,87.4781,113.0,629.0,132.0,472.0,492.36,510.0,596.0,430.0,508.0,521.117,536.0,756.0,0.0,6.0,25.4403,46.0,384.0,111.0,118.016,10.5187,14.0427,10.2567,10.0,10.0
+122,4.037,10.0,4.0,52.0,86.9761,113.0,646.0,100.0,472.0,492.388,510.0,595.0,430.0,508.0,520.851,535.0,734.0,0.0,6.0,25.3121,46.0,415.0,111.0,118.19,11.1784,14.0571,10.108,10.0,10.0
+123,4.071,10.0,4.0,53.0,86.6559,112.0,619.0,124.0,473.0,492.456,510.0,596.0,434.0,508.0,521.026,535.0,726.0,0.0,6.0,25.3559,46.0,390.0,111.0,118.764,10.4941,14.1485,9.97175,10.0,10.0
+124,4.104,10.0,4.0,52.0,86.973,113.0,889.0,122.0,473.0,492.509,510.0,595.0,436.0,508.0,520.851,535.0,724.0,0.0,6.0,25.1838,45.0,392.0,111.0,118.733,10.3377,13.9892,9.88086,10.0,10.0
+125,4.137,10.0,4.0,53.0,87.4355,113.0,891.0,128.0,472.0,492.163,510.0,581.0,436.0,508.0,520.676,535.0,744.0,0.0,6.0,25.4126,46.0,385.0,109.0,117.148,11.1889,13.9829,10.0317,10.0,10.0
+126,4.171,10.0,4.0,53.0,87.9042,113.0,639.0,106.0,471.0,491.892,510.0,597.0,430.0,508.0,521.028,536.0,741.0,0.0,6.0,25.791,47.0,410.0,111.0,117.291,10.1737,14.0683,10.2061,10.0,10.0
+127,4.204,10.0,4.0,53.0,87.5665,113.0,989.0,114.0,472.0,492.198,510.0,624.0,430.0,508.0,521.021,535.0,751.0,0.0,6.0,25.5654,46.0,405.0,111.0,117.956,11.3852,14.0851,10.1949,10.0,10.0
+128,4.238,10.0,4.0,52.0,86.3762,111.0,658.0,115.0,472.0,492.351,510.0,582.0,436.0,508.0,520.832,535.0,725.0,0.0,6.0,25.2989,46.0,399.0,111.0,117.615,11.1363,14.0652,10.0198,10.0,10.0
+129,4.271,10.0,4.0,53.0,86.6949,112.0,885.0,103.0,472.0,492.356,510.0,601.0,418.0,508.0,521.027,536.0,724.0,0.0,6.0,25.4057,47.0,410.0,112.0,118.84,10.2566,14.0402,10.0604,10.0,10.0
+130,4.304,10.0,4.0,53.0,86.7406,111.0,1019.0,108.0,472.0,492.453,510.0,623.0,420.0,508.0,520.688,535.0,763.0,0.0,6.0,25.2222,46.0,411.0,111.0,117.684,11.0281,14.1601,10.0995,10.0,10.0
+131,4.338,10.0,4.0,53.0,86.784,111.0,1019.0,70.0,473.0,492.675,510.0,590.0,428.0,508.0,520.959,535.0,720.0,0.0,6.0,25.1629,46.0,449.0,111.0,118.38,10.2331,14.0898,10.0626,10.0,10.0
+132,4.371,10.0,4.0,51.0,85.511,111.0,683.0,124.0,472.0,492.501,510.0,606.0,434.0,508.0,520.867,536.0,724.0,0.0,6.0,25.2866,46.0,393.0,112.0,118.948,11.4232,14.2243,10.2094,10.0,10.0
+133,4.404,10.0,4.0,52.0,86.3254,112.0,662.0,101.0,472.0,492.333,510.0,591.0,416.0,508.0,521.024,535.0,725.0,0.0,6.0,25.4923,46.0,412.0,111.0,118.54,10.9735,14.188,10.1688,10.0,10.0
+134,4.438,10.0,4.0,52.0,86.3818,112.0,1019.0,74.0,471.0,492.29,510.0,606.0,440.0,508.0,521.115,536.0,724.0,0.0,6.0,25.5378,47.0,443.0,112.0,119.279,10.0487,14.2563,10.1906,10.0,10.0
+135,4.471,10.0,4.0,53.0,86.5392,111.0,944.0,106.0,472.0,492.436,510.0,596.0,424.0,508.0,521.199,536.0,726.0,0.0,6.0,25.5848,47.0,411.0,113.0,119.429,11.2989,14.2989,10.2087,10.0,10.0
+136,4.505,10.0,4.0,53.0,86.9173,111.0,615.0,111.0,471.0,491.896,510.0,596.0,436.0,508.0,521.356,536.0,725.0,0.0,6.0,25.9618,47.0,406.0,113.0,118.999,10.3425,14.2444,10.2933,10.0,10.0
+137,4.538,10.0,4.0,53.0,87.355,114.0,920.0,98.0,472.0,492.385,510.0,590.0,420.0,508.0,521.126,536.0,741.0,0.0,6.0,25.5248,47.0,415.0,112.0,119.028,11.1134,14.2526,10.2443,10.0,10.0
+138,4.571,10.0,4.0,54.0,88.5706,114.0,614.0,96.0,471.0,491.921,510.0,603.0,336.0,508.0,521.575,536.0,724.0,0.0,6.0,26.0985,47.0,422.0,113.0,119.653,11.4376,14.2914,10.2341,10.0,10.0
+139,4.605,10.0,4.0,53.0,87.9162,113.0,784.0,106.0,471.0,492.129,510.0,589.0,259.0,508.0,521.734,536.0,720.0,0.0,6.0,25.9507,47.0,416.0,114.0,120.7,10.441,14.4417,10.28,10.0,10.0
+140,4.638,10.0,4.0,53.0,87.2226,113.0,621.0,105.0,472.0,492.03,510.0,592.0,309.0,508.0,521.433,536.0,721.0,0.0,6.0,25.9127,47.0,432.0,113.0,119.542,11.0555,14.4577,10.3614,10.0,10.0
+141,4.671,10.0,4.0,54.0,88.2405,113.0,632.0,107.0,471.0,491.721,509.0,589.0,418.0,508.0,521.749,536.0,737.0,0.0,6.0,26.2226,47.0,409.0,113.0,119.078,10.1091,14.4717,10.2989,10.0,10.0
+142,4.705,10.0,4.0,53.0,87.4778,113.0,624.0,90.0,471.0,491.946,510.0,592.0,420.0,508.0,521.02,535.0,723.0,0.0,6.0,25.7946,46.0,428.0,111.0,118.637,10.9311,14.3593,10.2057,10.0,10.0
+143,4.738,10.0,4.0,54.0,87.8831,113.0,852.0,98.0,472.0,492.126,510.0,651.0,416.0,508.0,521.605,536.0,737.0,0.0,6.0,25.8782,47.0,420.0,113.0,119.471,10.8008,14.2684,10.268,10.0,10.0
+144,4.771,10.0,4.0,54.0,88.0858,113.0,614.0,130.0,471.0,491.881,510.0,596.0,420.0,508.0,521.712,536.0,732.0,0.0,6.0,26.1068,47.0,392.0,113.0,120.079,10.3174,14.1645,10.3243,10.0,10.0
+145,4.805,10.0,4.0,53.0,88.068,114.0,1019.0,124.0,471.0,491.779,509.0,595.0,414.0,508.0,521.331,536.0,753.0,0.0,6.0,25.9845,46.0,392.0,112.0,118.693,11.6381,14.1756,10.2497,10.0,10.0
+146,4.838,10.0,4.0,54.0,88.2673,113.0,1019.0,115.0,472.0,492.133,510.0,590.0,437.0,508.0,521.418,536.0,733.0,0.0,6.0,25.7807,47.0,403.0,113.0,119.414,10.8957,14.12,10.2826,10.0,10.0
+147,4.872,10.0,4.0,52.0,86.2958,113.0,614.0,96.0,472.0,492.51,510.0,594.0,420.0,508.0,520.673,535.0,732.0,0.0,6.0,25.2043,46.0,423.0,111.0,118.248,11.1246,14.1436,10.208,10.0,10.0
+148,4.905,10.0,4.0,53.0,86.4637,112.0,1019.0,134.0,473.0,492.993,511.0,596.0,430.0,508.0,521.084,536.0,733.0,0.0,6.0,24.9749,46.0,385.0,113.0,120.188,10.9179,14.2077,10.1073,10.0,10.0
+149,4.938,10.0,4.0,52.0,86.033,111.0,702.0,115.0,473.0,493.016,511.0,595.0,429.0,508.0,521.572,536.0,735.0,0.0,6.0,25.1474,46.0,397.0,116.0,122.077,10.3296,14.1479,10.2324,10.0,10.0
+150,4.972,10.0,4.0,52.0,86.1949,111.0,634.0,86.0,473.0,493.078,511.0,592.0,429.0,508.0,521.146,536.0,748.0,0.0,6.0,24.9227,46.0,437.0,114.0,120.888,10.8801,13.9606,10.1312,10.0,10.0
+151,5.005,10.0,4.0,52.0,86.635,112.0,618.0,90.0,473.0,493.104,511.0,588.0,428.0,508.0,521.536,536.0,728.0,0.0,6.0,25.1147,46.0,423.0,116.0,122.0,9.91493,14.2498,10.1857,10.0,10.0
+152,5.038,10.0,4.0,52.0,85.9259,111.0,641.0,74.0,474.0,493.3,511.0,594.0,437.0,508.0,521.31,536.0,727.0,0.0,6.0,24.7922,46.0,438.0,116.0,121.875,11.2142,14.2236,10.3522,10.0,10.0
+153,5.072,10.0,4.0,53.0,86.7851,112.0,639.0,77.0,473.0,492.884,511.0,591.0,429.0,508.0,521.865,536.0,742.0,0.0,6.0,25.3457,46.0,439.0,116.0,121.956,10.5586,13.9628,10.2186,10.0,10.0
+154,5.105,10.0,4.0,52.0,85.9973,111.0,642.0,59.0,474.0,493.181,511.0,612.0,424.0,508.0,522.113,536.0,734.0,0.0,6.0,25.1772,46.0,471.0,118.0,123.376,10.2105,14.0021,10.2356,10.0,10.0
+155,5.138,10.0,4.0,52.0,85.9774,111.0,619.0,68.0,474.0,493.453,511.0,586.0,432.0,508.0,521.907,536.0,728.0,0.0,6.0,24.8667,46.0,450.0,117.0,123.287,10.553,13.9279,10.2497,10.0,10.0
+156,5.172,10.0,4.0,53.0,86.4711,112.0,619.0,68.0,474.0,493.523,511.0,590.0,430.0,508.0,522.201,536.0,724.0,0.0,6.0,24.9026,45.0,449.0,119.0,123.646,9.89885,13.8761,10.2837,10.0,10.0
+157,5.205,10.0,4.0,52.0,86.0319,111.0,1019.0,98.0,474.0,493.491,511.0,610.0,428.0,508.0,522.137,536.0,719.0,0.0,6.0,24.9333,45.0,414.0,119.0,124.372,10.8848,13.8072,10.1799,10.0,10.0
+158,5.239,10.0,4.0,52.0,85.8446,110.0,617.0,86.0,474.0,494.252,512.0,594.0,350.0,509.0,522.24,536.0,719.0,0.0,6.0,24.3837,45.0,433.0,121.0,126.008,10.552,13.7894,10.1368,10.0,10.0
+159,5.272,10.0,4.0,52.0,85.8459,111.0,1019.0,99.0,474.0,494.53,512.0,590.0,436.0,509.0,522.546,536.0,723.0,0.0,6.0,24.2581,45.0,415.0,123.0,127.564,9.81878,13.7347,10.2062,10.0,10.0
+160,5.305,10.0,4.0,52.0,85.5234,110.0,629.0,118.0,474.0,494.628,512.0,597.0,428.0,508.0,522.253,536.0,718.0,0.0,5.0,24.1037,44.0,400.0,122.0,126.633,10.5799,13.869,10.2752,10.0,10.0
+161,5.339,10.0,4.0,53.0,86.1099,110.0,628.0,124.0,474.0,494.86,512.0,594.0,419.0,509.0,522.656,536.0,737.0,0.0,6.0,24.177,45.0,389.0,123.0,128.129,10.0082,13.7177,10.3213,10.0,10.0
+162,5.372,10.0,4.0,51.0,85.8598,112.0,621.0,122.0,475.0,495.309,512.0,600.0,432.0,509.0,522.404,536.0,728.0,0.0,5.0,23.7172,44.0,397.0,123.0,129.159,11.0373,13.667,10.351,10.0,10.0
+163,5.405,10.0,4.0,53.0,87.2735,113.0,1019.0,103.0,474.0,494.958,512.0,602.0,430.0,509.0,522.885,536.0,729.0,0.0,6.0,24.1889,45.0,411.0,124.0,128.929,10.5762,13.4754,10.0892,10.0,10.0
+164,5.439,10.0,4.0,53.0,86.6809,112.0,643.0,95.0,474.0,495.049,512.0,595.0,424.0,509.0,523.075,536.0,765.0,0.0,6.0,24.19,45.0,419.0,125.0,129.708,10.1863,13.5861,10.3041,10.0,10.0
+165,5.472,10.0,4.0,53.0,87.0616,113.0,619.0,106.0,474.0,495.112,512.0,594.0,414.0,509.0,522.953,536.0,737.0,0.0,6.0,24.1448,45.0,409.0,125.0,130.067,10.9965,13.7038,10.388,10.0,10.0
+166,5.506,10.0,4.0,53.0,86.958,112.0,633.0,102.0,475.0,495.012,512.0,596.0,430.0,510.0,523.301,536.0,724.0,0.0,6.0,24.3384,45.0,415.0,126.0,130.184,10.0545,13.7053,10.3383,10.0,10.0
+167,5.539,10.0,4.0,53.0,86.5106,112.0,885.0,114.0,474.0,495.224,512.0,602.0,428.0,509.0,522.905,536.0,763.0,0.0,5.0,23.9638,45.0,404.0,124.0,129.745,10.8642,13.6366,10.2132,10.0,10.0
+168,5.572,10.0,4.0,53.0,87.1584,112.0,662.0,128.0,474.0,495.101,512.0,592.0,436.0,509.0,523.285,537.0,721.0,0.0,6.0,24.2302,45.0,388.0,126.0,130.336,10.4907,13.5626,10.2498,10.0,10.0
+169,5.606,10.0,4.0,52.0,86.5406,112.0,899.0,110.0,474.0,495.076,512.0,596.0,424.0,510.0,523.348,536.0,728.0,0.0,6.0,24.3651,45.0,404.0,126.0,130.667,10.0058,13.5867,10.2462,10.0,10.0
+170,5.639,10.0,4.0,52.0,86.3714,112.0,624.0,101.0,475.0,495.163,512.0,592.0,424.0,509.0,522.946,536.0,748.0,0.0,5.0,23.9938,44.0,414.0,125.0,130.097,11.2361,13.8466,10.3677,10.0,10.0
+171,5.672,10.0,4.0,53.0,87.3393,113.0,618.0,118.0,474.0,494.973,512.0,591.0,424.0,510.0,523.581,537.0,716.0,0.0,6.0,24.4553,45.0,396.0,126.0,130.705,10.4902,13.7302,10.4058,10.0,10.0
+172,5.706,10.0,4.0,53.0,87.6497,113.0,1019.0,108.0,475.0,495.127,512.0,586.0,434.0,510.0,523.291,537.0,720.0,0.0,6.0,24.2315,44.0,406.0,126.0,130.609,10.6356,13.6842,10.3868,10.0,10.0
+173,5.739,10.0,4.0,53.0,87.3177,112.0,651.0,130.0,475.0,495.569,512.0,610.0,424.0,510.0,523.274,536.0,718.0,0.0,6.0,23.8981,44.0,384.0,126.0,131.569,10.536,13.4393,10.2038,10.0,10.0
+174,5.772,10.0,4.0,53.0,87.097,113.0,630.0,89.0,475.0,495.661,512.0,595.0,434.0,510.0,523.185,536.0,744.0,0.0,5.0,23.7981,44.0,428.0,126.0,131.663,10.0896,13.372,10.1548,10.0,10.0
+175,5.806,10.0,4.0,53.0,87.136,113.0,615.0,124.0,475.0,495.495,512.0,582.0,428.0,509.0,522.978,536.0,728.0,0.0,5.0,23.8617,45.0,392.0,126.0,130.866,10.6251,13.6116,10.1991,10.0,10.0
+176,5.839,10.0,4.0,53.0,87.5844,113.0,637.0,121.0,475.0,495.164,512.0,590.0,427.0,510.0,523.351,537.0,724.0,0.0,6.0,24.2772,45.0,396.0,126.0,130.675,9.85837,13.6934,10.3036,10.0,10.0
+177,5.873,10.0,4.0,53.0,87.6273,114.0,1019.0,124.0,474.0,495.071,512.0,612.0,426.0,510.0,523.426,537.0,736.0,0.0,6.0,24.4201,45.0,389.0,126.0,131.122,11.2356,13.5744,10.2436,10.0,10.0
+178,5.906,10.0,4.0,53.0,87.8604,113.0,641.0,106.0,474.0,495.071,512.0,590.0,430.0,510.0,523.475,537.0,740.0,0.0,6.0,24.4099,45.0,413.0,126.0,130.849,10.5608,13.7084,10.2591,10.0,10.0
+179,5.939,10.0,4.0,53.0,87.1854,113.0,1019.0,84.0,475.0,495.386,512.0,594.0,430.0,510.0,523.634,537.0,741.0,0.0,6.0,24.3335,45.0,432.0,128.0,132.08,9.99142,13.6861,10.2938,10.0,10.0
+180,5.973,10.0,4.0,53.0,87.7815,114.0,940.0,154.0,475.0,495.304,512.0,592.0,444.0,509.0,523.229,536.0,742.0,0.0,5.0,24.1212,45.0,362.0,126.0,130.724,10.7263,13.7653,10.2109,10.0,10.0
+181,6.006,10.0,4.0,53.0,88.1935,114.0,1019.0,103.0,474.0,495.104,512.0,595.0,430.0,510.0,523.614,537.0,724.0,0.0,6.0,24.5229,45.0,411.0,127.0,131.125,10.1115,13.7387,10.3849,10.0,10.0
+182,6.039,10.0,4.0,53.0,87.1267,113.0,624.0,90.0,474.0,495.032,512.0,595.0,420.0,509.0,523.405,537.0,736.0,0.0,6.0,24.391,45.0,427.0,126.0,130.978,10.6089,13.6791,10.4656,10.0,10.0
+183,6.073,10.0,4.0,53.0,87.5209,113.0,942.0,118.0,474.0,494.767,512.0,596.0,416.0,510.0,523.643,537.0,721.0,0.0,6.0,24.7076,46.0,399.0,126.0,130.254,10.5278,13.5621,10.2952,10.0,10.0
+184,6.106,10.0,4.0,53.0,87.5155,114.0,1010.0,106.0,474.0,494.705,512.0,591.0,433.0,510.0,524.001,537.0,721.0,0.0,6.0,25.0665,46.0,409.0,127.0,131.85,9.98794,13.9246,10.4406,10.0,10.0
+185,6.139,10.0,4.0,53.0,87.4429,114.0,1005.0,118.0,474.0,494.781,512.0,602.0,422.0,510.0,523.74,537.0,757.0,0.0,6.0,24.8161,45.0,395.0,126.0,130.861,10.9084,13.8824,10.4707,10.0,10.0
+186,6.173,10.0,4.0,53.0,87.7805,114.0,1019.0,81.0,474.0,494.822,512.0,590.0,413.0,510.0,523.743,537.0,749.0,0.0,6.0,24.717,45.0,435.0,126.0,131.067,10.2444,13.8364,10.3062,10.0,10.0
+187,6.206,10.0,4.0,53.0,87.7471,114.0,616.0,80.0,474.0,494.586,512.0,594.0,416.0,510.0,523.79,537.0,755.0,0.0,6.0,24.943,45.0,435.0,126.0,130.558,10.6432,13.7553,10.3457,10.0,10.0
+188,6.24,10.0,4.0,54.0,87.6165,113.0,1019.0,138.0,474.0,494.46,512.0,609.0,423.0,510.0,524.197,537.0,729.0,0.0,6.0,25.1614,45.0,384.0,127.0,130.972,10.626,13.7735,10.4373,10.0,10.0
+189,6.273,10.0,4.0,54.0,87.9483,114.0,626.0,134.0,474.0,494.857,512.0,590.0,432.0,510.0,524.234,537.0,732.0,0.0,6.0,24.8915,46.0,379.0,128.0,132.062,10.0177,13.7849,10.4231,10.0,10.0
+190,6.306,10.0,4.0,53.0,87.0248,113.0,1019.0,106.0,474.0,494.655,512.0,592.0,430.0,510.0,523.564,537.0,724.0,0.0,6.0,24.6785,45.0,410.0,125.0,129.445,10.7021,13.613,10.3596,10.0,10.0
+191,6.34,10.0,4.0,54.0,87.5563,112.0,1019.0,98.0,474.0,494.191,512.0,604.0,430.0,510.0,524.124,537.0,723.0,0.0,6.0,25.2702,46.0,416.0,126.0,130.373,9.89134,13.6748,10.3501,10.0,10.0
+192,6.373,10.0,4.0,53.0,86.6945,112.0,1019.0,106.0,474.0,494.402,512.0,589.0,442.0,510.0,523.784,537.0,720.0,0.0,6.0,24.9173,46.0,409.0,126.0,129.918,11.3091,13.736,10.4026,10.0,10.0
+193,6.406,10.0,4.0,54.0,88.0077,113.0,898.0,115.0,474.0,494.043,512.0,595.0,412.0,510.0,524.19,537.0,720.0,0.0,6.0,25.468,46.0,400.0,126.0,130.345,10.5911,13.8722,10.449,10.0,10.0
+194,6.44,10.0,4.0,53.0,86.3966,112.0,617.0,107.0,474.0,494.569,512.0,603.0,428.0,510.0,523.893,537.0,779.0,0.0,6.0,24.9316,45.0,410.0,126.0,130.297,10.1931,13.9236,10.4703,10.0,10.0
+195,6.473,10.0,4.0,53.0,87.0301,112.0,1019.0,166.0,474.0,494.48,512.0,596.0,424.0,510.0,523.531,537.0,767.0,0.0,6.0,24.8104,45.0,350.0,125.0,129.947,11.1308,13.8091,10.5124,10.0,10.0
+196,6.507,10.0,4.0,54.0,88.2131,113.0,822.0,128.0,474.0,494.44,512.0,592.0,435.0,510.0,523.912,537.0,741.0,0.0,6.0,25.0122,45.0,415.0,126.0,130.249,10.348,13.6105,10.3804,10.0,10.0
+197,6.54,10.0,4.0,53.0,87.5232,113.0,631.0,86.0,474.0,494.586,512.0,608.0,416.0,510.0,523.633,537.0,722.0,0.0,6.0,24.8388,45.0,427.0,126.0,130.287,10.6186,13.678,10.4519,10.0,10.0
+198,6.573,10.0,4.0,54.0,88.453,114.0,616.0,101.0,474.0,494.783,512.0,590.0,432.0,510.0,523.583,537.0,732.0,0.0,6.0,24.6299,45.0,417.0,126.0,130.46,10.4886,13.7132,10.4253,10.0,10.0
+199,6.607,10.0,4.0,54.0,88.278,114.0,1019.0,76.0,474.0,494.627,512.0,601.0,417.0,510.0,523.95,537.0,741.0,0.0,6.0,24.9476,45.0,441.0,127.0,131.474,9.9956,13.8254,10.4655,10.0,10.0
+200,6.64,10.0,4.0,54.0,88.1353,114.0,614.0,122.0,474.0,493.958,512.0,590.0,444.0,510.0,523.619,537.0,773.0,0.0,6.0,25.1766,46.0,395.0,123.0,128.303,10.7019,13.8537,10.4268,10.0,10.0
+201,6.673,10.0,4.0,54.0,88.4448,114.0,620.0,92.0,474.0,494.079,512.0,600.0,432.0,510.0,524.104,537.0,814.0,0.0,6.0,25.3958,46.0,421.0,126.0,129.929,10.0249,13.7257,10.3879,10.0,10.0
+202,6.707,10.0,4.0,54.0,88.1077,113.0,629.0,84.0,474.0,494.407,512.0,612.0,424.0,510.0,523.482,537.0,764.0,0.0,6.0,24.803,45.0,431.0,125.0,129.292,11.473,14.007,10.549,10.0,10.0
+203,6.74,10.0,4.0,54.0,88.0436,114.0,1019.0,104.0,474.0,494.207,512.0,587.0,432.0,510.0,523.808,537.0,786.0,0.0,6.0,25.1792,46.0,412.0,126.0,130.108,10.9317,13.856,10.3363,10.0,10.0
+204,6.773,10.0,4.0,54.0,88.0352,114.0,682.0,118.0,474.0,494.517,512.0,602.0,430.0,509.0,523.666,537.0,816.0,0.0,6.0,24.9693,45.0,396.0,126.0,130.156,10.1535,13.9011,10.5317,10.0,10.0
+205,6.807,10.0,4.0,54.0,88.1535,114.0,635.0,124.0,474.0,494.378,512.0,592.0,424.0,509.0,523.295,536.0,796.0,0.0,6.0,24.7323,45.0,390.0,124.0,128.945,11.0285,13.6996,10.4792,10.0,10.0
+206,6.84,10.0,4.0,54.0,88.2461,114.0,1019.0,94.0,474.0,494.494,512.0,632.0,434.0,510.0,523.653,537.0,761.0,0.0,6.0,24.9118,45.0,422.0,126.0,130.218,10.1016,13.4553,10.2713,10.0,10.0
+207,6.874,10.0,4.0,53.0,86.904,113.0,616.0,114.0,474.0,494.249,512.0,586.0,428.0,510.0,523.535,537.0,767.0,0.0,6.0,24.9939,45.0,406.0,124.0,129.419,10.6926,13.6107,10.3041,10.0,10.0
+208,6.907,10.0,4.0,54.0,87.5767,113.0,1019.0,122.0,474.0,494.184,512.0,642.0,436.0,510.0,523.938,537.0,776.0,0.0,6.0,25.2862,46.0,395.0,126.0,130.06,10.6974,13.9422,10.3854,10.0,10.0
+209,6.94,10.0,4.0,54.0,87.7498,113.0,632.0,118.0,474.0,494.362,512.0,650.0,430.0,510.0,523.993,537.0,758.0,0.0,6.0,25.2135,45.0,396.0,126.0,130.584,9.92619,13.8137,10.4048,10.0,10.0
+210,6.974,10.0,4.0,54.0,87.9778,113.0,605.0,75.0,474.0,494.395,512.0,592.0,434.0,510.0,523.637,537.0,824.0,0.0,6.0,25.0015,46.0,440.0,125.0,129.595,10.7773,13.7661,10.4269,10.0,10.0
+211,7.007,10.0,4.0,55.0,88.7663,114.0,621.0,105.0,474.0,494.498,512.0,881.0,415.0,510.0,523.829,537.0,743.0,0.0,6.0,25.0665,45.0,410.0,126.0,130.615,10.1607,13.9459,10.5662,10.0,10.0
+212,7.04,10.0,4.0,53.0,87.0911,113.0,637.0,96.0,474.0,494.418,512.0,910.0,424.0,509.0,523.312,536.0,718.0,0.0,6.0,24.8823,45.0,419.0,125.0,129.588,10.5596,13.7999,10.5129,10.0,10.0
+213,7.074,10.0,4.0,53.0,86.3094,112.0,631.0,104.0,474.0,494.503,512.0,896.0,420.0,509.0,523.479,537.0,728.0,0.0,6.0,24.9353,46.0,411.0,125.0,130.263,10.5119,13.8783,10.5007,10.0,10.0
+214,7.107,10.0,4.0,52.0,86.2677,113.0,642.0,108.0,474.0,494.699,512.0,603.0,436.0,510.0,523.459,537.0,749.0,0.0,6.0,24.7028,46.0,407.0,126.0,130.514,10.0392,13.9817,10.4453,10.0,10.0
+215,7.14,10.0,4.0,52.0,86.6409,113.0,633.0,96.0,474.0,494.826,512.0,589.0,413.0,509.0,523.122,537.0,775.0,0.0,6.0,24.4846,45.0,427.0,125.0,129.93,10.6349,13.8745,10.3493,10.0,10.0
+216,7.174,10.0,4.0,54.0,87.911,114.0,725.0,124.0,474.0,494.889,512.0,619.0,436.0,509.0,523.32,537.0,817.0,0.0,6.0,24.5286,45.0,392.0,125.0,130.203,9.92134,13.8751,10.3181,10.0,10.0
+217,7.207,10.0,4.0,53.0,86.706,112.0,621.0,118.0,474.0,495.19,512.0,592.0,434.0,509.0,522.946,536.0,736.0,0.0,5.0,24.0217,45.0,395.0,124.0,130.196,10.9226,13.8245,10.2821,10.0,10.0
+218,7.241,10.0,4.0,51.0,85.7761,112.0,893.0,80.0,475.0,495.751,513.0,581.0,424.0,509.0,522.607,536.0,718.0,0.0,5.0,23.5577,44.0,433.0,126.0,131.12,10.5509,13.5721,10.1649,10.0,10.0
+219,7.274,10.0,4.0,52.0,85.6947,112.0,608.0,118.0,475.0,495.965,513.0,590.0,432.0,509.0,522.892,536.0,760.0,0.0,5.0,23.5363,45.0,400.0,127.0,131.939,10.0631,13.781,10.2795,10.0,10.0
+220,7.307,10.0,4.0,52.0,85.9452,112.0,607.0,103.0,475.0,495.867,513.0,596.0,434.0,509.0,522.47,536.0,776.0,0.0,5.0,23.3628,44.0,412.0,125.0,130.896,11.266,13.649,10.0995,10.0,10.0
+221,7.341,10.0,4.0,52.0,86.1881,113.0,779.0,111.0,475.0,495.612,512.0,614.0,423.0,509.0,522.799,536.0,728.0,0.0,5.0,23.7424,45.0,403.0,126.0,130.649,10.4617,13.5212,10.1699,10.0,10.0
+222,7.374,10.0,4.0,52.0,85.6153,111.0,609.0,117.0,475.0,496.056,513.0,595.0,433.0,509.0,522.242,536.0,747.0,0.0,5.0,23.1732,44.0,399.0,124.0,131.001,10.6913,13.4736,10.136,10.0,10.0
+223,7.407,10.0,4.0,53.0,87.8665,114.0,1019.0,104.0,474.0,495.44,512.0,594.0,413.0,509.0,522.618,536.0,721.0,0.0,5.0,23.7893,45.0,414.0,124.0,129.887,10.5055,13.6678,10.1693,10.0,10.0
+224,7.441,10.0,4.0,53.0,87.3023,114.0,988.0,124.0,474.0,495.465,512.0,604.0,434.0,509.0,522.75,536.0,715.0,0.0,5.0,23.8636,45.0,394.0,125.0,130.733,10.2888,13.7113,10.2822,10.0,10.0
+225,7.474,10.0,4.0,53.0,87.4706,113.0,620.0,60.0,475.0,495.535,512.0,594.0,412.0,508.0,522.337,536.0,716.0,0.0,5.0,23.6081,44.0,454.0,124.0,130.212,10.9627,13.7919,10.2358,10.0,10.0
+226,7.508,10.0,4.0,53.0,87.5503,113.0,1019.0,80.0,475.0,495.638,512.0,591.0,410.0,509.0,522.637,536.0,748.0,0.0,5.0,23.5686,44.0,432.0,124.0,130.169,10.3442,13.7101,10.1712,10.0,10.0
+227,7.541,10.0,4.0,53.0,87.4629,114.0,1019.0,106.0,475.0,495.933,513.0,591.0,424.0,508.0,522.244,536.0,722.0,0.0,5.0,23.2604,44.0,411.0,124.0,130.618,11.1419,13.5917,10.2196,10.0,10.0
+228,7.574,10.0,4.0,53.0,87.6016,113.0,1019.0,120.0,476.0,496.194,513.0,592.0,440.0,509.0,522.267,536.0,740.0,0.0,5.0,23.0301,44.0,396.0,125.0,131.322,11.7914,13.436,10.0627,10.0,10.0
+229,7.608,10.0,4.0,53.0,87.033,113.0,1019.0,124.0,476.0,496.682,513.0,600.0,437.0,509.0,522.45,536.0,724.0,0.0,5.0,22.7996,44.0,388.0,128.0,132.998,10.0811,13.4489,10.031,10.0,10.0
+230,7.641,10.0,4.0,53.0,87.5829,114.0,1019.0,100.0,476.0,496.734,513.0,596.0,437.0,508.0,522.082,536.0,716.0,0.0,5.0,22.7489,44.0,415.0,126.0,132.36,10.9062,13.4474,10.0137,10.0,10.0
+231,7.674,10.0,4.0,54.0,88.1663,114.0,611.0,101.0,476.0,496.819,514.0,594.0,437.0,509.0,522.342,536.0,755.0,0.0,5.0,22.7896,44.0,414.0,127.0,133.738,10.4381,13.4784,10.067,10.0,10.0
+232,7.708,10.0,4.0,54.0,87.6618,113.0,622.0,111.0,476.0,496.625,513.0,596.0,424.0,508.0,522.059,536.0,771.0,0.0,5.0,22.7802,44.0,407.0,126.0,132.689,10.8752,13.6397,10.1764,10.0,10.0
+233,7.741,10.0,4.0,53.0,87.8598,114.0,826.0,124.0,476.0,496.398,513.0,594.0,424.0,509.0,522.431,536.0,755.0,0.0,5.0,23.0417,44.0,391.0,126.0,132.069,10.7943,13.5502,10.0087,10.0,10.0
+234,7.774,10.0,4.0,53.0,87.497,113.0,970.0,92.0,475.0,495.873,513.0,601.0,433.0,509.0,522.744,536.0,726.0,0.0,5.0,23.5962,44.0,424.0,126.0,131.884,10.4464,13.7296,10.1543,10.0,10.0
+235,7.808,10.0,4.0,54.0,88.2123,114.0,1019.0,109.0,476.0,496.115,513.0,602.0,424.0,509.0,522.276,536.0,725.0,0.0,5.0,23.1966,44.0,405.0,125.0,131.44,11.2459,13.6662,10.0779,10.0,10.0
+236,7.841,10.0,4.0,54.0,88.33,114.0,618.0,118.0,476.0,496.289,513.0,596.0,436.0,509.0,522.613,536.0,730.0,0.0,5.0,23.1744,44.0,398.0,127.0,132.497,10.2665,13.5113,10.1574,10.0,10.0
+237,7.875,10.0,4.0,53.0,87.3065,114.0,1019.0,108.0,475.0,496.257,513.0,594.0,420.0,509.0,522.593,536.0,718.0,0.0,5.0,23.2351,44.0,405.0,127.0,132.605,10.7453,13.5193,10.1969,10.0,10.0
+238,7.908,10.0,4.0,53.0,87.5967,114.0,782.0,96.0,475.0,496.375,513.0,593.0,430.0,509.0,522.636,536.0,721.0,0.0,5.0,23.0839,44.0,421.0,127.0,132.66,11.2361,13.4114,10.0505,10.0,10.0
+239,7.941,10.0,4.0,53.0,87.5602,114.0,1019.0,160.0,476.0,496.143,513.0,600.0,438.0,509.0,522.909,536.0,740.0,0.0,5.0,23.4489,44.0,357.0,128.0,132.583,9.89665,13.5047,10.0315,10.0,10.0
+240,7.975,10.0,4.0,54.0,88.0108,113.0,1019.0,102.0,475.0,496.015,513.0,602.0,420.0,509.0,522.578,536.0,733.0,0.0,5.0,23.4069,44.0,412.0,126.0,132.311,10.596,13.4037,10.0663,10.0,10.0
+241,8.008,10.0,4.0,54.0,88.5822,114.0,1019.0,138.0,476.0,496.212,513.0,609.0,434.0,509.0,523.039,536.0,727.0,0.0,5.0,23.4324,44.0,376.0,128.0,132.676,9.85976,13.7022,10.2168,10.0,10.0
+242,8.041,10.0,4.0,53.0,87.1462,113.0,611.0,85.0,475.0,496.051,513.0,621.0,432.0,509.0,522.687,536.0,729.0,0.0,5.0,23.4824,45.0,432.0,126.0,132.286,11.4898,13.7457,10.3281,10.0,10.0
+243,8.075,10.0,4.0,53.0,87.5538,113.0,636.0,87.0,476.0,496.362,513.0,595.0,433.0,509.0,522.746,536.0,728.0,0.0,5.0,23.2559,44.0,426.0,127.0,132.922,10.7967,13.5058,10.246,10.0,10.0
+244,8.108,10.0,4.0,53.0,86.7404,113.0,634.0,123.0,476.0,496.457,513.0,594.0,433.0,509.0,522.896,536.0,730.0,0.0,5.0,23.3208,44.0,395.0,128.0,133.985,9.93845,13.5895,10.2506,10.0,10.0
+245,8.141,10.0,4.0,52.0,86.5637,113.0,997.0,118.0,476.0,496.351,513.0,599.0,430.0,509.0,522.306,536.0,730.0,0.0,5.0,23.0506,44.0,395.0,126.0,131.85,10.9488,13.5639,10.1936,10.0,10.0
+246,8.175,10.0,4.0,53.0,87.5155,114.0,615.0,85.0,476.0,496.696,513.0,596.0,420.0,509.0,522.427,536.0,720.0,0.0,5.0,22.8481,44.0,431.0,128.0,133.318,10.265,13.4132,10.0636,10.0,10.0
+247,8.208,10.0,4.0,53.0,86.717,113.0,1019.0,48.0,476.0,496.493,513.0,590.0,418.0,509.0,522.223,536.0,752.0,0.0,5.0,22.832,44.0,469.0,126.0,132.094,10.4828,13.5631,10.1104,10.0,10.0
+248,8.242,10.0,4.0,53.0,86.2358,112.0,612.0,106.0,476.0,496.783,514.0,599.0,440.0,509.0,522.255,536.0,727.0,0.0,5.0,22.7393,44.0,408.0,127.0,133.274,10.5871,13.6386,10.0772,10.0,10.0
+249,8.275,10.0,4.0,52.0,86.7204,113.0,629.0,102.0,476.0,496.702,514.0,597.0,402.0,509.0,522.389,536.0,721.0,0.0,5.0,22.8543,44.0,410.0,127.0,133.227,9.98614,13.504,10.0971,10.0,10.0
+250,8.308,10.0,4.0,53.0,86.2515,112.0,1019.0,96.0,475.0,496.355,513.0,594.0,414.0,509.0,522.142,536.0,721.0,0.0,5.0,22.8861,44.0,420.0,125.0,131.574,10.6995,13.5182,10.0242,10.0,10.0
+251,8.342,10.0,4.0,53.0,86.7024,113.0,622.0,122.0,476.0,496.721,513.0,594.0,432.0,509.0,522.207,536.0,724.0,0.0,5.0,22.6812,44.0,392.0,127.0,132.942,9.94362,13.4687,10.066,10.0,10.0
+252,8.375,10.0,4.0,51.0,85.0352,112.0,1019.0,124.0,476.0,496.823,514.0,591.0,434.0,508.0,521.869,536.0,726.0,0.0,5.0,22.5186,44.0,392.0,126.0,132.76,11.6573,13.5543,10.1986,10.0,10.0
+253,8.408,10.0,4.0,53.0,86.1264,112.0,1019.0,101.0,475.0,496.466,513.0,592.0,434.0,508.0,522.158,536.0,723.0,0.0,5.0,22.9045,44.0,412.0,126.0,132.22,10.7626,13.5219,10.0279,10.0,10.0
+254,8.442,10.0,4.0,52.0,85.6861,111.0,1019.0,100.0,475.0,496.507,513.0,603.0,413.0,509.0,522.403,536.0,726.0,0.0,5.0,23.0297,44.0,414.0,127.0,133.427,9.98729,13.6506,10.1651,10.0,10.0
+255,8.475,10.0,4.0,53.0,86.6304,113.0,636.0,106.0,476.0,496.48,513.0,606.0,438.0,508.0,522.187,536.0,727.0,0.0,5.0,22.9626,44.0,408.0,126.0,131.911,10.981,13.5841,10.1131,10.0,10.0
+256,8.509,10.0,4.0,53.0,86.8394,113.0,616.0,118.0,475.0,496.328,513.0,592.0,432.0,509.0,522.483,536.0,726.0,0.0,5.0,23.0732,44.0,397.0,126.0,131.997,10.1275,13.5036,10.1286,10.0,10.0
+257,8.542,10.0,4.0,52.0,86.4282,113.0,612.0,122.0,476.0,496.52,513.0,594.0,423.0,509.0,522.211,536.0,750.0,0.0,5.0,22.9148,44.0,393.0,126.0,131.985,10.6218,13.4211,10.1192,10.0,10.0
+258,8.575,10.0,4.0,53.0,87.9149,114.0,1019.0,90.0,476.0,496.543,513.0,591.0,421.0,509.0,522.4,536.0,713.0,0.0,5.0,22.9795,44.0,428.0,126.0,132.746,10.632,13.5849,10.1706,10.0,10.0
+259,8.609,10.0,4.0,53.0,87.3241,114.0,625.0,113.0,477.0,496.802,513.0,590.0,425.0,509.0,522.793,536.0,731.0,0.0,5.0,22.8429,44.0,404.0,128.0,134.248,9.98012,13.5677,10.169,10.0,10.0
+260,8.642,10.0,4.0,53.0,87.1589,113.0,780.0,124.0,475.0,496.102,513.0,592.0,436.0,509.0,522.737,536.0,760.0,0.0,5.0,23.3001,44.0,392.0,126.0,131.495,10.8627,13.384,10.1119,10.0,10.0
+261,8.675,10.0,4.0,54.0,87.8717,114.0,1019.0,122.0,474.0,495.604,512.0,605.0,439.0,509.0,523.229,537.0,734.0,0.0,5.0,23.9641,45.0,391.0,127.0,132.008,10.1557,13.5708,10.2568,10.0,10.0
+262,8.709,10.0,4.0,54.0,88.8527,115.0,698.0,102.0,475.0,495.285,512.0,592.0,424.0,509.0,523.173,536.0,725.0,0.0,6.0,24.1378,44.0,414.0,126.0,130.835,10.5292,13.737,10.351,10.0,10.0
+263,8.742,10.0,4.0,54.0,88.9135,115.0,896.0,106.0,474.0,495.444,512.0,600.0,434.0,510.0,523.262,536.0,756.0,0.0,5.0,24.0872,45.0,409.0,126.0,131.622,10.5895,13.7197,10.3472,10.0,10.0
+264,8.775,10.0,4.0,54.0,88.2515,115.0,703.0,124.0,475.0,495.968,513.0,612.0,443.0,510.0,523.25,536.0,751.0,0.0,5.0,23.7339,44.0,392.0,128.0,133.116,9.89442,13.7234,10.2614,10.0,10.0
+265,8.809,10.0,4.0,54.0,88.1729,114.0,890.0,132.0,476.0,496.091,513.0,589.0,410.0,509.0,522.439,536.0,725.0,0.0,5.0,23.2458,44.0,380.0,126.0,131.233,10.5111,13.329,10.0934,10.0,10.0
+266,8.842,10.0,4.0,54.0,88.9752,115.0,1019.0,100.0,475.0,495.887,513.0,595.0,430.0,509.0,522.788,536.0,720.0,0.0,5.0,23.4905,44.0,417.0,126.0,131.571,9.95216,13.3546,10.126,10.0,10.0
+267,8.876,10.0,4.0,53.0,87.4877,114.0,850.0,106.0,475.0,495.81,513.0,612.0,406.0,509.0,522.676,536.0,720.0,0.0,5.0,23.5149,44.0,408.0,126.0,131.556,10.8261,13.6379,10.2039,10.0,10.0
+268,8.909,10.0,4.0,54.0,88.0865,115.0,610.0,134.0,475.0,495.873,513.0,594.0,443.0,509.0,522.809,536.0,719.0,0.0,5.0,23.484,44.0,382.0,126.0,131.437,10.4914,13.5317,10.2036,10.0,10.0
+269,8.942,10.0,4.0,54.0,88.1492,115.0,1019.0,134.0,475.0,495.854,513.0,603.0,422.0,509.0,523.079,536.0,752.0,0.0,5.0,23.7465,44.0,378.0,127.0,132.283,9.88406,13.6005,10.228,10.0,10.0
+270,8.976,10.0,4.0,54.0,88.4114,114.0,615.0,101.0,475.0,495.701,512.0,594.0,433.0,509.0,522.927,536.0,742.0,0.0,5.0,23.7216,44.0,414.0,126.0,131.503,10.6819,13.5414,10.1507,10.0,10.0
+271,9.009,10.0,4.0,54.0,88.5806,115.0,835.0,101.0,475.0,495.715,512.0,640.0,433.0,509.0,522.938,536.0,724.0,0.0,5.0,23.7488,44.0,414.0,126.0,131.486,10.0111,13.5868,10.283,10.0,10.0
+272,9.042,10.0,4.0,54.0,87.5992,113.0,1019.0,132.0,474.0,495.351,512.0,780.0,440.0,509.0,522.816,536.0,740.0,0.0,5.0,23.9099,45.0,384.0,125.0,130.202,10.5221,13.6074,10.145,10.0,10.0
+273,9.076,10.0,4.0,54.0,87.5998,114.0,634.0,122.0,475.0,495.777,512.0,602.0,436.0,509.0,522.608,536.0,725.0,0.0,5.0,23.5776,44.0,391.0,125.0,130.726,10.4699,13.4434,10.2473,10.0,10.0
+274,9.109,10.0,4.0,53.0,87.2904,114.0,989.0,92.0,475.0,495.644,512.0,594.0,420.0,509.0,522.709,536.0,735.0,0.0,5.0,23.66,44.0,424.0,125.0,130.73,10.3163,13.4975,10.3646,10.0,10.0
+275,9.142,10.0,4.0,53.0,87.6187,114.0,629.0,110.0,475.0,495.661,513.0,596.0,436.0,508.0,522.208,536.0,719.0,0.0,5.0,23.5775,44.0,407.0,123.0,130.093,10.9969,13.6187,10.1248,10.0,10.0
+276,9.176,10.0,4.0,54.0,88.567,115.0,1019.0,110.0,475.0,495.508,512.0,595.0,418.0,509.0,522.924,536.0,724.0,0.0,5.0,23.8144,45.0,406.0,125.0,130.616,10.0797,13.6979,10.2775,10.0,10.0
+277,9.209,10.0,4.0,54.0,87.7383,113.0,686.0,87.0,474.0,495.48,512.0,602.0,434.0,509.0,522.649,536.0,722.0,0.0,5.0,23.727,45.0,431.0,124.0,130.04,11.2891,13.6456,10.2519,10.0,10.0
+278,9.243,10.0,4.0,54.0,88.138,114.0,1019.0,94.0,475.0,495.807,512.0,600.0,423.0,509.0,522.924,536.0,743.0,0.0,5.0,23.5929,45.0,424.0,126.0,130.993,11.4886,13.6292,10.1507,10.0,10.0
+279,9.276,10.0,4.0,54.0,88.6369,115.0,1019.0,100.0,475.0,495.872,512.0,592.0,430.0,509.0,522.873,536.0,745.0,0.0,5.0,23.5059,44.0,418.0,126.0,131.39,10.0705,13.4809,10.2602,10.0,10.0
+280,9.309,10.0,4.0,54.0,87.9523,114.0,619.0,115.0,475.0,495.61,512.0,596.0,430.0,509.0,522.853,536.0,753.0,0.0,5.0,23.7529,44.0,400.0,126.0,131.019,11.1589,13.5251,10.1394,10.0,10.0
+281,9.343,10.0,4.0,54.0,88.6271,115.0,1019.0,109.0,475.0,495.637,513.0,594.0,424.0,509.0,523.332,537.0,785.0,0.0,5.0,23.9622,45.0,405.0,127.0,132.098,9.94979,13.6629,10.3132,10.0,10.0
+282,9.376,10.0,4.0,53.0,87.6892,115.0,643.0,94.0,475.0,495.44,512.0,587.0,431.0,509.0,522.988,536.0,736.0,0.0,5.0,23.9404,45.0,422.0,125.0,129.991,11.2566,13.5051,10.3129,10.0,10.0
+283,9.409,10.0,4.0,54.0,88.7297,115.0,898.0,101.0,474.0,495.275,512.0,591.0,433.0,509.0,523.317,536.0,729.0,0.0,6.0,24.2436,45.0,417.0,126.0,130.897,10.7698,13.817,10.2889,10.0,10.0
+284,9.443,10.0,4.0,54.0,88.622,114.0,646.0,126.0,474.0,495.088,512.0,591.0,428.0,510.0,523.564,537.0,727.0,0.0,6.0,24.4382,45.0,388.0,127.0,131.346,10.2952,13.7971,10.301,10.0,10.0
+285,9.476,10.0,4.0,54.0,87.9752,114.0,627.0,118.0,474.0,495.356,512.0,606.0,430.0,509.0,523.191,536.0,724.0,0.0,6.0,23.9944,45.0,394.0,126.0,130.508,11.211,13.6492,10.3429,10.0,10.0
+286,9.51,10.0,4.0,54.0,88.4771,115.0,638.0,94.0,475.0,495.671,512.0,614.0,428.0,509.0,523.205,536.0,730.0,0.0,6.0,23.9024,44.0,422.0,126.0,131.568,10.2892,13.5235,10.0828,10.0,10.0
+287,9.543,10.0,4.0,54.0,87.9668,114.0,1019.0,122.0,474.0,495.519,512.0,594.0,430.0,509.0,522.841,536.0,728.0,0.0,5.0,23.8208,45.0,393.0,125.0,130.621,11.0012,13.5804,10.2771,10.0,10.0
+288,9.576,10.0,4.0,54.0,88.5027,115.0,1019.0,124.0,475.0,495.52,512.0,603.0,433.0,509.0,523.207,536.0,745.0,0.0,5.0,24.0122,45.0,395.0,126.0,131.013,10.9187,13.6163,10.2885,10.0,10.0
+289,9.61,10.0,4.0,53.0,87.7835,114.0,1004.0,134.0,475.0,496.209,513.0,607.0,424.0,509.0,522.637,536.0,724.0,0.0,5.0,23.3454,44.0,380.0,126.0,132.216,10.3375,13.5325,10.2454,10.0,10.0
+290,9.643,10.0,4.0,53.0,87.4572,114.0,913.0,101.0,476.0,496.508,513.0,600.0,436.0,509.0,522.153,536.0,733.0,0.0,5.0,22.852,44.0,415.0,125.0,131.617,10.5083,13.5549,10.1017,10.0,10.0
+291,9.676,10.0,4.0,53.0,87.8787,114.0,1019.0,114.0,475.0,496.181,513.0,594.0,434.0,509.0,522.562,536.0,726.0,0.0,5.0,23.3215,44.0,400.0,126.0,131.454,10.0976,13.5049,10.0884,10.0,10.0
+292,9.71,10.0,4.0,53.0,86.9779,113.0,618.0,122.0,475.0,496.319,513.0,591.0,436.0,509.0,522.393,536.0,741.0,0.0,5.0,23.1547,44.0,394.0,125.0,131.216,10.9832,13.6743,10.3201,10.0,10.0
+293,9.743,10.0,4.0,53.0,87.8174,114.0,1019.0,119.0,475.0,495.746,512.0,603.0,428.0,509.0,522.742,536.0,727.0,0.0,5.0,23.6614,45.0,394.0,125.0,130.836,11.0873,13.6176,10.4205,10.0,10.0
+294,9.776,10.0,4.0,53.0,87.5884,114.0,627.0,96.0,474.0,495.246,512.0,593.0,430.0,509.0,522.982,536.0,725.0,0.0,5.0,24.0572,45.0,420.0,125.0,130.226,10.5,13.5444,10.3837,10.0,10.0
+295,9.81,10.0,4.0,54.0,88.1123,114.0,623.0,86.0,475.0,495.287,512.0,592.0,429.0,508.0,522.44,536.0,743.0,0.0,5.0,23.8579,44.0,435.0,123.0,129.148,11.6079,13.7521,10.3726,10.0,10.0
+296,9.843,10.0,4.0,54.0,88.2796,114.0,640.0,86.0,475.0,495.958,513.0,591.0,434.0,509.0,522.599,536.0,736.0,0.0,5.0,23.3756,44.0,440.0,125.0,130.823,10.6963,13.6067,10.1764,10.0,10.0
+297,9.877,10.0,4.0,53.0,87.6009,114.0,631.0,122.0,475.0,496.233,513.0,592.0,394.0,508.0,521.893,536.0,721.0,0.0,5.0,22.9915,44.0,405.0,124.0,130.124,10.9971,13.5202,10.2781,10.0,10.0
+298,9.91,10.0,4.0,54.0,88.1939,114.0,620.0,100.0,476.0,496.432,513.0,600.0,432.0,508.0,521.983,536.0,725.0,0.0,5.0,22.7688,44.0,418.0,124.0,130.526,10.868,13.4095,10.2913,10.0,10.0
+299,9.943,10.0,4.0,54.0,87.9808,114.0,1019.0,100.0,476.0,496.246,513.0,594.0,412.0,508.0,522.246,536.0,732.0,0.0,5.0,23.0341,44.0,415.0,125.0,130.865,10.4208,13.4871,10.1123,10.0,10.0
+300,9.977,10.0,4.0,54.0,88.6523,115.0,608.0,118.0,475.0,495.976,512.0,601.0,432.0,509.0,522.165,536.0,736.0,0.0,5.0,23.1487,44.0,398.0,123.0,129.468,11.1215,13.5635,10.1424,10.0,10.0
+301,10.01,10.0,4.0,55.0,89.6532,115.0,799.0,122.0,475.0,495.76,512.0,600.0,430.0,509.0,522.542,536.0,725.0,0.0,5.0,23.5091,44.0,392.0,124.0,129.961,10.2449,13.5373,10.1967,10.0,10.0
+302,10.043,10.0,4.0,54.0,88.3845,114.0,632.0,96.0,475.0,495.852,512.0,599.0,434.0,509.0,522.375,536.0,718.0,0.0,5.0,23.4282,44.0,422.0,123.0,129.862,11.6509,13.3885,10.1752,10.0,10.0
+303,10.077,10.0,4.0,55.0,89.5961,116.0,950.0,90.0,475.0,495.679,512.0,616.0,430.0,509.0,522.612,536.0,733.0,0.0,5.0,23.7573,44.0,429.0,124.0,130.327,11.387,13.634,10.2293,10.0,10.0
+304,10.11,10.0,4.0,55.0,90.9756,121.0,664.0,128.0,475.0,495.598,512.0,594.0,440.0,509.0,522.819,536.0,736.0,0.0,5.0,23.6765,44.0,390.0,124.0,130.456,11.4065,13.706,10.3355,10.0,10.0
+305,10.143,10.0,4.0,57.0,96.9256,132.0,932.0,108.0,474.0,494.679,513.0,670.0,409.0,508.0,521.614,536.0,724.0,0.0,5.0,25.3855,48.0,405.0,120.0,128.475,29.018,18.7454,14.5737,10.0,10.0
+306,10.177,10.0,4.0,58.0,101.841,139.0,1019.0,114.0,472.0,494.097,515.0,652.0,428.0,507.0,521.015,536.0,736.0,0.0,5.0,27.0214,54.0,402.0,116.0,128.155,27.1344,19.3018,14.5139,10.0,10.0
+307,10.21,10.0,4.0,53.0,95.3408,124.0,913.0,101.0,473.0,495.0,516.0,673.0,423.0,505.0,520.121,536.0,733.0,0.0,5.0,26.3385,55.0,413.0,114.0,128.106,13.3622,14.0825,10.2002,10.0,10.0
+308,10.244,10.0,4.0,55.0,97.055,127.0,917.0,132.0,473.0,494.759,516.0,664.0,408.0,506.0,520.467,536.0,725.0,0.0,5.0,26.6204,55.0,382.0,116.0,129.011,13.5593,13.8945,10.176,10.0,10.0
+309,10.277,10.0,4.0,55.0,96.851,126.0,1019.0,114.0,472.0,494.572,516.0,680.0,397.0,506.0,520.3,536.0,736.0,0.0,5.0,26.7262,55.0,400.0,115.0,128.278,10.3618,14.0113,10.1213,10.0,10.0
+310,10.31,10.0,4.0,55.0,96.5303,125.0,1019.0,105.0,474.0,495.155,516.0,666.0,404.0,505.0,519.901,536.0,728.0,0.0,5.0,26.235,54.0,413.0,113.0,128.317,11.3047,14.0159,10.045,10.0,10.0
+311,10.344,10.0,4.0,55.0,97.4991,125.0,940.0,122.0,473.0,495.155,516.0,713.0,418.0,506.0,520.415,536.0,712.0,0.0,5.0,26.2837,55.0,396.0,116.0,129.782,10.4763,14.0329,10.1265,10.0,10.0
+312,10.377,10.0,4.0,54.0,96.5036,126.0,939.0,122.0,473.0,494.84,516.0,662.0,404.0,505.0,520.087,536.0,731.0,0.0,5.0,26.6059,54.0,392.0,115.0,128.739,11.0961,13.9097,10.0591,10.0,10.0
+313,10.41,10.0,4.0,55.0,97.8247,126.0,930.0,128.0,473.0,494.93,516.0,682.0,398.0,506.0,520.418,536.0,741.0,0.0,5.0,26.5821,55.0,384.0,116.0,128.806,12.8249,14.1134,10.177,10.0,10.0
+314,10.444,10.0,4.0,55.0,97.163,126.0,939.0,106.0,473.0,494.884,516.0,662.0,421.0,506.0,520.305,536.0,729.0,0.0,5.0,26.5366,55.0,411.0,116.0,128.793,10.6135,13.7961,10.0435,10.0,10.0
+315,10.477,10.0,4.0,55.0,96.9762,125.0,927.0,132.0,473.0,494.674,516.0,663.0,408.0,506.0,520.103,536.0,732.0,0.0,5.0,26.6525,54.0,384.0,114.0,128.045,11.5318,14.1019,10.0034,10.0,10.0
+316,10.511,10.0,4.0,55.0,97.6611,126.0,1019.0,128.0,474.0,494.983,516.0,664.0,423.0,506.0,520.332,536.0,731.0,0.0,5.0,26.5377,53.0,389.0,116.0,129.037,10.5943,13.9071,9.96837,10.0,10.0
+317,10.544,10.0,4.0,55.0,97.0563,126.0,1019.0,95.0,472.0,494.523,516.0,673.0,394.0,506.0,520.152,536.0,722.0,0.0,5.0,26.854,55.0,420.0,114.0,128.313,12.8048,13.9587,10.0205,10.0,10.0
+318,10.577,10.0,4.0,57.0,98.9547,127.0,935.0,89.0,473.0,494.652,516.0,679.0,413.0,506.0,520.335,536.0,731.0,0.0,5.0,26.8252,55.0,428.0,115.0,128.599,13.4577,14.1922,10.1714,10.0,10.0
+319,10.611,10.0,4.0,56.0,98.3491,127.0,935.0,105.0,473.0,494.723,516.0,664.0,418.0,506.0,520.626,536.0,720.0,0.0,5.0,26.9553,55.0,412.0,116.0,129.786,10.4175,14.2032,10.1528,10.0,10.0
+320,10.644,10.0,4.0,55.0,97.2576,126.0,1019.0,138.0,473.0,494.504,516.0,649.0,424.0,506.0,520.409,536.0,741.0,0.0,5.0,27.0295,55.0,380.0,115.0,128.407,12.9853,14.2673,10.1749,10.0,10.0
+321,10.677,10.0,4.0,56.0,98.5405,128.0,1019.0,118.0,472.0,494.144,516.0,683.0,416.0,506.0,520.863,536.0,721.0,0.0,5.0,27.3377,56.0,396.0,116.0,128.743,11.9975,13.9111,10.1547,10.0,10.0
+322,10.711,10.0,4.0,55.0,98.243,127.0,1019.0,86.0,473.0,494.541,516.0,680.0,423.0,506.0,520.408,536.0,724.0,0.0,5.0,26.8794,55.0,430.0,115.0,127.978,13.5374,14.2907,10.2674,10.0,10.0
+323,10.744,10.0,4.0,56.0,98.2641,127.0,939.0,100.0,472.0,494.176,516.0,664.0,409.0,506.0,520.655,536.0,730.0,0.0,5.0,27.2376,55.0,416.0,115.0,128.253,11.2267,14.0977,10.0946,10.0,10.0
+324,10.777,10.0,4.0,55.0,98.0335,127.0,941.0,114.0,473.0,494.669,516.0,670.0,408.0,506.0,520.524,536.0,752.0,0.0,5.0,26.926,55.0,401.0,115.0,128.861,10.815,14.1937,10.2827,10.0,10.0
+325,10.811,10.0,4.0,56.0,98.4914,127.0,926.0,115.0,473.0,494.464,516.0,689.0,404.0,506.0,520.121,536.0,733.0,0.0,5.0,26.836,54.0,399.0,114.0,127.798,11.8196,14.1121,10.1766,10.0,10.0
+326,10.844,10.0,4.0,57.0,99.1399,127.0,925.0,86.0,473.0,494.542,516.0,677.0,406.0,506.0,520.691,536.0,728.0,0.0,5.0,26.9936,55.0,446.0,116.0,129.509,10.5892,14.1837,10.2576,10.0,10.0
+327,10.878,10.0,4.0,55.0,97.1095,126.0,1019.0,118.0,472.0,494.584,516.0,715.0,408.0,506.0,520.629,536.0,817.0,0.0,5.0,26.8684,54.0,397.0,116.0,128.807,12.5132,14.0744,10.0918,10.0,10.0
+328,10.911,10.0,4.0,55.0,97.7307,127.0,913.0,125.0,472.0,494.035,516.0,685.0,402.0,506.0,520.96,536.0,793.0,0.0,5.0,27.299,55.0,389.0,116.0,129.251,14.1685,13.9995,10.2097,10.0,10.0
+329,10.944,10.0,4.0,55.0,97.6311,127.0,938.0,119.0,472.0,494.304,516.0,687.0,410.0,506.0,520.846,536.0,726.0,0.0,5.0,27.0905,55.0,393.0,116.0,129.123,10.3034,14.1356,10.2121,10.0,10.0
+330,10.978,10.0,4.0,55.0,98.081,127.0,940.0,90.0,472.0,494.505,516.0,675.0,400.0,505.0,520.111,536.0,725.0,0.0,5.0,26.8896,55.0,429.0,113.0,128.02,11.8224,14.061,10.1374,10.0,10.0
+331,11.011,10.0,4.0,56.0,98.9479,128.0,947.0,106.0,472.0,494.453,516.0,669.0,397.0,506.0,520.637,536.0,719.0,0.0,5.0,27.2405,56.0,410.0,116.0,129.726,11.155,14.4341,10.2937,10.0,10.0
+332,11.044,10.0,4.0,55.0,97.1074,126.0,928.0,118.0,472.0,494.334,516.0,654.0,412.0,505.0,520.154,536.0,721.0,0.0,5.0,27.0458,55.0,397.0,114.0,127.901,11.0267,14.3928,10.3014,10.0,10.0
+333,11.078,10.0,4.0,55.0,97.5251,127.0,940.0,114.0,472.0,494.509,516.0,678.0,406.0,506.0,520.391,536.0,729.0,0.0,5.0,26.9491,55.0,399.0,115.0,128.169,10.8633,14.0931,9.96199,10.0,10.0
+334,11.111,10.0,4.0,55.0,97.5689,127.0,929.0,68.0,472.0,494.507,516.0,690.0,416.0,506.0,520.378,536.0,734.0,0.0,5.0,26.9815,56.0,448.0,115.0,128.841,10.3349,14.2453,10.1358,10.0,10.0
+335,11.144,10.0,4.0,55.0,97.6527,127.0,1019.0,114.0,472.0,494.742,516.0,671.0,400.0,505.0,519.868,536.0,736.0,0.0,5.0,26.7244,55.0,402.0,113.0,127.719,11.6605,13.9337,10.0166,10.0,10.0
+336,11.178,10.0,4.0,55.0,98.2409,128.0,937.0,118.0,473.0,495.149,516.0,678.0,412.0,506.0,520.394,536.0,726.0,0.0,5.0,26.7361,55.0,397.0,116.0,129.986,10.8587,14.1269,10.119,10.0,10.0
+337,11.211,10.0,4.0,55.0,97.5383,128.0,918.0,90.0,473.0,494.949,516.0,679.0,406.0,505.0,519.687,535.0,720.0,0.0,5.0,26.5547,55.0,423.0,112.0,127.37,11.1268,14.1766,10.0836,10.0,10.0
+338,11.245,10.0,4.0,55.0,97.1791,126.0,931.0,94.0,474.0,495.283,516.0,664.0,358.0,505.0,519.881,536.0,750.0,0.0,5.0,26.3673,55.0,422.0,115.0,129.735,10.9811,14.1416,10.0783,10.0,10.0
+339,11.278,10.0,4.0,55.0,97.1459,126.0,1019.0,111.0,474.0,495.38,516.0,662.0,407.0,505.0,519.971,536.0,729.0,0.0,5.0,26.2508,55.0,406.0,115.0,129.523,10.5039,13.9772,10.113,10.0,10.0
+340,11.311,10.0,4.0,55.0,98.1334,127.0,941.0,124.0,473.0,494.774,516.0,665.0,420.0,505.0,519.66,535.0,744.0,0.0,5.0,26.6715,55.0,390.0,112.0,127.734,11.478,14.0564,10.0436,10.0,10.0
+341,11.345,10.0,4.0,55.0,97.9554,127.0,929.0,114.0,473.0,494.775,516.0,664.0,405.0,505.0,520.078,536.0,763.0,0.0,5.0,26.8779,55.0,399.0,115.0,128.593,10.5511,14.0613,10.1091,10.0,10.0
+342,11.378,10.0,4.0,54.0,96.6398,126.0,1019.0,93.0,473.0,494.818,516.0,678.0,406.0,505.0,519.812,536.0,766.0,0.0,5.0,26.6396,55.0,423.0,113.0,128.213,11.2605,14.1626,10.1754,10.0,10.0
+343,11.411,10.0,4.0,54.0,96.428,126.0,1019.0,123.0,474.0,495.73,516.0,691.0,405.0,506.0,520.381,536.0,752.0,0.0,5.0,26.202,55.0,392.0,118.0,131.657,13.0303,13.9424,10.2095,10.0,10.0
+344,11.445,10.0,4.0,54.0,96.5268,126.0,934.0,80.0,473.0,495.599,516.0,684.0,404.0,506.0,520.579,536.0,729.0,0.0,5.0,26.3813,55.0,434.0,118.0,131.911,10.3209,14.0628,10.1521,10.0,10.0
+345,11.478,10.0,4.0,53.0,95.9146,125.0,1019.0,118.0,474.0,495.748,516.0,698.0,404.0,505.0,519.998,535.0,727.0,0.0,5.0,26.0832,55.0,396.0,116.0,131.338,12.5323,14.0966,10.0947,10.0,10.0
+346,11.512,10.0,4.0,54.0,96.9779,126.0,927.0,86.0,473.0,495.616,516.0,722.0,406.0,506.0,520.269,536.0,736.0,0.0,5.0,26.1723,55.0,448.0,117.0,132.15,11.7915,13.9001,9.92114,10.0,10.0
+347,11.545,10.0,4.0,53.0,96.2091,126.0,920.0,138.0,473.0,495.743,516.0,685.0,413.0,506.0,520.156,536.0,728.0,0.0,5.0,26.0139,55.0,379.0,116.0,131.717,13.2287,13.9855,9.87686,10.0,10.0
+348,11.578,10.0,4.0,56.0,98.4774,127.0,1019.0,111.0,474.0,495.451,516.0,680.0,415.0,506.0,520.743,536.0,745.0,0.0,5.0,26.4428,54.0,403.0,118.0,131.746,11.0369,14.0349,9.98548,10.0,10.0
+349,11.612,10.0,4.0,56.0,98.2022,127.0,925.0,100.0,474.0,495.167,516.0,653.0,404.0,506.0,520.764,536.0,784.0,0.0,5.0,26.6268,54.0,412.0,118.0,131.314,10.5161,14.1208,10.1637,10.0,10.0
+350,11.645,10.0,4.0,55.0,97.876,127.0,947.0,86.0,474.0,495.324,516.0,664.0,416.0,506.0,520.281,536.0,817.0,0.0,5.0,26.3366,55.0,430.0,116.0,130.484,11.3178,14.1167,10.0908,10.0,10.0
+351,11.678,10.0,4.0,55.0,98.3049,127.0,1019.0,109.0,473.0,495.429,516.0,694.0,412.0,506.0,520.677,536.0,749.0,0.0,5.0,26.4475,54.0,408.0,118.0,132.04,10.4036,14.1158,10.0575,10.0,10.0
+352,11.712,10.0,4.0,56.0,98.3012,128.0,1019.0,130.0,473.0,495.078,516.0,690.0,409.0,506.0,520.407,536.0,833.0,0.0,5.0,26.4345,54.0,383.0,116.0,130.523,13.2746,14.0434,10.0191,10.0,10.0
+353,11.745,10.0,4.0,56.0,98.0342,127.0,1019.0,144.0,474.0,495.539,516.0,667.0,424.0,506.0,520.668,536.0,769.0,0.0,5.0,26.2821,55.0,370.0,118.0,131.689,15.2243,14.0287,10.1926,10.0,10.0
+354,11.778,10.0,4.0,57.0,98.8148,127.0,948.0,101.0,474.0,495.389,516.0,665.0,408.0,506.0,520.595,536.0,729.0,0.0,5.0,26.339,55.0,415.0,118.0,131.309,10.4443,13.9369,10.1645,10.0,10.0
+355,11.812,10.0,4.0,57.0,98.9162,128.0,955.0,98.0,473.0,494.966,516.0,670.0,408.0,506.0,520.422,536.0,717.0,0.0,5.0,26.7131,55.0,416.0,116.0,130.409,11.673,14.09,10.2261,10.0,10.0
+356,11.845,10.0,4.0,58.0,100.175,128.0,944.0,114.0,473.0,494.972,516.0,693.0,416.0,507.0,520.967,536.0,730.0,0.0,5.0,26.7252,55.0,400.0,118.0,131.398,10.8374,14.0299,10.2547,10.0,10.0
+357,11.879,10.0,4.0,56.0,98.7399,128.0,930.0,91.0,473.0,495.087,516.0,655.0,420.0,506.0,520.73,536.0,749.0,0.0,5.0,26.614,55.0,425.0,117.0,131.35,12.5419,14.1487,10.1538,10.0,10.0
+358,11.912,10.0,4.0,56.0,98.4849,128.0,934.0,100.0,474.0,495.334,516.0,665.0,416.0,506.0,520.705,536.0,741.0,0.0,5.0,26.412,54.0,420.0,118.0,131.756,11.3598,14.0063,10.121,10.0,10.0
+359,11.945,10.0,4.0,55.0,97.9238,127.0,915.0,144.0,473.0,495.172,516.0,670.0,420.0,506.0,520.841,536.0,812.0,0.0,5.0,26.5524,55.0,370.0,119.0,132.056,10.4033,13.9447,10.135,10.0,10.0
+360,11.979,10.0,4.0,57.0,98.492,127.0,925.0,90.0,473.0,495.425,516.0,694.0,428.0,506.0,520.53,536.0,746.0,0.0,5.0,26.331,54.0,424.0,118.0,131.143,11.3421,14.0731,10.1191,10.0,10.0
+361,12.012,10.0,4.0,57.0,99.4262,128.0,919.0,87.0,474.0,495.309,516.0,656.0,404.0,506.0,521.198,536.0,724.0,0.0,5.0,26.5424,53.0,425.0,120.0,132.584,10.4334,13.8366,10.192,10.0,10.0
+362,12.045,10.0,4.0,55.0,97.9431,126.0,941.0,100.0,473.0,494.944,516.0,674.0,410.0,506.0,521.107,536.0,725.0,0.0,5.0,26.8601,55.0,415.0,119.0,131.391,11.0018,13.9512,10.2212,10.0,10.0
+363,12.079,10.0,4.0,58.0,99.5914,128.0,961.0,67.0,474.0,495.157,516.0,662.0,416.0,506.0,521.047,536.0,736.0,0.0,5.0,26.6919,54.0,449.0,119.0,131.889,10.8924,13.8632,9.97153,10.0,10.0
+364,12.112,10.0,4.0,57.0,99.2206,128.0,953.0,117.0,473.0,494.913,516.0,693.0,388.0,506.0,521.121,536.0,726.0,0.0,5.0,26.9462,55.0,398.0,119.0,131.87,10.4714,14.1225,10.2102,10.0,10.0
+365,12.145,10.0,4.0,56.0,99.0648,129.0,935.0,106.0,473.0,494.773,516.0,674.0,416.0,506.0,520.871,536.0,726.0,0.0,5.0,26.9037,55.0,408.0,117.0,130.466,11.4937,14.0641,10.1673,10.0,10.0
+366,12.179,10.0,4.0,57.0,99.7071,129.0,948.0,100.0,474.0,495.121,516.0,682.0,387.0,506.0,521.074,536.0,754.0,0.0,5.0,26.7584,55.0,413.0,119.0,131.686,10.6004,13.8793,10.224,10.0,10.0
+367,12.212,10.0,4.0,56.0,98.2898,128.0,923.0,95.0,473.0,494.924,516.0,692.0,406.0,506.0,520.85,536.0,723.0,0.0,5.0,26.794,55.0,418.0,117.0,131.076,11.3776,13.9713,10.2925,10.0,10.0
+368,12.246,10.0,4.0,57.0,99.3626,128.0,990.0,122.0,473.0,495.239,516.0,687.0,413.0,506.0,521.042,536.0,726.0,0.0,5.0,26.8817,56.0,391.0,119.0,132.424,11.8853,13.9207,10.1765,10.0,10.0
+369,12.279,10.0,4.0,57.0,99.0945,128.0,1013.0,132.0,473.0,494.972,516.0,652.0,412.0,506.0,520.958,536.0,730.0,0.0,5.0,26.9598,56.0,382.0,118.0,131.474,10.5432,14.0892,10.3081,10.0,10.0
+370,12.312,10.0,4.0,56.0,98.5639,128.0,1019.0,94.0,473.0,495.112,516.0,688.0,424.0,506.0,520.832,536.0,725.0,0.0,5.0,26.6384,56.0,423.0,118.0,131.755,11.8697,14.1093,10.1685,10.0,10.0
+371,12.346,10.0,4.0,56.0,98.5219,128.0,952.0,100.0,473.0,495.16,516.0,660.0,409.0,507.0,521.325,536.0,726.0,0.0,5.0,26.8226,55.0,413.0,120.0,133.028,10.7708,13.9939,10.1655,10.0,10.0
+372,12.379,10.0,4.0,55.0,97.3833,127.0,1019.0,110.0,474.0,495.581,516.0,680.0,414.0,506.0,520.841,536.0,728.0,0.0,5.0,26.3877,55.0,404.0,119.0,131.896,11.9934,14.083,10.1745,10.0,10.0
+373,12.412,10.0,4.0,56.0,98.4112,128.0,998.0,106.0,474.0,495.546,516.0,683.0,416.0,506.0,520.925,536.0,728.0,0.0,5.0,26.4663,55.0,410.0,120.0,133.157,11.7902,13.8942,10.1836,10.0,10.0
+374,12.446,10.0,4.0,56.0,98.3505,128.0,938.0,86.0,473.0,495.517,516.0,660.0,415.0,506.0,521.168,536.0,724.0,0.0,5.0,26.6198,55.0,430.0,121.0,133.795,11.6793,14.0168,10.2614,10.0,10.0
+375,12.479,10.0,4.0,56.0,98.7334,128.0,1019.0,125.0,473.0,495.288,516.0,682.0,410.0,506.0,520.884,536.0,746.0,0.0,5.0,26.7108,56.0,389.0,119.0,132.702,13.0289,14.0317,10.1803,10.0,10.0
+376,12.513,10.0,4.0,57.0,99.3916,128.0,1019.0,119.0,473.0,495.1,516.0,678.0,404.0,507.0,521.362,536.0,744.0,0.0,5.0,26.7201,55.0,399.0,120.0,132.824,10.7145,13.957,10.2244,10.0,10.0
+377,12.546,10.0,4.0,56.0,98.5367,128.0,943.0,119.0,474.0,495.587,516.0,678.0,424.0,506.0,520.783,536.0,723.0,0.0,5.0,26.4899,55.0,395.0,119.0,132.794,12.0659,13.9736,10.222,10.0,10.0
+378,12.579,10.0,4.0,57.0,99.0074,128.0,925.0,80.0,474.0,495.737,516.0,672.0,421.0,506.0,520.798,536.0,720.0,0.0,5.0,26.3218,55.0,435.0,120.0,133.277,14.5301,14.0199,10.2762,10.0,10.0
+379,12.613,10.0,4.0,56.0,98.7589,128.0,1019.0,97.0,474.0,495.73,516.0,665.0,394.0,506.0,520.765,536.0,724.0,0.0,5.0,26.3013,55.0,416.0,119.0,133.007,10.4131,14.0814,10.0777,10.0,10.0
+380,12.646,10.0,4.0,55.0,98.29,128.0,1019.0,125.0,474.0,495.742,516.0,693.0,392.0,506.0,520.524,536.0,737.0,0.0,5.0,26.2668,55.0,392.0,119.0,132.449,11.1913,13.987,10.1067,10.0,10.0
+381,12.679,10.0,4.0,55.0,97.8195,128.0,1019.0,102.0,474.0,496.098,516.0,679.0,416.0,506.0,520.667,536.0,719.0,0.0,5.0,26.187,55.0,410.0,120.0,133.698,10.3979,13.8179,10.0029,10.0,10.0
+382,12.713,10.0,4.0,55.0,97.0899,126.0,929.0,90.0,474.0,495.757,516.0,672.0,416.0,506.0,520.456,536.0,737.0,0.0,5.0,26.171,55.0,424.0,119.0,132.643,10.9143,14.0325,10.1122,10.0,10.0
+383,12.746,10.0,4.0,56.0,98.7614,128.0,923.0,106.0,474.0,495.31,516.0,665.0,418.0,506.0,520.801,536.0,720.0,0.0,5.0,26.6957,55.0,410.0,118.0,132.223,11.1499,13.8576,10.0339,10.0,10.0
+384,12.779,10.0,4.0,55.0,98.1214,127.0,1019.0,124.0,474.0,495.465,516.0,680.0,420.0,506.0,520.802,536.0,728.0,0.0,5.0,26.6065,55.0,395.0,119.0,132.215,11.2489,14.1159,10.1923,10.0,10.0
+385,12.813,10.0,4.0,55.0,97.8417,128.0,932.0,118.0,474.0,495.415,516.0,693.0,416.0,506.0,520.605,536.0,719.0,0.0,5.0,26.3993,55.0,394.0,118.0,131.568,12.2446,14.1191,10.2677,10.0,10.0
+386,12.846,10.0,4.0,55.0,98.0661,127.0,1019.0,106.0,474.0,495.371,516.0,665.0,398.0,506.0,520.944,536.0,721.0,0.0,5.0,26.5693,55.0,407.0,119.0,132.171,10.5326,13.9591,10.2533,10.0,10.0
+387,12.88,10.0,4.0,54.0,96.585,126.0,1019.0,92.0,474.0,495.946,517.0,672.0,416.0,505.0,520.28,536.0,756.0,0.0,5.0,26.2274,55.0,423.0,119.0,133.319,11.2489,14.1679,10.2407,10.0,10.0
+388,12.913,10.0,4.0,54.0,96.2111,127.0,1019.0,118.0,474.0,495.951,516.0,674.0,416.0,506.0,520.684,536.0,726.0,0.0,5.0,26.3138,56.0,396.0,119.0,132.921,13.0524,14.0346,10.2533,10.0,10.0
+389,12.946,10.0,4.0,54.0,96.6605,126.0,1019.0,92.0,474.0,496.089,516.0,708.0,400.0,506.0,520.651,536.0,731.0,0.0,5.0,26.078,55.0,421.0,120.0,133.775,11.1197,14.0166,10.1607,10.0,10.0
+390,12.98,10.0,4.0,54.0,96.6285,125.0,939.0,94.0,474.0,495.834,516.0,678.0,412.0,506.0,520.287,536.0,745.0,0.0,5.0,26.1276,55.0,423.0,118.0,132.5,12.0994,14.014,10.05,10.0,10.0
+391,13.013,10.0,4.0,55.0,97.4014,127.0,1019.0,93.0,474.0,496.28,516.0,710.0,417.0,506.0,520.67,536.0,728.0,0.0,5.0,25.852,54.0,421.0,120.0,134.071,10.3943,14.048,10.026,10.0,10.0
+392,13.046,10.0,4.0,53.0,94.754,123.0,1019.0,118.0,474.0,496.931,517.0,677.0,414.0,506.0,520.055,536.0,725.0,0.0,4.0,25.2951,54.0,396.0,120.0,135.071,12.0091,13.925,10.0576,10.0,10.0
+393,13.08,10.0,4.0,54.0,96.7229,126.0,918.0,118.0,474.0,496.845,517.0,698.0,418.0,506.0,519.983,535.0,726.0,0.0,5.0,25.4365,55.0,395.0,119.0,134.103,12.5902,13.8106,10.0536,10.0,10.0
+394,13.113,10.0,4.0,54.0,96.2188,125.0,924.0,96.0,474.0,496.817,517.0,673.0,426.0,506.0,520.291,536.0,745.0,0.0,5.0,25.4861,55.0,420.0,120.0,134.283,11.3445,13.8815,10.0293,10.0,10.0
+395,13.146,10.0,4.0,54.0,96.1918,126.0,1019.0,94.0,474.0,496.386,517.0,694.0,424.0,506.0,520.168,536.0,742.0,0.0,5.0,25.8364,54.0,420.0,119.0,134.038,13.513,13.9771,9.93903,10.0,10.0
+396,13.18,10.0,4.0,54.0,96.96,127.0,938.0,118.0,474.0,496.16,517.0,698.0,413.0,506.0,520.688,536.0,724.0,0.0,5.0,26.0472,55.0,397.0,120.0,133.93,11.7201,13.985,10.0146,10.0,10.0
+397,13.213,10.0,4.0,53.0,95.8632,125.0,945.0,116.0,474.0,496.66,517.0,675.0,424.0,506.0,520.073,536.0,720.0,0.0,5.0,25.6231,54.0,396.0,119.0,134.294,13.5046,13.9776,10.1406,10.0,10.0
+398,13.247,10.0,4.0,54.0,97.5469,127.0,950.0,82.0,474.0,496.748,517.0,744.0,412.0,506.0,520.303,536.0,754.0,0.0,5.0,25.7752,55.0,431.0,120.0,134.508,11.1573,13.927,10.1135,10.0,10.0
+399,13.28,10.0,4.0,54.0,96.8574,126.0,938.0,121.0,474.0,496.679,517.0,680.0,416.0,506.0,520.474,536.0,748.0,0.0,5.0,25.7997,55.0,392.0,121.0,135.71,10.9369,13.8531,10.123,10.0,10.0
+400,13.313,10.0,4.0,54.0,96.6637,126.0,925.0,124.0,474.0,496.836,517.0,663.0,428.0,505.0,519.866,535.0,752.0,0.0,4.0,25.3946,54.0,392.0,119.0,133.932,11.8376,13.786,10.1265,10.0,10.0
+401,13.347,10.0,4.0,53.0,96.2047,126.0,1019.0,102.0,474.0,497.068,517.0,673.0,422.0,506.0,520.068,536.0,755.0,0.0,4.0,25.2523,54.0,411.0,121.0,135.893,10.4731,13.7146,10.066,10.0,10.0
+402,13.38,10.0,4.0,53.0,95.1951,124.0,1019.0,85.0,474.0,497.109,517.0,664.0,416.0,505.0,519.529,535.0,756.0,0.0,4.0,25.2906,55.0,429.0,116.0,133.884,11.2967,13.7051,10.0417,10.0,10.0
+403,13.413,10.0,4.0,54.0,96.1798,126.0,924.0,139.0,474.0,497.084,517.0,663.0,416.0,505.0,519.8,535.0,725.0,0.0,4.0,25.2619,54.0,373.0,119.0,135.15,12.5089,13.8289,9.9461,10.0,10.0
+404,13.447,10.0,4.0,54.0,96.993,126.0,959.0,124.0,474.0,496.896,517.0,698.0,331.0,505.0,519.869,536.0,721.0,0.0,4.0,25.5588,55.0,391.0,119.0,134.638,10.3701,13.8232,9.96989,10.0,10.0
+405,13.48,10.0,4.0,55.0,97.7744,127.0,944.0,242.0,474.0,497.227,517.0,891.0,377.0,505.0,519.546,535.0,725.0,0.0,4.0,25.2256,54.0,395.0,118.0,134.209,11.2077,13.941,9.96367,10.0,10.0
+406,13.514,10.0,4.0,56.0,98.6745,128.0,948.0,58.0,474.0,496.671,517.0,798.0,278.0,505.0,520.009,536.0,737.0,0.0,5.0,25.7671,55.0,456.0,118.0,133.604,10.3347,13.9523,9.93656,10.0,10.0
+407,13.547,10.0,4.0,56.0,98.5239,127.0,937.0,122.0,474.0,496.88,517.0,886.0,373.0,505.0,519.654,535.0,726.0,0.0,4.0,25.4313,54.0,396.0,117.0,133.526,10.8394,13.8831,9.92916,10.0,10.0
+408,13.58,10.0,4.0,58.0,99.6017,129.0,926.0,122.0,474.0,496.54,516.0,869.0,336.0,505.0,519.791,535.0,734.0,0.0,5.0,25.4735,54.0,394.0,117.0,132.537,11.2611,13.7897,9.90359,10.0,10.0
+409,13.614,10.0,4.0,57.0,98.8287,128.0,936.0,80.0,474.0,496.693,517.0,940.0,412.0,506.0,520.189,536.0,720.0,0.0,5.0,25.5844,54.0,433.0,120.0,133.952,10.3025,13.7175,10.0512,10.0,10.0
+410,13.647,10.0,4.0,56.0,98.6313,128.0,929.0,86.0,474.0,496.945,517.0,927.0,416.0,505.0,519.648,535.0,734.0,0.0,4.0,25.2459,54.0,426.0,118.0,133.956,10.9612,13.7907,10.0175,10.0,10.0
+411,13.68,10.0,4.0,56.0,98.5792,128.0,933.0,100.0,474.0,497.155,517.0,915.0,400.0,505.0,519.797,535.0,721.0,0.0,4.0,25.0485,53.0,415.0,119.0,134.649,10.2086,13.7217,9.8581,10.0,10.0
+412,13.714,10.0,4.0,56.0,97.9389,126.0,942.0,106.0,474.0,496.739,517.0,954.0,410.0,505.0,519.626,535.0,742.0,0.0,4.0,25.3281,54.0,442.0,117.0,133.353,11.0196,13.6831,9.77913,10.0,10.0
+413,13.747,10.0,4.0,57.0,99.4278,128.0,929.0,96.0,474.0,496.743,517.0,914.0,413.0,505.0,519.951,536.0,723.0,0.0,5.0,25.6781,55.0,416.0,119.0,134.273,11.9653,13.9589,9.8694,10.0,10.0
+414,13.78,10.0,4.0,57.0,98.8844,128.0,947.0,80.0,474.0,496.443,517.0,833.0,404.0,506.0,520.203,536.0,745.0,0.0,5.0,25.8915,55.0,436.0,119.0,133.316,10.2705,14.0109,10.0418,10.0,10.0
+415,13.814,10.0,4.0,58.0,99.7154,128.0,1011.0,95.0,474.0,495.962,516.0,987.0,428.0,505.0,520.104,536.0,732.0,0.0,5.0,26.0896,55.0,476.0,116.0,131.611,11.2702,14.0795,10.002,10.0,10.0
+416,13.847,10.0,4.0,58.0,100.107,128.0,936.0,111.0,474.0,496.479,517.0,832.0,412.0,506.0,520.197,536.0,735.0,0.0,5.0,25.9762,55.0,407.0,119.0,133.565,10.3845,13.9984,10.1401,10.0,10.0
+417,13.881,10.0,4.0,55.0,98.3151,127.0,1019.0,100.0,474.0,496.363,517.0,661.0,409.0,505.0,519.832,535.0,828.0,0.0,5.0,25.9161,55.0,413.0,118.0,133.155,11.9338,14.2123,10.1319,10.0,10.0
+418,13.914,10.0,4.0,55.0,98.0366,128.0,1019.0,32.0,474.0,496.777,517.0,898.0,414.0,505.0,519.725,536.0,720.0,0.0,4.0,25.5914,55.0,483.0,118.0,133.89,12.8241,14.1616,10.1072,10.0,10.0
+419,13.947,10.0,4.0,54.0,97.0127,126.0,922.0,127.0,474.0,496.793,517.0,825.0,416.0,505.0,519.821,535.0,718.0,0.0,5.0,25.4304,55.0,387.0,118.0,134.211,10.7542,14.0942,10.1051,10.0,10.0
+420,13.981,10.0,4.0,55.0,97.823,127.0,932.0,86.0,474.0,496.428,517.0,690.0,405.0,505.0,519.623,535.0,756.0,0.0,5.0,25.6398,55.0,429.0,116.0,132.602,12.5833,14.0627,10.0833,10.0,10.0
+421,14.014,10.0,4.0,56.0,98.9256,128.0,947.0,96.0,474.0,496.337,516.0,740.0,405.0,505.0,519.914,536.0,746.0,0.0,4.0,25.6953,55.0,416.0,118.0,133.126,11.495,13.9192,10.0494,10.0,10.0
+422,14.047,10.0,4.0,55.0,97.3153,126.0,933.0,80.0,474.0,496.367,516.0,664.0,416.0,505.0,519.772,535.0,744.0,0.0,5.0,25.686,55.0,434.0,116.0,131.67,12.0055,14.0909,10.0183,10.0,10.0
+423,14.081,10.0,4.0,55.0,98.3122,128.0,937.0,86.0,474.0,496.388,516.0,675.0,400.0,505.0,519.778,536.0,732.0,0.0,5.0,25.5865,54.0,428.0,117.0,132.698,11.8245,13.7945,9.93696,10.0,10.0
+424,14.114,10.0,4.0,56.0,98.3779,127.0,925.0,96.0,474.0,496.247,517.0,662.0,413.0,505.0,519.931,536.0,728.0,0.0,5.0,25.8917,55.0,421.0,116.0,132.423,10.7655,13.9557,9.9529,10.0,10.0
+425,14.147,10.0,4.0,57.0,99.6212,129.0,1019.0,130.0,474.0,496.303,517.0,664.0,404.0,505.0,519.769,535.0,725.0,0.0,5.0,25.6831,54.0,386.0,116.0,132.26,11.3651,14.2462,10.0097,10.0,10.0
+426,14.181,10.0,4.0,57.0,99.6397,129.0,1019.0,107.0,474.0,495.876,516.0,663.0,410.0,506.0,520.251,536.0,760.0,0.0,5.0,26.0154,55.0,408.0,117.0,132.2,10.477,14.2074,10.0766,10.0,10.0
+427,14.214,10.0,4.0,55.0,97.5938,127.0,939.0,119.0,474.0,496.377,516.0,676.0,408.0,505.0,519.669,535.0,719.0,0.0,5.0,25.5368,54.0,399.0,116.0,131.761,13.4535,14.0171,10.0249,10.0,10.0
+428,14.248,10.0,4.0,56.0,98.1553,127.0,1019.0,112.0,474.0,496.111,516.0,664.0,423.0,505.0,520.084,536.0,727.0,0.0,5.0,25.8859,55.0,403.0,118.0,132.738,14.4666,14.0539,10.0779,10.0,10.0
+429,14.281,10.0,4.0,55.0,98.1504,127.0,1019.0,124.0,474.0,496.195,517.0,688.0,412.0,505.0,519.946,536.0,729.0,0.0,5.0,25.7494,54.0,390.0,118.0,132.742,10.3441,14.0957,10.1153,10.0,10.0
+430,14.314,10.0,4.0,56.0,98.4593,127.0,1008.0,134.0,474.0,496.378,516.0,700.0,403.0,506.0,519.704,535.0,757.0,0.0,5.0,25.5529,55.0,380.0,116.0,132.093,11.5921,14.0695,9.96049,10.0,10.0
+431,14.348,10.0,4.0,56.0,98.8236,128.0,944.0,125.0,474.0,496.18,517.0,660.0,409.0,505.0,519.875,535.0,744.0,0.0,5.0,25.8263,55.0,391.0,117.0,132.696,10.756,14.0175,10.0527,10.0,10.0
+432,14.381,10.0,4.0,55.0,97.752,127.0,952.0,118.0,474.0,496.404,517.0,672.0,417.0,505.0,519.733,535.0,743.0,0.0,5.0,25.7324,55.0,397.0,117.0,133.281,12.2163,13.949,10.1451,10.0,10.0
+433,14.414,10.0,4.0,56.0,98.8165,129.0,1019.0,124.0,474.0,496.288,517.0,691.0,412.0,505.0,519.861,536.0,724.0,0.0,5.0,25.926,55.0,390.0,116.0,132.291,11.3726,13.9587,9.99375,10.0,10.0
+434,14.448,10.0,4.0,55.0,98.0692,127.0,1019.0,90.0,474.0,495.97,516.0,674.0,411.0,506.0,520.142,536.0,742.0,0.0,5.0,26.0545,55.0,424.0,117.0,132.17,11.167,13.9328,10.0187,10.0,10.0
+435,14.481,10.0,4.0,56.0,98.7818,128.0,948.0,114.0,474.0,495.995,516.0,674.0,424.0,505.0,519.804,536.0,746.0,0.0,5.0,25.819,54.0,401.0,116.0,130.998,12.5967,13.8967,10.0466,10.0,10.0
+436,14.515,10.0,4.0,57.0,99.3658,129.0,934.0,100.0,474.0,496.095,516.0,695.0,380.0,506.0,520.077,536.0,734.0,0.0,5.0,25.8503,54.0,416.0,117.0,132.241,10.9867,13.9232,10.1417,10.0,10.0
+437,14.548,10.0,4.0,55.0,97.812,127.0,1019.0,118.0,474.0,496.733,517.0,684.0,416.0,505.0,519.512,535.0,754.0,0.0,4.0,25.2953,54.0,395.0,116.0,133.043,11.8732,13.8652,9.92124,10.0,10.0
+438,14.581,10.0,4.0,58.0,99.7316,128.0,945.0,86.0,474.0,496.641,516.0,688.0,416.0,505.0,520.028,536.0,730.0,0.0,5.0,25.5056,55.0,428.0,119.0,133.186,11.487,13.7961,9.89065,10.0,10.0
+439,14.615,10.0,4.0,57.0,99.1495,127.0,1019.0,96.0,474.0,496.612,517.0,660.0,414.0,505.0,520.015,536.0,757.0,0.0,5.0,25.5669,55.0,417.0,118.0,132.734,10.3402,13.7022,10.0151,10.0,10.0
+440,14.648,10.0,4.0,56.0,98.8645,128.0,1019.0,138.0,474.0,496.561,517.0,666.0,420.0,505.0,519.599,536.0,747.0,0.0,5.0,25.603,55.0,377.0,116.0,132.129,10.9792,13.7929,9.99964,10.0,10.0
+441,14.681,10.0,4.0,56.0,99.0062,127.0,934.0,107.0,474.0,496.631,517.0,666.0,382.0,506.0,520.127,536.0,729.0,0.0,5.0,25.5696,55.0,405.0,119.0,133.881,10.2115,13.8444,9.90475,10.0,10.0
+442,14.715,10.0,4.0,57.0,99.8033,129.0,1019.0,96.0,474.0,496.473,517.0,680.0,398.0,505.0,519.614,535.0,745.0,0.0,5.0,25.7571,55.0,418.0,116.0,132.371,11.4506,13.9059,9.84428,10.0,10.0
+443,14.748,10.0,4.0,57.0,99.5232,130.0,1019.0,157.0,474.0,496.812,517.0,684.0,396.0,505.0,519.424,534.0,752.0,0.0,4.0,25.2506,54.0,358.0,116.0,132.611,12.738,13.8224,9.85733,10.0,10.0
+444,14.781,10.0,4.0,56.0,99.1774,128.0,950.0,113.0,474.0,496.849,517.0,684.0,381.0,505.0,519.554,535.0,730.0,0.0,4.0,25.3907,55.0,400.0,116.0,132.986,10.2896,13.8203,9.928,10.0,10.0
+445,14.815,10.0,4.0,56.0,99.037,127.0,1019.0,111.0,474.0,496.832,517.0,658.0,420.0,504.0,519.217,535.0,725.0,0.0,4.0,25.4299,55.0,401.0,116.0,132.946,12.0081,13.957,9.95443,10.0,10.0
+446,14.848,10.0,4.0,57.0,99.6367,129.0,1019.0,102.0,474.0,496.774,517.0,669.0,405.0,505.0,519.486,535.0,764.0,0.0,4.0,25.4859,55.0,413.0,116.0,133.241,11.2422,13.995,9.95442,10.0,10.0
+447,14.882,10.0,4.0,55.0,97.3353,126.0,930.0,100.0,475.0,496.918,517.0,690.0,400.0,505.0,519.541,535.0,762.0,0.0,4.0,25.4096,55.0,412.0,116.0,133.086,13.02,13.9659,9.9415,10.0,10.0
+448,14.915,10.0,4.0,55.0,97.6199,127.0,936.0,124.0,474.0,496.747,517.0,798.0,380.0,505.0,519.646,536.0,728.0,0.0,5.0,25.6131,56.0,389.0,118.0,133.458,11.2313,13.9755,10.0805,10.0,10.0
+449,14.948,10.0,4.0,55.0,97.6299,126.0,938.0,84.0,474.0,496.946,517.0,903.0,400.0,505.0,519.732,536.0,740.0,0.0,4.0,25.4455,55.0,429.0,118.0,134.422,10.6931,13.8693,10.0318,10.0,10.0
+450,14.982,10.0,4.0,56.0,98.3074,126.0,989.0,96.0,474.0,497.001,517.0,892.0,398.0,505.0,519.536,535.0,724.0,0.0,4.0,25.4126,55.0,420.0,116.0,133.274,11.5662,13.8334,9.87085,10.0,10.0
+451,15.015,10.0,4.0,55.0,98.0802,126.0,948.0,90.0,474.0,497.012,517.0,905.0,412.0,506.0,520.064,536.0,721.0,0.0,5.0,25.4768,55.0,425.0,119.0,134.223,10.6265,13.8839,9.95676,10.0,10.0
+452,15.048,10.0,4.0,54.0,96.7516,126.0,924.0,128.0,474.0,496.839,517.0,864.0,394.0,505.0,519.552,535.0,735.0,0.0,4.0,25.4313,54.0,390.0,117.0,133.072,12.7957,13.937,10.0424,10.0,10.0
+453,15.082,10.0,4.0,55.0,97.6712,127.0,953.0,101.0,474.0,497.082,517.0,892.0,416.0,505.0,520.053,536.0,757.0,0.0,5.0,25.5385,54.0,412.0,120.0,135.135,14.1367,13.9244,10.1714,10.0,10.0
+454,15.115,10.0,4.0,55.0,97.2636,126.0,1019.0,90.0,474.0,496.924,517.0,859.0,416.0,505.0,519.887,536.0,721.0,0.0,4.0,25.5085,55.0,424.0,119.0,134.599,10.2038,13.8996,10.0824,10.0,10.0
+455,15.148,10.0,4.0,55.0,97.557,126.0,926.0,114.0,474.0,496.697,517.0,859.0,418.0,505.0,519.545,535.0,728.0,0.0,5.0,25.5565,55.0,403.0,117.0,133.638,11.5528,14.0091,10.0028,10.0,10.0
+456,15.182,10.0,4.0,55.0,98.4473,128.0,932.0,106.0,474.0,496.806,517.0,849.0,410.0,505.0,520.104,536.0,741.0,0.0,5.0,25.716,55.0,411.0,120.0,134.946,10.5909,13.8862,9.91962,10.0,10.0
+457,15.215,10.0,4.0,55.0,98.0925,127.0,939.0,118.0,474.0,496.699,517.0,934.0,407.0,505.0,519.788,536.0,743.0,0.0,4.0,25.4747,54.0,422.0,118.0,133.408,11.8472,13.9074,9.93697,10.0,10.0
+458,15.249,10.0,4.0,56.0,98.4546,127.0,923.0,96.0,474.0,496.39,517.0,893.0,399.0,506.0,520.14,536.0,719.0,0.0,5.0,25.8541,55.0,418.0,119.0,133.793,11.3252,13.873,9.97004,10.0,10.0
+459,15.282,10.0,4.0,57.0,98.8333,126.0,1019.0,114.0,474.0,496.648,517.0,921.0,416.0,506.0,520.263,536.0,725.0,0.0,5.0,25.7932,55.0,409.0,120.0,134.704,11.1576,13.9652,10.1186,10.0,10.0
+460,15.315,10.0,4.0,57.0,98.8244,127.0,1019.0,106.0,474.0,496.726,517.0,914.0,413.0,505.0,519.942,536.0,756.0,0.0,4.0,25.5958,55.0,411.0,119.0,133.704,12.0982,13.9814,10.1344,10.0,10.0
+461,15.349,10.0,4.0,57.0,98.6768,127.0,1019.0,102.0,474.0,496.921,517.0,863.0,376.0,506.0,520.173,536.0,756.0,0.0,5.0,25.7284,55.0,410.0,120.0,135.399,10.6285,13.8376,10.0863,10.0,10.0
+462,15.382,10.0,4.0,55.0,98.0292,127.0,944.0,84.0,474.0,496.399,517.0,927.0,368.0,505.0,520.137,536.0,718.0,0.0,5.0,25.8968,55.0,437.0,119.0,133.783,11.2877,13.9365,9.97071,10.0,10.0
+463,15.415,10.0,4.0,57.0,99.0713,129.0,943.0,102.0,474.0,496.198,516.0,706.0,262.0,506.0,520.234,536.0,741.0,0.0,5.0,25.8288,54.0,414.0,119.0,133.526,11.421,13.9709,10.0594,10.0,10.0
+464,15.449,10.0,4.0,56.0,98.7012,127.0,938.0,124.0,474.0,496.281,517.0,720.0,232.0,506.0,520.337,536.0,729.0,0.0,5.0,26.0262,54.0,392.0,119.0,133.654,10.5748,14.0147,10.1242,10.0,10.0
+465,15.482,10.0,4.0,56.0,98.6821,127.0,1019.0,119.0,474.0,496.18,516.0,883.0,409.0,505.0,519.909,535.0,720.0,0.0,5.0,25.8489,54.0,393.0,116.0,132.377,11.3014,14.2025,10.1599,10.0,10.0
+466,15.516,10.0,4.0,57.0,99.4761,128.0,933.0,90.0,474.0,495.877,516.0,867.0,402.0,506.0,520.329,536.0,729.0,0.0,5.0,26.187,55.0,424.0,117.0,132.048,10.2921,14.0276,10.0504,10.0,10.0
+467,15.549,10.0,4.0,56.0,98.9022,127.0,934.0,122.0,474.0,496.231,516.0,909.0,409.0,506.0,520.196,536.0,726.0,0.0,5.0,25.9199,54.0,414.0,117.0,132.45,11.5616,13.9635,9.99464,10.0,10.0
+468,15.582,10.0,4.0,57.0,99.2982,128.0,934.0,119.0,474.0,496.428,517.0,924.0,414.0,506.0,520.162,536.0,743.0,0.0,5.0,25.9317,56.0,416.0,119.0,134.304,12.8413,14.0377,10.0937,10.0,10.0
+469,15.616,10.0,4.0,57.0,99.0241,128.0,916.0,103.0,474.0,496.674,517.0,690.0,232.0,506.0,520.217,536.0,732.0,0.0,5.0,25.7121,55.0,409.0,120.0,134.6,10.2318,13.9441,10.1084,10.0,10.0
+470,15.649,10.0,4.0,55.0,97.6813,127.0,945.0,79.0,474.0,496.896,517.0,947.0,411.0,505.0,519.67,535.0,746.0,0.0,4.0,25.4555,55.0,436.0,119.0,134.531,11.5359,13.9815,10.0907,10.0,10.0
+471,15.682,10.0,4.0,55.0,97.7495,127.0,932.0,116.0,474.0,496.889,517.0,676.0,416.0,505.0,519.898,536.0,797.0,0.0,4.0,25.4299,54.0,399.0,119.0,134.612,10.4446,13.952,10.0662,10.0,10.0
+472,15.716,10.0,4.0,56.0,97.9687,127.0,931.0,114.0,474.0,497.157,517.0,694.0,238.0,505.0,519.309,535.0,741.0,0.0,4.0,25.2201,55.0,400.0,117.0,133.662,11.2537,13.8183,10.0408,10.0,10.0
+473,15.749,10.0,4.0,57.0,98.3731,126.0,921.0,108.0,474.0,497.175,517.0,890.0,378.0,505.0,519.48,536.0,726.0,0.0,4.0,25.2861,55.0,404.0,119.0,134.819,11.2888,13.9791,10.048,10.0,10.0
+474,15.782,10.0,4.0,57.0,98.5881,126.0,1019.0,86.0,474.0,497.279,517.0,898.0,378.0,505.0,519.457,535.0,730.0,0.0,4.0,25.2497,55.0,431.0,119.0,134.53,12.1956,13.8592,10.0324,10.0,10.0
+475,15.816,10.0,4.0,57.0,98.8426,127.0,1016.0,102.0,474.0,497.545,517.0,666.0,396.0,504.0,519.171,534.0,790.0,0.0,4.0,24.9657,55.0,416.0,118.0,134.651,13.6999,14.0093,9.98749,10.0,10.0
+476,15.849,10.0,4.0,57.0,99.2698,127.0,945.0,102.0,474.0,497.441,517.0,680.0,398.0,505.0,519.543,535.0,742.0,0.0,4.0,25.1185,56.0,413.0,120.0,136.163,11.0112,13.7231,9.88508,10.0,10.0
+477,15.883,10.0,4.0,55.0,97.0783,126.0,926.0,110.0,474.0,497.425,517.0,688.0,395.0,504.0,519.373,535.0,745.0,0.0,4.0,25.0454,54.0,404.0,119.0,134.848,13.3097,13.8556,10.0425,10.0,10.0
+478,15.916,10.0,4.0,56.0,98.1273,127.0,917.0,95.0,474.0,497.085,517.0,691.0,412.0,505.0,519.759,535.0,810.0,0.0,4.0,25.2762,55.0,422.0,119.0,134.39,14.0273,13.9475,10.0386,10.0,10.0
+479,15.949,10.0,4.0,56.0,98.053,127.0,928.0,111.0,474.0,496.976,517.0,678.0,405.0,505.0,519.658,536.0,787.0,0.0,4.0,25.3548,55.0,407.0,118.0,133.942,10.5761,13.7071,9.92096,10.0,10.0
+480,15.983,10.0,4.0,56.0,98.3741,127.0,1019.0,114.0,474.0,497.284,517.0,673.0,399.0,504.0,519.272,534.0,741.0,0.0,4.0,25.1951,55.0,402.0,117.0,134.629,11.455,13.7607,9.90483,10.0,10.0
+481,16.016,10.0,4.0,57.0,99.3189,128.0,1019.0,116.0,474.0,497.315,517.0,662.0,412.0,505.0,519.683,535.0,758.0,0.0,4.0,25.2743,55.0,398.0,120.0,135.795,10.2548,13.9079,10.0386,10.0,10.0
+482,16.049,10.0,4.0,56.0,98.5848,127.0,1019.0,90.0,474.0,496.731,517.0,678.0,410.0,505.0,519.622,535.0,795.0,0.0,4.0,25.4693,55.0,424.0,116.0,133.34,11.5209,13.8922,9.90765,10.0,10.0
+483,16.083,10.0,4.0,57.0,99.3164,128.0,931.0,116.0,474.0,496.576,517.0,691.0,380.0,506.0,520.256,536.0,794.0,0.0,5.0,25.6683,54.0,400.0,119.0,133.533,11.3075,13.8869,10.0338,10.0,10.0
+484,16.116,10.0,4.0,56.0,98.6311,128.0,929.0,86.0,474.0,496.641,517.0,667.0,399.0,506.0,520.071,536.0,741.0,0.0,5.0,25.6609,55.0,431.0,119.0,133.813,12.5229,13.9389,10.1538,10.0,10.0
+485,16.149,10.0,4.0,56.0,98.5197,127.0,934.0,131.0,474.0,496.886,517.0,678.0,398.0,505.0,519.569,535.0,726.0,0.0,4.0,25.3747,55.0,385.0,118.0,133.917,13.6544,14.0073,9.92791,10.0,10.0
+486,16.183,10.0,4.0,56.0,98.5502,128.0,1019.0,80.0,474.0,497.098,517.0,674.0,383.0,505.0,519.938,535.0,719.0,0.0,4.0,25.3537,55.0,437.0,120.0,134.967,10.6122,13.7991,9.80514,10.0,10.0
+487,16.216,10.0,4.0,55.0,97.452,126.0,1019.0,114.0,474.0,496.784,517.0,672.0,417.0,505.0,519.288,534.0,716.0,0.0,4.0,25.2222,54.0,403.0,116.0,133.266,11.2877,13.7824,9.68729,10.0,10.0
+488,16.25,10.0,4.0,56.0,98.1171,127.0,927.0,118.0,475.0,497.17,517.0,672.0,406.0,505.0,519.501,535.0,752.0,0.0,4.0,25.1598,54.0,397.0,119.0,134.852,10.9927,13.7901,9.81195,10.0,10.0
+489,16.283,10.0,4.0,55.0,97.8464,127.0,909.0,96.0,474.0,497.256,517.0,675.0,410.0,505.0,519.722,536.0,729.0,0.0,4.0,25.1041,54.0,418.0,120.0,135.026,10.0956,13.6453,9.98674,10.0,10.0
+490,16.316,10.0,4.0,55.0,96.6853,126.0,924.0,81.0,474.0,497.159,517.0,666.0,402.0,505.0,519.295,534.0,753.0,0.0,4.0,25.0226,54.0,435.0,116.0,133.619,11.6884,13.6735,9.82773,10.0,10.0
+491,16.35,10.0,4.0,54.0,95.0988,125.0,923.0,106.0,474.0,497.226,517.0,726.0,416.0,505.0,519.379,535.0,748.0,0.0,4.0,25.0264,54.0,410.0,117.0,134.238,11.0374,13.6191,9.85233,10.0,10.0
+492,16.383,10.0,4.0,59.0,92.641,120.0,1019.0,113.0,479.0,501.253,517.0,720.0,433.0,506.0,517.08,532.0,686.0,0.0,4.0,19.4944,43.0,400.0,116.0,132.71,45.1801,23.748,16.878,10.0,10.0
+493,16.416,10.0,4.0,60.0,95.2737,125.0,1004.0,106.0,478.0,500.69,517.0,658.0,414.0,507.0,517.554,533.0,718.0,0.0,4.0,19.9083,44.0,408.0,116.0,131.178,11.7166,13.7977,9.7535,10.0,10.0
+494,16.45,10.0,4.0,62.0,96.8903,127.0,1019.0,90.0,479.0,500.831,517.0,664.0,422.0,507.0,517.838,534.0,680.0,0.0,4.0,19.9033,44.0,429.0,118.0,132.101,10.242,13.7032,9.79499,10.0,10.0
+495,16.483,10.0,4.0,63.0,97.8906,128.0,965.0,109.0,478.0,500.502,517.0,654.0,413.0,506.0,517.742,533.0,694.0,0.0,5.0,20.1744,44.0,406.0,116.0,131.628,11.1465,13.839,9.87134,10.0,10.0
+496,16.517,10.0,4.0,64.0,98.3726,129.0,1019.0,106.0,478.0,500.292,517.0,658.0,434.0,508.0,518.095,533.0,711.0,0.0,5.0,20.2965,44.0,409.0,118.0,132.192,10.4146,13.9142,9.76116,10.0,10.0
+497,16.55,10.0,4.0,62.0,97.2263,128.0,979.0,90.0,478.0,500.719,517.0,644.0,407.0,507.0,517.854,533.0,676.0,0.0,5.0,19.9762,44.0,424.0,119.0,132.9,10.8598,13.928,9.69756,10.0,10.0
+498,16.583,10.0,4.0,64.0,98.5639,129.0,985.0,87.0,478.0,500.484,517.0,652.0,424.0,507.0,518.0,533.0,675.0,0.0,5.0,20.0785,44.0,431.0,118.0,131.869,11.2348,13.8806,9.71489,10.0,10.0
+499,16.617,10.0,4.0,64.0,98.5712,129.0,989.0,102.0,479.0,500.432,517.0,662.0,430.0,508.0,518.161,534.0,687.0,0.0,5.0,20.1629,43.0,412.0,119.0,132.342,10.3542,13.9038,9.741,10.0,10.0
+500,16.65,10.0,4.0,62.0,97.714,128.0,1019.0,138.0,478.0,500.459,517.0,646.0,434.0,507.0,517.858,533.0,688.0,0.0,5.0,20.0809,44.0,375.0,118.0,132.136,11.5277,13.9019,9.72425,10.0,10.0
+501,16.683,10.0,4.0,63.0,97.89,128.0,981.0,90.0,478.0,500.606,517.0,661.0,416.0,507.0,517.999,534.0,698.0,0.0,5.0,20.1775,44.0,423.0,119.0,132.817,10.6925,14.0185,9.86572,10.0,10.0
+502,16.717,10.0,4.0,64.0,98.188,129.0,979.0,106.0,478.0,500.609,517.0,662.0,424.0,507.0,518.024,534.0,675.0,0.0,5.0,20.0129,43.0,409.0,119.0,132.33,11.8431,13.8667,9.79872,10.0,10.0
+503,16.75,10.0,4.0,62.0,98.0544,129.0,973.0,66.0,479.0,500.758,517.0,647.0,424.0,507.0,518.08,534.0,718.0,0.0,4.0,19.854,43.0,452.0,120.0,133.443,12.5768,13.7384,9.75826,10.0,10.0
+504,16.783,10.0,4.0,63.0,98.1414,129.0,967.0,133.0,478.0,500.405,517.0,660.0,423.0,508.0,518.297,534.0,725.0,0.0,5.0,20.1736,43.0,382.0,119.0,132.219,10.5411,13.7654,9.76428,10.0,10.0
+505,16.817,10.0,4.0,64.0,98.7115,130.0,1019.0,118.0,478.0,500.059,517.0,659.0,415.0,507.0,518.114,534.0,694.0,0.0,5.0,20.4017,44.0,395.0,118.0,131.163,11.1834,13.8303,9.83134,10.0,10.0
+506,16.85,10.0,4.0,65.0,99.2807,130.0,1019.0,96.0,478.0,499.741,516.0,652.0,436.0,508.0,518.442,534.0,696.0,0.0,5.0,20.6018,44.0,420.0,118.0,130.503,10.1274,13.9651,9.92114,10.0,10.0
+507,16.884,10.0,4.0,62.0,97.3312,129.0,985.0,120.0,478.0,500.325,517.0,632.0,436.0,507.0,518.015,533.0,690.0,0.0,5.0,20.2185,44.0,395.0,118.0,132.085,11.3427,13.9843,9.78908,10.0,10.0
+508,16.917,10.0,4.0,63.0,97.6649,128.0,977.0,123.0,478.0,500.239,517.0,666.0,422.0,508.0,518.241,534.0,693.0,0.0,5.0,20.3681,44.0,391.0,119.0,132.137,10.9168,13.8432,9.65493,10.0,10.0
+509,16.95,10.0,4.0,62.0,97.3913,128.0,971.0,124.0,478.0,500.44,517.0,644.0,419.0,508.0,518.444,534.0,689.0,0.0,5.0,20.2952,44.0,391.0,121.0,133.131,10.5612,13.9195,9.94036,10.0,10.0
+510,16.984,10.0,4.0,62.0,97.3344,127.0,1019.0,90.0,478.0,500.234,517.0,661.0,436.0,507.0,518.082,533.0,679.0,0.0,5.0,20.3166,44.0,426.0,117.0,131.644,11.8875,13.9454,9.79393,10.0,10.0
+511,17.017,10.0,4.0,64.0,98.7428,129.0,1019.0,93.0,478.0,499.876,516.0,658.0,430.0,508.0,518.588,534.0,686.0,0.0,5.0,20.6275,43.0,424.0,119.0,131.275,10.9477,13.9763,9.90018,10.0,10.0
+512,17.05,10.0,4.0,62.0,97.1736,128.0,976.0,128.0,478.0,499.987,516.0,643.0,440.0,507.0,518.436,534.0,683.0,0.0,5.0,20.5412,44.0,387.0,119.0,131.273,11.2351,13.7182,9.82027,10.0,10.0
+513,17.084,10.0,4.0,62.0,96.7396,128.0,981.0,108.0,478.0,500.053,516.0,699.0,420.0,508.0,518.604,535.0,696.0,0.0,5.0,20.5317,44.0,406.0,120.0,132.196,11.0321,13.8731,9.8007,10.0,10.0
+514,17.117,10.0,4.0,62.0,97.2408,128.0,1019.0,90.0,478.0,500.165,516.0,655.0,430.0,508.0,518.797,535.0,682.0,0.0,5.0,20.4317,44.0,426.0,120.0,132.612,10.2489,13.7445,9.82494,10.0,10.0
+515,17.15,10.0,4.0,62.0,97.5153,129.0,966.0,96.0,478.0,500.351,517.0,641.0,424.0,508.0,518.371,534.0,702.0,0.0,5.0,20.2476,44.0,423.0,120.0,132.455,10.905,13.7862,9.84456,10.0,10.0
+516,17.184,10.0,4.0,63.0,97.7102,128.0,967.0,114.0,478.0,500.275,517.0,657.0,439.0,508.0,518.652,534.0,682.0,0.0,5.0,20.4501,44.0,402.0,120.0,132.894,10.2077,13.7464,9.9429,10.0,10.0
+517,17.217,10.0,4.0,64.0,98.1162,128.0,964.0,95.0,478.0,500.072,517.0,649.0,414.0,508.0,518.501,534.0,681.0,0.0,5.0,20.5206,44.0,418.0,119.0,131.697,11.0786,13.7421,9.80446,10.0,10.0
+518,17.251,10.0,4.0,63.0,97.7695,129.0,977.0,86.0,478.0,500.422,517.0,667.0,436.0,508.0,518.64,534.0,673.0,0.0,5.0,20.2314,44.0,430.0,121.0,133.148,12.8897,13.9366,9.83324,10.0,10.0
+519,17.284,10.0,4.0,62.0,97.4973,128.0,978.0,88.0,479.0,500.784,517.0,656.0,434.0,508.0,518.584,534.0,690.0,0.0,5.0,20.1762,44.0,426.0,121.0,133.818,10.2934,13.6049,9.73737,10.0,10.0
+520,17.317,10.0,4.0,62.0,97.3811,128.0,958.0,84.0,478.0,500.52,517.0,649.0,436.0,508.0,518.328,534.0,686.0,0.0,5.0,20.1211,44.0,430.0,120.0,132.744,11.6019,13.7085,9.77515,10.0,10.0
+521,17.351,10.0,4.0,64.0,97.9971,129.0,979.0,127.0,478.0,500.076,516.0,686.0,432.0,508.0,518.601,534.0,685.0,0.0,5.0,20.5476,44.0,387.0,119.0,132.146,10.6804,13.8237,9.84139,10.0,10.0
+522,17.384,10.0,4.0,62.0,97.336,128.0,965.0,102.0,478.0,500.609,517.0,656.0,425.0,508.0,518.286,534.0,682.0,0.0,5.0,20.1608,44.0,414.0,120.0,133.301,12.2007,14.0066,9.82948,10.0,10.0
+523,17.417,10.0,4.0,62.0,97.7749,129.0,972.0,101.0,479.0,500.755,517.0,676.0,420.0,508.0,518.12,534.0,675.0,0.0,4.0,19.8963,44.0,415.0,119.0,132.81,10.8619,13.7183,9.74181,10.0,10.0
+524,17.451,10.0,4.0,62.0,97.0967,128.0,1019.0,99.0,479.0,500.714,517.0,661.0,437.0,508.0,518.171,533.0,690.0,0.0,5.0,20.0176,43.0,415.0,120.0,132.739,10.3187,13.6529,9.70718,10.0,10.0
+525,17.484,10.0,4.0,62.0,97.2178,128.0,975.0,107.0,478.0,500.514,517.0,675.0,422.0,507.0,517.963,533.0,683.0,0.0,4.0,19.9671,44.0,407.0,118.0,131.73,11.9817,13.7611,9.78197,10.0,10.0
+526,17.518,10.0,4.0,63.0,97.465,128.0,1019.0,106.0,479.0,500.786,517.0,667.0,412.0,508.0,518.214,533.0,680.0,0.0,5.0,19.9081,43.0,409.0,120.0,133.217,11.0803,13.739,9.82801,10.0,10.0
+527,17.551,10.0,4.0,61.0,96.7995,128.0,1019.0,106.0,479.0,501.573,518.0,666.0,430.0,506.0,517.478,533.0,692.0,0.0,4.0,19.3545,43.0,409.0,120.0,134.204,11.2432,13.6725,9.71551,10.0,10.0
+528,17.584,10.0,4.0,62.0,97.3218,127.0,984.0,132.0,479.0,501.271,517.0,782.0,441.0,507.0,517.807,533.0,721.0,0.0,4.0,19.6061,43.0,382.0,120.0,133.908,12.6205,13.76,9.6737,10.0,10.0
+529,17.618,10.0,4.0,62.0,96.7414,127.0,987.0,110.0,479.0,501.179,517.0,657.0,416.0,507.0,517.734,533.0,690.0,0.0,4.0,19.6385,43.0,402.0,120.0,134.377,10.866,13.7459,9.67588,10.0,10.0
+530,17.651,10.0,4.0,61.0,96.3393,127.0,963.0,90.0,478.0,500.699,517.0,755.0,430.0,507.0,517.823,533.0,828.0,0.0,5.0,19.956,44.0,424.0,118.0,131.797,11.7799,13.7393,9.67494,10.0,10.0
+531,17.684,10.0,4.0,61.0,96.6592,127.0,958.0,104.0,478.0,500.205,516.0,752.0,430.0,508.0,518.285,534.0,687.0,0.0,5.0,20.4184,44.0,411.0,119.0,131.375,10.2766,13.8282,9.85758,10.0,10.0
+532,17.718,10.0,4.0,62.0,97.4067,128.0,1019.0,96.0,479.0,500.771,517.0,740.0,433.0,507.0,518.0,533.0,799.0,0.0,5.0,19.9497,43.0,417.0,119.0,132.208,11.1822,13.7653,9.84997,10.0,10.0
+533,17.751,10.0,4.0,63.0,97.5186,128.0,975.0,109.0,479.0,500.799,517.0,654.0,416.0,508.0,518.258,534.0,819.0,0.0,5.0,20.0559,43.0,404.0,120.0,133.397,10.8895,13.757,9.7058,10.0,10.0
+534,17.784,10.0,4.0,62.0,97.4818,129.0,1008.0,134.0,478.0,500.496,517.0,643.0,436.0,508.0,518.403,534.0,797.0,0.0,5.0,20.2268,44.0,381.0,120.0,132.91,10.326,13.5775,9.60842,10.0,10.0
+535,17.818,10.0,4.0,63.0,97.9272,129.0,976.0,71.0,478.0,500.561,517.0,683.0,431.0,508.0,518.21,534.0,779.0,0.0,5.0,20.1927,44.0,446.0,119.0,132.87,11.2805,13.9158,9.74358,10.0,10.0
+536,17.851,10.0,4.0,62.0,98.1362,129.0,994.0,109.0,478.0,500.484,517.0,662.0,424.0,508.0,518.32,534.0,684.0,0.0,5.0,20.2287,44.0,407.0,120.0,132.714,10.4572,14.0682,9.76351,10.0,10.0
+537,17.885,10.0,4.0,60.0,96.7786,128.0,982.0,102.0,479.0,500.966,517.0,646.0,426.0,507.0,518.086,534.0,827.0,0.0,4.0,19.9155,44.0,411.0,120.0,133.405,11.2624,13.7636,9.76984,10.0,10.0
+538,17.918,10.0,4.0,62.0,98.2904,129.0,995.0,95.0,479.0,501.095,517.0,717.0,433.0,507.0,518.036,533.0,791.0,0.0,4.0,19.8957,44.0,421.0,120.0,133.993,11.0133,13.6944,9.93395,10.0,10.0
+539,17.951,10.0,4.0,61.0,96.9236,127.0,970.0,116.0,480.0,501.547,517.0,838.0,432.0,507.0,518.129,533.0,717.0,0.0,4.0,19.6087,43.0,398.0,122.0,135.221,10.4958,13.791,9.79902,10.0,10.0
+540,17.985,10.0,4.0,62.0,97.7694,128.0,978.0,118.0,479.0,501.515,517.0,850.0,432.0,507.0,517.745,533.0,693.0,0.0,4.0,19.4924,43.0,397.0,120.0,134.118,11.0802,13.6072,9.57474,10.0,10.0
+541,18.018,10.0,4.0,64.0,98.7965,128.0,994.0,138.0,479.0,501.094,517.0,894.0,430.0,507.0,518.023,534.0,693.0,0.0,5.0,19.8254,44.0,387.0,120.0,133.886,10.3273,13.7359,9.8398,10.0,10.0
+542,18.051,10.0,4.0,62.0,97.9636,128.0,1004.0,108.0,479.0,500.946,517.0,864.0,432.0,508.0,517.912,533.0,693.0,0.0,4.0,19.7787,43.0,406.0,119.0,132.593,11.2728,13.7398,9.70732,10.0,10.0
+543,18.085,10.0,4.0,61.0,97.7295,128.0,1019.0,72.0,479.0,501.548,518.0,833.0,440.0,507.0,517.914,533.0,703.0,0.0,4.0,19.6675,43.0,445.0,122.0,135.902,12.2581,13.8331,9.72722,10.0,10.0
+544,18.118,10.0,4.0,61.0,96.7962,127.0,983.0,118.0,479.0,501.416,518.0,831.0,434.0,507.0,518.145,534.0,679.0,0.0,4.0,19.8196,44.0,396.0,122.0,135.12,10.5203,13.745,9.84308,10.0,10.0
+545,18.151,10.0,4.0,61.0,96.9357,127.0,980.0,116.0,479.0,501.133,517.0,662.0,424.0,507.0,517.755,533.0,700.0,0.0,4.0,19.6488,43.0,396.0,120.0,133.853,11.6019,13.7487,9.78557,10.0,10.0
+546,18.185,10.0,4.0,61.0,97.169,127.0,965.0,96.0,479.0,500.913,517.0,685.0,432.0,507.0,517.887,533.0,720.0,0.0,4.0,19.9388,43.0,419.0,119.0,133.061,10.6053,13.9225,9.9013,10.0,10.0
+547,18.218,10.0,4.0,59.0,95.1294,126.0,982.0,118.0,479.0,501.465,518.0,646.0,430.0,506.0,517.502,533.0,687.0,0.0,4.0,19.6007,44.0,400.0,120.0,135.061,11.8088,13.9301,9.86975,10.0,10.0
+548,18.252,10.0,4.0,60.0,95.524,126.0,998.0,128.0,479.0,501.525,518.0,641.0,444.0,506.0,517.665,533.0,683.0,0.0,4.0,19.5138,43.0,388.0,120.0,134.689,11.5597,13.8172,9.76846,10.0,10.0
+549,18.285,10.0,4.0,60.0,95.3034,126.0,967.0,130.0,479.0,501.506,518.0,650.0,432.0,506.0,517.504,533.0,676.0,0.0,4.0,19.3806,43.0,383.0,120.0,134.348,11.1301,13.7543,9.7931,10.0,10.0
+550,18.318,10.0,4.0,59.0,94.7084,125.0,992.0,48.0,479.0,501.438,517.0,646.0,430.0,506.0,517.19,532.0,699.0,0.0,4.0,19.3141,43.0,469.0,118.0,133.263,12.8779,13.6559,9.67897,10.0,10.0
+551,18.352,10.0,4.0,59.0,94.4865,125.0,994.0,101.0,479.0,501.55,518.0,698.0,430.0,506.0,517.362,533.0,692.0,0.0,4.0,19.2359,43.0,416.0,118.0,133.613,11.2104,13.5358,9.50259,10.0,10.0
+552,18.385,10.0,4.0,59.0,94.7918,126.0,983.0,138.0,479.0,501.172,517.0,642.0,438.0,506.0,517.396,533.0,707.0,0.0,4.0,19.6494,43.0,376.0,118.0,133.078,10.9947,13.7249,9.5374,10.0,10.0
+553,18.418,10.0,4.0,60.0,95.7837,126.0,969.0,104.0,479.0,501.024,517.0,644.0,424.0,507.0,517.682,533.0,677.0,0.0,4.0,19.6644,43.0,409.0,118.0,132.476,12.3606,13.8575,9.71364,10.0,10.0
+554,18.452,10.0,4.0,61.0,96.3974,126.0,962.0,100.0,479.0,500.944,517.0,675.0,432.0,507.0,517.937,533.0,706.0,0.0,4.0,19.8264,43.0,415.0,120.0,133.119,10.5895,13.6152,9.67235,10.0,10.0
+555,18.485,10.0,4.0,61.0,96.3719,126.0,982.0,96.0,478.0,500.882,517.0,679.0,424.0,507.0,517.766,533.0,685.0,0.0,4.0,19.8123,44.0,419.0,119.0,132.99,11.0946,13.7647,9.72959,10.0,10.0
+556,18.519,10.0,4.0,61.0,97.3557,127.0,990.0,114.0,479.0,501.147,517.0,644.0,432.0,507.0,517.987,534.0,681.0,0.0,4.0,19.8778,44.0,402.0,120.0,133.688,10.3184,13.7213,9.75677,10.0,10.0
+557,18.552,10.0,4.0,61.0,97.4336,128.0,980.0,104.0,479.0,500.789,517.0,662.0,416.0,508.0,518.222,534.0,689.0,0.0,5.0,19.9878,44.0,410.0,120.0,133.37,10.9567,13.7066,9.8196,10.0,10.0
+558,18.585,10.0,4.0,62.0,98.3777,130.0,957.0,102.0,478.0,500.624,517.0,646.0,444.0,508.0,518.129,533.0,683.0,0.0,5.0,20.0966,44.0,414.0,119.0,132.535,11.1912,13.7103,9.69685,10.0,10.0
+559,18.619,10.0,4.0,62.0,98.5633,130.0,974.0,161.0,478.0,500.336,517.0,666.0,425.0,508.0,518.446,534.0,697.0,0.0,5.0,20.365,44.0,354.0,120.0,132.601,11.016,13.669,9.71696,10.0,10.0
+560,18.652,10.0,4.0,61.0,97.1149,128.0,1019.0,101.0,478.0,500.138,517.0,666.0,446.0,508.0,518.221,534.0,696.0,0.0,5.0,20.4649,44.0,413.0,118.0,131.438,13.0175,13.8904,9.88095,10.0,10.0
+561,18.685,10.0,4.0,62.0,97.7974,128.0,975.0,107.0,478.0,500.095,517.0,673.0,424.0,508.0,518.661,534.0,686.0,0.0,5.0,20.5624,44.0,407.0,120.0,133.352,11.3179,14.0561,9.79214,10.0,10.0
+562,18.719,10.0,4.0,62.0,97.924,129.0,964.0,89.0,478.0,500.325,517.0,651.0,437.0,507.0,518.053,533.0,692.0,0.0,5.0,20.3286,44.0,426.0,118.0,131.884,11.2791,14.0191,9.85644,10.0,10.0
+563,18.752,10.0,4.0,63.0,98.3192,129.0,983.0,118.0,478.0,500.564,517.0,664.0,419.0,507.0,518.276,534.0,690.0,0.0,5.0,20.249,44.0,400.0,120.0,132.922,11.5108,13.8687,9.84672,10.0,10.0
+564,18.785,10.0,4.0,61.0,97.1636,128.0,969.0,128.0,479.0,500.868,517.0,640.0,441.0,508.0,518.481,534.0,675.0,0.0,5.0,20.0475,44.0,386.0,122.0,134.267,10.7754,13.7567,9.84779,10.0,10.0
+565,18.819,10.0,4.0,62.0,98.0399,129.0,993.0,109.0,479.0,500.811,517.0,650.0,430.0,507.0,517.913,533.0,674.0,0.0,5.0,19.8039,43.0,404.0,119.0,132.759,11.5142,13.6943,9.75407,10.0,10.0
+566,18.852,10.0,4.0,64.0,98.8707,129.0,1018.0,90.0,479.0,500.633,517.0,666.0,440.0,508.0,518.349,534.0,684.0,0.0,5.0,20.1485,43.0,426.0,120.0,133.305,10.7195,13.591,9.81161,10.0,10.0
+567,18.886,10.0,4.0,61.0,96.6415,127.0,1019.0,172.0,479.0,501.193,517.0,664.0,430.0,507.0,518.058,534.0,679.0,0.0,4.0,19.7892,44.0,344.0,122.0,135.048,12.3219,13.8662,9.84576,10.0,10.0
+568,18.919,10.0,4.0,62.0,97.0649,127.0,974.0,124.0,479.0,500.903,517.0,657.0,432.0,507.0,518.033,533.0,689.0,0.0,4.0,19.9361,44.0,390.0,120.0,134.384,11.9704,13.8695,9.79986,10.0,10.0
+569,18.952,10.0,4.0,61.0,96.7148,127.0,963.0,116.0,479.0,501.132,518.0,680.0,424.0,507.0,518.049,534.0,685.0,0.0,4.0,19.9644,44.0,397.0,121.0,134.59,10.352,13.808,9.7834,10.0,10.0
+570,18.986,10.0,4.0,61.0,96.9017,127.0,986.0,118.0,479.0,501.319,517.0,652.0,435.0,507.0,517.93,534.0,683.0,0.0,4.0,19.7309,43.0,396.0,120.0,134.383,11.3061,13.8282,9.74455,10.0,10.0
+571,19.019,10.0,4.0,61.0,97.3725,128.0,979.0,114.0,478.0,500.601,517.0,656.0,432.0,507.0,518.338,534.0,682.0,0.0,5.0,20.3177,44.0,400.0,120.0,133.66,10.3448,13.9582,9.93394,10.0,10.0
+572,19.052,10.0,4.0,60.0,95.6574,127.0,975.0,120.0,479.0,500.727,517.0,672.0,436.0,507.0,518.059,534.0,678.0,0.0,4.0,20.1577,44.0,395.0,120.0,133.132,11.4476,13.9721,9.88386,10.0,10.0
+573,19.086,10.0,4.0,60.0,96.1416,126.0,973.0,81.0,479.0,500.857,517.0,642.0,418.0,508.0,518.23,534.0,686.0,0.0,5.0,20.0238,44.0,432.0,121.0,134.179,10.9535,13.7098,9.70536,10.0,10.0
+574,19.119,10.0,4.0,59.0,95.0598,126.0,1019.0,85.0,478.0,500.673,517.0,694.0,436.0,508.0,518.283,534.0,690.0,0.0,4.0,20.1003,44.0,430.0,121.0,134.211,10.8793,13.8919,9.90707,10.0,10.0
+575,19.152,10.0,4.0,60.0,95.6019,127.0,1019.0,106.0,479.0,501.175,517.0,656.0,428.0,507.0,517.866,533.0,684.0,0.0,4.0,19.836,43.0,409.0,120.0,134.085,12.5752,13.8031,9.73538,10.0,10.0
+576,19.186,10.0,4.0,60.0,95.791,127.0,968.0,124.0,479.0,501.098,517.0,667.0,429.0,507.0,517.994,533.0,684.0,0.0,4.0,19.8037,43.0,390.0,120.0,134.118,11.2671,13.8597,9.81051,10.0,10.0
+577,19.219,10.0,4.0,60.0,95.7424,127.0,982.0,110.0,479.0,501.145,517.0,651.0,428.0,507.0,518.006,534.0,689.0,0.0,4.0,19.8083,43.0,403.0,120.0,133.645,11.0976,13.9278,9.68679,10.0,10.0
+578,19.253,10.0,4.0,61.0,96.3869,127.0,981.0,93.0,479.0,501.093,517.0,678.0,433.0,507.0,518.145,534.0,695.0,0.0,4.0,19.8509,43.0,422.0,121.0,134.43,12.9216,13.8212,9.85431,10.0,10.0
+579,19.286,10.0,4.0,61.0,96.1903,127.0,974.0,115.0,479.0,500.805,517.0,645.0,433.0,508.0,518.438,534.0,689.0,0.0,5.0,20.0526,43.0,399.0,122.0,134.19,10.6889,13.661,10.0001,10.0,10.0
+580,19.319,10.0,4.0,61.0,96.4553,127.0,987.0,134.0,478.0,500.478,517.0,651.0,436.0,508.0,518.202,534.0,688.0,0.0,5.0,20.2608,44.0,383.0,119.0,132.808,11.3541,13.8357,9.91029,10.0,10.0
+581,19.353,10.0,4.0,61.0,96.5476,127.0,984.0,104.0,478.0,500.228,517.0,652.0,420.0,508.0,518.446,534.0,676.0,0.0,5.0,20.4281,44.0,408.0,119.0,132.003,10.259,13.7969,9.78838,10.0,10.0
+582,19.386,10.0,4.0,60.0,96.1181,128.0,1019.0,94.0,478.0,499.606,516.0,656.0,432.0,507.0,518.313,534.0,690.0,0.0,5.0,20.7011,44.0,420.0,116.0,129.461,11.1363,13.9507,9.89113,10.0,10.0
+583,19.419,10.0,4.0,62.0,97.5379,128.0,1002.0,134.0,478.0,499.525,516.0,649.0,424.0,508.0,518.897,535.0,707.0,0.0,5.0,21.0143,45.0,384.0,120.0,131.814,11.1552,14.0945,9.99431,10.0,10.0
+584,19.453,10.0,4.0,61.0,96.8892,128.0,969.0,116.0,478.0,499.746,516.0,644.0,418.0,508.0,518.858,535.0,691.0,0.0,5.0,20.823,44.0,397.0,120.0,131.365,11.3231,13.8321,9.88584,10.0,10.0
+585,19.486,10.0,4.0,61.0,96.7383,127.0,979.0,114.0,478.0,499.806,516.0,680.0,436.0,508.0,518.469,534.0,681.0,0.0,5.0,20.6359,44.0,399.0,119.0,131.156,13.4505,13.971,9.86673,10.0,10.0
+586,19.52,10.0,4.0,61.0,96.3184,127.0,976.0,91.0,478.0,500.185,517.0,665.0,436.0,508.0,518.672,534.0,677.0,0.0,5.0,20.5041,44.0,423.0,120.0,132.377,11.7337,13.8649,9.74867,10.0,10.0
+587,19.553,10.0,4.0,61.0,96.0916,127.0,1019.0,90.0,478.0,500.379,517.0,660.0,434.0,507.0,518.087,534.0,682.0,0.0,5.0,20.2302,44.0,425.0,118.0,131.026,11.3902,13.9055,9.85427,10.0,10.0
+588,19.586,10.0,4.0,61.0,97.2406,128.0,969.0,117.0,478.0,500.155,517.0,665.0,442.0,508.0,518.389,534.0,696.0,0.0,5.0,20.5502,44.0,397.0,119.0,131.917,10.9082,13.9413,9.93527,10.0,10.0
+589,19.62,10.0,4.0,61.0,96.8693,128.0,1019.0,100.0,478.0,500.202,517.0,696.0,429.0,508.0,518.512,535.0,692.0,0.0,5.0,20.514,44.0,412.0,119.0,131.432,10.274,13.8135,9.86686,10.0,10.0
+590,19.653,10.0,4.0,60.0,96.0104,127.0,985.0,96.0,478.0,500.307,517.0,691.0,424.0,507.0,518.042,534.0,698.0,0.0,5.0,20.1932,44.0,418.0,118.0,131.42,11.1579,14.0026,9.7913,10.0,10.0
+591,19.686,10.0,4.0,61.0,95.9816,126.0,975.0,105.0,478.0,500.213,517.0,640.0,434.0,507.0,518.27,534.0,685.0,0.0,5.0,20.3615,44.0,408.0,118.0,131.927,10.305,13.9456,9.8431,10.0,10.0
+592,19.72,10.0,4.0,61.0,96.1834,126.0,995.0,134.0,478.0,500.482,517.0,654.0,426.0,507.0,517.94,534.0,691.0,0.0,5.0,20.1893,44.0,379.0,118.0,132.089,11.3923,13.9645,9.88329,10.0,10.0
+593,19.753,10.0,4.0,61.0,96.1154,127.0,979.0,109.0,479.0,500.703,517.0,655.0,408.0,507.0,517.938,533.0,688.0,0.0,5.0,20.0134,43.0,404.0,119.0,132.756,11.2771,13.8857,9.70599,10.0,10.0
+594,19.786,10.0,4.0,62.0,97.2744,129.0,1019.0,84.0,478.0,500.377,517.0,662.0,424.0,508.0,518.312,534.0,690.0,0.0,5.0,20.2905,44.0,430.0,120.0,132.714,10.2952,13.9216,9.79035,10.0,10.0
+595,19.82,10.0,4.0,62.0,96.9489,127.0,1019.0,110.0,478.0,500.188,517.0,754.0,420.0,507.0,518.041,533.0,680.0,0.0,5.0,20.4617,44.0,404.0,118.0,131.316,11.23,14.0386,9.91414,10.0,10.0
+596,19.853,10.0,4.0,64.0,97.6959,128.0,1019.0,110.0,478.0,500.08,517.0,865.0,442.0,508.0,518.457,534.0,698.0,0.0,5.0,20.5777,44.0,404.0,119.0,131.96,10.3383,13.9616,9.90385,10.0,10.0
+597,19.887,10.0,4.0,60.0,95.8701,127.0,972.0,106.0,478.0,500.481,517.0,891.0,440.0,507.0,518.12,534.0,686.0,0.0,5.0,20.2761,44.0,406.0,119.0,132.455,11.338,13.9326,9.86867,10.0,10.0
+598,19.92,10.0,4.0,61.0,96.3174,126.0,1019.0,100.0,478.0,500.531,517.0,926.0,442.0,508.0,518.267,534.0,721.0,0.0,5.0,20.2163,44.0,414.0,119.0,132.939,11.0402,13.84,9.87853,10.0,10.0
+599,19.953,10.0,4.0,61.0,96.3499,127.0,983.0,136.0,478.0,500.503,517.0,903.0,416.0,508.0,518.246,534.0,673.0,0.0,5.0,20.2654,44.0,400.0,120.0,132.769,10.2723,13.9195,9.88156,10.0,10.0
+600,19.987,10.0,4.0,61.0,96.8133,127.0,1019.0,122.0,479.0,500.804,517.0,874.0,430.0,507.0,517.839,533.0,700.0,0.0,5.0,20.0538,43.0,391.0,119.0,133.024,11.3503,13.7199,9.79929,10.0,10.0
+601,20.02,10.0,4.0,62.0,97.051,127.0,1019.0,119.0,479.0,500.998,517.0,823.0,428.0,508.0,518.137,534.0,678.0,0.0,5.0,20.0156,44.0,393.0,120.0,134.198,10.7108,13.8518,9.87341,10.0,10.0
+602,20.053,10.0,4.0,61.0,97.1415,129.0,965.0,106.0,478.0,500.32,517.0,655.0,440.0,507.0,518.24,534.0,671.0,0.0,5.0,20.4722,44.0,407.0,119.0,132.178,11.1597,13.95,9.90693,10.0,10.0
+603,20.087,10.0,4.0,62.0,96.9574,128.0,982.0,95.0,478.0,500.278,517.0,654.0,415.0,508.0,518.309,534.0,730.0,0.0,5.0,20.3324,44.0,417.0,118.0,131.71,12.8994,13.8969,9.81686,10.0,10.0
+604,20.12,10.0,4.0,61.0,96.4491,127.0,981.0,118.0,479.0,500.361,517.0,650.0,432.0,508.0,518.522,534.0,693.0,0.0,5.0,20.2694,44.0,395.0,120.0,132.289,10.882,13.839,9.81099,10.0,10.0
+605,20.153,10.0,4.0,60.0,96.1515,127.0,989.0,118.0,479.0,500.572,517.0,690.0,429.0,507.0,518.066,533.0,662.0,0.0,5.0,20.0496,44.0,396.0,118.0,132.048,11.4904,13.67,9.75016,10.0,10.0
+606,20.187,10.0,4.0,62.0,96.8352,127.0,992.0,124.0,479.0,500.689,517.0,664.0,430.0,508.0,518.207,534.0,700.0,0.0,5.0,20.0686,44.0,390.0,120.0,133.305,10.3389,13.7024,9.85564,10.0,10.0
+607,20.22,10.0,4.0,61.0,96.1728,126.0,977.0,107.0,479.0,500.734,517.0,663.0,416.0,507.0,517.988,534.0,681.0,0.0,5.0,19.9505,44.0,407.0,119.0,132.901,11.09,13.8597,9.87207,10.0,10.0
+608,20.254,10.0,4.0,61.0,95.9205,126.0,977.0,156.0,478.0,500.557,517.0,665.0,440.0,507.0,518.084,534.0,692.0,0.0,4.0,20.2522,44.0,357.0,119.0,132.354,11.2897,13.8344,9.77694,10.0,10.0
+609,20.287,10.0,4.0,61.0,96.2977,127.0,994.0,110.0,479.0,500.791,517.0,670.0,432.0,508.0,518.274,534.0,685.0,0.0,5.0,20.0925,44.0,402.0,120.0,134.132,10.6651,13.9663,9.79826,10.0,10.0
+610,20.32,10.0,4.0,61.0,96.2503,127.0,1016.0,58.0,479.0,500.708,517.0,640.0,432.0,506.0,517.799,533.0,720.0,0.0,4.0,19.9906,43.0,457.0,119.0,132.933,12.1417,14.0702,9.80461,10.0,10.0
+611,20.354,10.0,4.0,60.0,95.9675,127.0,1019.0,118.0,479.0,500.782,517.0,655.0,422.0,507.0,517.893,534.0,683.0,0.0,4.0,19.9153,44.0,397.0,119.0,132.862,10.9613,13.8592,9.83979,10.0,10.0
+612,20.387,10.0,4.0,59.0,95.1004,127.0,970.0,118.0,479.0,500.8,517.0,656.0,434.0,507.0,517.885,533.0,696.0,0.0,4.0,19.9015,43.0,397.0,118.0,132.135,11.3621,13.7705,9.70225,10.0,10.0
+613,20.42,10.0,4.0,60.0,95.7282,127.0,983.0,115.0,478.0,500.632,517.0,654.0,430.0,507.0,517.856,534.0,677.0,0.0,5.0,20.0849,44.0,398.0,118.0,131.831,10.9609,13.688,9.68759,10.0,10.0
+614,20.454,10.0,4.0,60.0,95.3546,127.0,1019.0,72.0,479.0,500.647,517.0,645.0,424.0,507.0,518.006,533.0,685.0,0.0,4.0,20.0235,44.0,442.0,119.0,132.174,10.2798,13.721,9.76996,10.0,10.0
+615,20.487,10.0,4.0,60.0,96.1574,127.0,995.0,92.0,478.0,500.286,517.0,665.0,416.0,506.0,517.809,534.0,684.0,0.0,5.0,20.3518,44.0,422.0,116.0,130.957,11.0055,13.7244,9.8557,10.0,10.0
+616,20.521,10.0,4.0,61.0,96.5881,127.0,1019.0,114.0,478.0,500.255,517.0,650.0,444.0,508.0,518.302,534.0,702.0,0.0,5.0,20.5258,44.0,402.0,119.0,132.61,10.2848,13.9359,9.9841,10.0,10.0
+617,20.554,10.0,4.0,61.0,96.7633,129.0,982.0,116.0,478.0,500.073,516.0,664.0,423.0,507.0,518.025,534.0,686.0,0.0,5.0,20.3696,44.0,397.0,117.0,130.49,11.095,13.9835,9.92519,10.0,10.0
+618,20.587,10.0,4.0,61.0,96.8142,128.0,972.0,133.0,479.0,500.657,517.0,640.0,428.0,507.0,517.691,533.0,683.0,0.0,5.0,19.9377,43.0,383.0,116.0,131.521,11.6621,13.8906,9.81747,10.0,10.0
+619,20.621,10.0,4.0,61.0,96.5337,128.0,1019.0,91.0,479.0,500.73,517.0,673.0,442.0,507.0,518.08,533.0,678.0,0.0,4.0,20.0518,44.0,424.0,119.0,132.987,10.4533,13.8231,9.78516,10.0,10.0
+620,20.654,10.0,4.0,60.0,96.45,128.0,987.0,101.0,478.0,500.35,517.0,666.0,446.0,507.0,517.711,533.0,689.0,0.0,4.0,20.1153,44.0,413.0,116.0,130.455,11.182,13.8223,9.62501,10.0,10.0
+621,20.687,10.0,4.0,60.0,96.3224,127.0,981.0,111.0,479.0,500.505,517.0,670.0,430.0,508.0,518.166,534.0,696.0,0.0,5.0,20.1709,44.0,401.0,119.0,132.291,10.2519,13.7461,9.68603,10.0,10.0
+622,20.721,10.0,4.0,61.0,96.8413,129.0,969.0,58.0,478.0,500.527,517.0,665.0,433.0,507.0,517.994,534.0,681.0,0.0,5.0,20.1682,44.0,457.0,118.0,132.127,12.5023,13.7867,9.83912,10.0,10.0
+623,20.754,10.0,4.0,61.0,97.2309,128.0,959.0,102.0,479.0,500.816,517.0,675.0,416.0,507.0,518.046,533.0,679.0,0.0,5.0,20.0348,44.0,415.0,119.0,133.676,11.6878,13.7735,9.74813,10.0,10.0
+624,20.787,10.0,4.0,61.0,96.8963,128.0,959.0,128.0,479.0,500.892,517.0,678.0,436.0,507.0,518.009,533.0,681.0,0.0,4.0,19.854,43.0,388.0,120.0,133.659,10.3617,13.9122,9.69322,10.0,10.0
+625,20.821,10.0,4.0,61.0,96.5928,128.0,1019.0,128.0,479.0,501.042,517.0,665.0,412.0,506.0,517.558,533.0,680.0,0.0,4.0,19.8278,43.0,384.0,118.0,133.209,12.3883,13.7049,9.61116,10.0,10.0
+626,20.854,10.0,4.0,61.0,96.594,127.0,1019.0,106.0,479.0,500.913,517.0,666.0,432.0,508.0,518.033,533.0,678.0,0.0,5.0,19.9214,43.0,410.0,119.0,133.212,11.6946,13.7705,9.72432,10.0,10.0
+627,20.888,10.0,4.0,59.0,95.2259,127.0,1019.0,117.0,479.0,501.531,518.0,675.0,433.0,506.0,517.607,533.0,683.0,0.0,4.0,19.6135,43.0,396.0,120.0,135.192,11.4851,13.9159,9.6159,10.0,10.0
+628,20.921,10.0,4.0,60.0,95.6191,126.0,1019.0,118.0,479.0,500.962,517.0,644.0,440.0,507.0,517.929,533.0,688.0,0.0,4.0,19.823,44.0,395.0,119.0,133.184,12.8035,13.8828,9.72031,10.0,10.0
+629,20.954,10.0,4.0,60.0,95.2619,126.0,1019.0,109.0,479.0,500.928,517.0,673.0,413.0,507.0,518.128,534.0,708.0,0.0,4.0,19.9746,44.0,405.0,120.0,133.892,11.1385,13.7697,9.68785,10.0,10.0
+630,20.988,10.0,4.0,60.0,95.8345,126.0,970.0,95.0,480.0,501.233,517.0,650.0,428.0,506.0,517.612,533.0,682.0,0.0,4.0,19.5505,43.0,418.0,119.0,133.223,11.8382,13.5964,9.65314,10.0,10.0
+631,21.021,10.0,4.0,61.0,95.902,125.0,989.0,96.0,479.0,500.878,517.0,665.0,432.0,507.0,518.14,534.0,701.0,0.0,5.0,19.9409,44.0,418.0,120.0,133.701,10.5839,13.776,9.81092,10.0,10.0
+632,21.054,10.0,4.0,59.0,95.3015,127.0,980.0,127.0,479.0,501.158,517.0,654.0,430.0,507.0,517.671,533.0,677.0,0.0,4.0,19.6519,44.0,390.0,119.0,133.353,10.999,13.7526,9.69107,10.0,10.0
+633,21.088,10.0,4.0,59.0,94.9,127.0,974.0,95.0,479.0,501.282,517.0,649.0,432.0,507.0,517.773,533.0,686.0,0.0,4.0,19.629,43.0,418.0,120.0,134.268,11.0303,13.9093,9.66598,10.0,10.0
+634,21.121,10.0,4.0,59.0,95.2505,127.0,1019.0,80.0,479.0,500.956,517.0,678.0,436.0,507.0,517.965,534.0,679.0,0.0,4.0,19.8245,43.0,437.0,119.0,133.483,10.7511,13.7336,9.6825,10.0,10.0
+635,21.154,10.0,4.0,60.0,95.6832,127.0,1019.0,113.0,479.0,500.906,517.0,683.0,428.0,507.0,517.84,533.0,678.0,0.0,5.0,19.9189,43.0,406.0,118.0,132.94,12.0758,13.8321,9.66803,10.0,10.0
+636,21.188,10.0,4.0,61.0,96.6354,127.0,974.0,134.0,479.0,500.755,517.0,661.0,444.0,508.0,518.268,534.0,709.0,0.0,5.0,20.0089,44.0,382.0,120.0,132.92,10.8588,13.8126,9.68576,10.0,10.0
+637,21.221,10.0,4.0,60.0,95.9758,127.0,988.0,104.0,479.0,500.997,517.0,655.0,420.0,506.0,517.675,533.0,685.0,0.0,4.0,19.8655,44.0,409.0,118.0,132.683,10.834,13.6397,9.61963,10.0,10.0
+638,21.255,10.0,4.0,61.0,96.2568,127.0,969.0,102.0,479.0,501.484,518.0,674.0,432.0,507.0,517.944,533.0,679.0,0.0,4.0,19.6732,44.0,412.0,122.0,135.446,11.1536,13.7911,9.70397,10.0,10.0
+639,21.288,10.0,4.0,60.0,96.0377,127.0,978.0,118.0,480.0,501.415,518.0,688.0,442.0,507.0,517.986,533.0,684.0,0.0,4.0,19.6286,43.0,396.0,121.0,135.19,10.4519,13.7593,9.75305,10.0,10.0
+640,21.321,10.0,4.0,60.0,96.0917,127.0,980.0,139.0,479.0,501.357,518.0,665.0,444.0,507.0,517.659,533.0,720.0,0.0,4.0,19.5828,43.0,374.0,120.0,134.169,11.1482,13.7084,9.62406,10.0,10.0
+641,21.355,10.0,4.0,61.0,95.7147,125.0,1001.0,138.0,479.0,501.279,517.0,680.0,436.0,507.0,517.909,533.0,796.0,0.0,4.0,19.701,43.0,375.0,120.0,134.519,10.1523,13.6959,9.67207,10.0,10.0
+642,21.388,10.0,4.0,61.0,96.7509,128.0,979.0,100.0,479.0,500.986,517.0,661.0,436.0,507.0,517.699,533.0,736.0,0.0,4.0,19.7158,43.0,417.0,118.0,132.756,11.0346,13.8002,9.79604,10.0,10.0
+643,21.421,10.0,4.0,62.0,97.6454,129.0,1019.0,114.0,478.0,501.063,517.0,781.0,438.0,507.0,517.852,533.0,761.0,0.0,4.0,19.8995,44.0,402.0,119.0,133.199,10.9735,13.8222,9.76052,10.0,10.0
+644,21.455,10.0,4.0,61.0,97.2132,129.0,980.0,118.0,479.0,501.241,518.0,665.0,436.0,507.0,517.903,534.0,799.0,0.0,4.0,19.7481,43.0,398.0,120.0,134.26,10.2931,13.7346,9.80396,10.0,10.0
+645,21.488,10.0,4.0,61.0,96.7612,128.0,986.0,105.0,479.0,501.311,517.0,676.0,432.0,506.0,517.511,533.0,793.0,0.0,4.0,19.5444,43.0,408.0,118.0,132.722,10.9982,13.6119,9.58009,10.0,10.0
+646,21.522,10.0,4.0,61.0,96.8309,127.0,1019.0,95.0,479.0,501.374,518.0,690.0,428.0,507.0,517.897,533.0,776.0,0.0,4.0,19.7303,43.0,419.0,121.0,135.268,10.3666,13.7219,9.76171,10.0,10.0
+647,21.555,10.0,4.0,61.0,97.308,129.0,989.0,106.0,479.0,501.047,517.0,685.0,440.0,506.0,517.697,533.0,787.0,0.0,4.0,19.8519,43.0,410.0,119.0,132.827,11.0564,13.9122,9.90247,10.0,10.0
+648,21.588,10.0,4.0,64.0,98.6742,130.0,994.0,132.0,478.0,500.401,517.0,716.0,430.0,507.0,518.219,534.0,784.0,0.0,5.0,20.3085,44.0,388.0,119.0,132.11,10.9761,13.9516,9.83086,10.0,10.0
+649,21.622,10.0,4.0,63.0,98.0105,130.0,991.0,80.0,479.0,500.732,517.0,648.0,392.0,507.0,518.123,534.0,749.0,0.0,4.0,20.221,44.0,432.0,120.0,133.783,10.4376,14.1247,9.92926,10.0,10.0
+650,21.655,10.0,4.0,61.0,97.3978,129.0,965.0,96.0,479.0,501.119,517.0,710.0,432.0,507.0,517.781,533.0,792.0,0.0,4.0,19.9108,44.0,420.0,119.0,133.58,12.1422,14.0306,9.91687,10.0,10.0
+651,21.688,10.0,4.0,61.0,97.1748,128.0,988.0,106.0,479.0,501.311,518.0,655.0,420.0,507.0,518.126,534.0,697.0,0.0,4.0,19.809,43.0,410.0,122.0,134.953,11.1967,14.0088,9.91246,10.0,10.0
+652,21.722,10.0,4.0,62.0,97.3438,127.0,977.0,74.0,479.0,501.641,518.0,650.0,440.0,506.0,517.557,533.0,690.0,0.0,4.0,19.4595,43.0,449.0,120.0,134.818,11.1306,13.8642,9.79739,10.0,10.0
+653,21.755,10.0,4.0,61.0,96.6078,128.0,962.0,86.0,479.0,500.912,517.0,652.0,406.0,507.0,517.865,533.0,685.0,0.0,4.0,19.9957,44.0,428.0,120.0,133.38,12.1907,13.9634,9.67753,10.0,10.0
+654,21.788,10.0,4.0,62.0,97.3797,129.0,973.0,96.0,479.0,501.208,518.0,647.0,424.0,507.0,517.995,534.0,708.0,0.0,4.0,19.7705,43.0,422.0,121.0,134.475,10.6678,13.9261,9.69238,10.0,10.0
+655,21.822,10.0,4.0,61.0,96.7092,128.0,962.0,90.0,479.0,500.882,517.0,673.0,394.0,506.0,517.482,533.0,693.0,0.0,4.0,19.9343,44.0,427.0,116.0,131.885,11.5536,13.9566,9.80594,10.0,10.0
+656,21.855,10.0,4.0,62.0,97.3415,129.0,984.0,101.0,479.0,500.6,517.0,651.0,409.0,508.0,518.218,534.0,693.0,0.0,5.0,20.0278,44.0,415.0,120.0,132.756,10.3854,13.9116,9.90766,10.0,10.0
+657,21.889,10.0,4.0,60.0,96.1121,128.0,972.0,110.0,479.0,500.664,517.0,649.0,423.0,507.0,517.867,533.0,742.0,0.0,4.0,19.9453,44.0,402.0,119.0,132.535,11.4088,13.7121,9.70306,10.0,10.0
+658,21.922,10.0,4.0,61.0,97.032,130.0,985.0,75.0,478.0,500.767,517.0,656.0,428.0,507.0,518.055,533.0,685.0,0.0,4.0,20.0909,44.0,442.0,120.0,133.74,11.0396,13.8946,9.75285,10.0,10.0
+659,21.955,10.0,4.0,61.0,97.3511,129.0,1019.0,105.0,479.0,500.942,517.0,660.0,422.0,507.0,518.323,534.0,714.0,0.0,4.0,19.9878,44.0,412.0,122.0,134.759,10.9313,13.8113,9.77118,10.0,10.0
+660,21.989,10.0,4.0,62.0,97.4501,128.0,971.0,118.0,478.0,500.643,517.0,689.0,433.0,507.0,517.958,534.0,685.0,0.0,4.0,20.0093,44.0,401.0,119.0,132.341,12.3008,13.7564,9.74066,10.0,10.0
+661,22.022,10.0,4.0,64.0,98.6375,129.0,1019.0,107.0,478.0,500.674,517.0,652.0,424.0,508.0,518.339,534.0,698.0,0.0,5.0,20.2035,44.0,406.0,120.0,133.595,10.8865,13.914,9.8392,10.0,10.0
+662,22.055,10.0,4.0,62.0,97.6055,130.0,1019.0,63.0,479.0,500.648,517.0,664.0,408.0,507.0,518.2,534.0,692.0,0.0,5.0,20.1622,44.0,449.0,120.0,132.596,11.1226,13.8334,9.86578,10.0,10.0
+663,22.089,10.0,4.0,61.0,96.6989,127.0,977.0,63.0,479.0,501.198,517.0,651.0,424.0,508.0,518.255,534.0,689.0,0.0,4.0,19.8854,44.0,457.0,121.0,134.113,10.9743,13.8275,9.84256,10.0,10.0
+664,22.122,10.0,4.0,61.0,96.3254,128.0,995.0,124.0,479.0,501.267,518.0,663.0,429.0,508.0,518.186,534.0,701.0,0.0,4.0,19.9432,44.0,392.0,122.0,135.479,10.1548,13.7479,9.68775,10.0,10.0
+665,22.155,10.0,4.0,60.0,96.4383,128.0,1019.0,114.0,479.0,501.402,518.0,656.0,430.0,507.0,517.733,533.0,780.0,0.0,4.0,19.744,43.0,403.0,120.0,134.57,10.864,13.7781,9.68713,10.0,10.0
+666,22.189,10.0,4.0,61.0,97.0222,128.0,1019.0,102.0,479.0,501.42,518.0,663.0,436.0,507.0,518.091,533.0,750.0,0.0,4.0,19.7636,44.0,414.0,122.0,135.926,10.1759,13.8072,9.78008,10.0,10.0
+667,22.222,10.0,4.0,61.0,96.7314,128.0,1019.0,122.0,479.0,501.227,517.0,662.0,424.0,507.0,518.137,534.0,689.0,0.0,4.0,19.8293,43.0,393.0,121.0,134.558,11.4085,13.7336,9.82554,10.0,10.0
+668,22.256,10.0,4.0,63.0,97.9755,129.0,1019.0,128.0,478.0,500.781,517.0,693.0,436.0,508.0,518.444,534.0,724.0,0.0,5.0,20.1405,44.0,387.0,121.0,134.176,11.379,13.648,9.78332,10.0,10.0
+669,22.289,10.0,4.0,62.0,97.5535,128.0,1003.0,118.0,479.0,500.686,517.0,674.0,429.0,508.0,518.638,534.0,696.0,0.0,5.0,20.1687,44.0,396.0,122.0,133.582,10.2542,13.7143,9.80503,10.0,10.0
+670,22.322,10.0,4.0,61.0,97.4718,129.0,1019.0,81.0,479.0,500.744,517.0,661.0,434.0,508.0,518.357,534.0,678.0,0.0,4.0,20.0976,44.0,435.0,120.0,133.649,11.0091,13.7507,9.82662,10.0,10.0
+671,22.356,10.0,4.0,61.0,97.0301,128.0,1019.0,100.0,479.0,500.965,517.0,663.0,436.0,508.0,518.458,534.0,692.0,0.0,5.0,20.1297,44.0,417.0,123.0,135.473,10.4216,13.6952,9.78738,10.0,10.0
+672,22.389,10.0,4.0,60.0,95.8515,127.0,1019.0,108.0,479.0,501.508,517.0,675.0,440.0,507.0,517.942,534.0,688.0,0.0,4.0,19.6182,43.0,408.0,122.0,135.003,10.8543,13.7435,9.91666,10.0,10.0
+673,22.422,10.0,4.0,61.0,96.5778,128.0,1000.0,114.0,480.0,501.369,517.0,641.0,409.0,507.0,517.887,533.0,686.0,0.0,4.0,19.5052,43.0,400.0,121.0,134.165,11.3963,13.5408,9.80148,10.0,10.0
+674,22.456,10.0,4.0,61.0,96.8247,128.0,980.0,96.0,479.0,501.166,517.0,648.0,434.0,507.0,518.251,534.0,684.0,0.0,4.0,19.7993,43.0,420.0,122.0,134.712,10.639,13.547,9.7382,10.0,10.0
+675,22.489,10.0,4.0,61.0,96.8984,128.0,964.0,102.0,479.0,500.925,517.0,654.0,404.0,507.0,517.772,533.0,678.0,0.0,4.0,19.7966,43.0,415.0,119.0,133.23,12.4457,13.7734,9.69485,10.0,10.0
+676,22.523,10.0,4.0,62.0,97.6975,129.0,977.0,128.0,479.0,500.905,517.0,675.0,430.0,508.0,518.394,534.0,683.0,0.0,4.0,20.0452,44.0,389.0,122.0,134.42,11.089,13.8471,9.69971,10.0,10.0
+677,22.556,10.0,4.0,61.0,96.9699,128.0,988.0,124.0,479.0,500.889,517.0,669.0,422.0,507.0,518.031,534.0,688.0,0.0,4.0,19.9047,43.0,390.0,120.0,133.489,11.4373,13.6991,9.81483,10.0,10.0
+678,22.589,10.0,4.0,61.0,96.4682,128.0,971.0,86.0,479.0,501.074,517.0,663.0,423.0,507.0,518.006,534.0,679.0,0.0,4.0,19.9287,44.0,430.0,120.0,134.043,12.4063,13.9197,9.77126,10.0,10.0
+679,22.623,10.0,4.0,61.0,96.6211,128.0,979.0,106.0,479.0,500.997,517.0,659.0,436.0,508.0,518.462,534.0,696.0,0.0,5.0,20.0203,44.0,410.0,122.0,134.816,10.8639,13.961,9.75957,10.0,10.0
+680,22.656,10.0,4.0,61.0,96.8689,128.0,1009.0,106.0,478.0,500.522,517.0,660.0,430.0,508.0,518.197,534.0,677.0,0.0,5.0,20.0541,44.0,408.0,119.0,132.454,11.3364,13.8036,9.71736,10.0,10.0
+681,22.689,10.0,4.0,61.0,96.9267,128.0,997.0,100.0,478.0,500.384,517.0,655.0,434.0,508.0,518.69,534.0,686.0,0.0,5.0,20.5149,44.0,413.0,121.0,133.264,10.3053,13.8528,9.90465,10.0,10.0
+682,22.723,10.0,4.0,60.0,96.5466,128.0,1019.0,90.0,478.0,500.628,517.0,657.0,414.0,507.0,518.248,534.0,687.0,0.0,5.0,20.1206,44.0,428.0,120.0,133.197,12.3543,13.8754,9.87251,10.0,10.0
+683,22.756,10.0,4.0,62.0,97.8004,130.0,990.0,123.0,478.0,500.104,517.0,640.0,430.0,508.0,518.779,535.0,690.0,0.0,5.0,20.7122,44.0,393.0,120.0,132.872,12.1368,13.8575,9.81131,10.0,10.0
+684,22.789,10.0,4.0,61.0,97.4636,129.0,968.0,129.0,478.0,500.257,517.0,642.0,436.0,508.0,518.853,535.0,718.0,0.0,5.0,20.5947,44.0,386.0,121.0,133.405,10.7625,13.8221,9.96028,10.0,10.0
+685,22.823,10.0,4.0,62.0,97.8842,129.0,1005.0,122.0,478.0,500.214,517.0,666.0,432.0,508.0,518.524,535.0,684.0,0.0,5.0,20.4545,44.0,392.0,120.0,132.129,11.9859,13.7653,9.80705,10.0,10.0
+686,22.856,10.0,4.0,63.0,98.1205,129.0,973.0,85.0,478.0,500.016,516.0,662.0,420.0,508.0,518.782,534.0,689.0,0.0,5.0,20.632,44.0,431.0,120.0,132.607,11.1904,13.782,9.78856,10.0,10.0
+687,22.89,10.0,4.0,61.0,97.2667,128.0,979.0,118.0,478.0,499.916,517.0,679.0,434.0,507.0,518.545,534.0,680.0,0.0,5.0,20.6988,44.0,398.0,119.0,131.742,11.0096,13.9418,9.81341,10.0,10.0
+688,22.923,10.0,4.0,62.0,98.3912,130.0,987.0,125.0,478.0,499.882,516.0,647.0,430.0,508.0,518.858,535.0,693.0,0.0,5.0,20.8167,44.0,390.0,120.0,132.65,11.13,13.8423,9.89791,10.0,10.0
+689,22.956,10.0,4.0,61.0,97.5356,129.0,999.0,106.0,478.0,499.954,516.0,679.0,430.0,508.0,518.924,535.0,710.0,0.0,5.0,20.727,44.0,406.0,120.0,132.838,10.5942,13.8231,9.91035,10.0,10.0
+690,22.99,10.0,4.0,62.0,98.0881,129.0,984.0,106.0,478.0,499.761,516.0,766.0,430.0,508.0,518.52,535.0,713.0,0.0,5.0,20.8215,44.0,412.0,119.0,131.443,11.1832,13.8216,9.86035,10.0,10.0
+691,23.023,10.0,4.0,63.0,98.5111,130.0,967.0,118.0,478.0,499.805,516.0,648.0,428.0,508.0,518.931,535.0,708.0,0.0,5.0,20.6904,44.0,396.0,120.0,131.657,10.479,13.8131,9.91247,10.0,10.0
+692,23.056,10.0,4.0,62.0,97.7413,129.0,982.0,119.0,478.0,499.517,516.0,674.0,437.0,508.0,518.562,534.0,688.0,0.0,5.0,20.7359,44.0,397.0,118.0,130.769,12.8117,13.9352,9.91899,10.0,10.0
+693,23.09,10.0,4.0,62.0,98.2432,130.0,973.0,92.0,478.0,499.635,516.0,675.0,412.0,508.0,518.739,534.0,712.0,0.0,5.0,20.8195,44.0,422.0,119.0,131.056,11.3044,13.9163,9.92651,10.0,10.0
+694,23.123,10.0,4.0,61.0,98.0082,130.0,972.0,88.0,478.0,500.137,517.0,650.0,420.0,508.0,518.663,535.0,683.0,0.0,5.0,20.6048,44.0,432.0,120.0,132.563,10.6833,13.9294,9.97765,10.0,10.0
+695,23.156,10.0,4.0,62.0,98.6042,131.0,974.0,100.0,478.0,500.24,517.0,683.0,424.0,507.0,518.267,534.0,714.0,0.0,5.0,20.3772,44.0,415.0,119.0,132.332,11.4856,13.8457,9.78037,10.0,10.0
+696,23.19,10.0,4.0,63.0,98.3135,130.0,967.0,124.0,478.0,499.827,516.0,644.0,430.0,508.0,518.742,535.0,686.0,0.0,5.0,20.6479,44.0,395.0,119.0,131.663,10.7885,13.862,9.80515,10.0,10.0
+697,23.223,10.0,4.0,60.0,96.6893,128.0,994.0,64.0,478.0,499.958,517.0,645.0,428.0,507.0,518.221,534.0,685.0,0.0,5.0,20.6664,44.0,451.0,118.0,131.385,11.1368,13.9801,9.8074,10.0,10.0
+698,23.257,10.0,4.0,63.0,98.166,128.0,1019.0,106.0,480.0,501.762,518.0,643.0,434.0,507.0,517.981,533.0,692.0,0.0,4.0,19.2184,43.0,411.0,123.0,135.952,11.1931,14.0617,9.8547,10.0,10.0
+699,23.29,10.0,4.0,70.0,155.896,346.0,1019.0,118.0,490.0,532.812,597.0,746.0,352.0,477.0,505.463,526.0,675.0,0.0,5.0,39.182,94.0,397.0,250.0,205.236,71.2491,38.7687,18.5994,10.0,10.0
+700,23.323,10.0,4.0,83.0,210.01,499.0,1019.0,128.0,519.0,562.334,615.0,748.0,338.0,467.0,492.597,514.0,632.0,0.0,16.0,58.3619,111.0,389.0,289.0,277.891,76.4838,40.7241,20.5466,10.0,10.0
+701,23.357,10.0,4.0,83.0,209.828,499.0,1019.0,102.0,519.0,562.963,615.0,755.0,334.0,467.0,492.688,514.0,636.0,0.0,17.0,59.0825,112.0,410.0,289.0,277.597,18.3645,17.1308,12.4257,10.0,10.0
+702,23.39,10.0,4.0,83.0,209.439,498.0,1019.0,95.0,519.0,562.884,616.0,737.0,332.0,466.0,492.512,514.0,646.0,0.0,16.0,58.9417,112.0,421.0,289.0,277.649,16.4664,17.2512,12.5415,10.0,10.0
+703,23.423,10.0,4.0,83.0,209.673,498.0,1019.0,128.0,519.0,563.032,615.0,763.0,342.0,467.0,492.833,514.0,641.0,0.0,16.0,59.0016,112.0,386.0,289.0,277.718,23.6771,17.6241,12.674,10.0,10.0
+704,23.457,10.0,4.0,84.0,209.996,499.0,1019.0,118.0,519.0,562.984,616.0,789.0,316.0,467.0,492.65,514.0,639.0,0.0,16.0,58.9359,112.0,395.0,289.0,277.52,17.3165,17.2537,12.368,10.0,10.0
+705,23.49,10.0,4.0,83.0,209.627,498.0,1019.0,115.0,518.0,562.517,615.0,749.0,352.0,467.0,492.392,514.0,643.0,0.0,16.0,58.7312,112.0,398.0,289.0,278.05,18.8097,17.4245,12.5512,10.0,10.0
+706,23.524,10.0,4.0,84.0,210.187,500.0,1019.0,91.0,519.0,562.484,615.0,771.0,374.0,467.0,492.838,514.0,631.0,0.0,16.0,58.3079,111.0,424.0,289.0,277.734,15.6704,17.1401,12.5598,10.0,10.0
+707,23.557,10.0,4.0,82.0,208.043,495.0,1019.0,128.0,519.0,562.769,615.0,778.0,352.0,467.0,492.548,514.0,654.0,0.0,16.0,58.8528,111.0,391.0,289.0,277.711,18.7479,17.2318,12.586,10.0,10.0
+708,23.59,10.0,4.0,83.0,208.437,495.0,1019.0,124.0,519.0,562.859,616.0,774.0,298.0,466.0,492.368,514.0,643.0,0.0,16.0,58.9095,112.0,392.0,289.0,277.519,18.9508,17.1632,12.5533,10.0,10.0
+709,23.624,10.0,4.0,83.0,209.56,498.0,1019.0,86.0,519.0,563.012,616.0,759.0,358.0,467.0,492.709,514.0,646.0,0.0,16.0,59.0843,112.0,427.0,289.0,277.622,14.8483,17.3154,12.5276,10.0,10.0
+710,23.657,10.0,4.0,82.0,208.717,497.0,1019.0,84.0,519.0,562.855,615.0,785.0,336.0,467.0,492.257,514.0,661.0,0.0,16.0,58.908,111.0,433.0,289.0,278.159,18.3651,17.495,12.6479,10.0,10.0
+711,23.69,10.0,4.0,83.0,210.075,499.0,1019.0,100.0,519.0,562.892,616.0,793.0,337.0,467.0,492.656,514.0,631.0,0.0,16.0,59.03,112.0,416.0,289.0,277.508,16.6067,17.4635,12.4816,10.0,10.0
+712,23.724,10.0,4.0,83.0,209.76,499.0,1019.0,120.0,519.0,562.387,614.0,803.0,339.0,467.0,492.809,514.0,644.0,0.0,16.0,58.3528,111.0,395.0,289.0,277.881,16.1294,17.1537,12.4368,10.0,10.0
+713,23.757,10.0,4.0,82.0,209.052,497.0,1019.0,128.0,519.0,562.64,615.0,756.0,343.0,468.0,493.019,514.0,664.0,0.0,16.0,58.5984,111.0,385.0,288.0,277.517,16.9428,17.0295,12.3423,10.0,10.0
+714,23.79,10.0,4.0,83.0,209.543,498.0,1019.0,70.0,519.0,563.237,616.0,797.0,344.0,467.0,492.813,514.0,666.0,0.0,16.0,59.078,112.0,443.0,289.0,277.477,16.7934,17.1429,12.3077,10.0,10.0
+715,23.824,10.0,4.0,82.0,208.697,498.0,1019.0,90.0,519.0,563.168,615.0,776.0,336.0,467.0,492.165,513.0,637.0,0.0,17.0,59.3231,112.0,433.0,289.0,278.367,17.1106,17.2255,12.422,10.0,10.0
+716,23.857,10.0,4.0,82.0,209.192,499.0,1019.0,108.0,520.0,563.391,616.0,795.0,338.0,466.0,492.274,514.0,657.0,0.0,16.0,59.3303,113.0,407.0,289.0,277.951,16.0222,17.3318,12.4936,10.0,10.0
+717,23.891,10.0,4.0,82.0,207.813,496.0,1019.0,124.0,520.0,563.116,616.0,759.0,358.0,466.0,492.04,514.0,649.0,0.0,17.0,59.3094,112.0,392.0,289.0,278.527,23.8055,17.1707,12.5637,10.0,10.0
+718,23.924,10.0,4.0,82.0,207.936,495.0,1019.0,83.0,519.0,563.047,616.0,758.0,361.0,467.0,492.686,514.0,631.0,0.0,16.0,58.9212,112.0,432.0,289.0,277.795,20.1512,17.2195,12.5463,10.0,10.0
+719,23.957,10.0,4.0,82.0,208.638,498.0,1019.0,134.0,519.0,562.653,615.0,764.0,298.0,468.0,492.975,514.0,650.0,0.0,16.0,58.6052,112.0,384.0,288.0,277.326,14.848,17.1124,12.4941,10.0,10.0
+720,23.991,10.0,4.0,83.0,209.33,498.0,1019.0,115.0,519.0,562.739,614.0,766.0,358.0,467.0,492.782,514.0,640.0,0.0,16.0,58.6077,111.0,401.0,289.0,277.737,16.7788,17.0414,12.402,10.0,10.0
+721,24.024,10.0,4.0,83.0,209.473,499.0,1019.0,99.0,519.0,562.95,616.0,764.0,357.0,467.0,492.877,514.0,636.0,0.0,16.0,59.0003,112.0,414.0,288.0,277.218,15.5871,17.1391,12.6194,10.0,10.0
+722,24.057,10.0,4.0,83.0,209.245,499.0,1019.0,98.0,519.0,562.782,615.0,780.0,365.0,467.0,492.874,514.0,632.0,0.0,16.0,58.6481,112.0,420.0,289.0,277.117,15.929,17.1444,12.5926,10.0,10.0
+723,24.091,10.0,4.0,83.0,209.991,499.0,1019.0,92.0,519.0,563.077,616.0,773.0,340.0,468.0,493.017,514.0,658.0,0.0,16.0,59.086,112.0,424.0,288.0,276.97,16.4556,16.9281,12.3946,10.0,10.0
+724,24.124,10.0,4.0,82.0,209.572,500.0,1019.0,124.0,520.0,563.37,616.0,771.0,374.0,467.0,493.025,514.0,648.0,0.0,17.0,59.1054,113.0,392.0,288.0,277.409,14.594,17.2256,12.5177,10.0,10.0
+725,24.157,10.0,4.0,82.0,208.871,498.0,1019.0,118.0,519.0,562.824,615.0,742.0,344.0,466.0,492.416,514.0,718.0,0.0,16.0,58.957,112.0,395.0,289.0,278.309,17.6457,17.2776,12.5664,10.0,10.0
+726,24.191,10.0,4.0,83.0,209.388,499.0,1019.0,90.0,519.0,562.912,615.0,759.0,349.0,467.0,493.052,514.0,736.0,0.0,16.0,58.7914,112.0,426.0,288.0,277.241,16.2713,17.1935,12.5522,10.0,10.0
+727,24.224,10.0,4.0,83.0,209.492,499.0,1019.0,95.0,519.0,562.707,616.0,751.0,372.0,467.0,493.224,514.0,766.0,0.0,16.0,58.7413,112.0,423.0,288.0,276.934,15.7942,17.1666,12.4354,10.0,10.0
+728,24.258,10.0,4.0,82.0,208.704,497.0,1019.0,114.0,518.0,562.349,615.0,747.0,362.0,467.0,493.113,514.0,832.0,0.0,16.0,58.3067,111.0,400.0,288.0,277.249,18.6719,17.249,12.2807,10.0,10.0
+729,24.291,10.0,4.0,82.0,208.876,499.0,1019.0,122.0,519.0,562.597,615.0,755.0,350.0,467.0,493.126,514.0,794.0,0.0,16.0,58.598,112.0,391.0,288.0,277.241,16.3786,17.0875,12.5128,10.0,10.0
+730,24.324,10.0,4.0,82.0,208.333,498.0,1019.0,99.0,519.0,562.664,615.0,746.0,366.0,467.0,492.706,514.0,809.0,0.0,16.0,58.7041,112.0,417.0,289.0,277.748,17.8788,17.306,12.5928,10.0,10.0
+731,24.358,10.0,4.0,82.0,209.122,499.0,1019.0,114.0,519.0,562.514,615.0,749.0,352.0,467.0,492.888,514.0,821.0,0.0,16.0,58.6358,112.0,406.0,289.0,277.142,14.9772,17.1218,12.5701,10.0,10.0
+732,24.391,10.0,4.0,82.0,207.812,496.0,1019.0,124.0,519.0,562.429,615.0,725.0,367.0,467.0,492.771,514.0,812.0,0.0,16.0,58.5181,112.0,396.0,289.0,277.308,17.9547,17.2219,12.4801,10.0,10.0
+733,24.424,10.0,4.0,83.0,208.639,498.0,1019.0,123.0,519.0,562.564,615.0,751.0,337.0,468.0,493.391,515.0,789.0,0.0,16.0,58.3686,111.0,391.0,288.0,276.909,16.9023,16.8773,12.4003,10.0,10.0
+734,24.458,10.0,4.0,82.0,208.317,498.0,1019.0,105.0,519.0,562.748,615.0,756.0,339.0,467.0,493.385,515.0,683.0,0.0,15.0,58.4548,111.0,414.0,288.0,277.206,15.7733,17.2339,12.4939,10.0,10.0
+735,24.491,10.0,4.0,82.0,208.701,499.0,1019.0,84.0,519.0,562.854,615.0,781.0,343.0,468.0,493.257,515.0,720.0,0.0,16.0,58.822,112.0,430.0,288.0,277.108,18.9099,17.3938,12.6283,10.0,10.0
+736,24.525,10.0,4.0,83.0,209.342,500.0,1019.0,102.0,520.0,563.483,616.0,747.0,351.0,468.0,493.592,515.0,752.0,0.0,16.0,59.0464,112.0,413.0,288.0,276.72,16.8258,17.3437,12.5988,10.0,10.0
+737,24.558,10.0,4.0,83.0,208.155,496.0,1019.0,114.0,520.0,562.983,616.0,759.0,374.0,467.0,492.866,514.0,654.0,0.0,16.0,58.9336,112.0,401.0,288.0,277.347,18.8749,17.2012,12.6064,10.0,10.0
+738,24.591,10.0,4.0,83.0,208.997,499.0,1019.0,86.0,519.0,562.988,616.0,755.0,376.0,467.0,493.128,514.0,660.0,0.0,16.0,58.7129,112.0,431.0,288.0,277.142,17.2396,17.1369,12.5129,10.0,10.0
+739,24.625,10.0,4.0,83.0,208.878,499.0,1019.0,88.0,519.0,562.932,616.0,770.0,344.0,467.0,493.216,515.0,656.0,0.0,16.0,58.8252,112.0,428.0,288.0,276.982,15.0964,17.2402,12.38,10.0,10.0
+740,24.658,10.0,4.0,82.0,207.868,497.0,1019.0,108.0,519.0,562.841,615.0,751.0,377.0,467.0,492.756,514.0,645.0,0.0,16.0,58.875,112.0,407.0,289.0,277.651,18.4757,17.4229,12.4415,10.0,10.0
+741,24.691,10.0,4.0,82.0,208.199,498.0,1019.0,109.0,519.0,562.776,615.0,758.0,362.0,468.0,493.262,514.0,650.0,0.0,16.0,58.8013,112.0,405.0,288.0,276.855,16.0502,17.0496,12.3755,10.0,10.0
+742,24.725,10.0,4.0,83.0,208.283,497.0,1019.0,82.0,519.0,562.943,616.0,760.0,368.0,467.0,492.794,514.0,665.0,0.0,16.0,58.8642,112.0,433.0,289.0,277.416,18.4927,17.2108,12.4442,10.0,10.0
+743,24.758,10.0,4.0,83.0,209.036,499.0,1019.0,115.0,520.0,563.632,616.0,746.0,342.0,466.0,492.685,514.0,654.0,0.0,17.0,59.6393,113.0,399.0,289.0,278.009,16.0521,17.1963,12.3767,10.0,10.0
+744,24.791,10.0,4.0,82.0,208.27,499.0,1019.0,124.0,520.0,563.552,616.0,748.0,366.0,467.0,492.844,514.0,650.0,0.0,16.0,59.385,112.0,390.0,288.0,277.578,14.9856,17.2361,12.6327,10.0,10.0
+745,24.825,10.0,4.0,82.0,207.917,498.0,1019.0,124.0,520.0,563.3,616.0,733.0,376.0,466.0,492.36,514.0,655.0,0.0,17.0,59.5735,113.0,389.0,289.0,278.204,16.8231,17.1978,12.4745,10.0,10.0
+746,24.858,10.0,4.0,82.0,208.338,498.0,1019.0,102.0,520.0,563.604,616.0,767.0,376.0,466.0,492.563,514.0,660.0,0.0,17.0,59.6286,113.0,414.0,289.0,277.637,15.3513,17.2346,12.5553,10.0,10.0
+747,24.892,10.0,4.0,80.0,206.225,496.0,1019.0,114.0,520.0,563.597,616.0,745.0,373.0,466.0,492.219,514.0,645.0,0.0,17.0,59.7699,113.0,403.0,289.0,278.546,16.8346,17.208,12.5153,10.0,10.0
+748,24.925,10.0,4.0,82.0,207.89,498.0,1019.0,119.0,519.0,563.547,616.0,734.0,364.0,466.0,492.435,514.0,682.0,0.0,17.0,59.5573,113.0,396.0,289.0,277.474,16.3625,17.0042,12.2906,10.0,10.0
+749,24.958,10.0,4.0,81.0,206.826,497.0,1019.0,112.0,520.0,563.498,616.0,773.0,372.0,466.0,492.595,514.0,649.0,0.0,17.0,59.7253,113.0,401.0,289.0,277.642,15.5295,17.043,12.3798,10.0,10.0
+750,24.992,10.0,4.0,81.0,207.015,496.0,1019.0,96.0,519.0,563.258,616.0,737.0,350.0,466.0,492.185,514.0,653.0,0.0,16.0,59.3258,113.0,420.0,289.0,278.306,16.6544,16.9562,12.5269,10.0,10.0
+751,25.025,10.0,4.0,81.0,206.594,495.0,1019.0,156.0,520.0,563.312,616.0,740.0,330.0,467.0,492.782,514.0,652.0,0.0,16.0,59.3252,113.0,360.0,288.0,277.651,15.244,16.9656,12.5647,10.0,10.0
+752,25.058,10.0,4.0,80.0,205.583,494.0,1019.0,128.0,519.0,563.249,616.0,729.0,348.0,466.0,492.052,513.0,744.0,0.0,16.0,59.4145,113.0,388.0,289.0,278.62,17.2119,17.1053,12.522,10.0,10.0
+753,25.092,10.0,4.0,80.0,205.351,493.0,1019.0,106.0,519.0,563.333,616.0,757.0,367.0,466.0,492.09,513.0,781.0,0.0,17.0,59.6547,113.0,408.0,289.0,278.502,20.3799,17.1011,12.4377,10.0,10.0
+754,25.125,10.0,4.0,80.0,205.598,495.0,1019.0,90.0,520.0,563.531,616.0,740.0,354.0,466.0,492.265,514.0,784.0,0.0,16.0,59.4871,113.0,428.0,289.0,278.222,15.3152,17.274,12.4806,10.0,10.0
+755,25.158,10.0,4.0,81.0,206.364,495.0,1019.0,122.0,519.0,562.852,616.0,760.0,352.0,466.0,492.018,513.0,641.0,0.0,16.0,59.2318,113.0,392.0,289.0,278.659,17.3948,17.1298,12.3845,10.0,10.0
+756,25.192,10.0,4.0,82.0,206.827,496.0,1019.0,128.0,519.0,563.272,617.0,744.0,362.0,466.0,492.676,514.0,651.0,0.0,16.0,59.326,114.0,388.0,289.0,277.647,14.8308,17.0931,12.459,10.0,10.0
+757,25.225,10.0,4.0,81.0,205.028,493.0,1019.0,118.0,520.0,563.253,616.0,763.0,362.0,466.0,492.08,513.0,664.0,0.0,17.0,59.4725,113.0,398.0,289.0,278.708,20.2067,16.9712,12.5082,10.0,10.0
+758,25.259,10.0,4.0,80.0,205.466,494.0,1019.0,96.0,519.0,563.252,616.0,750.0,372.0,466.0,492.506,514.0,646.0,0.0,17.0,59.4307,113.0,419.0,289.0,277.776,16.765,17.1707,12.6107,10.0,10.0
+759,25.292,10.0,4.0,80.0,205.323,494.0,1019.0,92.0,520.0,563.789,617.0,749.0,362.0,466.0,492.289,513.0,652.0,0.0,17.0,59.8813,114.0,425.0,289.0,278.052,15.9937,17.2316,12.4948,10.0,10.0
+760,25.325,10.0,4.0,81.0,205.9,494.0,1019.0,114.0,519.0,563.657,617.0,736.0,370.0,466.0,492.046,514.0,651.0,0.0,17.0,59.969,114.0,401.0,289.0,278.049,20.0906,17.2677,12.5044,10.0,10.0
+761,25.359,10.0,4.0,80.0,205.78,496.0,1019.0,132.0,519.0,563.348,616.0,750.0,362.0,466.0,492.672,514.0,641.0,0.0,16.0,59.4808,113.0,384.0,289.0,277.445,17.3982,17.3053,12.4945,10.0,10.0
+762,25.392,10.0,4.0,80.0,205.651,495.0,1019.0,106.0,519.0,563.222,616.0,757.0,360.0,466.0,492.632,514.0,658.0,0.0,16.0,59.2727,113.0,411.0,289.0,277.902,16.7329,17.166,12.3859,10.0,10.0
+763,25.425,10.0,4.0,81.0,206.418,496.0,1019.0,106.0,518.0,562.961,616.0,749.0,353.0,467.0,493.144,514.0,649.0,0.0,16.0,59.0921,113.0,407.0,288.0,276.818,16.9807,17.2548,12.3655,10.0,10.0
+764,25.459,10.0,4.0,81.0,206.784,497.0,1019.0,133.0,519.0,563.233,616.0,731.0,372.0,467.0,493.157,514.0,639.0,0.0,16.0,59.1474,113.0,383.0,288.0,277.08,15.2244,17.1353,12.5093,10.0,10.0
+765,25.492,10.0,4.0,81.0,206.147,494.0,1019.0,111.0,519.0,563.369,617.0,766.0,362.0,467.0,493.031,514.0,633.0,0.0,16.0,59.2987,114.0,402.0,288.0,277.233,17.9955,17.1346,12.5586,10.0,10.0
+766,25.526,10.0,4.0,82.0,206.843,496.0,1019.0,96.0,519.0,563.086,616.0,760.0,360.0,467.0,493.151,514.0,639.0,0.0,16.0,59.015,113.0,420.0,288.0,277.317,15.6233,17.3144,12.5346,10.0,10.0
+767,25.559,10.0,4.0,82.0,205.742,493.0,1019.0,114.0,520.0,563.059,616.0,751.0,374.0,466.0,492.408,514.0,632.0,0.0,17.0,59.2176,112.0,402.0,289.0,278.268,20.1751,17.1414,12.5596,10.0,10.0
+768,25.592,10.0,4.0,83.0,206.158,493.0,1019.0,116.0,519.0,563.188,616.0,724.0,368.0,466.0,492.813,514.0,639.0,0.0,16.0,59.1597,113.0,399.0,288.0,277.325,18.3976,17.1681,12.5992,10.0,10.0
+769,25.626,10.0,4.0,82.0,205.93,494.0,1019.0,122.0,519.0,563.033,616.0,743.0,378.0,467.0,493.002,514.0,621.0,0.0,16.0,59.0918,113.0,391.0,288.0,277.316,15.042,17.1264,12.6919,10.0,10.0
+770,25.659,10.0,4.0,82.0,205.779,494.0,1019.0,88.0,519.0,562.916,616.0,757.0,376.0,466.0,492.481,514.0,648.0,0.0,16.0,59.0883,113.0,427.0,289.0,277.797,16.7074,17.2307,12.5425,10.0,10.0
+771,25.692,10.0,4.0,82.0,206.055,494.0,1019.0,114.0,519.0,562.971,616.0,760.0,372.0,467.0,492.857,514.0,646.0,0.0,16.0,59.1595,113.0,402.0,288.0,277.352,14.8692,17.1668,12.443,10.0,10.0
+772,25.726,10.0,4.0,81.0,204.835,492.0,1019.0,118.0,519.0,562.698,616.0,750.0,370.0,466.0,492.76,514.0,800.0,0.0,16.0,58.8019,112.0,396.0,289.0,277.906,18.9789,17.2074,12.3943,10.0,10.0
+773,25.759,10.0,4.0,81.0,205.601,493.0,1019.0,125.0,519.0,562.876,616.0,746.0,352.0,467.0,492.961,514.0,821.0,0.0,16.0,59.0098,113.0,389.0,288.0,277.242,17.1778,17.2072,12.4149,10.0,10.0
+774,25.792,10.0,4.0,81.0,204.903,493.0,1019.0,68.0,519.0,562.919,616.0,746.0,362.0,466.0,492.82,514.0,805.0,0.0,16.0,58.9577,113.0,450.0,289.0,277.75,17.1791,17.4342,12.6099,10.0,10.0
+775,25.826,10.0,4.0,81.0,205.328,493.0,1019.0,102.0,519.0,562.493,616.0,762.0,344.0,467.0,492.679,514.0,644.0,0.0,16.0,58.7129,113.0,416.0,289.0,277.853,20.8099,17.4758,12.5026,10.0,10.0
+776,25.859,10.0,4.0,82.0,206.296,496.0,1019.0,134.0,519.0,562.892,617.0,767.0,338.0,466.0,492.88,514.0,626.0,0.0,16.0,58.9397,113.0,387.0,288.0,277.316,16.7254,17.2602,12.5793,10.0,10.0
+777,25.893,10.0,4.0,81.0,204.305,492.0,1019.0,107.0,518.0,562.718,616.0,756.0,358.0,466.0,492.651,514.0,629.0,0.0,16.0,58.978,113.0,407.0,289.0,277.358,20.3779,17.3121,12.5028,10.0,10.0
+778,25.926,10.0,4.0,81.0,204.644,492.0,1019.0,97.0,519.0,563.318,617.0,752.0,352.0,467.0,493.104,514.0,619.0,0.0,16.0,59.0339,114.0,419.0,288.0,277.076,19.4245,17.3506,12.5399,10.0,10.0
+779,25.959,10.0,4.0,81.0,204.744,494.0,1019.0,138.0,519.0,562.885,616.0,760.0,344.0,467.0,493.119,515.0,628.0,0.0,16.0,58.9221,112.0,379.0,288.0,276.982,16.428,17.2099,12.431,10.0,10.0
+780,25.993,10.0,4.0,81.0,204.913,493.0,1019.0,122.0,519.0,563.099,616.0,735.0,358.0,466.0,492.445,514.0,631.0,0.0,16.0,59.1169,113.0,392.0,289.0,278.145,18.1406,17.2161,12.5493,10.0,10.0
+781,26.026,10.0,4.0,82.0,206.171,495.0,1019.0,110.0,520.0,563.207,616.0,754.0,366.0,466.0,492.583,514.0,638.0,0.0,16.0,59.2401,113.0,403.0,289.0,277.868,15.725,17.0276,12.4642,10.0,10.0
+782,26.059,10.0,4.0,80.0,203.739,491.0,1019.0,82.0,519.0,562.911,616.0,749.0,381.0,467.0,492.809,514.0,639.0,0.0,16.0,58.7676,113.0,434.0,289.0,277.732,20.5439,17.2431,12.4907,10.0,10.0
+783,26.093,10.0,4.0,80.0,204.616,493.0,1019.0,92.0,519.0,563.301,617.0,751.0,384.0,466.0,492.905,514.0,775.0,0.0,16.0,59.2711,113.0,424.0,288.0,277.381,20.726,17.1693,12.3937,10.0,10.0
+784,26.126,10.0,4.0,81.0,205.416,495.0,1019.0,124.0,519.0,563.302,616.0,746.0,377.0,467.0,492.905,514.0,728.0,0.0,16.0,59.0841,113.0,391.0,288.0,277.413,14.8079,17.0885,12.4266,10.0,10.0
+785,26.159,10.0,4.0,80.0,204.809,494.0,1019.0,115.0,519.0,563.298,617.0,746.0,372.0,466.0,492.491,514.0,639.0,0.0,16.0,59.3478,114.0,400.0,289.0,277.895,20.1964,17.1759,12.4761,10.0,10.0
+786,26.193,10.0,4.0,81.0,205.445,495.0,1019.0,113.0,519.0,563.346,617.0,772.0,375.0,467.0,492.971,514.0,643.0,0.0,16.0,59.1276,113.0,403.0,288.0,277.339,18.3498,17.2339,12.4629,10.0,10.0
+787,26.226,10.0,4.0,80.0,204.077,493.0,1019.0,74.0,519.0,563.558,617.0,731.0,362.0,466.0,492.547,514.0,795.0,0.0,16.0,59.6121,114.0,444.0,289.0,277.565,18.5594,17.329,12.4806,10.0,10.0
+788,26.26,10.0,4.0,80.0,203.693,491.0,1019.0,114.0,519.0,563.715,617.0,746.0,362.0,467.0,493.202,515.0,853.0,0.0,16.0,59.4396,113.0,403.0,288.0,277.191,16.7613,17.0877,12.3671,10.0,10.0
+789,26.293,10.0,4.0,80.0,203.634,491.0,1019.0,114.0,520.0,563.672,617.0,742.0,372.0,466.0,492.671,514.0,794.0,0.0,16.0,59.6746,114.0,400.0,288.0,277.32,15.1937,17.0028,12.3802,10.0,10.0
+790,26.326,10.0,4.0,79.0,203.788,492.0,1019.0,96.0,520.0,563.7,617.0,785.0,382.0,466.0,492.104,514.0,817.0,0.0,17.0,59.7486,114.0,421.0,289.0,278.58,17.4315,17.1616,12.4437,10.0,10.0
+791,26.36,10.0,4.0,80.0,204.2,493.0,1019.0,108.0,519.0,563.452,618.0,748.0,369.0,466.0,492.528,514.0,758.0,0.0,17.0,59.7975,114.0,411.0,289.0,277.144,16.4851,17.4807,12.5581,10.0,10.0
+792,26.393,10.0,4.0,79.0,202.374,490.0,1019.0,111.0,519.0,563.112,617.0,736.0,377.0,466.0,492.574,514.0,665.0,0.0,17.0,59.3111,113.0,406.0,289.0,277.717,22.614,17.2697,12.5141,10.0,10.0
+793,26.426,10.0,4.0,79.0,202.621,490.0,1019.0,111.0,519.0,563.353,617.0,778.0,372.0,466.0,492.686,514.0,752.0,0.0,16.0,59.5488,114.0,402.0,289.0,277.336,19.8515,17.3195,12.6245,10.0,10.0
+794,26.46,10.0,4.0,79.0,203.507,492.0,1019.0,86.0,519.0,563.286,617.0,752.0,365.0,466.0,492.922,514.0,718.0,0.0,16.0,59.4664,114.0,426.0,288.0,276.974,15.1402,17.0398,12.4296,10.0,10.0
+795,26.493,10.0,4.0,79.0,203.558,492.0,1019.0,114.0,519.0,563.324,617.0,740.0,373.0,466.0,492.74,514.0,737.0,0.0,16.0,59.5302,114.0,400.0,289.0,277.484,17.8207,17.2731,12.6136,10.0,10.0
+796,26.527,10.0,4.0,80.0,203.916,493.0,1019.0,114.0,520.0,563.843,618.0,746.0,380.0,466.0,492.704,514.0,800.0,0.0,17.0,59.8691,114.0,402.0,288.0,277.294,17.2795,17.4883,12.6976,10.0,10.0
+797,26.56,10.0,4.0,79.0,202.882,491.0,1019.0,76.0,519.0,563.303,617.0,803.0,374.0,466.0,492.719,514.0,804.0,0.0,16.0,59.4864,114.0,439.0,288.0,277.297,17.5498,17.0269,12.4061,10.0,10.0
+798,26.593,10.0,4.0,80.0,203.473,490.0,1019.0,92.0,518.0,563.128,617.0,736.0,355.0,466.0,492.657,514.0,789.0,0.0,15.0,59.0164,114.0,424.0,289.0,277.766,19.0974,17.039,12.267,10.0,10.0
+799,26.627,10.0,4.0,81.0,204.439,493.0,1019.0,106.0,519.0,563.264,617.0,731.0,382.0,466.0,492.829,514.0,813.0,0.0,16.0,59.267,114.0,411.0,288.0,277.146,15.3043,17.0007,12.3876,10.0,10.0
+800,26.66,10.0,4.0,80.0,203.67,491.0,1019.0,144.0,519.0,563.366,617.0,750.0,369.0,466.0,492.188,514.0,654.0,0.0,16.0,59.4537,114.0,370.0,289.0,278.027,18.6363,17.108,12.4821,10.0,10.0
+801,26.693,10.0,4.0,81.0,204.559,494.0,1019.0,118.0,519.0,563.442,618.0,755.0,370.0,465.0,492.383,514.0,628.0,0.0,16.0,59.6341,115.0,397.0,289.0,277.496,16.7749,17.1698,12.5894,10.0,10.0
+802,26.727,10.0,4.0,80.0,203.083,490.0,1019.0,108.0,519.0,563.68,617.0,749.0,377.0,466.0,492.394,514.0,634.0,0.0,16.0,59.6219,114.0,408.0,289.0,277.785,17.7732,17.1379,12.458,10.0,10.0
+803,26.76,10.0,4.0,80.0,202.284,489.0,1019.0,116.0,520.0,564.13,619.0,756.0,362.0,466.0,492.514,514.0,642.0,0.0,17.0,60.1475,115.0,402.0,288.0,277.428,20.8198,17.1309,12.5263,10.0,10.0
+804,26.793,10.0,4.0,80.0,203.551,492.0,1019.0,124.0,519.0,563.611,618.0,750.0,370.0,466.0,492.526,514.0,628.0,0.0,16.0,59.5072,114.0,390.0,289.0,277.56,14.7631,17.1539,12.4609,10.0,10.0
+805,26.827,10.0,4.0,80.0,203.465,491.0,1019.0,115.0,519.0,563.716,618.0,755.0,369.0,466.0,492.349,514.0,632.0,0.0,16.0,59.7767,115.0,398.0,289.0,277.647,16.6201,17.1538,12.4146,10.0,10.0
+806,26.86,10.0,4.0,80.0,203.478,492.0,1019.0,102.0,519.0,563.672,618.0,743.0,359.0,466.0,492.394,514.0,642.0,0.0,16.0,59.6137,115.0,414.0,289.0,277.588,15.7164,16.912,12.4284,10.0,10.0
+807,26.894,10.0,4.0,79.0,202.319,489.0,1019.0,118.0,519.0,564.041,619.0,767.0,382.0,465.0,492.207,514.0,631.0,0.0,17.0,60.1994,116.0,403.0,289.0,277.819,19.2944,17.1495,12.4158,10.0,10.0
+808,26.927,10.0,4.0,80.0,202.71,489.0,1019.0,134.0,519.0,563.542,618.0,753.0,358.0,466.0,492.418,514.0,630.0,0.0,16.0,59.454,115.0,381.0,289.0,278.229,18.9857,17.1577,12.4514,10.0,10.0
+809,26.96,10.0,4.0,80.0,202.854,490.0,1019.0,106.0,519.0,563.49,617.0,746.0,334.0,466.0,492.633,514.0,629.0,0.0,16.0,59.4055,114.0,409.0,289.0,277.532,15.6989,16.9193,12.4987,10.0,10.0
+810,26.994,10.0,4.0,79.0,202.553,490.0,1019.0,96.0,519.0,563.253,617.0,744.0,365.0,466.0,492.175,514.0,625.0,0.0,16.0,59.3197,114.0,420.0,289.0,278.106,19.8943,17.0676,12.4254,10.0,10.0
+811,27.027,10.0,4.0,80.0,203.824,492.0,1019.0,100.0,519.0,563.376,617.0,737.0,355.0,466.0,492.422,514.0,688.0,0.0,16.0,59.5679,114.0,419.0,289.0,277.524,17.8503,17.0124,12.4628,10.0,10.0
+812,27.06,10.0,4.0,80.0,202.677,490.0,1019.0,128.0,519.0,562.865,616.0,746.0,362.0,466.0,492.076,513.0,637.0,0.0,16.0,59.0172,113.0,391.0,289.0,278.492,18.3698,16.9367,12.2622,10.0,10.0
+813,27.094,10.0,4.0,80.0,202.728,489.0,1019.0,114.0,519.0,562.824,617.0,776.0,366.0,466.0,492.673,514.0,648.0,0.0,16.0,58.8852,113.0,402.0,289.0,277.574,17.9907,16.9888,12.3039,10.0,10.0
+814,27.127,10.0,4.0,80.0,202.678,491.0,1019.0,92.0,518.0,563.031,617.0,774.0,364.0,466.0,492.678,514.0,628.0,0.0,16.0,59.1078,114.0,427.0,289.0,277.282,15.7107,17.2282,12.3577,10.0,10.0
+815,27.16,10.0,4.0,81.0,203.853,492.0,1019.0,98.0,518.0,562.593,617.0,747.0,380.0,466.0,492.457,514.0,620.0,0.0,16.0,58.7166,113.0,420.0,289.0,277.83,18.4239,17.263,12.4172,10.0,10.0
+816,27.194,10.0,4.0,81.0,204.448,494.0,1019.0,106.0,518.0,562.696,617.0,766.0,355.0,466.0,492.927,514.0,624.0,0.0,15.0,58.6458,113.0,408.0,288.0,277.099,15.5619,16.952,12.4073,10.0,10.0
+817,27.227,10.0,4.0,81.0,202.847,489.0,1019.0,107.0,518.0,562.394,616.0,746.0,346.0,466.0,492.55,514.0,629.0,0.0,16.0,58.5779,113.0,407.0,289.0,277.492,22.7115,16.8648,12.318,10.0,10.0
+818,27.261,10.0,4.0,81.0,202.992,490.0,1019.0,95.0,518.0,562.299,616.0,738.0,359.0,467.0,493.133,514.0,633.0,0.0,15.0,58.1475,112.0,423.0,288.0,276.95,18.3887,16.9427,12.2782,10.0,10.0
+819,27.294,10.0,4.0,81.0,203.053,490.0,1019.0,113.0,518.0,562.085,616.0,749.0,376.0,466.0,492.7,514.0,724.0,0.0,16.0,58.2129,113.0,403.0,289.0,277.281,14.987,17.0154,12.4195,10.0,10.0
+820,27.327,10.0,4.0,81.0,203.616,491.0,1019.0,114.0,518.0,562.299,616.0,763.0,364.0,466.0,492.488,514.0,613.0,0.0,16.0,58.5472,113.0,402.0,289.0,277.288,16.9968,16.9963,12.401,10.0,10.0
+821,27.361,10.0,4.0,81.0,204.323,493.0,1019.0,114.0,518.0,562.315,616.0,782.0,370.0,466.0,492.412,514.0,631.0,0.0,16.0,58.5632,113.0,400.0,289.0,277.274,15.2238,16.9834,12.3589,10.0,10.0
+822,27.394,10.0,4.0,81.0,203.631,492.0,1019.0,99.0,518.0,562.322,616.0,749.0,376.0,466.0,492.629,514.0,615.0,0.0,15.0,58.383,113.0,419.0,289.0,277.3,16.8953,16.9739,12.4215,10.0,10.0
+823,27.427,10.0,4.0,82.0,204.535,492.0,1019.0,120.0,518.0,562.138,616.0,762.0,377.0,466.0,492.991,514.0,617.0,0.0,15.0,58.2129,113.0,395.0,289.0,277.051,17.0568,17.0237,12.346,10.0,10.0
+824,27.461,10.0,4.0,82.0,204.345,493.0,1019.0,128.0,517.0,562.128,616.0,740.0,380.0,467.0,493.205,515.0,605.0,0.0,15.0,57.9481,113.0,389.0,288.0,276.553,14.6315,17.0177,12.1911,10.0,10.0
+825,27.494,10.0,4.0,82.0,203.266,490.0,1019.0,108.0,517.0,561.775,616.0,749.0,380.0,466.0,492.824,514.0,625.0,0.0,15.0,57.8941,113.0,404.0,289.0,277.033,17.9568,16.8391,12.2422,10.0,10.0
+826,27.528,10.0,4.0,81.0,203.38,490.0,1019.0,104.0,518.0,562.227,616.0,751.0,380.0,466.0,493.122,514.0,592.0,0.0,15.0,58.0747,113.0,412.0,288.0,276.573,16.6816,17.0294,12.4011,10.0,10.0
+827,27.561,10.0,4.0,81.0,202.003,488.0,1019.0,100.0,518.0,562.157,616.0,748.0,380.0,467.0,493.139,514.0,618.0,0.0,15.0,58.1117,113.0,414.0,288.0,276.986,17.2906,17.0117,12.2269,10.0,10.0
+828,27.594,10.0,4.0,81.0,202.108,487.0,1019.0,110.0,517.0,561.986,616.0,767.0,380.0,466.0,493.302,514.0,610.0,0.0,15.0,57.7992,113.0,406.0,288.0,276.599,21.2312,16.9406,12.3315,10.0,10.0
+829,27.628,10.0,4.0,80.0,201.89,488.0,1019.0,99.0,517.0,561.799,616.0,737.0,370.0,467.0,493.161,514.0,610.0,0.0,15.0,57.879,113.0,415.0,288.0,276.08,17.6715,16.9515,12.3647,10.0,10.0
+830,27.661,10.0,4.0,80.0,201.078,486.0,1019.0,96.0,517.0,561.685,616.0,745.0,358.0,466.0,492.809,514.0,610.0,0.0,15.0,57.7838,112.0,422.0,289.0,276.758,19.5663,17.2359,12.2906,10.0,10.0
+831,27.694,10.0,4.0,81.0,202.349,488.0,1019.0,84.0,517.0,561.813,616.0,754.0,369.0,466.0,492.976,514.0,617.0,0.0,15.0,57.8696,113.0,430.0,289.0,276.825,15.6347,17.0454,12.1693,10.0,10.0
+832,27.728,10.0,4.0,81.0,201.636,487.0,1019.0,86.0,517.0,562.022,616.0,750.0,358.0,466.0,492.849,514.0,620.0,0.0,15.0,57.9923,113.0,432.0,289.0,277.327,17.1388,16.832,12.1747,10.0,10.0
+833,27.761,10.0,4.0,82.0,202.607,489.0,1019.0,102.0,517.0,562.154,616.0,755.0,358.0,466.0,492.566,514.0,616.0,0.0,15.0,58.3205,113.0,413.0,289.0,277.53,16.7095,16.9744,12.2464,10.0,10.0
+834,27.794,10.0,4.0,81.0,202.297,489.0,1019.0,111.0,518.0,562.128,617.0,756.0,372.0,466.0,492.68,514.0,616.0,0.0,15.0,58.118,113.0,408.0,289.0,277.593,14.8697,16.8152,12.3396,10.0,10.0
+835,27.828,10.0,4.0,80.0,201.172,487.0,1019.0,87.0,517.0,561.548,616.0,761.0,368.0,466.0,492.667,514.0,607.0,0.0,15.0,57.6817,113.0,428.0,289.0,277.493,18.1398,17.0241,12.3399,10.0,10.0
+836,27.861,10.0,4.0,81.0,201.922,487.0,1019.0,122.0,517.0,561.337,616.0,755.0,365.0,466.0,493.181,514.0,626.0,0.0,14.0,57.3456,113.0,393.0,289.0,276.36,15.8029,16.9447,12.29,10.0,10.0
+837,27.895,10.0,4.0,80.0,201.198,487.0,1019.0,87.0,517.0,561.802,616.0,778.0,381.0,465.0,492.477,514.0,614.0,0.0,15.0,58.0359,114.0,426.0,289.0,277.003,17.2824,17.0246,12.3668,10.0,10.0
+838,27.928,10.0,4.0,81.0,201.563,487.0,1019.0,103.0,517.0,562.288,617.0,749.0,362.0,466.0,492.573,514.0,605.0,0.0,15.0,58.2989,114.0,413.0,289.0,276.956,17.3588,17.0908,12.4328,10.0,10.0
+839,27.961,10.0,4.0,80.0,201.391,487.0,1019.0,106.0,517.0,562.43,617.0,785.0,376.0,465.0,492.722,514.0,618.0,0.0,15.0,58.5401,114.0,409.0,289.0,276.508,15.7621,17.0429,12.3763,10.0,10.0
+840,27.995,10.0,4.0,80.0,200.28,485.0,1019.0,84.0,518.0,562.34,617.0,771.0,373.0,465.0,492.358,514.0,758.0,0.0,15.0,58.3804,114.0,428.0,289.0,277.868,18.0266,16.8828,12.3613,10.0,10.0
+841,28.028,10.0,4.0,81.0,201.522,487.0,1019.0,104.0,517.0,562.085,617.0,749.0,384.0,465.0,492.584,514.0,628.0,0.0,15.0,58.3317,114.0,410.0,289.0,276.954,16.2673,16.9932,12.4099,10.0,10.0
+842,28.061,10.0,4.0,80.0,200.829,486.0,1019.0,88.0,518.0,562.251,617.0,750.0,360.0,465.0,492.221,514.0,678.0,0.0,15.0,58.4431,114.0,430.0,289.0,277.923,20.8316,17.1232,12.4981,10.0,10.0
+843,28.095,10.0,4.0,80.0,201.151,488.0,1019.0,118.0,517.0,562.243,617.0,754.0,344.0,466.0,492.723,514.0,628.0,0.0,15.0,58.3247,114.0,397.0,289.0,277.138,17.4888,16.9801,12.4228,10.0,10.0
+844,28.128,10.0,4.0,80.0,200.856,488.0,1019.0,118.0,517.0,562.727,618.0,745.0,376.0,466.0,492.765,514.0,625.0,0.0,15.0,58.7259,115.0,398.0,288.0,276.955,15.3141,17.0942,12.342,10.0,10.0
+845,28.161,10.0,4.0,79.0,199.666,486.0,1019.0,120.0,518.0,562.65,617.0,732.0,364.0,465.0,492.111,514.0,632.0,0.0,16.0,58.9442,114.0,392.0,289.0,277.486,17.0924,17.1495,12.3534,10.0,10.0
+846,28.195,10.0,4.0,80.0,199.998,486.0,1019.0,82.0,518.0,562.762,618.0,760.0,352.0,465.0,492.247,514.0,696.0,0.0,15.0,58.9867,115.0,433.0,289.0,277.441,15.043,17.0183,12.3824,10.0,10.0
+847,28.228,10.0,4.0,79.0,199.421,485.0,1019.0,160.0,517.0,562.443,617.0,737.0,362.0,465.0,492.3,514.0,633.0,0.0,15.0,58.7391,114.0,358.0,289.0,277.419,19.1861,16.9534,12.3378,10.0,10.0
+848,28.262,10.0,4.0,79.0,200.541,488.0,1019.0,87.0,518.0,562.681,617.0,787.0,348.0,465.0,492.704,514.0,743.0,0.0,15.0,58.8249,114.0,426.0,289.0,277.313,16.4464,16.8895,12.4656,10.0,10.0
+849,28.295,10.0,4.0,79.0,200.196,487.0,1019.0,96.0,518.0,562.749,617.0,770.0,362.0,465.0,492.363,514.0,686.0,0.0,15.0,59.0447,115.0,420.0,289.0,277.081,14.9709,16.9476,12.3843,10.0,10.0
+850,28.328,10.0,4.0,79.0,199.581,486.0,1019.0,86.0,518.0,562.541,617.0,764.0,338.0,464.0,491.827,514.0,661.0,0.0,15.0,58.9422,115.0,429.0,290.0,278.209,17.6792,16.9927,12.4497,10.0,10.0
+851,28.362,10.0,4.0,79.0,199.394,486.0,1019.0,64.0,518.0,562.874,618.0,737.0,368.0,465.0,492.412,514.0,638.0,0.0,15.0,59.2265,115.0,454.0,289.0,277.289,16.2252,17.2248,12.5741,10.0,10.0
+852,28.395,10.0,4.0,79.0,199.224,486.0,1019.0,92.0,518.0,562.735,617.0,781.0,333.0,464.0,492.041,514.0,685.0,0.0,16.0,59.2386,115.0,425.0,289.0,277.086,17.4919,17.1544,12.644,10.0,10.0
+853,28.428,10.0,4.0,79.0,199.551,486.0,1019.0,87.0,518.0,563.016,618.0,747.0,352.0,464.0,492.3,514.0,676.0,0.0,16.0,59.5039,115.0,425.0,289.0,277.094,18.8259,17.0898,12.4361,10.0,10.0
+854,28.462,10.0,4.0,79.0,199.557,487.0,1019.0,80.0,518.0,562.949,618.0,762.0,328.0,465.0,492.42,514.0,646.0,0.0,15.0,59.2565,115.0,436.0,289.0,277.43,15.395,17.2769,12.5875,10.0,10.0
+855,28.495,10.0,4.0,79.0,199.434,486.0,1019.0,114.0,518.0,563.009,618.0,771.0,355.0,465.0,492.298,514.0,656.0,0.0,16.0,59.6676,115.0,418.0,289.0,277.174,17.8159,17.299,12.3771,10.0,10.0
+856,28.529,10.0,4.0,79.0,199.83,487.0,1019.0,124.0,518.0,562.81,618.0,741.0,334.0,465.0,492.571,514.0,787.0,0.0,15.0,59.3584,115.0,395.0,289.0,276.852,15.6523,16.8388,12.3314,10.0,10.0
+857,28.562,10.0,4.0,78.0,198.362,484.0,1019.0,50.0,519.0,563.072,617.0,765.0,341.0,465.0,492.425,514.0,802.0,0.0,16.0,59.4963,115.0,463.0,289.0,277.473,19.3328,17.2592,12.4264,10.0,10.0
+858,28.595,10.0,4.0,79.0,198.89,484.0,1019.0,82.0,518.0,562.69,618.0,750.0,352.0,465.0,492.472,514.0,796.0,0.0,15.0,59.1205,115.0,435.0,289.0,277.348,17.2241,16.9613,12.3522,10.0,10.0
+859,28.629,10.0,4.0,79.0,199.37,485.0,1019.0,86.0,518.0,562.854,618.0,737.0,344.0,465.0,492.315,514.0,713.0,0.0,16.0,59.3083,115.0,431.0,289.0,277.213,16.2499,16.7585,12.321,10.0,10.0
+860,28.662,10.0,4.0,79.0,199.219,486.0,1019.0,108.0,519.0,563.236,618.0,766.0,358.0,464.0,492.318,514.0,768.0,0.0,16.0,59.5148,115.0,407.0,289.0,277.6,19.4536,16.8593,12.348,10.0,10.0
+861,28.695,10.0,4.0,78.0,199.201,486.0,1019.0,105.0,518.0,563.121,618.0,757.0,375.0,465.0,492.798,514.0,779.0,0.0,15.0,59.2493,115.0,408.0,288.0,276.804,16.8963,16.8877,12.2135,10.0,10.0
+862,28.729,10.0,4.0,79.0,199.574,486.0,1019.0,90.0,518.0,562.895,618.0,780.0,378.0,465.0,492.188,514.0,642.0,0.0,15.0,59.2976,116.0,427.0,289.0,277.258,17.9444,16.9745,12.2189,10.0,10.0
+863,28.762,10.0,4.0,79.0,199.865,487.0,1019.0,64.0,518.0,563.098,618.0,778.0,371.0,465.0,492.696,514.0,629.0,0.0,16.0,59.3636,115.0,449.0,288.0,277.042,17.2113,17.1171,12.1661,10.0,10.0
+864,28.795,10.0,4.0,79.0,199.486,486.0,1019.0,118.0,518.0,563.093,618.0,758.0,352.0,465.0,492.68,514.0,627.0,0.0,16.0,59.4424,116.0,396.0,288.0,276.549,15.195,16.8567,12.1602,10.0,10.0
+865,28.829,10.0,4.0,78.0,198.71,484.0,1019.0,111.0,518.0,563.027,619.0,736.0,370.0,465.0,492.521,514.0,632.0,0.0,15.0,59.4803,116.0,401.0,289.0,277.108,17.7487,17.121,12.2798,10.0,10.0
+866,28.862,10.0,4.0,79.0,199.805,486.0,1019.0,89.0,518.0,562.736,618.0,756.0,362.0,466.0,492.988,514.0,649.0,0.0,15.0,58.9116,115.0,426.0,288.0,276.433,16.0351,17.0211,12.3249,10.0,10.0
+867,28.896,10.0,4.0,78.0,197.642,483.0,1019.0,118.0,517.0,562.692,618.0,764.0,376.0,466.0,492.639,514.0,652.0,0.0,15.0,59.178,115.0,397.0,289.0,276.702,21.6178,17.0438,12.3517,10.0,10.0
+868,28.929,10.0,4.0,78.0,198.322,484.0,1019.0,128.0,517.0,563.153,619.0,761.0,369.0,466.0,493.196,514.0,643.0,0.0,15.0,59.3069,116.0,388.0,288.0,275.93,16.9363,17.041,12.1451,10.0,10.0
+869,28.962,10.0,4.0,78.0,198.392,485.0,1019.0,106.0,518.0,562.83,618.0,758.0,365.0,466.0,493.181,515.0,726.0,0.0,15.0,59.14,115.0,406.0,288.0,276.428,14.8873,16.8246,12.2184,10.0,10.0
+870,28.996,10.0,4.0,78.0,198.249,484.0,1019.0,107.0,518.0,562.871,618.0,751.0,348.0,465.0,492.617,514.0,734.0,0.0,15.0,59.1191,116.0,411.0,289.0,277.323,17.3079,16.9699,12.2737,10.0,10.0
+871,29.029,10.0,4.0,78.0,199.189,485.0,1019.0,117.0,518.0,563.101,618.0,803.0,373.0,465.0,492.681,514.0,646.0,0.0,15.0,59.5404,116.0,398.0,289.0,276.801,14.8916,16.8976,12.2883,10.0,10.0
+872,29.062,10.0,4.0,77.0,197.198,482.0,1019.0,116.0,518.0,563.087,619.0,764.0,368.0,465.0,492.586,514.0,642.0,0.0,15.0,59.4521,117.0,399.0,289.0,277.188,18.0247,17.0392,12.2941,10.0,10.0
+873,29.096,10.0,4.0,77.0,198.046,484.0,1019.0,116.0,517.0,562.792,618.0,743.0,358.0,464.0,492.505,514.0,664.0,0.0,15.0,59.2379,116.0,398.0,289.0,276.86,18.3639,16.8674,12.121,10.0,10.0
+874,29.129,10.0,4.0,77.0,198.535,485.0,1019.0,90.0,518.0,563.073,619.0,741.0,358.0,466.0,492.895,514.0,674.0,0.0,15.0,59.2588,116.0,427.0,288.0,276.794,15.5258,16.8101,12.2688,10.0,10.0
+875,29.162,10.0,4.0,78.0,198.526,485.0,1019.0,110.0,518.0,563.122,619.0,758.0,368.0,464.0,492.133,514.0,653.0,0.0,15.0,59.6277,116.0,407.0,289.0,277.168,18.0569,16.9705,12.2379,10.0,10.0
+876,29.196,10.0,4.0,79.0,199.469,486.0,1019.0,118.0,518.0,563.611,620.0,748.0,358.0,465.0,492.911,514.0,665.0,0.0,15.0,59.8726,116.0,399.0,288.0,276.611,15.9525,17.0926,12.4177,10.0,10.0
+877,29.229,10.0,4.0,78.0,197.675,482.0,1019.0,97.0,518.0,563.172,619.0,768.0,361.0,465.0,492.578,514.0,682.0,0.0,15.0,59.596,116.0,415.0,289.0,276.945,18.6456,16.9844,12.2687,10.0,10.0
+878,29.263,10.0,4.0,78.0,197.793,482.0,1019.0,91.0,517.0,563.121,620.0,732.0,366.0,464.0,492.386,514.0,677.0,0.0,15.0,59.552,117.0,424.0,289.0,277.333,19.9405,17.1347,12.3115,10.0,10.0
+879,29.296,10.0,4.0,78.0,198.158,483.0,1019.0,74.0,518.0,563.384,620.0,745.0,364.0,465.0,492.77,514.0,664.0,0.0,15.0,59.8041,117.0,442.0,288.0,276.629,15.2642,16.9814,12.2481,10.0,10.0
+880,29.329,10.0,4.0,79.0,198.832,484.0,1019.0,124.0,518.0,563.49,620.0,741.0,368.0,464.0,492.315,514.0,672.0,0.0,15.0,59.944,117.0,391.0,289.0,277.107,16.7854,16.8223,12.2395,10.0,10.0
+881,29.363,10.0,4.0,78.0,199.23,486.0,1019.0,124.0,518.0,563.443,619.0,798.0,370.0,464.0,492.186,514.0,648.0,0.0,16.0,60.101,117.0,392.0,289.0,277.272,14.7761,16.8828,12.3264,10.0,10.0
+882,29.396,10.0,4.0,78.0,198.16,482.0,1019.0,81.0,517.0,563.317,620.0,760.0,368.0,465.0,492.615,514.0,655.0,0.0,15.0,59.6294,117.0,434.0,288.0,277.033,20.5052,17.0986,12.3933,10.0,10.0
+883,29.429,10.0,4.0,79.0,198.772,483.0,1019.0,124.0,518.0,563.082,619.0,745.0,364.0,465.0,492.669,514.0,650.0,0.0,16.0,59.6835,117.0,393.0,289.0,276.776,18.5461,17.1385,12.3338,10.0,10.0
+884,29.463,10.0,4.0,78.0,198.62,485.0,1019.0,114.0,518.0,563.761,620.0,762.0,364.0,465.0,492.639,514.0,679.0,0.0,16.0,60.0976,117.0,402.0,288.0,277.021,14.9402,16.9054,12.3575,10.0,10.0
+885,29.496,10.0,4.0,78.0,198.272,483.0,1019.0,107.0,517.0,562.743,619.0,732.0,366.0,465.0,492.366,514.0,652.0,0.0,15.0,59.4618,116.0,408.0,289.0,277.127,19.4583,17.1179,12.4418,10.0,10.0
+886,29.53,10.0,4.0,78.0,198.841,485.0,1019.0,85.0,518.0,563.055,619.0,756.0,363.0,465.0,492.765,514.0,661.0,0.0,15.0,59.5001,116.0,430.0,288.0,276.491,17.4036,17.3439,12.3799,10.0,10.0
+887,29.563,10.0,4.0,77.0,196.881,480.0,1019.0,80.0,517.0,563.016,620.0,751.0,361.0,465.0,492.686,514.0,709.0,0.0,15.0,59.6119,117.0,434.0,289.0,276.434,17.4258,17.4147,12.3872,10.0,10.0
+888,29.596,10.0,4.0,79.0,197.738,481.0,1019.0,114.0,517.0,562.572,619.0,754.0,364.0,466.0,493.167,515.0,680.0,0.0,15.0,58.9602,116.0,401.0,288.0,276.177,16.841,17.2221,12.3859,10.0,10.0
+889,29.63,10.0,4.0,78.0,198.053,483.0,1019.0,128.0,517.0,562.536,618.0,752.0,362.0,466.0,493.117,514.0,673.0,0.0,15.0,59.0523,116.0,385.0,288.0,276.377,14.8726,16.9604,12.2537,10.0,10.0
+890,29.663,10.0,4.0,78.0,197.373,482.0,1019.0,86.0,517.0,562.784,619.0,759.0,352.0,465.0,492.638,514.0,674.0,0.0,15.0,59.3527,116.0,429.0,289.0,276.685,17.1409,16.9174,12.2762,10.0,10.0
+891,29.696,10.0,4.0,78.0,197.581,482.0,1019.0,101.0,517.0,562.82,620.0,750.0,375.0,465.0,492.987,514.0,658.0,0.0,15.0,59.4562,117.0,414.0,288.0,276.395,16.165,16.691,12.2764,10.0,10.0
+892,29.73,10.0,4.0,78.0,196.695,479.0,1019.0,118.0,518.0,562.996,619.0,757.0,362.0,465.0,492.89,514.0,646.0,0.0,15.0,59.4291,116.0,396.0,288.0,276.883,20.2477,17.1586,12.4868,10.0,10.0
+893,29.763,10.0,4.0,79.0,197.028,480.0,1019.0,116.0,518.0,562.679,618.0,748.0,368.0,466.0,493.085,515.0,641.0,0.0,15.0,59.0459,116.0,398.0,288.0,276.754,17.3965,16.9923,12.3016,10.0,10.0
+894,29.796,10.0,4.0,79.0,198.157,483.0,1019.0,87.0,517.0,562.459,618.0,769.0,361.0,466.0,493.488,515.0,668.0,0.0,15.0,58.7579,115.0,430.0,288.0,276.555,14.5959,16.6711,12.277,10.0,10.0
+895,29.83,10.0,4.0,79.0,197.76,482.0,1019.0,96.0,517.0,562.189,618.0,743.0,370.0,466.0,493.135,515.0,653.0,0.0,15.0,58.829,115.0,419.0,288.0,276.514,17.4485,16.6295,12.1965,10.0,10.0
+896,29.863,10.0,4.0,80.0,198.02,481.0,1019.0,134.0,517.0,562.008,618.0,771.0,360.0,466.0,493.371,515.0,658.0,0.0,14.0,58.4339,115.0,379.0,288.0,276.234,15.7994,16.8083,12.2558,10.0,10.0
+897,29.897,10.0,4.0,78.0,197.044,481.0,1019.0,120.0,517.0,562.309,619.0,767.0,362.0,466.0,493.114,515.0,648.0,0.0,15.0,58.9466,116.0,393.0,288.0,276.54,16.7596,17.0441,12.3923,10.0,10.0
+898,29.93,10.0,4.0,78.0,196.969,480.0,1019.0,86.0,517.0,562.563,619.0,746.0,369.0,466.0,493.177,515.0,646.0,0.0,15.0,59.0173,116.0,429.0,288.0,276.734,17.3429,17.0256,12.2574,10.0,10.0
+899,29.963,10.0,4.0,78.0,197.254,481.0,1019.0,75.0,517.0,562.633,619.0,747.0,363.0,466.0,493.319,515.0,641.0,0.0,15.0,59.3329,116.0,440.0,288.0,275.598,15.2307,16.8253,12.1672,10.0,10.0
+900,29.997,10.0,4.0,78.0,196.14,478.0,1019.0,118.0,517.0,562.559,619.0,788.0,375.0,466.0,493.206,514.0,650.0,0.0,15.0,59.0209,116.0,396.0,288.0,276.535,17.1002,16.8609,12.2222,10.0,10.0
+901,30.03,10.0,4.0,79.0,197.381,479.0,1019.0,114.0,517.0,562.375,619.0,778.0,352.0,465.0,493.333,515.0,657.0,0.0,15.0,58.8594,116.0,399.0,288.0,276.286,14.8964,17.0066,12.4339,10.0,10.0
+902,30.063,10.0,4.0,79.0,196.88,480.0,1019.0,129.0,517.0,562.634,619.0,767.0,368.0,466.0,493.39,515.0,647.0,0.0,15.0,58.9956,116.0,387.0,288.0,276.406,18.0042,16.6557,12.1925,10.0,10.0
+903,30.097,10.0,4.0,78.0,195.783,478.0,1019.0,120.0,517.0,562.653,619.0,756.0,352.0,465.0,493.245,515.0,652.0,0.0,15.0,59.2767,117.0,394.0,288.0,276.115,18.777,16.8892,12.2462,10.0,10.0
+904,30.13,10.0,4.0,78.0,196.098,480.0,1019.0,124.0,517.0,563.017,620.0,762.0,372.0,466.0,493.407,515.0,657.0,0.0,15.0,59.4082,117.0,392.0,288.0,276.299,14.5731,17.1032,12.3648,10.0,10.0
+905,30.163,10.0,4.0,78.0,196.063,479.0,1019.0,106.0,517.0,562.509,619.0,756.0,364.0,465.0,492.851,515.0,642.0,0.0,15.0,59.2567,116.0,406.0,288.0,276.656,16.1416,16.9056,12.3122,10.0,10.0
+906,30.197,10.0,4.0,78.0,196.519,480.0,1019.0,88.0,517.0,562.759,619.0,775.0,332.0,465.0,493.047,515.0,651.0,0.0,15.0,59.2998,116.0,426.0,288.0,276.088,14.2071,16.7527,12.1421,10.0,10.0
+907,30.23,10.0,4.0,77.0,194.188,476.0,1019.0,106.0,517.0,562.857,620.0,777.0,345.0,465.0,492.872,514.0,652.0,0.0,15.0,59.5314,117.0,410.0,288.0,276.812,17.8885,17.0595,12.304,10.0,10.0
+908,30.264,10.0,4.0,76.0,192.738,472.0,1019.0,124.0,518.0,562.949,620.0,750.0,364.0,465.0,492.949,515.0,664.0,0.0,15.0,59.4082,117.0,389.0,288.0,277.078,20.6804,16.6552,12.2332,10.0,10.0
+909,30.297,10.0,4.0,77.0,193.569,475.0,1019.0,118.0,517.0,563.191,620.0,759.0,365.0,465.0,492.818,515.0,652.0,0.0,15.0,59.8843,117.0,394.0,288.0,276.543,15.5215,16.7371,12.3594,10.0,10.0
+910,30.33,10.0,4.0,76.0,192.689,473.0,1019.0,96.0,518.0,562.935,620.0,779.0,344.0,465.0,492.603,514.0,660.0,0.0,15.0,59.4976,117.0,419.0,289.0,277.492,18.5555,16.8715,12.4148,10.0,10.0
+911,30.364,10.0,4.0,76.0,193.2,475.0,1019.0,124.0,518.0,563.19,620.0,777.0,362.0,465.0,492.762,514.0,717.0,0.0,16.0,59.8684,117.0,393.0,288.0,277.184,16.178,16.8458,12.1654,10.0,10.0
+912,30.397,10.0,4.0,76.0,192.176,473.0,1019.0,118.0,519.0,563.699,620.0,788.0,359.0,465.0,492.45,514.0,654.0,0.0,16.0,60.1136,118.0,396.0,289.0,277.691,17.2937,16.9417,12.2721,10.0,10.0
+913,30.43,10.0,4.0,76.0,192.574,473.0,1019.0,79.0,518.0,563.317,620.0,764.0,349.0,465.0,492.748,514.0,658.0,0.0,16.0,59.8413,117.0,434.0,288.0,277.518,16.3004,16.9321,12.2914,10.0,10.0
+914,30.464,10.0,4.0,76.0,192.81,475.0,1019.0,105.0,519.0,563.9,620.0,792.0,350.0,465.0,492.935,515.0,863.0,0.0,15.0,60.2151,118.0,410.0,288.0,276.928,15.1127,16.8648,12.1566,10.0,10.0
+915,30.497,10.0,4.0,76.0,192.327,473.0,1019.0,104.0,518.0,563.31,620.0,748.0,369.0,465.0,492.553,514.0,822.0,0.0,15.0,59.9427,118.0,410.0,289.0,277.205,17.032,16.9783,12.2797,10.0,10.0
+916,30.531,10.0,4.0,77.0,193.318,475.0,1019.0,110.0,519.0,563.746,620.0,784.0,366.0,465.0,492.78,515.0,698.0,0.0,15.0,60.1063,118.0,404.0,288.0,277.554,15.2969,16.8124,12.1627,10.0,10.0
+917,30.564,10.0,4.0,76.0,192.487,473.0,1019.0,118.0,518.0,563.37,620.0,825.0,371.0,465.0,492.843,514.0,670.0,0.0,15.0,59.9681,118.0,394.0,288.0,276.905,18.6117,16.9568,12.3709,10.0,10.0
+918,30.597,10.0,4.0,78.0,193.291,473.0,1019.0,101.0,518.0,563.335,620.0,853.0,351.0,465.0,492.853,514.0,683.0,0.0,16.0,59.7319,118.0,415.0,288.0,277.332,21.255,16.9194,12.2643,10.0,10.0
+919,30.631,10.0,4.0,76.0,192.309,473.0,1019.0,120.0,518.0,563.07,620.0,862.0,348.0,465.0,492.948,514.0,674.0,0.0,15.0,59.6302,117.0,395.0,288.0,277.205,15.3773,16.6797,12.1641,10.0,10.0
+920,30.664,10.0,4.0,76.0,191.461,471.0,1019.0,124.0,518.0,563.211,620.0,848.0,368.0,464.0,492.09,514.0,716.0,0.0,16.0,59.7278,118.0,391.0,289.0,278.548,17.0956,16.935,12.3517,10.0,10.0
+921,30.697,10.0,4.0,77.0,192.441,473.0,1019.0,110.0,518.0,563.417,620.0,882.0,365.0,464.0,492.445,514.0,660.0,0.0,15.0,60.0185,118.0,403.0,289.0,277.923,14.625,16.705,12.2306,10.0,10.0
+922,30.731,10.0,4.0,76.0,191.574,472.0,1019.0,102.0,518.0,563.538,621.0,948.0,359.0,464.0,492.273,514.0,673.0,0.0,15.0,60.0056,118.0,436.0,289.0,278.02,18.1616,17.078,12.3404,10.0,10.0
+923,30.764,10.0,4.0,77.0,192.715,473.0,1019.0,114.0,519.0,563.566,621.0,930.0,351.0,464.0,492.152,514.0,699.0,0.0,16.0,60.3103,118.0,418.0,289.0,278.407,16.9478,16.8589,12.3066,10.0,10.0
+924,30.797,10.0,4.0,77.0,192.752,474.0,1019.0,128.0,518.0,563.668,621.0,903.0,365.0,464.0,492.334,514.0,675.0,0.0,15.0,60.1637,119.0,412.0,289.0,277.817,14.8351,16.9089,12.3138,10.0,10.0
+925,30.831,10.0,4.0,76.0,191.812,472.0,1019.0,118.0,518.0,562.925,620.0,821.0,350.0,464.0,492.402,514.0,685.0,0.0,16.0,59.738,118.0,394.0,289.0,277.492,17.3408,16.9655,12.2789,10.0,10.0
+926,30.864,10.0,4.0,78.0,193.369,474.0,1019.0,106.0,518.0,563.198,620.0,853.0,350.0,464.0,492.535,514.0,693.0,0.0,15.0,59.694,118.0,408.0,289.0,277.641,15.57,16.7789,12.2997,10.0,10.0
+927,30.898,10.0,4.0,75.0,190.589,470.0,1019.0,102.0,518.0,562.771,620.0,844.0,358.0,464.0,492.285,514.0,675.0,0.0,15.0,59.5257,117.0,411.0,289.0,277.868,18.1121,16.8648,12.294,10.0,10.0
+928,30.931,10.0,4.0,76.0,190.944,471.0,1019.0,119.0,518.0,563.2,620.0,772.0,352.0,464.0,492.208,514.0,691.0,0.0,15.0,59.6323,118.0,398.0,289.0,278.469,17.4054,16.8077,12.287,10.0,10.0
+929,30.964,10.0,4.0,76.0,191.003,471.0,1019.0,105.0,518.0,563.153,621.0,848.0,344.0,465.0,492.299,514.0,690.0,0.0,15.0,59.7361,118.0,409.0,289.0,277.902,15.4135,16.7913,12.3071,10.0,10.0
+930,30.998,10.0,4.0,76.0,191.13,471.0,1019.0,92.0,518.0,563.308,620.0,767.0,358.0,464.0,491.899,513.0,725.0,0.0,15.0,59.8763,119.0,422.0,289.0,278.453,16.7822,16.7353,12.3096,10.0,10.0
+931,31.031,10.0,4.0,77.0,191.755,472.0,1019.0,102.0,518.0,563.266,621.0,893.0,340.0,464.0,492.545,514.0,768.0,0.0,15.0,59.7653,118.0,438.0,288.0,277.142,14.1202,16.7061,12.2495,10.0,10.0
+932,31.064,10.0,4.0,76.0,190.598,470.0,1019.0,114.0,518.0,563.399,621.0,765.0,352.0,464.0,492.063,514.0,756.0,0.0,15.0,59.9062,118.0,401.0,289.0,278.256,17.0611,17.0331,12.2289,10.0,10.0
+933,31.098,10.0,4.0,74.0,188.848,468.0,1019.0,114.0,518.0,563.255,621.0,755.0,350.0,465.0,492.699,514.0,803.0,0.0,15.0,59.5546,118.0,399.0,288.0,277.013,16.9777,16.981,12.1831,10.0,10.0
+934,31.131,10.0,4.0,74.0,189.82,469.0,1019.0,82.0,519.0,563.611,622.0,741.0,362.0,465.0,492.786,514.0,652.0,0.0,15.0,59.6896,119.0,434.0,288.0,277.592,14.1208,16.6027,12.1807,10.0,10.0
+935,31.164,10.0,4.0,75.0,190.127,469.0,1019.0,94.0,518.0,563.219,621.0,788.0,359.0,465.0,492.468,514.0,654.0,0.0,15.0,59.6824,119.0,420.0,289.0,277.477,17.2782,16.7358,12.3429,10.0,10.0
+936,31.198,10.0,4.0,76.0,190.45,469.0,1019.0,128.0,519.0,563.638,621.0,756.0,341.0,465.0,492.732,514.0,670.0,0.0,15.0,59.7022,118.0,386.0,288.0,277.694,15.2373,16.4956,12.2194,10.0,10.0
+937,31.231,10.0,4.0,75.0,189.083,467.0,1019.0,118.0,518.0,563.792,622.0,810.0,358.0,465.0,492.757,514.0,758.0,0.0,15.0,60.0148,119.0,394.0,288.0,277.368,18.0876,16.6445,12.1259,10.0,10.0
+938,31.265,10.0,4.0,75.0,189.377,468.0,1019.0,96.0,518.0,563.529,621.0,765.0,358.0,464.0,492.519,514.0,732.0,0.0,15.0,59.7418,119.0,420.0,288.0,277.469,16.902,16.8458,12.0601,10.0,10.0
+939,31.298,10.0,4.0,74.0,189.089,468.0,1019.0,95.0,518.0,563.749,622.0,891.0,358.0,465.0,492.577,514.0,722.0,0.0,15.0,60.0644,119.0,420.0,288.0,277.767,14.2978,16.56,12.047,10.0,10.0
+940,31.331,10.0,4.0,74.0,188.9,468.0,1019.0,128.0,518.0,563.818,622.0,777.0,372.0,465.0,492.533,514.0,660.0,0.0,15.0,60.0231,120.0,388.0,288.0,277.498,16.4041,16.812,12.1481,10.0,10.0
+941,31.365,10.0,4.0,74.0,189.388,470.0,1019.0,115.0,518.0,563.703,621.0,764.0,332.0,465.0,492.862,514.0,672.0,0.0,15.0,59.8966,119.0,399.0,288.0,277.132,14.491,16.7578,12.0886,10.0,10.0
+942,31.398,10.0,4.0,74.0,188.341,467.0,1019.0,107.0,518.0,563.712,622.0,766.0,348.0,465.0,492.521,514.0,621.0,0.0,15.0,59.825,119.0,409.0,289.0,277.609,19.0007,16.6786,12.104,10.0,10.0
+943,31.431,10.0,4.0,76.0,190.567,470.0,1019.0,108.0,518.0,563.793,621.0,784.0,362.0,464.0,492.738,514.0,639.0,0.0,15.0,60.0169,119.0,407.0,288.0,277.093,17.3994,16.687,12.0811,10.0,10.0
+944,31.465,10.0,4.0,75.0,189.373,469.0,1019.0,102.0,518.0,563.74,621.0,792.0,362.0,465.0,492.99,515.0,641.0,0.0,15.0,59.774,119.0,412.0,288.0,277.207,14.6036,16.7569,12.1975,10.0,10.0
+945,31.498,10.0,4.0,75.0,189.142,469.0,1019.0,118.0,517.0,563.333,621.0,770.0,354.0,464.0,492.185,514.0,658.0,0.0,15.0,59.8319,119.0,394.0,289.0,277.49,16.9807,16.8608,12.2288,10.0,10.0
+946,31.532,10.0,4.0,75.0,190.006,470.0,1019.0,120.0,518.0,563.672,621.0,763.0,362.0,464.0,492.724,514.0,639.0,0.0,15.0,59.8653,119.0,397.0,288.0,276.823,14.8929,16.9094,12.3114,10.0,10.0
+947,31.565,10.0,4.0,75.0,189.012,468.0,1019.0,124.0,517.0,562.789,621.0,739.0,372.0,464.0,492.421,514.0,656.0,0.0,15.0,59.3093,118.0,391.0,289.0,276.999,15.8957,16.9334,12.3303,10.0,10.0
+948,31.598,10.0,4.0,76.0,189.557,468.0,1019.0,127.0,517.0,562.953,621.0,752.0,368.0,465.0,492.713,514.0,650.0,0.0,14.0,59.2183,119.0,388.0,288.0,277.066,16.3649,16.7043,12.1318,10.0,10.0
+949,31.632,10.0,4.0,75.0,189.575,469.0,1019.0,118.0,517.0,563.089,621.0,741.0,361.0,464.0,492.692,514.0,655.0,0.0,15.0,59.4338,119.0,394.0,288.0,276.919,14.5362,16.8908,12.206,10.0,10.0
+950,31.665,10.0,4.0,74.0,189.215,469.0,1019.0,108.0,517.0,563.191,622.0,770.0,334.0,464.0,492.29,514.0,663.0,0.0,15.0,59.4911,119.0,406.0,289.0,277.662,16.2624,16.8936,12.3005,10.0,10.0
+951,31.698,10.0,4.0,75.0,190.135,471.0,1019.0,71.0,517.0,562.75,621.0,784.0,370.0,465.0,492.639,514.0,653.0,0.0,14.0,59.1385,118.0,446.0,289.0,277.257,14.3173,16.9057,12.206,10.0,10.0
+952,31.732,10.0,4.0,75.0,188.935,468.0,1019.0,124.0,517.0,562.838,621.0,795.0,370.0,465.0,492.67,514.0,650.0,0.0,14.0,58.9889,118.0,394.0,289.0,277.014,16.3079,16.8132,12.0983,10.0,10.0
+953,31.765,10.0,4.0,75.0,189.394,469.0,1019.0,128.0,517.0,562.621,621.0,754.0,374.0,465.0,492.982,514.0,660.0,0.0,14.0,58.7437,118.0,388.0,288.0,276.616,16.6135,16.6839,12.0337,10.0,10.0
+954,31.798,10.0,4.0,74.0,189.281,469.0,1019.0,60.0,517.0,562.9,621.0,756.0,354.0,465.0,492.924,515.0,658.0,0.0,14.0,59.0869,119.0,459.0,288.0,276.483,14.5366,16.7484,12.136,10.0,10.0
+955,31.832,10.0,4.0,75.0,189.31,469.0,1019.0,122.0,517.0,562.837,621.0,770.0,360.0,465.0,492.716,514.0,654.0,0.0,15.0,59.1548,119.0,393.0,289.0,277.407,17.8707,16.6883,12.1919,10.0,10.0
+956,31.865,10.0,4.0,76.0,189.824,470.0,1019.0,114.0,517.0,562.964,621.0,778.0,354.0,465.0,492.857,514.0,657.0,0.0,14.0,59.081,118.0,402.0,288.0,276.771,15.4886,16.4717,12.1351,10.0,10.0
+957,31.899,10.0,4.0,73.0,187.347,465.0,1019.0,104.0,517.0,563.111,621.0,757.0,334.0,464.0,492.436,514.0,663.0,0.0,15.0,59.461,119.0,409.0,289.0,277.015,19.5501,16.7166,12.1272,10.0,10.0
+958,31.932,10.0,4.0,75.0,188.861,468.0,1019.0,99.0,517.0,562.995,621.0,747.0,366.0,464.0,492.521,514.0,664.0,0.0,15.0,59.3021,118.0,415.0,289.0,277.193,16.4517,16.6699,12.2314,10.0,10.0
+959,31.965,10.0,4.0,74.0,188.823,469.0,1019.0,118.0,517.0,562.64,620.0,762.0,352.0,465.0,492.83,514.0,653.0,0.0,15.0,59.0023,118.0,396.0,288.0,276.411,14.7049,16.704,12.2283,10.0,10.0
+960,31.999,10.0,4.0,75.0,189.429,470.0,1019.0,124.0,517.0,562.384,620.0,744.0,342.0,464.0,492.281,514.0,649.0,0.0,15.0,58.8288,118.0,392.0,289.0,277.159,17.783,16.7533,12.2057,10.0,10.0
+961,32.032,10.0,4.0,76.0,190.573,471.0,1019.0,116.0,517.0,562.731,621.0,795.0,362.0,464.0,492.635,514.0,654.0,0.0,15.0,59.1508,118.0,398.0,289.0,277.253,15.6434,16.7328,12.2289,10.0,10.0
+962,32.065,10.0,4.0,75.0,189.435,470.0,1019.0,85.0,517.0,562.863,621.0,746.0,359.0,465.0,492.638,514.0,648.0,0.0,14.0,59.1326,119.0,433.0,289.0,276.721,16.7802,16.7217,12.0809,10.0,10.0
+963,32.099,10.0,4.0,75.0,190.092,471.0,1019.0,97.0,517.0,563.176,621.0,755.0,366.0,463.0,492.237,514.0,688.0,0.0,15.0,59.6602,119.0,415.0,289.0,277.195,16.512,16.7068,12.143,10.0,10.0
+964,32.132,10.0,4.0,74.0,189.625,471.0,1019.0,119.0,517.0,563.323,621.0,769.0,368.0,464.0,492.599,514.0,656.0,0.0,15.0,59.4948,119.0,397.0,289.0,277.231,14.7647,16.6673,12.18,10.0,10.0
+965,32.165,10.0,4.0,74.0,188.905,469.0,1019.0,96.0,518.0,563.352,621.0,780.0,358.0,463.0,491.948,514.0,694.0,0.0,15.0,59.9511,119.0,416.0,289.0,277.768,16.6779,16.7402,12.2864,10.0,10.0
+966,32.199,10.0,4.0,75.0,189.912,471.0,1019.0,88.0,518.0,563.312,621.0,778.0,359.0,464.0,492.429,514.0,721.0,0.0,15.0,59.5594,119.0,428.0,289.0,277.301,14.5589,16.6377,12.1885,10.0,10.0
+967,32.232,10.0,4.0,73.0,187.904,467.0,1019.0,92.0,517.0,563.106,622.0,746.0,365.0,463.0,492.204,514.0,793.0,0.0,15.0,59.6129,119.0,423.0,289.0,277.48,19.0889,16.7703,12.2587,10.0,10.0
+968,32.266,10.0,4.0,74.0,188.645,469.0,1019.0,120.0,517.0,563.202,621.0,771.0,362.0,464.0,492.258,514.0,819.0,0.0,15.0,59.4561,119.0,396.0,289.0,277.371,16.8421,16.7606,12.1103,10.0,10.0
+969,32.299,10.0,4.0,73.0,188.595,469.0,1019.0,116.0,518.0,563.396,622.0,762.0,376.0,463.0,492.223,514.0,786.0,0.0,15.0,59.7772,120.0,396.0,289.0,277.851,13.9415,16.7091,12.1662,10.0,10.0
+970,32.332,10.0,4.0,73.0,187.98,468.0,1019.0,86.0,517.0,563.1,621.0,771.0,350.0,464.0,491.983,513.0,794.0,0.0,15.0,59.4717,119.0,431.0,289.0,277.672,15.5117,16.8353,11.9719,10.0,10.0
+971,32.366,10.0,4.0,74.0,188.803,469.0,1019.0,130.0,517.0,563.401,622.0,786.0,368.0,464.0,492.181,514.0,795.0,0.0,15.0,59.8459,119.0,386.0,289.0,277.576,14.4281,16.6009,12.0145,10.0,10.0
+972,32.399,10.0,4.0,73.0,187.48,467.0,1019.0,118.0,517.0,562.817,621.0,764.0,365.0,463.0,492.234,514.0,827.0,0.0,14.0,59.1577,119.0,398.0,289.0,277.631,17.737,16.57,12.144,10.0,10.0
+973,32.432,10.0,4.0,74.0,188.526,468.0,1019.0,102.0,517.0,563.316,622.0,747.0,360.0,464.0,492.509,514.0,650.0,0.0,15.0,59.6165,119.0,421.0,289.0,277.283,16.5522,16.7718,12.2064,10.0,10.0
+974,32.466,10.0,4.0,73.0,188.218,469.0,1019.0,90.0,517.0,563.437,622.0,767.0,344.0,464.0,492.63,514.0,736.0,0.0,15.0,59.5471,120.0,429.0,288.0,276.993,14.8103,16.7606,12.2338,10.0,10.0
+975,32.499,10.0,4.0,73.0,188.304,469.0,1019.0,99.0,517.0,563.214,622.0,762.0,348.0,463.0,492.217,514.0,667.0,0.0,15.0,59.6677,120.0,415.0,289.0,276.797,16.4168,16.8386,12.1261,10.0,10.0
+976,32.533,10.0,4.0,74.0,189.353,471.0,1019.0,120.0,517.0,563.354,621.0,767.0,361.0,463.0,492.467,514.0,758.0,0.0,15.0,59.4934,119.0,396.0,289.0,276.982,14.605,16.7894,12.2312,10.0,10.0
+977,32.566,10.0,4.0,74.0,188.867,469.0,1019.0,110.0,517.0,562.95,621.0,755.0,377.0,464.0,492.616,514.0,765.0,0.0,15.0,59.2175,119.0,404.0,289.0,277.125,16.3436,16.6035,12.1557,10.0,10.0
+978,32.599,10.0,4.0,75.0,189.078,469.0,1019.0,106.0,517.0,562.783,621.0,770.0,358.0,465.0,492.8,514.0,707.0,0.0,14.0,58.9299,118.0,411.0,289.0,277.082,17.3474,16.5369,12.0412,10.0,10.0
+979,32.633,10.0,4.0,74.0,189.081,469.0,1019.0,132.0,517.0,563.008,621.0,794.0,364.0,465.0,493.208,515.0,698.0,0.0,15.0,59.0863,118.0,382.0,288.0,276.111,14.1888,16.4727,11.9655,10.0,10.0
+980,32.666,10.0,4.0,74.0,188.551,469.0,1019.0,119.0,517.0,562.732,620.0,755.0,342.0,465.0,492.632,514.0,754.0,0.0,15.0,58.9403,118.0,396.0,289.0,276.719,16.4341,16.6717,12.0385,10.0,10.0
+981,32.699,10.0,4.0,74.0,189.704,471.0,1019.0,114.0,517.0,562.875,621.0,760.0,362.0,464.0,492.553,514.0,778.0,0.0,15.0,59.1744,118.0,400.0,289.0,277.257,14.3715,16.5528,12.1618,10.0,10.0
+982,32.733,10.0,4.0,75.0,188.724,468.0,1019.0,91.0,516.0,562.338,621.0,748.0,359.0,464.0,492.527,514.0,782.0,0.0,15.0,59.0814,118.0,427.0,289.0,276.523,19.5377,17.0567,12.4784,10.0,10.0
+983,32.766,10.0,4.0,74.0,188.412,467.0,1019.0,119.0,517.0,562.54,621.0,748.0,340.0,464.0,492.694,514.0,759.0,0.0,15.0,59.0292,118.0,399.0,289.0,276.893,20.0399,17.1612,12.3701,10.0,10.0
+984,32.799,10.0,4.0,74.0,188.948,469.0,1019.0,145.0,517.0,562.32,621.0,763.0,370.0,465.0,493.022,515.0,794.0,0.0,14.0,58.618,118.0,370.0,288.0,276.614,13.9787,16.5994,12.2091,10.0,10.0
+985,32.833,10.0,4.0,74.0,188.476,469.0,1019.0,90.0,517.0,562.586,621.0,749.0,365.0,464.0,492.903,515.0,803.0,0.0,14.0,58.9965,119.0,423.0,288.0,276.208,17.3286,16.6776,12.1208,10.0,10.0
+986,32.866,10.0,4.0,75.0,189.189,470.0,1019.0,124.0,517.0,562.532,621.0,768.0,364.0,464.0,492.929,515.0,760.0,0.0,14.0,58.9973,119.0,392.0,288.0,275.834,15.8079,16.7038,12.0686,10.0,10.0
+987,32.9,10.0,4.0,73.0,187.445,468.0,1019.0,100.0,516.0,562.396,621.0,756.0,358.0,464.0,492.702,514.0,696.0,0.0,14.0,58.9716,119.0,414.0,289.0,276.475,17.3679,16.6331,12.1461,10.0,10.0
+988,32.933,10.0,4.0,74.0,188.654,469.0,1019.0,118.0,516.0,562.519,621.0,755.0,366.0,465.0,492.865,514.0,679.0,0.0,14.0,58.9656,119.0,406.0,288.0,276.274,16.5604,16.6834,12.1228,10.0,10.0
+989,32.966,10.0,4.0,73.0,188.146,469.0,1019.0,118.0,517.0,562.849,621.0,763.0,364.0,464.0,492.854,515.0,794.0,0.0,14.0,59.168,119.0,398.0,288.0,276.576,14.6653,16.9296,12.2891,10.0,10.0
+990,33.0,10.0,4.0,74.0,188.267,468.0,1019.0,96.0,517.0,562.662,621.0,737.0,359.0,463.0,492.384,514.0,685.0,0.0,14.0,59.0818,119.0,421.0,289.0,277.068,17.6286,16.7169,12.252,10.0,10.0
+991,33.033,10.0,4.0,74.0,189.119,470.0,1019.0,96.0,517.0,562.732,621.0,760.0,351.0,464.0,492.8,514.0,641.0,0.0,14.0,59.0421,119.0,426.0,288.0,276.67,15.2982,16.6807,12.1522,10.0,10.0
+992,33.066,10.0,4.0,72.0,187.435,468.0,1019.0,107.0,517.0,562.547,621.0,760.0,329.0,464.0,492.681,514.0,638.0,0.0,14.0,58.6948,118.0,411.0,289.0,277.134,21.6239,17.0474,12.1434,10.0,10.0
+993,33.1,10.0,4.0,72.0,187.362,467.0,1019.0,134.0,517.0,562.314,621.0,773.0,355.0,465.0,493.035,515.0,654.0,0.0,14.0,58.5397,118.0,381.0,288.0,276.317,19.6149,16.8902,12.2501,10.0,10.0
+994,33.133,10.0,4.0,72.0,187.391,468.0,1019.0,92.0,517.0,562.486,621.0,765.0,360.0,465.0,493.052,515.0,655.0,0.0,14.0,58.5048,118.0,424.0,288.0,276.578,14.1735,16.687,12.1219,10.0,10.0
+995,33.166,10.0,4.0,73.0,188.18,469.0,1019.0,102.0,516.0,562.799,621.0,761.0,360.0,464.0,492.63,514.0,648.0,0.0,14.0,59.1031,119.0,415.0,289.0,276.731,16.9681,16.6404,12.0525,10.0,10.0
+996,33.2,10.0,4.0,74.0,189.216,471.0,1019.0,107.0,517.0,562.783,621.0,759.0,360.0,464.0,492.862,514.0,648.0,0.0,14.0,58.8643,119.0,411.0,288.0,276.512,15.8266,16.8266,12.2103,10.0,10.0
+997,33.233,10.0,4.0,73.0,188.197,469.0,1019.0,97.0,517.0,562.392,621.0,756.0,352.0,464.0,492.969,515.0,652.0,0.0,14.0,58.6309,118.0,419.0,288.0,276.104,16.5482,16.7487,12.3424,10.0,10.0
+998,33.267,10.0,4.0,72.0,187.16,467.0,1019.0,79.0,516.0,562.744,622.0,768.0,340.0,464.0,492.986,514.0,646.0,0.0,14.0,58.8236,119.0,438.0,288.0,276.287,16.061,16.6188,12.1887,10.0,10.0
+999,33.3,10.0,4.0,73.0,188.047,468.0,1019.0,107.0,517.0,562.675,621.0,758.0,364.0,465.0,493.117,515.0,659.0,0.0,14.0,58.7958,119.0,413.0,288.0,275.921,13.9383,16.5067,12.1269,10.0,10.0
+1000,33.333,10.0,4.0,73.0,188.421,470.0,1019.0,134.0,517.0,562.622,621.0,760.0,358.0,464.0,492.655,514.0,678.0,0.0,14.0,58.7745,119.0,383.0,289.0,276.952,15.7355,16.6034,12.0868,10.0,10.0
+1001,33.367,10.0,4.0,73.0,189.059,472.0,1019.0,107.0,517.0,562.666,621.0,762.0,369.0,464.0,492.947,515.0,655.0,0.0,14.0,58.8995,119.0,407.0,288.0,276.29,14.3039,16.861,12.0755,10.0,10.0
+1002,33.4,10.0,4.0,73.0,188.494,471.0,1019.0,86.0,517.0,563.092,622.0,746.0,348.0,463.0,492.574,514.0,650.0,0.0,14.0,59.2941,120.0,433.0,288.0,277.004,17.1013,16.8535,12.2253,10.0,10.0
+1003,33.433,10.0,4.0,73.0,188.694,470.0,1019.0,86.0,517.0,562.868,622.0,775.0,359.0,464.0,493.046,515.0,674.0,0.0,14.0,59.1544,119.0,432.0,288.0,275.851,15.5996,16.6087,12.2493,10.0,10.0
+1004,33.467,10.0,4.0,74.0,189.526,472.0,1019.0,126.0,517.0,562.637,621.0,783.0,361.0,464.0,493.13,515.0,658.0,0.0,14.0,58.7537,119.0,392.0,288.0,275.929,13.984,16.6817,12.1329,10.0,10.0
+1005,33.5,10.0,4.0,74.0,189.631,472.0,1019.0,114.0,517.0,562.751,621.0,772.0,355.0,464.0,492.918,514.0,679.0,0.0,14.0,59.0331,119.0,399.0,288.0,276.372,15.6416,16.6259,12.0785,10.0,10.0
+1006,33.534,10.0,4.0,74.0,189.908,473.0,1019.0,96.0,517.0,563.092,622.0,766.0,366.0,464.0,493.462,515.0,640.0,0.0,14.0,59.0623,119.0,422.0,288.0,276.152,14.4572,16.7088,12.0967,10.0,10.0
+1007,33.567,10.0,4.0,73.0,188.517,470.0,1019.0,106.0,516.0,562.773,622.0,789.0,354.0,464.0,493.231,515.0,651.0,0.0,14.0,59.0009,120.0,408.0,288.0,275.393,17.487,17.0171,12.24,10.0,10.0
+1008,33.6,10.0,4.0,74.0,189.019,470.0,1019.0,118.0,516.0,562.1,621.0,749.0,366.0,465.0,493.591,515.0,658.0,0.0,13.0,58.2725,118.0,412.0,288.0,275.069,18.4585,17.1841,12.2914,10.0,10.0
+1009,33.634,10.0,4.0,74.0,189.279,471.0,1019.0,114.0,516.0,562.17,621.0,760.0,372.0,465.0,493.561,515.0,732.0,0.0,14.0,58.4372,118.0,401.0,287.0,275.054,14.7249,16.8501,12.0793,10.0,10.0
+1010,33.667,10.0,4.0,74.0,189.179,471.0,1019.0,93.0,517.0,562.053,620.0,767.0,359.0,464.0,493.288,515.0,713.0,0.0,14.0,58.2312,118.0,431.0,288.0,276.118,17.4071,16.6751,12.0761,10.0,10.0
+1011,33.7,10.0,4.0,74.0,189.545,472.0,1019.0,118.0,516.0,562.432,622.0,754.0,349.0,465.0,493.559,515.0,740.0,0.0,14.0,58.6103,119.0,398.0,288.0,275.224,14.9805,16.5903,12.1984,10.0,10.0
+1012,33.734,10.0,4.0,74.0,189.166,471.0,1019.0,132.0,516.0,562.415,622.0,764.0,372.0,465.0,493.522,515.0,654.0,0.0,14.0,58.4998,119.0,387.0,288.0,275.46,17.385,16.844,12.1236,10.0,10.0
+1013,33.767,10.0,4.0,74.0,188.716,470.0,1019.0,105.0,516.0,562.751,622.0,779.0,362.0,465.0,493.469,515.0,637.0,0.0,14.0,58.8759,119.0,408.0,288.0,275.539,16.9288,16.8763,12.1509,10.0,10.0
+1014,33.8,10.0,4.0,74.0,189.282,471.0,1019.0,119.0,517.0,562.68,622.0,764.0,362.0,464.0,493.439,515.0,672.0,0.0,14.0,58.7621,119.0,397.0,288.0,275.498,15.1407,16.9074,12.0906,10.0,10.0
+1015,33.834,10.0,4.0,73.0,188.508,470.0,1019.0,101.0,516.0,562.286,621.0,748.0,360.0,464.0,493.154,515.0,661.0,0.0,14.0,58.6287,119.0,416.0,288.0,275.831,16.625,16.9229,12.0681,10.0,10.0
+1016,33.867,10.0,4.0,74.0,189.701,473.0,1019.0,119.0,516.0,562.382,621.0,775.0,368.0,464.0,493.315,515.0,656.0,0.0,14.0,58.5796,119.0,396.0,288.0,275.521,14.695,16.8387,12.2174,10.0,10.0
+1017,33.901,10.0,4.0,73.0,188.415,470.0,1019.0,114.0,516.0,562.446,621.0,757.0,365.0,464.0,493.185,515.0,646.0,0.0,14.0,58.8042,119.0,400.0,288.0,275.544,19.175,16.9184,12.2761,10.0,10.0
+1018,33.934,10.0,4.0,73.0,187.926,469.0,1019.0,100.0,516.0,562.355,621.0,790.0,358.0,464.0,493.292,515.0,641.0,0.0,14.0,58.471,119.0,415.0,288.0,275.828,21.1918,17.1376,12.2494,10.0,10.0
+1019,33.967,10.0,4.0,73.0,188.741,471.0,1019.0,102.0,516.0,562.513,622.0,737.0,345.0,465.0,493.508,515.0,632.0,0.0,14.0,58.7334,119.0,413.0,288.0,275.344,15.1134,16.6067,12.0664,10.0,10.0
+1020,34.001,10.0,4.0,74.0,189.181,471.0,1019.0,118.0,516.0,562.211,621.0,750.0,368.0,464.0,493.059,515.0,621.0,0.0,14.0,58.5753,119.0,398.0,288.0,275.804,16.7486,16.561,12.0215,10.0,10.0
+1021,34.034,10.0,4.0,75.0,190.216,472.0,1019.0,122.0,516.0,562.258,621.0,748.0,364.0,464.0,493.461,515.0,645.0,0.0,14.0,58.5782,119.0,392.0,288.0,275.069,14.0917,16.445,12.0661,10.0,10.0
+1022,34.067,10.0,4.0,73.0,188.753,471.0,1019.0,64.0,516.0,562.043,621.0,762.0,361.0,464.0,492.96,514.0,635.0,0.0,14.0,58.431,119.0,451.0,288.0,275.623,15.8414,16.6419,12.1436,10.0,10.0
+1023,34.101,10.0,4.0,73.0,189.345,472.0,1019.0,102.0,516.0,562.325,621.0,797.0,363.0,464.0,493.049,515.0,626.0,0.0,14.0,58.7684,119.0,411.0,288.0,275.117,16.1751,16.871,12.1841,10.0,10.0
+1024,34.134,10.0,4.0,73.0,189.24,472.0,1019.0,124.0,516.0,562.721,622.0,779.0,362.0,464.0,493.095,515.0,637.0,0.0,14.0,59.1279,120.0,391.0,288.0,275.525,14.2911,16.8499,12.1561,10.0,10.0
+1025,34.167,10.0,4.0,73.0,188.642,471.0,1019.0,124.0,516.0,562.71,622.0,782.0,351.0,463.0,492.552,514.0,638.0,0.0,14.0,59.2894,120.0,389.0,289.0,276.269,15.6567,17.0249,12.2104,10.0,10.0
+1026,34.201,10.0,4.0,73.0,188.451,470.0,1019.0,86.0,516.0,563.063,622.0,760.0,326.0,463.0,492.781,514.0,644.0,0.0,14.0,59.4765,120.0,428.0,288.0,275.831,14.1776,16.8165,12.0365,10.0,10.0
+1027,34.234,10.0,4.0,73.0,187.932,469.0,1019.0,108.0,517.0,562.955,622.0,747.0,344.0,463.0,492.726,514.0,684.0,0.0,14.0,59.3797,120.0,409.0,288.0,276.404,17.2403,16.6211,12.1849,10.0,10.0
+1028,34.268,10.0,4.0,73.0,188.032,469.0,1019.0,92.0,516.0,562.85,622.0,761.0,365.0,463.0,492.619,514.0,646.0,0.0,14.0,59.3312,120.0,426.0,288.0,276.359,19.7129,16.6697,12.1477,10.0,10.0
+1029,34.301,10.0,4.0,73.0,188.442,471.0,1019.0,102.0,517.0,562.822,622.0,763.0,361.0,462.0,492.594,514.0,654.0,0.0,14.0,59.4741,121.0,410.0,289.0,275.968,14.2783,16.6626,12.1829,10.0,10.0
+1030,34.334,10.0,4.0,73.0,187.733,470.0,1019.0,82.0,517.0,562.875,622.0,766.0,365.0,462.0,492.157,514.0,692.0,0.0,14.0,59.5309,120.0,434.0,289.0,276.994,15.4839,16.4599,12.137,10.0,10.0
+1031,34.368,10.0,4.0,72.0,188.094,471.0,1019.0,107.0,517.0,562.84,622.0,762.0,347.0,463.0,492.355,514.0,691.0,0.0,14.0,59.4566,120.0,407.0,289.0,276.724,13.7179,16.615,11.9596,10.0,10.0
+1032,34.401,10.0,4.0,72.0,186.8,469.0,1019.0,128.0,516.0,562.909,623.0,770.0,348.0,462.0,491.866,514.0,663.0,0.0,14.0,59.6733,121.0,389.0,289.0,277.065,16.5272,16.6763,12.0458,10.0,10.0
+1033,34.434,10.0,4.0,72.0,187.195,470.0,1019.0,95.0,516.0,562.601,622.0,752.0,344.0,462.0,492.022,514.0,729.0,0.0,14.0,59.4439,121.0,419.0,289.0,276.79,15.8144,16.7234,12.0869,10.0,10.0
+1034,34.468,10.0,4.0,73.0,188.054,471.0,1019.0,111.0,516.0,562.9,623.0,737.0,361.0,462.0,492.212,514.0,646.0,0.0,14.0,59.5572,121.0,405.0,289.0,276.522,14.2924,16.3657,12.0054,10.0,10.0
+1035,34.501,10.0,4.0,73.0,187.745,470.0,1019.0,114.0,516.0,562.521,622.0,766.0,366.0,462.0,491.892,513.0,680.0,0.0,14.0,59.4514,121.0,402.0,289.0,277.085,16.1729,16.5393,11.9689,10.0,10.0
+1036,34.535,10.0,4.0,73.0,187.542,470.0,1019.0,106.0,516.0,562.613,621.0,776.0,366.0,462.0,492.227,514.0,749.0,0.0,14.0,59.3754,120.0,408.0,289.0,276.499,14.7245,16.6827,12.131,10.0,10.0
+1037,34.568,10.0,4.0,72.0,186.89,468.0,1019.0,118.0,516.0,562.915,623.0,771.0,360.0,462.0,491.948,514.0,779.0,0.0,14.0,59.8272,121.0,396.0,289.0,276.759,17.0698,16.684,12.1447,10.0,10.0
+1038,34.601,10.0,4.0,73.0,187.591,468.0,1019.0,110.0,516.0,563.064,622.0,752.0,358.0,462.0,491.981,514.0,804.0,0.0,14.0,59.7768,121.0,409.0,289.0,277.082,16.1899,16.6537,12.0915,10.0,10.0
+1039,34.635,10.0,4.0,73.0,187.411,469.0,1019.0,110.0,516.0,562.825,622.0,776.0,360.0,462.0,492.316,514.0,821.0,0.0,14.0,59.6681,121.0,405.0,289.0,276.645,14.059,16.5677,12.1377,10.0,10.0
+1040,34.668,10.0,4.0,73.0,187.54,469.0,1019.0,98.0,517.0,563.425,623.0,765.0,362.0,462.0,491.938,514.0,800.0,0.0,15.0,60.2564,121.0,416.0,289.0,276.609,16.4309,16.876,12.2167,10.0,10.0
+1041,34.701,10.0,4.0,73.0,187.647,471.0,1019.0,132.0,517.0,563.259,623.0,778.0,342.0,462.0,492.289,514.0,789.0,0.0,14.0,60.1359,121.0,382.0,289.0,276.2,14.3888,16.6434,12.2219,10.0,10.0
+1042,34.735,10.0,4.0,74.0,188.53,471.0,1019.0,92.0,516.0,562.52,622.0,783.0,362.0,462.0,492.154,514.0,660.0,0.0,14.0,59.5365,121.0,424.0,289.0,276.46,17.7428,16.8307,12.2511,10.0,10.0
+1043,34.768,10.0,4.0,73.0,188.19,471.0,1019.0,89.0,516.0,562.587,622.0,762.0,355.0,462.0,492.17,514.0,817.0,0.0,14.0,59.5734,121.0,425.0,289.0,276.507,17.3407,16.8164,12.2197,10.0,10.0
+1044,34.801,10.0,4.0,74.0,188.388,471.0,1019.0,120.0,516.0,562.876,623.0,754.0,365.0,462.0,492.174,514.0,821.0,0.0,14.0,59.7492,122.0,397.0,289.0,276.315,14.0542,16.789,12.1369,10.0,10.0
+1045,34.835,10.0,4.0,74.0,188.688,470.0,1019.0,104.0,516.0,562.676,622.0,755.0,358.0,462.0,491.989,514.0,816.0,0.0,15.0,59.9812,121.0,408.0,289.0,276.612,15.8333,16.7311,12.3203,10.0,10.0
+1046,34.868,10.0,4.0,73.0,188.11,470.0,1019.0,80.0,516.0,562.779,622.0,774.0,345.0,462.0,492.53,515.0,803.0,0.0,14.0,59.8151,121.0,436.0,288.0,275.819,14.2751,16.56,12.1483,10.0,10.0
+1047,34.902,10.0,4.0,73.0,187.292,470.0,1019.0,106.0,516.0,562.17,622.0,746.0,353.0,462.0,492.094,514.0,799.0,0.0,14.0,59.556,121.0,409.0,289.0,276.651,16.4238,17.103,12.4213,10.0,10.0
+1048,34.935,10.0,4.0,73.0,187.323,469.0,1019.0,101.0,516.0,562.112,622.0,837.0,348.0,462.0,492.18,514.0,702.0,0.0,14.0,59.474,120.0,417.0,289.0,276.622,15.4636,16.8467,12.3593,10.0,10.0
+1049,34.968,10.0,4.0,73.0,187.466,470.0,1019.0,92.0,516.0,562.318,622.0,765.0,364.0,462.0,492.111,514.0,785.0,0.0,14.0,59.7398,121.0,421.0,289.0,276.261,14.69,17.1031,12.476,10.0,10.0
+1050,35.002,10.0,4.0,73.0,186.972,468.0,1019.0,95.0,516.0,562.076,622.0,745.0,337.0,462.0,491.998,514.0,815.0,0.0,14.0,59.3612,121.0,422.0,289.0,276.937,16.4339,16.8594,12.1758,10.0,10.0
+1051,35.035,10.0,4.0,74.0,188.163,470.0,1019.0,89.0,516.0,562.007,622.0,764.0,362.0,462.0,492.18,514.0,745.0,0.0,14.0,59.3864,121.0,429.0,289.0,276.157,14.1307,16.5935,12.2345,10.0,10.0
+1052,35.068,10.0,4.0,73.0,186.846,468.0,1019.0,124.0,516.0,562.148,622.0,765.0,342.0,462.0,491.918,514.0,703.0,0.0,14.0,59.4274,121.0,394.0,290.0,276.559,15.0739,16.7841,12.1853,10.0,10.0
+1053,35.102,10.0,4.0,73.0,187.853,469.0,1019.0,124.0,516.0,561.874,622.0,761.0,308.0,462.0,492.326,514.0,710.0,0.0,14.0,59.0429,120.0,388.0,289.0,276.537,15.7631,16.7073,12.1366,10.0,10.0
+1054,35.135,10.0,4.0,73.0,187.501,470.0,1019.0,98.0,516.0,562.019,622.0,758.0,350.0,462.0,492.359,514.0,764.0,0.0,14.0,58.9905,120.0,421.0,289.0,276.42,14.7936,16.9513,12.1248,10.0,10.0
+1055,35.168,10.0,4.0,73.0,187.262,469.0,1019.0,108.0,516.0,561.719,621.0,746.0,380.0,462.0,491.978,514.0,828.0,0.0,14.0,58.9947,120.0,408.0,289.0,276.862,16.2993,16.8078,12.0602,10.0,10.0
+1056,35.202,10.0,4.0,73.0,187.461,470.0,1019.0,128.0,516.0,561.975,622.0,729.0,336.0,462.0,492.314,514.0,807.0,0.0,14.0,58.9267,120.0,390.0,289.0,276.31,14.04,16.5299,12.0939,10.0,10.0
+1057,35.235,10.0,4.0,73.0,186.579,467.0,1019.0,124.0,516.0,561.743,621.0,756.0,342.0,462.0,492.026,514.0,765.0,0.0,14.0,58.8549,120.0,390.0,289.0,276.42,19.2341,16.6611,12.0794,10.0,10.0
+1058,35.269,10.0,4.0,73.0,186.504,467.0,1019.0,91.0,516.0,562.302,622.0,750.0,347.0,462.0,492.343,514.0,799.0,0.0,14.0,59.2112,121.0,425.0,289.0,276.981,17.324,16.5918,12.0993,10.0,10.0
+1059,35.302,10.0,4.0,72.0,186.839,469.0,1019.0,114.0,516.0,561.992,621.0,767.0,344.0,462.0,492.458,514.0,821.0,0.0,14.0,58.9145,120.0,402.0,289.0,276.091,13.0677,16.5238,11.9895,10.0,10.0
+1060,35.335,10.0,4.0,72.0,186.586,468.0,1019.0,107.0,516.0,561.909,622.0,780.0,366.0,462.0,492.069,514.0,814.0,0.0,14.0,59.0356,121.0,408.0,289.0,276.752,15.7428,16.7245,12.1383,10.0,10.0
+1061,35.369,10.0,4.0,73.0,186.9,468.0,1019.0,105.0,516.0,562.259,622.0,759.0,358.0,463.0,492.51,514.0,807.0,0.0,14.0,59.2418,121.0,409.0,289.0,276.03,14.4818,16.597,12.0421,10.0,10.0
+1062,35.402,10.0,4.0,73.0,187.634,469.0,1019.0,93.0,516.0,561.657,621.0,750.0,362.0,463.0,492.441,514.0,786.0,0.0,14.0,58.5918,120.0,424.0,289.0,276.473,16.0004,16.4319,12.0963,10.0,10.0
+1063,35.435,10.0,4.0,74.0,187.825,469.0,1019.0,114.0,516.0,561.603,622.0,756.0,356.0,463.0,492.739,514.0,779.0,0.0,14.0,58.653,120.0,402.0,288.0,275.312,14.4811,16.3573,11.9863,10.0,10.0
+1064,35.469,10.0,4.0,73.0,187.463,469.0,1019.0,115.0,516.0,562.018,622.0,767.0,354.0,463.0,492.662,514.0,736.0,0.0,14.0,58.8926,120.0,401.0,289.0,275.877,14.4081,16.4122,11.8539,10.0,10.0
+1065,35.502,10.0,4.0,74.0,187.606,469.0,1019.0,118.0,516.0,561.972,622.0,770.0,348.0,463.0,492.471,514.0,786.0,0.0,14.0,58.9697,120.0,395.0,289.0,276.348,15.5721,16.6084,11.9889,10.0,10.0
+1066,35.536,10.0,4.0,74.0,187.723,468.0,1019.0,87.0,516.0,562.201,622.0,764.0,352.0,463.0,492.621,514.0,762.0,0.0,14.0,59.0022,120.0,429.0,289.0,276.799,13.6398,16.3913,12.0246,10.0,10.0
+1067,35.569,10.0,4.0,74.0,186.984,467.0,1019.0,106.0,516.0,561.926,622.0,760.0,362.0,462.0,492.402,514.0,672.0,0.0,14.0,59.0473,121.0,407.0,289.0,276.235,16.1908,16.482,12.0726,10.0,10.0
+1068,35.602,10.0,4.0,74.0,186.717,465.0,1019.0,108.0,516.0,561.918,622.0,767.0,352.0,463.0,492.567,514.0,675.0,0.0,14.0,58.6937,120.0,405.0,289.0,276.61,15.6545,16.4907,11.9777,10.0,10.0
+1069,35.636,10.0,4.0,73.0,186.093,466.0,1019.0,108.0,516.0,561.772,622.0,767.0,350.0,462.0,492.47,514.0,660.0,0.0,14.0,58.8412,121.0,405.0,289.0,276.048,13.7603,16.4844,12.0414,10.0,10.0
+1070,35.669,10.0,4.0,73.0,186.631,466.0,1019.0,88.0,516.0,561.703,622.0,766.0,352.0,462.0,492.263,514.0,678.0,0.0,14.0,58.8225,121.0,429.0,289.0,276.175,15.1359,16.5307,12.1076,10.0,10.0
+1071,35.702,10.0,4.0,73.0,186.788,467.0,1019.0,98.0,516.0,561.627,622.0,794.0,334.0,462.0,492.506,514.0,666.0,0.0,14.0,58.7131,120.0,418.0,289.0,275.377,13.8332,16.3794,12.121,10.0,10.0
+1072,35.736,10.0,4.0,73.0,185.606,464.0,1019.0,106.0,516.0,561.819,621.0,746.0,347.0,462.0,492.399,514.0,680.0,0.0,14.0,58.7445,120.0,409.0,289.0,275.9,15.1675,16.5042,11.9669,10.0,10.0
+1073,35.769,10.0,4.0,74.0,186.479,466.0,1019.0,90.0,516.0,562.109,622.0,766.0,338.0,462.0,492.316,514.0,671.0,0.0,14.0,59.133,121.0,422.0,289.0,276.383,15.9465,16.3814,12.0946,10.0,10.0
+1074,35.802,10.0,4.0,73.0,186.336,466.0,1019.0,96.0,516.0,562.414,622.0,752.0,318.0,462.0,492.475,514.0,670.0,0.0,14.0,59.2632,121.0,421.0,288.0,275.873,14.6493,16.6536,12.1157,10.0,10.0
+1075,35.836,10.0,4.0,73.0,186.501,467.0,1019.0,113.0,516.0,562.198,623.0,762.0,362.0,462.0,492.032,514.0,666.0,0.0,14.0,59.3744,121.0,402.0,289.0,276.621,16.198,16.7333,12.0373,10.0,10.0
+1076,35.869,10.0,4.0,74.0,187.032,468.0,1019.0,106.0,516.0,562.376,623.0,785.0,352.0,462.0,492.445,514.0,760.0,0.0,14.0,59.2508,122.0,408.0,289.0,276.22,14.244,16.6039,12.1355,10.0,10.0
+1077,35.903,10.0,4.0,73.0,185.818,466.0,1019.0,107.0,516.0,561.781,622.0,761.0,362.0,462.0,492.392,514.0,686.0,0.0,14.0,58.8974,121.0,405.0,289.0,276.221,15.8306,16.6696,12.2493,10.0,10.0
+1078,35.936,10.0,4.0,72.0,185.53,465.0,1019.0,110.0,516.0,562.1,623.0,782.0,352.0,463.0,492.818,515.0,649.0,0.0,13.0,58.8666,121.0,407.0,288.0,275.904,16.6395,16.7339,12.106,10.0,10.0
+1079,35.969,10.0,4.0,72.0,185.549,466.0,1019.0,106.0,516.0,562.359,623.0,761.0,352.0,462.0,492.209,514.0,655.0,0.0,14.0,59.445,121.0,410.0,289.0,276.534,13.4595,16.492,12.114,10.0,10.0
+1080,36.003,10.0,4.0,73.0,185.963,466.0,1019.0,120.0,516.0,562.488,623.0,752.0,359.0,461.0,491.99,514.0,660.0,0.0,14.0,59.3564,122.0,397.0,289.0,276.914,14.4734,16.5273,12.1529,10.0,10.0
+1081,36.036,10.0,4.0,73.0,186.662,467.0,1019.0,106.0,516.0,562.703,623.0,774.0,364.0,462.0,492.315,514.0,653.0,0.0,14.0,59.5875,122.0,408.0,289.0,276.424,13.78,16.5377,12.1081,10.0,10.0
+1082,36.069,10.0,4.0,72.0,184.877,464.0,1019.0,91.0,516.0,562.278,623.0,794.0,342.0,462.0,492.398,514.0,643.0,0.0,14.0,59.0814,121.0,425.0,289.0,276.42,16.4401,16.6466,12.1151,10.0,10.0
+1083,36.103,10.0,4.0,73.0,185.462,465.0,1019.0,117.0,516.0,562.477,623.0,756.0,349.0,462.0,492.577,514.0,655.0,0.0,14.0,59.323,122.0,399.0,288.0,275.781,16.3047,16.748,12.0742,10.0,10.0
+1084,36.136,10.0,4.0,72.0,185.42,467.0,1019.0,124.0,516.0,562.8,623.0,766.0,361.0,462.0,492.484,514.0,653.0,0.0,14.0,59.531,122.0,392.0,289.0,276.612,13.4508,16.5628,11.9985,10.0,10.0
+1085,36.169,10.0,4.0,73.0,185.669,467.0,1019.0,99.0,516.0,562.046,623.0,780.0,362.0,462.0,492.231,514.0,652.0,0.0,14.0,59.2084,122.0,413.0,289.0,276.706,15.635,16.6193,12.1388,10.0,10.0
+1086,36.203,10.0,4.0,73.0,186.115,467.0,1019.0,82.0,516.0,562.866,624.0,753.0,349.0,462.0,492.692,515.0,662.0,0.0,14.0,59.5444,122.0,434.0,288.0,276.067,14.6198,16.6657,12.1394,10.0,10.0
+1087,36.236,10.0,4.0,72.0,184.657,465.0,1019.0,102.0,516.0,562.064,623.0,760.0,334.0,462.0,492.265,514.0,657.0,0.0,14.0,59.0633,121.0,412.0,289.0,276.681,15.9141,16.7132,12.2128,10.0,10.0
+1088,36.27,10.0,4.0,72.0,185.617,466.0,1019.0,108.0,516.0,562.349,623.0,757.0,366.0,462.0,492.476,514.0,670.0,0.0,14.0,59.1437,122.0,406.0,289.0,276.274,14.7749,16.6069,12.019,10.0,10.0
+1089,36.303,10.0,4.0,73.0,186.089,467.0,1019.0,110.0,516.0,562.707,623.0,794.0,364.0,462.0,492.458,514.0,648.0,0.0,14.0,59.4777,122.0,403.0,289.0,276.303,13.5727,16.4613,12.0207,10.0,10.0
+1090,36.336,10.0,4.0,72.0,185.214,465.0,1019.0,102.0,516.0,562.595,623.0,748.0,328.0,462.0,491.961,514.0,646.0,0.0,14.0,59.5383,122.0,414.0,289.0,276.963,14.5598,16.419,12.042,10.0,10.0
+1091,36.37,10.0,4.0,72.0,184.836,466.0,1019.0,92.0,516.0,562.447,623.0,758.0,364.0,462.0,492.403,514.0,646.0,0.0,14.0,59.3794,122.0,424.0,289.0,276.02,13.6592,16.4548,12.0684,10.0,10.0
+1092,36.403,10.0,4.0,73.0,185.229,465.0,1019.0,114.0,516.0,562.306,622.0,777.0,356.0,462.0,492.122,514.0,670.0,0.0,14.0,59.1188,121.0,402.0,289.0,276.998,16.2508,16.6493,12.1845,10.0,10.0
+1093,36.436,10.0,4.0,72.0,184.401,463.0,1019.0,124.0,516.0,562.561,623.0,764.0,348.0,462.0,492.553,514.0,664.0,0.0,14.0,59.2189,122.0,392.0,289.0,276.333,18.9504,16.8096,12.2625,10.0,10.0
+1094,36.47,10.0,4.0,72.0,185.195,465.0,1019.0,86.0,516.0,562.24,623.0,753.0,362.0,462.0,492.578,514.0,652.0,0.0,14.0,58.9877,121.0,431.0,289.0,276.184,13.9072,16.6557,12.0292,10.0,10.0
+1095,36.503,10.0,4.0,73.0,185.726,466.0,1019.0,107.0,516.0,562.196,623.0,761.0,358.0,463.0,492.412,514.0,648.0,0.0,14.0,58.9986,121.0,409.0,289.0,276.704,14.4566,16.623,12.111,10.0,10.0
+1096,36.537,10.0,4.0,72.0,185.266,465.0,1019.0,120.0,516.0,562.157,622.0,767.0,340.0,462.0,492.841,514.0,665.0,0.0,14.0,58.8002,121.0,397.0,288.0,275.83,13.1515,16.4615,11.9572,10.0,10.0
+1097,36.57,10.0,4.0,72.0,185.681,466.0,1019.0,107.0,516.0,561.773,622.0,755.0,347.0,462.0,492.569,514.0,659.0,0.0,13.0,58.5715,121.0,406.0,289.0,275.99,14.0413,16.4283,11.8766,10.0,10.0
+1098,36.603,10.0,4.0,73.0,186.104,466.0,1019.0,92.0,516.0,562.041,623.0,767.0,346.0,462.0,492.421,514.0,645.0,0.0,13.0,58.8687,121.0,423.0,289.0,275.845,14.0283,16.5059,11.7928,10.0,10.0
+1099,36.637,10.0,4.0,72.0,185.203,465.0,1019.0,113.0,516.0,562.178,623.0,756.0,358.0,462.0,492.472,514.0,652.0,0.0,14.0,59.0169,122.0,403.0,289.0,275.739,13.5648,16.6299,12.0533,10.0,10.0
+1100,36.67,10.0,4.0,73.0,185.759,465.0,1019.0,125.0,516.0,562.294,623.0,765.0,346.0,461.0,491.907,514.0,664.0,0.0,14.0,59.2013,121.0,391.0,289.0,276.535,14.7179,16.5869,12.0841,10.0,10.0
+1101,36.703,10.0,4.0,72.0,185.431,465.0,1019.0,101.0,516.0,562.419,623.0,756.0,352.0,462.0,492.496,514.0,665.0,0.0,14.0,59.2318,121.0,411.0,289.0,276.373,13.5256,16.476,12.0995,10.0,10.0
+1102,36.737,10.0,4.0,73.0,185.232,464.0,1019.0,86.0,516.0,562.199,622.0,755.0,352.0,462.0,492.073,514.0,653.0,0.0,14.0,59.0136,121.0,429.0,289.0,276.717,15.7053,16.3898,12.0529,10.0,10.0
+1103,36.77,10.0,4.0,73.0,186.275,466.0,1019.0,115.0,516.0,562.023,622.0,763.0,362.0,462.0,492.657,514.0,656.0,0.0,14.0,58.7751,121.0,399.0,289.0,275.918,14.9967,16.4004,12.096,10.0,10.0
+1104,36.803,10.0,4.0,73.0,186.196,467.0,1019.0,130.0,516.0,562.203,622.0,799.0,352.0,463.0,492.998,515.0,662.0,0.0,14.0,58.7531,121.0,384.0,288.0,275.861,13.3843,16.1412,11.9157,10.0,10.0
+1105,36.837,10.0,4.0,73.0,186.531,467.0,1019.0,118.0,516.0,562.098,622.0,766.0,348.0,462.0,492.483,514.0,661.0,0.0,14.0,58.9848,121.0,395.0,289.0,275.903,14.6376,16.5142,11.8981,10.0,10.0
+1106,36.87,10.0,4.0,73.0,186.453,467.0,1019.0,86.0,516.0,562.537,623.0,774.0,351.0,462.0,492.481,514.0,814.0,0.0,14.0,59.2113,122.0,429.0,288.0,275.856,13.0123,16.4354,11.9646,10.0,10.0
+1107,36.904,10.0,4.0,72.0,185.627,467.0,1019.0,100.0,516.0,562.944,624.0,754.0,352.0,462.0,492.073,514.0,652.0,0.0,14.0,59.7395,123.0,415.0,289.0,276.722,14.0512,16.5177,12.0345,10.0,10.0
+1108,36.937,10.0,4.0,72.0,185.019,465.0,1019.0,118.0,516.0,562.925,624.0,811.0,348.0,461.0,492.061,514.0,766.0,0.0,14.0,59.7335,123.0,396.0,289.0,276.95,14.7263,16.5371,12.0964,10.0,10.0
+1109,36.97,10.0,4.0,72.0,184.855,464.0,1019.0,108.0,516.0,562.94,625.0,754.0,344.0,462.0,492.227,514.0,775.0,0.0,14.0,59.6729,123.0,404.0,289.0,276.666,14.1309,16.3567,11.9644,10.0,10.0
+1110,37.004,10.0,4.0,72.0,184.812,463.0,1019.0,106.0,516.0,562.736,624.0,745.0,353.0,462.0,492.29,514.0,785.0,0.0,14.0,59.6715,122.0,411.0,289.0,276.414,15.4988,16.7497,12.1303,10.0,10.0
+1111,37.037,10.0,4.0,73.0,185.245,464.0,1019.0,74.0,516.0,562.504,623.0,785.0,358.0,462.0,492.656,514.0,801.0,0.0,14.0,59.2279,122.0,444.0,288.0,275.989,13.439,16.2531,11.9538,10.0,10.0
+1112,37.07,10.0,4.0,72.0,184.621,464.0,1019.0,124.0,516.0,562.469,623.0,770.0,358.0,462.0,492.49,514.0,792.0,0.0,14.0,59.3041,122.0,395.0,289.0,276.228,13.987,16.1064,11.9104,10.0,10.0
+1113,37.104,10.0,4.0,72.0,184.254,464.0,1019.0,98.0,516.0,562.677,623.0,746.0,360.0,462.0,492.533,514.0,805.0,0.0,14.0,59.3094,122.0,415.0,289.0,276.76,14.0445,16.5035,11.9175,10.0,10.0
+1114,37.137,10.0,4.0,72.0,184.296,463.0,1019.0,95.0,516.0,563.019,624.0,771.0,352.0,462.0,492.616,514.0,801.0,0.0,14.0,59.4965,122.0,420.0,288.0,276.4,13.6412,16.412,11.8409,10.0,10.0
+1115,37.17,10.0,4.0,72.0,184.117,464.0,1019.0,119.0,516.0,563.139,624.0,784.0,366.0,461.0,491.778,514.0,794.0,0.0,14.0,59.986,123.0,400.0,289.0,277.05,15.21,16.4037,11.9397,10.0,10.0
+1116,37.204,10.0,4.0,72.0,185.064,465.0,1019.0,133.0,517.0,563.282,625.0,770.0,358.0,461.0,492.042,514.0,823.0,0.0,14.0,60.0078,124.0,387.0,289.0,277.174,13.4139,16.5345,11.9674,10.0,10.0
+1117,37.237,10.0,4.0,71.0,184.092,464.0,1019.0,102.0,517.0,562.863,624.0,757.0,347.0,461.0,492.015,514.0,803.0,0.0,14.0,59.6409,123.0,411.0,289.0,277.3,14.9741,16.5311,11.8137,10.0,10.0
+1118,37.271,10.0,4.0,71.0,183.221,462.0,1019.0,99.0,516.0,562.786,624.0,756.0,344.0,461.0,491.705,514.0,664.0,0.0,14.0,59.6667,123.0,417.0,289.0,277.538,16.3362,16.4274,12.0283,10.0,10.0
+1119,37.304,10.0,4.0,71.0,183.558,462.0,1019.0,86.0,516.0,563.007,625.0,762.0,362.0,461.0,492.078,514.0,645.0,0.0,14.0,59.7533,124.0,428.0,289.0,276.381,13.962,16.3664,12.0179,10.0,10.0
+1120,37.337,10.0,4.0,71.0,183.404,462.0,1019.0,124.0,517.0,563.206,624.0,777.0,336.0,461.0,491.634,513.0,647.0,0.0,14.0,59.9457,123.0,393.0,289.0,277.513,14.8201,16.4462,12.0138,10.0,10.0
+1121,37.371,10.0,4.0,71.0,183.955,464.0,1019.0,107.0,516.0,563.128,624.0,762.0,337.0,461.0,492.177,514.0,651.0,0.0,14.0,59.8513,122.0,406.0,289.0,276.552,13.9486,16.2146,11.9385,10.0,10.0
+1122,37.404,10.0,4.0,70.0,183.025,463.0,1019.0,117.0,516.0,563.114,624.0,785.0,344.0,461.0,491.721,514.0,646.0,0.0,14.0,59.8609,123.0,399.0,289.0,276.956,13.8245,16.2324,11.9768,10.0,10.0
+1123,37.437,10.0,4.0,71.0,183.934,463.0,1019.0,124.0,517.0,563.331,624.0,749.0,366.0,461.0,492.145,514.0,649.0,0.0,14.0,59.952,122.0,394.0,289.0,277.162,14.0357,16.3075,11.9721,10.0,10.0
+1124,37.471,10.0,4.0,70.0,182.26,461.0,1019.0,116.0,516.0,563.228,625.0,798.0,360.0,462.0,492.36,514.0,648.0,0.0,14.0,59.7644,123.0,399.0,289.0,276.832,14.3442,16.3042,12.0355,10.0,10.0
+1125,37.504,10.0,4.0,55.0,121.95,265.0,1019.0,102.0,504.0,536.081,600.0,744.0,366.0,476.0,502.362,518.0,646.0,0.0,4.0,34.4471,95.0,410.0,270.0,221.183,67.4654,35.7628,17.6612,10.0,10.0
+1126,37.538,10.0,4.0,54.0,65.4063,78.0,619.0,102.0,502.0,511.149,522.0,603.0,442.0,505.0,512.271,520.0,628.0,0.0,2.0,10.0557,21.0,414.0,168.0,166.479,63.3078,32.8942,16.0554,10.0,10.0
+1127,37.571,10.0,4.0,55.0,66.3868,78.0,622.0,110.0,500.0,510.81,522.0,603.0,424.0,505.0,512.326,520.0,750.0,0.0,2.0,10.2582,21.0,405.0,161.0,164.828,9.19297,11.5881,8.28185,10.0,10.0
+1128,37.604,10.0,4.0,56.0,66.9862,79.0,620.0,120.0,500.0,510.636,522.0,596.0,430.0,505.0,512.254,520.0,805.0,0.0,2.0,10.2021,21.0,396.0,156.0,163.232,8.88234,11.6944,8.17314,10.0,10.0
+1129,37.638,10.0,4.0,55.0,66.9394,79.0,611.0,109.0,501.0,510.755,522.0,605.0,404.0,505.0,512.264,520.0,785.0,0.0,2.0,10.1453,21.0,405.0,160.0,163.643,8.75009,11.6484,8.15344,10.0,10.0
+1130,37.671,10.0,4.0,55.0,66.8239,79.0,717.0,106.0,501.0,510.797,522.0,609.0,434.0,505.0,512.281,520.0,764.0,0.0,2.0,10.1062,21.0,432.0,163.0,164.5,9.1132,11.4157,8.09716,10.0,10.0
+1131,37.704,10.0,4.0,56.0,67.1266,79.0,1019.0,118.0,501.0,510.682,522.0,605.0,430.0,505.0,512.193,520.0,737.0,0.0,2.0,10.0674,21.0,402.0,156.0,163.154,8.86113,11.461,8.18317,10.0,10.0
+1132,37.738,10.0,4.0,56.0,67.1248,79.0,618.0,118.0,502.0,511.005,522.0,618.0,432.0,505.0,512.209,520.0,580.0,0.0,2.0,10.0549,21.0,398.0,165.0,165.464,9.12041,11.4801,8.18061,10.0,10.0
+1133,37.771,10.0,4.0,56.0,67.4603,79.0,610.0,118.0,502.0,511.184,522.0,602.0,425.0,505.0,512.354,520.0,617.0,0.0,2.0,10.1614,21.0,407.0,171.0,167.238,9.09781,11.3594,8.109,10.0,10.0
+1134,37.804,10.0,4.0,55.0,66.948,79.0,617.0,106.0,501.0,510.834,522.0,600.0,420.0,505.0,512.309,520.0,694.0,0.0,2.0,10.1749,21.0,412.0,162.0,164.852,8.85526,11.694,8.19902,10.0,10.0
+1135,37.838,10.0,4.0,56.0,67.4647,79.0,1019.0,111.0,502.0,511.001,522.0,604.0,436.0,505.0,512.281,520.0,713.0,0.0,2.0,10.0805,21.0,406.0,165.0,165.408,9.02008,11.4535,8.07849,10.0,10.0
+1136,37.871,10.0,4.0,56.0,67.3536,79.0,1019.0,100.0,501.0,510.982,522.0,606.0,423.0,505.0,512.387,520.0,785.0,0.0,2.0,10.2453,21.0,420.0,164.0,165.386,8.84513,11.6845,8.22346,10.0,10.0
+1137,37.905,10.0,4.0,56.0,67.2398,79.0,818.0,125.0,501.0,510.796,522.0,596.0,426.0,505.0,512.315,520.0,742.0,0.0,2.0,10.113,21.0,388.0,159.0,164.479,8.90589,11.5918,8.12725,10.0,10.0
+1138,37.938,10.0,4.0,57.0,67.7266,79.0,606.0,100.0,501.0,510.833,522.0,600.0,429.0,505.0,512.223,520.0,612.0,0.0,2.0,10.0469,21.0,416.0,159.0,164.079,8.95544,11.5455,8.0931,10.0,10.0
+1139,37.971,10.0,4.0,56.0,67.2315,79.0,616.0,145.0,501.0,510.931,522.0,602.0,434.0,505.0,512.293,520.0,586.0,0.0,2.0,10.1329,21.0,374.0,165.0,165.324,8.84218,11.5261,8.10567,10.0,10.0
+1140,38.005,10.0,4.0,56.0,67.3424,79.0,1019.0,127.0,501.0,510.734,522.0,601.0,429.0,505.0,512.223,520.0,685.0,0.0,2.0,10.0735,21.0,391.0,158.0,163.892,9.10457,11.5247,8.15817,10.0,10.0
+1141,38.038,10.0,4.0,56.0,67.4616,79.0,1019.0,114.0,501.0,510.778,522.0,600.0,430.0,505.0,512.19,520.0,578.0,0.0,2.0,10.1774,21.0,401.0,157.0,164.075,8.82412,11.6865,8.03703,10.0,10.0
+1142,38.071,10.0,4.0,56.0,67.666,79.0,609.0,106.0,501.0,510.941,522.0,609.0,430.0,505.0,512.216,520.0,574.0,0.0,2.0,10.1213,21.0,411.0,159.0,164.252,9.01496,11.6474,8.13418,10.0,10.0
+1143,38.105,10.0,4.0,57.0,67.9233,80.0,616.0,102.0,502.0,511.172,522.0,608.0,440.0,505.0,512.23,520.0,578.0,0.0,2.0,10.0901,21.0,414.0,175.0,167.196,9.07952,11.5992,8.02199,10.0,10.0
+1144,38.138,10.0,4.0,57.0,68.0969,80.0,1019.0,110.0,501.0,510.818,522.0,612.0,432.0,505.0,512.206,520.0,602.0,0.0,2.0,10.2338,21.0,408.0,158.0,163.773,8.87124,11.7663,8.0535,10.0,10.0
+1145,38.171,10.0,4.0,56.0,67.4297,79.0,1019.0,102.0,501.0,511.017,522.0,608.0,424.0,505.0,512.357,520.0,607.0,0.0,2.0,10.1884,21.0,412.0,165.0,165.795,9.058,11.719,8.15568,10.0,10.0
+1146,38.205,10.0,4.0,57.0,67.8678,79.0,870.0,100.0,502.0,510.971,522.0,602.0,410.0,505.0,512.323,520.0,577.0,0.0,2.0,10.0871,21.0,417.0,165.0,165.382,8.83921,11.5869,8.14691,10.0,10.0
+1147,38.238,10.0,4.0,57.0,68.1834,79.0,600.0,114.0,501.0,510.799,522.0,608.0,437.0,505.0,512.313,520.0,580.0,0.0,2.0,10.1319,21.0,401.0,161.0,164.552,8.93367,11.6012,8.15243,10.0,10.0
+1148,38.272,10.0,4.0,57.0,68.0982,80.0,689.0,124.0,501.0,510.831,522.0,607.0,432.0,505.0,512.243,520.0,578.0,0.0,2.0,10.1711,21.0,394.0,161.0,164.811,8.88849,11.5037,8.09673,10.0,10.0
+1149,38.305,10.0,4.0,57.0,68.2783,80.0,605.0,124.0,502.0,511.061,522.0,604.0,412.0,505.0,512.276,520.0,582.0,0.0,2.0,10.1473,21.0,389.0,165.0,165.696,8.80997,11.6688,8.18521,10.0,10.0
+1150,38.338,10.0,4.0,57.0,68.5867,80.0,883.0,124.0,501.0,510.919,522.0,600.0,425.0,505.0,512.238,520.0,579.0,0.0,2.0,10.1182,21.0,394.0,165.0,165.375,9.19513,11.5524,8.13293,10.0,10.0
+1151,38.372,10.0,4.0,57.0,68.4073,80.0,1019.0,107.0,501.0,510.808,522.0,607.0,428.0,505.0,512.263,520.0,579.0,0.0,2.0,9.99781,21.0,410.0,161.0,164.482,8.75757,11.4784,8.12508,10.0,10.0
+1152,38.405,10.0,4.0,57.0,68.6862,80.0,610.0,123.0,501.0,511.041,522.0,597.0,430.0,505.0,512.36,520.0,580.0,0.0,2.0,10.1138,21.0,393.0,169.0,167.001,9.04764,11.4938,8.08916,10.0,10.0
+1153,38.438,10.0,4.0,57.0,68.479,80.0,743.0,102.0,501.0,511.066,522.0,604.0,424.0,505.0,512.331,520.0,579.0,0.0,2.0,10.097,21.0,412.0,168.0,165.867,8.96379,11.5002,8.09622,10.0,10.0
+1154,38.472,10.0,4.0,57.0,68.0365,79.0,602.0,106.0,501.0,510.88,522.0,604.0,430.0,505.0,512.342,520.0,583.0,0.0,2.0,10.1237,21.0,411.0,161.0,164.654,9.13109,11.6216,8.13962,10.0,10.0
+1155,38.505,10.0,4.0,57.0,68.1178,79.0,776.0,120.0,501.0,510.982,522.0,618.0,420.0,505.0,512.343,520.0,575.0,0.0,2.0,10.0646,21.0,396.0,165.0,165.911,9.27439,11.505,8.01548,10.0,10.0
+1156,38.539,10.0,4.0,57.0,68.4745,80.0,614.0,139.0,502.0,511.043,522.0,604.0,432.0,505.0,512.376,520.0,578.0,0.0,2.0,10.1221,21.0,374.0,165.0,165.349,9.01982,11.6935,8.20285,10.0,10.0
+1157,38.572,10.0,4.0,58.0,68.8283,80.0,617.0,124.0,501.0,510.884,522.0,608.0,431.0,505.0,512.39,520.0,684.0,0.0,2.0,10.2549,21.0,389.0,165.0,165.861,9.10314,11.7833,8.19833,10.0,10.0
+1158,38.605,10.0,4.0,58.0,68.9572,80.0,667.0,85.0,501.0,510.691,522.0,598.0,424.0,505.0,512.222,520.0,585.0,0.0,2.0,10.0712,21.0,432.0,155.0,163.212,9.15668,11.7032,8.09415,10.0,10.0
+1159,38.639,10.0,4.0,57.0,68.6592,80.0,601.0,114.0,501.0,510.823,522.0,604.0,416.0,505.0,512.287,520.0,644.0,0.0,2.0,10.1453,21.0,406.0,161.0,164.703,9.25521,11.6,8.12767,10.0,10.0
+1160,38.672,10.0,4.0,57.0,69.1215,80.0,723.0,124.0,501.0,510.891,522.0,609.0,432.0,505.0,512.203,520.0,584.0,0.0,2.0,10.0721,21.0,392.0,165.0,165.79,9.59135,11.4897,8.13959,10.0,10.0
+1161,38.705,10.0,4.0,58.0,69.8985,80.0,1019.0,116.0,501.0,510.733,522.0,602.0,420.0,505.0,512.17,520.0,577.0,0.0,2.0,10.1587,21.0,398.0,158.0,163.846,9.30771,11.6437,8.18699,10.0,10.0
+1162,38.739,10.0,4.0,57.0,69.4657,80.0,851.0,90.0,501.0,510.893,522.0,603.0,424.0,505.0,512.136,520.0,581.0,0.0,2.0,10.101,21.0,429.0,163.0,164.686,9.45142,11.6285,8.1337,10.0,10.0
+1163,38.772,10.0,4.0,57.0,69.8655,80.0,966.0,106.0,502.0,511.0,522.0,608.0,421.0,505.0,512.129,520.0,581.0,0.0,2.0,10.1475,21.0,409.0,165.0,165.428,9.51906,11.4998,8.0678,10.0,10.0
+1164,38.805,10.0,4.0,57.0,69.9042,80.0,1019.0,106.0,501.0,510.997,522.0,605.0,430.0,505.0,512.223,520.0,646.0,0.0,2.0,10.1839,21.0,410.0,165.0,165.337,9.33317,11.7343,8.16839,10.0,10.0
+1165,38.839,10.0,4.0,57.0,69.8552,80.0,1019.0,115.0,501.0,510.902,522.0,603.0,410.0,505.0,512.237,520.0,712.0,0.0,2.0,10.3302,22.0,397.0,164.0,164.646,9.6838,11.6621,8.13233,10.0,10.0
+1166,38.872,10.0,4.0,57.0,70.0524,80.0,1019.0,86.0,501.0,510.999,522.0,604.0,418.0,505.0,512.291,520.0,744.0,0.0,2.0,10.2641,22.0,431.0,168.0,166.647,9.24187,11.7716,8.32382,10.0,10.0
+1167,38.906,10.0,4.0,58.0,70.4749,80.0,1019.0,96.0,501.0,510.867,522.0,612.0,428.0,505.0,512.332,520.0,578.0,0.0,2.0,10.2469,22.0,422.0,163.0,165.166,9.2512,11.6888,8.27879,10.0,10.0
+1168,38.939,10.0,4.0,57.0,70.2891,80.0,1019.0,118.0,500.0,510.655,522.0,608.0,434.0,505.0,512.318,520.0,613.0,0.0,2.0,10.38,22.0,397.0,156.0,163.543,9.20067,11.7903,8.2778,10.0,10.0
+1169,38.972,10.0,4.0,57.0,70.5296,80.0,1019.0,106.0,501.0,510.754,522.0,605.0,420.0,505.0,512.206,520.0,596.0,0.0,2.0,10.2531,21.0,407.0,158.0,163.874,8.91315,11.7787,8.28157,10.0,10.0
+1170,39.006,10.0,4.0,58.0,70.4961,80.0,1019.0,90.0,501.0,510.72,522.0,598.0,428.0,505.0,512.284,520.0,579.0,0.0,2.0,10.2175,21.0,428.0,162.0,164.488,9.48298,11.6848,8.24156,10.0,10.0
+1171,39.039,10.0,4.0,57.0,70.312,80.0,1019.0,102.0,501.0,510.642,522.0,604.0,406.0,505.0,512.188,520.0,609.0,0.0,2.0,10.2049,21.0,413.0,155.0,163.391,8.87279,11.7733,8.27187,10.0,10.0
+1172,39.072,10.0,4.0,58.0,70.7127,81.0,1019.0,106.0,501.0,510.933,522.0,608.0,351.0,504.0,512.138,520.0,582.0,0.0,2.0,10.2896,22.0,409.0,165.0,165.459,9.03822,11.6374,8.3714,10.0,10.0
+1173,39.106,10.0,4.0,57.0,70.2947,80.0,1019.0,92.0,501.0,510.991,522.0,608.0,417.0,505.0,512.367,520.0,580.0,0.0,2.0,10.2092,21.0,421.0,170.0,166.499,9.10188,11.6482,8.40871,10.0,10.0
+1174,39.139,10.0,4.0,57.0,69.7579,80.0,1019.0,58.0,501.0,510.881,522.0,603.0,423.0,505.0,512.283,520.0,673.0,0.0,2.0,10.2898,22.0,460.0,165.0,165.159,8.81766,11.7523,8.30813,10.0,10.0
+1175,39.172,10.0,4.0,57.0,70.1462,80.0,1019.0,87.0,501.0,510.841,522.0,618.0,434.0,505.0,512.346,520.0,747.0,0.0,2.0,10.2473,21.0,427.0,165.0,165.452,9.01729,11.5543,8.09344,10.0,10.0
+1176,39.206,10.0,4.0,57.0,70.3675,80.0,1019.0,101.0,501.0,511.075,522.0,608.0,416.0,505.0,512.338,520.0,628.0,0.0,2.0,10.3004,21.0,420.0,180.0,167.959,8.92048,11.8057,8.2203,10.0,10.0
+1177,39.239,10.0,4.0,57.0,70.1406,80.0,1019.0,94.0,501.0,510.73,522.0,610.0,397.0,505.0,512.362,520.0,763.0,0.0,2.0,10.2818,21.0,418.0,161.0,164.802,8.97227,11.6649,8.20314,10.0,10.0
+1178,39.273,10.0,4.0,57.0,69.9105,80.0,1019.0,100.0,501.0,510.677,522.0,603.0,406.0,505.0,512.391,520.0,820.0,0.0,2.0,10.2801,22.0,417.0,159.0,163.768,8.96037,11.758,8.20823,10.0,10.0
+1179,39.306,10.0,4.0,57.0,70.1328,80.0,1019.0,106.0,501.0,510.746,522.0,603.0,430.0,505.0,512.255,520.0,700.0,0.0,2.0,10.3222,22.0,407.0,160.0,164.765,8.84963,11.8023,8.30251,10.0,10.0
+1180,39.339,10.0,4.0,57.0,69.9115,80.0,1019.0,106.0,500.0,510.775,522.0,620.0,418.0,505.0,512.381,520.0,812.0,0.0,2.0,10.2922,22.0,411.0,165.0,165.568,9.09965,11.7484,8.22139,10.0,10.0
+1181,39.373,10.0,4.0,57.0,70.5565,81.0,1019.0,106.0,501.0,510.717,522.0,694.0,436.0,504.0,512.149,520.0,679.0,0.0,2.0,10.2608,22.0,407.0,158.0,163.924,8.94389,11.8057,8.38092,10.0,10.0
+1182,39.406,10.0,4.0,57.0,69.8777,80.0,1019.0,100.0,500.0,510.727,522.0,599.0,436.0,504.0,512.133,520.0,590.0,0.0,2.0,10.3619,22.0,418.0,161.0,164.332,9.13944,11.6617,8.2864,10.0,10.0
+1183,39.439,10.0,4.0,57.0,70.0632,80.0,1019.0,96.0,501.0,510.943,522.0,602.0,440.0,505.0,512.36,520.0,582.0,0.0,2.0,10.2402,22.0,419.0,171.0,166.892,9.11178,11.8335,8.26642,10.0,10.0
+1184,39.473,10.0,4.0,58.0,70.4397,80.0,1019.0,118.0,500.0,510.682,522.0,597.0,442.0,505.0,512.238,520.0,579.0,0.0,2.0,10.2914,22.0,398.0,159.0,164.173,8.85998,11.7368,8.27561,10.0,10.0
+1185,39.506,10.0,4.0,57.0,70.1622,80.0,1019.0,91.0,500.0,510.781,522.0,614.0,407.0,505.0,512.279,520.0,578.0,0.0,2.0,10.2626,22.0,421.0,165.0,165.402,9.06923,11.6818,8.29536,10.0,10.0
+1186,39.54,10.0,4.0,58.0,70.6408,81.0,1019.0,94.0,500.0,510.758,522.0,606.0,430.0,505.0,512.34,520.0,578.0,0.0,2.0,10.3125,22.0,422.0,164.0,165.281,8.85146,11.7062,8.19247,10.0,10.0
+1187,39.573,10.0,4.0,56.0,69.4358,79.0,1019.0,102.0,500.0,510.826,522.0,604.0,423.0,505.0,512.405,520.0,589.0,0.0,2.0,10.304,22.0,414.0,165.0,165.67,9.07941,11.5056,8.03056,10.0,10.0
+1188,39.606,10.0,4.0,55.0,67.9546,78.0,1019.0,102.0,500.0,510.573,522.0,602.0,434.0,505.0,512.266,520.0,575.0,0.0,2.0,10.2886,21.0,413.0,155.0,162.853,9.00518,11.6951,8.27046,10.0,10.0
+1189,39.64,10.0,4.0,52.0,65.1851,76.0,1019.0,128.0,500.0,510.76,522.0,598.0,434.0,505.0,512.23,520.0,579.0,0.0,2.0,10.2866,21.0,386.0,161.0,165.244,9.08239,11.7197,8.15314,10.0,10.0
+1190,39.673,10.0,4.0,47.0,59.5364,70.0,1019.0,80.0,500.0,510.748,522.0,601.0,425.0,505.0,512.146,520.0,586.0,0.0,2.0,10.2692,22.0,437.0,161.0,164.898,10.2126,11.6172,8.14861,10.0,10.0
+1191,39.706,10.0,4.0,47.0,59.9132,70.0,1019.0,102.0,500.0,510.667,522.0,633.0,440.0,505.0,512.241,520.0,607.0,0.0,2.0,10.2165,21.0,413.0,158.0,163.676,8.55498,11.7134,8.2877,10.0,10.0
+1192,39.74,10.0,4.0,40.0,56.3255,68.0,1019.0,106.0,500.0,510.846,522.0,608.0,425.0,505.0,512.245,520.0,577.0,0.0,2.0,10.2022,21.0,410.0,164.0,165.216,9.98347,11.6201,8.25551,10.0,10.0
+1193,39.773,10.0,4.0,35.0,50.1286,60.0,1019.0,102.0,501.0,510.891,522.0,597.0,424.0,505.0,512.302,520.0,606.0,0.0,2.0,10.2354,21.0,411.0,165.0,166.039,10.9461,11.5681,8.17761,10.0,10.0
+1194,39.806,10.0,4.0,34.0,49.2274,59.0,1019.0,82.0,500.0,510.919,522.0,611.0,424.0,505.0,512.239,520.0,578.0,0.0,2.0,10.3956,22.0,434.0,167.0,166.037,9.19512,11.9467,8.33389,10.0,10.0
+1195,39.84,10.0,4.0,35.0,49.5046,59.0,1018.0,124.0,500.0,510.934,522.0,603.0,434.0,505.0,512.163,520.0,582.0,0.0,2.0,10.2299,22.0,393.0,165.0,164.935,9.37934,11.8718,8.27182,10.0,10.0
+1196,39.873,10.0,4.0,34.0,48.8486,59.0,1016.0,114.0,500.0,510.825,522.0,606.0,428.0,505.0,512.33,520.0,578.0,0.0,2.0,10.2291,21.0,403.0,166.0,166.123,9.19919,11.6799,8.3048,10.0,10.0
+1197,39.907,10.0,4.0,35.0,49.2768,59.0,1014.0,106.0,500.0,510.883,522.0,604.0,434.0,505.0,512.378,520.0,579.0,0.0,2.0,10.2368,21.0,409.0,168.0,166.089,9.44252,11.5672,8.13696,10.0,10.0
+1198,39.94,10.0,4.0,32.0,47.3966,58.0,1014.0,102.0,500.0,510.589,522.0,601.0,436.0,505.0,512.295,520.0,586.0,0.0,2.0,10.2292,21.0,413.0,158.0,164.413,9.51164,11.6099,8.23605,10.0,10.0
+1199,39.973,10.0,4.0,30.0,45.2417,56.0,1015.0,100.0,500.0,510.778,522.0,596.0,432.0,505.0,512.348,520.0,578.0,0.0,2.0,10.1386,21.0,419.0,165.0,165.529,9.54655,11.6926,8.24779,10.0,10.0
+1200,40.007,10.0,4.0,8.0,26.5653,38.0,1011.0,114.0,500.0,510.77,522.0,605.0,440.0,505.0,512.284,520.0,585.0,0.0,2.0,10.2432,21.0,401.0,165.0,165.348,19.5879,11.4999,8.13046,10.0,10.0
+1201,40.04,10.0,4.0,4.0,9.28366,13.0,1004.0,100.0,500.0,510.535,522.0,608.0,428.0,505.0,512.167,520.0,574.0,0.0,2.0,10.2782,22.0,412.0,156.0,163.151,17.5841,11.7514,8.19274,10.0,10.0
+1202,40.073,10.0,4.0,4.0,6.62593,4.0,989.0,88.0,500.0,510.737,522.0,604.0,436.0,505.0,512.207,520.0,580.0,0.0,2.0,10.2962,22.0,428.0,163.0,164.921,3.08833,11.8577,8.3405,10.0,10.0
+1203,40.107,10.0,4.0,4.0,6.62695,4.0,983.0,111.0,500.0,510.928,522.0,660.0,420.0,505.0,512.317,520.0,576.0,0.0,2.0,10.3033,22.0,403.0,167.0,166.274,0.713906,11.6219,8.11822,10.0,10.0
+1204,40.14,10.0,4.0,4.0,6.6077,4.0,977.0,122.0,500.0,510.924,522.0,603.0,424.0,505.0,512.3,520.0,582.0,0.0,2.0,10.2212,21.0,394.0,165.0,166.131,0.681113,11.825,8.18011,10.0,10.0
+1205,40.173,10.0,4.0,4.0,6.62046,4.0,972.0,118.0,500.0,510.711,522.0,602.0,425.0,505.0,512.261,520.0,587.0,0.0,2.0,10.2882,22.0,395.0,158.0,164.177,0.731642,11.7123,8.22077,10.0,10.0
+1206,40.207,10.0,4.0,4.0,6.58302,4.0,969.0,101.0,500.0,510.72,522.0,623.0,430.0,505.0,512.265,520.0,586.0,0.0,2.0,10.3215,22.0,414.0,165.0,166.115,0.627329,11.7638,8.24076,10.0,10.0
+1207,40.24,10.0,4.0,4.0,6.60007,4.0,968.0,72.0,500.0,510.786,522.0,612.0,420.0,505.0,512.348,520.0,577.0,0.0,2.0,10.2656,21.0,447.0,165.0,165.583,0.67292,11.7408,8.21985,10.0,10.0
+1208,40.274,10.0,4.0,4.0,6.61189,4.0,966.0,111.0,500.0,510.5,522.0,607.0,440.0,505.0,512.239,520.0,588.0,0.0,2.0,10.3723,22.0,405.0,153.0,162.892,0.627752,11.7769,8.20283,10.0,10.0
+1209,40.307,10.0,4.0,4.0,6.6525,4.0,970.0,109.0,500.0,510.588,522.0,601.0,437.0,505.0,512.273,520.0,583.0,0.0,2.0,10.2468,21.0,403.0,159.0,163.97,0.668516,11.6773,8.22469,10.0,10.0
+1210,40.34,10.0,4.0,4.0,6.56873,4.0,966.0,82.0,500.0,510.744,522.0,647.0,430.0,505.0,512.217,520.0,577.0,0.0,2.0,10.2319,21.0,432.0,158.0,164.197,0.652306,11.5613,8.13158,10.0,10.0
+1211,40.374,10.0,4.0,4.0,6.60233,4.0,967.0,114.0,500.0,510.537,522.0,605.0,430.0,505.0,512.208,520.0,709.0,0.0,2.0,10.3016,21.0,402.0,153.0,161.992,0.569079,11.7729,8.24429,10.0,10.0
+1212,40.407,10.0,4.0,4.0,6.56925,4.0,972.0,124.0,500.0,510.633,522.0,604.0,438.0,505.0,512.188,520.0,574.0,0.0,2.0,10.2897,21.0,393.0,156.0,163.764,0.679258,11.6815,8.15405,10.0,10.0
+1213,40.44,10.0,4.0,4.0,6.63022,4.0,968.0,124.0,500.0,510.728,522.0,605.0,420.0,505.0,512.234,520.0,586.0,0.0,2.0,10.1859,21.0,389.0,163.0,165.084,0.685882,11.8275,8.27835,10.0,10.0
+1214,40.474,10.0,4.0,4.0,6.57124,4.0,967.0,94.0,500.0,510.852,522.0,600.0,440.0,505.0,512.305,520.0,580.0,0.0,2.0,10.2136,21.0,422.0,165.0,166.114,0.600149,11.7091,8.27633,10.0,10.0
+1215,40.507,10.0,4.0,4.0,6.58323,4.0,966.0,96.0,500.0,510.847,522.0,604.0,434.0,505.0,512.29,520.0,606.0,0.0,2.0,10.2486,21.0,418.0,164.0,165.474,0.649611,11.5725,8.15797,10.0,10.0
+1216,40.541,10.0,4.0,4.0,6.51792,4.0,982.0,134.0,500.0,510.797,522.0,666.0,434.0,505.0,512.284,520.0,577.0,0.0,2.0,10.2601,21.0,385.0,165.0,165.131,0.603755,11.7905,8.25923,10.0,10.0
+1217,40.574,10.0,4.0,4.0,6.34427,4.0,965.0,106.0,500.0,510.738,522.0,882.0,440.0,505.0,512.318,520.0,642.0,0.0,2.0,10.1644,21.0,406.0,161.0,164.433,0.437389,11.7865,8.23809,10.0,10.0
+1218,40.607,10.0,4.0,4.0,6.34691,4.0,967.0,100.0,500.0,510.625,522.0,894.0,428.0,505.0,512.16,520.0,728.0,0.0,2.0,10.2434,21.0,416.0,155.0,163.189,0.335351,11.6768,8.08823,10.0,10.0
+1219,40.641,10.0,4.0,4.0,6.32265,4.0,962.0,110.0,500.0,510.841,522.0,778.0,432.0,505.0,512.269,520.0,597.0,0.0,2.0,10.2262,21.0,404.0,165.0,165.77,0.331973,11.6651,8.1788,10.0,10.0
+1220,40.674,10.0,4.0,4.0,6.26259,4.0,962.0,110.0,500.0,510.818,522.0,695.0,436.0,505.0,512.288,520.0,585.0,0.0,2.0,10.2108,21.0,404.0,165.0,165.92,0.34215,11.5183,8.28371,10.0,10.0
+1221,40.707,10.0,4.0,4.0,6.27031,4.0,959.0,114.0,500.0,510.713,522.0,605.0,422.0,505.0,512.187,520.0,576.0,0.0,2.0,10.2577,21.0,398.0,161.0,164.83,0.171162,11.6853,8.327,10.0,10.0
+1222,40.741,10.0,4.0,4.0,6.27909,4.0,965.0,90.0,500.0,510.727,522.0,656.0,436.0,505.0,512.245,520.0,594.0,0.0,2.0,10.3217,22.0,422.0,164.0,165.566,0.222931,11.7262,8.14699,10.0,10.0
+1223,40.774,10.0,4.0,4.0,6.22432,4.0,954.0,110.0,500.0,510.944,522.0,606.0,436.0,505.0,512.295,520.0,579.0,0.0,2.0,10.2591,21.0,405.0,168.0,166.299,0.277852,11.9212,8.24941,10.0,10.0
+1224,40.807,10.0,4.0,4.0,6.22362,4.0,952.0,128.0,500.0,510.892,522.0,612.0,435.0,505.0,512.237,520.0,586.0,0.0,2.0,10.3911,22.0,388.0,165.0,165.835,0.174457,11.9014,8.31385,10.0,10.0
+1225,40.841,10.0,4.0,4.0,6.24092,4.0,956.0,94.0,500.0,510.833,522.0,608.0,434.0,505.0,512.301,520.0,581.0,0.0,2.0,10.2669,21.0,418.0,165.0,166.077,0.232976,11.818,8.27828,10.0,10.0
+1226,40.874,10.0,4.0,4.0,6.24979,4.0,954.0,94.0,500.0,510.913,522.0,783.0,430.0,505.0,512.403,520.0,690.0,0.0,2.0,10.4062,22.0,421.0,168.0,166.352,0.209325,11.8985,8.25251,10.0,10.0
+1227,40.908,10.0,4.0,4.0,6.24255,4.0,952.0,152.0,500.0,510.787,522.0,619.0,425.0,505.0,512.391,520.0,579.0,0.0,2.0,10.2796,21.0,363.0,161.0,164.697,0.162946,11.8097,8.24187,10.0,10.0
+1228,40.941,10.0,4.0,4.0,6.23311,4.0,952.0,121.0,500.0,510.656,522.0,836.0,445.0,505.0,512.249,520.0,593.0,0.0,2.0,10.2388,21.0,393.0,158.0,163.753,0.213909,11.6619,8.1482,10.0,10.0
+1229,40.974,10.0,4.0,4.0,6.22312,4.0,953.0,116.0,500.0,510.526,522.0,952.0,430.0,505.0,512.314,520.0,631.0,0.0,2.0,10.4345,22.0,441.0,154.0,163.031,0.20144,11.9306,8.32312,10.0,10.0
+1230,41.008,10.0,4.0,4.0,6.25091,4.0,956.0,86.0,500.0,510.721,522.0,970.0,436.0,505.0,512.357,520.0,578.0,0.0,2.0,10.3647,21.0,459.0,158.0,164.379,0.241812,11.8972,8.2803,10.0,10.0
+1231,41.041,10.0,4.0,4.0,6.25361,4.0,951.0,90.0,500.0,510.784,522.0,890.0,431.0,504.0,512.15,520.0,687.0,0.0,2.0,10.2511,21.0,423.0,158.0,164.235,0.183453,11.8993,8.27009,10.0,10.0
+1232,41.074,10.0,4.0,4.0,6.25262,4.0,954.0,128.0,500.0,510.879,522.0,864.0,440.0,505.0,512.119,520.0,628.0,0.0,2.0,10.34,22.0,388.0,165.0,165.737,0.164506,11.9247,8.24709,10.0,10.0
+1233,41.108,10.0,4.0,4.0,6.23166,4.0,952.0,102.0,500.0,510.934,522.0,596.0,412.0,505.0,512.304,520.0,582.0,0.0,2.0,10.298,21.0,411.0,170.0,166.554,0.171859,11.8446,8.21953,10.0,10.0
+1234,41.141,10.0,4.0,4.0,6.21917,4.0,953.0,86.0,500.0,510.973,522.0,601.0,436.0,505.0,512.295,520.0,580.0,0.0,2.0,10.3198,22.0,429.0,168.0,166.571,0.147279,11.8051,8.30826,10.0,10.0
+1235,41.174,10.0,4.0,4.0,6.24926,4.0,952.0,104.0,500.0,510.809,522.0,604.0,436.0,505.0,512.28,520.0,582.0,0.0,2.0,10.2459,21.0,410.0,160.0,164.548,0.168804,11.62,8.18243,10.0,10.0
+1236,41.208,10.0,4.0,4.0,6.23195,4.0,957.0,130.0,500.0,510.998,522.0,816.0,434.0,505.0,512.359,520.0,581.0,0.0,2.0,10.306,21.0,384.0,168.0,166.853,0.161608,11.6598,8.18205,10.0,10.0
+1237,41.241,10.0,4.0,4.0,6.24095,4.0,952.0,110.0,500.0,510.825,522.0,794.0,288.0,505.0,512.303,520.0,575.0,0.0,2.0,10.3541,21.0,402.0,168.0,166.467,0.196333,11.8285,8.33053,10.0,10.0
+1238,41.275,10.0,4.0,4.0,6.22903,4.0,954.0,80.0,500.0,510.654,522.0,923.0,404.0,504.0,512.202,520.0,579.0,0.0,2.0,10.4094,22.0,433.0,158.0,163.949,0.187609,11.7841,8.26739,10.0,10.0
+1239,41.308,10.0,4.0,4.0,6.21293,4.0,952.0,110.0,500.0,510.766,522.0,866.0,393.0,505.0,512.264,520.0,575.0,0.0,2.0,10.357,21.0,403.0,161.0,164.895,0.131161,11.8871,8.32831,10.0,10.0
+1240,41.341,10.0,4.0,4.0,6.22605,4.0,953.0,124.0,500.0,510.684,522.0,836.0,334.0,505.0,512.234,520.0,578.0,0.0,2.0,10.3745,22.0,393.0,159.0,164.716,0.193927,11.9466,8.22483,10.0,10.0
+1241,41.375,10.0,4.0,4.0,6.24529,4.0,954.0,122.0,500.0,510.68,522.0,618.0,232.0,505.0,512.17,520.0,576.0,0.0,2.0,10.3875,21.0,390.0,160.0,164.341,0.236946,11.8956,8.19081,10.0,10.0
+1242,41.408,10.0,4.0,4.0,6.24189,4.0,953.0,87.0,500.0,510.837,522.0,953.0,428.0,504.0,512.113,520.0,596.0,0.0,2.0,10.3795,21.0,441.0,159.0,164.889,0.221962,11.9456,8.2997,10.0,10.0
+1243,41.441,10.0,4.0,4.0,6.25554,4.0,952.0,106.0,500.0,510.99,522.0,699.0,266.0,505.0,512.246,520.0,577.0,0.0,2.0,10.4827,22.0,408.0,172.0,167.461,0.216652,11.9012,8.3094,10.0,10.0
+1244,41.475,10.0,4.0,4.0,6.22149,4.0,951.0,109.0,500.0,510.841,522.0,624.0,210.0,504.0,512.272,520.0,578.0,0.0,2.0,10.4458,22.0,403.0,165.0,165.943,0.156013,12.0309,8.43484,10.0,10.0
+1245,41.508,10.0,4.0,4.0,6.25432,4.0,954.0,124.0,500.0,510.718,522.0,718.0,230.0,505.0,512.221,520.0,582.0,0.0,2.0,10.4462,21.0,389.0,159.0,164.756,0.183511,11.7921,8.21195,10.0,10.0
+1246,41.542,10.0,4.0,4.0,6.22845,4.0,950.0,134.0,500.0,510.883,522.0,902.0,413.0,505.0,512.385,520.0,593.0,0.0,2.0,10.4449,22.0,401.0,168.0,166.648,0.210945,11.8539,8.35604,10.0,10.0
+1247,41.575,10.0,4.0,4.0,6.21988,4.0,950.0,114.0,500.0,510.762,522.0,924.0,435.0,505.0,512.289,520.0,581.0,0.0,2.0,10.327,21.0,412.0,161.0,164.679,0.179164,11.7877,8.3699,10.0,10.0
+1248,41.608,10.0,4.0,4.0,6.20765,4.0,949.0,124.0,500.0,510.752,522.0,848.0,309.0,505.0,512.303,520.0,582.0,0.0,2.0,10.4738,22.0,391.0,155.0,163.993,0.209568,11.9034,8.40175,10.0,10.0
+1249,41.642,10.0,4.0,4.0,6.10027,4.0,945.0,98.0,500.0,510.636,522.0,826.0,332.0,504.0,512.221,520.0,580.0,0.0,2.0,10.4503,22.0,414.0,158.0,164.617,0.184879,11.9136,8.29705,10.0,10.0
+1250,41.675,10.0,4.0,4.0,6.04674,4.0,939.0,101.0,500.0,510.665,522.0,920.0,445.0,505.0,512.232,520.0,583.0,0.0,2.0,10.3981,22.0,415.0,154.0,162.885,0.224503,11.8313,8.40437,10.0,10.0
+1251,41.708,10.0,4.0,4.0,6.05066,4.0,930.0,117.0,500.0,510.69,522.0,873.0,436.0,505.0,512.194,520.0,617.0,0.0,2.0,10.3089,21.0,398.0,156.0,163.751,0.200271,11.7441,8.25028,10.0,10.0
+1252,41.742,10.0,4.0,4.0,6.01319,4.0,925.0,118.0,500.0,510.726,522.0,885.0,440.0,505.0,512.27,520.0,637.0,0.0,2.0,10.3443,21.0,396.0,158.0,164.602,0.186023,11.5794,8.14499,10.0,10.0
+1253,41.775,10.0,4.0,4.0,6.04859,4.0,923.0,106.0,500.0,510.911,522.0,892.0,386.0,505.0,512.231,520.0,576.0,0.0,2.0,10.296,21.0,406.0,168.0,166.004,0.143213,11.8963,8.20925,10.0,10.0
+1254,41.808,10.0,4.0,4.0,6.04938,4.0,924.0,86.0,500.0,510.879,522.0,836.0,324.0,505.0,512.358,520.0,587.0,0.0,2.0,10.4775,22.0,428.0,165.0,165.708,0.150977,11.9166,8.35913,10.0,10.0
+1255,41.842,10.0,4.0,4.0,6.03263,4.0,919.0,124.0,500.0,510.806,522.0,880.0,374.0,504.0,512.093,520.0,586.0,0.0,2.0,10.3344,21.0,391.0,161.0,165.067,0.164215,11.8173,8.28006,10.0,10.0
+1256,41.875,10.0,4.0,4.0,6.01315,4.0,921.0,110.0,500.0,510.869,522.0,935.0,436.0,505.0,512.342,520.0,614.0,0.0,2.0,10.2969,21.0,429.0,168.0,166.189,0.113812,11.8153,8.23848,10.0,10.0
+1257,41.909,10.0,4.0,4.0,6.00882,4.0,919.0,116.0,500.0,510.781,522.0,907.0,394.0,505.0,512.331,520.0,582.0,0.0,2.0,10.3753,21.0,412.0,164.0,165.723,0.2145,11.6121,8.02739,10.0,10.0
+1258,41.942,10.0,4.0,4.0,6.02912,4.0,918.0,99.0,500.0,510.622,522.0,713.0,258.0,505.0,512.241,520.0,579.0,0.0,2.0,10.3626,21.0,415.0,155.0,163.596,0.219762,11.7862,8.17963,10.0,10.0
+1259,41.975,10.0,4.0,4.0,6.05261,4.0,917.0,104.0,500.0,510.626,522.0,763.0,298.0,505.0,512.278,520.0,575.0,0.0,2.0,10.2573,21.0,410.0,155.0,163.511,0.168601,11.6994,8.22776,10.0,10.0
+1260,42.009,10.0,4.0,4.0,6.05077,4.0,919.0,140.0,500.0,510.677,522.0,774.0,262.0,505.0,512.248,520.0,579.0,0.0,2.0,10.3856,21.0,375.0,158.0,164.761,0.160691,11.7656,8.18148,10.0,10.0
+1261,42.042,10.0,4.0,4.0,6.03946,4.0,920.0,111.0,500.0,510.434,522.0,699.0,240.0,505.0,512.209,520.0,602.0,0.0,2.0,10.4452,22.0,401.0,153.0,163.363,0.149063,11.9803,8.33628,10.0,10.0
+1262,42.075,10.0,4.0,4.0,6.03315,4.0,921.0,86.0,500.0,510.823,522.0,857.0,316.0,504.0,512.23,520.0,578.0,0.0,2.0,10.4919,22.0,428.0,165.0,166.365,0.155941,11.8532,8.37841,10.0,10.0
+1263,42.109,10.0,4.0,4.0,6.05397,4.0,918.0,127.0,500.0,510.917,522.0,728.0,209.0,504.0,512.239,520.0,577.0,0.0,2.0,10.4731,22.0,386.0,168.0,166.433,0.191584,11.8764,8.33057,10.0,10.0
+1264,42.142,10.0,4.0,4.0,6.15332,4.0,925.0,134.0,500.0,510.626,522.0,685.0,234.0,505.0,512.268,520.0,578.0,0.0,2.0,10.3272,21.0,379.0,158.0,163.985,0.377929,11.8662,8.37469,10.0,10.0
+1265,42.175,10.0,4.0,4.0,6.1919,4.0,920.0,93.0,500.0,510.73,522.0,643.0,222.0,505.0,512.178,520.0,581.0,0.0,2.0,10.4497,22.0,419.0,161.0,165.214,0.320256,11.7939,8.30063,10.0,10.0
+1266,42.209,10.0,4.0,4.0,6.07552,4.0,923.0,122.0,500.0,510.89,522.0,883.0,384.0,505.0,512.389,520.0,578.0,0.0,2.0,10.3515,21.0,391.0,167.0,166.532,0.443161,11.8634,8.30854,10.0,10.0
+1267,42.242,10.0,4.0,4.0,6.12285,4.0,931.0,101.0,500.0,510.689,522.0,847.0,322.0,505.0,512.195,520.0,581.0,0.0,2.0,10.3757,21.0,414.0,159.0,164.726,0.249954,11.7291,8.19531,10.0,10.0
+1268,42.276,10.0,4.0,4.0,6.15538,4.0,930.0,122.0,500.0,510.498,522.0,642.0,348.0,505.0,512.23,520.0,580.0,0.0,2.0,10.431,22.0,392.0,153.0,163.028,0.335811,11.9828,8.27456,10.0,10.0
+1269,42.309,10.0,4.0,4.0,6.12502,4.0,933.0,96.0,500.0,510.451,522.0,716.0,356.0,505.0,512.172,520.0,582.0,0.0,2.0,10.4865,22.0,416.0,153.0,162.865,0.236263,12.0275,8.34602,10.0,10.0
+1270,42.342,10.0,4.0,4.0,6.1907,4.0,935.0,96.0,500.0,510.705,522.0,603.0,440.0,505.0,512.212,520.0,578.0,0.0,2.0,10.3941,21.0,421.0,158.0,164.567,0.272654,11.8539,8.25971,10.0,10.0
+1271,42.376,10.0,4.0,4.0,6.17708,4.0,938.0,96.0,500.0,510.521,522.0,617.0,431.0,505.0,512.253,520.0,581.0,0.0,2.0,10.3886,22.0,417.0,153.0,162.784,0.188757,11.8979,8.31399,10.0,10.0
+1272,42.409,10.0,4.0,4.0,6.16921,4.0,942.0,124.0,500.0,510.579,522.0,608.0,431.0,504.0,512.056,520.0,577.0,0.0,2.0,10.365,22.0,393.0,155.0,163.649,0.183556,11.8536,8.26807,10.0,10.0
+1273,42.442,10.0,4.0,4.0,6.20756,4.0,943.0,122.0,500.0,510.87,522.0,603.0,436.0,505.0,512.28,520.0,593.0,0.0,2.0,10.4043,22.0,390.0,165.0,165.881,0.157716,11.8897,8.33489,10.0,10.0
+1274,42.476,10.0,4.0,4.0,6.17534,4.0,944.0,94.0,500.0,510.679,522.0,606.0,436.0,504.0,512.269,520.0,581.0,0.0,2.0,10.4344,21.0,420.0,161.0,164.96,0.220939,11.9873,8.41506,10.0,10.0
+1275,42.509,10.0,4.0,4.0,6.20424,4.0,947.0,105.0,500.0,510.721,522.0,604.0,437.0,505.0,512.291,520.0,578.0,0.0,2.0,10.3322,21.0,409.0,159.0,164.546,0.326612,11.7874,8.28562,10.0,10.0
+1276,42.543,10.0,4.0,4.0,6.25645,4.0,950.0,106.0,500.0,510.857,522.0,608.0,431.0,505.0,512.382,520.0,577.0,0.0,2.0,10.4426,22.0,408.0,163.0,166.059,0.253452,11.9215,8.32787,10.0,10.0
+1277,42.576,10.0,4.0,4.0,6.20637,4.0,948.0,114.0,500.0,510.612,522.0,622.0,428.0,505.0,512.374,520.0,613.0,0.0,2.0,10.4888,22.0,399.0,155.0,163.17,0.23734,11.9725,8.45049,10.0,10.0
+1278,42.609,10.0,4.0,4.0,6.2319,4.0,948.0,106.0,500.0,510.448,522.0,604.0,444.0,504.0,512.221,520.0,583.0,0.0,2.0,10.5162,22.0,407.0,151.0,161.763,0.202786,12.0868,8.46779,10.0,10.0
+1279,42.643,10.0,4.0,4.0,6.21689,4.0,945.0,96.0,500.0,510.572,522.0,608.0,440.0,505.0,512.232,520.0,581.0,0.0,2.0,10.4872,22.0,418.0,153.0,163.472,0.23017,12.0242,8.32542,10.0,10.0
+1280,42.676,10.0,4.0,4.0,6.19661,4.0,949.0,129.0,500.0,510.798,522.0,604.0,438.0,505.0,512.38,520.0,580.0,0.0,2.0,10.4108,22.0,384.0,161.0,165.364,0.20709,11.8291,8.25997,10.0,10.0
+1281,42.709,10.0,4.0,4.0,6.25831,4.0,947.0,110.0,500.0,510.614,522.0,620.0,440.0,504.0,512.172,520.0,578.0,0.0,2.0,10.519,22.0,402.0,155.0,163.963,0.185482,11.8746,8.25189,10.0,10.0
+1282,42.743,10.0,4.0,4.0,6.23324,4.0,949.0,92.0,500.0,510.829,522.0,655.0,409.0,505.0,512.223,520.0,578.0,0.0,2.0,10.3957,22.0,421.0,161.0,165.418,0.256359,12.0567,8.3191,10.0,10.0
+1283,42.776,10.0,4.0,4.0,6.22381,4.0,946.0,95.0,500.0,510.792,522.0,605.0,430.0,505.0,512.268,520.0,620.0,0.0,2.0,10.4954,22.0,419.0,155.0,163.761,0.182899,11.8104,8.23527,10.0,10.0
+1284,42.809,10.0,4.0,4.0,6.21213,4.0,948.0,114.0,500.0,510.679,522.0,625.0,357.0,505.0,512.257,520.0,578.0,0.0,2.0,10.4247,22.0,401.0,153.0,163.041,0.137949,11.9011,8.41095,10.0,10.0
+1285,42.843,10.0,4.0,4.0,6.19639,4.0,946.0,120.0,500.0,510.726,522.0,596.0,440.0,505.0,512.216,520.0,580.0,0.0,2.0,10.4681,22.0,394.0,159.0,165.311,0.197937,11.7653,8.23908,10.0,10.0
+1286,42.876,10.0,4.0,4.0,6.18028,4.0,946.0,64.0,500.0,510.916,522.0,618.0,410.0,505.0,512.34,520.0,577.0,0.0,2.0,10.4823,22.0,450.0,164.0,166.222,0.192655,12.0996,8.38242,10.0,10.0
+1287,42.91,10.0,4.0,4.0,6.21804,4.0,947.0,87.0,500.0,510.935,522.0,733.0,397.0,505.0,512.36,520.0,579.0,0.0,2.0,10.471,21.0,426.0,163.0,166.125,0.194982,12.0514,8.37371,10.0,10.0
+1288,42.943,10.0,4.0,4.0,6.24359,4.0,946.0,118.0,500.0,510.674,522.0,716.0,444.0,505.0,512.267,520.0,578.0,0.0,2.0,10.4157,21.0,398.0,153.0,163.764,0.216004,11.9978,8.39232,10.0,10.0
+1289,42.976,10.0,4.0,4.0,6.22091,4.0,967.0,120.0,500.0,510.676,522.0,929.0,422.0,505.0,512.367,520.0,614.0,0.0,2.0,10.4343,21.0,421.0,153.0,163.735,0.178815,11.9249,8.27247,10.0,10.0
+1290,43.01,10.0,4.0,4.0,6.14236,4.0,952.0,90.0,500.0,510.781,522.0,606.0,437.0,505.0,512.356,520.0,582.0,0.0,2.0,10.4586,22.0,424.0,156.0,164.426,0.279061,11.8614,8.18629,10.0,10.0
+1291,43.043,10.0,4.0,4.0,6.24432,4.0,959.0,122.0,500.0,510.643,522.0,662.0,413.0,505.0,512.236,520.0,672.0,0.0,2.0,10.2883,21.0,391.0,151.0,162.091,0.349288,12.0034,8.37708,10.0,10.0
+1292,43.076,10.0,4.0,4.0,6.48547,5.0,962.0,134.0,500.0,510.744,522.0,724.0,436.0,505.0,512.268,520.0,582.0,0.0,2.0,10.3248,21.0,382.0,153.0,163.811,0.704498,11.634,8.12143,10.0,10.0
+1293,43.11,10.0,4.0,4.0,6.50949,6.0,956.0,124.0,501.0,510.928,522.0,604.0,424.0,505.0,512.23,520.0,578.0,0.0,2.0,10.2915,21.0,389.0,161.0,165.822,1.15799,12.0028,8.20617,10.0,10.0
+1294,43.143,10.0,4.0,4.0,6.64077,7.0,962.0,110.0,500.0,510.839,522.0,613.0,440.0,504.0,512.171,520.0,576.0,0.0,2.0,10.3642,22.0,405.0,158.0,164.606,1.37516,11.8681,8.25041,10.0,10.0
+1295,43.176,10.0,4.0,4.0,6.00087,4.0,904.0,105.0,501.0,510.929,522.0,601.0,438.0,505.0,512.254,520.0,575.0,0.0,2.0,10.2681,21.0,410.0,157.0,164.474,1.34882,11.6543,8.27571,10.0,10.0
+1296,43.21,10.0,4.0,4.0,6.31086,7.0,817.0,124.0,501.0,511.192,522.0,774.0,438.0,505.0,512.309,520.0,573.0,0.0,2.0,10.3845,21.0,390.0,165.0,167.083,1.23725,11.7608,8.30324,10.0,10.0
+1297,43.243,10.0,4.0,4.0,6.0416,7.0,778.0,118.0,501.0,510.887,522.0,791.0,312.0,505.0,512.237,520.0,576.0,0.0,2.0,10.2504,21.0,394.0,161.0,164.757,1.62032,11.8033,8.23222,10.0,10.0
+1298,43.277,10.0,4.0,4.0,5.74527,7.0,731.0,102.0,500.0,510.572,522.0,746.0,300.0,504.0,512.195,520.0,579.0,0.0,2.0,10.3078,21.0,412.0,151.0,161.751,1.61823,11.7385,8.18012,10.0,10.0
+1299,43.31,10.0,4.0,4.0,5.55369,7.0,536.0,109.0,501.0,510.922,522.0,732.0,394.0,505.0,512.224,520.0,575.0,0.0,2.0,10.2039,21.0,406.0,156.0,163.909,1.48649,11.7265,8.19754,10.0,10.0
+1300,43.343,10.0,4.0,4.0,5.34197,7.0,936.0,303.0,501.0,510.822,522.0,610.0,266.0,505.0,512.241,520.0,578.0,0.0,2.0,10.2872,21.0,265.0,153.0,163.025,1.60511,11.7341,8.06959,10.0,10.0
+1301,43.377,10.0,4.0,4.0,5.24165,7.0,952.0,103.0,501.0,510.684,522.0,716.0,248.0,505.0,512.157,520.0,574.0,0.0,2.0,10.2585,21.0,409.0,151.0,162.047,1.47524,11.7989,8.16704,10.0,10.0
+1302,43.41,10.0,4.0,4.0,5.28877,7.0,539.0,86.0,501.0,510.968,522.0,905.0,394.0,505.0,512.242,520.0,578.0,0.0,2.0,10.2999,21.0,430.0,160.0,165.102,1.45914,11.6103,8.17111,10.0,10.0
+1303,43.443,10.0,4.0,4.0,5.27186,7.0,530.0,89.0,502.0,511.201,522.0,877.0,348.0,505.0,512.244,520.0,578.0,0.0,2.0,10.3032,21.0,424.0,165.0,166.103,1.47442,11.6336,8.24063,10.0,10.0
+1304,43.477,10.0,4.0,4.0,5.33333,8.0,783.0,118.0,501.0,510.981,522.0,852.0,312.0,505.0,512.196,520.0,575.0,0.0,2.0,10.3013,21.0,395.0,161.0,165.034,1.45351,11.6347,8.26803,10.0,10.0
+1305,43.51,10.0,4.0,4.0,5.31286,7.0,533.0,105.0,501.0,510.687,522.0,931.0,432.0,505.0,512.154,520.0,580.0,0.0,2.0,10.3106,21.0,422.0,153.0,162.374,1.50255,11.5777,8.09695,10.0,10.0
+1306,43.544,10.0,4.0,4.0,5.31077,7.0,879.0,101.0,501.0,511.058,522.0,896.0,397.0,505.0,512.379,520.0,580.0,0.0,2.0,10.352,21.0,414.0,164.0,165.258,1.48592,11.7975,8.18938,10.0,10.0
+1307,43.577,10.0,4.0,4.0,5.30348,7.0,887.0,103.0,501.0,510.891,522.0,803.0,295.0,505.0,512.209,520.0,581.0,0.0,2.0,10.3418,21.0,412.0,156.0,164.647,1.46911,11.8102,8.22901,10.0,10.0
+1308,43.61,10.0,4.0,4.0,5.36807,7.0,534.0,119.0,500.0,510.747,522.0,903.0,349.0,504.0,512.173,520.0,578.0,0.0,2.0,10.4232,21.0,420.0,153.0,163.613,1.62002,11.5554,8.1054,10.0,10.0
+1309,43.644,10.0,4.0,4.0,5.50361,8.0,537.0,113.0,501.0,510.859,522.0,920.0,435.0,504.0,512.234,520.0,582.0,0.0,2.0,10.4451,21.0,408.0,153.0,163.271,1.5712,11.8206,8.30357,10.0,10.0
+1310,43.677,10.0,4.0,4.0,7.14169,12.0,543.0,92.0,500.0,510.698,522.0,887.0,430.0,505.0,512.214,520.0,646.0,0.0,2.0,10.3934,21.0,422.0,150.0,161.843,3.05961,11.7181,8.19495,10.0,10.0
+1311,43.71,10.0,4.0,4.0,14.3588,24.0,986.0,88.0,500.0,510.707,522.0,802.0,438.0,504.0,512.114,520.0,736.0,0.0,2.0,10.3008,21.0,428.0,153.0,163.476,8.75412,11.885,8.22829,10.0,10.0
+1312,43.744,10.0,4.0,4.0,14.5859,24.0,941.0,114.0,500.0,510.751,522.0,886.0,438.0,505.0,512.188,520.0,578.0,0.0,2.0,10.3893,21.0,401.0,153.0,163.013,8.17394,11.7911,8.18465,10.0,10.0
+1313,43.777,10.0,4.0,4.0,16.814,28.0,765.0,110.0,500.0,510.801,522.0,603.0,424.0,505.0,512.243,520.0,578.0,0.0,2.0,10.3369,21.0,402.0,160.0,164.748,8.7586,11.9257,8.30775,10.0,10.0
+1314,43.81,10.0,4.0,6.0,19.6375,30.0,558.0,92.0,501.0,510.977,522.0,596.0,420.0,505.0,512.257,520.0,579.0,0.0,2.0,10.2444,21.0,422.0,158.0,164.697,9.11444,11.7265,8.24346,10.0,10.0
+1315,43.844,10.0,4.0,10.0,22.4649,32.0,801.0,102.0,501.0,510.879,522.0,604.0,432.0,505.0,512.265,520.0,577.0,0.0,2.0,10.2162,21.0,411.0,158.0,164.632,9.49409,11.6817,8.22549,10.0,10.0
+1316,43.877,10.0,4.0,10.0,22.299,32.0,984.0,128.0,501.0,510.891,522.0,605.0,441.0,505.0,512.243,520.0,579.0,0.0,2.0,10.3719,21.0,386.0,158.0,164.455,8.82983,11.8951,8.25047,10.0,10.0
+1317,43.911,10.0,4.0,11.0,23.7413,33.0,987.0,90.0,500.0,510.668,522.0,604.0,436.0,505.0,512.301,520.0,579.0,0.0,2.0,10.4438,21.0,422.0,156.0,163.702,9.09306,11.9705,8.36688,10.0,10.0
+1318,43.944,10.0,4.0,11.0,24.7877,34.0,570.0,86.0,500.0,510.553,522.0,608.0,436.0,505.0,512.175,520.0,579.0,0.0,2.0,10.3192,21.0,427.0,149.0,160.71,9.0466,11.9353,8.33376,10.0,10.0
+1319,43.977,10.0,4.0,11.0,24.688,34.0,731.0,86.0,501.0,510.954,522.0,602.0,432.0,505.0,512.172,520.0,577.0,0.0,2.0,10.3462,21.0,429.0,156.0,164.081,8.51232,11.753,8.29411,10.0,10.0
+1320,44.011,10.0,4.0,12.0,25.1122,35.0,754.0,85.0,500.0,510.675,522.0,604.0,440.0,504.0,512.196,520.0,584.0,0.0,2.0,10.4229,21.0,427.0,153.0,162.346,9.1958,11.9026,8.19291,10.0,10.0
+1321,44.044,10.0,4.0,11.0,24.8803,34.0,993.0,114.0,500.0,510.633,522.0,597.0,425.0,504.0,512.069,520.0,579.0,0.0,2.0,10.365,21.0,398.0,149.0,161.043,8.79859,11.9482,8.31369,10.0,10.0
+1322,44.077,10.0,4.0,11.0,24.7322,34.0,613.0,80.0,501.0,510.825,522.0,606.0,430.0,504.0,512.147,520.0,576.0,0.0,2.0,10.4106,21.0,433.0,156.0,163.884,8.9123,11.8162,8.32505,10.0,10.0
+1323,44.111,10.0,4.0,11.0,24.8636,34.0,586.0,88.0,501.0,510.842,522.0,608.0,443.0,504.0,512.108,520.0,579.0,0.0,2.0,10.4248,21.0,428.0,158.0,164.331,8.92028,11.7732,8.26196,10.0,10.0
+1324,44.144,10.0,4.0,11.0,24.6287,34.0,992.0,106.0,501.0,510.825,522.0,608.0,436.0,504.0,512.158,520.0,577.0,0.0,2.0,10.3161,21.0,409.0,154.0,163.354,8.57209,11.8648,8.38084,10.0,10.0
+1325,44.177,10.0,4.0,12.0,25.3121,35.0,572.0,113.0,500.0,510.694,522.0,603.0,435.0,504.0,512.155,520.0,578.0,0.0,2.0,10.4408,21.0,400.0,153.0,163.316,8.82355,11.6699,8.25146,10.0,10.0
+1326,44.211,10.0,4.0,11.0,24.3451,34.0,568.0,80.0,501.0,510.993,522.0,602.0,438.0,504.0,512.135,520.0,577.0,0.0,2.0,10.3376,21.0,433.0,158.0,164.679,8.81495,12.029,8.42779,10.0,10.0
+1327,44.244,10.0,4.0,12.0,24.9773,34.0,993.0,102.0,501.0,510.801,522.0,606.0,443.0,505.0,512.382,520.0,579.0,0.0,2.0,10.2912,21.0,411.0,155.0,163.918,8.99704,11.7135,8.17145,10.0,10.0
+1328,44.278,10.0,4.0,11.0,24.7492,34.0,563.0,129.0,501.0,510.717,522.0,846.0,396.0,505.0,512.137,520.0,578.0,0.0,2.0,10.2661,21.0,384.0,151.0,162.376,8.89774,11.5665,8.17541,10.0,10.0
+1329,44.311,10.0,4.0,12.0,24.8926,34.0,555.0,107.0,498.0,509.369,520.0,803.0,420.0,505.0,512.521,520.0,581.0,0.0,2.0,10.5931,22.0,406.0,135.0,153.34,8.67228,11.7014,8.18726,10.0,10.0
+1330,44.344,10.0,4.0,18.0,152.736,506.0,1009.0,80.0,441.0,489.199,517.0,701.0,428.0,506.0,522.87,552.0,683.0,0.0,4.0,30.6088,81.0,434.0,118.0,134.241,130.894,26.3744,16.6015,10.0,10.0
+1331,44.378,10.0,4.0,35.0,278.932,821.0,1019.0,96.0,427.0,472.224,512.0,701.0,348.0,506.0,532.29,563.0,697.0,0.0,6.0,49.2997,98.0,417.0,118.0,124.697,130.159,27.2633,17.8105,10.0,10.0
+1332,44.411,10.0,4.0,36.0,281.517,823.0,1019.0,134.0,429.0,472.313,512.0,706.0,310.0,508.0,533.498,567.0,677.0,0.0,6.0,49.4645,98.0,382.0,119.0,123.991,12.7137,14.2121,10.5865,10.0,10.0
+1333,44.444,10.0,4.0,41.0,285.15,826.0,1019.0,106.0,429.0,472.041,512.0,722.0,362.0,508.0,534.1,567.0,692.0,0.0,6.0,49.9253,98.0,406.0,119.0,123.519,13.0933,14.2683,10.3991,10.0,10.0
+1334,44.478,10.0,4.0,44.0,287.34,829.0,1019.0,80.0,427.0,471.425,512.0,708.0,326.0,508.0,534.492,568.0,690.0,0.0,6.0,50.4019,99.0,432.0,119.0,123.583,11.549,14.4053,10.428,10.0,10.0
+1335,44.511,10.0,4.0,44.0,287.91,829.0,1019.0,106.0,429.0,471.645,511.0,708.0,332.0,508.0,534.497,567.0,670.0,0.0,6.0,50.2797,99.0,407.0,119.0,122.947,12.1409,14.307,10.4175,10.0,10.0
+1336,44.545,10.0,4.0,47.0,291.123,836.0,1019.0,132.0,429.0,471.944,512.0,709.0,378.0,508.0,534.86,568.0,687.0,0.0,6.0,50.259,99.0,380.0,120.0,124.621,11.2577,14.264,10.4394,10.0,10.0
+1337,44.578,10.0,4.0,52.0,293.972,835.0,1019.0,61.0,430.0,472.023,512.0,722.0,316.0,508.0,534.795,568.0,683.0,0.0,6.0,50.0254,98.0,451.0,120.0,124.817,12.1512,14.35,10.3359,10.0,10.0
+1338,44.611,10.0,4.0,53.0,297.436,846.0,1019.0,86.0,427.0,471.364,511.0,717.0,344.0,508.0,534.795,568.0,685.0,0.0,6.0,50.5924,99.0,428.0,119.0,123.681,12.9387,14.2242,10.2797,10.0,10.0
+1339,44.645,10.0,4.0,53.0,296.953,844.0,1019.0,106.0,427.0,471.444,511.0,712.0,370.0,508.0,535.373,568.0,688.0,0.0,6.0,50.764,100.0,408.0,120.0,123.949,11.1237,14.2338,10.4931,10.0,10.0
+1340,44.678,10.0,4.0,56.0,300.448,846.0,1019.0,138.0,428.0,471.285,511.0,711.0,394.0,508.0,535.094,568.0,690.0,0.0,6.0,50.717,99.0,379.0,120.0,122.569,13.4638,14.4792,10.5314,10.0,10.0
+1341,44.711,10.0,4.0,61.0,306.427,854.0,1019.0,113.0,428.0,471.536,511.0,755.0,362.0,508.0,535.316,568.0,688.0,0.0,6.0,50.6103,99.0,399.0,120.0,122.793,12.6635,14.4054,10.418,10.0,10.0
+1342,44.745,10.0,4.0,62.0,306.707,851.0,1019.0,91.0,426.0,471.285,511.0,725.0,365.0,508.0,535.093,568.0,684.0,0.0,6.0,50.6853,100.0,423.0,120.0,122.909,12.2146,14.3327,10.4585,10.0,10.0
+1343,44.778,10.0,4.0,63.0,308.58,856.0,1019.0,99.0,425.0,470.881,511.0,709.0,370.0,508.0,535.128,568.0,692.0,0.0,6.0,51.1514,101.0,413.0,119.0,123.079,12.1745,14.3309,10.3834,10.0,10.0
+1344,44.811,10.0,4.0,63.0,308.199,856.0,1019.0,128.0,427.0,471.423,511.0,730.0,410.0,508.0,535.208,568.0,702.0,0.0,6.0,50.7302,100.0,385.0,120.0,124.458,10.9068,14.4599,10.5347,10.0,10.0
+1345,44.845,10.0,4.0,63.0,307.558,855.0,1019.0,118.0,427.0,471.636,511.0,715.0,315.0,508.0,535.15,568.0,684.0,0.0,6.0,50.4889,99.0,394.0,120.0,123.579,11.9195,14.4472,10.5177,10.0,10.0
+1346,44.878,10.0,4.0,62.0,307.677,856.0,1019.0,94.0,428.0,471.654,511.0,717.0,340.0,508.0,535.331,568.0,703.0,0.0,6.0,50.5237,99.0,419.0,120.0,122.882,10.9543,14.376,10.4676,10.0,10.0
+1347,44.912,10.0,4.0,61.0,305.754,854.0,1019.0,113.0,427.0,471.293,511.0,712.0,335.0,508.0,534.588,568.0,697.0,0.0,6.0,50.583,99.0,400.0,119.0,123.211,12.1674,14.1889,10.4531,10.0,10.0
+1348,44.945,10.0,4.0,61.0,306.446,855.0,1019.0,111.0,429.0,471.642,511.0,740.0,340.0,508.0,534.434,568.0,685.0,0.0,6.0,50.2654,98.0,402.0,119.0,122.128,11.982,14.2315,10.2287,10.0,10.0
+1349,44.978,10.0,4.0,61.0,306.351,854.0,1019.0,100.0,426.0,471.257,511.0,822.0,352.0,508.0,535.067,568.0,702.0,0.0,6.0,50.6962,100.0,412.0,120.0,123.349,10.9601,14.3776,10.4604,10.0,10.0
+1350,45.012,10.0,4.0,62.0,305.745,854.0,1019.0,70.0,425.0,470.922,511.0,737.0,403.0,508.0,534.897,568.0,833.0,0.0,6.0,51.0577,100.0,443.0,119.0,122.721,12.281,14.4499,10.5215,10.0,10.0
+1351,45.045,10.0,4.0,61.0,305.288,853.0,1019.0,100.0,426.0,470.965,511.0,760.0,421.0,508.0,534.942,568.0,683.0,0.0,6.0,51.0124,100.0,414.0,119.0,122.292,11.1307,14.4924,10.5979,10.0,10.0
+1352,45.078,10.0,4.0,61.0,305.153,854.0,1019.0,110.0,428.0,471.233,511.0,740.0,344.0,508.0,534.435,568.0,686.0,0.0,6.0,50.4288,99.0,403.0,119.0,122.408,12.2516,14.2726,10.2995,10.0,10.0
+1353,45.112,10.0,4.0,61.0,305.657,854.0,1019.0,104.0,429.0,471.453,511.0,712.0,336.0,508.0,534.614,568.0,685.0,0.0,6.0,50.4736,99.0,408.0,119.0,122.761,11.9251,14.0989,10.2865,10.0,10.0
+1354,45.145,10.0,4.0,60.0,304.739,853.0,1019.0,84.0,428.0,471.709,511.0,722.0,404.0,508.0,534.816,568.0,674.0,0.0,6.0,50.3054,99.0,432.0,120.0,123.583,10.9366,14.3948,10.329,10.0,10.0
+1355,45.178,10.0,4.0,67.0,309.03,855.0,1019.0,80.0,427.0,471.139,511.0,811.0,398.0,508.0,534.659,568.0,694.0,0.0,6.0,50.7645,100.0,436.0,119.0,121.852,12.8882,14.4599,10.3751,10.0,10.0
+1356,45.212,10.0,4.0,77.0,320.545,867.0,1019.0,100.0,428.0,471.611,511.0,943.0,358.0,508.0,535.164,569.0,701.0,0.0,6.0,50.601,100.0,435.0,120.0,122.624,14.9659,14.3128,10.4767,10.0,10.0
+1357,45.245,10.0,4.0,83.0,327.999,875.0,1019.0,102.0,430.0,472.165,511.0,941.0,352.0,508.0,534.696,568.0,692.0,0.0,6.0,49.9599,98.0,429.0,120.0,123.608,14.1812,14.3592,10.5413,10.0,10.0
+1358,45.279,10.0,4.0,89.0,330.622,877.0,1019.0,134.0,430.0,472.366,511.0,921.0,362.0,508.0,534.432,568.0,689.0,0.0,6.0,49.7381,98.0,409.0,120.0,123.424,13.1519,14.2497,10.509,10.0,10.0
+1359,45.312,10.0,4.0,97.0,340.409,891.0,1019.0,72.0,429.0,472.21,512.0,906.0,376.0,508.0,534.321,568.0,690.0,0.0,6.0,49.7452,98.0,440.0,120.0,124.422,14.35,14.3815,10.6352,10.0,10.0
+1360,45.345,10.0,4.0,98.0,341.761,892.0,1019.0,122.0,429.0,471.919,511.0,764.0,330.0,508.0,533.931,568.0,688.0,0.0,6.0,49.8113,98.0,391.0,119.0,122.47,12.4952,14.5122,10.4931,10.0,10.0
+1361,45.379,10.0,4.0,98.0,343.503,897.0,1019.0,49.0,429.0,471.949,511.0,724.0,352.0,508.0,534.428,568.0,680.0,0.0,6.0,50.0426,99.0,463.0,119.0,123.311,11.4431,14.3072,10.4955,10.0,10.0
+1362,45.412,10.0,4.0,105.0,348.102,900.0,1019.0,79.0,430.0,472.374,512.0,728.0,388.0,508.0,533.865,567.0,684.0,0.0,6.0,49.4808,97.0,434.0,119.0,123.884,12.5318,14.3526,10.5708,10.0,10.0
+1363,45.445,10.0,4.0,104.0,349.015,903.0,1019.0,118.0,428.0,472.061,511.0,708.0,372.0,508.0,533.681,566.0,700.0,0.0,6.0,49.5885,98.0,395.0,119.0,122.542,12.0805,14.501,10.54,10.0,10.0
+1364,45.479,10.0,4.0,104.0,348.949,900.0,1019.0,90.0,430.0,472.677,512.0,815.0,400.0,508.0,533.741,567.0,739.0,0.0,6.0,49.1965,97.0,426.0,119.0,123.802,10.9321,14.2755,10.3242,10.0,10.0
+1365,45.512,10.0,4.0,104.0,349.22,900.0,1019.0,109.0,430.0,472.955,512.0,870.0,404.0,508.0,533.632,567.0,687.0,0.0,6.0,48.9396,96.0,403.0,119.0,123.669,12.4193,14.3698,10.4482,10.0,10.0
+1366,45.546,10.0,4.0,105.0,350.226,902.0,1019.0,106.0,430.0,473.24,512.0,917.0,381.0,508.0,533.748,567.0,683.0,0.0,6.0,48.768,97.0,407.0,120.0,124.3,11.6027,14.4606,10.4232,10.0,10.0
+1367,45.579,10.0,4.0,104.0,347.571,897.0,1019.0,102.0,430.0,472.561,512.0,932.0,358.0,508.0,533.853,566.0,687.0,0.0,6.0,49.3047,97.0,420.0,119.0,123.901,12.0051,14.3589,10.324,10.0,10.0
+1368,45.612,10.0,4.0,106.0,348.225,898.0,1019.0,110.0,430.0,472.702,512.0,846.0,331.0,508.0,533.669,566.0,705.0,0.0,6.0,49.3097,97.0,404.0,119.0,123.662,12.2066,14.3868,10.4935,10.0,10.0
+1369,45.646,10.0,4.0,105.0,349.185,901.0,1019.0,105.0,430.0,472.867,512.0,881.0,394.0,508.0,534.055,567.0,677.0,0.0,6.0,49.2185,97.0,408.0,120.0,124.208,11.0153,14.2686,10.3908,10.0,10.0
+1370,45.679,10.0,4.0,105.0,349.37,902.0,1019.0,80.0,430.0,472.426,511.0,762.0,424.0,508.0,533.896,567.0,781.0,0.0,6.0,49.4782,98.0,434.0,119.0,123.137,11.9174,14.2133,10.2648,10.0,10.0
+1371,45.712,10.0,4.0,104.0,349.105,902.0,1019.0,87.0,430.0,472.845,512.0,894.0,333.0,508.0,534.176,568.0,695.0,0.0,6.0,49.3575,97.0,427.0,120.0,123.719,10.9306,14.5136,10.5842,10.0,10.0
+1372,45.746,10.0,4.0,105.0,348.407,897.0,1019.0,110.0,427.0,471.601,511.0,816.0,348.0,508.0,534.677,568.0,722.0,0.0,6.0,50.3759,99.0,403.0,119.0,123.926,12.0624,14.4485,10.4689,10.0,10.0
+1373,45.779,10.0,4.0,106.0,348.759,898.0,1019.0,106.0,430.0,472.434,512.0,918.0,344.0,508.0,534.809,568.0,690.0,0.0,6.0,49.7977,98.0,409.0,120.0,124.679,11.773,14.5065,10.5513,10.0,10.0
+1374,45.812,10.0,4.0,106.0,349.894,902.0,1019.0,102.0,430.0,472.544,512.0,910.0,360.0,508.0,534.858,568.0,691.0,0.0,6.0,49.7453,98.0,413.0,120.0,125.397,11.1276,14.3101,10.5535,10.0,10.0
+1375,45.846,10.0,4.0,105.0,349.737,903.0,1019.0,96.0,429.0,471.843,511.0,939.0,358.0,508.0,534.687,568.0,686.0,0.0,6.0,50.2491,98.0,427.0,120.0,123.868,12.4754,14.2025,10.4111,10.0,10.0
+1376,45.879,10.0,4.0,106.0,349.121,902.0,1019.0,124.0,429.0,471.785,512.0,923.0,370.0,508.0,534.743,568.0,681.0,0.0,6.0,50.2634,99.0,415.0,120.0,124.34,11.2747,14.3686,10.3656,10.0,10.0
+1377,45.913,10.0,4.0,104.0,347.755,901.0,1019.0,124.0,430.0,472.184,511.0,922.0,380.0,508.0,534.643,568.0,679.0,0.0,6.0,49.8069,98.0,410.0,120.0,123.885,11.7901,14.1334,10.2636,10.0,10.0
+1378,45.946,10.0,4.0,105.0,350.01,902.0,1019.0,80.0,430.0,472.433,512.0,1019.0,358.0,508.0,534.942,568.0,695.0,0.0,6.0,49.9209,98.0,509.0,120.0,124.932,11.9776,14.2692,10.2559,10.0,10.0
+1379,45.979,10.0,4.0,107.0,351.775,903.0,1019.0,132.0,429.0,472.409,512.0,935.0,360.0,508.0,534.528,568.0,684.0,0.0,6.0,49.6441,98.0,425.0,120.0,125.43,10.9049,14.3116,10.4208,10.0,10.0
+1380,46.013,10.0,4.0,109.0,353.056,905.0,1019.0,128.0,430.0,472.346,512.0,771.0,319.0,508.0,534.436,568.0,685.0,0.0,6.0,49.7888,98.0,386.0,120.0,125.413,12.0695,14.3396,10.4632,10.0,10.0
+1381,46.046,10.0,4.0,116.0,359.511,912.0,1019.0,106.0,428.0,472.001,512.0,813.0,324.0,508.0,534.793,568.0,692.0,0.0,6.0,50.1238,98.0,406.0,120.0,125.396,12.2894,14.2552,10.3476,10.0,10.0
+1382,46.079,10.0,4.0,124.0,365.844,915.0,1019.0,93.0,430.0,473.23,512.0,827.0,318.0,508.0,534.547,568.0,714.0,0.0,6.0,49.1443,98.0,420.0,121.0,127.048,13.3627,14.4308,10.4264,10.0,10.0
+1383,46.113,10.0,4.0,128.0,370.286,923.0,1019.0,109.0,430.0,473.146,512.0,766.0,345.0,508.0,534.542,568.0,698.0,0.0,6.0,49.3228,98.0,404.0,121.0,127.255,12.9242,14.2995,10.3618,10.0,10.0
+1384,46.146,10.0,4.0,134.0,377.83,932.0,1019.0,106.0,430.0,472.887,512.0,741.0,281.0,508.0,534.941,568.0,684.0,0.0,6.0,49.5893,98.0,406.0,121.0,127.157,12.9398,14.3199,10.4989,10.0,10.0
+1385,46.179,10.0,4.0,135.0,379.47,934.0,1019.0,113.0,430.0,472.758,512.0,893.0,335.0,508.0,534.672,568.0,685.0,0.0,6.0,49.5816,98.0,399.0,120.0,126.733,12.2058,14.311,10.4699,10.0,10.0
+1386,46.213,10.0,4.0,137.0,381.983,938.0,1019.0,86.0,430.0,473.45,512.0,930.0,329.0,508.0,534.536,568.0,689.0,0.0,6.0,49.0083,97.0,429.0,121.0,128.311,11.0404,14.324,10.3806,10.0,10.0
+1387,46.246,10.0,4.0,136.0,379.946,933.0,1019.0,91.0,430.0,473.553,512.0,820.0,309.0,508.0,534.573,568.0,672.0,0.0,6.0,48.8882,96.0,424.0,121.0,127.924,12.4117,14.2291,10.2721,10.0,10.0
+1388,46.28,10.0,4.0,136.0,378.902,930.0,1019.0,118.0,430.0,473.667,512.0,891.0,336.0,508.0,534.618,568.0,684.0,0.0,6.0,48.909,96.0,399.0,121.0,128.009,11.5971,14.3605,10.2596,10.0,10.0
+1389,46.313,10.0,4.0,136.0,378.918,931.0,1019.0,124.0,430.0,473.778,513.0,879.0,388.0,508.0,534.687,568.0,679.0,0.0,6.0,48.9261,97.0,388.0,122.0,129.84,10.6085,14.1789,10.417,10.0,10.0
+1390,46.346,10.0,4.0,136.0,379.68,934.0,1019.0,86.0,430.0,473.443,513.0,861.0,388.0,508.0,534.564,568.0,683.0,0.0,6.0,49.0516,97.0,430.0,121.0,129.054,11.4662,14.186,10.3574,10.0,10.0
+1391,46.38,10.0,4.0,137.0,379.866,935.0,1019.0,96.0,430.0,473.6,513.0,784.0,352.0,508.0,534.537,567.0,673.0,0.0,6.0,48.8053,96.0,420.0,121.0,129.005,10.7564,14.3092,10.4524,10.0,10.0
+1392,46.413,10.0,4.0,135.0,376.942,930.0,1019.0,99.0,430.0,473.207,512.0,697.0,334.0,508.0,534.651,568.0,688.0,0.0,6.0,49.128,98.0,413.0,121.0,127.63,11.8041,14.1679,10.2139,10.0,10.0
+1393,46.446,10.0,4.0,135.0,378.307,931.0,1019.0,106.0,430.0,473.318,512.0,706.0,340.0,508.0,534.724,568.0,697.0,0.0,6.0,49.0,96.0,406.0,121.0,127.535,12.2004,14.1674,10.3031,10.0,10.0
+1394,46.48,10.0,4.0,136.0,378.947,932.0,1019.0,86.0,430.0,473.465,513.0,710.0,344.0,508.0,534.839,568.0,686.0,0.0,6.0,49.0495,97.0,427.0,122.0,129.15,11.0042,14.0956,10.4147,10.0,10.0
+1395,46.513,10.0,4.0,137.0,379.94,933.0,1019.0,118.0,430.0,473.946,513.0,719.0,340.0,508.0,535.037,568.0,677.0,0.0,6.0,48.7906,96.0,397.0,122.0,129.615,12.4896,14.2785,10.467,10.0,10.0
+1396,46.547,10.0,4.0,137.0,380.565,934.0,1019.0,110.0,431.0,474.105,512.0,722.0,352.0,508.0,535.09,568.0,679.0,0.0,6.0,48.6207,95.0,404.0,122.0,129.645,10.9742,14.1692,10.3239,10.0,10.0
+1397,46.58,10.0,4.0,137.0,378.255,928.0,1019.0,102.0,430.0,473.596,513.0,700.0,344.0,508.0,535.081,568.0,689.0,0.0,6.0,49.0747,97.0,410.0,122.0,129.351,12.5505,14.0238,10.4218,10.0,10.0
+1398,46.613,10.0,4.0,139.0,380.594,932.0,1019.0,40.0,431.0,474.109,513.0,708.0,352.0,508.0,534.949,568.0,698.0,0.0,6.0,48.5566,96.0,473.0,122.0,129.667,12.2228,14.3303,10.3377,10.0,10.0
+1399,46.647,10.0,4.0,138.0,380.533,933.0,1019.0,86.0,430.0,473.916,512.0,713.0,368.0,508.0,535.13,568.0,688.0,0.0,6.0,48.748,97.0,428.0,122.0,129.296,10.7678,14.2673,10.3793,10.0,10.0
+1400,46.68,10.0,4.0,137.0,379.882,934.0,1019.0,150.0,430.0,473.843,512.0,717.0,402.0,508.0,534.963,568.0,690.0,0.0,6.0,48.7606,97.0,362.0,122.0,128.732,11.9066,14.3816,10.5037,10.0,10.0
+1401,46.713,10.0,4.0,137.0,379.922,935.0,1019.0,110.0,430.0,473.416,512.0,711.0,384.0,508.0,535.073,568.0,690.0,0.0,6.0,49.2662,98.0,402.0,122.0,128.826,10.7607,14.1588,10.3893,10.0,10.0
+1402,46.747,10.0,4.0,138.0,380.608,932.0,1019.0,102.0,430.0,473.818,513.0,731.0,384.0,508.0,535.222,568.0,688.0,0.0,6.0,48.9619,98.0,412.0,122.0,130.352,11.8296,14.2967,10.5328,10.0,10.0
+1403,46.78,10.0,4.0,139.0,381.724,934.0,1019.0,107.0,430.0,473.896,513.0,713.0,366.0,508.0,535.155,568.0,706.0,0.0,6.0,48.8714,97.0,408.0,122.0,129.307,11.7629,14.2221,10.3197,10.0,10.0
+1404,46.813,10.0,4.0,139.0,381.329,934.0,1019.0,114.0,430.0,473.509,512.0,716.0,324.0,508.0,535.369,568.0,700.0,0.0,6.0,49.155,97.0,399.0,122.0,129.634,10.7661,14.2828,10.4207,10.0,10.0
+1405,46.847,10.0,4.0,138.0,380.271,934.0,1019.0,106.0,430.0,472.994,512.0,719.0,352.0,508.0,535.308,568.0,692.0,0.0,6.0,49.6627,98.0,406.0,122.0,128.429,11.8871,14.1723,10.2578,10.0,10.0
+1406,46.88,10.0,4.0,139.0,381.61,936.0,1019.0,100.0,430.0,472.909,512.0,725.0,361.0,508.0,535.653,569.0,688.0,0.0,6.0,49.9885,99.0,414.0,122.0,128.92,10.7345,14.0238,10.3762,10.0,10.0
+1407,46.914,10.0,4.0,137.0,380.587,932.0,1019.0,90.0,430.0,473.685,513.0,708.0,340.0,508.0,535.438,568.0,686.0,0.0,6.0,49.1235,97.0,426.0,122.0,129.865,13.1675,14.049,10.2867,10.0,10.0
+1408,46.947,10.0,4.0,136.0,379.341,933.0,1019.0,100.0,430.0,472.868,512.0,713.0,340.0,508.0,535.255,568.0,684.0,0.0,6.0,49.822,98.0,414.0,122.0,128.927,11.9384,14.2086,10.3395,10.0,10.0
+1409,46.98,10.0,4.0,137.0,379.733,934.0,1019.0,127.0,430.0,473.171,512.0,735.0,340.0,508.0,535.344,568.0,685.0,0.0,6.0,49.4964,98.0,386.0,122.0,129.065,10.6768,14.0957,10.3471,10.0,10.0
+1410,47.014,10.0,4.0,137.0,379.51,931.0,1019.0,100.0,430.0,473.802,513.0,711.0,388.0,508.0,534.615,568.0,679.0,0.0,6.0,48.8709,96.0,418.0,122.0,129.324,11.7062,13.9889,10.2521,10.0,10.0
+1411,47.047,10.0,4.0,137.0,379.704,930.0,1019.0,102.0,431.0,474.219,513.0,711.0,362.0,508.0,534.472,567.0,677.0,0.0,6.0,48.3686,96.0,411.0,122.0,128.724,10.8388,14.2331,10.4353,10.0,10.0
+1412,47.08,10.0,4.0,139.0,382.111,936.0,1019.0,128.0,431.0,474.202,513.0,700.0,349.0,508.0,534.161,567.0,693.0,0.0,6.0,48.239,96.0,386.0,121.0,128.914,11.4756,14.2442,10.4103,10.0,10.0
+1413,47.114,10.0,4.0,139.0,381.527,939.0,1019.0,113.0,430.0,473.657,513.0,711.0,349.0,508.0,534.481,567.0,701.0,0.0,5.0,48.8982,97.0,399.0,122.0,129.46,11.3925,14.1764,10.3547,10.0,10.0
+1414,47.147,10.0,4.0,138.0,381.238,937.0,1019.0,106.0,432.0,474.322,513.0,722.0,400.0,508.0,534.716,567.0,680.0,0.0,5.0,48.3435,95.0,408.0,122.0,130.123,10.6994,14.2296,10.3664,10.0,10.0
+1415,47.18,10.0,4.0,139.0,381.612,936.0,1019.0,118.0,430.0,474.045,513.0,816.0,348.0,508.0,534.482,567.0,677.0,0.0,6.0,48.5434,96.0,396.0,122.0,129.774,11.9886,14.2524,10.2541,10.0,10.0
+1416,47.214,10.0,4.0,140.0,383.308,938.0,1019.0,134.0,430.0,474.015,513.0,698.0,340.0,508.0,534.526,568.0,690.0,0.0,5.0,48.5489,96.0,384.0,122.0,130.441,10.9059,14.1939,10.3653,10.0,10.0
+1417,47.247,10.0,4.0,140.0,383.047,938.0,1019.0,106.0,430.0,473.292,513.0,717.0,349.0,508.0,534.685,567.0,674.0,0.0,6.0,49.2088,97.0,406.0,122.0,130.0,11.398,14.2472,10.3888,10.0,10.0
+1418,47.281,10.0,4.0,142.0,384.757,939.0,1019.0,104.0,430.0,473.666,514.0,714.0,332.0,508.0,535.238,568.0,689.0,0.0,5.0,49.2355,98.0,411.0,122.0,131.807,11.963,14.2915,10.4675,10.0,10.0
+1419,47.314,10.0,4.0,143.0,386.387,940.0,1019.0,124.0,431.0,474.559,514.0,707.0,330.0,508.0,535.161,568.0,686.0,0.0,5.0,48.4588,96.0,392.0,123.0,132.762,10.8208,14.0172,10.4316,10.0,10.0
+1420,47.347,10.0,4.0,150.0,390.885,943.0,1019.0,124.0,430.0,474.018,513.0,711.0,340.0,508.0,535.094,568.0,688.0,0.0,6.0,48.8867,97.0,389.0,122.0,131.653,12.1664,14.2174,10.3894,10.0,10.0
+1421,47.381,10.0,4.0,150.0,392.485,947.0,1019.0,122.0,430.0,474.138,514.0,727.0,332.0,508.0,535.324,568.0,678.0,0.0,5.0,48.9742,98.0,390.0,123.0,131.872,10.7124,14.3447,10.4172,10.0,10.0
+1422,47.414,10.0,4.0,149.0,391.629,947.0,1019.0,94.0,428.0,473.455,514.0,711.0,364.0,508.0,535.194,568.0,678.0,0.0,5.0,49.5335,99.0,419.0,122.0,132.213,11.407,14.3922,10.4063,10.0,10.0
+1423,47.447,10.0,4.0,150.0,392.603,947.0,1019.0,118.0,431.0,475.095,515.0,694.0,344.0,508.0,535.235,568.0,690.0,0.0,5.0,48.3465,96.0,397.0,123.0,134.145,11.3393,14.5758,10.5269,10.0,10.0
+1424,47.481,10.0,4.0,149.0,391.02,941.0,1019.0,124.0,432.0,475.896,516.0,725.0,346.0,508.0,535.133,568.0,678.0,0.0,5.0,47.6527,95.0,391.0,124.0,135.764,10.7897,14.25,10.4946,10.0,10.0
+1425,47.514,10.0,4.0,148.0,390.197,939.0,1019.0,111.0,430.0,475.385,516.0,757.0,348.0,508.0,534.555,567.0,677.0,0.0,5.0,47.6987,96.0,401.0,123.0,134.601,11.9653,14.3251,10.452,10.0,10.0
+1426,47.548,10.0,4.0,150.0,391.223,941.0,1019.0,102.0,430.0,474.884,515.0,709.0,316.0,508.0,534.878,568.0,676.0,0.0,5.0,48.154,97.0,414.0,123.0,134.275,10.8149,14.298,10.5306,10.0,10.0
+1427,47.581,10.0,4.0,151.0,393.181,947.0,1019.0,114.0,430.0,474.54,515.0,901.0,348.0,508.0,535.546,568.0,697.0,0.0,5.0,48.7887,97.0,400.0,123.0,133.952,11.5137,14.2748,10.3342,10.0,10.0
+1428,47.614,10.0,4.0,152.0,393.537,946.0,1019.0,104.0,431.0,475.098,514.0,923.0,350.0,508.0,535.328,568.0,693.0,0.0,6.0,48.1709,95.0,412.0,123.0,133.43,11.7837,14.2006,10.4504,10.0,10.0
+1429,47.648,10.0,4.0,150.0,393.144,948.0,1019.0,108.0,431.0,474.937,515.0,714.0,368.0,509.0,535.597,568.0,789.0,0.0,6.0,48.5185,97.0,405.0,124.0,134.092,11.2569,14.267,10.5587,10.0,10.0
+1430,47.681,10.0,4.0,150.0,393.584,950.0,1019.0,73.0,430.0,474.382,516.0,742.0,377.0,508.0,535.562,569.0,814.0,0.0,6.0,49.069,98.0,443.0,123.0,134.696,12.7418,14.2813,10.4081,10.0,10.0
+1431,47.714,10.0,4.0,150.0,393.952,951.0,1019.0,120.0,430.0,474.006,515.0,771.0,394.0,508.0,535.639,569.0,742.0,0.0,5.0,49.3144,98.0,394.0,123.0,133.724,11.3226,14.3861,10.5536,10.0,10.0
+1432,47.748,10.0,4.0,150.0,393.776,950.0,1019.0,106.0,431.0,475.211,516.0,920.0,336.0,508.0,535.132,568.0,681.0,0.0,5.0,48.1305,96.0,412.0,123.0,134.81,12.7307,14.2061,10.3691,10.0,10.0
+1433,47.781,10.0,4.0,151.0,393.947,948.0,1019.0,63.0,431.0,475.042,515.0,942.0,358.0,508.0,535.298,568.0,679.0,0.0,5.0,48.2929,96.0,449.0,124.0,134.234,11.7936,14.1617,10.4424,10.0,10.0
+1434,47.814,10.0,4.0,151.0,393.975,946.0,1019.0,106.0,430.0,474.882,515.0,745.0,410.0,509.0,535.358,568.0,770.0,0.0,5.0,48.4234,97.0,409.0,123.0,134.661,10.7341,14.1343,10.5469,10.0,10.0
+1435,47.848,10.0,4.0,152.0,394.522,948.0,1019.0,104.0,430.0,474.166,515.0,907.0,404.0,509.0,535.677,569.0,675.0,0.0,5.0,49.1804,98.0,411.0,123.0,133.673,12.059,14.2435,10.3073,10.0,10.0
+1436,47.881,10.0,4.0,152.0,396.0,952.0,1019.0,142.0,430.0,474.408,514.0,928.0,328.0,509.0,535.996,569.0,685.0,0.0,6.0,49.0143,97.0,429.0,124.0,133.862,10.9621,14.2653,10.5259,10.0,10.0
+1437,47.915,10.0,4.0,151.0,395.357,952.0,1019.0,104.0,430.0,474.115,514.0,900.0,352.0,509.0,535.983,569.0,670.0,0.0,6.0,49.2866,98.0,409.0,124.0,133.926,12.325,14.3579,10.4331,10.0,10.0
+1438,47.948,10.0,4.0,151.0,394.436,951.0,1019.0,100.0,430.0,473.615,514.0,868.0,388.0,508.0,535.582,568.0,689.0,0.0,6.0,49.4844,98.0,417.0,123.0,132.047,12.0677,14.2647,10.4007,10.0,10.0
+1439,47.981,10.0,4.0,150.0,394.563,952.0,1019.0,108.0,430.0,473.947,514.0,686.0,344.0,509.0,535.865,569.0,694.0,0.0,6.0,49.1747,98.0,408.0,123.0,133.142,11.0436,14.2533,10.4505,10.0,10.0
+1440,48.015,10.0,4.0,151.0,395.694,953.0,1019.0,126.0,430.0,474.023,514.0,697.0,342.0,509.0,535.904,569.0,681.0,0.0,6.0,49.2628,98.0,388.0,123.0,133.088,12.2332,14.1932,10.3458,10.0,10.0
+1441,48.048,10.0,4.0,152.0,396.624,953.0,1019.0,100.0,430.0,474.321,514.0,696.0,332.0,509.0,536.304,569.0,690.0,0.0,6.0,49.2956,98.0,412.0,124.0,134.153,10.971,14.3204,10.449,10.0,10.0
+1442,48.081,10.0,4.0,150.0,394.492,949.0,1019.0,100.0,430.0,473.85,515.0,700.0,344.0,509.0,536.003,569.0,709.0,0.0,6.0,49.5607,98.0,413.0,123.0,134.082,12.1938,14.2306,10.4622,10.0,10.0
+1443,48.115,10.0,4.0,151.0,395.19,952.0,1019.0,124.0,429.0,473.708,515.0,696.0,351.0,508.0,535.581,568.0,686.0,0.0,6.0,49.4975,99.0,389.0,123.0,133.756,12.4347,14.148,10.3286,10.0,10.0
+1444,48.148,10.0,4.0,151.0,395.308,952.0,1019.0,128.0,430.0,474.347,516.0,682.0,360.0,509.0,535.678,568.0,686.0,0.0,6.0,49.1009,97.0,386.0,124.0,134.622,10.7589,14.3521,10.3673,10.0,10.0
+1445,48.181,10.0,4.0,152.0,396.273,952.0,1019.0,96.0,430.0,474.231,515.0,676.0,352.0,509.0,535.541,568.0,686.0,0.0,6.0,48.9554,97.0,416.0,123.0,133.45,12.1375,14.4142,10.435,10.0,10.0
+1446,48.215,10.0,4.0,158.0,402.641,959.0,1019.0,90.0,430.0,474.442,516.0,694.0,380.0,509.0,535.961,569.0,698.0,0.0,6.0,49.1879,98.0,424.0,124.0,135.07,12.1239,14.3588,10.4866,10.0,10.0
+1447,48.248,10.0,4.0,161.0,405.249,962.0,1019.0,106.0,430.0,473.364,515.0,650.0,364.0,508.0,535.558,568.0,674.0,0.0,5.0,49.6364,98.0,408.0,123.0,133.043,13.2487,14.3302,10.4792,10.0,10.0
+1448,48.282,10.0,4.0,162.0,405.817,962.0,1019.0,111.0,430.0,474.021,514.0,650.0,380.0,508.0,534.851,568.0,683.0,0.0,6.0,48.7194,97.0,408.0,122.0,132.414,11.7761,14.3683,10.4439,10.0,10.0
+1449,48.315,10.0,4.0,163.0,405.775,961.0,1019.0,100.0,430.0,474.083,515.0,710.0,393.0,508.0,535.527,568.0,688.0,0.0,6.0,48.982,97.0,412.0,123.0,133.826,10.6698,14.2189,10.4779,10.0,10.0
+1450,48.348,10.0,4.0,161.0,404.876,959.0,1019.0,58.0,430.0,473.553,514.0,641.0,383.0,508.0,535.407,568.0,696.0,0.0,6.0,49.2886,98.0,457.0,123.0,132.14,12.2931,13.9795,10.3665,10.0,10.0
+1451,48.382,10.0,4.0,162.0,405.063,960.0,1019.0,118.0,430.0,473.889,515.0,761.0,399.0,508.0,535.506,568.0,678.0,0.0,6.0,49.1658,98.0,398.0,123.0,133.664,11.2842,14.0882,10.4338,10.0,10.0
+1452,48.415,10.0,4.0,161.0,404.479,960.0,1019.0,101.0,430.0,474.431,514.0,764.0,404.0,508.0,535.552,568.0,690.0,0.0,5.0,48.7525,97.0,413.0,123.0,133.512,12.5477,13.9441,10.4522,10.0,10.0
+1453,48.448,10.0,4.0,161.0,404.388,960.0,1019.0,134.0,430.0,474.621,515.0,656.0,413.0,508.0,535.458,568.0,679.0,0.0,6.0,48.6233,96.0,380.0,123.0,134.192,12.5044,14.2276,10.504,10.0,10.0
+1454,48.482,10.0,4.0,160.0,403.366,958.0,1019.0,100.0,430.0,474.457,515.0,662.0,416.0,508.0,535.409,568.0,693.0,0.0,5.0,48.6354,96.0,417.0,123.0,133.764,11.1308,14.1365,10.3608,10.0,10.0
+1455,48.515,10.0,4.0,161.0,403.473,958.0,1019.0,81.0,430.0,473.878,514.0,665.0,405.0,508.0,535.101,568.0,688.0,0.0,5.0,48.9077,97.0,432.0,122.0,132.338,13.1382,14.1121,10.3139,10.0,10.0
+1456,48.549,10.0,4.0,162.0,404.429,959.0,1019.0,128.0,430.0,474.001,515.0,659.0,358.0,508.0,535.734,569.0,693.0,0.0,6.0,49.1976,97.0,387.0,123.0,133.765,11.2618,14.2415,10.3431,10.0,10.0
+1457,48.582,10.0,4.0,161.0,405.354,960.0,1019.0,134.0,430.0,473.841,515.0,657.0,402.0,509.0,536.097,569.0,698.0,0.0,5.0,49.4153,98.0,380.0,124.0,134.458,14.2432,14.3521,10.5378,10.0,10.0
+1458,48.615,10.0,4.0,162.0,406.143,962.0,1019.0,80.0,430.0,473.93,515.0,620.0,394.0,509.0,536.201,569.0,707.0,0.0,5.0,49.461,98.0,434.0,124.0,134.937,13.7301,14.3345,10.5636,10.0,10.0
+1459,48.649,10.0,4.0,161.0,404.804,960.0,1019.0,130.0,430.0,473.816,514.0,644.0,430.0,509.0,535.761,568.0,678.0,0.0,5.0,49.2867,97.0,388.0,123.0,133.641,11.7551,14.1939,10.5488,10.0,10.0
+1460,48.682,10.0,4.0,164.0,406.92,962.0,1019.0,124.0,430.0,473.737,515.0,646.0,414.0,509.0,535.681,569.0,685.0,0.0,6.0,49.4201,98.0,391.0,123.0,134.125,13.6061,14.4191,10.6536,10.0,10.0
+1461,48.715,10.0,4.0,164.0,408.01,963.0,1019.0,114.0,430.0,473.975,515.0,665.0,428.0,508.0,536.179,569.0,693.0,0.0,5.0,49.3893,98.0,401.0,124.0,134.34,11.5739,14.3778,10.6105,10.0,10.0
+1462,48.749,10.0,4.0,164.0,407.037,963.0,1019.0,90.0,430.0,474.095,515.0,662.0,420.0,509.0,535.972,569.0,689.0,0.0,6.0,49.1698,98.0,425.0,124.0,134.397,13.4297,14.4158,10.5835,10.0,10.0
+1463,48.782,10.0,4.0,164.0,406.991,963.0,1019.0,96.0,428.0,473.262,515.0,615.0,430.0,508.0,536.14,569.0,694.0,0.0,6.0,49.994,99.0,418.0,123.0,133.972,14.2274,14.3036,10.6853,10.0,10.0
+1464,48.815,10.0,4.0,164.0,406.705,962.0,1019.0,110.0,430.0,474.003,515.0,614.0,420.0,509.0,536.067,569.0,674.0,0.0,6.0,49.3433,98.0,403.0,124.0,134.635,12.1172,14.3947,10.5569,10.0,10.0
+1465,48.849,10.0,4.0,164.0,407.199,962.0,1019.0,113.0,430.0,474.166,515.0,592.0,432.0,509.0,535.968,569.0,676.0,0.0,6.0,49.041,97.0,400.0,124.0,133.949,14.4564,14.8279,10.7419,10.0,10.0
+1466,48.882,10.0,4.0,168.0,412.341,969.0,1019.0,96.0,430.0,474.223,514.0,602.0,432.0,509.0,536.311,569.0,698.0,0.0,6.0,49.0595,97.0,419.0,124.0,134.386,12.7435,14.3037,10.4262,10.0,10.0
+1467,48.916,10.0,4.0,168.0,412.205,966.0,1019.0,118.0,428.0,472.608,514.0,636.0,390.0,509.0,536.556,569.0,696.0,0.0,6.0,50.52,100.0,397.0,123.0,132.898,16.2294,15.0251,10.9444,10.0,10.0
+1468,48.949,10.0,4.0,169.0,414.899,968.0,1019.0,140.0,427.0,472.096,513.0,698.0,380.0,509.0,536.811,570.0,682.0,0.0,6.0,51.1263,100.0,373.0,123.0,131.729,17.8905,14.9757,11.1562,10.0,10.0
+1469,48.982,10.0,4.0,177.0,423.077,975.0,1019.0,115.0,430.0,472.202,513.0,666.0,399.0,510.0,537.149,570.0,683.0,0.0,6.0,51.0905,99.0,397.0,123.0,132.291,15.4952,14.6204,10.9052,10.0,10.0
+1470,49.016,10.0,4.0,179.0,425.987,975.0,1019.0,82.0,426.0,471.212,512.0,621.0,434.0,510.0,537.331,570.0,682.0,0.0,6.0,51.8465,100.0,435.0,123.0,131.224,18.1703,15.5104,11.4036,10.0,10.0
+1471,49.049,10.0,4.0,180.0,427.574,977.0,1019.0,106.0,427.0,471.153,512.0,628.0,432.0,510.0,537.399,570.0,679.0,0.0,6.0,51.9051,100.0,410.0,123.0,130.597,13.451,14.9816,10.9384,10.0,10.0
+1472,49.082,10.0,4.0,179.0,425.535,971.0,1019.0,113.0,425.0,470.832,512.0,606.0,424.0,510.0,537.192,570.0,696.0,0.0,6.0,52.0224,100.0,401.0,122.0,129.628,19.0947,15.6371,11.7935,10.0,10.0
+1473,49.116,10.0,4.0,180.0,428.001,976.0,1019.0,127.0,426.0,470.968,512.0,604.0,421.0,510.0,537.345,569.0,697.0,0.0,6.0,51.9224,100.0,386.0,123.0,129.95,18.8635,15.5342,11.7913,10.0,10.0
+1474,49.149,10.0,4.0,180.0,428.681,977.0,1019.0,96.0,427.0,471.041,512.0,609.0,420.0,510.0,537.241,569.0,680.0,0.0,6.0,51.8692,99.0,419.0,123.0,130.254,14.2017,14.9181,10.9635,10.0,10.0
+1475,49.182,10.0,4.0,180.0,427.751,976.0,1019.0,102.0,428.0,470.937,512.0,606.0,417.0,509.0,536.816,569.0,681.0,0.0,6.0,51.8042,99.0,414.0,122.0,129.958,18.2448,15.3773,11.3813,10.0,10.0
+1476,49.216,10.0,4.0,180.0,427.933,976.0,1019.0,106.0,429.0,471.431,512.0,623.0,420.0,510.0,536.914,569.0,680.0,0.0,6.0,51.5214,98.0,413.0,123.0,130.388,13.5586,14.6232,10.9324,10.0,10.0
+1477,49.249,10.0,4.0,179.0,427.604,975.0,1019.0,105.0,428.0,470.623,512.0,612.0,430.0,510.0,537.169,569.0,716.0,0.0,6.0,52.1085,99.0,407.0,122.0,129.424,16.0344,14.7777,10.9211,10.0,10.0
+1478,49.283,10.0,4.0,180.0,428.196,973.0,1019.0,100.0,427.0,470.909,512.0,618.0,434.0,510.0,537.482,569.0,684.0,0.0,6.0,52.1529,99.0,414.0,123.0,130.302,15.3403,14.6175,10.7854,10.0,10.0
+1479,49.316,10.0,4.0,180.0,427.993,971.0,1019.0,118.0,429.0,471.105,512.0,602.0,424.0,510.0,537.191,568.0,697.0,0.0,6.0,51.7748,98.0,399.0,123.0,130.076,13.3755,14.6766,10.9102,10.0,10.0
+1480,49.349,10.0,4.0,179.0,426.628,971.0,1019.0,118.0,428.0,471.085,512.0,628.0,414.0,509.0,536.814,568.0,684.0,0.0,6.0,51.6935,98.0,394.0,122.0,129.646,17.3756,15.1875,11.4147,10.0,10.0
+1481,49.383,10.0,4.0,178.0,426.624,972.0,1019.0,110.0,427.0,471.0,512.0,606.0,418.0,509.0,536.995,568.0,692.0,0.0,6.0,51.8416,99.0,402.0,122.0,130.305,13.638,14.814,11.0552,10.0,10.0
+1482,49.416,10.0,4.0,176.0,426.133,974.0,1019.0,96.0,428.0,471.096,512.0,596.0,416.0,509.0,536.787,569.0,692.0,0.0,6.0,51.5313,99.0,417.0,122.0,129.441,17.7783,15.9421,12.016,10.0,10.0
+1483,49.449,10.0,4.0,175.0,425.111,978.0,1019.0,117.0,427.0,471.572,513.0,609.0,428.0,508.0,536.287,569.0,674.0,0.0,6.0,51.2289,99.0,398.0,122.0,130.666,17.6175,15.863,11.9279,10.0,10.0
+1484,49.483,10.0,4.0,175.0,423.619,975.0,1019.0,110.0,428.0,471.623,513.0,597.0,432.0,509.0,536.427,569.0,665.0,0.0,6.0,51.1769,99.0,404.0,123.0,131.686,13.5013,14.9315,11.1297,10.0,10.0
+1485,49.516,10.0,4.0,174.0,421.087,972.0,1019.0,118.0,427.0,472.057,513.0,594.0,420.0,508.0,536.302,570.0,663.0,0.0,6.0,50.9228,100.0,395.0,123.0,132.239,17.4154,15.2023,11.3389,10.0,10.0
+1486,49.55,10.0,4.0,176.0,421.86,975.0,1019.0,85.0,427.0,472.274,514.0,603.0,424.0,509.0,536.644,570.0,690.0,0.0,6.0,51.0006,100.0,429.0,123.0,132.738,13.2426,14.777,10.8792,10.0,10.0
+1487,49.583,10.0,4.0,177.0,420.298,971.0,1019.0,88.0,427.0,472.888,514.0,607.0,427.0,509.0,536.073,569.0,698.0,0.0,6.0,50.2239,99.0,425.0,123.0,133.289,15.9042,15.0348,11.1143,10.0,10.0
+1488,49.616,10.0,4.0,177.0,420.611,973.0,1019.0,118.0,426.0,472.608,514.0,699.0,416.0,508.0,536.059,569.0,684.0,0.0,6.0,50.464,100.0,396.0,123.0,132.469,16.648,15.1503,11.229,10.0,10.0
+1489,49.65,10.0,4.0,176.0,419.873,972.0,1019.0,100.0,426.0,472.713,514.0,834.0,406.0,509.0,536.171,570.0,676.0,0.0,6.0,50.4624,100.0,413.0,123.0,133.327,13.0003,14.6846,10.8123,10.0,10.0
+1490,49.683,10.0,4.0,177.0,418.425,972.0,1019.0,93.0,428.0,473.114,513.0,819.0,398.0,508.0,535.786,569.0,700.0,0.0,6.0,49.9089,99.0,424.0,123.0,132.206,16.9016,15.1854,11.235,10.0,10.0
+1491,49.716,10.0,4.0,177.0,417.568,973.0,1019.0,118.0,430.0,474.118,515.0,793.0,378.0,508.0,535.502,568.0,676.0,0.0,6.0,49.1298,98.0,399.0,123.0,134.406,13.397,14.8147,10.8626,10.0,10.0
+1492,49.75,10.0,4.0,176.0,415.648,971.0,1019.0,133.0,429.0,472.952,514.0,602.0,420.0,509.0,535.471,568.0,659.0,0.0,6.0,49.5977,98.0,381.0,123.0,132.212,15.566,15.0276,11.0137,10.0,10.0
+1493,49.783,10.0,4.0,179.0,417.448,969.0,1019.0,105.0,428.0,472.557,514.0,794.0,433.0,508.0,535.755,568.0,684.0,0.0,6.0,50.2246,99.0,408.0,122.0,132.29,13.5658,14.3413,10.5691,10.0,10.0
+1494,49.816,10.0,4.0,179.0,418.22,970.0,1019.0,111.0,427.0,472.8,514.0,916.0,420.0,509.0,536.071,569.0,689.0,0.0,6.0,50.1416,99.0,410.0,123.0,133.312,11.5043,14.1502,10.3843,10.0,10.0
+1495,49.85,10.0,4.0,178.0,419.33,971.0,1019.0,117.0,430.0,473.353,514.0,913.0,404.0,508.0,535.448,568.0,683.0,0.0,6.0,49.5014,98.0,405.0,123.0,132.355,13.4148,14.3108,10.4684,10.0,10.0
+1496,49.883,10.0,4.0,177.0,419.168,972.0,1019.0,118.0,430.0,473.288,514.0,859.0,351.0,508.0,535.562,568.0,681.0,0.0,6.0,49.6805,98.0,396.0,123.0,132.54,11.3938,14.0996,10.4604,10.0,10.0
+1497,49.917,10.0,4.0,176.0,415.931,969.0,1019.0,103.0,430.0,473.439,515.0,906.0,407.0,508.0,535.163,568.0,690.0,0.0,5.0,49.2481,98.0,409.0,122.0,133.144,14.4539,14.4413,10.7451,10.0,10.0
+1498,49.95,10.0,4.0,181.0,420.518,976.0,1019.0,96.0,430.0,474.48,516.0,959.0,402.0,508.0,534.862,567.0,681.0,0.0,5.0,48.4537,96.0,448.0,123.0,134.662,14.2276,14.2648,10.4369,10.0,10.0
+1499,49.983,10.0,4.0,185.0,424.919,982.0,1019.0,106.0,431.0,474.587,515.0,664.0,228.0,508.0,534.565,566.0,688.0,0.0,5.0,48.1593,95.0,407.0,123.0,133.877,12.1575,14.1682,10.3335,10.0,10.0
+1500,50.017,10.0,4.0,186.0,424.839,981.0,1019.0,110.0,430.0,474.317,515.0,682.0,212.0,508.0,534.15,566.0,692.0,0.0,5.0,48.131,96.0,404.0,122.0,133.231,12.4343,13.943,10.3081,10.0,10.0
+1501,50.05,10.0,4.0,185.0,424.916,981.0,1019.0,110.0,430.0,474.411,515.0,895.0,416.0,508.0,534.465,566.0,682.0,0.0,5.0,48.27,96.0,402.0,122.0,133.432,10.7949,14.1517,10.481,10.0,10.0
+1502,50.083,10.0,4.0,185.0,425.573,981.0,1019.0,108.0,430.0,474.119,515.0,956.0,438.0,508.0,534.873,567.0,717.0,0.0,6.0,48.7229,96.0,447.0,123.0,133.672,12.2196,14.0737,10.411,10.0,10.0
+1503,50.117,10.0,4.0,184.0,425.088,981.0,1019.0,106.0,431.0,475.045,516.0,844.0,374.0,508.0,534.991,568.0,684.0,0.0,5.0,47.9939,96.0,407.0,123.0,134.557,11.8178,14.233,10.4311,10.0,10.0
+1504,50.15,10.0,4.0,184.0,424.986,982.0,1019.0,92.0,430.0,474.832,516.0,859.0,420.0,508.0,535.179,568.0,688.0,0.0,5.0,48.3838,96.0,421.0,124.0,135.32,10.4726,14.2773,10.5546,10.0,10.0
+1505,50.183,10.0,4.0,184.0,424.658,980.0,1019.0,96.0,430.0,474.901,516.0,881.0,386.0,508.0,534.799,568.0,675.0,0.0,5.0,48.2444,96.0,416.0,123.0,134.871,11.9266,14.2907,10.4514,10.0,10.0
+1506,50.217,10.0,4.0,183.0,424.379,978.0,1019.0,110.0,430.0,474.828,516.0,769.0,398.0,508.0,534.898,568.0,692.0,0.0,5.0,48.222,96.0,405.0,123.0,133.951,10.7295,14.3364,10.4587,10.0,10.0
+1507,50.25,10.0,4.0,184.0,425.73,981.0,1019.0,124.0,431.0,475.4,516.0,924.0,400.0,508.0,534.959,568.0,690.0,0.0,5.0,47.8161,96.0,412.0,124.0,135.567,12.0211,14.3255,10.4081,10.0,10.0
+1508,50.284,10.0,4.0,185.0,424.558,976.0,1019.0,124.0,430.0,474.736,516.0,874.0,415.0,508.0,534.74,568.0,691.0,0.0,6.0,48.2223,96.0,391.0,123.0,133.894,11.6959,14.3886,10.5219,10.0,10.0
+1509,50.317,10.0,4.0,185.0,424.715,977.0,1019.0,122.0,430.0,474.642,516.0,899.0,410.0,508.0,535.164,568.0,687.0,0.0,6.0,48.5059,97.0,393.0,123.0,134.056,10.4624,14.2866,10.4322,10.0,10.0
+1510,50.35,10.0,4.0,185.0,425.251,978.0,1019.0,95.0,430.0,474.773,516.0,956.0,402.0,508.0,534.969,568.0,690.0,0.0,5.0,48.3338,97.0,446.0,123.0,134.118,12.1744,14.4121,10.35,10.0,10.0
+1511,50.384,10.0,4.0,184.0,425.507,979.0,1019.0,94.0,430.0,474.808,516.0,914.0,420.0,508.0,535.131,568.0,694.0,0.0,6.0,48.5115,97.0,420.0,123.0,135.053,10.8567,14.3245,10.4735,10.0,10.0
+1512,50.417,10.0,4.0,183.0,424.412,980.0,1019.0,114.0,431.0,475.584,516.0,661.0,380.0,508.0,534.041,566.0,690.0,0.0,5.0,47.3335,95.0,399.0,123.0,135.29,13.1431,14.1992,10.4209,10.0,10.0
+1513,50.45,10.0,4.0,184.0,424.267,982.0,1019.0,108.0,430.0,475.129,516.0,655.0,372.0,508.0,534.552,568.0,679.0,0.0,6.0,47.911,96.0,405.0,123.0,134.597,13.6258,14.2966,10.4062,10.0,10.0
+1514,50.484,10.0,4.0,183.0,424.023,982.0,1019.0,52.0,430.0,475.403,516.0,679.0,360.0,508.0,534.657,568.0,688.0,0.0,6.0,47.8688,97.0,463.0,123.0,135.69,12.6913,14.3612,10.5454,10.0,10.0
+1515,50.517,10.0,4.0,184.0,425.352,982.0,1019.0,166.0,430.0,475.36,516.0,690.0,380.0,508.0,534.272,567.0,673.0,0.0,6.0,47.5771,96.0,349.0,123.0,134.252,16.0917,14.4305,10.4249,10.0,10.0
+1516,50.551,10.0,4.0,184.0,425.637,982.0,1019.0,124.0,430.0,475.269,516.0,666.0,381.0,508.0,535.011,568.0,676.0,0.0,5.0,47.9611,97.0,392.0,123.0,134.97,13.1714,14.3047,10.5259,10.0,10.0
+1517,50.584,10.0,4.0,184.0,423.028,978.0,1019.0,92.0,430.0,474.974,516.0,666.0,337.0,508.0,534.621,568.0,688.0,0.0,6.0,48.0728,97.0,421.0,123.0,134.947,17.3288,14.4366,10.5492,10.0,10.0
+1518,50.617,10.0,4.0,185.0,425.061,981.0,1019.0,101.0,430.0,475.293,516.0,667.0,365.0,508.0,534.675,568.0,693.0,0.0,6.0,47.8002,96.0,414.0,123.0,134.979,16.7996,14.5049,10.4364,10.0,10.0
+1519,50.651,10.0,4.0,186.0,425.401,981.0,1019.0,103.0,430.0,475.35,516.0,654.0,385.0,508.0,534.727,568.0,682.0,0.0,6.0,47.8405,96.0,413.0,123.0,135.94,12.2309,14.2486,10.579,10.0,10.0
+1520,50.684,10.0,4.0,185.0,425.69,983.0,1019.0,122.0,430.0,475.185,516.0,669.0,371.0,508.0,534.499,568.0,697.0,0.0,6.0,47.8141,97.0,392.0,123.0,134.354,13.1506,14.2842,10.4047,10.0,10.0
+1521,50.717,10.0,4.0,184.0,425.292,984.0,1019.0,117.0,430.0,474.943,516.0,661.0,362.0,508.0,534.723,568.0,683.0,0.0,6.0,48.1456,97.0,395.0,123.0,134.801,10.7008,14.3923,10.451,10.0,10.0
+1522,50.751,10.0,4.0,185.0,425.461,983.0,1019.0,58.0,431.0,475.781,516.0,653.0,379.0,508.0,534.451,567.0,682.0,0.0,6.0,47.4953,96.0,458.0,123.0,136.52,13.0355,14.1919,10.4197,10.0,10.0
+1523,50.784,10.0,4.0,186.0,427.221,985.0,1019.0,100.0,430.0,475.495,516.0,684.0,349.0,508.0,534.424,567.0,691.0,0.0,5.0,47.4966,95.0,417.0,123.0,134.612,12.8069,14.2081,10.3361,10.0,10.0
+1524,50.817,10.0,4.0,185.0,426.766,983.0,1019.0,122.0,430.0,475.437,516.0,678.0,374.0,508.0,534.742,568.0,692.0,0.0,6.0,47.7414,96.0,391.0,124.0,135.784,10.9628,14.1238,10.3667,10.0,10.0
+1525,50.851,10.0,4.0,185.0,426.492,983.0,1019.0,56.0,430.0,474.801,516.0,630.0,408.0,508.0,534.913,568.0,691.0,0.0,6.0,48.2674,97.0,457.0,123.0,134.099,12.1733,14.3034,10.3094,10.0,10.0
+1526,50.884,10.0,4.0,184.0,426.157,982.0,1019.0,96.0,430.0,474.87,516.0,663.0,380.0,508.0,535.125,568.0,684.0,0.0,6.0,48.2828,97.0,419.0,123.0,134.438,10.8191,14.4282,10.43,10.0,10.0
+1527,50.918,10.0,4.0,185.0,425.868,982.0,1019.0,96.0,430.0,475.342,516.0,645.0,380.0,508.0,534.179,567.0,678.0,0.0,6.0,47.5539,96.0,418.0,123.0,134.164,12.3085,14.0988,10.316,10.0,10.0
+1528,50.951,10.0,4.0,185.0,426.513,985.0,1019.0,122.0,433.0,475.962,516.0,644.0,412.0,508.0,534.602,568.0,684.0,0.0,6.0,47.2042,95.0,392.0,123.0,134.593,12.6769,14.1677,10.2394,10.0,10.0
+1529,50.984,10.0,4.0,185.0,425.861,982.0,1019.0,108.0,430.0,475.329,516.0,640.0,398.0,508.0,534.984,568.0,688.0,0.0,6.0,47.8742,96.0,404.0,123.0,134.872,10.7072,14.2376,10.2834,10.0,10.0
+1530,51.018,10.0,4.0,183.0,425.283,982.0,1019.0,80.0,430.0,474.528,516.0,637.0,394.0,508.0,534.891,568.0,677.0,0.0,6.0,48.4125,97.0,437.0,123.0,134.235,12.463,14.1726,10.3214,10.0,10.0
+1531,51.051,10.0,4.0,185.0,426.249,983.0,1019.0,101.0,430.0,474.564,516.0,652.0,398.0,508.0,535.028,568.0,680.0,0.0,6.0,48.4603,96.0,413.0,123.0,134.234,10.6604,14.1267,10.0916,10.0,10.0
+1532,51.084,10.0,4.0,185.0,426.338,983.0,1019.0,117.0,431.0,475.064,515.0,653.0,416.0,508.0,534.923,567.0,695.0,0.0,6.0,47.8931,95.0,397.0,123.0,134.229,12.6039,13.8884,10.1369,10.0,10.0
+1533,51.118,10.0,4.0,185.0,426.657,983.0,1019.0,144.0,431.0,474.649,515.0,667.0,394.0,508.0,535.087,568.0,694.0,0.0,6.0,48.2606,95.0,369.0,123.0,133.626,11.9012,14.1055,10.2597,10.0,10.0
+1534,51.151,10.0,4.0,185.0,426.378,982.0,1019.0,102.0,430.0,474.755,515.0,657.0,380.0,508.0,534.959,568.0,678.0,0.0,6.0,48.194,96.0,412.0,123.0,133.409,10.7105,14.104,10.2694,10.0,10.0
+1535,51.184,10.0,4.0,185.0,427.028,983.0,1019.0,264.0,430.0,474.793,514.0,674.0,412.0,508.0,534.95,568.0,690.0,0.0,6.0,48.0969,96.0,271.0,123.0,132.608,11.6735,14.1243,10.3769,10.0,10.0
+1536,51.218,10.0,4.0,186.0,428.091,986.0,1019.0,118.0,430.0,474.823,514.0,665.0,393.0,508.0,535.131,568.0,703.0,0.0,6.0,48.1648,96.0,395.0,123.0,132.822,10.3401,14.1992,10.3943,10.0,10.0
+1537,51.251,10.0,4.0,185.0,427.541,984.0,1019.0,106.0,430.0,473.844,514.0,645.0,408.0,509.0,535.493,568.0,679.0,0.0,6.0,49.1425,98.0,408.0,123.0,132.921,11.3117,14.3525,10.3072,10.0,10.0
+1538,51.285,10.0,4.0,186.0,427.428,984.0,1019.0,104.0,430.0,474.133,514.0,675.0,380.0,508.0,535.431,568.0,679.0,0.0,6.0,48.8099,97.0,409.0,123.0,132.731,11.4007,14.225,10.4031,10.0,10.0
+1539,51.318,10.0,4.0,186.0,427.604,985.0,1019.0,111.0,430.0,474.286,514.0,684.0,424.0,509.0,535.326,568.0,687.0,0.0,6.0,48.6043,97.0,403.0,123.0,132.461,10.5258,14.0513,10.3195,10.0,10.0
+1540,51.351,10.0,4.0,186.0,427.447,985.0,1019.0,124.0,430.0,474.792,515.0,686.0,404.0,508.0,534.982,568.0,675.0,0.0,6.0,48.2071,96.0,391.0,123.0,133.01,11.788,13.9971,10.2449,10.0,10.0
+1541,51.385,10.0,4.0,186.0,428.023,987.0,1019.0,106.0,430.0,474.882,515.0,642.0,384.0,508.0,535.346,568.0,691.0,0.0,6.0,48.2169,96.0,406.0,123.0,133.307,10.7204,14.1544,10.4126,10.0,10.0
+1542,51.418,10.0,4.0,186.0,426.427,984.0,1019.0,85.0,430.0,474.646,515.0,637.0,383.0,508.0,535.338,568.0,691.0,0.0,6.0,48.3791,96.0,429.0,123.0,133.491,11.6554,14.0817,10.2146,10.0,10.0
+1543,51.451,10.0,4.0,186.0,427.503,987.0,1019.0,93.0,430.0,474.269,515.0,651.0,346.0,508.0,535.713,569.0,692.0,0.0,6.0,49.0461,98.0,420.0,123.0,133.655,11.2403,14.1274,10.3133,10.0,10.0
+1544,51.485,10.0,4.0,186.0,428.142,988.0,1019.0,122.0,430.0,474.461,515.0,707.0,319.0,509.0,535.708,569.0,688.0,0.0,6.0,48.8701,98.0,392.0,123.0,133.734,10.691,14.3037,10.3205,10.0,10.0
+1545,51.518,10.0,4.0,186.0,427.512,988.0,1019.0,105.0,430.0,474.173,515.0,677.0,238.0,509.0,535.838,569.0,689.0,0.0,6.0,49.1151,98.0,407.0,123.0,133.873,12.1343,14.3412,10.4618,10.0,10.0
+1546,51.552,10.0,4.0,186.0,427.361,987.0,1019.0,90.0,430.0,474.154,514.0,730.0,208.0,509.0,536.102,569.0,687.0,0.0,6.0,49.1698,98.0,424.0,124.0,133.977,10.8711,14.219,10.4518,10.0,10.0
+1547,51.585,10.0,4.0,187.0,426.09,984.0,1019.0,106.0,430.0,474.614,515.0,892.0,398.0,509.0,535.718,568.0,693.0,0.0,6.0,48.7278,97.0,407.0,124.0,134.562,11.5693,14.3835,10.4225,10.0,10.0
+1548,51.618,10.0,4.0,187.0,426.834,983.0,1019.0,100.0,431.0,475.103,515.0,606.0,412.0,509.0,535.731,569.0,696.0,0.0,6.0,48.3153,96.0,412.0,124.0,134.492,11.9991,14.382,10.3332,10.0,10.0
+1549,51.652,10.0,4.0,187.0,427.064,984.0,1019.0,114.0,430.0,474.86,515.0,653.0,404.0,509.0,535.761,569.0,707.0,0.0,6.0,48.528,97.0,399.0,124.0,134.683,10.6082,14.4692,10.5882,10.0,10.0
+1550,51.685,10.0,4.0,186.0,426.732,986.0,1019.0,72.0,430.0,473.821,513.0,610.0,422.0,508.0,535.491,569.0,679.0,0.0,6.0,49.0845,97.0,445.0,123.0,131.706,12.0745,14.3079,10.4109,10.0,10.0
+1551,51.718,10.0,4.0,186.0,426.662,986.0,1019.0,88.0,430.0,473.975,514.0,644.0,416.0,508.0,535.939,569.0,684.0,0.0,6.0,49.1725,99.0,425.0,123.0,132.629,10.9123,14.3689,10.4612,10.0,10.0
+1552,51.752,10.0,4.0,187.0,425.99,985.0,1019.0,114.0,431.0,475.261,515.0,654.0,408.0,508.0,535.25,568.0,684.0,0.0,6.0,47.9606,96.0,399.0,124.0,133.7,12.2044,14.2228,10.4437,10.0,10.0
+1553,51.785,10.0,4.0,187.0,427.001,985.0,1019.0,106.0,430.0,475.337,515.0,641.0,408.0,508.0,535.378,568.0,709.0,0.0,6.0,47.9214,96.0,408.0,124.0,134.007,11.2471,14.1326,10.3893,10.0,10.0
+1554,51.818,10.0,4.0,186.0,426.371,985.0,1019.0,68.0,430.0,475.317,516.0,632.0,420.0,508.0,535.294,568.0,702.0,0.0,6.0,48.0926,97.0,446.0,124.0,135.406,10.4177,14.3479,10.5183,10.0,10.0
+1555,51.852,10.0,4.0,187.0,427.021,985.0,1019.0,90.0,430.0,475.137,516.0,654.0,424.0,508.0,534.935,568.0,685.0,0.0,6.0,47.9604,97.0,427.0,123.0,133.804,11.6453,14.3293,10.4387,10.0,10.0
+1556,51.885,10.0,4.0,188.0,427.946,985.0,1019.0,110.0,430.0,475.36,515.0,767.0,311.0,508.0,535.287,568.0,685.0,0.0,6.0,47.9845,96.0,403.0,124.0,134.279,10.6075,14.4016,10.5876,10.0,10.0
+1557,51.919,10.0,4.0,186.0,426.723,984.0,1019.0,105.0,431.0,475.744,516.0,881.0,344.0,508.0,535.192,568.0,696.0,0.0,6.0,47.7865,96.0,407.0,124.0,135.852,12.7023,14.2878,10.4619,10.0,10.0
+1558,51.952,10.0,4.0,186.0,426.533,985.0,1019.0,89.0,430.0,474.589,515.0,632.0,234.0,508.0,535.436,568.0,697.0,0.0,6.0,48.5452,98.0,424.0,123.0,133.433,12.2465,14.6415,10.4467,10.0,10.0
+1559,51.985,10.0,4.0,187.0,427.198,988.0,1019.0,110.0,430.0,474.655,515.0,660.0,319.0,508.0,535.447,569.0,707.0,0.0,6.0,48.5857,98.0,405.0,124.0,134.093,10.4612,14.1991,10.5484,10.0,10.0
+1560,52.019,10.0,4.0,187.0,428.21,988.0,1019.0,122.0,430.0,474.588,515.0,821.0,329.0,508.0,535.077,568.0,690.0,0.0,6.0,48.4102,96.0,394.0,123.0,133.238,11.5657,14.1689,10.5275,10.0,10.0
+1561,52.052,10.0,4.0,187.0,429.162,988.0,1019.0,109.0,430.0,474.883,515.0,763.0,269.0,508.0,535.524,568.0,701.0,0.0,6.0,48.4606,97.0,403.0,124.0,134.211,10.4658,14.3226,10.6317,10.0,10.0
+1562,52.085,10.0,4.0,188.0,428.245,987.0,1019.0,92.0,430.0,475.204,515.0,628.0,177.0,508.0,535.201,568.0,694.0,0.0,6.0,48.0554,96.0,421.0,123.0,134.305,11.4527,14.3373,10.4547,10.0,10.0
+1563,52.119,10.0,4.0,186.0,427.441,988.0,1019.0,96.0,431.0,475.113,515.0,639.0,202.0,508.0,534.962,568.0,692.0,0.0,6.0,48.0422,96.0,419.0,123.0,133.742,11.6324,14.3993,10.3346,10.0,10.0
+1564,52.152,10.0,4.0,186.0,427.705,987.0,1019.0,128.0,431.0,475.399,516.0,717.0,234.0,508.0,535.09,568.0,670.0,0.0,6.0,48.0013,96.0,385.0,124.0,135.153,10.7061,14.1239,10.38,10.0,10.0
+1565,52.185,10.0,4.0,185.0,427.673,988.0,1019.0,97.0,431.0,475.895,516.0,630.0,217.0,508.0,534.176,567.0,670.0,0.0,6.0,47.1933,95.0,415.0,123.0,135.558,12.0915,14.1223,10.3866,10.0,10.0
+1566,52.219,10.0,4.0,185.0,427.512,989.0,1019.0,90.0,433.0,476.871,516.0,790.0,302.0,508.0,534.482,568.0,685.0,0.0,6.0,46.5788,94.0,423.0,124.0,135.805,10.8963,14.0889,10.2797,10.0,10.0
+1567,52.252,10.0,4.0,185.0,425.953,986.0,1019.0,99.0,432.0,476.138,516.0,790.0,290.0,508.0,534.417,567.0,678.0,0.0,6.0,47.164,94.0,414.0,123.0,135.502,13.2561,14.1151,10.3882,10.0,10.0
+1568,52.286,10.0,4.0,185.0,426.967,986.0,1019.0,118.0,432.0,476.372,516.0,762.0,288.0,508.0,534.502,567.0,701.0,0.0,6.0,46.9511,94.0,397.0,124.0,135.682,13.9857,14.1557,10.3282,10.0,10.0
+1569,52.319,10.0,4.0,186.0,427.495,985.0,1019.0,106.0,431.0,476.1,516.0,929.0,423.0,508.0,534.867,568.0,686.0,0.0,6.0,47.2874,95.0,417.0,124.0,135.378,11.4868,14.2969,10.3593,10.0,10.0
+1570,52.352,10.0,4.0,186.0,428.039,987.0,1019.0,90.0,432.0,475.868,516.0,846.0,200.0,508.0,534.526,567.0,680.0,0.0,6.0,47.3272,95.0,423.0,123.0,134.684,13.499,14.4093,10.3554,10.0,10.0
+1571,52.386,10.0,4.0,186.0,428.119,988.0,1019.0,86.0,431.0,475.627,516.0,632.0,428.0,508.0,534.619,568.0,684.0,0.0,6.0,47.5034,95.0,431.0,123.0,134.085,11.4033,14.2544,10.4055,10.0,10.0
+1572,52.419,10.0,4.0,186.0,427.138,983.0,1019.0,118.0,430.0,475.575,516.0,636.0,420.0,508.0,534.365,566.0,696.0,0.0,6.0,47.394,95.0,400.0,123.0,134.094,13.8655,14.3114,10.3244,10.0,10.0
+1573,52.452,10.0,4.0,186.0,428.868,985.0,1019.0,114.0,433.0,476.277,516.0,639.0,412.0,508.0,534.572,567.0,703.0,0.0,6.0,46.8886,94.0,398.0,124.0,134.386,13.389,14.3733,10.2427,10.0,10.0
+1574,52.486,10.0,4.0,185.0,428.175,985.0,1019.0,86.0,432.0,476.128,516.0,640.0,422.0,508.0,534.545,567.0,674.0,0.0,6.0,47.0348,94.0,427.0,123.0,134.682,11.1145,14.1112,10.3111,10.0,10.0
+1575,52.519,10.0,4.0,186.0,429.018,986.0,1019.0,118.0,431.0,475.7,516.0,644.0,436.0,508.0,534.593,567.0,688.0,0.0,6.0,47.3956,95.0,395.0,123.0,134.143,12.4912,13.9619,10.333,10.0,10.0
+1576,52.553,10.0,4.0,186.0,429.183,986.0,1019.0,122.0,431.0,475.329,515.0,644.0,382.0,508.0,534.649,566.0,697.0,0.0,6.0,47.5555,95.0,391.0,123.0,133.437,10.7853,14.0639,10.2944,10.0,10.0
+1577,52.586,10.0,4.0,186.0,429.615,984.0,1019.0,118.0,430.0,475.405,516.0,656.0,428.0,508.0,534.617,567.0,678.0,0.0,6.0,47.6937,95.0,394.0,123.0,135.338,11.8709,14.2411,10.1381,10.0,10.0
+1578,52.619,10.0,4.0,187.0,430.433,984.0,1019.0,129.0,431.0,475.5,516.0,624.0,420.0,508.0,535.184,568.0,686.0,0.0,6.0,47.8361,96.0,386.0,124.0,135.28,11.3164,14.1083,10.3451,10.0,10.0
+1579,52.653,10.0,4.0,186.0,429.179,983.0,1019.0,260.0,430.0,475.096,516.0,644.0,420.0,509.0,535.542,568.0,682.0,0.0,6.0,48.2822,97.0,273.0,124.0,134.564,10.5956,14.3004,10.417,10.0,10.0
+1580,52.686,10.0,4.0,185.0,429.466,986.0,1019.0,122.0,430.0,474.273,514.0,666.0,432.0,508.0,534.944,568.0,692.0,0.0,6.0,48.5773,97.0,394.0,123.0,132.212,11.8034,14.2116,10.4005,10.0,10.0
+1581,52.719,10.0,4.0,186.0,431.101,990.0,1019.0,111.0,430.0,474.26,514.0,675.0,409.0,508.0,535.461,568.0,683.0,0.0,6.0,48.7463,98.0,401.0,123.0,132.622,10.6082,14.322,10.4126,10.0,10.0
+1582,52.753,10.0,4.0,186.0,430.907,990.0,1019.0,105.0,430.0,474.062,514.0,672.0,432.0,509.0,535.454,568.0,688.0,0.0,6.0,49.0383,98.0,408.0,123.0,132.991,12.096,14.318,10.4563,10.0,10.0
+1583,52.786,10.0,4.0,187.0,431.774,991.0,1019.0,134.0,430.0,473.926,515.0,655.0,424.0,508.0,535.703,568.0,697.0,0.0,6.0,49.3525,98.0,378.0,123.0,133.275,12.1735,14.212,10.4796,10.0,10.0
+1584,52.819,10.0,4.0,187.0,430.587,987.0,1019.0,276.0,430.0,474.481,515.0,655.0,421.0,508.0,535.578,568.0,692.0,0.0,6.0,48.9057,98.0,261.0,123.0,134.344,11.0066,14.3971,10.3834,10.0,10.0
+1585,52.853,10.0,4.0,187.0,430.932,988.0,1019.0,90.0,430.0,474.841,516.0,653.0,412.0,509.0,535.336,568.0,681.0,0.0,6.0,48.5558,96.0,422.0,124.0,135.064,12.3261,14.2681,10.4074,10.0,10.0
+1586,52.886,10.0,4.0,187.0,432.103,990.0,1019.0,91.0,432.0,475.57,515.0,828.0,360.0,509.0,535.615,568.0,687.0,0.0,6.0,47.9414,96.0,422.0,124.0,134.713,10.7896,14.3319,10.4479,10.0,10.0
+1587,52.92,10.0,4.0,186.0,429.683,987.0,1019.0,139.0,431.0,475.299,516.0,640.0,412.0,508.0,535.005,568.0,698.0,0.0,6.0,47.9059,96.0,377.0,123.0,134.431,11.913,14.1898,10.5074,10.0,10.0
+1588,52.953,10.0,4.0,185.0,428.557,987.0,1019.0,118.0,431.0,475.294,515.0,647.0,405.0,508.0,535.352,568.0,693.0,0.0,6.0,47.978,96.0,397.0,124.0,134.165,11.5883,14.2242,10.2563,10.0,10.0
+1589,52.986,10.0,4.0,186.0,429.525,987.0,1019.0,102.0,431.0,475.179,516.0,663.0,434.0,509.0,535.662,568.0,690.0,0.0,6.0,48.2176,96.0,410.0,124.0,135.387,10.5708,14.1277,10.3418,10.0,10.0
+1590,53.02,10.0,4.0,187.0,428.883,986.0,1019.0,57.0,432.0,475.557,515.0,644.0,418.0,509.0,535.51,568.0,684.0,0.0,6.0,47.7873,95.0,458.0,124.0,134.903,11.522,14.1193,10.3254,10.0,10.0
+1591,53.053,10.0,4.0,185.0,428.268,985.0,1019.0,114.0,432.0,475.625,516.0,624.0,434.0,508.0,535.383,568.0,685.0,0.0,6.0,47.7304,95.0,400.0,124.0,134.726,10.913,14.3409,10.322,10.0,10.0
+1592,53.086,10.0,4.0,186.0,427.319,983.0,1019.0,90.0,430.0,474.816,515.0,640.0,420.0,509.0,535.5,568.0,686.0,0.0,6.0,48.3956,97.0,423.0,124.0,134.877,11.9241,14.3075,10.3899,10.0,10.0
+1593,53.12,10.0,4.0,186.0,427.852,983.0,1019.0,108.0,431.0,475.122,516.0,654.0,424.0,508.0,535.658,568.0,695.0,0.0,6.0,48.3902,96.0,405.0,124.0,135.436,11.7299,14.1127,10.3126,10.0,10.0
+1594,53.153,10.0,4.0,186.0,428.033,983.0,1019.0,100.0,432.0,475.692,516.0,636.0,440.0,509.0,535.782,569.0,699.0,0.0,6.0,47.8979,96.0,414.0,125.0,135.589,10.5143,14.2635,10.3286,10.0,10.0
+1595,53.186,10.0,4.0,185.0,427.678,984.0,1019.0,116.0,431.0,475.495,516.0,654.0,434.0,508.0,535.203,568.0,677.0,0.0,6.0,47.7746,96.0,396.0,124.0,134.67,11.4135,14.2622,10.3548,10.0,10.0
+1596,53.22,10.0,4.0,185.0,427.925,986.0,1019.0,124.0,431.0,475.329,515.0,640.0,388.0,508.0,535.631,569.0,694.0,0.0,6.0,48.1279,96.0,389.0,124.0,134.019,10.2659,14.2497,10.4037,10.0,10.0
+1597,53.253,10.0,4.0,186.0,428.626,985.0,1019.0,106.0,431.0,475.546,516.0,652.0,430.0,509.0,535.379,568.0,692.0,0.0,6.0,47.8626,95.0,406.0,124.0,135.365,11.2906,14.1193,10.3149,10.0,10.0
+1598,53.287,10.0,4.0,186.0,428.143,983.0,1019.0,106.0,432.0,476.158,516.0,626.0,430.0,508.0,535.649,568.0,682.0,0.0,6.0,47.5125,95.0,410.0,125.0,135.941,12.1077,14.1381,10.3933,10.0,10.0
+1599,53.32,10.0,4.0,186.0,428.185,983.0,1019.0,134.0,430.0,475.242,515.0,641.0,434.0,509.0,535.81,568.0,692.0,0.0,6.0,48.2562,97.0,379.0,124.0,134.901,10.3785,14.1924,10.546,10.0,10.0
+1600,53.353,10.0,4.0,186.0,428.258,986.0,1019.0,122.0,430.0,474.307,514.0,640.0,430.0,509.0,535.839,569.0,687.0,0.0,6.0,48.8611,98.0,393.0,123.0,133.051,11.4268,14.1093,10.4682,10.0,10.0
+1601,53.387,10.0,4.0,186.0,428.565,987.0,1019.0,102.0,429.0,474.124,514.0,643.0,416.0,509.0,535.983,569.0,688.0,0.0,6.0,49.1388,99.0,410.0,123.0,132.835,10.4432,14.2063,10.491,10.0,10.0
+1602,53.42,10.0,4.0,186.0,428.957,985.0,1019.0,95.0,430.0,474.175,514.0,662.0,423.0,509.0,535.888,568.0,689.0,0.0,6.0,49.0612,97.0,419.0,123.0,132.911,11.1751,14.119,10.4692,10.0,10.0
+1603,53.453,10.0,4.0,186.0,429.26,987.0,1019.0,106.0,430.0,474.36,514.0,640.0,416.0,508.0,535.768,568.0,679.0,0.0,6.0,48.8007,98.0,408.0,124.0,133.462,11.0765,14.3249,10.6027,10.0,10.0
+1604,53.487,10.0,4.0,185.0,428.557,987.0,1019.0,128.0,430.0,474.722,514.0,648.0,398.0,509.0,535.578,568.0,692.0,0.0,6.0,48.4826,98.0,386.0,124.0,133.567,10.4771,14.3613,10.4902,10.0,10.0
+1605,53.52,10.0,4.0,186.0,429.244,987.0,1019.0,139.0,430.0,474.632,514.0,617.0,395.0,508.0,535.405,568.0,685.0,0.0,6.0,48.4736,97.0,373.0,123.0,132.573,11.0976,14.3472,10.4897,10.0,10.0
+1606,53.554,10.0,4.0,186.0,429.765,987.0,1019.0,96.0,431.0,475.121,514.0,646.0,385.0,509.0,535.754,569.0,693.0,0.0,6.0,48.1136,96.0,418.0,124.0,133.132,10.3845,13.9727,10.2269,10.0,10.0
+1607,53.587,10.0,4.0,187.0,430.147,987.0,1019.0,127.0,430.0,474.834,515.0,667.0,352.0,509.0,535.719,568.0,689.0,0.0,6.0,48.4633,96.0,389.0,124.0,133.895,11.6591,13.9166,10.1892,10.0,10.0
+1608,53.62,10.0,4.0,187.0,429.263,986.0,1019.0,170.0,430.0,474.274,514.0,705.0,408.0,508.0,535.402,568.0,687.0,0.0,6.0,48.7961,97.0,343.0,123.0,133.379,11.8426,13.9005,10.1083,10.0,10.0
+1609,53.654,10.0,4.0,186.0,429.328,986.0,1019.0,113.0,431.0,474.736,515.0,867.0,426.0,509.0,535.446,568.0,693.0,0.0,6.0,48.4078,96.0,401.0,123.0,133.565,10.5613,14.4541,10.3386,10.0,10.0
+1610,53.687,10.0,4.0,186.0,429.411,985.0,1019.0,86.0,431.0,475.182,515.0,628.0,408.0,508.0,534.914,568.0,703.0,0.0,6.0,47.8508,96.0,427.0,123.0,133.514,11.4439,14.3797,10.4343,10.0,10.0
+1611,53.72,10.0,4.0,185.0,429.738,987.0,1019.0,86.0,431.0,475.424,516.0,641.0,384.0,508.0,535.301,568.0,676.0,0.0,6.0,47.8916,96.0,427.0,124.0,135.035,10.6065,14.0909,10.4994,10.0,10.0
+1612,53.754,10.0,4.0,186.0,429.273,988.0,1019.0,122.0,430.0,475.245,516.0,656.0,387.0,508.0,535.227,568.0,684.0,0.0,6.0,48.1085,97.0,392.0,124.0,134.904,11.9646,14.2659,10.4476,10.0,10.0
+1613,53.787,10.0,4.0,186.0,429.13,988.0,1019.0,135.0,431.0,475.051,515.0,654.0,400.0,508.0,535.314,568.0,689.0,0.0,6.0,48.1263,96.0,378.0,123.0,134.079,11.7673,14.2365,10.4376,10.0,10.0
+1614,53.82,10.0,4.0,187.0,430.043,987.0,1019.0,74.0,432.0,475.375,516.0,645.0,395.0,508.0,535.109,568.0,685.0,0.0,6.0,47.9428,95.0,440.0,124.0,134.892,10.8978,13.9383,10.2808,10.0,10.0
+1615,53.854,10.0,4.0,187.0,430.114,985.0,1019.0,118.0,431.0,475.56,516.0,652.0,387.0,508.0,534.938,568.0,686.0,0.0,6.0,47.6978,96.0,396.0,123.0,134.477,11.4412,14.3651,10.3475,10.0,10.0
+1616,53.887,10.0,4.0,186.0,429.546,983.0,1019.0,110.0,431.0,475.47,515.0,646.0,398.0,509.0,535.321,568.0,686.0,0.0,6.0,47.8419,96.0,404.0,124.0,134.721,10.3737,14.3725,10.3678,10.0,10.0
+1617,53.921,10.0,4.0,185.0,427.158,981.0,1019.0,114.0,430.0,474.825,516.0,641.0,405.0,508.0,534.808,568.0,686.0,0.0,6.0,48.2709,97.0,398.0,123.0,134.568,11.9517,14.3355,10.5828,10.0,10.0
+1618,53.954,10.0,4.0,187.0,430.357,987.0,1019.0,96.0,431.0,475.058,515.0,636.0,404.0,508.0,534.91,568.0,682.0,0.0,6.0,48.0059,96.0,419.0,123.0,133.421,11.8991,14.2013,10.387,10.0,10.0
+1619,53.987,10.0,4.0,186.0,430.696,987.0,1019.0,106.0,431.0,475.551,515.0,666.0,428.0,509.0,535.075,568.0,691.0,0.0,6.0,47.6938,95.0,409.0,124.0,134.958,10.297,14.4446,10.5083,10.0,10.0
+1620,54.021,10.0,4.0,187.0,431.068,988.0,1019.0,130.0,431.0,474.932,515.0,650.0,404.0,508.0,535.003,568.0,686.0,0.0,6.0,48.0904,96.0,383.0,123.0,133.313,11.3975,14.4163,10.3637,10.0,10.0
+1621,54.054,10.0,4.0,186.0,430.33,989.0,1019.0,122.0,430.0,474.259,514.0,908.0,424.0,508.0,535.158,568.0,698.0,0.0,6.0,48.6864,97.0,399.0,123.0,132.654,10.5101,14.3179,10.4046,10.0,10.0
+1622,54.087,10.0,4.0,187.0,431.298,990.0,1019.0,94.0,430.0,474.041,515.0,919.0,416.0,509.0,535.538,568.0,666.0,0.0,6.0,49.0009,97.0,418.0,123.0,133.156,11.5476,14.3204,10.472,10.0,10.0
+1623,54.121,10.0,4.0,187.0,430.565,987.0,1019.0,90.0,431.0,474.525,514.0,923.0,412.0,508.0,535.208,568.0,700.0,0.0,6.0,48.5241,96.0,425.0,123.0,132.566,11.5818,14.3979,10.5375,10.0,10.0
+1624,54.154,10.0,4.0,186.0,429.792,987.0,1019.0,132.0,430.0,474.34,515.0,934.0,414.0,508.0,535.261,568.0,695.0,0.0,6.0,48.6644,97.0,422.0,123.0,133.482,10.6033,14.223,10.4273,10.0,10.0
+1625,54.187,10.0,4.0,186.0,429.716,987.0,1019.0,118.0,430.0,474.289,514.0,931.0,414.0,508.0,535.237,568.0,674.0,0.0,6.0,48.7521,97.0,420.0,123.0,132.763,11.8919,14.4113,10.452,10.0,10.0
+1626,54.221,10.0,4.0,186.0,429.81,988.0,1019.0,105.0,431.0,474.944,515.0,1019.0,424.0,508.0,535.495,568.0,692.0,0.0,6.0,48.3497,96.0,515.0,123.0,133.587,10.7589,14.2059,10.4604,10.0,10.0
+1627,54.254,10.0,4.0,187.0,430.363,990.0,1019.0,113.0,432.0,475.657,516.0,903.0,424.0,508.0,535.293,568.0,690.0,0.0,6.0,47.8378,95.0,415.0,124.0,135.053,11.6611,14.1719,10.3044,10.0,10.0
+1628,54.288,10.0,4.0,186.0,429.324,988.0,1019.0,114.0,430.0,474.827,515.0,763.0,424.0,508.0,535.248,568.0,689.0,0.0,5.0,48.4159,96.0,402.0,123.0,134.134,11.4224,14.1299,10.4396,10.0,10.0
+1629,54.321,10.0,4.0,186.0,428.744,987.0,1019.0,87.0,430.0,474.642,516.0,746.0,417.0,509.0,535.089,568.0,714.0,0.0,6.0,48.5389,97.0,426.0,123.0,135.347,10.5792,14.1877,10.5606,10.0,10.0
+1630,54.354,10.0,4.0,186.0,428.036,985.0,1019.0,106.0,430.0,474.611,515.0,838.0,420.0,508.0,535.311,568.0,699.0,0.0,6.0,48.5769,97.0,409.0,123.0,134.152,11.622,14.2217,10.3862,10.0,10.0
+1631,54.388,10.0,4.0,185.0,428.429,986.0,1019.0,104.0,431.0,475.136,516.0,642.0,413.0,508.0,535.458,568.0,688.0,0.0,6.0,48.1776,96.0,409.0,124.0,134.579,10.7533,14.364,10.4551,10.0,10.0
+1632,54.421,10.0,4.0,187.0,428.125,983.0,1019.0,118.0,431.0,475.236,516.0,617.0,412.0,508.0,535.45,568.0,700.0,0.0,6.0,48.1154,96.0,396.0,124.0,135.184,11.6312,14.3114,10.4922,10.0,10.0
+1633,54.454,10.0,4.0,187.0,429.333,987.0,1019.0,115.0,430.0,474.644,515.0,625.0,408.0,508.0,535.611,568.0,700.0,0.0,6.0,48.6726,97.0,398.0,124.0,133.923,12.0073,14.1495,10.4717,10.0,10.0
+1634,54.488,10.0,4.0,186.0,428.502,984.0,1019.0,90.0,431.0,474.985,516.0,635.0,380.0,508.0,535.241,568.0,689.0,0.0,6.0,48.3264,96.0,422.0,124.0,134.652,10.3208,14.1892,10.4897,10.0,10.0
+1635,54.521,10.0,4.0,186.0,428.371,984.0,1019.0,108.0,432.0,475.815,516.0,679.0,388.0,508.0,534.56,567.0,703.0,0.0,5.0,47.3264,94.0,408.0,123.0,134.752,11.7102,14.0761,10.3907,10.0,10.0
+1636,54.555,10.0,4.0,187.0,429.544,986.0,1019.0,123.0,432.0,475.929,516.0,683.0,409.0,508.0,534.846,568.0,681.0,0.0,6.0,47.3202,94.0,391.0,124.0,134.741,10.3029,14.2338,10.3924,10.0,10.0
+1637,54.588,10.0,4.0,187.0,428.652,984.0,1019.0,103.0,431.0,475.359,516.0,896.0,398.0,508.0,534.994,568.0,689.0,0.0,6.0,47.8718,96.0,409.0,123.0,134.78,11.317,14.2437,10.3158,10.0,10.0
+1638,54.621,10.0,4.0,188.0,429.444,985.0,1019.0,107.0,431.0,475.204,516.0,922.0,279.0,508.0,534.721,568.0,673.0,0.0,6.0,47.9381,96.0,460.0,123.0,134.33,11.6527,14.3162,10.3596,10.0,10.0
+1639,54.655,10.0,4.0,187.0,429.267,984.0,1019.0,107.0,430.0,475.12,516.0,635.0,394.0,509.0,535.442,568.0,688.0,0.0,6.0,48.2279,96.0,406.0,124.0,135.464,10.589,14.2222,10.4836,10.0,10.0
+1640,54.688,10.0,4.0,186.0,428.732,984.0,1019.0,124.0,431.0,475.044,515.0,773.0,413.0,508.0,535.242,568.0,692.0,0.0,6.0,48.2047,96.0,390.0,124.0,134.376,11.9016,14.4204,10.4841,10.0,10.0
+1641,54.721,10.0,4.0,187.0,429.594,987.0,1019.0,123.0,430.0,474.902,515.0,644.0,409.0,508.0,535.521,568.0,693.0,0.0,5.0,48.3948,98.0,390.0,124.0,134.453,10.7173,14.5071,10.5296,10.0,10.0
+1642,54.755,10.0,4.0,187.0,428.958,986.0,1019.0,92.0,430.0,475.01,516.0,642.0,350.0,508.0,534.912,567.0,677.0,0.0,5.0,48.1168,96.0,423.0,123.0,134.974,12.0219,14.4253,10.4284,10.0,10.0
+1643,54.788,10.0,4.0,188.0,430.41,988.0,1019.0,80.0,430.0,474.864,515.0,646.0,394.0,509.0,535.383,568.0,677.0,0.0,6.0,48.2709,96.0,438.0,123.0,134.045,12.032,14.3377,10.379,10.0,10.0
+1644,54.821,10.0,4.0,188.0,430.09,988.0,1019.0,118.0,431.0,474.769,515.0,672.0,416.0,509.0,535.684,568.0,687.0,0.0,6.0,48.4563,96.0,396.0,124.0,134.406,10.7025,14.1386,10.5263,10.0,10.0
+1645,54.855,10.0,4.0,186.0,428.914,987.0,1019.0,106.0,430.0,474.499,516.0,646.0,410.0,508.0,535.557,568.0,701.0,0.0,6.0,48.7699,98.0,406.0,123.0,134.64,11.5762,14.1322,10.4233,10.0,10.0
+1646,54.888,10.0,4.0,186.0,428.678,987.0,1019.0,86.0,430.0,474.311,515.0,652.0,394.0,508.0,535.54,568.0,685.0,0.0,5.0,48.8674,97.0,428.0,123.0,133.741,10.2912,14.2417,10.5186,10.0,10.0
+1647,54.922,10.0,4.0,187.0,428.364,984.0,1019.0,106.0,430.0,475.091,516.0,656.0,398.0,509.0,535.711,568.0,693.0,0.0,6.0,48.3635,96.0,408.0,124.0,135.309,11.4336,14.2173,10.3244,10.0,10.0
+1648,54.955,10.0,4.0,186.0,428.684,985.0,1019.0,122.0,431.0,475.054,515.0,674.0,428.0,508.0,535.471,568.0,687.0,0.0,5.0,48.1706,96.0,393.0,124.0,133.881,11.2171,14.1534,10.3682,10.0,10.0
+1649,54.988,10.0,4.0,186.0,428.351,986.0,1019.0,120.0,431.0,475.107,516.0,640.0,419.0,509.0,535.643,568.0,688.0,0.0,5.0,48.2869,96.0,393.0,124.0,135.339,10.1535,14.1165,10.2821,10.0,10.0
+1650,55.022,10.0,4.0,187.0,428.874,986.0,1019.0,106.0,430.0,474.808,516.0,655.0,420.0,509.0,535.34,568.0,690.0,0.0,6.0,48.3913,97.0,409.0,123.0,135.029,11.3914,14.122,10.3552,10.0,10.0
+1651,55.055,10.0,4.0,186.0,428.803,987.0,1019.0,118.0,431.0,475.526,516.0,645.0,424.0,509.0,535.599,568.0,686.0,0.0,5.0,47.9531,96.0,395.0,125.0,136.472,10.5705,14.3443,10.4874,10.0,10.0
+1652,55.088,10.0,4.0,187.0,427.553,984.0,1019.0,124.0,431.0,475.967,516.0,658.0,400.0,509.0,535.212,567.0,681.0,0.0,5.0,47.5011,95.0,390.0,124.0,136.606,11.3338,14.1767,10.3154,10.0,10.0
+1653,55.122,10.0,4.0,186.0,426.649,982.0,1019.0,125.0,432.0,475.595,515.0,632.0,417.0,508.0,534.537,567.0,688.0,0.0,5.0,47.3614,94.0,387.0,123.0,134.047,11.1225,14.1022,10.3375,10.0,10.0
+1654,55.155,10.0,4.0,186.0,427.329,982.0,1019.0,109.0,432.0,475.924,516.0,647.0,407.0,509.0,535.075,567.0,676.0,0.0,5.0,47.4893,95.0,406.0,124.0,135.726,10.6217,14.0852,10.3626,10.0,10.0
+1655,55.188,10.0,4.0,186.0,427.856,982.0,1019.0,106.0,432.0,476.177,516.0,645.0,392.0,508.0,534.91,568.0,680.0,0.0,5.0,47.2505,95.0,411.0,124.0,136.092,11.6342,14.0984,10.4343,10.0,10.0
+1656,55.222,10.0,4.0,185.0,427.865,982.0,1019.0,122.0,433.0,476.554,516.0,641.0,430.0,508.0,534.879,568.0,695.0,0.0,5.0,46.9999,94.0,392.0,125.0,137.069,10.4185,14.2219,10.427,10.0,10.0
+1657,55.255,10.0,4.0,186.0,426.583,981.0,1019.0,132.0,432.0,476.312,516.0,640.0,416.0,508.0,534.781,567.0,685.0,0.0,5.0,47.1597,95.0,380.0,124.0,136.967,11.8946,14.0205,10.3445,10.0,10.0
+1658,55.289,10.0,4.0,186.0,426.0,982.0,1019.0,106.0,432.0,476.599,516.0,645.0,436.0,508.0,534.696,568.0,687.0,0.0,5.0,47.0832,95.0,408.0,124.0,137.854,12.1239,14.3396,10.3305,10.0,10.0
+1659,55.322,10.0,4.0,185.0,426.356,981.0,1019.0,106.0,434.0,477.081,516.0,650.0,424.0,508.0,534.599,568.0,673.0,0.0,5.0,46.6039,94.0,408.0,125.0,137.606,10.4616,14.2564,10.3896,10.0,10.0
+1660,55.355,10.0,4.0,186.0,427.282,983.0,1019.0,124.0,434.0,477.258,516.0,652.0,438.0,508.0,534.436,566.0,687.0,0.0,5.0,46.346,92.0,391.0,125.0,137.863,11.5745,14.2393,10.2848,10.0,10.0
+1661,55.389,10.0,4.0,185.0,427.526,984.0,1019.0,106.0,434.0,476.934,516.0,650.0,430.0,508.0,534.75,567.0,678.0,0.0,5.0,46.6225,93.0,407.0,125.0,136.843,10.5761,14.3037,10.4648,10.0,10.0
+1662,55.422,10.0,4.0,185.0,427.624,984.0,1019.0,68.0,432.0,476.116,516.0,648.0,385.0,508.0,535.012,568.0,683.0,0.0,5.0,47.4351,95.0,444.0,124.0,136.985,12.0665,14.2987,10.3082,10.0,10.0
+1663,55.455,10.0,4.0,185.0,428.754,987.0,1019.0,91.0,434.0,476.788,516.0,656.0,386.0,508.0,534.446,566.0,677.0,0.0,5.0,46.6588,94.0,422.0,124.0,136.991,12.5386,14.3505,10.3017,10.0,10.0
+1664,55.489,10.0,4.0,186.0,428.746,986.0,1019.0,118.0,434.0,477.168,516.0,656.0,416.0,508.0,534.679,567.0,695.0,0.0,5.0,46.5154,93.0,397.0,125.0,137.739,11.1762,14.2239,10.3683,10.0,10.0
+1665,55.522,10.0,4.0,186.0,427.617,986.0,1019.0,106.0,433.0,476.836,516.0,666.0,402.0,508.0,534.199,565.0,679.0,0.0,5.0,46.4586,93.0,407.0,124.0,137.098,13.0029,14.0923,10.349,10.0,10.0
+1666,55.556,10.0,4.0,185.0,427.028,987.0,1019.0,101.0,431.0,476.195,516.0,641.0,394.0,508.0,534.133,566.0,689.0,0.0,5.0,46.9549,94.0,414.0,123.0,135.137,11.1591,14.4217,10.418,10.0,10.0
+1667,55.589,10.0,4.0,187.0,427.864,986.0,1019.0,114.0,432.0,476.408,516.0,655.0,420.0,508.0,534.553,566.0,677.0,0.0,5.0,46.9532,94.0,401.0,124.0,136.964,12.48,14.1467,10.2834,10.0,10.0
+1668,55.622,10.0,4.0,186.0,428.005,985.0,1019.0,124.0,432.0,476.354,516.0,684.0,433.0,508.0,534.673,567.0,699.0,0.0,5.0,47.1021,94.0,390.0,124.0,136.166,11.736,14.1264,10.3551,10.0,10.0
+1669,55.656,10.0,4.0,187.0,427.932,986.0,1019.0,118.0,432.0,476.082,516.0,658.0,413.0,509.0,535.033,567.0,694.0,0.0,5.0,47.368,94.0,395.0,124.0,136.545,10.5628,14.1468,10.4471,10.0,10.0
+1670,55.689,10.0,4.0,185.0,427.614,986.0,1019.0,72.0,431.0,476.04,516.0,644.0,364.0,508.0,534.706,567.0,688.0,0.0,5.0,47.3507,95.0,440.0,124.0,136.5,11.6253,14.1208,10.3763,10.0,10.0
+1671,55.722,10.0,4.0,185.0,427.889,987.0,1019.0,118.0,432.0,476.347,516.0,666.0,408.0,508.0,534.992,567.0,694.0,0.0,5.0,47.2424,94.0,397.0,124.0,136.518,10.4042,14.2281,10.4403,10.0,10.0
+1672,55.756,10.0,4.0,187.0,428.331,987.0,1019.0,114.0,434.0,477.017,516.0,658.0,422.0,508.0,534.822,566.0,694.0,0.0,5.0,46.6315,93.0,402.0,125.0,138.184,11.334,14.0681,10.2538,10.0,10.0
+1673,55.789,10.0,4.0,186.0,428.566,987.0,1019.0,110.0,432.0,476.469,516.0,652.0,402.0,508.0,534.994,567.0,679.0,0.0,5.0,47.1456,95.0,402.0,125.0,137.314,12.0002,14.1947,10.3057,10.0,10.0
+1674,55.822,10.0,4.0,186.0,427.611,984.0,1019.0,95.0,432.0,476.271,516.0,650.0,388.0,509.0,534.923,567.0,679.0,0.0,5.0,47.3384,95.0,418.0,124.0,137.804,11.0765,14.081,10.4123,10.0,10.0
+1675,55.856,10.0,4.0,187.0,427.753,983.0,1019.0,106.0,434.0,476.662,516.0,654.0,412.0,508.0,534.689,567.0,677.0,0.0,5.0,46.7258,94.0,407.0,124.0,136.187,13.1664,14.1003,10.3629,10.0,10.0
+1676,55.889,10.0,4.0,186.0,428.303,984.0,1019.0,124.0,434.0,476.863,516.0,696.0,424.0,508.0,534.815,567.0,702.0,0.0,5.0,46.5991,93.0,390.0,125.0,136.722,11.462,14.0582,10.435,10.0,10.0
+1677,55.923,10.0,4.0,186.0,427.569,984.0,1019.0,121.0,432.0,476.547,516.0,653.0,380.0,509.0,534.968,567.0,673.0,0.0,5.0,47.0568,95.0,391.0,125.0,138.344,13.3188,14.1168,10.4383,10.0,10.0
+1678,55.956,10.0,4.0,185.0,427.858,985.0,1019.0,118.0,431.0,475.853,516.0,680.0,393.0,508.0,534.884,568.0,688.0,0.0,5.0,47.5587,95.0,397.0,124.0,136.266,12.4662,14.1247,10.4455,10.0,10.0
+1679,55.989,10.0,4.0,186.0,428.023,983.0,1019.0,106.0,431.0,476.432,516.0,617.0,398.0,508.0,535.064,568.0,689.0,0.0,5.0,47.3136,95.0,410.0,125.0,137.83,10.9562,14.1468,10.3522,10.0,10.0
+1680,56.023,10.0,4.0,186.0,428.281,983.0,1019.0,122.0,432.0,476.351,516.0,644.0,376.0,508.0,534.574,566.0,680.0,0.0,5.0,47.0459,94.0,392.0,124.0,136.772,12.8629,14.2668,10.4067,10.0,10.0
+1681,56.056,10.0,4.0,186.0,428.942,986.0,1019.0,111.0,433.0,476.497,516.0,661.0,398.0,508.0,534.727,567.0,688.0,0.0,5.0,46.9064,94.0,401.0,124.0,136.072,11.2516,14.4332,10.5565,10.0,10.0
+1682,56.089,10.0,4.0,187.0,428.397,985.0,1019.0,92.0,430.0,475.549,516.0,675.0,398.0,508.0,534.741,567.0,674.0,0.0,5.0,47.699,96.0,423.0,124.0,135.343,14.2743,14.4624,10.4661,10.0,10.0
+1683,56.123,10.0,4.0,186.0,429.398,985.0,1019.0,96.0,431.0,475.208,516.0,767.0,394.0,508.0,535.008,567.0,693.0,0.0,6.0,48.0761,96.0,418.0,124.0,135.486,13.734,14.3139,10.4491,10.0,10.0
+1684,56.156,10.0,4.0,187.0,430.08,986.0,1019.0,124.0,431.0,475.661,516.0,866.0,404.0,509.0,535.211,567.0,674.0,0.0,6.0,47.7897,95.0,392.0,124.0,135.956,10.587,14.2396,10.5294,10.0,10.0
+1685,56.189,10.0,4.0,187.0,430.375,987.0,1019.0,94.0,431.0,475.252,516.0,909.0,428.0,508.0,535.171,567.0,680.0,0.0,6.0,48.0586,95.0,418.0,123.0,134.901,12.416,14.3384,10.4798,10.0,10.0
+1686,56.223,10.0,4.0,185.0,429.815,988.0,1019.0,74.0,430.0,475.175,515.0,782.0,428.0,508.0,535.256,568.0,743.0,0.0,5.0,48.1102,97.0,441.0,124.0,134.109,11.1479,14.5782,10.5578,10.0,10.0
+1687,56.256,10.0,4.0,186.0,428.88,986.0,1019.0,95.0,430.0,474.849,516.0,839.0,432.0,508.0,535.053,567.0,689.0,0.0,5.0,48.3278,97.0,421.0,123.0,135.114,13.1844,14.2792,10.3803,10.0,10.0
+1688,56.29,10.0,4.0,186.0,428.825,985.0,1019.0,114.0,432.0,475.924,515.0,681.0,416.0,508.0,535.253,568.0,827.0,0.0,5.0,47.4821,95.0,401.0,124.0,134.979,13.4116,14.3032,10.3605,10.0,10.0
+1689,56.323,10.0,4.0,186.0,428.855,986.0,1019.0,110.0,432.0,475.984,516.0,641.0,430.0,509.0,535.397,568.0,806.0,0.0,5.0,47.5078,94.0,402.0,124.0,136.535,11.4226,14.23,10.3854,10.0,10.0
+1690,56.356,10.0,4.0,186.0,427.859,985.0,1019.0,90.0,431.0,475.182,515.0,846.0,438.0,508.0,535.269,568.0,699.0,0.0,5.0,48.0118,96.0,424.0,123.0,134.564,13.408,14.2796,10.4915,10.0,10.0
+1691,56.39,10.0,4.0,185.0,427.52,985.0,1019.0,108.0,430.0,474.861,515.0,874.0,438.0,508.0,535.536,568.0,682.0,0.0,5.0,48.4308,96.0,408.0,124.0,133.936,11.184,14.1273,10.5221,10.0,10.0
+1692,56.423,10.0,4.0,185.0,425.927,979.0,1019.0,118.0,431.0,475.441,516.0,804.0,419.0,509.0,535.412,568.0,720.0,0.0,5.0,48.0052,96.0,396.0,124.0,135.52,12.8883,14.2467,10.4352,10.0,10.0
+1693,56.456,10.0,4.0,185.0,427.503,983.0,1019.0,105.0,432.0,476.069,516.0,825.0,430.0,508.0,535.169,568.0,701.0,0.0,5.0,47.4199,95.0,408.0,125.0,136.235,11.9066,14.036,10.1846,10.0,10.0
+1694,56.49,10.0,4.0,185.0,426.05,979.0,1019.0,96.0,432.0,475.899,516.0,936.0,421.0,509.0,535.422,568.0,688.0,0.0,5.0,47.6291,95.0,448.0,124.0,136.139,10.8064,13.9876,10.1779,10.0,10.0
+1695,56.523,10.0,4.0,185.0,426.034,978.0,1019.0,106.0,432.0,475.576,516.0,914.0,420.0,508.0,534.975,567.0,687.0,0.0,5.0,47.6078,95.0,411.0,124.0,135.179,11.9447,13.9147,10.2073,10.0,10.0
+1696,56.557,10.0,4.0,185.0,426.64,980.0,1019.0,118.0,432.0,475.814,515.0,834.0,420.0,508.0,535.296,568.0,680.0,0.0,5.0,47.6067,95.0,397.0,124.0,135.326,10.6839,14.1026,10.2255,10.0,10.0
+1697,56.59,10.0,4.0,187.0,428.026,980.0,1019.0,118.0,433.0,476.22,516.0,886.0,429.0,508.0,534.881,567.0,687.0,0.0,6.0,47.2673,94.0,395.0,124.0,136.624,11.0821,14.2971,10.4495,10.0,10.0
+1698,56.623,10.0,4.0,185.0,424.507,973.0,1019.0,96.0,432.0,475.997,516.0,654.0,400.0,508.0,534.937,567.0,696.0,0.0,5.0,47.3227,94.0,419.0,124.0,135.418,12.6979,14.2278,10.3952,10.0,10.0
+1699,56.657,10.0,4.0,184.0,423.446,971.0,1019.0,118.0,430.0,475.507,516.0,660.0,430.0,509.0,535.309,568.0,684.0,0.0,6.0,47.8905,96.0,397.0,124.0,136.048,10.9298,14.224,10.5068,10.0,10.0
+1700,56.69,10.0,4.0,182.0,417.088,949.0,1019.0,118.0,430.0,474.933,515.0,829.0,432.0,508.0,535.136,568.0,694.0,0.0,5.0,48.2935,97.0,396.0,123.0,134.233,13.7522,14.2127,10.4254,10.0,10.0
+1701,56.723,10.0,4.0,181.0,413.01,938.0,1019.0,100.0,431.0,475.339,515.0,625.0,372.0,508.0,535.537,568.0,694.0,0.0,6.0,48.0635,96.0,412.0,124.0,134.333,11.7019,14.2325,10.2801,10.0,10.0
+1702,56.757,10.0,4.0,182.0,412.354,936.0,1019.0,88.0,430.0,475.334,516.0,655.0,420.0,509.0,535.358,568.0,686.0,0.0,6.0,48.0555,96.0,425.0,124.0,135.353,11.1061,14.3469,10.5376,10.0,10.0
+1703,56.79,10.0,4.0,181.0,412.494,940.0,1019.0,88.0,431.0,475.285,516.0,655.0,410.0,508.0,535.48,568.0,686.0,0.0,6.0,48.1922,96.0,425.0,124.0,135.669,11.4639,14.3474,10.4756,10.0,10.0
+1704,56.823,10.0,4.0,181.0,410.461,932.0,1019.0,124.0,432.0,475.917,516.0,712.0,432.0,509.0,535.306,567.0,678.0,0.0,5.0,47.6335,95.0,392.0,125.0,136.75,10.9973,14.2481,10.4444,10.0,10.0
+1705,56.857,10.0,4.0,180.0,407.557,921.0,1019.0,143.0,432.0,475.681,516.0,633.0,432.0,509.0,535.008,567.0,671.0,0.0,5.0,47.4345,95.0,370.0,124.0,135.554,12.5626,14.3014,10.3654,10.0,10.0
+1706,56.89,10.0,4.0,177.0,403.655,911.0,1019.0,90.0,431.0,475.456,514.0,711.0,416.0,508.0,535.247,568.0,723.0,0.0,5.0,47.8198,95.0,426.0,124.0,133.862,11.4858,14.2743,10.4458,10.0,10.0
+1707,56.924,10.0,4.0,178.0,402.374,907.0,1019.0,101.0,430.0,474.888,515.0,643.0,432.0,509.0,535.235,568.0,681.0,0.0,5.0,48.1896,97.0,413.0,124.0,134.378,12.5887,14.0157,10.3345,10.0,10.0
+1708,56.957,10.0,4.0,179.0,404.177,910.0,1019.0,122.0,430.0,474.894,515.0,667.0,434.0,508.0,535.483,568.0,769.0,0.0,5.0,48.4426,96.0,393.0,124.0,134.206,12.9639,14.2859,10.433,10.0,10.0
+1709,56.99,10.0,4.0,178.0,404.537,911.0,1019.0,103.0,431.0,475.35,516.0,656.0,416.0,509.0,535.734,568.0,687.0,0.0,6.0,48.1293,96.0,410.0,124.0,135.618,11.0978,14.2843,10.4621,10.0,10.0
+1710,57.024,10.0,4.0,177.0,403.935,912.0,1019.0,89.0,431.0,474.85,515.0,656.0,412.0,509.0,535.778,568.0,682.0,0.0,6.0,48.4494,96.0,426.0,124.0,134.203,11.9972,14.0846,10.4103,10.0,10.0
+1711,57.057,10.0,4.0,178.0,404.191,913.0,1019.0,115.0,430.0,474.346,515.0,645.0,435.0,508.0,535.814,569.0,694.0,0.0,6.0,48.9458,97.0,400.0,124.0,134.574,10.6098,14.1694,10.5077,10.0,10.0
+1712,57.09,10.0,4.0,179.0,404.807,912.0,1019.0,118.0,430.0,474.526,515.0,661.0,430.0,509.0,535.898,568.0,698.0,0.0,6.0,48.9265,97.0,395.0,124.0,134.953,11.2743,14.3371,10.4931,10.0,10.0
+1713,57.124,10.0,4.0,178.0,405.503,912.0,1019.0,108.0,431.0,474.905,514.0,673.0,418.0,509.0,535.846,568.0,693.0,0.0,6.0,48.3677,96.0,404.0,124.0,133.601,12.0007,14.343,10.3762,10.0,10.0
+1714,57.157,10.0,4.0,177.0,404.629,911.0,1019.0,94.0,430.0,475.039,516.0,859.0,404.0,509.0,536.022,568.0,688.0,0.0,6.0,48.5544,97.0,420.0,125.0,136.051,10.866,14.3132,10.529,10.0,10.0
+1715,57.19,10.0,4.0,178.0,405.161,912.0,1019.0,70.0,430.0,474.566,515.0,666.0,402.0,509.0,535.566,568.0,689.0,0.0,5.0,48.7006,97.0,445.0,124.0,135.119,12.0443,14.2268,10.5194,10.0,10.0
+1716,57.224,10.0,4.0,177.0,405.071,913.0,1019.0,122.0,430.0,474.847,515.0,665.0,438.0,509.0,535.938,568.0,685.0,0.0,6.0,48.6736,97.0,392.0,124.0,135.175,10.541,14.2338,10.5118,10.0,10.0
+1717,57.257,10.0,4.0,178.0,404.664,909.0,1019.0,99.0,431.0,475.314,515.0,638.0,398.0,509.0,535.64,568.0,699.0,0.0,6.0,48.0982,96.0,414.0,124.0,134.985,12.4065,14.1299,10.3795,10.0,10.0
+1718,57.291,10.0,4.0,179.0,405.959,913.0,1019.0,32.0,431.0,475.551,516.0,642.0,409.0,508.0,535.586,568.0,691.0,0.0,6.0,47.9835,96.0,484.0,124.0,135.662,11.9105,14.161,10.3787,10.0,10.0
+1719,57.324,10.0,4.0,179.0,405.561,912.0,1019.0,134.0,430.0,475.233,516.0,654.0,425.0,509.0,535.645,568.0,690.0,0.0,6.0,48.1847,96.0,381.0,124.0,135.683,10.5908,14.351,10.4102,10.0,10.0
+1720,57.357,10.0,4.0,178.0,405.195,912.0,1019.0,118.0,430.0,475.247,516.0,662.0,432.0,508.0,535.525,568.0,685.0,0.0,5.0,48.1845,96.0,395.0,124.0,135.879,11.5835,14.1448,10.4657,10.0,10.0
+1721,57.391,10.0,4.0,177.0,405.192,913.0,1019.0,102.0,431.0,475.196,516.0,642.0,416.0,508.0,535.767,568.0,686.0,0.0,5.0,48.3617,96.0,411.0,124.0,136.108,10.3527,14.3097,10.4761,10.0,10.0
+1722,57.424,10.0,4.0,179.0,406.333,912.0,1019.0,118.0,430.0,474.83,516.0,650.0,420.0,509.0,535.77,568.0,665.0,0.0,6.0,48.6485,97.0,397.0,124.0,135.475,11.1702,14.4531,10.4852,10.0,10.0
+1723,57.457,10.0,4.0,178.0,406.713,914.0,1019.0,114.0,430.0,474.271,515.0,640.0,404.0,508.0,535.674,568.0,705.0,0.0,6.0,49.0917,98.0,398.0,124.0,134.287,10.9957,14.3749,10.532,10.0,10.0
+1724,57.491,10.0,4.0,178.0,405.737,911.0,1019.0,122.0,430.0,474.575,515.0,640.0,380.0,509.0,535.84,568.0,686.0,0.0,6.0,48.8199,97.0,392.0,124.0,134.878,10.2152,14.2809,10.4986,10.0,10.0
+1725,57.524,10.0,4.0,177.0,404.089,909.0,1019.0,110.0,430.0,475.118,516.0,645.0,404.0,508.0,535.605,568.0,682.0,0.0,6.0,48.4805,96.0,402.0,124.0,135.194,11.6474,14.2669,10.4489,10.0,10.0
+1726,57.558,10.0,4.0,178.0,404.455,909.0,1019.0,105.0,431.0,475.41,515.0,662.0,352.0,509.0,535.62,568.0,676.0,0.0,6.0,47.9611,96.0,411.0,124.0,134.751,10.1624,14.2077,10.4553,10.0,10.0
+1727,57.591,10.0,4.0,177.0,403.046,907.0,1019.0,118.0,430.0,474.712,516.0,720.0,424.0,509.0,535.611,568.0,686.0,0.0,5.0,48.7193,97.0,396.0,124.0,135.515,11.0013,14.1696,10.4278,10.0,10.0
+1728,57.624,10.0,4.0,178.0,403.037,907.0,1019.0,118.0,430.0,475.182,516.0,730.0,418.0,508.0,535.735,568.0,727.0,0.0,6.0,48.4014,96.0,395.0,124.0,135.654,10.8057,14.2454,10.4667,10.0,10.0
+1729,57.658,10.0,4.0,177.0,401.233,903.0,1019.0,100.0,431.0,475.906,516.0,806.0,410.0,509.0,535.638,568.0,692.0,0.0,6.0,47.8641,95.0,413.0,125.0,136.677,10.5329,14.4563,10.5775,10.0,10.0
+1730,57.691,10.0,4.0,175.0,399.703,898.0,1019.0,102.0,432.0,475.977,516.0,680.0,394.0,508.0,535.201,568.0,692.0,0.0,5.0,47.365,95.0,414.0,124.0,135.606,11.0905,14.2763,10.3824,10.0,10.0
+1731,57.724,10.0,4.0,175.0,398.825,895.0,1019.0,118.0,430.0,474.844,516.0,848.0,413.0,508.0,535.447,568.0,688.0,0.0,5.0,48.4596,97.0,396.0,124.0,135.411,9.84182,14.1128,10.4856,10.0,10.0
+1732,57.758,10.0,4.0,175.0,398.368,895.0,1019.0,114.0,430.0,475.16,516.0,839.0,404.0,509.0,535.329,568.0,670.0,0.0,5.0,48.1378,97.0,400.0,124.0,135.778,11.7147,14.0855,10.2518,10.0,10.0
+1733,57.791,10.0,4.0,176.0,399.277,898.0,1019.0,118.0,433.0,475.922,516.0,904.0,416.0,508.0,535.497,568.0,686.0,0.0,6.0,47.7069,95.0,404.0,125.0,135.783,11.2302,13.9826,10.1525,10.0,10.0
+1734,57.824,10.0,4.0,176.0,398.791,897.0,1019.0,125.0,432.0,475.973,516.0,954.0,408.0,509.0,535.398,568.0,673.0,0.0,5.0,47.7363,95.0,442.0,125.0,136.765,9.88274,14.2532,10.3746,10.0,10.0
+1735,57.858,10.0,4.0,176.0,398.319,894.0,1019.0,103.0,432.0,475.793,516.0,891.0,420.0,508.0,534.888,566.0,676.0,0.0,5.0,47.55,94.0,410.0,124.0,135.115,10.7879,14.337,10.397,10.0,10.0
+1736,57.891,10.0,4.0,176.0,397.825,893.0,1019.0,109.0,432.0,475.947,516.0,828.0,377.0,508.0,535.385,568.0,690.0,0.0,5.0,47.6377,95.0,405.0,124.0,136.055,9.97273,14.2701,10.4612,10.0,10.0
+1737,57.925,10.0,4.0,176.0,398.935,894.0,1019.0,106.0,431.0,475.797,516.0,642.0,414.0,508.0,534.668,567.0,671.0,0.0,5.0,47.4106,95.0,406.0,124.0,135.811,10.9341,14.2886,10.3357,10.0,10.0
+1738,57.958,10.0,4.0,175.0,398.827,894.0,1019.0,92.0,433.0,476.542,516.0,632.0,421.0,508.0,534.948,568.0,693.0,0.0,5.0,47.0693,94.0,421.0,125.0,136.641,10.626,14.3299,10.3564,10.0,10.0
+1739,57.991,10.0,4.0,175.0,398.841,893.0,1019.0,96.0,431.0,475.757,516.0,624.0,412.0,508.0,535.095,568.0,691.0,0.0,5.0,47.6818,96.0,418.0,124.0,135.879,9.99814,14.2771,10.4445,10.0,10.0
+1740,58.025,10.0,4.0,176.0,398.804,894.0,1019.0,118.0,431.0,475.646,516.0,651.0,398.0,508.0,534.997,568.0,701.0,0.0,5.0,47.6317,95.0,396.0,124.0,135.184,11.0791,14.2189,10.5333,10.0,10.0
+1741,58.058,10.0,4.0,177.0,399.535,895.0,1019.0,150.0,431.0,475.854,516.0,619.0,424.0,508.0,535.253,568.0,678.0,0.0,5.0,47.4329,95.0,363.0,124.0,135.493,10.0764,14.1284,10.4423,10.0,10.0
+1742,58.091,10.0,4.0,176.0,398.66,894.0,1019.0,102.0,431.0,475.48,516.0,633.0,396.0,508.0,535.215,568.0,691.0,0.0,5.0,47.9096,96.0,414.0,124.0,135.782,10.8714,14.2743,10.3989,10.0,10.0
+1743,58.125,10.0,4.0,176.0,398.798,896.0,1019.0,107.0,430.0,474.678,516.0,617.0,394.0,508.0,535.578,568.0,681.0,0.0,5.0,48.64,97.0,406.0,124.0,135.333,10.7193,14.4179,10.4643,10.0,10.0
+1744,58.158,10.0,4.0,175.0,398.156,894.0,1019.0,134.0,430.0,474.849,516.0,640.0,394.0,509.0,535.704,568.0,697.0,0.0,5.0,48.5152,96.0,380.0,124.0,136.236,10.0125,14.2314,10.461,10.0,10.0
+1745,58.191,10.0,4.0,175.0,398.498,894.0,1019.0,102.0,430.0,474.877,515.0,620.0,417.0,509.0,535.275,568.0,671.0,0.0,5.0,48.2924,97.0,410.0,124.0,134.678,10.9864,14.2026,10.3397,10.0,10.0
+1746,58.225,10.0,4.0,175.0,399.603,896.0,1019.0,110.0,432.0,475.834,516.0,624.0,424.0,509.0,535.62,568.0,689.0,0.0,5.0,47.7064,95.0,404.0,125.0,135.545,9.96976,14.2497,10.3186,10.0,10.0
+1747,58.258,10.0,4.0,174.0,398.056,895.0,1019.0,86.0,431.0,475.066,515.0,642.0,419.0,508.0,535.369,568.0,682.0,0.0,5.0,48.1977,96.0,428.0,124.0,133.88,10.8814,14.1972,10.4153,10.0,10.0
+1748,58.292,10.0,4.0,176.0,399.094,897.0,1019.0,106.0,430.0,474.207,515.0,636.0,418.0,508.0,535.554,568.0,778.0,0.0,5.0,48.9073,96.0,409.0,123.0,133.978,11.1022,14.1808,10.4091,10.0,10.0
+1749,58.325,10.0,4.0,175.0,398.609,896.0,1019.0,108.0,430.0,474.925,516.0,847.0,428.0,509.0,535.756,568.0,699.0,0.0,5.0,48.6051,97.0,405.0,124.0,135.792,10.0164,14.2642,10.5156,10.0,10.0
+1750,58.358,10.0,4.0,175.0,397.988,896.0,1019.0,96.0,430.0,475.127,515.0,939.0,404.0,508.0,535.481,568.0,691.0,0.0,5.0,48.26,96.0,430.0,124.0,134.172,10.9951,14.2032,10.3952,10.0,10.0
+1751,58.392,10.0,4.0,174.0,397.561,896.0,1019.0,118.0,430.0,474.989,516.0,863.0,432.0,508.0,535.557,569.0,693.0,0.0,5.0,48.3765,97.0,396.0,124.0,134.779,9.99161,14.3445,10.3449,10.0,10.0
+1752,58.425,10.0,4.0,174.0,395.965,893.0,1019.0,118.0,430.0,475.008,516.0,767.0,428.0,508.0,535.313,568.0,754.0,0.0,5.0,48.2217,96.0,397.0,124.0,135.063,11.2228,14.1885,10.44,10.0,10.0
+1753,58.458,10.0,4.0,175.0,397.667,894.0,1019.0,114.0,430.0,474.606,514.0,785.0,416.0,508.0,535.435,568.0,713.0,0.0,5.0,48.454,96.0,399.0,123.0,133.008,11.5522,14.169,10.3404,10.0,10.0
+1754,58.492,10.0,4.0,175.0,396.978,892.0,1019.0,110.0,431.0,475.588,516.0,919.0,420.0,509.0,535.455,568.0,692.0,0.0,5.0,47.8208,96.0,407.0,124.0,135.558,10.4699,14.3392,10.3985,10.0,10.0
+1755,58.525,10.0,4.0,175.0,397.47,893.0,1019.0,114.0,430.0,475.063,515.0,926.0,404.0,508.0,535.162,568.0,684.0,0.0,5.0,48.1791,97.0,414.0,124.0,134.842,11.9582,14.1135,10.282,10.0,10.0
+1756,58.559,10.0,4.0,176.0,398.697,897.0,1019.0,123.0,430.0,475.184,516.0,882.0,416.0,508.0,535.525,568.0,684.0,0.0,5.0,48.3368,96.0,389.0,124.0,135.269,10.5294,14.2736,10.3674,10.0,10.0
+1757,58.592,10.0,4.0,177.0,398.443,896.0,1019.0,106.0,430.0,475.098,516.0,903.0,387.0,509.0,535.31,568.0,686.0,0.0,5.0,48.3042,96.0,406.0,124.0,135.474,11.375,14.4329,10.4735,10.0,10.0
+1758,58.625,10.0,4.0,176.0,398.779,895.0,1019.0,114.0,431.0,475.401,515.0,677.0,377.0,509.0,535.844,568.0,684.0,0.0,5.0,48.199,96.0,401.0,125.0,135.469,11.765,14.387,10.5246,10.0,10.0
+1759,58.659,10.0,4.0,176.0,398.233,894.0,1019.0,124.0,431.0,475.388,515.0,902.0,369.0,509.0,535.882,568.0,696.0,0.0,5.0,48.1818,96.0,405.0,125.0,135.581,10.179,14.3408,10.5457,10.0,10.0
+1760,58.692,10.0,4.0,175.0,397.724,894.0,1019.0,124.0,430.0,474.823,515.0,693.0,379.0,509.0,535.56,568.0,682.0,0.0,5.0,48.455,96.0,390.0,124.0,134.864,11.0649,14.0997,10.4343,10.0,10.0
+1761,58.725,10.0,4.0,175.0,398.376,895.0,1019.0,123.0,430.0,474.8,515.0,755.0,366.0,508.0,535.636,568.0,685.0,0.0,5.0,48.6063,96.0,390.0,124.0,134.769,10.0049,14.2524,10.4008,10.0,10.0
+1762,58.759,10.0,4.0,176.0,398.788,896.0,1019.0,101.0,433.0,476.545,516.0,882.0,380.0,509.0,534.897,567.0,681.0,0.0,5.0,47.0218,94.0,412.0,125.0,136.969,10.899,14.4465,10.402,10.0,10.0
+1763,58.792,10.0,4.0,177.0,399.199,897.0,1019.0,124.0,432.0,476.289,516.0,887.0,387.0,508.0,535.069,568.0,674.0,0.0,5.0,47.2919,95.0,390.0,125.0,136.488,10.958,14.1891,10.3405,10.0,10.0
+1764,58.825,10.0,4.0,177.0,400.963,902.0,1019.0,128.0,432.0,476.006,516.0,922.0,388.0,508.0,535.23,568.0,693.0,0.0,5.0,47.6459,95.0,418.0,125.0,136.875,10.1661,14.094,10.3664,10.0,10.0
+1765,58.859,10.0,4.0,178.0,403.409,911.0,1019.0,128.0,431.0,475.429,516.0,731.0,387.0,508.0,535.309,568.0,769.0,0.0,5.0,48.0036,96.0,386.0,124.0,135.783,11.7787,14.1816,10.4591,10.0,10.0
+1766,58.892,10.0,4.0,178.0,406.092,920.0,1019.0,93.0,432.0,476.139,516.0,804.0,384.0,508.0,535.628,568.0,724.0,0.0,5.0,47.718,96.0,421.0,125.0,137.466,10.8707,14.1529,10.4463,10.0,10.0
+1767,58.926,10.0,4.0,181.0,413.202,938.0,1019.0,155.0,431.0,475.603,516.0,709.0,404.0,509.0,535.885,568.0,682.0,0.0,5.0,48.1902,96.0,363.0,125.0,136.813,13.3418,14.1997,10.3057,10.0,10.0
+1768,58.959,10.0,4.0,181.0,414.2,941.0,1019.0,124.0,431.0,474.864,515.0,762.0,384.0,508.0,535.646,568.0,811.0,0.0,5.0,48.5605,96.0,393.0,124.0,135.155,12.0666,14.1701,10.3119,10.0,10.0
+1769,58.992,10.0,4.0,181.0,415.362,945.0,1019.0,109.0,431.0,475.478,516.0,710.0,404.0,509.0,535.853,568.0,720.0,0.0,5.0,48.2355,96.0,403.0,125.0,136.822,10.5119,14.0016,10.2468,10.0,10.0
+1770,59.026,10.0,4.0,181.0,416.161,946.0,1019.0,85.0,430.0,475.261,516.0,739.0,423.0,508.0,535.345,568.0,667.0,0.0,5.0,48.1672,96.0,429.0,124.0,135.87,11.3548,14.2109,10.3161,10.0,10.0
+1771,59.059,10.0,4.0,181.0,416.499,950.0,1019.0,97.0,431.0,475.486,516.0,696.0,433.0,508.0,535.562,568.0,683.0,0.0,5.0,48.0799,96.0,417.0,124.0,135.961,10.1917,14.2856,10.2805,10.0,10.0
+1772,59.092,10.0,4.0,181.0,414.57,945.0,1019.0,102.0,430.0,474.783,515.0,711.0,352.0,509.0,535.072,567.0,693.0,0.0,5.0,48.3083,96.0,414.0,123.0,134.162,11.9101,14.1356,10.4026,10.0,10.0
+1773,59.126,10.0,4.0,181.0,414.638,943.0,1019.0,110.0,430.0,474.813,515.0,744.0,374.0,508.0,535.342,568.0,695.0,0.0,5.0,48.4901,96.0,404.0,123.0,134.261,11.4776,14.0002,10.3117,10.0,10.0
+1774,59.159,10.0,4.0,182.0,415.383,944.0,1019.0,88.0,430.0,474.878,515.0,744.0,432.0,509.0,535.596,568.0,682.0,0.0,5.0,48.498,97.0,426.0,124.0,134.463,10.5464,14.3307,10.489,10.0,10.0
+1775,59.192,10.0,4.0,181.0,415.993,945.0,1019.0,86.0,430.0,474.627,515.0,708.0,362.0,508.0,535.18,568.0,682.0,0.0,5.0,48.4578,96.0,428.0,123.0,133.709,11.9633,14.1929,10.4703,10.0,10.0
+1776,59.226,10.0,4.0,181.0,416.054,945.0,1019.0,144.0,430.0,474.754,514.0,732.0,388.0,508.0,535.148,568.0,685.0,0.0,5.0,48.3982,96.0,369.0,123.0,133.353,10.5942,14.3475,10.334,10.0,10.0
+1777,59.259,10.0,4.0,182.0,415.917,946.0,1019.0,128.0,430.0,475.06,516.0,751.0,406.0,509.0,535.216,568.0,699.0,0.0,5.0,48.2945,96.0,386.0,124.0,135.246,12.1306,14.3494,10.6114,10.0,10.0
+1778,59.293,10.0,4.0,181.0,415.446,945.0,1019.0,114.0,431.0,475.765,516.0,742.0,420.0,508.0,534.938,567.0,685.0,0.0,5.0,47.6293,95.0,401.0,124.0,135.249,11.6058,14.4234,10.4074,10.0,10.0
+1779,59.326,10.0,4.0,182.0,415.5,944.0,1019.0,122.0,431.0,475.683,516.0,725.0,380.0,509.0,535.159,568.0,660.0,0.0,5.0,47.8727,96.0,393.0,124.0,136.023,10.4724,14.3671,10.567,10.0,10.0
+1780,59.359,10.0,4.0,181.0,414.878,943.0,1019.0,102.0,430.0,475.013,515.0,732.0,424.0,509.0,535.495,568.0,677.0,0.0,5.0,48.3686,96.0,413.0,124.0,134.682,11.5414,14.6131,10.6204,10.0,10.0
+1781,59.393,10.0,4.0,180.0,414.672,944.0,1019.0,110.0,430.0,474.414,515.0,701.0,402.0,508.0,535.57,568.0,688.0,0.0,5.0,48.9497,97.0,402.0,124.0,134.102,10.3722,14.2649,10.4953,10.0,10.0
+1782,59.426,10.0,4.0,181.0,415.53,945.0,1019.0,68.0,431.0,475.069,516.0,718.0,418.0,508.0,534.972,568.0,680.0,0.0,5.0,48.2768,96.0,447.0,123.0,134.409,11.9583,14.534,10.6418,10.0,10.0
+1783,59.459,10.0,4.0,181.0,415.473,944.0,1019.0,128.0,430.0,475.471,516.0,722.0,409.0,508.0,534.887,567.0,676.0,0.0,5.0,47.9168,96.0,387.0,124.0,134.796,12.6017,14.4776,10.4713,10.0,10.0
+1784,59.493,10.0,4.0,181.0,415.835,946.0,1019.0,123.0,431.0,475.557,516.0,789.0,412.0,509.0,535.504,568.0,678.0,0.0,5.0,48.0444,96.0,393.0,125.0,136.023,10.6956,14.3554,10.5516,10.0,10.0
+1785,59.526,10.0,4.0,181.0,416.281,947.0,1019.0,113.0,430.0,475.423,515.0,719.0,414.0,509.0,535.599,568.0,698.0,0.0,5.0,48.1361,96.0,399.0,124.0,135.429,11.1791,14.2892,10.5464,10.0,10.0
+1786,59.56,10.0,4.0,181.0,416.749,948.0,1019.0,88.0,431.0,475.811,516.0,751.0,348.0,509.0,535.415,568.0,673.0,0.0,5.0,47.8082,95.0,428.0,125.0,136.107,10.3,14.3213,10.5126,10.0,10.0
+1787,59.593,10.0,4.0,182.0,417.002,948.0,1019.0,94.0,431.0,475.748,516.0,734.0,344.0,509.0,535.595,568.0,674.0,0.0,5.0,47.9958,95.0,425.0,125.0,136.515,11.6831,14.3946,10.4089,10.0,10.0
+1788,59.626,10.0,4.0,182.0,416.329,947.0,1019.0,118.0,430.0,474.695,515.0,724.0,374.0,509.0,535.746,568.0,697.0,0.0,5.0,48.7889,97.0,398.0,124.0,134.647,12.076,14.3327,10.4742,10.0,10.0
+1789,59.66,10.0,4.0,182.0,416.436,946.0,1019.0,128.0,430.0,474.744,515.0,748.0,378.0,509.0,536.093,568.0,686.0,0.0,5.0,48.8885,97.0,386.0,124.0,135.061,11.1487,14.3712,10.4314,10.0,10.0
+1790,59.693,10.0,4.0,182.0,416.931,946.0,1019.0,86.0,431.0,475.029,515.0,756.0,394.0,509.0,535.643,568.0,713.0,0.0,5.0,48.5299,96.0,428.0,124.0,134.524,12.0177,14.5045,10.5985,10.0,10.0
+1791,59.726,10.0,4.0,181.0,416.796,946.0,1019.0,90.0,431.0,475.433,515.0,740.0,398.0,508.0,535.681,568.0,686.0,0.0,5.0,48.1852,96.0,423.0,124.0,134.492,10.7219,14.4042,10.5565,10.0,10.0
+1792,59.76,10.0,4.0,181.0,414.715,943.0,1019.0,114.0,430.0,475.208,516.0,753.0,420.0,508.0,535.609,568.0,687.0,0.0,5.0,48.488,97.0,401.0,124.0,136.085,12.103,14.3418,10.4048,10.0,10.0
+1793,59.793,10.0,4.0,182.0,415.719,945.0,1019.0,118.0,431.0,475.656,516.0,746.0,420.0,508.0,535.374,568.0,682.0,0.0,5.0,47.8637,95.0,397.0,124.0,135.195,12.8556,14.2997,10.5012,10.0,10.0
+1794,59.826,10.0,4.0,182.0,415.973,945.0,1019.0,134.0,431.0,475.996,516.0,737.0,423.0,509.0,535.764,568.0,687.0,0.0,5.0,47.7144,96.0,382.0,125.0,136.912,11.1488,14.2211,10.4599,10.0,10.0
+1795,59.86,10.0,4.0,182.0,416.337,943.0,1019.0,107.0,432.0,475.793,516.0,718.0,432.0,509.0,535.723,568.0,673.0,0.0,5.0,47.8648,95.0,409.0,125.0,136.013,12.2911,14.0076,10.4231,10.0,10.0
+1796,59.893,10.0,4.0,183.0,416.433,945.0,1019.0,109.0,431.0,475.604,515.0,757.0,425.0,509.0,535.945,568.0,692.0,0.0,5.0,48.1062,96.0,405.0,125.0,136.039,10.9374,14.3549,10.5531,10.0,10.0
+1797,59.927,10.0,4.0,181.0,414.766,941.0,1019.0,102.0,430.0,474.711,516.0,688.0,409.0,508.0,535.145,568.0,689.0,0.0,5.0,48.5083,96.0,411.0,123.0,135.457,11.7621,14.4071,10.7047,10.0,10.0
+1798,59.96,10.0,4.0,182.0,415.656,941.0,1019.0,102.0,432.0,475.78,516.0,702.0,334.0,509.0,535.216,567.0,691.0,0.0,5.0,47.6568,95.0,413.0,124.0,135.918,11.2518,14.4314,10.6491,10.0,10.0
+1799,59.993,10.0,4.0,182.0,417.022,944.0,1019.0,100.0,432.0,475.7,516.0,702.0,364.0,509.0,535.101,567.0,681.0,0.0,5.0,47.677,95.0,416.0,124.0,135.956,10.8626,14.4019,10.5472,10.0,10.0
+1800,60.027,10.0,4.0,182.0,416.771,947.0,1019.0,106.0,430.0,475.135,515.0,699.0,411.0,509.0,535.083,567.0,674.0,0.0,5.0,48.0613,96.0,409.0,124.0,135.169,11.9501,14.3758,10.4425,10.0,10.0
+1801,60.06,10.0,4.0,183.0,417.985,951.0,1019.0,118.0,430.0,474.878,515.0,698.0,376.0,509.0,535.198,567.0,677.0,0.0,5.0,48.334,96.0,395.0,123.0,134.369,10.7836,14.2814,10.4701,10.0,10.0
+1802,60.093,10.0,4.0,184.0,418.707,951.0,1019.0,102.0,430.0,475.346,516.0,684.0,362.0,509.0,535.559,568.0,674.0,0.0,5.0,48.2758,96.0,414.0,124.0,136.683,11.3978,14.1464,10.4645,10.0,10.0
+1803,60.127,10.0,4.0,183.0,419.208,955.0,1019.0,108.0,431.0,475.277,515.0,696.0,366.0,509.0,535.591,568.0,688.0,0.0,5.0,48.24,96.0,408.0,124.0,135.138,11.5527,14.3338,10.4178,10.0,10.0
+1804,60.16,10.0,4.0,182.0,418.227,953.0,1019.0,122.0,431.0,475.045,516.0,708.0,362.0,509.0,535.695,568.0,687.0,0.0,5.0,48.4888,95.0,392.0,124.0,135.137,10.6735,14.1176,10.4338,10.0,10.0
+1805,60.193,10.0,4.0,183.0,420.784,958.0,1019.0,122.0,430.0,474.121,515.0,711.0,388.0,509.0,535.645,568.0,687.0,0.0,5.0,49.1402,98.0,393.0,123.0,134.309,11.8712,14.2982,10.4664,10.0,10.0
+1806,60.227,10.0,4.0,183.0,420.925,959.0,1019.0,105.0,430.0,474.724,514.0,732.0,422.0,508.0,535.665,568.0,686.0,0.0,5.0,48.6626,97.0,411.0,124.0,134.3,10.5354,14.2311,10.3457,10.0,10.0
+1807,60.26,10.0,4.0,183.0,421.923,961.0,1019.0,110.0,430.0,474.926,516.0,718.0,370.0,509.0,535.588,568.0,721.0,0.0,5.0,48.4992,96.0,403.0,124.0,135.062,12.0428,14.2592,10.4885,10.0,10.0
+1808,60.294,10.0,4.0,183.0,421.833,963.0,1019.0,118.0,430.0,474.517,515.0,762.0,392.0,508.0,535.443,567.0,682.0,0.0,5.0,48.7167,97.0,397.0,123.0,134.18,12.0235,14.1779,10.4696,10.0,10.0
+1809,60.327,10.0,4.0,183.0,421.539,962.0,1019.0,100.0,430.0,474.616,516.0,750.0,379.0,509.0,535.845,568.0,677.0,0.0,5.0,48.9004,98.0,412.0,124.0,135.483,10.784,14.2592,10.4002,10.0,10.0
+1810,60.36,10.0,4.0,184.0,422.026,963.0,1019.0,106.0,430.0,474.503,516.0,700.0,378.0,509.0,535.803,568.0,678.0,0.0,5.0,49.1924,98.0,409.0,124.0,135.586,11.7431,14.2692,10.4379,10.0,10.0
+1811,60.394,10.0,4.0,183.0,421.702,964.0,1019.0,107.0,430.0,474.486,515.0,713.0,402.0,508.0,535.884,568.0,697.0,0.0,5.0,49.0535,97.0,407.0,124.0,135.152,10.5868,14.0864,10.5449,10.0,10.0
+1812,60.427,10.0,4.0,182.0,420.366,960.0,1019.0,106.0,430.0,474.395,515.0,746.0,420.0,509.0,535.631,568.0,683.0,0.0,5.0,48.871,97.0,407.0,124.0,134.62,11.4903,14.2154,10.3793,10.0,10.0
+1813,60.46,10.0,4.0,183.0,421.112,962.0,1019.0,100.0,430.0,473.971,515.0,806.0,412.0,508.0,535.482,568.0,686.0,0.0,5.0,49.3205,98.0,413.0,123.0,133.949,11.5657,14.2617,10.4906,10.0,10.0
+1814,60.494,10.0,4.0,182.0,420.968,961.0,1019.0,102.0,430.0,474.727,516.0,769.0,384.0,509.0,535.562,568.0,727.0,0.0,5.0,48.7267,97.0,414.0,124.0,134.755,10.6757,14.2347,10.562,10.0,10.0
+1815,60.527,10.0,4.0,183.0,421.298,961.0,1019.0,114.0,431.0,474.854,515.0,858.0,406.0,508.0,535.062,567.0,686.0,0.0,5.0,48.3399,95.0,401.0,123.0,134.22,12.4095,14.1135,10.4087,10.0,10.0
+1816,60.561,10.0,4.0,182.0,421.213,963.0,1019.0,96.0,430.0,474.917,515.0,931.0,334.0,508.0,535.022,568.0,673.0,0.0,5.0,48.2486,96.0,428.0,123.0,133.473,10.6794,14.2681,10.3677,10.0,10.0
+1817,60.594,10.0,4.0,183.0,419.713,959.0,1019.0,110.0,430.0,475.001,516.0,923.0,343.0,508.0,534.906,567.0,685.0,0.0,5.0,48.2309,96.0,411.0,123.0,135.276,11.919,14.3127,10.3762,10.0,10.0
+1818,60.627,10.0,4.0,183.0,419.844,960.0,1019.0,100.0,432.0,475.919,516.0,878.0,349.0,508.0,534.939,568.0,690.0,0.0,5.0,47.5693,95.0,414.0,124.0,135.786,12.7299,14.2777,10.3991,10.0,10.0
+1819,60.661,10.0,4.0,182.0,420.378,961.0,1019.0,105.0,432.0,476.002,516.0,897.0,389.0,508.0,535.096,568.0,689.0,0.0,5.0,47.6266,95.0,408.0,124.0,137.02,10.6678,14.2034,10.3079,10.0,10.0
+1820,60.694,10.0,4.0,181.0,419.89,961.0,1019.0,118.0,431.0,475.511,516.0,948.0,360.0,508.0,534.862,567.0,679.0,0.0,5.0,47.8236,95.0,436.0,123.0,135.41,11.7468,14.1113,10.3519,10.0,10.0
+1821,60.727,10.0,4.0,182.0,420.404,961.0,1019.0,118.0,431.0,475.186,515.0,898.0,365.0,508.0,535.213,568.0,688.0,0.0,5.0,48.1008,96.0,395.0,124.0,133.975,10.4481,14.0474,10.3878,10.0,10.0
+1822,60.761,10.0,4.0,182.0,420.348,959.0,1019.0,101.0,430.0,475.012,516.0,759.0,428.0,509.0,535.225,567.0,696.0,0.0,5.0,48.2288,96.0,414.0,123.0,135.279,12.2951,14.1455,10.3414,10.0,10.0
+1823,60.794,10.0,4.0,183.0,421.779,962.0,1019.0,112.0,432.0,475.618,516.0,825.0,368.0,508.0,535.263,567.0,691.0,0.0,5.0,47.8735,95.0,405.0,124.0,136.09,11.3947,14.0542,10.2622,10.0,10.0
+1824,60.827,10.0,4.0,183.0,421.262,962.0,1019.0,132.0,431.0,475.682,516.0,786.0,358.0,508.0,535.393,568.0,730.0,0.0,5.0,47.9424,95.0,383.0,124.0,137.025,10.2359,14.0754,10.4025,10.0,10.0
+1825,60.861,10.0,4.0,182.0,420.653,963.0,1019.0,128.0,432.0,475.694,516.0,885.0,409.0,508.0,534.776,566.0,698.0,0.0,5.0,47.6865,95.0,385.0,123.0,135.656,11.231,14.1265,10.3315,10.0,10.0
+1826,60.894,10.0,4.0,182.0,421.128,964.0,1019.0,85.0,431.0,475.758,516.0,804.0,376.0,508.0,534.946,567.0,733.0,0.0,5.0,47.6417,95.0,429.0,124.0,135.792,10.2175,14.0392,10.2836,10.0,10.0
+1827,60.928,10.0,4.0,182.0,421.481,964.0,1019.0,114.0,431.0,475.105,515.0,724.0,369.0,508.0,535.215,568.0,801.0,0.0,5.0,48.0558,95.0,402.0,123.0,134.672,11.028,14.0084,10.366,10.0,10.0
+1828,60.961,10.0,4.0,181.0,420.226,961.0,1019.0,123.0,430.0,474.939,515.0,712.0,404.0,508.0,535.68,568.0,803.0,0.0,5.0,48.5506,96.0,393.0,124.0,134.338,11.8191,14.1402,10.3621,10.0,10.0
+1829,60.994,10.0,4.0,182.0,419.844,959.0,1019.0,118.0,430.0,474.582,515.0,798.0,392.0,509.0,536.044,568.0,712.0,0.0,5.0,48.9162,97.0,396.0,124.0,135.227,10.3694,14.127,10.4288,10.0,10.0
+1830,61.028,10.0,4.0,182.0,420.254,960.0,1019.0,94.0,430.0,474.363,515.0,710.0,364.0,508.0,535.46,568.0,694.0,0.0,5.0,48.9161,97.0,420.0,123.0,134.212,11.2291,14.2677,10.4376,10.0,10.0
+1831,61.061,10.0,4.0,182.0,421.122,961.0,1019.0,122.0,432.0,475.086,515.0,740.0,382.0,508.0,535.536,567.0,716.0,0.0,5.0,48.3842,95.0,393.0,124.0,134.648,10.3199,14.2732,10.4854,10.0,10.0
+1832,61.094,10.0,4.0,182.0,419.989,961.0,1019.0,124.0,431.0,474.883,515.0,732.0,382.0,509.0,535.311,567.0,764.0,0.0,5.0,48.4444,96.0,390.0,123.0,134.302,12.2643,14.3196,10.3861,10.0,10.0
+1833,61.128,10.0,4.0,182.0,419.894,961.0,1019.0,106.0,430.0,473.681,514.0,702.0,372.0,508.0,535.189,568.0,702.0,0.0,5.0,49.2218,97.0,406.0,122.0,132.071,11.5993,14.4457,10.4522,10.0,10.0
+1834,61.161,10.0,4.0,182.0,420.034,959.0,1019.0,100.0,430.0,474.238,515.0,718.0,378.0,509.0,535.482,568.0,704.0,0.0,5.0,49.0247,97.0,414.0,123.0,133.668,10.3854,14.2366,10.4059,10.0,10.0
+1835,61.194,10.0,4.0,182.0,419.899,957.0,1019.0,118.0,431.0,474.872,515.0,724.0,406.0,508.0,535.08,567.0,677.0,0.0,5.0,48.3486,96.0,396.0,123.0,133.582,11.6065,14.2423,10.4379,10.0,10.0
+1836,61.228,10.0,4.0,182.0,420.545,958.0,1019.0,128.0,432.0,475.159,515.0,734.0,432.0,508.0,535.321,568.0,688.0,0.0,5.0,48.1792,95.0,387.0,123.0,133.526,10.4155,14.1378,10.2876,10.0,10.0
+1837,61.261,10.0,4.0,182.0,420.096,959.0,1019.0,110.0,430.0,473.993,514.0,737.0,358.0,508.0,535.46,568.0,696.0,0.0,5.0,49.0668,97.0,402.0,123.0,133.104,11.6301,14.3477,10.5097,10.0,10.0
+1838,61.295,10.0,4.0,182.0,418.965,956.0,1019.0,86.0,430.0,475.004,516.0,714.0,350.0,508.0,534.978,567.0,672.0,0.0,5.0,48.2656,96.0,428.0,123.0,134.973,12.1544,14.2646,10.3719,10.0,10.0
+1839,61.328,10.0,4.0,183.0,419.795,958.0,1019.0,111.0,431.0,475.161,516.0,730.0,412.0,509.0,535.64,568.0,684.0,0.0,5.0,48.3431,96.0,404.0,124.0,135.625,10.9281,14.287,10.4976,10.0,10.0
+1840,61.361,10.0,4.0,182.0,419.196,957.0,1019.0,132.0,430.0,474.598,514.0,707.0,414.0,508.0,535.382,568.0,686.0,0.0,5.0,48.6341,96.0,384.0,123.0,133.579,12.4708,13.9917,10.3815,10.0,10.0
+1841,61.395,10.0,4.0,181.0,415.325,947.0,1019.0,65.0,430.0,474.545,515.0,730.0,412.0,508.0,535.571,568.0,670.0,0.0,5.0,48.9124,97.0,448.0,123.0,133.847,11.6496,14.3245,10.5254,10.0,10.0
+1842,61.428,10.0,4.0,179.0,407.525,923.0,1019.0,100.0,430.0,473.967,515.0,724.0,432.0,509.0,535.827,568.0,692.0,0.0,5.0,49.307,98.0,414.0,123.0,133.75,14.1304,14.3808,10.3969,10.0,10.0
+1843,61.461,10.0,4.0,178.0,404.065,909.0,1019.0,94.0,432.0,475.487,515.0,751.0,348.0,508.0,535.529,568.0,680.0,0.0,5.0,47.968,96.0,418.0,124.0,134.685,12.4402,14.4069,10.4439,10.0,10.0
+1844,61.495,10.0,4.0,178.0,403.651,910.0,1019.0,122.0,433.0,476.059,516.0,751.0,389.0,509.0,535.194,567.0,680.0,0.0,5.0,47.4078,94.0,391.0,124.0,135.805,10.1536,14.0817,10.4876,10.0,10.0
+1845,61.528,10.0,4.0,176.0,401.849,908.0,1019.0,123.0,433.0,476.123,516.0,723.0,400.0,508.0,534.606,566.0,687.0,0.0,5.0,47.1447,94.0,389.0,123.0,135.013,11.4468,14.1347,10.3231,10.0,10.0
+1846,61.562,10.0,4.0,177.0,402.4,910.0,1019.0,73.0,433.0,476.129,516.0,722.0,358.0,508.0,534.822,567.0,679.0,0.0,5.0,47.3343,94.0,442.0,124.0,135.795,10.3875,14.0832,10.2953,10.0,10.0
+1847,61.595,10.0,4.0,179.0,404.397,914.0,1019.0,90.0,433.0,475.746,516.0,742.0,380.0,509.0,535.083,567.0,690.0,0.0,5.0,47.6798,94.0,424.0,124.0,135.512,11.5472,14.1845,10.2523,10.0,10.0
+1848,61.628,10.0,4.0,179.0,404.543,912.0,1019.0,105.0,434.0,476.142,516.0,695.0,396.0,509.0,535.57,568.0,701.0,0.0,5.0,47.517,94.0,409.0,125.0,135.676,12.2447,14.1008,10.3234,10.0,10.0
+1849,61.662,10.0,4.0,179.0,403.972,911.0,1019.0,105.0,433.0,475.637,516.0,805.0,404.0,509.0,535.355,568.0,684.0,0.0,5.0,47.8348,95.0,407.0,124.0,135.315,10.9625,14.1882,10.3321,10.0,10.0
+1850,61.695,10.0,4.0,178.0,402.612,908.0,1019.0,90.0,434.0,476.024,516.0,743.0,374.0,508.0,535.015,567.0,690.0,0.0,5.0,47.3912,94.0,426.0,124.0,135.379,12.6605,14.0257,10.2754,10.0,10.0
+1851,61.728,10.0,4.0,178.0,402.611,906.0,1019.0,98.0,434.0,476.614,516.0,722.0,388.0,508.0,535.109,567.0,695.0,0.0,5.0,46.8782,92.0,417.0,124.0,135.343,10.8016,14.1541,10.3554,10.0,10.0
+1852,61.762,10.0,4.0,178.0,403.191,904.0,1019.0,124.0,435.0,477.198,516.0,744.0,396.0,508.0,534.713,566.0,689.0,0.0,5.0,46.1957,91.0,390.0,125.0,136.167,12.6149,14.0994,10.2452,10.0,10.0
+1853,61.795,10.0,4.0,179.0,404.241,910.0,1019.0,134.0,434.0,475.702,515.0,763.0,398.0,508.0,534.962,567.0,688.0,0.0,5.0,47.5493,94.0,381.0,124.0,134.394,12.8762,13.8255,10.0933,10.0,10.0
+1854,61.828,10.0,4.0,179.0,404.781,911.0,1019.0,86.0,434.0,475.983,515.0,762.0,398.0,509.0,535.309,567.0,702.0,0.0,5.0,47.4334,94.0,427.0,124.0,135.462,10.8322,13.9715,10.3393,10.0,10.0
+1855,61.862,10.0,4.0,179.0,405.803,912.0,1019.0,102.0,432.0,475.34,515.0,739.0,374.0,508.0,535.167,567.0,684.0,0.0,5.0,47.8494,95.0,412.0,123.0,133.86,12.6876,14.0464,10.2755,10.0,10.0
+1856,61.895,10.0,4.0,180.0,407.387,915.0,1019.0,123.0,433.0,475.278,514.0,751.0,416.0,508.0,535.523,568.0,676.0,0.0,5.0,48.053,95.0,391.0,124.0,134.336,10.9103,14.0572,10.4281,10.0,10.0
+1857,61.929,10.0,4.0,178.0,405.419,911.0,1019.0,104.0,430.0,474.528,514.0,723.0,348.0,508.0,534.917,567.0,692.0,0.0,5.0,48.4192,96.0,410.0,123.0,132.568,12.8874,14.2579,10.4109,10.0,10.0
+1858,61.962,10.0,4.0,178.0,405.26,912.0,1019.0,98.0,430.0,474.14,514.0,718.0,394.0,508.0,535.315,567.0,683.0,0.0,6.0,48.9255,96.0,416.0,123.0,133.081,11.6152,14.1928,10.3829,10.0,10.0
+1859,61.995,10.0,4.0,178.0,405.556,913.0,1019.0,106.0,430.0,474.714,515.0,760.0,409.0,509.0,535.461,568.0,694.0,0.0,5.0,48.5285,96.0,407.0,123.0,134.138,10.6102,14.0144,10.3321,10.0,10.0
+1860,62.029,10.0,4.0,179.0,406.422,913.0,1019.0,114.0,432.0,475.317,515.0,730.0,400.0,508.0,535.083,567.0,689.0,0.0,5.0,47.908,94.0,400.0,123.0,133.966,12.4916,14.3349,10.4548,10.0,10.0
+1861,62.062,10.0,4.0,179.0,406.408,914.0,1019.0,108.0,433.0,475.411,515.0,712.0,376.0,509.0,535.521,568.0,690.0,0.0,5.0,48.1239,95.0,404.0,124.0,134.759,11.0114,14.292,10.3866,10.0,10.0
+1862,62.095,10.0,4.0,178.0,405.484,915.0,1019.0,110.0,431.0,474.751,515.0,716.0,416.0,508.0,535.27,568.0,683.0,0.0,5.0,48.5204,96.0,405.0,123.0,133.735,13.0692,14.1581,10.4022,10.0,10.0
+1863,62.129,10.0,4.0,179.0,406.986,915.0,1019.0,106.0,431.0,474.582,513.0,736.0,402.0,508.0,535.445,568.0,706.0,0.0,6.0,48.5237,96.0,411.0,123.0,132.126,12.2133,14.054,10.4233,10.0,10.0
+1864,62.162,10.0,4.0,178.0,406.735,915.0,1019.0,106.0,430.0,474.674,515.0,724.0,428.0,509.0,535.752,568.0,690.0,0.0,5.0,48.7678,96.0,409.0,124.0,134.57,10.2551,14.3132,10.4214,10.0,10.0
+1865,62.195,10.0,4.0,178.0,406.285,914.0,1019.0,106.0,431.0,474.327,514.0,744.0,404.0,508.0,535.278,568.0,698.0,0.0,5.0,48.7678,96.0,406.0,123.0,133.149,11.7236,14.3918,10.462,10.0,10.0
+1866,62.229,10.0,4.0,177.0,406.106,915.0,1019.0,82.0,430.0,474.173,514.0,692.0,368.0,508.0,535.58,568.0,833.0,0.0,5.0,48.9233,96.0,434.0,123.0,132.827,10.7613,14.4262,10.4796,10.0,10.0
+1867,62.262,10.0,4.0,176.0,400.629,901.0,1019.0,68.0,431.0,474.542,515.0,680.0,368.0,508.0,535.287,568.0,712.0,0.0,5.0,48.4951,96.0,450.0,123.0,134.117,12.8138,14.2226,10.405,10.0,10.0
+1868,62.296,10.0,4.0,176.0,400.134,901.0,1019.0,106.0,434.0,475.727,516.0,692.0,362.0,508.0,534.829,567.0,824.0,0.0,5.0,47.5077,93.0,411.0,124.0,135.15,12.8669,14.3033,10.4086,10.0,10.0
+1869,62.329,10.0,4.0,175.0,399.125,897.0,1019.0,118.0,432.0,475.457,515.0,740.0,410.0,509.0,535.158,567.0,728.0,0.0,5.0,47.7178,95.0,394.0,124.0,135.205,11.4757,14.3438,10.434,10.0,10.0
+1870,62.362,10.0,4.0,176.0,398.998,898.0,1019.0,82.0,430.0,474.63,515.0,716.0,412.0,508.0,535.022,568.0,678.0,0.0,5.0,48.3886,96.0,432.0,123.0,133.521,12.5435,14.2635,10.4602,10.0,10.0
+1871,62.396,10.0,4.0,175.0,398.995,898.0,1019.0,114.0,431.0,474.647,515.0,722.0,372.0,508.0,535.472,568.0,825.0,0.0,5.0,48.6419,96.0,400.0,123.0,133.891,10.6305,14.0898,10.5179,10.0,10.0
+1872,62.429,10.0,4.0,175.0,398.575,896.0,1019.0,106.0,431.0,474.968,515.0,757.0,410.0,509.0,535.153,567.0,761.0,0.0,5.0,48.1015,95.0,410.0,123.0,133.655,11.5574,14.2371,10.4013,10.0,10.0
+1873,62.462,10.0,4.0,175.0,396.917,891.0,1019.0,113.0,432.0,474.829,514.0,758.0,404.0,508.0,534.927,567.0,782.0,0.0,5.0,48.1457,94.0,401.0,123.0,133.106,11.3934,14.2513,10.1672,10.0,10.0
+1874,62.496,10.0,4.0,174.0,397.316,892.0,1019.0,105.0,430.0,474.522,515.0,752.0,370.0,509.0,535.119,567.0,793.0,0.0,5.0,48.4061,96.0,411.0,123.0,133.372,10.3677,14.2193,10.3648,10.0,10.0
+1875,62.529,10.0,4.0,175.0,398.565,895.0,1019.0,87.0,431.0,474.208,514.0,763.0,376.0,508.0,535.332,568.0,810.0,0.0,5.0,48.7004,96.0,430.0,123.0,132.447,11.27,14.2049,10.2208,10.0,10.0
+1876,62.563,10.0,4.0,176.0,399.557,897.0,1019.0,132.0,430.0,473.959,514.0,762.0,352.0,508.0,535.569,568.0,781.0,0.0,5.0,49.0919,96.0,386.0,123.0,132.818,10.6803,14.1581,10.386,10.0,10.0
+1877,62.596,10.0,4.0,175.0,399.493,898.0,1019.0,96.0,430.0,474.442,515.0,840.0,420.0,508.0,535.059,568.0,696.0,0.0,5.0,48.5987,96.0,420.0,123.0,133.87,11.9725,14.1819,10.4673,10.0,10.0
+1878,62.629,10.0,4.0,176.0,398.414,897.0,1019.0,90.0,430.0,473.799,514.0,864.0,423.0,508.0,535.498,568.0,692.0,0.0,5.0,49.2147,97.0,424.0,123.0,132.525,11.7202,14.1661,10.4019,10.0,10.0
+1879,62.663,10.0,4.0,176.0,398.942,896.0,1019.0,101.0,430.0,474.261,514.0,889.0,388.0,509.0,535.585,568.0,684.0,0.0,5.0,48.8796,96.0,415.0,123.0,133.526,10.451,14.1269,10.4641,10.0,10.0
+1880,62.696,10.0,4.0,175.0,398.967,895.0,1019.0,124.0,431.0,474.391,514.0,815.0,416.0,508.0,535.18,568.0,724.0,0.0,5.0,48.6161,96.0,390.0,123.0,132.816,11.4612,14.3274,10.5134,10.0,10.0
+1881,62.729,10.0,4.0,175.0,400.059,898.0,1019.0,117.0,431.0,474.76,514.0,727.0,383.0,508.0,535.608,568.0,813.0,0.0,5.0,48.6137,96.0,397.0,124.0,133.902,10.4763,14.2259,10.5289,10.0,10.0
+1882,62.763,10.0,4.0,174.0,399.154,897.0,1019.0,86.0,430.0,474.494,514.0,766.0,436.0,508.0,535.465,568.0,731.0,0.0,5.0,48.7996,97.0,429.0,123.0,133.873,11.2994,14.3645,10.4606,10.0,10.0
+1883,62.796,10.0,4.0,176.0,400.124,897.0,1019.0,149.0,430.0,474.585,516.0,765.0,365.0,508.0,535.687,568.0,770.0,0.0,5.0,49.0037,97.0,367.0,124.0,134.844,11.8191,14.3972,10.4075,10.0,10.0
+1884,62.829,10.0,4.0,175.0,399.384,896.0,1019.0,138.0,432.0,475.254,516.0,901.0,398.0,509.0,535.695,568.0,684.0,0.0,5.0,48.2804,96.0,404.0,124.0,135.504,10.4553,14.5194,10.6197,10.0,10.0
+1885,62.863,10.0,4.0,172.0,391.536,876.0,1019.0,105.0,432.0,475.369,516.0,822.0,416.0,508.0,535.218,567.0,745.0,0.0,5.0,48.0326,95.0,408.0,124.0,135.414,13.8438,14.1377,10.3125,10.0,10.0
+1886,62.896,10.0,4.0,170.0,382.411,853.0,1019.0,90.0,432.0,475.531,515.0,734.0,380.0,508.0,535.301,568.0,803.0,0.0,5.0,47.8145,95.0,426.0,124.0,135.08,13.5164,14.154,10.3965,10.0,10.0
+1887,62.93,10.0,4.0,169.0,381.49,849.0,1019.0,114.0,431.0,474.673,515.0,744.0,374.0,508.0,535.122,567.0,784.0,0.0,5.0,48.3644,96.0,402.0,123.0,134.542,11.0847,14.1066,10.3084,10.0,10.0
+1888,62.963,10.0,4.0,170.0,383.047,851.0,1019.0,134.0,434.0,475.639,516.0,850.0,419.0,509.0,535.224,567.0,718.0,0.0,5.0,47.7343,94.0,389.0,124.0,135.083,11.5314,14.0869,10.4204,10.0,10.0
+1889,62.996,10.0,4.0,170.0,382.451,850.0,1019.0,66.0,431.0,475.194,515.0,886.0,396.0,509.0,535.602,568.0,701.0,0.0,5.0,48.1751,95.0,447.0,124.0,135.212,9.97307,14.2086,10.4587,10.0,10.0
+1890,63.03,10.0,4.0,169.0,381.959,850.0,1019.0,74.0,431.0,474.609,515.0,762.0,342.0,509.0,535.007,566.0,754.0,0.0,5.0,48.3581,95.0,440.0,123.0,133.611,11.6839,14.2651,10.4301,10.0,10.0
+1891,63.063,10.0,4.0,170.0,383.053,852.0,1019.0,106.0,430.0,474.601,515.0,736.0,398.0,509.0,535.03,566.0,760.0,0.0,5.0,48.4228,96.0,409.0,123.0,134.517,10.078,14.1712,10.2569,10.0,10.0
+1892,63.096,10.0,4.0,170.0,382.889,851.0,1019.0,124.0,431.0,474.833,515.0,932.0,384.0,509.0,535.1,567.0,714.0,0.0,5.0,48.2451,96.0,425.0,123.0,134.232,11.6736,14.1652,10.3634,10.0,10.0
+1893,63.13,10.0,4.0,170.0,382.683,851.0,1019.0,98.0,431.0,474.771,514.0,765.0,334.0,508.0,534.785,566.0,697.0,0.0,5.0,48.1228,95.0,415.0,123.0,133.437,11.6665,14.2141,10.3703,10.0,10.0
+1894,63.163,10.0,4.0,169.0,381.934,850.0,1019.0,94.0,431.0,474.766,515.0,710.0,414.0,508.0,535.065,567.0,683.0,0.0,5.0,48.3276,96.0,421.0,123.0,134.231,10.0697,14.0874,10.3092,10.0,10.0
+1895,63.196,10.0,4.0,169.0,381.944,850.0,1019.0,68.0,431.0,474.689,515.0,708.0,376.0,508.0,534.24,566.0,696.0,0.0,5.0,48.0192,95.0,451.0,122.0,133.208,11.0025,14.2153,10.4092,10.0,10.0
+1896,63.23,10.0,4.0,169.0,382.129,851.0,1019.0,118.0,431.0,474.979,515.0,675.0,360.0,508.0,534.105,566.0,676.0,0.0,5.0,47.7325,95.0,396.0,123.0,133.354,9.82802,14.1632,10.5023,10.0,10.0
+1897,63.263,10.0,4.0,168.0,381.496,850.0,1019.0,116.0,431.0,474.932,515.0,693.0,352.0,508.0,534.442,567.0,691.0,0.0,5.0,47.9152,95.0,396.0,123.0,133.448,11.4261,14.2588,10.4681,10.0,10.0
+1898,63.297,10.0,4.0,169.0,381.06,849.0,1019.0,73.0,430.0,474.237,515.0,696.0,358.0,508.0,534.665,567.0,684.0,0.0,5.0,48.6196,96.0,439.0,123.0,133.084,11.8609,14.2922,10.4914,10.0,10.0
+1899,63.33,10.0,4.0,169.0,381.705,850.0,1019.0,118.0,430.0,474.451,515.0,686.0,372.0,508.0,534.874,566.0,694.0,0.0,5.0,48.4727,96.0,395.0,123.0,134.637,10.4643,14.2483,10.473,10.0,10.0
+1900,63.363,10.0,4.0,170.0,383.407,855.0,1019.0,126.0,430.0,473.658,514.0,699.0,338.0,508.0,535.501,568.0,676.0,0.0,5.0,49.4075,98.0,387.0,123.0,133.491,12.3374,14.3244,10.4101,10.0,10.0
+1901,63.397,10.0,4.0,170.0,383.611,855.0,1019.0,139.0,430.0,473.558,514.0,690.0,340.0,509.0,536.088,569.0,692.0,0.0,5.0,49.6313,99.0,374.0,123.0,133.381,10.5457,14.0236,10.3915,10.0,10.0
+1902,63.43,10.0,4.0,169.0,381.616,853.0,1019.0,96.0,429.0,473.516,515.0,708.0,289.0,509.0,535.449,568.0,687.0,0.0,5.0,49.5856,98.0,418.0,123.0,133.836,12.3506,14.055,10.3572,10.0,10.0
+1903,63.463,10.0,4.0,170.0,381.381,850.0,1019.0,129.0,430.0,474.176,515.0,695.0,362.0,508.0,535.207,568.0,692.0,0.0,5.0,48.877,96.0,387.0,123.0,134.067,12.2445,14.168,10.2724,10.0,10.0
+1904,63.497,10.0,4.0,169.0,381.465,850.0,1019.0,105.0,430.0,474.311,516.0,710.0,348.0,509.0,535.401,568.0,684.0,0.0,5.0,48.8087,96.0,410.0,123.0,134.864,10.6199,14.176,10.2735,10.0,10.0
+1905,63.53,10.0,4.0,169.0,380.955,850.0,1019.0,128.0,430.0,474.076,514.0,822.0,378.0,508.0,535.163,568.0,685.0,0.0,5.0,48.7943,97.0,385.0,123.0,133.105,12.8551,13.9802,10.3236,10.0,10.0
+1906,63.564,10.0,4.0,169.0,380.383,850.0,1019.0,81.0,430.0,474.014,514.0,783.0,416.0,508.0,535.225,568.0,687.0,0.0,5.0,48.9899,97.0,433.0,123.0,133.53,10.948,14.2213,10.434,10.0,10.0
+1907,63.597,10.0,4.0,170.0,380.022,848.0,1019.0,96.0,429.0,473.854,515.0,721.0,419.0,508.0,535.152,567.0,682.0,0.0,5.0,49.1079,97.0,419.0,123.0,134.732,12.578,14.2623,10.4098,10.0,10.0
+1908,63.63,10.0,4.0,170.0,381.171,850.0,1019.0,122.0,430.0,474.29,515.0,688.0,409.0,508.0,535.815,568.0,691.0,0.0,5.0,48.9238,97.0,391.0,124.0,134.45,12.3087,14.2925,10.3948,10.0,10.0
+1909,63.664,10.0,4.0,170.0,380.451,850.0,1019.0,119.0,430.0,474.142,515.0,691.0,362.0,509.0,535.847,568.0,693.0,0.0,5.0,49.0549,96.0,393.0,124.0,134.982,11.4952,14.2755,10.4725,10.0,10.0
+1910,63.697,10.0,4.0,169.0,380.233,850.0,1019.0,138.0,429.0,473.549,514.0,656.0,406.0,508.0,535.365,568.0,689.0,0.0,5.0,49.2738,98.0,377.0,123.0,132.886,14.7264,14.2626,10.4469,10.0,10.0
+1911,63.73,10.0,4.0,168.0,379.911,850.0,1019.0,64.0,430.0,473.626,514.0,661.0,400.0,508.0,535.48,568.0,695.0,0.0,5.0,49.3224,97.0,452.0,123.0,133.165,12.07,14.2242,10.4748,10.0,10.0
+1912,63.764,10.0,4.0,169.0,380.773,850.0,1019.0,124.0,431.0,474.635,515.0,679.0,368.0,508.0,535.312,568.0,680.0,0.0,5.0,48.5349,96.0,392.0,123.0,134.16,15.1326,14.0708,10.4336,10.0,10.0
+1913,63.797,10.0,4.0,169.0,380.504,848.0,1019.0,109.0,430.0,474.804,515.0,678.0,330.0,508.0,535.182,567.0,684.0,0.0,5.0,48.2955,96.0,403.0,123.0,134.37,13.7003,13.9895,10.2099,10.0,10.0
+1914,63.83,10.0,4.0,166.0,370.978,825.0,1019.0,114.0,430.0,474.854,516.0,690.0,358.0,509.0,535.269,568.0,688.0,0.0,5.0,48.3528,96.0,399.0,124.0,135.575,14.0926,14.0033,10.2633,10.0,10.0
+1915,63.864,10.0,4.0,165.0,363.545,804.0,1019.0,106.0,431.0,474.792,516.0,689.0,362.0,508.0,534.531,566.0,683.0,0.0,5.0,48.0983,95.0,409.0,123.0,134.241,14.8577,14.0014,10.3315,10.0,10.0
+1916,63.897,10.0,4.0,164.0,363.844,805.0,1019.0,123.0,431.0,474.783,515.0,719.0,334.0,508.0,534.847,568.0,696.0,0.0,5.0,48.2436,96.0,391.0,123.0,134.424,10.1309,13.9451,10.287,10.0,10.0
+1917,63.931,10.0,4.0,164.0,361.478,801.0,1019.0,124.0,430.0,474.676,515.0,699.0,373.0,508.0,534.629,567.0,686.0,0.0,5.0,48.0887,96.0,389.0,123.0,133.521,12.9911,14.0756,10.4312,10.0,10.0
+1918,63.964,10.0,4.0,165.0,362.176,802.0,1019.0,96.0,430.0,473.968,515.0,721.0,344.0,508.0,535.299,568.0,689.0,0.0,5.0,49.0819,98.0,418.0,123.0,133.506,14.2752,14.3592,10.4705,10.0,10.0
+1919,63.997,10.0,4.0,164.0,362.03,802.0,1019.0,114.0,430.0,474.008,515.0,710.0,325.0,509.0,535.427,568.0,696.0,0.0,5.0,49.1022,98.0,400.0,123.0,134.41,11.9943,14.2873,10.3223,10.0,10.0
+1920,64.031,10.0,4.0,164.0,361.273,802.0,1019.0,132.0,430.0,474.062,515.0,696.0,364.0,508.0,535.394,568.0,699.0,0.0,5.0,48.8754,97.0,382.0,123.0,134.233,16.0714,14.7297,10.6412,10.0,10.0
+1921,64.064,10.0,4.0,164.0,360.698,802.0,1019.0,92.0,430.0,474.314,514.0,708.0,352.0,508.0,535.436,568.0,688.0,0.0,5.0,48.7295,96.0,422.0,123.0,133.799,12.3901,14.2457,10.6937,10.0,10.0
+1922,64.097,10.0,4.0,164.0,357.443,796.0,1019.0,92.0,430.0,474.044,515.0,710.0,344.0,509.0,535.29,567.0,690.0,0.0,5.0,49.0237,96.0,422.0,123.0,134.35,16.7268,14.5411,10.6722,10.0,10.0
+1923,64.131,10.0,4.0,164.0,357.023,795.0,1019.0,110.0,430.0,473.579,514.0,695.0,358.0,508.0,535.726,568.0,698.0,0.0,5.0,49.4537,98.0,402.0,123.0,133.321,15.0948,14.2039,10.5523,10.0,10.0
+1924,64.164,10.0,4.0,164.0,356.706,794.0,1019.0,124.0,430.0,473.784,515.0,684.0,352.0,509.0,535.767,568.0,684.0,0.0,5.0,49.324,97.0,391.0,123.0,133.946,11.0119,14.092,10.413,10.0,10.0
+1925,64.197,10.0,4.0,164.0,356.123,791.0,1019.0,122.0,430.0,473.99,514.0,684.0,352.0,509.0,535.343,567.0,682.0,0.0,5.0,48.8641,97.0,392.0,123.0,133.506,13.0119,14.237,10.3686,10.0,10.0
+1926,64.231,10.0,4.0,164.0,356.031,790.0,1019.0,86.0,430.0,473.653,514.0,690.0,398.0,508.0,535.712,568.0,697.0,0.0,5.0,49.3402,97.0,428.0,123.0,133.002,10.2497,14.2285,10.5074,10.0,10.0
+1927,64.264,10.0,4.0,163.0,355.273,793.0,1019.0,104.0,429.0,473.475,515.0,658.0,408.0,508.0,534.937,567.0,689.0,0.0,5.0,49.2142,97.0,411.0,122.0,133.236,11.6277,14.0901,10.3075,10.0,10.0
+1928,64.298,10.0,4.0,164.0,356.4,793.0,1019.0,100.0,430.0,474.863,516.0,672.0,382.0,508.0,535.066,567.0,686.0,0.0,5.0,48.3166,96.0,413.0,123.0,135.714,11.0859,14.2574,10.3784,10.0,10.0
+1929,64.331,10.0,4.0,164.0,356.188,794.0,1019.0,106.0,430.0,475.022,516.0,700.0,368.0,509.0,535.471,568.0,680.0,0.0,5.0,48.3093,96.0,408.0,124.0,135.91,9.37735,14.2042,10.3119,10.0,10.0
+1930,64.364,10.0,4.0,163.0,355.179,793.0,1019.0,81.0,430.0,474.703,515.0,690.0,384.0,508.0,535.08,568.0,710.0,0.0,5.0,48.3941,96.0,433.0,123.0,134.168,10.923,14.1106,10.2143,10.0,10.0
+1931,64.398,10.0,4.0,163.0,355.029,793.0,1019.0,103.0,430.0,474.643,516.0,830.0,398.0,508.0,535.158,567.0,678.0,0.0,5.0,48.4418,96.0,410.0,123.0,134.927,9.5624,14.1018,10.3356,10.0,10.0
+1932,64.431,10.0,4.0,163.0,355.474,794.0,1019.0,124.0,431.0,474.511,515.0,673.0,372.0,508.0,535.049,566.0,692.0,0.0,5.0,48.4187,95.0,391.0,123.0,134.336,10.9024,14.0676,10.2134,10.0,10.0
+1933,64.464,10.0,4.0,164.0,356.447,793.0,1019.0,118.0,431.0,474.677,515.0,684.0,354.0,508.0,535.3,568.0,683.0,0.0,5.0,48.5041,96.0,394.0,123.0,134.5,11.2745,13.9294,10.231,10.0,10.0
+1934,64.498,10.0,4.0,163.0,355.776,792.0,1019.0,90.0,430.0,474.368,516.0,687.0,388.0,509.0,535.477,568.0,688.0,0.0,5.0,48.8636,97.0,423.0,123.0,134.74,9.85985,14.2748,10.2652,10.0,10.0
+1935,64.531,10.0,4.0,164.0,356.611,794.0,1019.0,118.0,430.0,474.374,515.0,729.0,384.0,508.0,535.283,568.0,674.0,0.0,5.0,48.6684,96.0,396.0,123.0,133.969,11.2828,14.0416,10.2561,10.0,10.0
+1936,64.565,10.0,4.0,164.0,356.219,793.0,1019.0,124.0,430.0,474.545,516.0,686.0,372.0,509.0,535.391,568.0,685.0,0.0,5.0,48.7226,97.0,390.0,124.0,136.304,9.75111,14.0945,10.3623,10.0,10.0
+1937,64.598,10.0,4.0,162.0,351.678,779.0,1019.0,90.0,430.0,474.647,516.0,688.0,369.0,508.0,535.216,568.0,675.0,0.0,5.0,48.4824,97.0,422.0,123.0,135.322,11.6475,14.0342,10.4024,10.0,10.0
+1938,64.631,10.0,4.0,162.0,348.65,771.0,1013.0,88.0,430.0,473.962,515.0,673.0,373.0,508.0,535.246,568.0,696.0,0.0,5.0,49.1016,97.0,427.0,123.0,134.473,10.7399,14.3712,10.3065,10.0,10.0
+1939,64.665,10.0,4.0,162.0,348.259,772.0,1019.0,117.0,430.0,473.878,515.0,874.0,420.0,509.0,535.696,568.0,689.0,0.0,5.0,49.3031,97.0,400.0,123.0,134.557,9.21555,14.3836,10.4246,10.0,10.0
+1940,64.698,10.0,4.0,162.0,348.581,772.0,1019.0,108.0,430.0,473.804,515.0,931.0,394.0,508.0,535.211,567.0,693.0,0.0,5.0,49.0794,97.0,420.0,123.0,133.407,10.4776,14.0585,10.3142,10.0,10.0
+1941,64.731,10.0,4.0,161.0,347.328,767.0,1019.0,106.0,430.0,474.221,515.0,924.0,412.0,508.0,535.285,568.0,687.0,0.0,5.0,48.8921,97.0,414.0,123.0,134.324,9.37068,14.2247,10.3612,10.0,10.0
+1942,64.765,10.0,4.0,161.0,346.997,765.0,1012.0,114.0,430.0,474.079,515.0,876.0,387.0,508.0,535.204,567.0,689.0,0.0,5.0,48.8226,96.0,402.0,123.0,133.943,10.006,14.2033,10.4263,10.0,10.0
+1943,64.798,10.0,4.0,162.0,347.145,768.0,1019.0,108.0,430.0,473.942,515.0,889.0,401.0,508.0,535.468,568.0,685.0,0.0,5.0,49.2453,97.0,409.0,123.0,134.421,9.77935,14.2584,10.3994,10.0,10.0
+1944,64.831,10.0,4.0,161.0,346.62,766.0,1015.0,151.0,430.0,474.416,515.0,888.0,407.0,508.0,535.513,568.0,688.0,0.0,5.0,48.8391,97.0,384.0,123.0,135.186,8.79404,14.1853,10.4994,10.0,10.0
+1945,64.865,10.0,4.0,161.0,346.568,764.0,996.0,111.0,431.0,474.976,516.0,881.0,413.0,508.0,534.976,568.0,690.0,0.0,5.0,48.1619,95.0,402.0,123.0,135.364,9.89051,14.4154,10.4893,10.0,10.0
+1946,64.898,10.0,4.0,161.0,346.839,765.0,1019.0,41.0,430.0,475.04,516.0,780.0,420.0,509.0,535.332,568.0,721.0,0.0,5.0,48.2127,96.0,475.0,124.0,136.165,8.981,14.2745,10.2795,10.0,10.0
+1947,64.932,10.0,4.0,160.0,345.562,765.0,1007.0,111.0,430.0,473.987,515.0,697.0,428.0,508.0,535.427,568.0,783.0,0.0,5.0,49.0015,96.0,404.0,123.0,134.1,10.748,14.2255,10.3327,10.0,10.0
+1948,64.965,10.0,4.0,161.0,346.522,766.0,1019.0,138.0,430.0,474.319,515.0,921.0,398.0,508.0,535.496,568.0,691.0,0.0,5.0,48.8013,96.0,414.0,123.0,133.811,10.2043,14.1813,10.508,10.0,10.0
+1949,64.998,10.0,4.0,160.0,345.81,765.0,1006.0,111.0,430.0,474.554,516.0,868.0,394.0,509.0,535.349,568.0,683.0,0.0,5.0,48.5082,96.0,401.0,123.0,135.534,8.96091,14.1206,10.2957,10.0,10.0
+1950,65.032,10.0,4.0,161.0,345.892,764.0,1006.0,126.0,430.0,474.572,515.0,718.0,421.0,508.0,535.288,567.0,770.0,0.0,5.0,48.4573,96.0,391.0,123.0,134.551,10.0979,14.269,10.3626,10.0,10.0
+1951,65.065,10.0,4.0,161.0,346.18,765.0,1019.0,110.0,430.0,474.399,515.0,858.0,424.0,508.0,535.348,568.0,740.0,0.0,5.0,48.5416,96.0,406.0,123.0,134.123,9.04727,14.1445,10.3737,10.0,10.0
+1952,65.098,10.0,4.0,161.0,345.709,769.0,1019.0,124.0,430.0,474.536,516.0,746.0,428.0,508.0,535.141,567.0,701.0,0.0,5.0,48.517,96.0,391.0,123.0,135.203,10.204,14.0114,10.3179,10.0,10.0
+1953,65.132,10.0,4.0,161.0,345.907,766.0,1014.0,138.0,430.0,474.479,516.0,800.0,400.0,508.0,535.459,568.0,678.0,0.0,5.0,48.7299,96.0,376.0,124.0,135.143,10.1459,14.0859,10.2658,10.0,10.0
+1954,65.165,10.0,4.0,161.0,345.136,765.0,1015.0,90.0,430.0,474.017,515.0,664.0,436.0,509.0,535.675,568.0,682.0,0.0,5.0,49.1333,97.0,427.0,123.0,134.325,8.95575,14.1372,10.4033,10.0,10.0
+1955,65.198,10.0,4.0,161.0,345.662,764.0,987.0,142.0,430.0,473.611,514.0,823.0,421.0,508.0,535.252,567.0,686.0,0.0,5.0,49.1463,97.0,375.0,123.0,133.002,9.85865,14.1505,10.363,10.0,10.0
+1956,65.232,10.0,4.0,160.0,345.955,766.0,1019.0,128.0,429.0,473.738,515.0,768.0,425.0,509.0,535.669,568.0,682.0,0.0,5.0,49.3439,98.0,389.0,123.0,133.737,8.91713,14.2215,10.4479,10.0,10.0
+1957,65.265,10.0,4.0,158.0,338.328,750.0,1019.0,132.0,430.0,473.949,515.0,799.0,430.0,508.0,535.375,568.0,680.0,0.0,5.0,49.0218,97.0,381.0,123.0,133.662,12.3064,14.2302,10.4001,10.0,10.0
+1958,65.299,10.0,4.0,157.0,328.777,722.0,958.0,144.0,429.0,473.235,514.0,666.0,413.0,508.0,536.074,568.0,671.0,0.0,5.0,49.858,98.0,372.0,123.0,132.949,13.9329,14.1227,10.4959,10.0,10.0
+1959,65.332,10.0,4.0,156.0,328.08,722.0,961.0,110.0,428.0,473.174,514.0,795.0,432.0,509.0,535.848,568.0,685.0,0.0,5.0,49.8355,98.0,406.0,123.0,132.999,8.27514,14.1431,10.4132,10.0,10.0
+1960,65.365,10.0,4.0,157.0,328.015,721.0,950.0,128.0,428.0,473.122,514.0,832.0,440.0,508.0,535.6,568.0,694.0,0.0,5.0,49.7566,99.0,387.0,123.0,132.643,8.94235,13.9936,10.28,10.0,10.0
+1961,65.399,10.0,4.0,156.0,327.511,720.0,962.0,100.0,429.0,473.302,514.0,644.0,420.0,508.0,536.195,568.0,690.0,0.0,5.0,49.8204,98.0,413.0,123.0,132.605,8.11797,14.3646,10.4369,10.0,10.0
+1962,65.432,10.0,4.0,156.0,328.415,722.0,953.0,110.0,427.0,472.66,514.0,651.0,428.0,508.0,535.892,568.0,684.0,0.0,5.0,50.2578,99.0,406.0,123.0,132.532,9.20516,14.2088,10.487,10.0,10.0
+1963,65.465,10.0,4.0,156.0,327.865,721.0,963.0,124.0,428.0,472.945,513.0,660.0,424.0,508.0,535.724,568.0,691.0,0.0,5.0,49.8969,98.0,392.0,123.0,132.019,8.7598,14.1698,10.3766,10.0,10.0
+1964,65.499,10.0,4.0,156.0,327.708,720.0,1019.0,102.0,429.0,473.37,514.0,667.0,434.0,509.0,535.699,568.0,690.0,0.0,5.0,49.5927,97.0,416.0,123.0,133.607,8.24635,14.2641,10.4348,10.0,10.0
+1965,65.532,10.0,4.0,156.0,328.592,721.0,963.0,119.0,430.0,474.057,515.0,643.0,438.0,508.0,535.102,568.0,680.0,0.0,5.0,48.8462,96.0,393.0,123.0,133.803,9.1683,14.1826,10.4772,10.0,10.0
+1966,65.566,10.0,4.0,156.0,328.701,722.0,963.0,123.0,430.0,474.197,515.0,650.0,422.0,508.0,535.085,567.0,689.0,0.0,5.0,48.7742,96.0,393.0,123.0,133.848,8.31251,14.0485,10.4487,10.0,10.0
+1967,65.599,10.0,4.0,156.0,326.945,720.0,970.0,128.0,430.0,473.827,515.0,690.0,412.0,508.0,535.13,567.0,688.0,0.0,5.0,48.9929,97.0,389.0,123.0,133.649,8.91721,14.191,10.312,10.0,10.0
+1968,65.632,10.0,4.0,157.0,328.354,721.0,964.0,138.0,430.0,473.758,514.0,652.0,430.0,508.0,535.043,567.0,684.0,0.0,5.0,49.0175,97.0,379.0,122.0,132.876,8.89712,14.1593,10.3762,10.0,10.0
+1969,65.666,10.0,4.0,157.0,328.218,721.0,961.0,132.0,430.0,473.831,515.0,712.0,428.0,508.0,535.418,568.0,688.0,0.0,5.0,49.0825,97.0,382.0,123.0,133.682,8.23508,14.1417,10.2472,10.0,10.0
+1970,65.699,10.0,4.0,156.0,328.067,721.0,950.0,86.0,429.0,473.347,513.0,927.0,433.0,508.0,535.376,568.0,712.0,0.0,5.0,49.4875,98.0,436.0,122.0,131.732,8.94334,14.1826,10.3637,10.0,10.0
+1971,65.732,10.0,4.0,156.0,327.695,721.0,965.0,114.0,430.0,473.404,513.0,902.0,415.0,508.0,535.916,568.0,699.0,0.0,5.0,49.6947,98.0,401.0,123.0,132.233,8.39005,14.2448,10.4508,10.0,10.0
+1972,65.766,10.0,4.0,157.0,327.585,720.0,1019.0,110.0,430.0,473.924,514.0,652.0,423.0,508.0,535.335,567.0,678.0,0.0,5.0,48.8317,96.0,405.0,123.0,132.987,8.98366,14.4324,10.427,10.0,10.0
+1973,65.799,10.0,4.0,157.0,328.907,721.0,961.0,121.0,430.0,474.043,514.0,644.0,422.0,508.0,535.468,568.0,689.0,0.0,5.0,48.9434,96.0,391.0,123.0,132.848,9.40796,14.1616,10.4775,10.0,10.0
+1974,65.832,10.0,4.0,157.0,328.367,721.0,969.0,111.0,430.0,474.104,514.0,667.0,430.0,508.0,535.354,567.0,684.0,0.0,5.0,48.857,97.0,403.0,123.0,133.246,8.48858,14.0834,10.4644,10.0,10.0
+1975,65.866,10.0,4.0,157.0,328.345,722.0,941.0,114.0,428.0,473.197,514.0,680.0,406.0,508.0,535.371,568.0,680.0,0.0,5.0,49.5983,98.0,402.0,122.0,132.146,9.57234,14.3355,10.3548,10.0,10.0
+1976,65.899,10.0,4.0,157.0,329.297,724.0,965.0,118.0,429.0,473.588,514.0,664.0,430.0,508.0,535.53,568.0,675.0,0.0,5.0,49.4299,98.0,401.0,123.0,133.317,8.6085,14.2447,10.495,10.0,10.0
+1977,65.933,10.0,4.0,156.0,328.248,721.0,958.0,123.0,430.0,473.431,514.0,645.0,414.0,508.0,535.431,568.0,689.0,0.0,5.0,49.3898,97.0,389.0,123.0,132.858,9.62322,14.1546,10.6509,10.0,10.0
+1978,65.966,10.0,4.0,156.0,327.419,719.0,944.0,97.0,430.0,473.463,514.0,726.0,420.0,508.0,535.709,568.0,680.0,0.0,5.0,49.5077,97.0,418.0,123.0,132.448,9.37905,14.272,10.3981,10.0,10.0
+1979,65.999,10.0,4.0,157.0,328.132,720.0,956.0,111.0,428.0,473.239,514.0,660.0,428.0,509.0,536.047,568.0,696.0,0.0,5.0,49.8239,99.0,402.0,123.0,133.58,8.77095,14.2454,10.3786,10.0,10.0
+1980,66.033,10.0,4.0,157.0,328.611,721.0,948.0,132.0,428.0,473.02,514.0,655.0,430.0,508.0,535.848,568.0,688.0,0.0,5.0,49.9159,98.0,382.0,123.0,132.765,9.76226,14.1345,10.5168,10.0,10.0
+1981,66.066,10.0,4.0,157.0,327.72,717.0,953.0,107.0,429.0,473.452,513.0,739.0,356.0,509.0,536.305,568.0,690.0,0.0,5.0,49.8337,98.0,405.0,123.0,133.207,8.90628,14.2018,10.4519,10.0,10.0
+1982,66.099,10.0,4.0,154.0,322.182,703.0,927.0,106.0,427.0,473.115,514.0,661.0,430.0,509.0,536.432,569.0,690.0,0.0,5.0,50.1741,99.0,409.0,123.0,133.896,11.6282,14.2323,10.5061,10.0,10.0
+1983,66.133,10.0,4.0,151.0,313.223,681.0,925.0,114.0,426.0,472.259,513.0,667.0,434.0,509.0,536.825,569.0,690.0,0.0,6.0,50.9704,100.0,399.0,123.0,132.303,14.82,14.4016,10.7021,10.0,10.0
+1984,66.166,10.0,4.0,151.0,309.46,669.0,898.0,124.0,426.0,471.984,513.0,652.0,428.0,509.0,536.953,569.0,679.0,0.0,6.0,51.2157,100.0,391.0,123.0,132.567,10.3288,14.3957,10.6701,10.0,10.0
+1985,66.199,10.0,4.0,151.0,309.537,669.0,883.0,114.0,427.0,472.42,513.0,652.0,413.0,509.0,536.809,569.0,688.0,0.0,5.0,50.833,100.0,399.0,123.0,132.39,9.6089,14.3955,10.5213,10.0,10.0
+1986,66.233,10.0,4.0,151.0,309.525,669.0,968.0,96.0,427.0,472.692,513.0,692.0,430.0,509.0,536.731,569.0,696.0,0.0,6.0,50.5619,100.0,421.0,123.0,132.384,8.25954,14.4074,10.5126,10.0,10.0
+1987,66.266,10.0,4.0,151.0,307.523,666.0,888.0,110.0,425.0,472.241,513.0,652.0,404.0,509.0,536.047,568.0,684.0,0.0,5.0,50.5495,100.0,406.0,122.0,132.07,9.63424,14.3424,10.5164,10.0,10.0
+1988,66.3,10.0,4.0,151.0,309.182,669.0,883.0,106.0,430.0,473.446,514.0,663.0,416.0,509.0,536.263,569.0,661.0,0.0,5.0,49.8186,98.0,411.0,123.0,133.463,9.07541,14.3407,10.5511,10.0,10.0
+1989,66.333,10.0,4.0,151.0,308.708,668.0,887.0,104.0,430.0,473.84,514.0,650.0,414.0,509.0,535.938,568.0,675.0,0.0,5.0,49.3248,97.0,409.0,123.0,134.125,7.95068,14.1374,10.4418,10.0,10.0
+1990,66.366,10.0,4.0,151.0,308.343,668.0,868.0,72.0,430.0,473.625,514.0,682.0,424.0,508.0,535.731,568.0,676.0,0.0,5.0,49.5061,98.0,444.0,123.0,133.239,8.99425,14.2689,10.4225,10.0,10.0
+1991,66.4,10.0,4.0,151.0,307.961,668.0,926.0,106.0,428.0,473.22,514.0,654.0,414.0,508.0,536.002,568.0,786.0,0.0,5.0,49.8076,98.0,409.0,123.0,132.812,8.13369,14.3758,10.5656,10.0,10.0
+1992,66.433,10.0,4.0,151.0,307.329,667.0,964.0,90.0,430.0,474.201,515.0,676.0,404.0,508.0,535.436,567.0,800.0,0.0,5.0,48.8636,96.0,424.0,123.0,133.912,8.78061,14.1327,10.358,10.0,10.0
+1993,66.466,10.0,4.0,151.0,307.419,666.0,879.0,118.0,430.0,473.761,514.0,805.0,430.0,508.0,535.394,567.0,706.0,0.0,5.0,49.1561,97.0,394.0,123.0,132.839,8.66639,14.1729,10.3982,10.0,10.0
+1994,66.5,10.0,4.0,151.0,307.978,667.0,881.0,88.0,430.0,473.683,514.0,686.0,424.0,509.0,535.433,567.0,834.0,0.0,5.0,49.0797,97.0,429.0,123.0,132.771,7.70144,14.0571,10.3665,10.0,10.0
+1995,66.533,10.0,4.0,151.0,307.99,668.0,881.0,114.0,429.0,473.338,514.0,700.0,432.0,508.0,535.324,567.0,691.0,0.0,5.0,49.4691,98.0,404.0,122.0,132.916,8.95868,14.1203,10.3153,10.0,10.0
+1996,66.567,10.0,4.0,151.0,308.209,669.0,887.0,124.0,430.0,473.806,515.0,678.0,406.0,508.0,535.493,568.0,669.0,0.0,5.0,49.2909,97.0,389.0,123.0,134.354,7.86857,14.146,10.458,10.0,10.0
+1997,66.6,10.0,4.0,151.0,308.756,669.0,881.0,122.0,430.0,474.16,515.0,649.0,413.0,508.0,535.14,567.0,692.0,0.0,5.0,48.793,96.0,391.0,123.0,133.692,9.10398,14.2423,10.567,10.0,10.0
+1998,66.633,10.0,4.0,151.0,309.944,673.0,901.0,120.0,430.0,473.731,514.0,779.0,422.0,508.0,534.954,568.0,766.0,0.0,5.0,49.0949,97.0,396.0,122.0,132.551,8.70456,14.3176,10.4149,10.0,10.0
+1999,66.667,10.0,4.0,152.0,309.775,672.0,881.0,114.0,429.0,473.561,514.0,660.0,424.0,509.0,535.23,566.0,829.0,0.0,5.0,49.2739,97.0,404.0,122.0,133.068,7.77787,14.1901,10.2783,10.0,10.0
+2000,66.7,10.0,4.0,151.0,309.813,671.0,903.0,93.0,429.0,473.262,514.0,785.0,422.0,508.0,535.042,567.0,750.0,0.0,5.0,49.4037,97.0,425.0,122.0,131.59,8.569,14.1484,10.2154,10.0,10.0
+2001,66.733,10.0,4.0,151.0,310.339,672.0,899.0,64.0,430.0,474.022,514.0,754.0,422.0,508.0,535.333,567.0,760.0,0.0,5.0,48.9542,96.0,449.0,123.0,133.325,7.65349,14.2791,10.5017,10.0,10.0
+2002,66.767,10.0,4.0,151.0,310.454,672.0,881.0,62.0,430.0,473.954,515.0,642.0,388.0,508.0,534.794,565.0,813.0,0.0,5.0,48.7535,96.0,453.0,122.0,133.366,8.25607,14.3316,10.3787,10.0,10.0
+2003,66.8,10.0,4.0,151.0,310.665,673.0,876.0,106.0,430.0,473.715,514.0,653.0,434.0,508.0,534.979,567.0,785.0,0.0,5.0,49.0733,96.0,410.0,122.0,132.321,8.23027,14.1427,10.3695,10.0,10.0
+2004,66.833,10.0,4.0,151.0,310.386,672.0,885.0,124.0,431.0,474.316,515.0,640.0,424.0,508.0,534.712,565.0,823.0,0.0,5.0,48.3929,95.0,396.0,122.0,133.536,7.60577,14.1995,10.3637,10.0,10.0
+2005,66.867,10.0,4.0,152.0,311.297,673.0,874.0,113.0,431.0,474.598,514.0,652.0,420.0,508.0,534.578,565.0,782.0,0.0,5.0,48.1269,94.0,402.0,122.0,132.927,8.45415,14.1456,10.2413,10.0,10.0
+2006,66.9,10.0,4.0,151.0,311.252,674.0,881.0,102.0,431.0,474.177,514.0,632.0,384.0,508.0,534.952,566.0,679.0,0.0,5.0,48.5524,95.0,416.0,123.0,132.304,7.76232,14.1175,10.3805,10.0,10.0
+2007,66.934,10.0,4.0,151.0,310.2,672.0,881.0,88.0,430.0,473.077,513.0,655.0,416.0,508.0,534.5,565.0,746.0,0.0,5.0,49.3184,96.0,428.0,121.0,130.947,9.03516,13.9167,10.1981,10.0,10.0
+2008,66.967,10.0,4.0,151.0,310.178,670.0,953.0,104.0,430.0,473.998,514.0,725.0,423.0,508.0,534.904,566.0,776.0,0.0,5.0,48.7359,96.0,412.0,122.0,132.738,8.73402,14.1233,10.364,10.0,10.0
+2009,67.0,10.0,4.0,151.0,310.237,671.0,885.0,102.0,431.0,474.565,515.0,667.0,423.0,508.0,534.81,566.0,796.0,0.0,5.0,48.2597,95.0,411.0,123.0,133.475,7.74978,14.0045,10.2755,10.0,10.0
+2010,67.034,10.0,4.0,151.0,309.829,670.0,892.0,115.0,431.0,474.702,514.0,677.0,408.0,508.0,534.2,565.0,785.0,0.0,5.0,47.9153,94.0,402.0,122.0,132.673,8.55798,13.9861,10.2965,10.0,10.0
+2011,67.067,10.0,4.0,151.0,310.249,670.0,889.0,130.0,431.0,474.547,514.0,680.0,420.0,508.0,534.514,566.0,804.0,0.0,5.0,48.2425,95.0,388.0,122.0,133.006,7.79365,14.0216,10.3629,10.0,10.0
+2012,67.1,10.0,4.0,151.0,309.672,672.0,893.0,96.0,430.0,473.98,515.0,909.0,398.0,508.0,534.841,566.0,665.0,0.0,5.0,48.9782,96.0,421.0,122.0,133.589,8.30357,14.046,10.2793,10.0,10.0
+2013,67.134,10.0,4.0,151.0,309.079,669.0,877.0,87.0,431.0,474.707,515.0,886.0,405.0,508.0,534.876,566.0,686.0,0.0,5.0,48.3071,95.0,426.0,123.0,133.428,8.18426,13.9836,10.2027,10.0,10.0
+2014,67.167,10.0,4.0,147.0,303.008,655.0,859.0,106.0,430.0,474.204,515.0,667.0,413.0,509.0,535.066,567.0,841.0,0.0,5.0,48.7518,96.0,410.0,123.0,133.309,9.67701,14.0935,10.2327,10.0,10.0
+2015,67.2,10.0,4.0,148.0,301.695,650.0,851.0,106.0,430.0,473.674,514.0,655.0,398.0,508.0,535.04,568.0,754.0,0.0,5.0,49.1686,97.0,408.0,122.0,132.408,9.23356,14.1603,10.3538,10.0,10.0
+2016,67.234,10.0,4.0,148.0,301.846,650.0,853.0,122.0,430.0,473.357,514.0,640.0,398.0,508.0,535.322,568.0,802.0,0.0,5.0,49.4721,98.0,394.0,123.0,132.54,7.69026,14.062,10.4492,10.0,10.0
+2017,67.267,10.0,4.0,147.0,299.825,644.0,853.0,114.0,431.0,474.704,515.0,670.0,394.0,508.0,534.51,567.0,822.0,0.0,5.0,48.1793,95.0,399.0,122.0,132.926,8.47507,14.2303,10.3551,10.0,10.0
+2018,67.301,10.0,4.0,148.0,301.292,649.0,873.0,86.0,430.0,474.287,514.0,690.0,398.0,508.0,535.103,567.0,684.0,0.0,5.0,48.855,96.0,430.0,123.0,133.292,7.99966,14.4578,10.5673,10.0,10.0
+2019,67.334,10.0,4.0,148.0,301.145,649.0,854.0,104.0,430.0,474.284,515.0,656.0,378.0,508.0,535.17,567.0,685.0,0.0,5.0,48.7061,97.0,409.0,123.0,133.714,7.28189,14.4166,10.521,10.0,10.0
+2020,67.367,10.0,4.0,148.0,301.843,650.0,861.0,124.0,430.0,473.518,514.0,646.0,350.0,508.0,534.814,568.0,690.0,0.0,5.0,49.3513,97.0,391.0,122.0,132.056,7.89333,14.4532,10.5318,10.0,10.0
+2021,67.401,10.0,4.0,148.0,302.145,651.0,843.0,110.0,430.0,474.047,515.0,699.0,402.0,508.0,535.16,568.0,699.0,0.0,5.0,49.0342,97.0,402.0,123.0,133.195,7.2617,14.1733,10.5191,10.0,10.0
+2022,67.434,10.0,4.0,147.0,301.509,650.0,850.0,94.0,430.0,473.879,514.0,640.0,388.0,508.0,534.713,566.0,674.0,0.0,5.0,48.7853,96.0,424.0,122.0,131.749,7.98294,14.2441,10.4483,10.0,10.0
+2023,67.467,10.0,4.0,147.0,301.588,651.0,854.0,100.0,429.0,473.3,514.0,682.0,408.0,508.0,534.893,567.0,690.0,0.0,5.0,49.4416,98.0,416.0,122.0,132.241,8.38642,14.2305,10.2408,10.0,10.0
+2024,67.501,10.0,4.0,147.0,301.606,651.0,868.0,118.0,430.0,473.698,514.0,627.0,374.0,508.0,534.813,567.0,678.0,0.0,5.0,49.1346,97.0,398.0,122.0,132.656,7.29879,14.1864,10.3093,10.0,10.0
+2025,67.534,10.0,4.0,147.0,302.132,651.0,868.0,118.0,430.0,474.347,515.0,666.0,388.0,508.0,534.754,567.0,680.0,0.0,5.0,48.5213,96.0,395.0,123.0,133.002,8.11956,14.303,10.3224,10.0,10.0
+2026,67.568,10.0,4.0,147.0,302.514,652.0,861.0,90.0,430.0,474.428,514.0,674.0,400.0,508.0,534.692,567.0,690.0,0.0,5.0,48.3935,96.0,424.0,123.0,132.791,7.56628,14.251,10.4452,10.0,10.0
+2027,67.601,10.0,4.0,147.0,301.507,652.0,860.0,109.0,430.0,474.586,516.0,691.0,388.0,508.0,534.466,567.0,700.0,0.0,5.0,48.3211,96.0,408.0,123.0,134.158,8.55737,14.0166,10.3705,10.0,10.0
+2028,67.634,10.0,4.0,148.0,302.182,653.0,856.0,118.0,431.0,475.113,515.0,665.0,392.0,508.0,534.618,567.0,696.0,0.0,5.0,47.9309,95.0,399.0,123.0,134.374,9.01765,14.2847,10.4937,10.0,10.0
+2029,67.668,10.0,4.0,147.0,301.877,652.0,853.0,101.0,431.0,475.288,515.0,667.0,394.0,508.0,534.709,567.0,801.0,0.0,5.0,47.8182,95.0,413.0,123.0,134.687,8.04797,13.9628,10.3704,10.0,10.0
+2030,67.701,10.0,4.0,147.0,301.034,649.0,918.0,100.0,432.0,475.248,515.0,695.0,394.0,508.0,534.462,566.0,686.0,0.0,5.0,47.6412,94.0,417.0,123.0,134.257,9.45609,14.0044,10.3151,10.0,10.0
+2031,67.734,10.0,4.0,147.0,300.471,649.0,866.0,111.0,431.0,475.067,515.0,679.0,398.0,508.0,534.768,568.0,688.0,0.0,5.0,48.0038,95.0,405.0,123.0,134.059,8.01592,14.1585,10.3633,10.0,10.0
+2032,67.768,10.0,4.0,147.0,300.691,648.0,853.0,114.0,431.0,474.871,516.0,681.0,398.0,508.0,534.664,566.0,681.0,0.0,5.0,48.1257,95.0,402.0,123.0,134.737,8.6709,14.1781,10.2817,10.0,10.0
+2033,67.801,10.0,4.0,148.0,302.04,649.0,856.0,128.0,431.0,475.191,516.0,655.0,406.0,508.0,534.632,566.0,684.0,0.0,5.0,47.7849,94.0,387.0,123.0,134.959,8.70592,14.0564,10.3101,10.0,10.0
+2034,67.834,10.0,4.0,147.0,301.211,648.0,854.0,85.0,431.0,475.112,516.0,675.0,406.0,508.0,534.749,567.0,674.0,0.0,5.0,48.0719,96.0,431.0,123.0,135.726,7.51635,14.2375,10.3959,10.0,10.0
+2035,67.868,10.0,4.0,148.0,301.274,648.0,842.0,102.0,430.0,474.565,516.0,680.0,431.0,508.0,534.651,567.0,674.0,0.0,5.0,48.4078,96.0,411.0,123.0,134.514,8.47547,14.3637,10.4543,10.0,10.0
+2036,67.901,10.0,4.0,148.0,301.567,648.0,864.0,114.0,430.0,474.64,516.0,688.0,432.0,508.0,535.264,568.0,689.0,0.0,5.0,48.5325,97.0,403.0,123.0,134.704,7.58759,14.1525,10.3355,10.0,10.0
+2037,67.935,10.0,4.0,148.0,301.469,648.0,871.0,118.0,431.0,474.93,516.0,710.0,422.0,508.0,534.675,566.0,688.0,0.0,5.0,48.1471,95.0,395.0,123.0,134.888,8.69497,14.2178,10.4119,10.0,10.0
+2038,67.968,10.0,4.0,148.0,302.618,650.0,867.0,74.0,431.0,474.925,515.0,660.0,423.0,508.0,534.642,567.0,685.0,0.0,5.0,47.9281,95.0,442.0,123.0,134.277,9.04485,14.1633,10.2395,10.0,10.0
+2039,68.001,10.0,4.0,148.0,301.364,648.0,858.0,99.0,430.0,474.626,516.0,645.0,416.0,508.0,534.762,567.0,689.0,0.0,5.0,48.4054,96.0,417.0,123.0,134.838,7.91787,14.2826,10.3586,10.0,10.0
+2040,68.035,10.0,4.0,148.0,301.531,648.0,932.0,84.0,430.0,474.72,516.0,649.0,352.0,508.0,534.726,567.0,689.0,0.0,5.0,48.3127,95.0,429.0,123.0,135.224,8.85578,14.3067,10.4806,10.0,10.0
+2041,68.068,10.0,4.0,148.0,302.47,649.0,866.0,122.0,431.0,475.189,516.0,675.0,422.0,508.0,534.772,566.0,694.0,0.0,5.0,47.9336,95.0,392.0,123.0,135.289,7.76725,14.3119,10.5044,10.0,10.0
+2042,68.101,10.0,4.0,148.0,302.791,649.0,866.0,80.0,430.0,474.36,516.0,710.0,419.0,508.0,535.027,567.0,693.0,0.0,5.0,48.7696,96.0,435.0,123.0,134.667,8.02753,14.1635,10.3191,10.0,10.0
+2043,68.135,10.0,4.0,147.0,302.295,651.0,869.0,112.0,430.0,473.78,515.0,685.0,424.0,508.0,534.964,568.0,685.0,0.0,5.0,49.1714,97.0,401.0,122.0,133.128,7.91157,14.1487,10.3791,10.0,10.0
+2044,68.168,10.0,4.0,147.0,301.92,650.0,856.0,106.0,430.0,474.066,515.0,720.0,424.0,508.0,535.032,567.0,686.0,0.0,5.0,48.8441,96.0,407.0,123.0,133.39,7.44996,14.0075,10.2632,10.0,10.0
+2045,68.201,10.0,4.0,147.0,302.199,649.0,911.0,119.0,430.0,473.605,515.0,680.0,398.0,508.0,535.061,568.0,689.0,0.0,5.0,49.2428,97.0,395.0,122.0,132.704,8.57733,14.1353,10.3145,10.0,10.0
+2046,68.235,10.0,4.0,147.0,302.622,649.0,865.0,111.0,429.0,473.271,515.0,689.0,401.0,508.0,535.321,568.0,681.0,0.0,5.0,49.669,98.0,404.0,123.0,133.103,7.71831,14.1697,10.3584,10.0,10.0
+2047,68.268,10.0,4.0,147.0,301.629,648.0,868.0,103.0,429.0,473.215,515.0,681.0,399.0,508.0,535.297,568.0,691.0,0.0,5.0,49.6391,97.0,412.0,122.0,133.011,8.99042,14.1774,10.3398,10.0,10.0
+2048,68.302,10.0,4.0,147.0,302.405,650.0,857.0,118.0,430.0,473.777,515.0,710.0,410.0,508.0,535.3,568.0,685.0,0.0,5.0,49.264,97.0,397.0,123.0,134.454,8.69448,13.9303,10.2763,10.0,10.0
+2049,68.335,10.0,4.0,147.0,302.267,649.0,862.0,118.0,430.0,474.13,515.0,688.0,418.0,508.0,535.351,568.0,705.0,0.0,5.0,49.0081,96.0,396.0,123.0,134.163,7.30686,14.0472,10.3682,10.0,10.0
+2050,68.368,10.0,4.0,147.0,302.033,649.0,925.0,128.0,430.0,473.966,515.0,678.0,352.0,508.0,535.104,567.0,696.0,0.0,5.0,49.0126,97.0,388.0,123.0,133.335,8.19827,14.0903,10.2948,10.0,10.0
+2051,68.402,10.0,4.0,147.0,301.942,649.0,861.0,104.0,429.0,473.559,514.0,718.0,436.0,508.0,535.411,568.0,676.0,0.0,5.0,49.4497,98.0,409.0,123.0,133.452,7.5083,14.2485,10.3975,10.0,10.0
+2052,68.435,10.0,4.0,147.0,301.875,649.0,860.0,122.0,430.0,473.705,515.0,680.0,412.0,508.0,535.215,567.0,681.0,0.0,5.0,49.228,97.0,392.0,123.0,133.848,8.05134,14.0468,10.2614,10.0,10.0
+2053,68.468,10.0,4.0,147.0,302.096,649.0,930.0,98.0,430.0,474.018,515.0,718.0,424.0,508.0,535.249,567.0,686.0,0.0,5.0,48.9766,96.0,414.0,123.0,133.674,8.34502,13.9206,10.1563,10.0,10.0
+2054,68.502,10.0,4.0,147.0,301.924,649.0,935.0,80.0,430.0,474.152,515.0,680.0,430.0,508.0,535.447,568.0,672.0,0.0,5.0,48.9664,96.0,436.0,123.0,134.097,7.3768,14.07,10.4596,10.0,10.0
+2055,68.535,10.0,4.0,146.0,301.544,649.0,857.0,124.0,430.0,474.105,515.0,664.0,416.0,508.0,535.583,568.0,686.0,0.0,5.0,49.1007,97.0,390.0,123.0,134.221,8.13147,14.113,10.3984,10.0,10.0
+2056,68.569,10.0,4.0,147.0,302.16,650.0,859.0,110.0,430.0,473.735,515.0,670.0,402.0,508.0,535.737,568.0,680.0,0.0,5.0,49.5094,98.0,405.0,123.0,134.66,7.48776,14.0934,10.4577,10.0,10.0
+2057,68.602,10.0,4.0,147.0,301.431,648.0,939.0,128.0,430.0,473.976,515.0,640.0,394.0,508.0,535.557,568.0,676.0,0.0,5.0,49.0993,97.0,384.0,123.0,134.224,8.18222,14.1834,10.4364,10.0,10.0
+2058,68.635,10.0,4.0,147.0,302.329,650.0,863.0,95.0,430.0,474.05,515.0,699.0,420.0,508.0,536.008,568.0,683.0,0.0,5.0,49.3266,97.0,421.0,124.0,134.508,8.32426,14.3099,10.3755,10.0,10.0
+2059,68.669,10.0,4.0,147.0,301.777,649.0,867.0,102.0,430.0,473.52,515.0,696.0,416.0,508.0,536.071,569.0,692.0,0.0,5.0,49.7673,98.0,411.0,123.0,134.401,7.39001,14.2638,10.4297,10.0,10.0
+2060,68.702,10.0,4.0,147.0,301.82,648.0,852.0,118.0,429.0,473.662,515.0,685.0,398.0,508.0,535.465,568.0,688.0,0.0,5.0,49.4775,98.0,394.0,123.0,134.301,8.09215,14.2267,10.3245,10.0,10.0
+2061,68.735,10.0,4.0,147.0,302.475,649.0,866.0,132.0,430.0,474.457,515.0,686.0,398.0,508.0,535.608,568.0,702.0,0.0,5.0,48.7948,96.0,381.0,124.0,134.835,7.36227,14.2979,10.3754,10.0,10.0
+2062,68.769,10.0,4.0,147.0,301.517,647.0,922.0,110.0,431.0,474.77,515.0,666.0,416.0,508.0,535.272,568.0,680.0,0.0,5.0,48.3742,96.0,405.0,123.0,134.599,7.83004,14.0916,10.4217,10.0,10.0
+2063,68.802,10.0,4.0,147.0,301.701,648.0,858.0,126.0,429.0,473.508,515.0,688.0,412.0,508.0,535.21,568.0,678.0,0.0,5.0,49.3473,98.0,388.0,122.0,133.374,8.08458,14.0686,10.2797,10.0,10.0
+2064,68.835,10.0,4.0,147.0,301.957,649.0,856.0,106.0,430.0,473.821,515.0,674.0,412.0,508.0,535.491,568.0,686.0,0.0,5.0,49.1645,97.0,407.0,123.0,133.91,7.34187,14.1754,10.3382,10.0,10.0
+2065,68.869,10.0,4.0,148.0,302.652,650.0,851.0,111.0,430.0,474.253,515.0,665.0,412.0,508.0,534.985,567.0,677.0,0.0,5.0,48.7652,96.0,402.0,123.0,133.999,8.10625,14.0628,10.2576,10.0,10.0
+2066,68.902,10.0,4.0,147.0,303.05,651.0,852.0,102.0,430.0,474.388,515.0,688.0,389.0,508.0,534.71,567.0,685.0,0.0,5.0,48.5481,96.0,413.0,123.0,133.886,7.38068,14.2258,10.3806,10.0,10.0
+2067,68.936,10.0,4.0,147.0,301.325,650.0,855.0,107.0,430.0,474.264,516.0,675.0,398.0,508.0,534.777,566.0,678.0,0.0,5.0,48.5805,96.0,407.0,123.0,134.307,8.28647,14.1035,10.3494,10.0,10.0
+2068,68.969,10.0,4.0,147.0,302.053,650.0,846.0,128.0,429.0,473.507,514.0,723.0,424.0,508.0,535.138,568.0,685.0,0.0,5.0,49.2108,98.0,386.0,122.0,132.052,7.89955,14.1533,10.4338,10.0,10.0
+2069,69.002,10.0,4.0,147.0,302.061,650.0,850.0,118.0,430.0,473.958,514.0,684.0,422.0,508.0,535.185,567.0,703.0,0.0,5.0,48.9229,97.0,396.0,123.0,132.658,7.36084,14.0772,10.3198,10.0,10.0
+2070,69.036,10.0,4.0,148.0,302.581,650.0,859.0,95.0,430.0,473.823,514.0,677.0,414.0,508.0,534.927,566.0,783.0,0.0,5.0,48.9003,97.0,420.0,122.0,132.601,7.82218,14.0223,10.3219,10.0,10.0
+2071,69.069,10.0,4.0,147.0,302.505,650.0,849.0,103.0,430.0,473.5,514.0,688.0,436.0,508.0,535.12,567.0,807.0,0.0,5.0,49.2614,97.0,415.0,122.0,132.367,7.56109,14.1116,10.3059,10.0,10.0
+2072,69.102,10.0,4.0,147.0,301.996,649.0,850.0,115.0,430.0,473.58,514.0,698.0,412.0,508.0,534.922,567.0,802.0,0.0,5.0,49.2633,98.0,399.0,122.0,132.49,8.41596,14.2074,10.3727,10.0,10.0
+2073,69.136,10.0,4.0,148.0,302.844,650.0,857.0,128.0,430.0,474.062,515.0,712.0,422.0,508.0,535.108,567.0,803.0,0.0,5.0,48.7856,96.0,386.0,123.0,133.135,8.04821,14.1784,10.2856,10.0,10.0
+2074,69.169,10.0,4.0,147.0,303.089,651.0,852.0,96.0,430.0,474.035,515.0,906.0,419.0,508.0,534.974,568.0,691.0,0.0,5.0,48.928,96.0,428.0,123.0,133.499,7.60117,14.1638,10.4367,10.0,10.0
+2075,69.202,10.0,4.0,148.0,303.008,651.0,927.0,101.0,429.0,473.381,514.0,911.0,394.0,508.0,534.718,567.0,692.0,0.0,5.0,49.3428,97.0,413.0,122.0,131.884,8.08107,14.1359,10.4139,10.0,10.0
+2076,69.236,10.0,4.0,147.0,302.878,651.0,851.0,118.0,429.0,473.026,514.0,833.0,408.0,508.0,534.583,567.0,675.0,0.0,5.0,49.5413,97.0,397.0,122.0,131.618,7.40269,14.1646,10.5336,10.0,10.0
+2077,69.269,10.0,4.0,148.0,303.277,649.0,855.0,106.0,429.0,473.377,514.0,843.0,412.0,508.0,535.176,567.0,690.0,0.0,5.0,49.4692,98.0,410.0,122.0,132.752,8.10825,14.0913,10.4854,10.0,10.0
+2078,69.303,10.0,4.0,148.0,302.621,649.0,857.0,107.0,430.0,473.544,514.0,699.0,433.0,508.0,535.087,568.0,696.0,0.0,5.0,49.2908,97.0,407.0,122.0,132.378,8.14887,14.0669,10.2484,10.0,10.0
+2079,69.336,10.0,4.0,148.0,302.661,649.0,895.0,86.0,428.0,473.357,514.0,709.0,388.0,508.0,535.527,568.0,682.0,0.0,5.0,49.5799,98.0,430.0,123.0,133.513,7.33358,14.2428,10.361,10.0,10.0
+2080,69.369,10.0,4.0,149.0,303.114,649.0,864.0,134.0,430.0,473.57,514.0,683.0,388.0,508.0,534.835,566.0,690.0,0.0,5.0,49.0698,96.0,381.0,122.0,132.476,8.21574,14.2094,10.4894,10.0,10.0
+2081,69.403,10.0,4.0,148.0,302.802,650.0,871.0,135.0,430.0,474.063,515.0,651.0,422.0,508.0,534.948,567.0,674.0,0.0,5.0,48.8073,96.0,378.0,123.0,133.912,7.55174,14.2019,10.4006,10.0,10.0
+2082,69.436,10.0,4.0,148.0,303.389,650.0,849.0,114.0,429.0,473.656,515.0,679.0,398.0,509.0,535.616,568.0,684.0,0.0,5.0,49.4048,98.0,402.0,123.0,134.702,7.95072,13.9987,10.3164,10.0,10.0
+2083,69.469,10.0,4.0,148.0,303.009,650.0,858.0,110.0,429.0,472.856,514.0,694.0,412.0,508.0,535.646,568.0,686.0,0.0,5.0,50.0451,98.0,405.0,123.0,132.145,8.21685,14.1342,10.3763,10.0,10.0
+2084,69.503,10.0,4.0,147.0,302.651,650.0,857.0,128.0,430.0,473.262,514.0,662.0,413.0,509.0,535.702,568.0,687.0,0.0,5.0,49.6939,98.0,391.0,123.0,133.22,7.45565,14.1106,10.3874,10.0,10.0
+2085,69.536,10.0,4.0,147.0,303.566,650.0,886.0,118.0,429.0,473.364,514.0,664.0,380.0,508.0,535.105,568.0,740.0,0.0,5.0,49.3733,97.0,396.0,122.0,132.089,8.10876,14.1232,10.4436,10.0,10.0
+2086,69.57,10.0,4.0,147.0,303.49,650.0,859.0,94.0,430.0,473.785,514.0,684.0,388.0,508.0,535.194,568.0,672.0,0.0,5.0,49.0713,96.0,424.0,123.0,132.547,7.3699,14.1509,10.4493,10.0,10.0
+2087,69.603,10.0,4.0,148.0,302.626,650.0,853.0,92.0,430.0,473.835,514.0,699.0,384.0,508.0,535.086,567.0,681.0,0.0,5.0,49.0608,96.0,421.0,123.0,132.611,8.28677,14.1232,10.2826,10.0,10.0
+2088,69.636,10.0,4.0,148.0,303.05,651.0,842.0,124.0,430.0,473.409,514.0,724.0,420.0,508.0,535.49,568.0,689.0,0.0,5.0,49.4123,97.0,395.0,123.0,132.898,8.32327,14.1227,10.2752,10.0,10.0
+2089,69.67,10.0,4.0,149.0,303.685,652.0,866.0,124.0,430.0,473.223,514.0,666.0,412.0,508.0,535.712,568.0,682.0,0.0,5.0,49.7782,97.0,389.0,123.0,133.279,7.41223,14.2915,10.351,10.0,10.0
+2090,69.703,10.0,4.0,149.0,303.239,651.0,858.0,106.0,430.0,473.502,514.0,678.0,398.0,508.0,535.224,567.0,674.0,0.0,5.0,49.3539,96.0,410.0,122.0,132.754,8.06003,14.2565,10.3675,10.0,10.0
+2091,69.736,10.0,4.0,148.0,302.795,650.0,849.0,104.0,430.0,473.363,514.0,684.0,420.0,508.0,535.562,567.0,674.0,0.0,5.0,49.5232,97.0,410.0,123.0,132.384,7.47861,13.8902,10.3112,10.0,10.0
+2092,69.77,10.0,4.0,153.0,304.864,650.0,933.0,118.0,430.0,474.097,516.0,709.0,423.0,509.0,535.407,567.0,672.0,0.0,5.0,49.1872,97.0,399.0,123.0,136.724,8.20045,13.9233,10.4058,10.0,10.0
+2093,69.803,10.0,4.0,245.0,531.78,767.0,921.0,114.0,498.0,511.241,523.0,628.0,438.0,502.0,511.464,520.0,589.0,0.0,3.0,11.8242,25.0,401.0,180.0,171.276,348.854,41.8291,27.6622,10.0,10.0
+2094,69.836,10.0,4.0,247.0,531.599,768.0,927.0,120.0,498.0,511.02,523.0,613.0,437.0,501.0,511.354,520.0,586.0,0.0,3.0,11.7893,25.0,396.0,170.0,169.277,8.95646,13.7584,9.86587,10.0,10.0
+2095,69.87,10.0,4.0,247.0,530.211,766.0,896.0,114.0,498.0,511.112,524.0,614.0,433.0,501.0,511.453,520.0,582.0,0.0,3.0,12.0332,26.0,400.0,172.0,170.214,10.0235,13.8257,9.92755,10.0,10.0
+2096,69.903,10.0,4.0,247.0,530.887,768.0,930.0,103.0,498.0,511.165,523.0,613.0,430.0,501.0,511.484,521.0,582.0,0.0,3.0,12.0591,26.0,410.0,177.0,169.794,7.78682,13.9818,10.185,10.0,10.0
+2097,69.937,10.0,4.0,245.0,529.839,767.0,904.0,86.0,498.0,511.294,523.0,609.0,400.0,501.0,511.31,520.0,584.0,0.0,3.0,11.9383,25.0,426.0,180.0,170.6,10.607,13.728,10.1008,10.0,10.0
+2098,69.97,10.0,4.0,245.0,530.217,768.0,900.0,94.0,498.0,511.171,523.0,606.0,430.0,501.0,511.425,521.0,586.0,0.0,3.0,12.0006,25.0,421.0,176.0,170.107,9.10159,13.5626,10.0833,10.0,10.0
+2099,70.003,10.0,4.0,246.0,530.417,768.0,841.0,104.0,498.0,511.491,524.0,617.0,425.0,501.0,511.347,520.0,585.0,0.0,3.0,11.9451,25.0,410.0,180.0,171.512,8.67996,13.8577,10.2316,10.0,10.0
+2100,70.037,10.0,4.0,247.0,531.271,769.0,929.0,119.0,498.0,511.085,524.0,617.0,434.0,501.0,511.308,520.0,587.0,0.0,3.0,12.1391,26.0,397.0,173.0,169.663,9.87159,13.9567,10.2051,10.0,10.0
+2101,70.07,10.0,4.0,247.0,532.028,770.0,929.0,102.0,498.0,511.252,523.0,611.0,434.0,501.0,511.503,521.0,595.0,0.0,3.0,12.0247,25.0,412.0,180.0,171.189,8.34114,14.1256,10.3715,10.0,10.0
+2102,70.103,10.0,4.0,247.0,530.374,769.0,844.0,118.0,498.0,511.243,523.0,617.0,422.0,501.0,511.406,520.0,580.0,0.0,3.0,11.9945,25.0,398.0,180.0,169.618,9.56328,13.7816,10.1638,10.0,10.0
+2103,70.137,10.0,4.0,247.0,532.186,771.0,923.0,101.0,498.0,511.273,524.0,646.0,413.0,501.0,511.406,520.0,581.0,0.0,3.0,11.9824,25.0,417.0,180.0,170.193,8.65075,13.8509,10.1112,10.0,10.0
+2104,70.17,10.0,4.0,246.0,531.43,770.0,925.0,120.0,498.0,511.177,523.0,616.0,440.0,501.0,511.393,520.0,586.0,0.0,3.0,12.0052,25.0,396.0,175.0,169.439,8.45706,13.8709,10.2347,10.0,10.0
+2105,70.203,10.0,4.0,246.0,531.243,770.0,930.0,103.0,498.0,511.275,524.0,609.0,423.0,501.0,511.38,520.0,583.0,0.0,3.0,12.0662,26.0,410.0,180.0,170.486,10.1982,13.7984,10.1747,10.0,10.0
+2106,70.237,10.0,4.0,245.0,531.445,770.0,929.0,82.0,498.0,511.013,523.0,612.0,434.0,501.0,511.464,521.0,592.0,0.0,3.0,12.0391,26.0,434.0,170.0,168.543,8.77242,13.9711,10.2312,10.0,10.0
+2107,70.27,10.0,4.0,246.0,530.993,770.0,922.0,118.0,498.0,511.199,524.0,632.0,440.0,501.0,511.393,520.0,639.0,0.0,3.0,12.1048,26.0,397.0,180.0,170.067,8.60674,14.1433,10.3091,10.0,10.0
+2108,70.304,10.0,4.0,246.0,531.547,771.0,872.0,123.0,498.0,511.146,523.0,616.0,437.0,501.0,511.3,520.0,604.0,0.0,3.0,12.0784,26.0,393.0,180.0,170.236,9.08911,13.932,10.0499,10.0,10.0
+2109,70.337,10.0,4.0,246.0,531.673,770.0,928.0,114.0,498.0,511.312,524.0,609.0,433.0,501.0,511.314,520.0,586.0,0.0,3.0,11.9377,25.0,403.0,172.0,169.426,8.40536,14.0258,10.2055,10.0,10.0
+2110,70.37,10.0,4.0,246.0,530.94,770.0,892.0,96.0,498.0,511.301,523.0,622.0,438.0,501.0,511.368,520.0,603.0,0.0,3.0,11.8193,25.0,421.0,180.0,170.867,9.18387,13.7816,10.1713,10.0,10.0
+2111,70.404,10.0,4.0,244.0,530.332,770.0,869.0,118.0,498.0,511.241,523.0,626.0,428.0,501.0,511.488,520.0,592.0,0.0,3.0,11.9631,25.0,396.0,180.0,170.567,8.00961,13.8353,10.1642,10.0,10.0
+2112,70.437,10.0,4.0,243.0,528.618,767.0,929.0,124.0,499.0,511.41,523.0,618.0,438.0,501.0,511.351,520.0,682.0,0.0,3.0,11.8192,25.0,392.0,180.0,170.684,9.87455,13.7729,10.1517,10.0,10.0
+2113,70.47,10.0,4.0,245.0,529.913,769.0,923.0,99.0,498.0,511.087,523.0,613.0,417.0,501.0,511.431,520.0,582.0,0.0,3.0,11.9356,25.0,416.0,177.0,170.059,8.68775,13.6449,10.1594,10.0,10.0
+2114,70.504,10.0,4.0,243.0,529.281,768.0,923.0,97.0,498.0,511.302,523.0,614.0,428.0,501.0,511.511,520.0,585.0,0.0,3.0,11.9064,25.0,419.0,180.0,170.573,8.07848,13.8741,10.0848,10.0,10.0
+2115,70.537,10.0,4.0,243.0,529.359,768.0,926.0,166.0,498.0,511.258,523.0,618.0,435.0,501.0,511.358,520.0,582.0,0.0,3.0,11.9215,25.0,348.0,172.0,169.018,9.94158,13.7918,10.1313,10.0,10.0
+2116,70.571,10.0,4.0,243.0,529.758,769.0,928.0,114.0,498.0,511.163,523.0,613.0,421.0,501.0,511.401,520.0,582.0,0.0,3.0,11.904,25.0,401.0,177.0,169.47,9.1363,13.7617,10.1333,10.0,10.0
+2117,70.604,10.0,4.0,243.0,528.067,767.0,925.0,114.0,498.0,511.283,524.0,614.0,432.0,501.0,511.348,520.0,592.0,0.0,3.0,12.0445,25.0,398.0,180.0,170.203,10.2183,13.7237,10.0868,10.0,10.0
+2118,70.637,10.0,4.0,245.0,530.082,770.0,836.0,104.0,498.0,511.196,523.0,614.0,436.0,501.0,511.336,520.0,646.0,0.0,3.0,11.9547,25.0,413.0,180.0,170.629,9.66615,13.8434,10.1647,10.0,10.0
+2119,70.671,10.0,4.0,243.0,529.108,768.0,928.0,110.0,498.0,511.425,524.0,618.0,424.0,501.0,511.371,520.0,578.0,0.0,3.0,11.982,25.0,404.0,180.0,171.136,8.13817,13.9522,10.2356,10.0,10.0
+2120,70.704,10.0,4.0,244.0,529.94,769.0,927.0,134.0,498.0,511.227,523.0,610.0,439.0,501.0,511.363,520.0,586.0,0.0,3.0,11.9078,25.0,381.0,180.0,171.334,9.26789,13.7362,10.0968,10.0,10.0
+2121,70.737,10.0,4.0,244.0,530.451,770.0,929.0,120.0,498.0,511.19,523.0,614.0,424.0,501.0,511.299,520.0,588.0,0.0,3.0,11.9758,26.0,394.0,173.0,169.248,8.52221,13.7538,10.2249,10.0,10.0
+2122,70.771,10.0,4.0,243.0,528.691,768.0,924.0,90.0,498.0,511.458,524.0,639.0,424.0,501.0,511.515,521.0,620.0,0.0,3.0,11.9926,25.0,426.0,180.0,171.567,12.5523,13.8492,10.1925,10.0,10.0
+2123,70.804,10.0,4.0,244.0,530.356,770.0,929.0,108.0,498.0,511.326,523.0,622.0,430.0,501.0,511.463,521.0,683.0,0.0,3.0,12.0083,26.0,408.0,180.0,171.638,10.9855,13.7056,10.0769,10.0,10.0
+2124,70.837,10.0,4.0,244.0,530.071,770.0,929.0,124.0,498.0,511.022,523.0,608.0,436.0,501.0,511.45,521.0,589.0,0.0,3.0,12.0029,26.0,392.0,172.0,169.44,8.54887,13.9106,10.1804,10.0,10.0
+2125,70.871,10.0,4.0,244.0,530.542,770.0,885.0,130.0,498.0,511.171,523.0,603.0,416.0,501.0,511.615,521.0,592.0,0.0,3.0,11.9351,25.0,385.0,180.0,169.996,10.7118,13.7851,10.1204,10.0,10.0
+2126,70.904,10.0,4.0,244.0,531.173,770.0,924.0,114.0,498.0,511.233,523.0,624.0,424.0,501.0,511.507,521.0,583.0,0.0,3.0,11.9446,25.0,404.0,180.0,169.982,9.28822,13.7238,10.1344,10.0,10.0
+2127,70.938,10.0,4.0,244.0,529.333,768.0,927.0,124.0,498.0,510.996,523.0,625.0,434.0,501.0,511.427,520.0,585.0,0.0,3.0,11.9824,25.0,391.0,168.0,168.938,9.74571,13.8931,10.0997,10.0,10.0
+2128,70.971,10.0,4.0,243.0,529.519,768.0,929.0,132.0,498.0,511.248,524.0,628.0,434.0,501.0,511.522,521.0,595.0,0.0,3.0,12.0335,26.0,383.0,180.0,171.799,8.93005,14.0057,10.1944,10.0,10.0
+2129,71.004,10.0,4.0,243.0,529.376,768.0,844.0,92.0,498.0,511.342,524.0,612.0,416.0,501.0,511.409,520.0,584.0,0.0,3.0,12.0423,25.0,421.0,180.0,171.224,8.07643,14.0185,10.1925,10.0,10.0
+2130,71.038,10.0,4.0,244.0,529.503,769.0,929.0,48.0,498.0,511.369,524.0,611.0,420.0,501.0,511.499,520.0,594.0,0.0,3.0,11.8827,25.0,471.0,180.0,171.423,9.67664,13.7711,10.0502,10.0,10.0
+2131,71.071,10.0,4.0,244.0,530.064,769.0,928.0,118.0,498.0,511.38,524.0,613.0,430.0,501.0,511.395,520.0,594.0,0.0,3.0,11.9939,25.0,397.0,180.0,171.086,8.76428,13.7427,10.1119,10.0,10.0
+2132,71.104,10.0,4.0,243.0,528.283,767.0,916.0,118.0,498.0,511.35,524.0,645.0,431.0,501.0,511.429,520.0,583.0,0.0,3.0,11.9745,25.0,398.0,180.0,171.15,9.92539,13.9104,10.0582,10.0,10.0
+2133,71.138,10.0,4.0,243.0,529.27,769.0,930.0,110.0,498.0,511.225,523.0,629.0,416.0,501.0,511.511,521.0,597.0,0.0,3.0,11.9987,25.0,403.0,180.0,171.324,11.827,13.9113,9.98897,10.0,10.0
+2134,71.171,10.0,4.0,243.0,529.365,769.0,930.0,79.0,498.0,511.253,523.0,604.0,430.0,501.0,511.431,520.0,583.0,0.0,3.0,11.9146,25.0,436.0,180.0,170.037,8.66676,13.7874,10.119,10.0,10.0
+2135,71.204,10.0,4.0,243.0,529.585,769.0,930.0,124.0,498.0,511.289,523.0,603.0,425.0,501.0,511.483,521.0,651.0,0.0,3.0,11.9402,26.0,391.0,180.0,170.73,9.60103,13.6227,10.1219,10.0,10.0
+2136,71.238,10.0,4.0,244.0,530.237,770.0,908.0,124.0,498.0,511.152,523.0,604.0,436.0,501.0,511.397,520.0,674.0,0.0,3.0,11.9266,25.0,391.0,180.0,169.976,8.07522,13.8612,10.2768,10.0,10.0
+2137,71.271,10.0,4.0,244.0,529.675,769.0,885.0,115.0,498.0,511.307,524.0,609.0,425.0,501.0,511.42,520.0,679.0,0.0,3.0,12.0957,26.0,398.0,180.0,171.5,9.85383,13.901,10.2233,10.0,10.0
+2138,71.305,10.0,4.0,243.0,529.145,769.0,890.0,103.0,498.0,511.226,523.0,599.0,424.0,501.0,511.295,520.0,665.0,0.0,3.0,11.9755,25.0,415.0,177.0,169.725,9.16433,13.6834,10.1484,10.0,10.0
+2139,71.338,10.0,4.0,243.0,528.968,768.0,927.0,124.0,498.0,511.363,523.0,606.0,418.0,501.0,511.381,520.0,787.0,0.0,3.0,12.0692,26.0,392.0,180.0,171.976,7.91379,13.922,10.177,10.0,10.0
+2140,71.371,10.0,4.0,243.0,529.728,769.0,840.0,132.0,498.0,511.313,524.0,616.0,440.0,501.0,511.461,521.0,755.0,0.0,3.0,11.9853,25.0,380.0,180.0,171.311,9.77256,13.7781,10.0805,10.0,10.0
+2141,71.405,10.0,4.0,244.0,530.525,770.0,836.0,102.0,498.0,511.193,523.0,618.0,428.0,501.0,511.435,520.0,621.0,0.0,3.0,11.9484,25.0,423.0,180.0,170.818,8.93135,13.86,10.2147,10.0,10.0
+2142,71.438,10.0,4.0,243.0,529.822,770.0,926.0,95.0,499.0,511.451,523.0,609.0,406.0,501.0,511.551,521.0,606.0,0.0,3.0,11.8482,25.0,421.0,180.0,171.54,9.43933,13.6377,10.1099,10.0,10.0
+2143,71.471,10.0,4.0,244.0,530.216,770.0,923.0,111.0,498.0,511.167,523.0,602.0,411.0,501.0,511.56,521.0,696.0,0.0,3.0,11.9265,25.0,404.0,180.0,170.764,9.44894,13.5561,10.0329,10.0,10.0
+2144,71.505,10.0,4.0,244.0,530.465,769.0,923.0,48.0,498.0,511.245,523.0,608.0,424.0,501.0,511.576,521.0,662.0,0.0,3.0,11.9617,25.0,486.0,180.0,170.58,7.95625,13.7996,10.2095,10.0,10.0
+2145,71.538,10.0,4.0,245.0,530.968,770.0,930.0,117.0,499.0,511.44,523.0,612.0,352.0,501.0,511.574,521.0,580.0,0.0,3.0,11.8513,25.0,398.0,180.0,172.791,8.7935,13.7636,10.0854,10.0,10.0
+2146,71.572,10.0,4.0,245.0,531.502,771.0,929.0,54.0,498.0,511.071,523.0,613.0,416.0,501.0,511.452,520.0,585.0,0.0,3.0,11.934,25.0,462.0,180.0,170.338,7.77474,13.8549,10.1633,10.0,10.0
+2147,71.605,10.0,4.0,244.0,529.464,769.0,926.0,106.0,498.0,511.329,523.0,608.0,440.0,501.0,511.431,520.0,648.0,0.0,3.0,11.9047,25.0,411.0,180.0,171.446,10.4702,13.7294,10.0937,10.0,10.0
+2148,71.638,10.0,4.0,244.0,530.524,771.0,930.0,127.0,498.0,511.121,523.0,618.0,437.0,501.0,511.599,521.0,590.0,0.0,3.0,11.9148,25.0,388.0,180.0,169.824,10.7665,13.7828,10.0535,10.0,10.0
+2149,71.672,10.0,4.0,244.0,530.677,770.0,923.0,74.0,499.0,511.409,523.0,616.0,417.0,501.0,511.508,520.0,586.0,0.0,3.0,11.8058,25.0,438.0,180.0,172.182,9.07436,13.8882,10.0797,10.0,10.0
+2150,71.705,10.0,4.0,244.0,530.625,770.0,929.0,84.0,498.0,511.3,523.0,618.0,430.0,501.0,511.385,520.0,580.0,0.0,3.0,11.8461,25.0,435.0,180.0,171.22,10.021,13.7376,9.90296,10.0,10.0
+2151,71.738,10.0,4.0,244.0,531.503,771.0,836.0,119.0,499.0,511.369,523.0,610.0,424.0,501.0,511.562,520.0,583.0,0.0,3.0,11.7961,25.0,398.0,180.0,171.199,7.98445,13.8928,9.99474,10.0,10.0
+2152,71.772,10.0,4.0,246.0,530.924,771.0,915.0,134.0,498.0,511.369,523.0,611.0,428.0,501.0,511.596,521.0,580.0,0.0,3.0,11.9097,26.0,381.0,180.0,171.579,9.29745,13.6378,10.0104,10.0,10.0
+2153,71.805,10.0,4.0,243.0,529.256,769.0,836.0,102.0,498.0,511.232,523.0,606.0,406.0,501.0,511.556,521.0,582.0,0.0,3.0,12.0053,26.0,412.0,180.0,170.475,9.08044,13.8051,10.1096,10.0,10.0
+2154,71.838,10.0,4.0,243.0,530.145,770.0,914.0,96.0,498.0,511.162,523.0,618.0,424.0,501.0,511.503,520.0,586.0,0.0,3.0,11.9862,25.0,421.0,180.0,169.774,7.97087,13.9305,10.1203,10.0,10.0
+2155,71.872,10.0,4.0,244.0,530.382,770.0,931.0,106.0,498.0,511.335,523.0,620.0,424.0,501.0,511.48,520.0,587.0,0.0,3.0,11.9303,25.0,415.0,180.0,171.593,10.034,14.0027,10.1553,10.0,10.0
+2156,71.905,10.0,4.0,245.0,530.962,770.0,928.0,118.0,498.0,511.06,523.0,619.0,434.0,501.0,511.489,520.0,584.0,0.0,3.0,11.9217,25.0,398.0,172.0,169.377,9.1853,13.7761,10.0256,10.0,10.0
+2157,71.939,10.0,4.0,245.0,530.424,770.0,922.0,114.0,498.0,511.305,523.0,614.0,420.0,501.0,511.397,520.0,578.0,0.0,3.0,12.02,26.0,399.0,180.0,171.194,10.1178,13.8822,10.2001,10.0,10.0
+2158,71.972,10.0,4.0,245.0,530.924,771.0,885.0,36.0,498.0,511.268,523.0,609.0,424.0,501.0,511.435,520.0,582.0,0.0,3.0,12.031,26.0,481.0,180.0,170.202,14.4063,13.8401,10.099,10.0,10.0
+2159,72.005,10.0,4.0,244.0,530.677,770.0,930.0,106.0,498.0,511.145,523.0,613.0,436.0,501.0,511.47,520.0,589.0,0.0,3.0,12.0547,26.0,409.0,180.0,169.577,9.46569,13.966,10.0954,10.0,10.0
+2160,72.039,10.0,4.0,244.0,530.456,770.0,923.0,114.0,498.0,511.407,524.0,623.0,438.0,501.0,511.546,521.0,639.0,0.0,3.0,11.9818,25.0,403.0,180.0,171.401,10.7439,13.8807,10.0448,10.0,10.0
+2161,72.072,10.0,4.0,244.0,531.403,771.0,851.0,118.0,498.0,511.203,523.0,621.0,416.0,501.0,511.491,520.0,678.0,0.0,3.0,11.9741,26.0,396.0,180.0,170.535,8.39013,14.0683,10.2448,10.0,10.0
+2162,72.105,10.0,4.0,245.0,530.772,770.0,925.0,100.0,498.0,511.368,524.0,623.0,412.0,501.0,511.643,521.0,652.0,0.0,3.0,11.9946,25.0,415.0,180.0,171.435,9.26571,13.9718,10.2183,10.0,10.0
+2163,72.139,10.0,4.0,244.0,531.152,771.0,874.0,128.0,498.0,511.342,523.0,606.0,434.0,501.0,511.567,520.0,607.0,0.0,3.0,11.8432,25.0,389.0,180.0,171.96,8.48612,13.9121,10.1382,10.0,10.0
+2164,72.172,10.0,4.0,244.0,530.588,770.0,929.0,128.0,498.0,511.272,523.0,614.0,424.0,501.0,511.601,520.0,579.0,0.0,3.0,11.7536,25.0,390.0,180.0,170.243,7.87078,13.6958,10.1266,10.0,10.0
+2165,72.205,10.0,4.0,244.0,530.477,770.0,929.0,122.0,498.0,511.197,523.0,628.0,416.0,501.0,511.499,520.0,578.0,0.0,3.0,11.8126,25.0,391.0,180.0,171.226,10.3285,13.6612,10.0121,10.0,10.0
+2166,72.239,10.0,4.0,244.0,531.013,771.0,930.0,100.0,498.0,511.269,524.0,622.0,420.0,501.0,511.331,520.0,581.0,0.0,3.0,11.9972,26.0,419.0,180.0,170.863,9.52791,13.8979,10.0615,10.0,10.0
+2167,72.272,10.0,4.0,243.0,529.823,770.0,855.0,106.0,498.0,511.189,523.0,603.0,434.0,501.0,511.608,521.0,585.0,0.0,3.0,11.9047,25.0,411.0,180.0,170.382,8.84061,13.9676,10.0953,10.0,10.0
+2168,72.306,10.0,4.0,245.0,530.889,770.0,922.0,118.0,498.0,511.258,523.0,605.0,438.0,501.0,511.372,520.0,576.0,0.0,3.0,11.7733,25.0,397.0,180.0,170.533,8.7056,13.7685,9.89869,10.0,10.0
+2169,72.339,10.0,4.0,244.0,530.374,770.0,927.0,130.0,498.0,511.165,523.0,608.0,418.0,501.0,511.41,520.0,587.0,0.0,3.0,11.4842,25.0,383.0,180.0,169.868,7.77865,13.4059,9.71745,10.0,10.0
+2170,72.372,10.0,4.0,244.0,530.292,770.0,926.0,134.0,499.0,511.29,522.0,604.0,430.0,502.0,511.467,520.0,578.0,0.0,2.0,11.0085,24.0,382.0,180.0,170.269,8.64841,12.9675,9.60336,10.0,10.0
+2171,72.406,10.0,4.0,244.0,530.422,770.0,928.0,125.0,500.0,511.343,523.0,611.0,434.0,502.0,511.573,520.0,575.0,0.0,2.0,11.019,23.0,389.0,180.0,170.532,7.95919,12.8738,9.3891,10.0,10.0
+2172,72.439,10.0,4.0,242.0,528.604,768.0,930.0,142.0,500.0,511.275,523.0,606.0,437.0,502.0,511.501,520.0,602.0,0.0,2.0,10.9405,23.0,374.0,180.0,169.533,11.2187,12.7744,9.28713,10.0,10.0
+2173,72.472,10.0,4.0,242.0,529.484,770.0,849.0,150.0,499.0,511.157,522.0,610.0,434.0,502.0,511.623,520.0,576.0,0.0,2.0,10.8828,23.0,365.0,180.0,169.182,9.44178,12.6065,9.2293,10.0,10.0
+2174,72.506,10.0,4.0,244.0,529.563,769.0,929.0,129.0,500.0,511.217,522.0,607.0,440.0,502.0,511.561,520.0,581.0,0.0,3.0,10.9964,23.0,388.0,180.0,168.585,8.39005,12.7703,9.40066,10.0,10.0
+2175,72.539,10.0,4.0,244.0,530.158,770.0,916.0,128.0,499.0,511.016,522.0,606.0,430.0,502.0,511.471,520.0,581.0,0.0,2.0,11.0592,23.0,387.0,171.0,167.538,10.1905,12.8229,9.31325,10.0,10.0
+2176,72.573,10.0,4.0,243.0,530.478,770.0,927.0,143.0,499.0,511.247,522.0,605.0,434.0,502.0,511.478,520.0,589.0,0.0,2.0,11.0049,23.0,370.0,180.0,169.329,9.02728,12.8827,9.3652,10.0,10.0
+2177,72.606,10.0,4.0,244.0,530.158,770.0,914.0,143.0,500.0,511.229,522.0,627.0,425.0,502.0,511.456,520.0,582.0,0.0,2.0,10.954,23.0,370.0,180.0,169.197,9.99582,12.6302,9.27075,10.0,10.0
+2178,72.639,10.0,4.0,243.0,529.794,770.0,927.0,130.0,500.0,511.143,522.0,605.0,434.0,502.0,511.302,520.0,574.0,0.0,2.0,10.9613,23.0,386.0,180.0,168.101,8.9473,12.6768,9.26093,10.0,10.0
+2179,72.673,10.0,4.0,243.0,529.983,770.0,922.0,138.0,499.0,511.218,522.0,601.0,431.0,502.0,511.42,520.0,579.0,0.0,2.0,11.0407,23.0,378.0,180.0,169.527,7.97978,12.9749,9.38097,10.0,10.0
+2180,72.706,10.0,4.0,244.0,530.078,770.0,927.0,193.0,500.0,511.247,522.0,601.0,444.0,502.0,511.516,520.0,584.0,0.0,2.0,10.9126,23.0,320.0,180.0,169.792,9.14894,12.549,9.15216,10.0,10.0
+2181,72.739,10.0,4.0,245.0,530.889,770.0,929.0,151.0,500.0,511.317,523.0,613.0,440.0,502.0,511.621,520.0,578.0,0.0,2.0,10.9254,23.0,362.0,180.0,170.626,8.30647,12.722,9.25597,10.0,10.0
+2182,72.773,10.0,4.0,244.0,529.207,768.0,923.0,132.0,500.0,511.271,523.0,603.0,438.0,502.0,511.518,520.0,577.0,0.0,2.0,11.0301,23.0,383.0,180.0,169.471,9.02926,12.8052,9.27898,10.0,10.0
+2183,72.806,10.0,4.0,245.0,530.334,770.0,848.0,118.0,499.0,511.192,523.0,608.0,418.0,502.0,511.424,520.0,658.0,0.0,2.0,11.1109,24.0,396.0,180.0,169.583,11.5935,12.8081,9.18011,10.0,10.0
+2184,72.839,10.0,4.0,245.0,530.629,770.0,928.0,146.0,499.0,511.189,523.0,603.0,422.0,502.0,511.458,520.0,586.0,0.0,2.0,11.0926,24.0,371.0,180.0,168.767,8.80808,12.986,9.48752,10.0,10.0
+2185,72.873,10.0,4.0,245.0,530.437,770.0,928.0,129.0,499.0,510.958,522.0,597.0,417.0,502.0,511.489,520.0,586.0,0.0,2.0,11.0307,23.0,384.0,169.0,167.95,9.71034,12.7733,9.39066,10.0,10.0
+2186,72.906,10.0,4.0,246.0,530.973,770.0,927.0,132.0,500.0,511.197,522.0,602.0,433.0,502.0,511.396,520.0,583.0,0.0,2.0,10.9161,23.0,385.0,180.0,168.291,8.19461,12.7871,9.32317,10.0,10.0
+2187,72.94,10.0,4.0,244.0,529.413,769.0,924.0,137.0,499.0,511.137,522.0,595.0,425.0,502.0,511.428,520.0,580.0,0.0,2.0,10.9767,23.0,378.0,174.0,168.255,9.30649,12.7788,9.2175,10.0,10.0
+2188,72.973,10.0,4.0,244.0,530.292,770.0,919.0,151.0,500.0,511.234,522.0,596.0,443.0,502.0,511.517,520.0,582.0,0.0,2.0,10.9497,23.0,365.0,180.0,169.452,8.72652,12.7826,9.25996,10.0,10.0
+2189,73.006,10.0,4.0,244.0,530.102,770.0,924.0,145.0,500.0,511.208,522.0,604.0,431.0,502.0,511.469,520.0,576.0,0.0,2.0,10.8712,23.0,368.0,180.0,168.72,8.07193,12.7753,9.23696,10.0,10.0
+2190,73.04,10.0,4.0,244.0,530.52,770.0,923.0,150.0,499.0,511.27,522.0,618.0,440.0,502.0,511.396,520.0,581.0,0.0,2.0,10.9808,23.0,368.0,180.0,170.137,8.80225,12.7296,9.22518,10.0,10.0
+2191,73.073,10.0,4.0,243.0,530.459,770.0,928.0,100.0,500.0,511.163,522.0,617.0,424.0,502.0,511.517,520.0,594.0,0.0,2.0,10.9349,23.0,420.0,180.0,169.752,8.20319,12.7176,9.37285,10.0,10.0
+2192,73.106,10.0,4.0,243.0,528.624,768.0,926.0,154.0,500.0,511.336,523.0,616.0,436.0,502.0,511.524,520.0,578.0,0.0,2.0,10.9219,23.0,360.0,180.0,169.893,9.12492,12.6638,9.37489,10.0,10.0
+2193,73.14,10.0,4.0,245.0,531.232,770.0,923.0,134.0,499.0,511.211,523.0,608.0,430.0,502.0,511.417,520.0,580.0,0.0,2.0,11.043,23.0,379.0,180.0,168.99,8.70516,12.7521,9.24918,10.0,10.0
+2194,73.173,10.0,4.0,244.0,530.626,770.0,923.0,134.0,500.0,511.297,523.0,617.0,430.0,502.0,511.505,520.0,584.0,0.0,2.0,10.9336,23.0,382.0,180.0,169.339,7.97053,12.941,9.36734,10.0,10.0
+2195,73.206,10.0,4.0,245.0,531.393,771.0,846.0,130.0,499.0,511.081,522.0,595.0,434.0,502.0,511.488,520.0,580.0,0.0,2.0,10.938,23.0,386.0,180.0,169.137,8.75951,12.7489,9.28758,10.0,10.0
+2196,73.24,10.0,4.0,245.0,531.453,771.0,926.0,140.0,499.0,511.325,523.0,611.0,432.0,502.0,511.419,520.0,582.0,0.0,2.0,11.0574,23.0,373.0,180.0,170.866,7.99617,12.7967,9.28272,10.0,10.0
+2197,73.273,10.0,4.0,242.0,528.957,768.0,838.0,150.0,500.0,511.324,522.0,601.0,432.0,501.0,511.355,520.0,692.0,0.0,2.0,11.0279,23.0,380.0,180.0,169.783,12.0451,12.7378,9.23745,10.0,10.0
+2198,73.307,10.0,4.0,244.0,530.047,770.0,928.0,160.0,500.0,511.233,522.0,616.0,436.0,502.0,511.293,520.0,722.0,0.0,2.0,10.9812,23.0,359.0,180.0,169.112,10.4251,12.482,9.17221,10.0,10.0
+2199,73.34,10.0,4.0,244.0,530.294,770.0,869.0,101.0,499.0,511.171,523.0,596.0,424.0,502.0,511.485,520.0,745.0,0.0,2.0,11.086,24.0,417.0,180.0,169.446,8.31051,12.8561,9.2963,10.0,10.0
+2200,73.373,10.0,4.0,244.0,530.065,770.0,928.0,137.0,499.0,511.247,523.0,610.0,436.0,502.0,511.447,520.0,762.0,0.0,2.0,11.0748,23.0,379.0,180.0,170.158,9.51305,12.8483,9.364,10.0,10.0
+2201,73.407,10.0,4.0,243.0,530.094,770.0,881.0,144.0,500.0,511.249,522.0,597.0,430.0,502.0,511.4,520.0,741.0,0.0,2.0,10.9314,23.0,372.0,180.0,169.955,8.38864,12.7386,9.35478,10.0,10.0
+2202,73.44,10.0,4.0,244.0,530.814,770.0,928.0,124.0,499.0,511.145,522.0,606.0,438.0,502.0,511.376,520.0,741.0,0.0,2.0,10.9895,23.0,392.0,180.0,169.305,9.8935,12.6828,9.17184,10.0,10.0
+2203,73.473,10.0,4.0,244.0,530.65,770.0,929.0,157.0,499.0,511.089,522.0,605.0,430.0,502.0,511.399,520.0,728.0,0.0,2.0,10.8609,23.0,360.0,180.0,168.583,10.6237,12.6427,9.09723,10.0,10.0
+2204,73.507,10.0,4.0,244.0,531.204,770.0,931.0,150.0,500.0,511.262,523.0,609.0,440.0,502.0,511.407,520.0,726.0,0.0,2.0,11.0181,24.0,366.0,180.0,169.841,8.60844,12.9185,9.21549,10.0,10.0
+2205,73.54,10.0,4.0,244.0,531.128,770.0,840.0,156.0,500.0,511.146,522.0,609.0,434.0,502.0,511.419,520.0,628.0,0.0,2.0,10.9442,23.0,359.0,180.0,168.435,10.4817,12.6497,9.15866,10.0,10.0
+2206,73.574,10.0,4.0,245.0,531.809,770.0,854.0,118.0,500.0,511.144,522.0,607.0,434.0,502.0,511.428,520.0,603.0,0.0,2.0,10.9957,23.0,400.0,180.0,169.256,9.22105,12.7966,9.34066,10.0,10.0
+2207,73.607,10.0,4.0,244.0,530.34,770.0,928.0,116.0,499.0,511.183,522.0,606.0,434.0,502.0,511.322,520.0,749.0,0.0,2.0,11.023,23.0,399.0,180.0,169.794,9.32473,12.8124,9.2345,10.0,10.0
+2208,73.64,10.0,4.0,243.0,530.25,770.0,921.0,154.0,499.0,511.109,522.0,608.0,440.0,502.0,511.376,520.0,745.0,0.0,2.0,11.0445,24.0,360.0,180.0,169.381,10.7153,12.708,9.18917,10.0,10.0
+2209,73.674,10.0,4.0,245.0,530.912,770.0,907.0,150.0,500.0,511.205,522.0,613.0,438.0,502.0,511.387,520.0,689.0,0.0,2.0,10.8784,23.0,382.0,180.0,168.722,8.97955,12.6977,9.32737,10.0,10.0
+2210,73.707,10.0,4.0,244.0,530.797,770.0,926.0,125.0,500.0,511.34,523.0,617.0,434.0,502.0,511.394,520.0,713.0,0.0,2.0,10.921,23.0,392.0,180.0,170.213,9.59289,12.5903,9.14566,10.0,10.0
+2211,73.74,10.0,4.0,243.0,530.862,770.0,925.0,134.0,499.0,511.061,522.0,606.0,434.0,502.0,511.409,520.0,722.0,0.0,2.0,10.9678,23.0,383.0,178.0,167.832,8.16437,12.7426,9.25678,10.0,10.0
+2212,73.774,10.0,4.0,243.0,529.437,769.0,844.0,153.0,500.0,511.251,522.0,604.0,438.0,502.0,511.445,520.0,746.0,0.0,2.0,10.8722,23.0,362.0,180.0,169.355,9.66793,12.622,9.16244,10.0,10.0
+2213,73.807,10.0,4.0,243.0,529.881,769.0,926.0,128.0,500.0,511.225,522.0,611.0,435.0,502.0,511.312,520.0,725.0,0.0,2.0,10.9485,23.0,385.0,180.0,169.584,8.53332,12.7361,9.15481,10.0,10.0
+2214,73.84,10.0,4.0,243.0,528.907,768.0,896.0,119.0,500.0,511.183,522.0,618.0,438.0,502.0,511.396,520.0,574.0,0.0,2.0,10.8264,23.0,397.0,180.0,168.821,8.22074,12.6697,9.21596,10.0,10.0
+2215,73.874,10.0,4.0,243.0,528.96,769.0,848.0,133.0,499.0,511.046,522.0,612.0,436.0,502.0,511.418,520.0,576.0,0.0,2.0,10.9388,23.0,383.0,171.0,167.988,10.6045,12.7678,9.13185,10.0,10.0
+2216,73.907,10.0,4.0,243.0,530.008,769.0,928.0,156.0,499.0,511.202,523.0,603.0,434.0,502.0,511.286,520.0,575.0,0.0,2.0,11.1491,24.0,361.0,180.0,168.938,9.40783,13.0375,9.42138,10.0,10.0
+2217,73.941,10.0,4.0,242.0,528.708,769.0,929.0,134.0,499.0,511.115,522.0,596.0,428.0,502.0,511.307,520.0,577.0,0.0,2.0,11.0789,24.0,378.0,180.0,169.015,8.83154,12.9762,9.35706,10.0,10.0
+2218,73.974,10.0,4.0,243.0,529.508,770.0,922.0,128.0,499.0,511.275,523.0,606.0,438.0,501.0,511.249,520.0,576.0,0.0,2.0,11.0796,24.0,386.0,180.0,169.867,9.98098,12.923,9.27661,10.0,10.0
+2219,74.007,10.0,4.0,243.0,529.338,769.0,924.0,125.0,500.0,511.24,523.0,603.0,446.0,502.0,511.345,520.0,583.0,0.0,2.0,10.9703,23.0,390.0,180.0,169.308,8.24937,12.7949,9.33663,10.0,10.0
+2220,74.041,10.0,4.0,244.0,530.232,770.0,922.0,142.0,499.0,511.233,523.0,606.0,446.0,502.0,511.237,520.0,586.0,0.0,2.0,11.0994,23.0,372.0,180.0,169.111,8.90303,12.7982,9.16564,10.0,10.0
+2221,74.074,10.0,4.0,244.0,530.944,770.0,930.0,133.0,500.0,511.304,523.0,597.0,431.0,502.0,511.311,520.0,606.0,0.0,2.0,11.0263,23.0,379.0,180.0,170.234,7.90183,12.9199,9.36918,10.0,10.0
+2222,74.107,10.0,4.0,244.0,530.076,770.0,930.0,126.0,500.0,511.339,523.0,613.0,437.0,502.0,511.339,520.0,572.0,0.0,2.0,10.9906,23.0,391.0,180.0,169.769,11.8584,12.7358,9.22578,10.0,10.0
+2223,74.141,10.0,4.0,244.0,530.409,770.0,892.0,105.0,499.0,511.151,523.0,650.0,434.0,502.0,511.245,520.0,657.0,0.0,2.0,11.1709,24.0,414.0,180.0,168.939,10.8716,12.9151,9.14091,10.0,10.0
+2224,74.174,10.0,4.0,244.0,530.554,770.0,930.0,138.0,500.0,511.289,523.0,597.0,437.0,502.0,511.475,520.0,664.0,0.0,2.0,11.0885,24.0,378.0,180.0,169.93,8.39553,13.227,9.34277,10.0,10.0
+2225,74.207,10.0,4.0,244.0,530.91,770.0,926.0,120.0,499.0,511.077,522.0,601.0,438.0,502.0,511.4,520.0,638.0,0.0,2.0,11.0661,23.0,396.0,180.0,169.3,9.41772,12.9323,9.23937,10.0,10.0
+2226,74.241,10.0,4.0,244.0,531.454,771.0,849.0,124.0,499.0,511.228,522.0,619.0,423.0,502.0,511.37,520.0,805.0,0.0,2.0,10.9765,23.0,392.0,180.0,169.855,8.32871,12.8782,9.27565,10.0,10.0
+2227,74.274,10.0,4.0,245.0,530.012,770.0,922.0,138.0,499.0,511.198,523.0,608.0,436.0,502.0,511.214,520.0,676.0,0.0,2.0,11.0439,24.0,378.0,180.0,168.678,8.75264,12.8592,9.18137,10.0,10.0
+2228,74.308,10.0,4.0,243.0,530.307,770.0,927.0,139.0,499.0,511.265,523.0,601.0,442.0,502.0,511.229,520.0,630.0,0.0,2.0,10.959,23.0,378.0,180.0,169.499,9.39668,12.7457,9.14523,10.0,10.0
+2229,74.341,10.0,4.0,244.0,530.696,770.0,922.0,124.0,500.0,511.194,522.0,596.0,400.0,502.0,511.21,520.0,585.0,0.0,2.0,10.9272,23.0,388.0,180.0,168.8,7.88915,12.6888,9.25769,10.0,10.0
+2230,74.374,10.0,4.0,244.0,530.93,771.0,924.0,124.0,500.0,511.346,523.0,617.0,430.0,502.0,511.332,520.0,576.0,0.0,2.0,10.8697,23.0,393.0,180.0,170.442,8.9479,12.6126,9.22558,10.0,10.0
+2231,74.408,10.0,4.0,244.0,531.162,771.0,881.0,130.0,500.0,511.224,522.0,601.0,432.0,502.0,511.242,520.0,582.0,0.0,2.0,10.8879,23.0,383.0,180.0,170.043,8.16642,12.7882,9.30055,10.0,10.0
+2232,74.441,10.0,4.0,243.0,529.339,769.0,896.0,140.0,500.0,511.3,523.0,603.0,434.0,502.0,511.328,520.0,578.0,0.0,2.0,10.9518,23.0,372.0,180.0,170.604,8.8878,12.6231,9.2443,10.0,10.0
+2233,74.474,10.0,4.0,243.0,530.101,770.0,926.0,128.0,499.0,511.103,523.0,592.0,430.0,501.0,511.347,520.0,590.0,0.0,2.0,11.1046,24.0,385.0,180.0,168.947,10.9489,12.7215,9.26524,10.0,10.0
+2234,74.508,10.0,4.0,243.0,530.326,770.0,866.0,110.0,500.0,511.261,523.0,620.0,432.0,502.0,511.307,520.0,574.0,0.0,2.0,10.9928,23.0,404.0,180.0,169.382,8.15466,13.0207,9.44467,10.0,10.0
+2235,74.541,10.0,4.0,243.0,530.38,770.0,928.0,128.0,499.0,511.041,522.0,605.0,438.0,502.0,511.256,520.0,574.0,0.0,2.0,11.0574,23.0,388.0,172.0,168.294,9.55154,12.9279,9.27841,10.0,10.0
+2236,74.575,10.0,4.0,244.0,530.812,771.0,928.0,156.0,499.0,511.055,522.0,601.0,439.0,502.0,511.272,520.0,577.0,0.0,2.0,11.0333,23.0,359.0,171.0,167.704,8.59751,12.994,9.29689,10.0,10.0
+2237,74.608,10.0,4.0,243.0,528.879,769.0,924.0,150.0,499.0,511.068,522.0,615.0,434.0,502.0,511.2,520.0,577.0,0.0,3.0,11.0767,23.0,362.0,168.0,168.186,9.14451,12.8386,9.24359,10.0,10.0
+2238,74.641,10.0,4.0,243.0,529.454,769.0,880.0,123.0,499.0,511.166,523.0,611.0,434.0,502.0,511.257,520.0,582.0,0.0,2.0,11.1139,24.0,392.0,180.0,168.859,9.69665,12.8978,9.35917,10.0,10.0
+2239,74.675,10.0,4.0,243.0,529.409,769.0,915.0,144.0,499.0,511.221,523.0,616.0,440.0,502.0,511.217,520.0,581.0,0.0,2.0,11.0863,24.0,374.0,180.0,168.923,7.84058,13.0862,9.47762,10.0,10.0
+2240,74.708,10.0,4.0,243.0,529.986,770.0,928.0,144.0,499.0,511.134,522.0,599.0,445.0,502.0,511.34,520.0,583.0,0.0,2.0,11.0298,24.0,370.0,180.0,168.285,9.84831,12.7691,9.26331,10.0,10.0
+2241,74.741,10.0,4.0,243.0,530.609,770.0,924.0,138.0,500.0,511.346,522.0,600.0,424.0,502.0,511.436,520.0,576.0,0.0,2.0,10.6605,23.0,375.0,180.0,169.224,9.05219,12.5845,9.21204,10.0,10.0
+2242,74.775,10.0,4.0,243.0,529.388,769.0,923.0,138.0,501.0,511.131,522.0,596.0,423.0,504.0,511.431,519.0,569.0,0.0,2.0,9.6245,21.0,374.0,180.0,166.233,9.05276,11.7995,8.48734,10.0,10.0
+2243,74.808,10.0,4.0,243.0,529.739,770.0,929.0,222.0,502.0,511.079,521.0,591.0,455.0,504.0,511.415,518.0,567.0,0.0,1.0,8.73571,18.0,291.0,180.0,164.568,8.77646,10.7083,7.64399,10.0,10.0
+2244,74.841,10.0,4.0,243.0,529.464,769.0,873.0,225.0,502.0,511.101,520.0,582.0,456.0,504.0,511.489,518.0,563.0,0.0,1.0,8.45627,17.0,290.0,180.0,165.76,8.06842,10.0551,7.2267,10.0,10.0
+2245,74.875,10.0,4.0,244.0,530.066,770.0,922.0,226.0,502.0,510.952,520.0,601.0,438.0,504.0,511.492,518.0,570.0,0.0,1.0,8.47206,17.0,287.0,180.0,164.072,9.13485,9.7912,7.07724,10.0,10.0
+2246,74.908,10.0,4.0,244.0,530.928,771.0,923.0,188.0,502.0,511.009,520.0,589.0,432.0,504.0,511.465,518.0,613.0,0.0,1.0,8.50906,17.0,324.0,180.0,164.241,8.10392,9.8104,7.17401,10.0,10.0
+2247,74.942,10.0,4.0,243.0,528.95,768.0,923.0,208.0,502.0,511.128,520.0,583.0,459.0,504.0,511.356,518.0,561.0,0.0,1.0,8.58378,17.0,306.0,180.0,165.069,10.2142,9.92914,7.21521,10.0,10.0
+2248,74.975,10.0,4.0,243.0,529.224,769.0,929.0,218.0,502.0,511.123,520.0,585.0,456.0,504.0,511.472,518.0,563.0,0.0,1.0,8.51238,17.0,295.0,180.0,165.372,10.633,9.93801,7.19118,10.0,10.0
+2249,75.008,10.0,4.0,243.0,529.244,769.0,923.0,228.0,502.0,511.062,520.0,581.0,450.0,504.0,511.429,518.0,570.0,0.0,1.0,8.5701,17.0,284.0,180.0,164.892,8.81154,9.95338,7.27797,10.0,10.0
+2250,75.042,10.0,4.0,244.0,529.69,770.0,928.0,204.0,502.0,511.109,520.0,584.0,452.0,504.0,511.42,518.0,561.0,0.0,1.0,8.58781,17.0,309.0,180.0,165.697,9.39169,9.88238,7.17928,10.0,10.0
+2251,75.075,10.0,4.0,244.0,529.972,770.0,928.0,177.0,502.0,511.075,521.0,582.0,449.0,504.0,511.404,518.0,648.0,0.0,1.0,8.66523,17.0,338.0,180.0,164.996,7.90933,10.0513,7.242,10.0,10.0
+2252,75.108,10.0,4.0,243.0,528.888,768.0,900.0,214.0,502.0,511.139,521.0,591.0,456.0,504.0,511.518,518.0,611.0,0.0,1.0,8.67913,17.0,301.0,180.0,165.97,8.72707,10.1156,7.2668,10.0,10.0
+2253,75.142,10.0,4.0,243.0,529.624,770.0,923.0,210.0,502.0,511.079,521.0,588.0,448.0,504.0,511.442,518.0,563.0,0.0,1.0,8.69816,18.0,302.0,180.0,165.054,9.37795,10.0488,7.2942,10.0,10.0
+2254,75.175,10.0,4.0,243.0,529.511,769.0,925.0,208.0,502.0,511.155,521.0,589.0,452.0,504.0,511.524,518.0,572.0,0.0,1.0,8.76047,18.0,306.0,180.0,166.467,8.38482,10.259,7.36643,10.0,10.0
+2255,75.208,10.0,4.0,244.0,529.819,770.0,857.0,204.0,502.0,510.972,520.0,578.0,455.0,504.0,511.484,518.0,567.0,0.0,1.0,8.69148,17.0,308.0,180.0,164.43,9.51806,10.1544,7.25774,10.0,10.0
+2256,75.242,10.0,4.0,244.0,530.415,770.0,927.0,226.0,502.0,511.061,521.0,591.0,456.0,504.0,511.505,518.0,640.0,0.0,1.0,8.68418,17.0,288.0,180.0,165.474,8.43803,10.1936,7.29065,10.0,10.0
+2257,75.275,10.0,4.0,243.0,528.43,768.0,850.0,222.0,502.0,511.089,521.0,581.0,446.0,504.0,511.357,518.0,618.0,0.0,1.0,8.60406,17.0,290.0,180.0,164.741,9.7165,10.0731,7.28397,10.0,10.0
+2258,75.309,10.0,4.0,244.0,529.339,769.0,920.0,194.0,502.0,511.1,521.0,683.0,456.0,504.0,511.364,518.0,647.0,0.0,1.0,8.92721,18.0,320.0,180.0,165.562,12.8632,10.1557,7.37699,10.0,10.0
+2259,75.342,10.0,4.0,243.0,529.515,769.0,848.0,177.0,501.0,510.957,522.0,714.0,449.0,504.0,511.295,518.0,678.0,0.0,2.0,9.50697,21.0,336.0,167.0,165.183,9.11847,10.6685,7.75568,10.0,10.0
+2260,75.375,10.0,4.0,244.0,530.06,770.0,927.0,177.0,501.0,511.088,522.0,792.0,435.0,504.0,511.422,518.0,686.0,0.0,2.0,9.68556,21.0,337.0,180.0,166.891,10.0091,11.1928,7.97785,10.0,10.0
+2261,75.409,10.0,4.0,244.0,531.134,771.0,861.0,164.0,501.0,511.252,522.0,640.0,448.0,503.0,511.331,519.0,750.0,0.0,2.0,10.0834,22.0,350.0,180.0,166.961,8.3063,11.6006,8.35924,10.0,10.0
+2262,75.442,10.0,4.0,244.0,529.681,769.0,843.0,143.0,500.0,511.083,522.0,726.0,440.0,503.0,511.388,519.0,723.0,0.0,2.0,10.1825,22.0,371.0,172.0,166.582,8.92899,11.74,8.54232,10.0,10.0
+2263,75.475,10.0,4.0,244.0,530.462,770.0,920.0,156.0,500.0,511.163,522.0,610.0,448.0,503.0,511.405,519.0,747.0,0.0,2.0,10.1895,22.0,356.0,177.0,166.976,9.50122,11.8126,8.51729,10.0,10.0
+2264,75.509,10.0,4.0,244.0,530.767,770.0,926.0,170.0,500.0,511.121,522.0,589.0,448.0,503.0,511.43,519.0,765.0,0.0,2.0,10.0951,22.0,344.0,180.0,167.741,7.93104,11.9243,8.52456,10.0,10.0
+2265,75.542,10.0,4.0,245.0,530.704,770.0,844.0,158.0,500.0,510.993,522.0,612.0,438.0,503.0,511.336,519.0,760.0,0.0,2.0,10.1074,22.0,354.0,165.0,165.793,9.31001,11.7137,8.47138,10.0,10.0
+2266,75.576,10.0,4.0,245.0,530.909,770.0,923.0,151.0,501.0,511.222,522.0,599.0,444.0,503.0,511.368,519.0,768.0,0.0,2.0,10.0625,22.0,363.0,180.0,166.917,8.67881,11.5517,8.39936,10.0,10.0
+2267,75.609,10.0,4.0,243.0,529.949,769.0,893.0,194.0,500.0,510.956,522.0,763.0,450.0,503.0,511.3,519.0,693.0,0.0,2.0,10.1522,22.0,321.0,165.0,165.519,8.74417,11.7683,8.45656,10.0,10.0
+2268,75.642,10.0,4.0,243.0,529.439,769.0,927.0,176.0,501.0,511.221,522.0,707.0,445.0,503.0,511.387,519.0,753.0,0.0,2.0,10.1253,22.0,337.0,171.0,166.518,9.27291,11.8033,8.4939,10.0,10.0
+2269,75.676,10.0,4.0,244.0,530.157,770.0,926.0,188.0,501.0,511.215,522.0,645.0,444.0,503.0,511.305,519.0,750.0,0.0,2.0,10.196,22.0,325.0,180.0,167.306,7.93246,11.862,8.53701,10.0,10.0
+2270,75.709,10.0,4.0,244.0,530.267,770.0,905.0,156.0,500.0,511.07,522.0,599.0,436.0,503.0,511.314,519.0,763.0,0.0,2.0,10.1639,22.0,360.0,168.0,166.007,9.34284,11.8897,8.55061,10.0,10.0
+2271,75.742,10.0,4.0,244.0,530.175,769.0,924.0,128.0,500.0,511.121,522.0,726.0,444.0,503.0,511.33,519.0,736.0,0.0,2.0,10.4023,22.0,388.0,174.0,167.367,8.47347,12.0314,8.59402,10.0,10.0
+2272,75.776,10.0,4.0,243.0,528.116,766.0,921.0,156.0,500.0,511.348,523.0,694.0,440.0,502.0,511.456,520.0,756.0,0.0,2.0,11.0272,23.0,358.0,180.0,169.308,9.37899,12.6007,8.95881,10.0,10.0
+2273,75.809,10.0,4.0,243.0,529.254,769.0,926.0,124.0,499.0,511.247,523.0,750.0,440.0,502.0,511.2,520.0,714.0,0.0,3.0,11.5052,24.0,389.0,180.0,170.236,9.63843,13.191,9.33087,10.0,10.0
+2274,75.842,10.0,4.0,244.0,529.273,769.0,928.0,90.0,498.0,511.247,523.0,904.0,436.0,501.0,511.251,520.0,670.0,0.0,3.0,11.9027,25.0,425.0,171.0,169.602,8.20098,13.6849,9.93084,10.0,10.0
+2275,75.876,10.0,4.0,243.0,528.86,768.0,930.0,110.0,498.0,511.147,523.0,920.0,425.0,501.0,511.245,520.0,616.0,0.0,3.0,11.8231,25.0,415.0,167.0,168.601,9.04513,13.6869,10.0523,10.0,10.0
+2276,75.909,10.0,4.0,243.0,529.06,768.0,923.0,126.0,498.0,511.395,523.0,826.0,434.0,502.0,511.387,520.0,728.0,0.0,3.0,11.7868,25.0,390.0,180.0,171.611,8.14442,13.6565,9.95646,10.0,10.0
+2277,75.943,10.0,4.0,243.0,527.984,766.0,930.0,98.0,498.0,511.106,523.0,755.0,436.0,501.0,511.129,520.0,762.0,0.0,3.0,11.8549,25.0,418.0,165.0,168.348,8.77589,13.5027,9.73723,10.0,10.0
+2278,75.976,10.0,4.0,242.0,529.044,768.0,929.0,86.0,498.0,511.167,523.0,835.0,432.0,501.0,511.181,520.0,743.0,0.0,3.0,11.8728,25.0,430.0,167.0,168.659,8.4761,13.8943,9.86968,10.0,10.0
+2279,76.009,10.0,4.0,243.0,529.166,768.0,849.0,120.0,498.0,511.244,523.0,906.0,436.0,501.0,511.227,520.0,626.0,0.0,3.0,11.8717,25.0,409.0,175.0,169.607,8.19866,13.8841,9.95929,10.0,10.0
+2280,76.043,10.0,4.0,243.0,529.2,768.0,848.0,132.0,498.0,511.214,523.0,794.0,436.0,501.0,511.313,520.0,642.0,0.0,3.0,11.821,25.0,383.0,169.0,169.464,9.95655,13.6715,9.83578,10.0,10.0
+2281,76.076,10.0,4.0,243.0,529.986,769.0,837.0,118.0,498.0,511.17,523.0,730.0,432.0,501.0,511.202,520.0,656.0,0.0,3.0,11.8174,25.0,395.0,174.0,169.615,8.84669,13.8067,9.87538,10.0,10.0
+2282,76.109,10.0,4.0,243.0,528.346,768.0,846.0,90.0,498.0,511.259,523.0,703.0,436.0,501.0,511.145,520.0,654.0,0.0,3.0,11.8351,25.0,426.0,180.0,170.782,8.82752,13.6565,9.80456,10.0,10.0
+2283,76.143,10.0,4.0,244.0,529.982,769.0,924.0,86.0,498.0,511.184,523.0,827.0,432.0,502.0,511.28,520.0,607.0,0.0,3.0,11.8984,25.0,432.0,165.0,168.632,11.4186,13.646,9.75234,10.0,10.0
+2284,76.176,10.0,4.0,244.0,529.987,769.0,926.0,132.0,498.0,511.035,523.0,622.0,430.0,502.0,511.361,520.0,673.0,0.0,3.0,11.9346,25.0,384.0,165.0,168.535,8.95661,13.8643,9.93807,10.0,10.0
+2285,76.209,10.0,4.0,245.0,530.258,770.0,851.0,113.0,498.0,511.146,523.0,608.0,417.0,501.0,511.14,520.0,760.0,0.0,3.0,12.0152,26.0,400.0,165.0,168.727,9.78265,13.9829,9.99517,10.0,10.0
+2286,76.243,10.0,4.0,245.0,531.183,770.0,930.0,80.0,498.0,511.313,524.0,618.0,432.0,501.0,511.188,520.0,583.0,0.0,3.0,12.1143,26.0,434.0,173.0,170.751,8.11476,14.0955,10.2575,10.0,10.0
+2287,76.276,10.0,4.0,244.0,529.897,769.0,923.0,74.0,497.0,510.943,524.0,618.0,432.0,501.0,511.13,520.0,589.0,0.0,3.0,12.6143,27.0,439.0,161.0,167.792,8.97135,14.3702,10.4124,10.0,10.0
+2288,76.31,10.0,4.0,245.0,530.334,769.0,913.0,76.0,497.0,511.226,525.0,613.0,430.0,501.0,511.204,520.0,591.0,0.0,3.0,12.5068,27.0,437.0,171.0,170.499,9.54578,14.5767,10.5777,10.0,10.0
+2289,76.343,10.0,4.0,244.0,530.389,769.0,926.0,111.0,497.0,511.064,524.0,623.0,432.0,501.0,511.242,520.0,594.0,0.0,3.0,12.6372,27.0,404.0,167.0,169.939,7.8652,14.8614,10.7863,10.0,10.0
+2290,76.376,10.0,4.0,244.0,530.218,770.0,846.0,86.0,497.0,511.227,525.0,619.0,420.0,500.0,511.204,520.0,583.0,0.0,3.0,12.6094,27.0,431.0,168.0,170.039,8.93869,14.4385,10.5478,10.0,10.0
+2291,76.41,10.0,4.0,243.0,530.352,770.0,926.0,82.0,497.0,511.009,524.0,624.0,420.0,501.0,511.213,520.0,588.0,0.0,3.0,12.6249,27.0,435.0,165.0,169.197,8.20085,14.813,10.7155,10.0,10.0
+2292,76.443,10.0,4.0,243.0,529.11,769.0,861.0,90.0,497.0,511.344,525.0,629.0,425.0,501.0,511.286,520.0,588.0,0.0,3.0,12.7005,27.0,429.0,180.0,172.357,8.63333,14.9047,10.5818,10.0,10.0
+2293,76.476,10.0,4.0,244.0,530.091,770.0,842.0,71.0,497.0,511.179,525.0,645.0,422.0,501.0,511.116,520.0,593.0,0.0,3.0,12.6255,27.0,442.0,169.0,170.249,8.54968,14.7279,10.4817,10.0,10.0
+2294,76.51,10.0,4.0,244.0,530.173,770.0,924.0,62.0,497.0,511.075,525.0,642.0,423.0,501.0,511.207,520.0,594.0,0.0,3.0,12.8113,27.0,454.0,165.0,169.255,7.92551,15.1213,10.7141,10.0,10.0
+2295,76.543,10.0,4.0,244.0,529.927,769.0,853.0,87.0,497.0,511.196,525.0,610.0,399.0,500.0,511.132,520.0,583.0,0.0,3.0,12.6576,27.0,428.0,168.0,170.308,8.90501,14.8756,10.5608,10.0,10.0
+2296,76.577,10.0,4.0,244.0,529.622,769.0,930.0,90.0,497.0,511.072,525.0,608.0,430.0,500.0,511.183,520.0,588.0,0.0,3.0,12.7523,27.0,426.0,165.0,170.08,8.1089,14.9075,10.6861,10.0,10.0
+2297,76.61,10.0,4.0,245.0,530.051,769.0,842.0,85.0,497.0,511.085,524.0,618.0,423.0,500.0,511.05,520.0,594.0,0.0,3.0,12.6642,27.0,429.0,166.0,170.153,8.74424,14.8544,10.6188,10.0,10.0
+2298,76.643,10.0,4.0,243.0,529.947,770.0,930.0,43.0,497.0,510.994,524.0,628.0,394.0,501.0,511.236,520.0,587.0,0.0,3.0,12.6422,27.0,469.0,166.0,170.255,11.7272,14.6423,10.4977,10.0,10.0
+2299,76.677,10.0,4.0,243.0,529.365,769.0,924.0,77.0,497.0,511.218,525.0,612.0,412.0,500.0,511.049,520.0,593.0,0.0,3.0,12.8713,27.0,437.0,168.0,171.098,8.23566,15.04,10.8143,10.0,10.0
+2300,76.71,10.0,4.0,243.0,529.548,770.0,922.0,86.0,497.0,511.184,525.0,610.0,426.0,500.0,511.275,521.0,589.0,0.0,3.0,13.02,28.0,430.0,169.0,171.188,9.18884,15.1159,10.8829,10.0,10.0
+2301,76.743,10.0,4.0,244.0,530.223,770.0,924.0,57.0,496.0,511.09,526.0,627.0,424.0,500.0,510.931,521.0,589.0,0.0,3.0,13.5512,29.0,455.0,165.0,170.193,8.19226,15.6002,11.176,10.0,10.0
+2302,76.777,10.0,4.0,243.0,529.581,769.0,920.0,49.0,496.0,511.046,525.0,624.0,416.0,500.0,511.147,521.0,591.0,0.0,3.0,13.3359,28.0,466.0,168.0,171.253,8.54389,15.725,11.2482,10.0,10.0
+2303,76.81,10.0,4.0,244.0,531.032,771.0,929.0,48.0,496.0,511.167,526.0,621.0,421.0,500.0,511.038,521.0,592.0,0.0,3.0,13.5803,29.0,466.0,167.0,171.072,8.87512,15.6633,11.3029,10.0,10.0
+2304,76.843,10.0,4.0,244.0,530.734,771.0,930.0,58.0,496.0,511.305,526.0,629.0,421.0,500.0,511.165,521.0,587.0,0.0,3.0,13.5636,29.0,461.0,171.0,172.126,8.49834,15.9158,11.4232,10.0,10.0
+2305,76.877,10.0,4.0,245.0,530.858,771.0,928.0,58.0,496.0,511.057,526.0,628.0,408.0,500.0,511.215,522.0,610.0,0.0,4.0,13.71,29.0,458.0,165.0,170.534,10.063,15.7897,11.4611,10.0,10.0
+2306,76.91,10.0,4.0,245.0,531.282,771.0,927.0,64.0,496.0,511.09,526.0,633.0,417.0,500.0,511.212,522.0,604.0,0.0,3.0,13.7229,29.0,456.0,168.0,171.189,8.70496,16.0464,11.5759,10.0,10.0
+2307,76.944,10.0,4.0,244.0,529.439,769.0,922.0,31.0,496.0,510.996,526.0,624.0,426.0,500.0,510.985,521.0,619.0,0.0,3.0,13.6219,29.0,482.0,165.0,170.833,9.2837,15.867,11.4532,10.0,10.0
+2308,76.977,10.0,4.0,243.0,529.176,770.0,922.0,55.0,496.0,511.128,526.0,626.0,408.0,500.0,511.081,521.0,639.0,0.0,3.0,13.8134,29.0,461.0,165.0,170.885,9.9416,16.1431,11.505,10.0,10.0
+2309,77.01,10.0,4.0,243.0,529.344,770.0,927.0,44.0,496.0,511.006,526.0,654.0,408.0,500.0,511.015,522.0,603.0,0.0,4.0,13.9761,30.0,471.0,165.0,171.319,8.79599,16.3636,11.6136,10.0,10.0
+2310,77.044,10.0,4.0,243.0,529.194,770.0,927.0,10.0,496.0,511.13,526.0,624.0,416.0,500.0,511.125,522.0,782.0,0.0,4.0,13.9682,30.0,506.0,169.0,172.452,9.27391,16.1337,11.5831,10.0,10.0
+2311,77.077,10.0,4.0,243.0,529.829,770.0,924.0,33.0,496.0,511.199,526.0,624.0,396.0,500.0,511.209,522.0,658.0,0.0,3.0,13.9729,30.0,481.0,170.0,172.095,7.88747,16.4854,11.8538,10.0,10.0
+2312,77.11,10.0,4.0,243.0,528.661,769.0,917.0,58.0,496.0,511.06,526.0,624.0,418.0,500.0,511.099,522.0,594.0,0.0,4.0,13.9276,29.0,457.0,168.0,171.521,9.6487,16.3067,11.6294,10.0,10.0
+2313,77.144,10.0,4.0,244.0,529.694,770.0,838.0,37.0,496.0,511.257,526.0,645.0,421.0,500.0,511.137,522.0,592.0,0.0,4.0,13.9053,29.0,477.0,169.0,172.298,11.3408,16.1231,11.5075,10.0,10.0
+2314,77.177,10.0,4.0,243.0,529.204,769.0,924.0,26.0,496.0,511.173,526.0,631.0,416.0,499.0,510.988,522.0,593.0,0.0,3.0,14.0192,30.0,489.0,169.0,172.112,8.12535,16.407,11.7823,10.0,10.0
+2315,77.21,10.0,4.0,243.0,529.82,770.0,928.0,48.0,496.0,511.269,526.0,641.0,408.0,499.0,511.067,522.0,603.0,0.0,4.0,14.1381,30.0,467.0,167.0,171.963,10.3632,16.4058,11.9036,10.0,10.0
+2316,77.244,10.0,4.0,244.0,531.16,771.0,922.0,68.0,496.0,511.09,526.0,632.0,416.0,500.0,511.173,522.0,597.0,0.0,4.0,14.1375,30.0,451.0,165.0,171.585,9.13366,16.4923,11.8628,10.0,10.0
+2317,77.277,10.0,4.0,242.0,528.538,769.0,929.0,26.0,496.0,511.046,526.0,631.0,392.0,500.0,510.921,522.0,734.0,0.0,4.0,13.9487,29.0,487.0,163.0,170.666,9.35973,16.4165,11.8088,10.0,10.0
+2318,77.311,10.0,4.0,243.0,529.18,770.0,891.0,16.0,496.0,511.04,526.0,718.0,408.0,500.0,511.127,522.0,589.0,0.0,4.0,13.9648,29.0,497.0,164.0,170.663,9.82004,16.2001,11.6546,10.0,10.0
+2319,77.344,10.0,4.0,244.0,529.406,770.0,929.0,48.0,496.0,511.2,526.0,660.0,412.0,500.0,511.151,522.0,860.0,0.0,4.0,14.0396,30.0,469.0,166.0,171.377,7.90284,16.2808,11.6928,10.0,10.0
+2320,77.377,10.0,4.0,244.0,529.689,770.0,839.0,52.0,496.0,511.103,526.0,642.0,416.0,500.0,511.205,522.0,696.0,0.0,4.0,14.4995,31.0,463.0,165.0,170.78,8.91147,16.7293,12.0161,10.0,10.0
+2321,77.411,10.0,4.0,244.0,530.453,770.0,846.0,6.0,495.0,511.477,527.0,906.0,413.0,499.0,511.052,522.0,786.0,0.0,4.0,15.012,32.0,507.0,180.0,174.664,8.14039,17.4368,12.3646,10.0,10.0
+2322,77.444,10.0,4.0,245.0,529.579,770.0,842.0,4.0,494.0,511.42,528.0,694.0,408.0,498.0,510.977,522.0,902.0,0.0,4.0,15.3764,33.0,518.0,180.0,174.869,12.3224,17.7561,12.8085,10.0,10.0
+2323,77.477,10.0,4.0,245.0,531.237,771.0,927.0,4.0,495.0,511.128,527.0,651.0,398.0,499.0,511.155,522.0,776.0,0.0,4.0,15.1577,32.0,511.0,170.0,173.128,12.7181,17.4774,12.7048,10.0,10.0
+2324,77.511,10.0,4.0,245.0,530.561,770.0,857.0,28.0,493.0,511.034,528.0,651.0,398.0,499.0,511.223,523.0,906.0,0.0,4.0,15.3395,33.0,495.0,170.0,172.937,8.75662,17.9636,12.7809,10.0,10.0
+2325,77.544,10.0,4.0,246.0,530.841,771.0,911.0,4.0,494.0,511.295,528.0,770.0,402.0,498.0,511.231,523.0,820.0,0.0,4.0,15.3904,33.0,510.0,172.0,173.612,9.41345,17.9956,12.8902,10.0,10.0
+2326,77.578,10.0,4.0,246.0,531.267,771.0,922.0,4.0,493.0,511.131,527.0,657.0,404.0,499.0,511.087,522.0,875.0,0.0,4.0,15.2891,33.0,518.0,166.0,172.402,7.84827,18.1442,12.9813,10.0,10.0
+2327,77.611,10.0,4.0,245.0,529.744,769.0,923.0,4.0,493.0,510.988,527.0,654.0,406.0,499.0,511.272,523.0,873.0,0.0,4.0,15.338,33.0,514.0,165.0,172.039,9.73067,17.8982,12.7491,10.0,10.0
+2328,77.644,10.0,4.0,244.0,530.39,770.0,909.0,6.0,494.0,511.235,528.0,644.0,408.0,499.0,511.207,523.0,904.0,0.0,4.0,15.3469,33.0,510.0,171.0,173.331,10.8601,17.8717,12.8424,10.0,10.0
+2329,77.678,10.0,4.0,244.0,529.904,769.0,878.0,13.0,494.0,511.349,528.0,644.0,388.0,499.0,511.289,523.0,915.0,0.0,4.0,15.5077,33.0,501.0,172.0,174.116,8.13053,18.2228,13.0809,10.0,10.0
+2330,77.711,10.0,4.0,245.0,530.257,770.0,924.0,4.0,494.0,511.263,528.0,627.0,392.0,498.0,511.132,523.0,896.0,0.0,4.0,15.4898,33.0,513.0,180.0,174.182,9.08695,18.065,13.063,10.0,10.0
+2331,77.744,10.0,4.0,245.0,530.946,771.0,907.0,4.0,494.0,511.194,528.0,642.0,394.0,499.0,511.224,523.0,871.0,0.0,4.0,15.3956,33.0,513.0,170.0,172.991,8.08924,18.0451,13.1647,10.0,10.0
+2332,77.778,10.0,4.0,245.0,530.564,770.0,846.0,4.0,494.0,511.373,528.0,652.0,404.0,498.0,511.114,523.0,865.0,0.0,4.0,15.4793,33.0,513.0,180.0,175.329,9.10053,18.0327,12.9031,10.0,10.0
+2333,77.811,10.0,4.0,244.0,530.224,770.0,916.0,4.0,494.0,511.493,529.0,755.0,394.0,498.0,511.202,523.0,836.0,0.0,4.0,15.7101,34.0,517.0,180.0,174.481,11.1245,18.2998,13.109,10.0,10.0
+2334,77.844,10.0,4.0,244.0,530.129,770.0,846.0,13.0,493.0,511.293,528.0,930.0,414.0,498.0,511.337,523.0,737.0,0.0,4.0,15.4045,33.0,501.0,180.0,174.58,8.44067,18.3124,13.1747,10.0,10.0
+2335,77.878,10.0,4.0,244.0,530.277,770.0,870.0,5.0,494.0,511.307,528.0,849.0,416.0,499.0,511.267,523.0,804.0,0.0,4.0,15.4362,33.0,511.0,170.0,172.996,9.49081,17.9043,12.8272,10.0,10.0
+2336,77.911,10.0,4.0,245.0,530.877,770.0,922.0,5.0,493.0,511.302,528.0,675.0,420.0,498.0,511.126,523.0,889.0,0.0,4.0,15.6217,33.0,511.0,174.0,174.438,8.37838,18.3106,13.0807,10.0,10.0
+2337,77.945,10.0,4.0,244.0,529.594,769.0,838.0,4.0,494.0,511.288,528.0,736.0,398.0,499.0,511.36,523.0,885.0,0.0,4.0,15.4138,33.0,508.0,170.0,172.713,8.85422,18.1679,13.0297,10.0,10.0
+2338,77.978,10.0,4.0,244.0,530.183,770.0,917.0,4.0,492.0,511.075,528.0,1019.0,413.0,498.0,511.026,523.0,646.0,0.0,4.0,15.6064,33.0,524.0,169.0,173.087,9.58827,18.2263,12.9419,10.0,10.0
+2339,78.011,10.0,4.0,245.0,530.501,770.0,922.0,4.0,493.0,511.385,528.0,761.0,410.0,498.0,511.268,523.0,855.0,0.0,4.0,15.5854,33.0,516.0,175.0,173.973,7.98897,18.4863,13.1751,10.0,10.0
+2340,78.045,10.0,4.0,244.0,530.76,770.0,915.0,13.0,494.0,511.486,528.0,648.0,408.0,498.0,511.247,523.0,836.0,0.0,4.0,15.5213,33.0,502.0,180.0,176.137,9.84607,18.3284,13.0191,10.0,10.0
+2341,78.078,10.0,4.0,244.0,530.757,770.0,856.0,10.0,495.0,511.787,529.0,761.0,383.0,498.0,511.151,523.0,860.0,0.0,4.0,15.7249,33.0,504.0,180.0,176.503,9.03886,18.4647,13.1732,10.0,10.0
+2342,78.111,10.0,4.0,246.0,531.131,770.0,848.0,4.0,493.0,511.457,529.0,953.0,398.0,498.0,511.355,523.0,769.0,0.0,4.0,15.8551,34.0,516.0,180.0,174.768,8.93354,18.485,13.1722,10.0,10.0
+2343,78.145,10.0,4.0,244.0,530.882,770.0,860.0,4.0,492.0,511.396,529.0,783.0,413.0,498.0,511.404,524.0,864.0,0.0,4.0,15.9065,34.0,512.0,177.0,174.754,8.90418,18.5419,13.1896,10.0,10.0
+2344,78.178,10.0,4.0,244.0,530.155,769.0,887.0,16.0,494.0,511.574,530.0,649.0,403.0,498.0,511.259,523.0,925.0,0.0,4.0,15.9972,34.0,506.0,180.0,176.531,8.48819,18.6011,13.3165,10.0,10.0
+2345,78.211,10.0,4.0,245.0,530.169,770.0,851.0,4.0,493.0,511.542,529.0,662.0,381.0,498.0,511.348,524.0,935.0,0.0,4.0,15.9433,34.0,511.0,180.0,175.442,9.73126,18.6578,13.3132,10.0,10.0
+2346,78.245,10.0,4.0,245.0,531.016,770.0,909.0,4.0,492.0,511.313,529.0,981.0,402.0,498.0,511.27,523.0,792.0,0.0,4.0,15.8747,34.0,524.0,180.0,174.711,8.41824,18.7353,13.4415,10.0,10.0
+2347,78.278,10.0,4.0,244.0,529.027,768.0,905.0,4.0,493.0,511.518,529.0,1011.0,406.0,498.0,511.436,524.0,688.0,0.0,4.0,15.9784,34.0,518.0,180.0,175.005,10.5924,18.5073,13.3375,10.0,10.0
+2348,78.312,10.0,4.0,243.0,529.875,770.0,897.0,4.0,491.0,511.129,529.0,681.0,402.0,498.0,511.283,524.0,917.0,0.0,4.0,16.0976,34.0,512.0,170.0,173.546,13.6997,18.5865,13.1455,10.0,10.0
+2349,78.345,10.0,4.0,244.0,529.898,770.0,930.0,4.0,492.0,511.306,529.0,638.0,394.0,498.0,511.335,524.0,900.0,0.0,4.0,15.9781,34.0,512.0,174.0,174.324,9.01255,18.8106,13.4344,10.0,10.0
+2350,78.378,10.0,4.0,244.0,529.547,769.0,841.0,4.0,493.0,511.486,529.0,690.0,395.0,498.0,511.257,523.0,865.0,0.0,4.0,15.9481,34.0,519.0,180.0,176.082,9.61221,18.6431,13.4318,10.0,10.0
+2351,78.412,10.0,4.0,244.0,529.607,769.0,927.0,4.0,493.0,511.362,529.0,990.0,402.0,498.0,511.304,524.0,698.0,0.0,4.0,15.9923,34.0,514.0,180.0,175.215,7.98439,18.7274,13.4159,10.0,10.0
+2352,78.445,10.0,4.0,243.0,528.733,768.0,863.0,4.0,492.0,511.423,529.0,796.0,410.0,498.0,511.265,524.0,610.0,0.0,4.0,15.9558,34.0,512.0,180.0,175.857,8.47325,18.752,13.421,10.0,10.0
+2353,78.478,10.0,4.0,243.0,529.095,768.0,837.0,4.0,493.0,511.567,529.0,721.0,401.0,498.0,511.399,524.0,656.0,0.0,4.0,15.8762,34.0,511.0,180.0,176.443,8.61257,18.4684,13.1987,10.0,10.0
+2354,78.512,10.0,4.0,243.0,529.399,769.0,927.0,4.0,493.0,511.667,530.0,662.0,402.0,498.0,511.138,523.0,607.0,0.0,4.0,16.0078,34.0,516.0,180.0,176.301,8.10602,18.7191,13.5035,10.0,10.0
+2355,78.545,10.0,4.0,244.0,530.251,770.0,928.0,4.0,491.0,511.147,529.0,629.0,414.0,498.0,511.253,523.0,618.0,0.0,4.0,16.008,34.0,512.0,172.0,174.366,9.71769,18.608,13.4779,10.0,10.0
+2356,78.579,10.0,4.0,244.0,531.147,771.0,859.0,4.0,492.0,511.124,528.0,646.0,408.0,498.0,511.231,523.0,610.0,0.0,4.0,15.8104,34.0,511.0,171.0,172.991,8.54871,18.5928,13.3733,10.0,10.0
+2357,78.612,10.0,4.0,244.0,530.022,770.0,930.0,4.0,492.0,511.32,529.0,655.0,414.0,498.0,511.258,523.0,606.0,0.0,4.0,15.9018,34.0,513.0,177.0,174.511,8.72841,18.6938,13.2529,10.0,10.0
+2358,78.645,10.0,4.0,243.0,530.185,770.0,924.0,4.0,492.0,511.437,529.0,675.0,408.0,498.0,511.143,523.0,606.0,0.0,4.0,15.9402,34.0,517.0,180.0,175.599,12.8616,18.7075,13.2691,10.0,10.0
+2359,78.679,10.0,4.0,243.0,529.949,770.0,924.0,4.0,493.0,511.352,529.0,648.0,396.0,498.0,511.366,523.0,612.0,0.0,4.0,15.9265,34.0,517.0,180.0,175.816,9.67817,18.6961,13.3887,10.0,10.0
+2360,78.712,10.0,4.0,244.0,530.267,770.0,929.0,4.0,492.0,511.582,530.0,642.0,406.0,498.0,511.076,523.0,605.0,0.0,4.0,16.1555,35.0,512.0,180.0,176.402,10.2717,18.7871,13.3891,10.0,10.0
+2361,78.745,10.0,4.0,243.0,530.45,770.0,894.0,4.0,493.0,511.647,529.0,651.0,374.0,498.0,511.208,523.0,616.0,0.0,4.0,15.8159,34.0,515.0,180.0,176.371,7.85072,19.1188,13.5652,10.0,10.0
+2362,78.779,10.0,4.0,245.0,531.016,771.0,909.0,4.0,492.0,511.338,529.0,662.0,402.0,498.0,511.214,523.0,614.0,0.0,4.0,15.9506,34.0,514.0,180.0,175.382,8.94589,18.8799,13.3468,10.0,10.0
+2363,78.812,10.0,4.0,244.0,531.801,771.0,924.0,36.0,492.0,511.506,530.0,647.0,398.0,498.0,511.257,524.0,610.0,0.0,4.0,16.1291,34.0,480.0,180.0,176.463,8.25494,18.769,13.5161,10.0,10.0
+2364,78.845,10.0,4.0,246.0,531.797,771.0,929.0,4.0,493.0,511.56,529.0,651.0,406.0,498.0,511.319,524.0,612.0,0.0,4.0,15.9699,34.0,515.0,180.0,175.729,8.07125,18.9172,13.6927,10.0,10.0
+2365,78.879,10.0,4.0,244.0,531.407,771.0,930.0,4.0,493.0,511.413,529.0,637.0,400.0,498.0,511.383,524.0,618.0,0.0,4.0,15.9546,34.0,513.0,180.0,175.492,10.4127,18.696,13.4614,10.0,10.0
+2366,78.912,10.0,4.0,245.0,531.784,771.0,857.0,4.0,493.0,511.397,529.0,642.0,414.0,498.0,511.222,524.0,610.0,0.0,4.0,15.9168,34.0,516.0,180.0,174.906,9.37307,18.8974,13.6235,10.0,10.0
+2367,78.946,10.0,4.0,243.0,529.317,770.0,930.0,4.0,493.0,511.461,529.0,654.0,407.0,498.0,511.317,523.0,647.0,0.0,4.0,15.8507,34.0,513.0,180.0,176.236,9.07183,18.5836,13.3647,10.0,10.0
+2368,78.979,10.0,4.0,243.0,529.83,770.0,870.0,6.0,492.0,511.417,529.0,859.0,412.0,498.0,511.429,524.0,846.0,0.0,4.0,15.9731,34.0,509.0,178.0,174.691,9.53063,18.7538,13.2849,10.0,10.0
+2369,79.012,10.0,4.0,243.0,529.842,770.0,915.0,4.0,493.0,511.463,529.0,829.0,378.0,498.0,511.363,523.0,845.0,0.0,4.0,15.8593,34.0,512.0,180.0,175.396,7.79906,18.7096,13.4703,10.0,10.0
+2370,79.046,10.0,4.0,243.0,529.252,769.0,928.0,4.0,493.0,511.477,529.0,1003.0,406.0,498.0,511.196,523.0,736.0,0.0,4.0,15.8419,34.0,531.0,180.0,175.485,8.96953,18.6953,13.4144,10.0,10.0
+2371,79.079,10.0,4.0,243.0,529.331,769.0,928.0,4.0,493.0,511.44,529.0,997.0,405.0,498.0,511.318,523.0,746.0,0.0,4.0,15.7371,33.0,532.0,180.0,175.625,8.16254,18.4955,13.2478,10.0,10.0
+2372,79.112,10.0,4.0,243.0,527.67,766.0,838.0,4.0,494.0,511.66,529.0,937.0,410.0,498.0,511.232,523.0,661.0,0.0,4.0,15.6232,34.0,518.0,180.0,177.264,9.12043,18.1539,13.0988,10.0,10.0
+2373,79.146,10.0,4.0,242.0,527.923,768.0,926.0,4.0,494.0,511.567,529.0,791.0,396.0,498.0,511.29,523.0,614.0,0.0,4.0,15.7307,34.0,514.0,180.0,175.376,10.0768,18.128,13.0613,10.0,10.0
+2374,79.179,10.0,4.0,243.0,528.983,769.0,851.0,4.0,493.0,511.619,529.0,667.0,416.0,498.0,511.383,523.0,620.0,0.0,4.0,15.8347,34.0,513.0,180.0,175.856,7.98954,18.5887,13.4318,10.0,10.0
+2375,79.212,10.0,4.0,243.0,529.664,770.0,930.0,4.0,492.0,511.348,529.0,642.0,407.0,498.0,511.227,524.0,607.0,0.0,4.0,16.0338,34.0,511.0,180.0,174.564,8.55007,18.6813,13.3834,10.0,10.0
+2376,79.246,10.0,4.0,244.0,529.8,770.0,853.0,4.0,492.0,511.241,528.0,663.0,412.0,498.0,511.015,523.0,604.0,0.0,4.0,15.9363,34.0,513.0,180.0,174.937,7.81067,18.8875,13.5964,10.0,10.0
+2377,79.279,10.0,4.0,243.0,529.413,770.0,928.0,4.0,493.0,511.496,529.0,644.0,405.0,498.0,511.197,523.0,606.0,0.0,4.0,15.8761,34.0,509.0,180.0,175.255,8.3414,18.6823,13.4146,10.0,10.0
+2378,79.313,10.0,4.0,242.0,528.596,769.0,922.0,4.0,493.0,511.316,528.0,636.0,403.0,498.0,511.166,523.0,606.0,0.0,4.0,15.8443,34.0,516.0,180.0,175.443,10.0424,18.6166,13.3494,10.0,10.0
+2379,79.346,10.0,4.0,242.0,528.69,769.0,856.0,4.0,493.0,511.431,529.0,642.0,398.0,498.0,511.237,523.0,605.0,0.0,4.0,15.8717,34.0,517.0,180.0,175.467,8.19958,18.459,13.2397,10.0,10.0
+2380,79.379,10.0,4.0,243.0,529.063,769.0,845.0,4.0,493.0,511.659,529.0,675.0,399.0,498.0,511.102,523.0,609.0,0.0,4.0,16.0171,34.0,515.0,180.0,176.068,8.94971,18.7465,13.3331,10.0,10.0
+2381,79.413,10.0,4.0,243.0,528.978,769.0,924.0,4.0,492.0,511.424,529.0,935.0,403.0,498.0,511.309,524.0,606.0,0.0,4.0,16.1092,34.0,510.0,180.0,175.17,7.89452,19.1411,13.6316,10.0,10.0
+2382,79.446,10.0,4.0,243.0,530.17,770.0,928.0,4.0,493.0,511.444,529.0,874.0,404.0,498.0,510.997,523.0,692.0,0.0,4.0,15.9198,34.0,516.0,180.0,175.924,8.61879,18.7083,13.4672,10.0,10.0
+2383,79.479,10.0,4.0,244.0,530.819,771.0,917.0,4.0,492.0,511.578,530.0,876.0,387.0,498.0,511.258,524.0,595.0,0.0,4.0,15.961,34.0,512.0,180.0,176.672,9.63799,18.5922,13.4532,10.0,10.0
+2384,79.513,10.0,4.0,244.0,530.41,770.0,929.0,18.0,493.0,511.523,529.0,761.0,404.0,499.0,511.461,524.0,819.0,0.0,4.0,15.7662,34.0,495.0,180.0,175.202,9.37145,18.6198,13.4055,10.0,10.0
+2385,79.546,10.0,4.0,244.0,530.667,771.0,862.0,4.0,493.0,511.383,528.0,965.0,390.0,498.0,511.291,524.0,670.0,0.0,4.0,15.7164,33.0,512.0,180.0,175.304,10.198,18.2789,13.1503,10.0,10.0
+2386,79.58,10.0,4.0,244.0,531.002,771.0,924.0,4.0,491.0,511.165,529.0,646.0,359.0,498.0,511.25,524.0,612.0,0.0,4.0,15.9731,34.0,517.0,172.0,173.576,8.04096,18.492,13.4153,10.0,10.0
+2387,79.613,10.0,4.0,243.0,529.154,769.0,923.0,4.0,493.0,511.507,529.0,1014.0,255.0,498.0,511.436,524.0,617.0,0.0,4.0,15.8258,34.0,543.0,180.0,175.169,8.51886,18.5175,13.4147,10.0,10.0
+2388,79.646,10.0,4.0,244.0,530.121,770.0,871.0,4.0,493.0,511.636,529.0,1019.0,397.0,498.0,511.085,523.0,611.0,0.0,4.0,15.8206,34.0,520.0,180.0,175.267,8.68103,18.3631,13.3228,10.0,10.0
+2389,79.68,10.0,4.0,244.0,530.243,770.0,932.0,10.0,492.0,511.381,529.0,1011.0,402.0,498.0,511.298,523.0,658.0,0.0,4.0,15.8139,34.0,519.0,180.0,176.457,7.85924,18.7118,13.1907,10.0,10.0
+2390,79.713,10.0,4.0,244.0,530.41,770.0,923.0,4.0,494.0,511.655,529.0,1019.0,405.0,498.0,511.151,523.0,604.0,0.0,4.0,15.9226,34.0,518.0,180.0,175.794,9.6386,18.5202,13.2847,10.0,10.0
+2391,79.746,10.0,4.0,243.0,530.397,770.0,917.0,4.0,493.0,511.819,529.0,1019.0,410.0,498.0,511.228,524.0,616.0,0.0,4.0,15.9686,34.0,513.0,180.0,178.141,8.88607,18.633,13.5072,10.0,10.0
+2392,79.78,10.0,4.0,243.0,529.647,770.0,848.0,34.0,494.0,511.801,530.0,1001.0,306.0,498.0,511.164,523.0,621.0,0.0,4.0,15.9369,34.0,524.0,180.0,177.228,8.99445,18.6296,13.4567,10.0,10.0
+2393,79.813,10.0,4.0,244.0,530.464,771.0,927.0,4.0,492.0,511.484,530.0,1019.0,357.0,498.0,511.183,523.0,614.0,0.0,4.0,16.1023,34.0,530.0,180.0,175.293,8.68604,18.7011,13.3184,10.0,10.0
+2394,79.846,10.0,4.0,245.0,530.734,771.0,862.0,4.0,493.0,511.509,529.0,1013.0,328.0,498.0,511.099,523.0,610.0,0.0,4.0,15.9852,34.0,529.0,180.0,175.68,8.18184,18.8111,13.5408,10.0,10.0
+2395,79.88,10.0,4.0,244.0,529.977,770.0,927.0,4.0,493.0,511.442,528.0,832.0,204.0,498.0,511.396,524.0,614.0,0.0,4.0,15.8826,34.0,514.0,180.0,175.635,9.3467,18.5802,13.5403,10.0,10.0
+2396,79.913,10.0,4.0,244.0,529.586,769.0,927.0,4.0,493.0,511.488,529.0,986.0,272.0,498.0,511.19,523.0,605.0,0.0,4.0,15.9117,34.0,519.0,180.0,175.873,8.30527,18.6346,13.476,10.0,10.0
+2397,79.947,10.0,4.0,245.0,530.551,770.0,854.0,12.0,492.0,511.363,529.0,820.0,162.0,498.0,511.206,524.0,611.0,0.0,4.0,15.8752,34.0,500.0,180.0,175.359,8.64439,18.4962,13.2936,10.0,10.0
+2398,79.98,10.0,4.0,244.0,530.943,771.0,866.0,4.0,493.0,511.575,530.0,903.0,188.0,498.0,511.149,523.0,606.0,0.0,4.0,16.0622,34.0,520.0,180.0,175.171,11.4085,18.8052,13.4409,10.0,10.0
+2399,80.013,10.0,4.0,244.0,530.711,771.0,923.0,4.0,493.0,511.482,529.0,1019.0,328.0,498.0,511.278,523.0,608.0,0.0,4.0,15.8331,34.0,539.0,180.0,175.286,9.10061,18.9092,13.4944,10.0,10.0
+2400,80.047,10.0,4.0,245.0,530.951,770.0,917.0,4.0,494.0,511.646,529.0,668.0,291.0,498.0,511.068,523.0,638.0,0.0,4.0,15.7252,33.0,510.0,180.0,176.369,9.74469,18.5524,13.165,10.0,10.0
+2401,80.08,10.0,4.0,246.0,531.717,771.0,924.0,15.0,493.0,511.589,529.0,641.0,402.0,498.0,511.071,523.0,610.0,0.0,4.0,15.8415,34.0,499.0,180.0,176.32,7.83897,18.5913,13.4336,10.0,10.0
+2402,80.113,10.0,4.0,246.0,531.52,771.0,875.0,4.0,494.0,511.757,529.0,936.0,384.0,498.0,511.225,523.0,626.0,0.0,4.0,15.7191,33.0,514.0,180.0,177.399,8.31237,18.4574,13.3594,10.0,10.0
+2403,80.147,10.0,4.0,244.0,530.92,771.0,851.0,4.0,493.0,511.558,529.0,858.0,414.0,498.0,511.238,523.0,622.0,0.0,4.0,15.8149,34.0,514.0,180.0,176.65,8.40785,18.6257,13.3005,10.0,10.0
+2404,80.18,10.0,4.0,245.0,531.155,771.0,859.0,4.0,492.0,511.445,529.0,779.0,394.0,498.0,511.07,523.0,612.0,0.0,4.0,15.8354,34.0,521.0,180.0,175.682,8.1634,18.6757,13.2989,10.0,10.0
+2405,80.213,10.0,4.0,245.0,531.085,770.0,928.0,4.0,494.0,511.667,530.0,645.0,402.0,498.0,511.316,523.0,610.0,0.0,4.0,15.7578,34.0,511.0,180.0,176.617,9.6996,18.6419,13.1584,10.0,10.0
+2406,80.247,10.0,4.0,244.0,531.625,771.0,924.0,4.0,493.0,511.439,529.0,647.0,412.0,498.0,511.109,523.0,602.0,0.0,4.0,15.8247,34.0,512.0,176.0,174.434,8.53686,18.5615,13.4564,10.0,10.0
+2407,80.28,10.0,4.0,245.0,530.378,770.0,930.0,4.0,492.0,511.324,528.0,644.0,404.0,498.0,511.218,523.0,609.0,0.0,4.0,15.8631,34.0,513.0,180.0,175.066,9.26848,18.5028,13.3726,10.0,10.0
+2408,80.314,10.0,4.0,244.0,530.443,770.0,929.0,12.0,494.0,511.645,529.0,646.0,404.0,498.0,511.254,523.0,613.0,0.0,4.0,15.8007,34.0,506.0,180.0,174.811,9.4059,18.629,13.3113,10.0,10.0
+2409,80.347,10.0,4.0,244.0,529.87,769.0,927.0,4.0,492.0,511.247,529.0,649.0,398.0,498.0,511.174,524.0,612.0,0.0,4.0,16.0737,34.0,513.0,180.0,175.176,9.21727,18.6911,13.3552,10.0,10.0
+2410,80.38,10.0,4.0,243.0,529.232,769.0,892.0,4.0,493.0,511.406,529.0,656.0,412.0,498.0,510.856,523.0,613.0,0.0,4.0,15.8496,34.0,515.0,177.0,174.379,10.5624,18.576,13.4645,10.0,10.0
+2411,80.414,10.0,4.0,243.0,529.678,770.0,847.0,4.0,492.0,511.405,529.0,672.0,403.0,498.0,511.066,523.0,597.0,0.0,4.0,16.1228,34.0,516.0,180.0,175.76,8.65396,18.4483,13.4829,10.0,10.0
+2412,80.447,10.0,4.0,243.0,528.763,768.0,925.0,14.0,493.0,511.479,530.0,663.0,407.0,498.0,511.158,523.0,603.0,0.0,4.0,15.9226,34.0,499.0,180.0,175.538,9.35817,18.6611,13.4942,10.0,10.0
+2413,80.48,10.0,4.0,243.0,529.062,768.0,920.0,4.0,493.0,511.691,530.0,642.0,410.0,498.0,511.067,523.0,611.0,0.0,4.0,16.1312,34.0,509.0,180.0,177.364,9.32857,18.8641,13.4725,10.0,10.0
+2414,80.514,10.0,4.0,243.0,529.132,768.0,862.0,4.0,492.0,511.444,530.0,644.0,408.0,498.0,511.115,523.0,640.0,0.0,4.0,15.9608,34.0,516.0,180.0,174.339,7.94197,18.9325,13.6289,10.0,10.0
+2415,80.547,10.0,4.0,244.0,529.846,769.0,929.0,4.0,493.0,511.506,529.0,646.0,404.0,498.0,511.2,523.0,606.0,0.0,4.0,15.931,34.0,513.0,180.0,176.318,9.27526,18.5164,13.2997,10.0,10.0
+2416,80.581,10.0,4.0,244.0,530.548,770.0,924.0,4.0,492.0,511.481,530.0,643.0,402.0,498.0,511.344,524.0,604.0,0.0,4.0,16.0187,34.0,511.0,180.0,175.506,8.4018,18.613,13.335,10.0,10.0
+2417,80.614,10.0,4.0,244.0,529.69,770.0,929.0,12.0,491.0,511.283,529.0,642.0,394.0,498.0,511.206,524.0,607.0,0.0,4.0,16.0453,34.0,502.0,180.0,174.966,8.76007,18.77,13.4577,10.0,10.0
+2418,80.647,10.0,4.0,245.0,529.816,769.0,930.0,6.0,492.0,511.306,529.0,650.0,404.0,498.0,511.212,524.0,610.0,0.0,4.0,16.0357,34.0,507.0,180.0,175.405,9.71929,18.6525,13.5449,10.0,10.0
+2419,80.681,10.0,4.0,244.0,529.957,769.0,930.0,4.0,492.0,511.521,529.0,744.0,404.0,498.0,511.161,523.0,617.0,0.0,4.0,15.9436,34.0,513.0,180.0,175.966,8.16224,18.7387,13.4739,10.0,10.0
+2420,80.714,10.0,4.0,244.0,530.269,770.0,923.0,4.0,492.0,511.445,530.0,641.0,402.0,498.0,511.181,523.0,614.0,0.0,4.0,15.9645,34.0,516.0,180.0,175.323,8.83992,18.8844,13.2802,10.0,10.0
+2421,80.747,10.0,4.0,245.0,530.879,770.0,923.0,4.0,492.0,511.33,529.0,649.0,408.0,498.0,511.188,523.0,604.0,0.0,4.0,15.9679,34.0,509.0,180.0,174.956,7.82093,19.0825,13.2452,10.0,10.0
+2422,80.781,10.0,4.0,245.0,530.672,770.0,898.0,4.0,493.0,511.569,530.0,641.0,406.0,498.0,511.345,524.0,604.0,0.0,4.0,16.0172,34.0,515.0,180.0,175.997,8.72279,18.7814,13.2536,10.0,10.0
+2423,80.814,10.0,4.0,245.0,531.154,770.0,929.0,4.0,492.0,511.439,529.0,636.0,404.0,498.0,511.231,523.0,611.0,0.0,4.0,15.9534,34.0,517.0,180.0,175.341,9.77181,18.7086,13.368,10.0,10.0
+2424,80.847,10.0,4.0,246.0,531.132,770.0,928.0,14.0,493.0,511.515,530.0,642.0,398.0,498.0,511.205,523.0,623.0,0.0,4.0,15.9989,34.0,502.0,180.0,174.964,7.99052,18.8276,13.4173,10.0,10.0
+2425,80.881,10.0,4.0,244.0,530.702,770.0,916.0,4.0,492.0,511.494,530.0,655.0,386.0,498.0,511.185,523.0,629.0,0.0,4.0,15.9769,34.0,509.0,180.0,175.502,8.64287,18.7003,13.2821,10.0,10.0
+2426,80.914,10.0,4.0,244.0,530.961,770.0,929.0,4.0,492.0,511.336,529.0,662.0,412.0,498.0,511.083,523.0,606.0,0.0,4.0,15.9582,34.0,513.0,174.0,173.424,7.77371,18.7666,13.3391,10.0,10.0
+2427,80.948,10.0,4.0,245.0,530.008,769.0,897.0,4.0,492.0,511.303,528.0,644.0,409.0,498.0,511.216,523.0,599.0,0.0,4.0,15.7491,34.0,515.0,180.0,174.971,8.54518,18.6649,13.3785,10.0,10.0
+2428,80.981,10.0,4.0,243.0,529.865,770.0,850.0,4.0,493.0,511.365,529.0,641.0,415.0,498.0,511.2,523.0,610.0,0.0,4.0,15.8072,34.0,510.0,176.0,174.471,8.6784,18.6107,13.1861,10.0,10.0
+2429,81.014,10.0,4.0,244.0,529.588,769.0,892.0,4.0,493.0,511.301,528.0,646.0,402.0,498.0,511.126,523.0,609.0,0.0,4.0,15.7178,34.0,511.0,178.0,173.857,8.94063,18.6921,13.4472,10.0,10.0
+2430,81.048,10.0,4.0,244.0,529.28,769.0,860.0,4.0,492.0,511.462,529.0,643.0,391.0,498.0,511.158,523.0,618.0,0.0,4.0,15.9397,34.0,516.0,180.0,176.069,11.4198,18.4812,13.3118,10.0,10.0
+2431,81.081,10.0,4.0,244.0,529.96,769.0,929.0,4.0,492.0,511.423,529.0,640.0,397.0,498.0,510.926,523.0,608.0,0.0,4.0,15.9812,34.0,512.0,180.0,174.955,9.64738,18.7966,13.4648,10.0,10.0
+2432,81.114,10.0,4.0,244.0,529.403,769.0,838.0,4.0,492.0,511.378,529.0,656.0,380.0,498.0,511.041,523.0,615.0,0.0,4.0,15.9245,34.0,519.0,180.0,175.114,8.67275,18.6959,13.346,10.0,10.0
+2433,81.148,10.0,4.0,244.0,529.453,768.0,923.0,237.0,492.0,511.368,529.0,655.0,410.0,498.0,511.112,523.0,609.0,0.0,4.0,15.8803,34.0,284.0,180.0,175.612,9.40971,18.4553,13.2798,10.0,10.0
+2434,81.181,10.0,4.0,243.0,529.07,768.0,910.0,4.0,492.0,511.363,529.0,642.0,398.0,498.0,511.294,524.0,607.0,0.0,4.0,15.9314,34.0,516.0,180.0,174.726,8.94439,18.7952,13.4772,10.0,10.0
+2435,81.214,10.0,4.0,244.0,529.173,769.0,923.0,58.0,492.0,511.41,529.0,640.0,408.0,498.0,511.054,523.0,606.0,0.0,4.0,15.8485,34.0,460.0,180.0,174.997,9.31201,18.8455,13.4129,10.0,10.0
+2436,81.248,10.0,4.0,244.0,529.708,769.0,923.0,7.0,493.0,511.581,529.0,643.0,404.0,498.0,511.146,523.0,611.0,0.0,4.0,15.8272,34.0,508.0,180.0,176.395,7.78571,18.6754,13.3437,10.0,10.0
+2437,81.281,10.0,4.0,244.0,528.123,767.0,846.0,4.0,492.0,511.459,529.0,649.0,407.0,498.0,511.089,523.0,621.0,0.0,4.0,15.8716,34.0,509.0,180.0,175.757,9.57366,18.6035,13.2527,10.0,10.0
+2438,81.315,10.0,4.0,244.0,528.72,768.0,923.0,4.0,492.0,511.265,529.0,655.0,407.0,498.0,511.1,523.0,614.0,0.0,4.0,16.0567,34.0,515.0,180.0,174.603,9.245,18.5488,13.1168,10.0,10.0
+2439,81.348,10.0,4.0,245.0,529.161,768.0,888.0,12.0,493.0,511.641,529.0,655.0,402.0,498.0,511.092,524.0,609.0,0.0,4.0,15.9395,34.0,503.0,180.0,177.074,7.96512,18.7924,13.4527,10.0,10.0
+2440,81.381,10.0,4.0,244.0,529.907,769.0,926.0,26.0,493.0,511.53,530.0,671.0,403.0,498.0,511.152,524.0,605.0,0.0,4.0,16.0414,34.0,489.0,180.0,176.395,8.99615,18.7141,13.5472,10.0,10.0
+2441,81.415,10.0,4.0,244.0,530.48,770.0,929.0,4.0,493.0,511.571,529.0,641.0,388.0,498.0,511.181,523.0,622.0,0.0,4.0,15.7802,34.0,508.0,180.0,176.458,8.06153,18.5997,13.5975,10.0,10.0
+2442,81.448,10.0,4.0,243.0,528.932,768.0,867.0,4.0,492.0,511.488,529.0,658.0,406.0,498.0,511.19,523.0,618.0,0.0,4.0,15.9176,34.0,515.0,180.0,176.593,8.6945,18.6155,13.3839,10.0,10.0
+2443,81.481,10.0,4.0,244.0,529.623,768.0,927.0,4.0,493.0,511.459,529.0,679.0,398.0,498.0,511.241,523.0,665.0,0.0,4.0,16.0554,34.0,516.0,180.0,175.581,8.79851,18.6878,13.3797,10.0,10.0
+2444,81.515,10.0,4.0,243.0,528.655,767.0,925.0,4.0,492.0,511.374,529.0,654.0,414.0,498.0,511.027,523.0,614.0,0.0,4.0,15.9701,34.0,514.0,180.0,175.431,8.32524,18.8158,13.644,10.0,10.0
+2445,81.548,10.0,4.0,243.0,528.785,767.0,927.0,4.0,492.0,511.467,530.0,642.0,405.0,498.0,511.068,524.0,606.0,0.0,4.0,16.2008,34.0,509.0,180.0,175.482,8.91449,18.8604,13.6429,10.0,10.0
+2446,81.582,10.0,4.0,244.0,529.63,769.0,842.0,4.0,492.0,511.532,530.0,676.0,412.0,498.0,511.117,524.0,608.0,0.0,4.0,16.1584,34.0,516.0,180.0,176.274,8.20331,18.8604,13.5381,10.0,10.0
+2447,81.615,10.0,4.0,243.0,527.203,765.0,921.0,4.0,492.0,511.425,529.0,646.0,402.0,498.0,511.189,523.0,608.0,0.0,4.0,15.9681,34.0,518.0,180.0,176.444,11.1139,18.8498,13.3876,10.0,10.0
+2448,81.648,10.0,4.0,242.0,527.036,766.0,843.0,4.0,492.0,511.211,528.0,640.0,400.0,498.0,511.278,523.0,815.0,0.0,4.0,15.8752,34.0,515.0,180.0,174.807,11.9174,18.7771,13.3221,10.0,10.0
+2449,81.682,10.0,4.0,243.0,527.335,765.0,856.0,4.0,492.0,511.401,529.0,990.0,382.0,498.0,511.027,523.0,650.0,0.0,4.0,15.8965,34.0,511.0,180.0,174.505,9.27878,18.8141,13.3276,10.0,10.0
+2450,81.715,10.0,4.0,243.0,527.449,765.0,895.0,4.0,492.0,511.388,529.0,1019.0,398.0,498.0,511.198,523.0,618.0,0.0,4.0,15.8477,34.0,517.0,180.0,174.801,10.0821,18.4473,13.1823,10.0,10.0
+2451,81.748,10.0,4.0,243.0,527.798,765.0,864.0,72.0,492.0,511.339,528.0,756.0,409.0,498.0,510.962,523.0,871.0,0.0,4.0,15.7943,34.0,446.0,180.0,176.076,8.28448,18.6069,13.4144,10.0,10.0
+2452,81.782,10.0,4.0,243.0,527.109,765.0,924.0,4.0,493.0,511.668,530.0,849.0,402.0,498.0,511.214,523.0,690.0,0.0,4.0,16.0304,34.0,509.0,180.0,177.396,8.76108,18.5961,13.3784,10.0,10.0
+2453,81.815,10.0,4.0,242.0,527.657,766.0,930.0,4.0,491.0,511.403,529.0,1019.0,382.0,498.0,510.884,523.0,610.0,0.0,4.0,16.0965,34.0,514.0,180.0,175.368,8.8685,18.8329,13.5036,10.0,10.0
+2454,81.848,10.0,4.0,243.0,527.996,766.0,924.0,4.0,492.0,511.392,529.0,1019.0,402.0,498.0,511.165,523.0,606.0,0.0,4.0,15.9939,34.0,514.0,180.0,174.808,8.94556,18.7886,13.4488,10.0,10.0
+2455,81.882,10.0,4.0,244.0,528.703,767.0,929.0,4.0,493.0,511.763,530.0,1019.0,395.0,498.0,511.026,523.0,606.0,0.0,4.0,16.2009,34.0,516.0,180.0,176.882,10.585,18.8161,13.3947,10.0,10.0
+2456,81.915,10.0,4.0,244.0,529.603,768.0,929.0,4.0,492.0,511.353,529.0,1001.0,406.0,498.0,511.105,523.0,715.0,0.0,4.0,16.044,34.0,529.0,180.0,174.805,9.16797,18.9081,13.5788,10.0,10.0
+2457,81.949,10.0,4.0,244.0,527.784,766.0,840.0,9.0,492.0,511.277,529.0,1019.0,398.0,498.0,511.028,523.0,614.0,0.0,4.0,16.1457,34.0,507.0,180.0,175.568,10.1459,18.5897,13.5274,10.0,10.0
+2458,81.982,10.0,4.0,244.0,529.182,768.0,927.0,4.0,491.0,511.389,530.0,1019.0,394.0,498.0,510.927,523.0,649.0,0.0,4.0,16.187,34.0,525.0,180.0,175.432,9.86696,18.9099,13.4787,10.0,10.0
+2459,82.015,10.0,4.0,243.0,529.064,768.0,922.0,4.0,492.0,511.454,529.0,986.0,407.0,498.0,511.026,523.0,726.0,0.0,4.0,16.036,34.0,520.0,180.0,175.973,9.19508,18.7481,13.5121,10.0,10.0
+2460,82.049,10.0,4.0,244.0,529.246,769.0,922.0,4.0,492.0,511.359,529.0,1018.0,410.0,498.0,511.025,523.0,706.0,0.0,4.0,16.0451,34.0,516.0,180.0,174.878,9.8461,18.7484,13.3124,10.0,10.0
+2461,82.082,10.0,4.0,244.0,529.708,770.0,841.0,4.0,492.0,511.532,529.0,930.0,382.0,498.0,510.938,523.0,732.0,0.0,4.0,15.9727,34.0,512.0,180.0,175.274,8.08487,18.9962,13.4774,10.0,10.0
+2462,82.115,10.0,4.0,244.0,529.098,769.0,923.0,4.0,492.0,511.367,529.0,754.0,397.0,498.0,511.286,523.0,884.0,0.0,4.0,15.921,34.0,517.0,180.0,175.467,9.22975,18.7594,13.3405,10.0,10.0
+2463,82.149,10.0,4.0,244.0,529.477,769.0,924.0,14.0,492.0,511.437,529.0,662.0,398.0,498.0,511.151,523.0,892.0,0.0,4.0,15.8489,34.0,506.0,180.0,175.714,9.37378,18.7561,13.2831,10.0,10.0
+2464,82.182,10.0,4.0,245.0,530.058,770.0,836.0,16.0,492.0,511.424,529.0,665.0,380.0,498.0,511.213,523.0,874.0,0.0,4.0,15.8865,34.0,500.0,180.0,175.383,8.42075,18.712,13.2082,10.0,10.0
+2465,82.215,10.0,4.0,244.0,530.03,770.0,855.0,4.0,493.0,511.573,529.0,920.0,374.0,498.0,511.099,523.0,836.0,0.0,4.0,15.886,34.0,516.0,180.0,176.363,12.4214,18.4735,13.1501,10.0,10.0
+2466,82.249,10.0,4.0,244.0,529.881,769.0,923.0,4.0,492.0,511.465,529.0,899.0,414.0,498.0,511.388,524.0,866.0,0.0,4.0,15.8414,34.0,516.0,180.0,175.707,11.2213,18.2169,13.1344,10.0,10.0
+2467,82.282,10.0,4.0,148.0,305.641,648.0,849.0,4.0,404.0,459.564,508.0,824.0,372.0,510.0,546.484,584.0,885.0,0.0,9.0,67.2468,127.0,517.0,124.0,127.376,349.1,55.982,38.844,10.0,10.0
+2468,82.316,10.0,4.0,145.0,304.781,656.0,859.0,4.0,402.0,457.182,508.0,812.0,402.0,508.0,543.444,582.0,793.0,0.0,9.0,67.7534,128.0,513.0,120.0,122.915,10.1258,19.3541,14.183,10.0,10.0
+2469,82.349,10.0,4.0,146.0,305.447,657.0,878.0,4.0,402.0,456.862,508.0,788.0,336.0,508.0,543.1,581.0,852.0,0.0,9.0,67.9389,128.0,513.0,120.0,122.528,7.88512,19.0682,13.9518,10.0,10.0
+2470,82.382,10.0,4.0,146.0,305.554,657.0,926.0,4.0,402.0,457.503,508.0,822.0,352.0,508.0,542.029,580.0,893.0,0.0,9.0,67.1621,126.0,516.0,119.0,121.923,8.2694,18.8835,13.8023,10.0,10.0
+2471,82.416,10.0,4.0,145.0,305.054,657.0,861.0,4.0,403.0,458.174,509.0,818.0,342.0,508.0,541.667,581.0,744.0,0.0,8.0,66.4805,126.0,513.0,119.0,122.146,7.48907,19.0915,13.8313,10.0,10.0
+2472,82.449,10.0,4.0,146.0,304.78,656.0,918.0,4.0,402.0,457.432,508.0,924.0,354.0,508.0,542.239,580.0,745.0,0.0,8.0,67.1329,126.0,513.0,119.0,121.729,8.75654,19.2127,14.0159,10.0,10.0
+2473,82.482,10.0,4.0,147.0,304.485,653.0,931.0,4.0,402.0,457.481,508.0,804.0,302.0,508.0,542.043,580.0,743.0,0.0,9.0,67.0278,127.0,513.0,119.0,121.383,9.07493,18.8244,13.807,10.0,10.0
+2474,82.516,10.0,4.0,146.0,304.548,652.0,844.0,4.0,403.0,457.593,508.0,771.0,330.0,508.0,542.092,580.0,737.0,0.0,9.0,66.8977,126.0,517.0,119.0,121.692,7.97569,18.9719,14.0583,10.0,10.0
+2475,82.549,10.0,4.0,146.0,304.907,653.0,861.0,4.0,402.0,457.854,508.0,788.0,398.0,508.0,541.631,580.0,729.0,0.0,9.0,66.5657,127.0,517.0,119.0,121.224,9.19854,19.06,14.024,10.0,10.0
+2476,82.583,10.0,4.0,147.0,305.124,653.0,862.0,46.0,402.0,457.257,508.0,779.0,310.0,508.0,542.206,581.0,725.0,0.0,8.0,67.3312,128.0,467.0,119.0,121.733,7.88549,19.1057,14.1009,10.0,10.0
+2477,82.616,10.0,4.0,147.0,304.349,650.0,850.0,30.0,402.0,457.613,508.0,900.0,290.0,508.0,541.821,580.0,733.0,0.0,9.0,66.8123,126.0,484.0,119.0,121.973,8.44878,19.0163,14.0422,10.0,10.0
+2478,82.649,10.0,4.0,147.0,304.974,651.0,897.0,4.0,402.0,457.136,507.0,836.0,374.0,508.0,541.355,580.0,869.0,0.0,9.0,67.1785,127.0,513.0,118.0,120.089,8.48039,19.1098,14.0269,10.0,10.0
+2479,82.683,10.0,4.0,148.0,304.535,650.0,872.0,4.0,402.0,456.689,508.0,1019.0,352.0,508.0,541.462,580.0,737.0,0.0,9.0,67.4203,127.0,517.0,118.0,120.573,7.65205,19.4308,14.0015,10.0,10.0
+2480,82.716,10.0,4.0,147.0,304.048,649.0,863.0,4.0,402.0,456.478,507.0,976.0,312.0,508.0,541.777,581.0,760.0,0.0,9.0,67.8824,128.0,523.0,118.0,120.804,8.41656,19.3377,13.8711,10.0,10.0
+2481,82.749,10.0,4.0,148.0,305.407,652.0,846.0,4.0,402.0,456.726,507.0,1007.0,352.0,508.0,541.876,580.0,728.0,0.0,10.0,67.6753,127.0,511.0,118.0,120.612,7.47135,19.2626,14.0368,10.0,10.0
+2482,82.783,10.0,4.0,148.0,305.657,652.0,864.0,4.0,401.0,456.347,507.0,967.0,344.0,508.0,541.899,581.0,770.0,0.0,10.0,67.9887,128.0,514.0,118.0,120.699,8.40649,19.1556,14.1421,10.0,10.0
+2483,82.816,10.0,4.0,148.0,306.353,655.0,935.0,4.0,402.0,456.289,508.0,796.0,302.0,508.0,541.44,580.0,774.0,0.0,9.0,67.7042,127.0,517.0,118.0,120.187,8.73553,19.2334,14.1324,10.0,10.0
+2484,82.849,10.0,4.0,148.0,306.207,653.0,864.0,4.0,402.0,457.334,508.0,789.0,330.0,508.0,541.281,580.0,728.0,0.0,9.0,66.8652,126.0,512.0,118.0,121.13,7.70626,19.1922,14.2168,10.0,10.0
+2485,82.883,10.0,4.0,148.0,305.373,650.0,862.0,4.0,402.0,457.55,508.0,767.0,298.0,508.0,540.972,580.0,732.0,0.0,9.0,66.6443,127.0,517.0,118.0,120.849,8.38947,19.2689,13.9724,10.0,10.0
+2486,82.916,10.0,4.0,148.0,304.839,650.0,849.0,4.0,402.0,457.151,507.0,799.0,366.0,508.0,540.969,580.0,725.0,0.0,9.0,66.8694,126.0,516.0,118.0,120.184,7.5143,19.4638,14.0837,10.0,10.0
+2487,82.95,10.0,4.0,148.0,304.702,650.0,850.0,34.0,402.0,456.038,508.0,798.0,358.0,508.0,541.157,580.0,741.0,0.0,9.0,67.9057,128.0,486.0,117.0,119.938,7.93755,19.3167,14.1319,10.0,10.0
+2488,82.983,10.0,4.0,148.0,305.403,651.0,921.0,16.0,402.0,456.397,507.0,817.0,318.0,507.0,540.883,580.0,732.0,0.0,9.0,67.5403,127.0,502.0,117.0,119.553,7.9088,19.0999,14.1067,10.0,10.0
+2489,83.016,10.0,4.0,148.0,305.314,651.0,857.0,14.0,401.0,456.032,507.0,825.0,325.0,508.0,541.395,580.0,733.0,0.0,9.0,68.0079,128.0,503.0,118.0,120.542,7.34127,19.3761,14.0962,10.0,10.0
+2490,83.05,10.0,4.0,148.0,305.72,651.0,848.0,4.0,400.0,455.34,507.0,827.0,352.0,508.0,541.179,580.0,724.0,0.0,10.0,68.4554,129.0,515.0,117.0,118.971,8.17475,19.4155,14.041,10.0,10.0
+2491,83.083,10.0,4.0,148.0,306.097,651.0,867.0,4.0,400.0,455.699,507.0,787.0,340.0,508.0,541.52,581.0,750.0,0.0,10.0,68.4946,129.0,516.0,118.0,119.945,7.50845,19.4868,14.0013,10.0,10.0
+2492,83.116,10.0,4.0,148.0,305.248,651.0,852.0,4.0,400.0,456.05,507.0,819.0,373.0,508.0,541.494,581.0,746.0,0.0,9.0,68.0734,129.0,512.0,118.0,120.527,8.43479,19.492,14.0742,10.0,10.0
+2493,83.15,10.0,4.0,148.0,305.593,652.0,850.0,4.0,400.0,456.011,508.0,789.0,342.0,508.0,541.618,581.0,742.0,0.0,9.0,68.283,129.0,510.0,118.0,120.111,8.11677,19.4091,14.1336,10.0,10.0
+2494,83.183,10.0,4.0,149.0,306.235,653.0,857.0,4.0,400.0,456.221,508.0,876.0,394.0,508.0,542.091,581.0,721.0,0.0,9.0,68.2652,129.0,513.0,118.0,121.223,7.43567,19.3814,14.1638,10.0,10.0
+2495,83.216,10.0,4.0,148.0,306.089,653.0,854.0,4.0,400.0,456.376,508.0,803.0,385.0,508.0,541.577,580.0,726.0,0.0,9.0,67.8894,129.0,517.0,118.0,120.745,8.39127,19.3656,14.0342,10.0,10.0
+2496,83.25,10.0,4.0,148.0,305.892,653.0,854.0,4.0,401.0,456.482,508.0,817.0,386.0,508.0,542.041,582.0,730.0,0.0,9.0,68.0272,129.0,513.0,118.0,120.563,7.67085,19.1912,13.9619,10.0,10.0
+2497,83.283,10.0,4.0,148.0,305.65,651.0,848.0,4.0,400.0,456.033,508.0,794.0,352.0,508.0,542.027,582.0,745.0,0.0,9.0,68.2986,129.0,511.0,118.0,120.032,8.22098,18.9911,13.8691,10.0,10.0
+2498,83.317,10.0,4.0,149.0,306.144,650.0,850.0,4.0,400.0,455.971,507.0,812.0,355.0,508.0,542.869,583.0,728.0,0.0,9.0,68.6856,130.0,513.0,119.0,121.309,8.41031,19.0097,13.9041,10.0,10.0
+2499,83.35,10.0,4.0,149.0,306.599,653.0,859.0,4.0,398.0,455.315,507.0,841.0,336.0,508.0,543.098,583.0,743.0,0.0,9.0,69.2555,132.0,516.0,119.0,121.201,7.5554,19.3063,13.919,10.0,10.0
+2500,83.383,10.0,4.0,149.0,306.978,655.0,866.0,4.0,399.0,455.406,508.0,919.0,367.0,508.0,543.065,583.0,741.0,0.0,9.0,69.4125,131.0,516.0,119.0,121.218,8.38674,19.4353,14.1578,10.0,10.0
+2501,83.417,10.0,4.0,149.0,307.579,656.0,865.0,4.0,400.0,456.016,508.0,992.0,364.0,508.0,542.622,582.0,746.0,0.0,9.0,68.6557,129.0,509.0,119.0,121.182,7.55852,19.2019,14.2005,10.0,10.0
+2502,83.45,10.0,4.0,148.0,306.765,654.0,839.0,4.0,402.0,456.712,508.0,823.0,322.0,508.0,542.625,582.0,819.0,0.0,9.0,68.0582,129.0,516.0,119.0,122.274,8.32962,19.1997,14.1577,10.0,10.0
+2503,83.483,10.0,4.0,148.0,306.187,654.0,869.0,4.0,402.0,456.5,508.0,784.0,313.0,508.0,541.997,581.0,934.0,0.0,9.0,67.9928,128.0,515.0,118.0,121.218,8.36205,19.3103,14.0514,10.0,10.0
+2504,83.517,10.0,4.0,148.0,306.141,654.0,877.0,4.0,402.0,456.887,508.0,940.0,395.0,508.0,542.644,582.0,776.0,0.0,9.0,67.9135,128.0,513.0,119.0,122.305,7.54606,19.1206,14.0717,10.0,10.0
+2505,83.55,10.0,4.0,148.0,305.861,653.0,860.0,4.0,401.0,456.62,508.0,896.0,384.0,508.0,542.2,582.0,741.0,0.0,9.0,67.9547,128.0,512.0,119.0,121.47,8.18451,19.1964,13.9251,10.0,10.0
+2506,83.584,10.0,4.0,148.0,305.948,652.0,848.0,4.0,402.0,456.983,508.0,871.0,393.0,508.0,542.383,582.0,761.0,0.0,9.0,67.7918,128.0,518.0,119.0,121.021,7.40102,19.1172,13.9341,10.0,10.0
+2507,83.617,10.0,4.0,149.0,305.717,651.0,855.0,4.0,400.0,456.33,508.0,803.0,376.0,508.0,542.222,582.0,875.0,0.0,9.0,68.1726,129.0,519.0,118.0,121.295,8.15589,19.2912,14.0324,10.0,10.0
+2508,83.65,10.0,4.0,149.0,307.285,656.0,855.0,4.0,402.0,456.424,508.0,827.0,362.0,508.0,543.001,583.0,894.0,0.0,9.0,68.4596,128.0,512.0,119.0,121.88,8.16011,19.2934,13.972,10.0,10.0
+2509,83.684,10.0,4.0,149.0,306.507,655.0,862.0,4.0,401.0,456.9,508.0,821.0,370.0,508.0,543.069,583.0,751.0,0.0,9.0,68.1626,129.0,511.0,119.0,122.694,7.65746,19.5753,14.1254,10.0,10.0
+2510,83.717,10.0,4.0,148.0,305.055,651.0,854.0,4.0,402.0,456.695,508.0,855.0,384.0,508.0,542.054,582.0,829.0,0.0,9.0,67.9539,128.0,518.0,119.0,121.331,8.35888,19.2425,14.1364,10.0,10.0
+2511,83.75,10.0,4.0,148.0,305.518,651.0,866.0,4.0,402.0,456.775,508.0,991.0,357.0,508.0,542.447,582.0,751.0,0.0,9.0,68.0391,128.0,511.0,119.0,121.666,7.34131,19.3041,14.1824,10.0,10.0
+2512,83.784,10.0,4.0,149.0,305.641,650.0,858.0,4.0,402.0,456.799,508.0,822.0,362.0,508.0,542.58,581.0,743.0,0.0,9.0,67.9182,128.0,512.0,119.0,121.708,7.79137,19.483,14.1888,10.0,10.0
+2513,83.817,10.0,4.0,149.0,305.99,652.0,864.0,4.0,402.0,456.779,508.0,1007.0,330.0,508.0,541.87,582.0,750.0,0.0,9.0,67.7914,128.0,509.0,118.0,121.498,7.8666,19.4113,14.2035,10.0,10.0
+2514,83.85,10.0,4.0,149.0,306.349,653.0,858.0,4.0,402.0,456.763,508.0,1019.0,323.0,508.0,541.987,581.0,737.0,0.0,9.0,67.8323,128.0,516.0,119.0,121.79,7.29804,19.336,13.9587,10.0,10.0
+2515,83.884,10.0,4.0,150.0,306.756,653.0,854.0,4.0,402.0,456.834,508.0,1019.0,343.0,508.0,541.421,580.0,740.0,0.0,9.0,67.4863,128.0,517.0,118.0,121.022,8.11932,19.3183,14.0391,10.0,10.0
+2516,83.917,10.0,4.0,150.0,306.656,654.0,857.0,4.0,402.0,456.863,508.0,1019.0,264.0,508.0,541.786,581.0,730.0,0.0,9.0,67.7011,128.0,513.0,119.0,121.226,7.40886,19.1855,14.1821,10.0,10.0
+2517,83.951,10.0,4.0,148.0,305.141,650.0,854.0,4.0,400.0,455.797,508.0,1019.0,326.0,507.0,541.25,580.0,729.0,0.0,9.0,68.3836,129.0,512.0,118.0,120.844,8.20971,19.5407,14.2827,10.0,10.0
+2518,83.984,10.0,4.0,149.0,307.066,655.0,848.0,4.0,402.0,457.077,508.0,1019.0,312.0,508.0,541.585,581.0,720.0,0.0,9.0,67.5851,128.0,522.0,118.0,121.245,8.11521,19.6342,14.1014,10.0,10.0
+2519,84.017,10.0,4.0,149.0,306.455,653.0,859.0,4.0,402.0,457.642,509.0,1019.0,313.0,508.0,541.77,582.0,723.0,0.0,9.0,67.1636,127.0,523.0,119.0,122.107,7.48333,19.5908,14.1829,10.0,10.0
+2520,84.051,10.0,4.0,148.0,305.936,652.0,862.0,4.0,402.0,457.379,508.0,960.0,377.0,508.0,541.063,581.0,743.0,0.0,8.0,67.0646,127.0,513.0,118.0,120.646,8.51979,19.4125,14.2259,10.0,10.0
+2521,84.084,10.0,4.0,149.0,307.063,654.0,872.0,4.0,402.0,457.912,509.0,1013.0,316.0,507.0,541.036,580.0,736.0,0.0,8.0,66.7452,127.0,510.0,118.0,121.559,7.54788,19.1987,13.9978,10.0,10.0
+2522,84.117,10.0,4.0,149.0,307.111,655.0,858.0,4.0,404.0,458.87,510.0,818.0,362.0,508.0,540.701,580.0,848.0,0.0,8.0,65.7102,125.0,517.0,119.0,122.624,8.07481,19.2537,14.0189,10.0,10.0
+2523,84.151,10.0,4.0,148.0,306.409,654.0,857.0,4.0,402.0,457.518,509.0,798.0,350.0,507.0,541.099,580.0,911.0,0.0,8.0,66.8812,127.0,521.0,118.0,121.457,8.60736,19.1903,13.8376,10.0,10.0
+2524,84.184,10.0,4.0,149.0,307.072,655.0,852.0,4.0,402.0,457.865,508.0,812.0,347.0,508.0,541.254,580.0,852.0,0.0,8.0,66.5649,126.0,517.0,119.0,121.895,7.47167,19.0132,13.7869,10.0,10.0
+2525,84.217,10.0,4.0,148.0,307.05,654.0,860.0,15.0,402.0,457.279,508.0,1019.0,348.0,508.0,541.866,581.0,749.0,0.0,9.0,67.307,127.0,523.0,119.0,121.126,8.45497,19.0218,14.0057,10.0,10.0
+2526,84.251,10.0,4.0,148.0,307.435,655.0,878.0,4.0,402.0,457.142,508.0,1018.0,336.0,508.0,542.016,581.0,781.0,0.0,9.0,67.4399,128.0,522.0,118.0,120.46,7.60282,19.1719,14.0543,10.0,10.0
+2527,84.284,10.0,4.0,149.0,306.606,654.0,851.0,4.0,401.0,456.742,508.0,791.0,327.0,507.0,541.575,581.0,875.0,0.0,9.0,67.5707,129.0,514.0,118.0,120.538,8.51096,19.2615,14.1004,10.0,10.0
+2528,84.318,10.0,4.0,148.0,307.246,656.0,934.0,4.0,403.0,458.5,509.0,808.0,317.0,507.0,540.797,580.0,891.0,0.0,9.0,65.9536,125.0,514.0,118.0,121.438,8.56923,19.0832,13.8234,10.0,10.0
+2529,84.351,10.0,4.0,148.0,306.524,655.0,848.0,4.0,402.0,458.134,509.0,880.0,394.0,508.0,541.153,581.0,784.0,0.0,8.0,66.313,127.0,512.0,119.0,122.11,7.9222,19.1317,14.1456,10.0,10.0
+2530,84.384,10.0,4.0,149.0,306.288,654.0,848.0,4.0,402.0,457.982,509.0,872.0,368.0,507.0,540.713,580.0,788.0,0.0,8.0,66.3858,126.0,516.0,118.0,121.714,9.18549,19.1349,14.0836,10.0,10.0
+2531,84.418,10.0,4.0,148.0,306.304,654.0,846.0,4.0,402.0,457.832,509.0,898.0,394.0,507.0,541.027,580.0,810.0,0.0,9.0,66.6813,127.0,517.0,118.0,121.21,7.95307,19.3069,13.9783,10.0,10.0
+2532,84.451,10.0,4.0,149.0,307.556,655.0,877.0,4.0,403.0,458.098,509.0,800.0,382.0,507.0,540.739,580.0,735.0,0.0,8.0,66.2679,126.0,512.0,118.0,121.444,9.8358,19.4225,14.0187,10.0,10.0
+2533,84.484,10.0,4.0,148.0,306.535,654.0,862.0,4.0,402.0,456.739,508.0,889.0,384.0,507.0,541.251,581.0,732.0,0.0,9.0,67.545,128.0,514.0,118.0,120.518,9.39113,19.3297,14.0164,10.0,10.0
+2534,84.518,10.0,4.0,148.0,307.058,653.0,872.0,4.0,400.0,456.702,508.0,778.0,358.0,508.0,541.544,581.0,721.0,0.0,8.0,67.659,129.0,516.0,118.0,121.73,7.65869,19.2824,14.0721,10.0,10.0
+2535,84.551,10.0,4.0,149.0,308.03,654.0,853.0,4.0,401.0,457.172,509.0,810.0,386.0,508.0,541.063,579.0,838.0,0.0,8.0,66.9557,128.0,515.0,118.0,121.144,8.57141,19.273,14.0061,10.0,10.0
+2536,84.585,10.0,4.0,149.0,308.61,655.0,864.0,4.0,402.0,457.045,508.0,886.0,410.0,508.0,541.308,580.0,728.0,0.0,8.0,67.3544,128.0,511.0,118.0,120.876,7.52713,19.5211,13.9874,10.0,10.0
+2537,84.618,10.0,4.0,150.0,308.699,656.0,930.0,4.0,401.0,457.007,509.0,779.0,370.0,508.0,540.52,580.0,721.0,0.0,9.0,67.0979,127.0,509.0,118.0,121.437,8.47889,19.3245,13.845,10.0,10.0
+2538,84.651,10.0,4.0,150.0,309.384,658.0,934.0,4.0,402.0,458.006,508.0,813.0,376.0,508.0,541.152,580.0,744.0,0.0,9.0,66.4357,126.0,518.0,118.0,120.721,8.72833,19.3804,14.0363,10.0,10.0
+2539,84.685,10.0,4.0,150.0,309.493,657.0,896.0,4.0,402.0,457.779,508.0,784.0,332.0,508.0,541.302,580.0,720.0,0.0,9.0,66.5363,126.0,514.0,119.0,122.106,7.65832,19.4211,14.0623,10.0,10.0
+2540,84.718,10.0,4.0,149.0,308.816,656.0,847.0,4.0,401.0,456.487,508.0,794.0,348.0,508.0,540.98,580.0,721.0,0.0,9.0,67.5445,128.0,512.0,118.0,120.45,8.20285,19.3024,14.047,10.0,10.0
+2541,84.751,10.0,4.0,149.0,308.812,656.0,855.0,4.0,400.0,456.614,508.0,813.0,364.0,507.0,541.666,581.0,747.0,0.0,9.0,67.7916,129.0,509.0,118.0,120.457,7.50424,19.5133,14.1952,10.0,10.0
+2542,84.785,10.0,4.0,150.0,309.124,654.0,938.0,4.0,402.0,457.692,508.0,802.0,290.0,508.0,541.418,580.0,745.0,0.0,8.0,66.6659,128.0,516.0,119.0,121.593,8.2232,19.2975,13.9629,10.0,10.0
+2543,84.818,10.0,4.0,149.0,309.142,656.0,856.0,4.0,402.0,457.886,508.0,815.0,332.0,508.0,541.594,580.0,743.0,0.0,9.0,66.6659,127.0,519.0,119.0,121.808,8.63022,19.1961,14.1312,10.0,10.0
+2544,84.851,10.0,4.0,150.0,309.35,656.0,865.0,4.0,402.0,458.032,509.0,794.0,314.0,508.0,541.942,581.0,737.0,0.0,8.0,66.6323,127.0,518.0,119.0,122.777,7.58981,19.165,14.1748,10.0,10.0
+2545,84.885,10.0,4.0,150.0,309.62,658.0,854.0,4.0,402.0,457.873,508.0,778.0,342.0,508.0,541.504,581.0,726.0,0.0,8.0,66.5569,126.0,509.0,119.0,121.737,8.32008,19.2124,13.9166,10.0,10.0
+2546,84.918,10.0,4.0,149.0,309.744,657.0,867.0,4.0,403.0,458.153,508.0,785.0,336.0,508.0,542.062,582.0,740.0,0.0,8.0,66.5486,127.0,512.0,119.0,121.9,7.67895,19.282,14.2248,10.0,10.0
+2547,84.952,10.0,4.0,149.0,308.285,656.0,850.0,4.0,400.0,456.246,508.0,854.0,358.0,508.0,542.197,581.0,722.0,0.0,9.0,68.0959,129.0,514.0,119.0,121.138,8.30746,19.3766,14.094,10.0,10.0
+2548,84.985,10.0,4.0,148.0,308.289,654.0,846.0,4.0,401.0,456.682,508.0,805.0,344.0,508.0,542.22,582.0,724.0,0.0,9.0,67.9087,129.0,514.0,119.0,121.567,8.63684,19.46,14.007,10.0,10.0
+2549,85.018,10.0,4.0,148.0,308.252,654.0,846.0,4.0,402.0,457.969,509.0,817.0,340.0,508.0,542.499,582.0,746.0,0.0,8.0,67.0638,128.0,513.0,120.0,123.146,7.50885,19.4151,14.1805,10.0,10.0
+2550,85.052,10.0,4.0,148.0,307.887,655.0,853.0,4.0,402.0,458.03,509.0,790.0,394.0,508.0,541.634,581.0,756.0,0.0,9.0,66.631,127.0,516.0,119.0,122.67,8.10198,19.1903,14.0573,10.0,10.0
+2551,85.085,10.0,4.0,148.0,307.45,655.0,852.0,4.0,402.0,458.097,509.0,805.0,322.0,508.0,541.731,582.0,730.0,0.0,8.0,66.6288,127.0,513.0,119.0,122.186,7.64552,19.3088,14.1579,10.0,10.0
+2552,85.118,10.0,4.0,148.0,307.708,655.0,860.0,7.0,402.0,458.488,509.0,777.0,297.0,508.0,541.916,582.0,746.0,0.0,8.0,66.3361,127.0,507.0,119.0,123.1,9.01,19.0601,13.9627,10.0,10.0
+2553,85.152,10.0,4.0,148.0,308.078,656.0,865.0,4.0,402.0,457.58,509.0,799.0,290.0,508.0,541.935,581.0,722.0,0.0,9.0,67.032,128.0,509.0,119.0,122.571,9.20247,19.1368,13.9271,10.0,10.0
+2554,85.185,10.0,4.0,148.0,307.823,655.0,862.0,4.0,401.0,457.052,509.0,787.0,314.0,508.0,542.165,582.0,746.0,0.0,9.0,67.6348,129.0,516.0,119.0,122.561,7.86043,19.3039,14.172,10.0,10.0
+2555,85.218,10.0,4.0,149.0,308.178,655.0,927.0,4.0,401.0,456.954,508.0,767.0,270.0,508.0,542.106,581.0,726.0,0.0,9.0,67.5713,128.0,512.0,119.0,121.215,8.9661,19.2491,14.1574,10.0,10.0
+2556,85.252,10.0,4.0,149.0,308.608,656.0,867.0,4.0,402.0,457.313,508.0,778.0,298.0,508.0,542.122,581.0,729.0,0.0,9.0,67.2506,127.0,512.0,119.0,121.422,7.744,19.286,13.9529,10.0,10.0
+2557,85.285,10.0,4.0,147.0,307.787,655.0,862.0,4.0,402.0,456.866,508.0,799.0,291.0,508.0,541.702,581.0,742.0,0.0,9.0,67.5097,128.0,509.0,118.0,121.432,8.33582,19.3273,13.9798,10.0,10.0
+2558,85.319,10.0,4.0,148.0,308.654,655.0,874.0,4.0,401.0,456.667,508.0,785.0,311.0,508.0,542.023,581.0,743.0,0.0,9.0,67.82,129.0,514.0,118.0,121.062,8.34951,19.45,14.0944,10.0,10.0
+2559,85.352,10.0,4.0,149.0,309.032,656.0,855.0,4.0,401.0,456.816,508.0,823.0,354.0,508.0,542.158,582.0,746.0,0.0,9.0,67.7304,128.0,519.0,119.0,122.039,7.6646,19.5528,14.2859,10.0,10.0
+2560,85.385,10.0,4.0,149.0,308.874,657.0,933.0,4.0,400.0,456.771,508.0,777.0,340.0,508.0,541.646,581.0,734.0,0.0,9.0,67.4668,129.0,510.0,118.0,121.5,8.17792,19.2713,13.9002,10.0,10.0
+2561,85.419,10.0,4.0,148.0,308.123,657.0,859.0,4.0,401.0,456.797,508.0,997.0,278.0,508.0,541.809,581.0,743.0,0.0,9.0,67.5695,128.0,510.0,119.0,121.276,7.51315,19.2998,13.9774,10.0,10.0
+2562,85.452,10.0,4.0,148.0,308.609,657.0,886.0,4.0,402.0,457.686,508.0,844.0,347.0,508.0,541.368,580.0,730.0,0.0,9.0,66.6782,127.0,515.0,119.0,122.246,8.35719,18.9975,13.8052,10.0,10.0
+2563,85.485,10.0,4.0,148.0,309.177,659.0,857.0,30.0,402.0,456.653,508.0,822.0,377.0,508.0,542.636,582.0,741.0,0.0,9.0,67.993,128.0,492.0,119.0,121.799,8.45812,19.2818,14.2952,10.0,10.0
+2564,85.519,10.0,4.0,148.0,308.572,657.0,854.0,10.0,401.0,456.397,508.0,794.0,283.0,508.0,542.599,581.0,740.0,0.0,9.0,68.0782,128.0,508.0,119.0,122.133,7.74267,19.4982,14.1432,10.0,10.0
+2565,85.552,10.0,4.0,148.0,308.294,656.0,855.0,4.0,402.0,457.086,508.0,851.0,294.0,508.0,542.064,581.0,752.0,0.0,9.0,67.5085,127.0,511.0,119.0,121.765,8.57846,19.4582,14.0996,10.0,10.0
+2566,85.586,10.0,4.0,148.0,308.616,657.0,860.0,4.0,402.0,457.88,508.0,816.0,294.0,508.0,542.23,581.0,714.0,0.0,9.0,66.9341,126.0,517.0,119.0,122.758,7.78576,19.3512,14.0987,10.0,10.0
+2567,85.619,10.0,4.0,149.0,308.6,656.0,935.0,4.0,402.0,457.292,508.0,824.0,412.0,508.0,542.196,580.0,721.0,0.0,9.0,67.2299,127.0,511.0,119.0,122.461,8.36948,19.3744,13.9331,10.0,10.0
+2568,85.652,10.0,4.0,149.0,307.959,657.0,865.0,4.0,402.0,457.059,508.0,822.0,336.0,508.0,541.89,580.0,729.0,0.0,9.0,67.2822,127.0,513.0,119.0,121.305,8.24134,19.0679,13.8742,10.0,10.0
+2569,85.686,10.0,4.0,148.0,307.804,656.0,911.0,14.0,402.0,457.745,508.0,799.0,326.0,508.0,542.214,581.0,735.0,0.0,9.0,66.9582,127.0,502.0,119.0,122.707,7.41099,19.2181,14.0159,10.0,10.0
+2570,85.719,10.0,4.0,147.0,307.304,655.0,861.0,4.0,403.0,457.735,508.0,784.0,306.0,508.0,541.633,580.0,736.0,0.0,9.0,66.6757,126.0,515.0,119.0,121.191,8.18957,19.0051,13.8786,10.0,10.0
+2571,85.752,10.0,4.0,146.0,306.6,655.0,863.0,4.0,402.0,457.42,508.0,796.0,305.0,508.0,541.803,580.0,757.0,0.0,9.0,67.1098,127.0,515.0,119.0,121.361,7.56988,19.3028,14.0725,10.0,10.0
+2572,85.786,10.0,4.0,148.0,306.675,655.0,853.0,10.0,402.0,456.922,508.0,766.0,290.0,508.0,541.196,580.0,728.0,0.0,10.0,67.1905,127.0,506.0,118.0,120.612,8.47659,19.1705,14.0205,10.0,10.0
+2573,85.819,10.0,4.0,148.0,308.28,657.0,854.0,4.0,402.0,456.81,508.0,800.0,280.0,507.0,541.463,581.0,725.0,0.0,10.0,67.4068,127.0,510.0,118.0,120.655,8.38951,19.433,14.0224,10.0,10.0
+2574,85.852,10.0,4.0,148.0,307.493,655.0,860.0,4.0,402.0,456.689,508.0,926.0,281.0,508.0,541.724,580.0,745.0,0.0,10.0,67.6458,127.0,514.0,118.0,121.203,7.66484,19.1221,14.0397,10.0,10.0
+2575,85.886,10.0,4.0,148.0,307.464,656.0,910.0,4.0,402.0,456.152,508.0,804.0,281.0,507.0,541.476,581.0,737.0,0.0,10.0,68.0638,128.0,517.0,118.0,120.2,8.45768,19.5148,14.0179,10.0,10.0
+2576,85.919,10.0,4.0,148.0,307.588,657.0,929.0,10.0,402.0,456.36,507.0,1019.0,305.0,507.0,541.773,581.0,726.0,0.0,10.0,68.0706,128.0,508.0,118.0,120.101,7.51905,19.6445,14.0636,10.0,10.0
+2577,85.953,10.0,4.0,149.0,307.0,654.0,860.0,4.0,400.0,455.623,508.0,1019.0,316.0,508.0,542.573,581.0,733.0,0.0,10.0,68.9723,130.0,531.0,118.0,121.184,8.15558,19.572,14.1725,10.0,10.0
+2578,85.986,10.0,4.0,148.0,306.481,655.0,848.0,4.0,398.0,454.784,508.0,983.0,312.0,507.0,542.36,583.0,730.0,0.0,10.0,69.8319,132.0,516.0,118.0,120.427,8.33205,20.0007,14.4986,10.0,10.0
+2579,86.019,10.0,4.0,147.0,306.671,655.0,930.0,4.0,394.0,453.222,508.0,828.0,328.0,507.0,543.099,585.0,733.0,0.0,10.0,71.7169,136.0,519.0,118.0,121.352,7.65874,20.4315,14.8897,10.0,10.0
+2580,86.053,10.0,4.0,148.0,306.528,653.0,856.0,4.0,396.0,453.988,508.0,818.0,288.0,507.0,542.562,584.0,760.0,0.0,10.0,70.9702,135.0,514.0,118.0,121.173,8.8096,21.3766,15.3178,10.0,10.0
+2581,86.086,10.0,4.0,148.0,305.974,652.0,842.0,4.0,392.0,452.835,508.0,816.0,313.0,507.0,544.109,587.0,741.0,0.0,10.0,72.8249,138.0,514.0,119.0,121.409,8.04779,21.7162,15.792,10.0,10.0
+2582,86.119,10.0,4.0,149.0,306.507,655.0,858.0,4.0,392.0,452.096,508.0,827.0,315.0,507.0,544.277,588.0,919.0,0.0,10.0,73.4737,139.0,519.0,118.0,121.637,9.11921,21.1759,15.6642,10.0,10.0
+2583,86.153,10.0,4.0,147.0,306.598,655.0,861.0,4.0,392.0,452.679,508.0,897.0,384.0,507.0,544.697,588.0,864.0,0.0,10.0,73.3327,140.0,518.0,119.0,121.985,8.39322,21.2846,15.3095,10.0,10.0
+2584,86.186,10.0,4.0,147.0,305.588,653.0,851.0,4.0,392.0,452.714,508.0,1000.0,369.0,507.0,544.912,587.0,764.0,0.0,10.0,73.3088,139.0,542.0,119.0,122.714,7.72148,21.2314,15.3721,10.0,10.0
+2585,86.219,10.0,4.0,146.0,305.186,652.0,842.0,4.0,392.0,452.176,508.0,1019.0,312.0,507.0,544.285,586.0,758.0,0.0,10.0,73.3103,138.0,513.0,118.0,121.406,8.60758,20.9702,15.3148,10.0,10.0
+2586,86.253,10.0,4.0,147.0,305.543,653.0,848.0,4.0,392.0,452.424,508.0,971.0,380.0,507.0,544.967,588.0,799.0,0.0,10.0,73.4557,140.0,525.0,119.0,122.274,7.64741,20.9596,15.2467,10.0,10.0
+2587,86.286,10.0,4.0,147.0,305.222,652.0,841.0,4.0,395.0,453.745,508.0,842.0,266.0,507.0,544.092,586.0,907.0,0.0,10.0,71.9444,137.0,522.0,119.0,122.485,8.20293,20.8516,15.0482,10.0,10.0
+2588,86.32,10.0,4.0,146.0,305.135,652.0,860.0,4.0,391.0,451.767,508.0,929.0,362.0,507.0,544.726,588.0,816.0,0.0,10.0,73.8019,140.0,519.0,118.0,121.271,8.40576,21.1594,15.2985,10.0,10.0
+2589,86.353,10.0,4.0,147.0,305.972,654.0,846.0,4.0,393.0,452.842,508.0,888.0,370.0,507.0,544.245,587.0,736.0,0.0,10.0,72.8478,139.0,516.0,119.0,122.303,7.41047,21.208,15.2096,10.0,10.0
+2590,86.386,10.0,4.0,147.0,305.78,653.0,927.0,4.0,392.0,452.899,508.0,902.0,309.0,507.0,543.5,586.0,788.0,0.0,10.0,72.5919,139.0,520.0,118.0,121.543,8.17544,21.2932,15.2925,10.0,10.0
+2591,86.42,10.0,4.0,146.0,305.303,652.0,846.0,4.0,392.0,452.994,508.0,848.0,308.0,506.0,544.113,588.0,756.0,0.0,10.0,72.8359,139.0,518.0,118.0,120.983,7.50924,21.2465,15.4143,10.0,10.0
+2592,86.453,10.0,4.0,147.0,304.97,652.0,932.0,4.0,392.0,452.016,509.0,829.0,280.0,506.0,543.103,585.0,759.0,0.0,10.0,73.0783,139.0,516.0,118.0,121.401,8.31239,21.2672,15.3806,10.0,10.0
+2593,86.486,10.0,4.0,147.0,306.496,654.0,863.0,4.0,395.0,454.245,509.0,1019.0,336.0,506.0,542.787,585.0,728.0,0.0,10.0,71.2605,136.0,515.0,118.0,122.405,7.96762,21.4081,15.2156,10.0,10.0
+2594,86.52,10.0,4.0,147.0,306.149,654.0,856.0,4.0,394.0,453.963,509.0,882.0,330.0,507.0,543.124,585.0,821.0,0.0,10.0,71.7284,136.0,514.0,118.0,122.278,7.70031,21.0974,15.3047,10.0,10.0
+2595,86.553,10.0,4.0,147.0,306.337,654.0,840.0,4.0,392.0,452.626,508.0,805.0,380.0,506.0,542.851,585.0,765.0,0.0,10.0,72.4566,138.0,519.0,118.0,120.915,8.52513,21.3929,15.3684,10.0,10.0
+2596,86.587,10.0,4.0,147.0,306.822,655.0,860.0,4.0,393.0,453.247,509.0,826.0,334.0,506.0,543.054,586.0,753.0,0.0,10.0,72.2089,137.0,515.0,118.0,121.625,7.94912,21.1648,15.4704,10.0,10.0
+2597,86.62,10.0,4.0,148.0,307.387,656.0,850.0,4.0,396.0,453.877,509.0,819.0,356.0,506.0,543.148,586.0,762.0,0.0,10.0,71.5672,135.0,517.0,118.0,122.102,8.9229,21.011,15.2293,10.0,10.0
+2598,86.653,10.0,4.0,148.0,306.129,654.0,872.0,4.0,393.0,452.967,508.0,794.0,336.0,507.0,543.606,586.0,750.0,0.0,10.0,72.459,137.0,516.0,118.0,121.846,9.14044,21.3219,15.3098,10.0,10.0
+2599,86.687,10.0,4.0,147.0,305.932,654.0,852.0,4.0,394.0,453.382,509.0,836.0,310.0,507.0,543.499,586.0,755.0,0.0,10.0,72.055,137.0,515.0,118.0,122.033,7.81428,21.3467,15.4557,10.0,10.0
+2600,86.72,10.0,4.0,147.0,306.429,654.0,914.0,4.0,394.0,453.726,508.0,828.0,326.0,507.0,543.423,586.0,762.0,0.0,10.0,71.7632,136.0,514.0,118.0,121.753,8.63604,21.2716,15.2725,10.0,10.0
+2601,86.753,10.0,4.0,147.0,306.568,654.0,868.0,4.0,395.0,453.335,508.0,830.0,322.0,506.0,543.159,586.0,758.0,0.0,10.0,71.9958,136.0,514.0,118.0,121.598,7.6306,21.3269,15.5369,10.0,10.0
+2602,86.787,10.0,4.0,147.0,305.29,650.0,849.0,4.0,392.0,452.667,508.0,820.0,314.0,507.0,542.943,585.0,749.0,0.0,10.0,72.3794,137.0,520.0,118.0,121.034,8.41625,21.0956,15.3877,10.0,10.0
+2603,86.82,10.0,4.0,148.0,306.218,651.0,849.0,4.0,395.0,453.824,508.0,820.0,344.0,506.0,543.367,586.0,766.0,0.0,10.0,71.7971,136.0,517.0,118.0,121.902,8.1972,21.0865,15.3071,10.0,10.0
+2604,86.853,10.0,4.0,148.0,305.872,651.0,851.0,4.0,394.0,453.892,509.0,828.0,308.0,507.0,543.249,585.0,735.0,0.0,10.0,71.5075,136.0,519.0,119.0,122.674,7.70952,21.3927,15.5654,10.0,10.0
+2605,86.887,10.0,4.0,147.0,305.419,651.0,887.0,4.0,394.0,453.825,509.0,810.0,347.0,507.0,543.138,585.0,737.0,0.0,10.0,71.5238,136.0,520.0,118.0,122.326,8.51871,21.1444,15.3049,10.0,10.0
+2606,86.92,10.0,4.0,148.0,305.678,653.0,858.0,4.0,395.0,453.184,508.0,840.0,272.0,506.0,543.68,587.0,737.0,0.0,10.0,72.3757,137.0,516.0,118.0,121.291,7.72445,21.0894,15.3907,10.0,10.0
+2607,86.954,10.0,4.0,147.0,304.795,653.0,852.0,4.0,394.0,453.539,508.0,854.0,300.0,507.0,543.163,584.0,761.0,0.0,10.0,71.7458,137.0,520.0,118.0,121.735,8.24183,21.3332,15.3904,10.0,10.0
+2608,86.987,10.0,4.0,147.0,304.996,652.0,846.0,4.0,391.0,451.943,508.0,854.0,314.0,506.0,543.818,586.0,761.0,0.0,10.0,73.4573,140.0,521.0,118.0,120.514,8.33318,21.222,15.3544,10.0,10.0
+2609,87.02,10.0,4.0,147.0,305.58,653.0,838.0,4.0,390.0,451.127,508.0,837.0,330.0,507.0,544.685,588.0,761.0,0.0,10.0,74.492,141.0,519.0,118.0,121.119,7.7202,21.1977,15.5537,10.0,10.0
+2610,87.054,10.0,4.0,147.0,306.282,654.0,853.0,4.0,385.0,449.817,508.0,856.0,316.0,507.0,545.074,589.0,760.0,0.0,11.0,76.0703,144.0,522.0,118.0,120.955,8.77098,21.2675,15.5408,10.0,10.0
+2611,87.087,10.0,4.0,148.0,305.93,652.0,849.0,4.0,385.0,449.636,508.0,893.0,302.0,506.0,545.56,589.0,790.0,0.0,10.0,76.3686,145.0,522.0,118.0,121.045,7.85194,21.9408,16.0611,10.0,10.0
+2612,87.12,10.0,4.0,148.0,305.442,652.0,855.0,4.0,384.0,449.006,508.0,832.0,292.0,507.0,544.957,589.0,744.0,0.0,11.0,76.6862,146.0,521.0,118.0,120.922,8.64967,22.0618,15.9638,10.0,10.0
+2613,87.154,10.0,4.0,147.0,305.487,653.0,927.0,4.0,382.0,447.896,508.0,841.0,280.0,506.0,545.272,590.0,776.0,0.0,11.0,77.8189,148.0,519.0,117.0,120.611,8.35607,22.1978,16.1134,10.0,10.0
+2614,87.187,10.0,4.0,148.0,305.553,653.0,853.0,4.0,381.0,447.537,507.0,838.0,316.0,507.0,545.97,590.0,753.0,0.0,11.0,78.3261,149.0,519.0,118.0,120.755,7.58438,22.6833,16.4372,10.0,10.0
+2615,87.22,10.0,4.0,148.0,305.448,653.0,868.0,4.0,380.0,447.429,508.0,810.0,358.0,506.0,545.984,591.0,777.0,0.0,11.0,78.5759,149.0,521.0,118.0,121.239,8.26126,22.7706,16.2566,10.0,10.0
+2616,87.254,10.0,4.0,147.0,305.707,654.0,855.0,4.0,382.0,447.623,508.0,838.0,298.0,507.0,546.462,592.0,778.0,0.0,11.0,78.6854,149.0,519.0,118.0,121.062,7.42145,22.7811,16.4556,10.0,10.0
+2617,87.287,10.0,4.0,148.0,305.632,652.0,855.0,4.0,382.0,447.57,508.0,864.0,364.0,506.0,545.758,591.0,760.0,0.0,11.0,78.4716,148.0,518.0,118.0,121.105,8.64268,22.6339,16.4787,10.0,10.0
+2618,87.321,10.0,4.0,148.0,305.775,653.0,846.0,4.0,380.0,446.323,507.0,845.0,344.0,506.0,546.075,592.0,758.0,0.0,11.0,79.4734,150.0,518.0,118.0,120.037,8.01633,22.4953,16.3916,10.0,10.0
+2619,87.354,10.0,4.0,148.0,306.031,654.0,851.0,4.0,380.0,447.063,508.0,851.0,368.0,507.0,546.741,592.0,782.0,0.0,11.0,79.3247,150.0,521.0,118.0,121.758,7.60404,22.8289,16.3953,10.0,10.0
+2620,87.387,10.0,4.0,149.0,306.78,655.0,857.0,4.0,381.0,447.497,508.0,855.0,354.0,506.0,546.019,592.0,768.0,0.0,11.0,78.6396,149.0,523.0,118.0,120.882,8.05549,22.4791,16.3916,10.0,10.0
+2621,87.421,10.0,4.0,148.0,306.758,656.0,865.0,4.0,383.0,448.048,508.0,875.0,274.0,506.0,545.976,592.0,770.0,0.0,11.0,78.406,148.0,521.0,118.0,121.037,7.4601,22.6014,16.4988,10.0,10.0
+2622,87.454,10.0,4.0,148.0,306.668,656.0,863.0,4.0,381.0,447.273,508.0,856.0,272.0,507.0,546.067,591.0,760.0,0.0,10.0,78.8189,149.0,526.0,118.0,121.409,8.21063,22.4307,16.2018,10.0,10.0
+2623,87.487,10.0,4.0,148.0,307.78,659.0,834.0,4.0,381.0,447.574,508.0,847.0,256.0,506.0,546.918,593.0,785.0,0.0,11.0,79.0893,150.0,523.0,119.0,121.191,8.71622,22.5737,16.5359,10.0,10.0
+2624,87.521,10.0,4.0,148.0,307.732,659.0,930.0,4.0,382.0,447.712,508.0,834.0,304.0,507.0,546.962,592.0,778.0,0.0,11.0,78.9599,149.0,520.0,119.0,122.145,7.49539,22.4424,16.5767,10.0,10.0
+2625,87.554,10.0,4.0,148.0,307.055,656.0,861.0,4.0,380.0,447.069,508.0,866.0,280.0,507.0,546.83,592.0,774.0,0.0,11.0,79.3545,150.0,522.0,118.0,121.043,8.20346,22.2911,16.4233,10.0,10.0
+2626,87.588,10.0,4.0,149.0,307.518,656.0,864.0,4.0,382.0,447.691,508.0,841.0,316.0,507.0,547.672,594.0,783.0,0.0,11.0,79.1667,150.0,520.0,119.0,122.03,7.33465,22.591,16.4925,10.0,10.0
+2627,87.621,10.0,4.0,149.0,308.001,656.0,928.0,4.0,380.0,446.741,508.0,875.0,295.0,508.0,547.493,592.0,762.0,0.0,11.0,79.8971,151.0,521.0,119.0,121.965,8.07383,22.3828,16.3393,10.0,10.0
+2628,87.654,10.0,4.0,149.0,306.58,655.0,937.0,4.0,381.0,447.192,507.0,943.0,314.0,507.0,547.642,593.0,742.0,0.0,11.0,79.4129,150.0,530.0,119.0,121.459,8.09426,22.4999,16.2009,10.0,10.0
+2629,87.688,10.0,4.0,150.0,307.452,656.0,852.0,4.0,381.0,447.175,507.0,887.0,298.0,508.0,547.654,593.0,816.0,0.0,11.0,79.5351,150.0,520.0,119.0,121.863,7.34835,22.7054,16.3181,10.0,10.0
+2630,87.721,10.0,4.0,149.0,307.198,657.0,858.0,4.0,381.0,447.21,508.0,866.0,308.0,507.0,546.561,592.0,760.0,0.0,11.0,78.9836,150.0,518.0,118.0,120.889,8.11407,22.5613,16.236,10.0,10.0
+2631,87.754,10.0,4.0,148.0,307.07,657.0,858.0,4.0,382.0,447.665,507.0,883.0,304.0,507.0,546.746,592.0,789.0,0.0,11.0,78.8094,148.0,524.0,118.0,121.025,7.45358,22.5002,16.3629,10.0,10.0
+2632,87.788,10.0,4.0,149.0,306.243,653.0,852.0,4.0,379.0,446.649,508.0,850.0,288.0,506.0,546.942,593.0,759.0,0.0,11.0,79.8329,153.0,519.0,118.0,121.342,8.00047,22.7387,16.6552,10.0,10.0
+2633,87.821,10.0,4.0,147.0,306.718,656.0,851.0,4.0,381.0,447.184,508.0,849.0,330.0,507.0,547.167,593.0,776.0,0.0,11.0,79.3534,150.0,519.0,119.0,121.541,8.18305,22.8393,16.6827,10.0,10.0
+2634,87.854,10.0,4.0,149.0,307.276,656.0,849.0,4.0,381.0,447.444,508.0,970.0,280.0,507.0,546.925,592.0,764.0,0.0,11.0,79.1594,149.0,519.0,119.0,121.691,7.48406,22.6705,16.7498,10.0,10.0
+2635,87.888,10.0,4.0,149.0,306.945,655.0,842.0,4.0,381.0,447.485,508.0,885.0,350.0,506.0,545.715,591.0,758.0,0.0,11.0,78.7218,149.0,521.0,118.0,120.886,8.12497,22.5403,16.4261,10.0,10.0
+2636,87.921,10.0,4.0,148.0,306.801,656.0,860.0,4.0,380.0,447.354,508.0,938.0,313.0,506.0,545.741,590.0,775.0,0.0,11.0,78.7975,148.0,515.0,118.0,120.713,7.41731,23.066,16.5436,10.0,10.0
+2637,87.955,10.0,4.0,148.0,307.832,658.0,862.0,4.0,382.0,448.643,509.0,857.0,262.0,507.0,546.06,591.0,774.0,0.0,10.0,77.823,148.0,521.0,118.0,122.431,8.30563,23.0273,16.3239,10.0,10.0
+2638,87.988,10.0,4.0,148.0,307.209,656.0,865.0,4.0,382.0,448.164,508.0,1019.0,308.0,506.0,545.774,591.0,784.0,0.0,11.0,78.1431,148.0,517.0,118.0,121.86,8.39577,22.7655,16.3907,10.0,10.0
+2639,88.021,10.0,4.0,148.0,307.162,655.0,927.0,4.0,382.0,448.254,508.0,890.0,283.0,506.0,545.686,591.0,764.0,0.0,11.0,77.974,148.0,523.0,118.0,121.696,7.85488,22.6276,16.5825,10.0,10.0
+2640,88.055,10.0,4.0,148.0,307.507,656.0,868.0,4.0,382.0,447.731,508.0,884.0,334.0,506.0,545.422,591.0,763.0,0.0,11.0,78.2391,149.0,520.0,117.0,120.633,8.82389,22.6087,16.3185,10.0,10.0
+2641,88.088,10.0,4.0,148.0,307.811,657.0,850.0,4.0,383.0,448.2,508.0,859.0,305.0,506.0,545.537,591.0,816.0,0.0,11.0,77.952,148.0,518.0,118.0,120.812,7.87563,22.4271,16.2215,10.0,10.0
+2642,88.121,10.0,4.0,148.0,308.231,657.0,940.0,4.0,380.0,447.748,508.0,837.0,296.0,506.0,545.392,591.0,811.0,0.0,11.0,78.3964,149.0,521.0,118.0,120.933,8.66152,22.4249,16.3879,10.0,10.0
+2643,88.155,10.0,4.0,149.0,308.592,658.0,860.0,4.0,381.0,447.902,508.0,834.0,285.0,506.0,544.831,590.0,920.0,0.0,10.0,78.1401,149.0,525.0,117.0,120.636,8.89083,22.5551,16.236,10.0,10.0
+2644,88.188,10.0,4.0,148.0,308.724,658.0,872.0,4.0,383.0,448.878,509.0,857.0,319.0,506.0,544.521,589.0,925.0,0.0,10.0,77.0428,147.0,516.0,118.0,121.593,7.65904,22.5055,16.2726,10.0,10.0
+2645,88.221,10.0,4.0,147.0,308.477,658.0,928.0,4.0,383.0,448.698,508.0,866.0,285.0,506.0,544.258,589.0,933.0,0.0,11.0,77.2122,148.0,519.0,117.0,120.426,8.80105,22.5968,16.4814,10.0,10.0
+2646,88.255,10.0,4.0,147.0,307.616,657.0,852.0,4.0,383.0,448.333,508.0,859.0,326.0,506.0,544.878,590.0,917.0,0.0,11.0,77.7541,147.0,517.0,117.0,120.771,7.75214,22.3557,16.2743,10.0,10.0
+2647,88.288,10.0,4.0,148.0,308.632,660.0,861.0,4.0,384.0,448.336,508.0,837.0,315.0,506.0,544.849,589.0,914.0,0.0,11.0,77.5489,147.0,523.0,117.0,121.257,9.1115,22.7423,16.2729,10.0,10.0
+2648,88.322,10.0,4.0,147.0,308.568,659.0,854.0,4.0,380.0,446.986,507.0,882.0,272.0,506.0,544.841,590.0,950.0,0.0,11.0,78.7668,149.0,524.0,117.0,119.683,8.56394,22.3941,16.1929,10.0,10.0
+2649,88.355,10.0,4.0,148.0,308.689,659.0,849.0,4.0,380.0,446.965,508.0,856.0,284.0,506.0,545.628,590.0,923.0,0.0,11.0,79.0288,150.0,523.0,118.0,120.637,7.62669,22.5991,16.3471,10.0,10.0
+2650,88.388,10.0,4.0,148.0,308.996,659.0,853.0,4.0,382.0,448.219,508.0,887.0,273.0,506.0,545.106,590.0,949.0,0.0,11.0,77.7685,148.0,520.0,117.0,121.148,8.58921,22.9019,16.5483,10.0,10.0
+2651,88.422,10.0,4.0,148.0,309.538,661.0,853.0,4.0,384.0,448.63,508.0,974.0,288.0,506.0,545.093,591.0,791.0,0.0,11.0,77.6661,148.0,533.0,118.0,121.449,7.59948,22.7756,16.4606,10.0,10.0
+2652,88.455,10.0,4.0,147.0,308.058,659.0,914.0,4.0,382.0,449.087,508.0,979.0,338.0,506.0,544.4,590.0,770.0,0.0,11.0,77.0166,148.0,528.0,117.0,121.383,8.34319,22.936,16.481,10.0,10.0
+2653,88.488,10.0,4.0,147.0,308.095,659.0,839.0,4.0,382.0,447.788,508.0,907.0,221.0,506.0,544.694,589.0,857.0,0.0,11.0,78.0103,148.0,516.0,117.0,120.265,8.15099,22.7243,16.1833,10.0,10.0
+2654,88.522,10.0,4.0,148.0,308.558,659.0,854.0,4.0,380.0,447.731,508.0,1019.0,312.0,506.0,545.656,591.0,761.0,0.0,11.0,78.5233,150.0,522.0,118.0,121.638,7.67797,22.5952,16.5725,10.0,10.0
+2655,88.555,10.0,4.0,148.0,307.959,656.0,847.0,4.0,381.0,447.543,508.0,983.0,305.0,506.0,545.348,591.0,786.0,0.0,11.0,78.373,150.0,541.0,117.0,120.266,8.55999,22.3969,16.5442,10.0,10.0
+2656,88.589,10.0,4.0,146.0,306.563,654.0,847.0,4.0,380.0,447.326,508.0,850.0,308.0,505.0,544.948,590.0,866.0,0.0,11.0,78.5652,149.0,517.0,117.0,120.201,7.99199,22.6868,16.4457,10.0,10.0
+2657,88.622,10.0,4.0,149.0,308.852,658.0,933.0,4.0,384.0,448.899,509.0,861.0,366.0,506.0,544.614,589.0,823.0,0.0,10.0,77.0585,147.0,521.0,118.0,121.429,8.57389,22.6371,16.4286,10.0,10.0
+2658,88.655,10.0,4.0,147.0,308.859,660.0,926.0,4.0,384.0,449.18,508.0,1019.0,259.0,505.0,544.238,590.0,770.0,0.0,11.0,76.943,147.0,518.0,117.0,120.491,8.46143,22.4789,16.3261,10.0,10.0
+2659,88.689,10.0,4.0,148.0,308.363,657.0,935.0,4.0,384.0,449.153,509.0,911.0,337.0,506.0,544.886,590.0,781.0,0.0,10.0,77.0057,147.0,524.0,118.0,121.7,7.7295,22.6098,16.4532,10.0,10.0
+2660,88.722,10.0,4.0,147.0,308.059,656.0,851.0,4.0,384.0,449.125,508.0,853.0,298.0,506.0,544.575,589.0,774.0,0.0,11.0,76.9454,147.0,516.0,117.0,121.021,8.46379,22.2739,16.2005,10.0,10.0
+2661,88.755,10.0,4.0,146.0,308.502,657.0,866.0,4.0,384.0,449.139,508.0,837.0,301.0,506.0,544.909,589.0,856.0,0.0,11.0,76.9527,147.0,515.0,118.0,121.402,7.54274,22.3087,16.4795,10.0,10.0
+2662,88.789,10.0,4.0,148.0,308.852,656.0,847.0,4.0,381.0,447.886,508.0,856.0,281.0,506.0,545.332,590.0,752.0,0.0,11.0,78.0463,149.0,523.0,118.0,120.979,8.49786,22.4989,16.3758,10.0,10.0
+2663,88.822,10.0,4.0,148.0,308.936,657.0,854.0,4.0,382.0,448.037,507.0,869.0,274.0,506.0,545.164,590.0,782.0,0.0,11.0,77.9348,148.0,524.0,117.0,120.676,8.04184,22.5863,16.3572,10.0,10.0
+2664,88.855,10.0,4.0,149.0,310.257,659.0,857.0,4.0,383.0,448.358,508.0,866.0,283.0,506.0,545.361,590.0,783.0,0.0,11.0,77.6913,148.0,520.0,118.0,121.47,7.83021,22.5567,16.4352,10.0,10.0
+2665,88.889,10.0,4.0,148.0,309.47,659.0,857.0,4.0,383.0,448.973,509.0,911.0,362.0,506.0,544.744,589.0,781.0,0.0,10.0,77.0888,148.0,519.0,118.0,122.154,8.66537,22.5088,16.5111,10.0,10.0
+2666,88.922,10.0,4.0,147.0,309.32,659.0,860.0,4.0,384.0,449.023,509.0,882.0,322.0,506.0,544.666,589.0,765.0,0.0,10.0,77.113,147.0,523.0,118.0,121.733,7.97904,22.5099,16.4132,10.0,10.0
+2667,88.956,10.0,4.0,147.0,308.651,658.0,892.0,4.0,383.0,449.019,509.0,843.0,369.0,506.0,544.727,590.0,760.0,0.0,10.0,77.2181,148.0,520.0,118.0,121.75,8.70455,22.2943,16.3385,10.0,10.0
+2668,88.989,10.0,4.0,148.0,309.633,660.0,862.0,4.0,382.0,448.07,507.0,866.0,376.0,506.0,545.523,590.0,783.0,0.0,11.0,78.0863,148.0,517.0,118.0,120.703,8.57385,22.4604,16.5788,10.0,10.0
+2669,89.022,10.0,4.0,148.0,309.546,659.0,860.0,4.0,380.0,447.199,508.0,910.0,306.0,507.0,545.974,591.0,765.0,0.0,11.0,78.8338,150.0,517.0,118.0,121.504,7.73846,22.6428,16.406,10.0,10.0
+2670,89.056,10.0,4.0,148.0,309.59,658.0,854.0,4.0,381.0,447.556,508.0,893.0,313.0,506.0,545.592,590.0,755.0,0.0,11.0,78.5572,149.0,521.0,118.0,120.827,8.46263,22.4095,16.4676,10.0,10.0
+2671,89.089,10.0,4.0,148.0,309.896,659.0,867.0,4.0,381.0,447.748,508.0,876.0,294.0,506.0,545.691,590.0,761.0,0.0,11.0,78.2568,149.0,526.0,118.0,121.03,7.64397,22.6408,16.4648,10.0,10.0
+2672,89.122,10.0,4.0,148.0,308.711,655.0,860.0,4.0,380.0,446.922,508.0,889.0,312.0,506.0,545.376,590.0,792.0,0.0,11.0,78.9006,150.0,519.0,117.0,120.695,8.52547,22.4127,16.0713,10.0,10.0
+2673,89.156,10.0,4.0,149.0,309.575,657.0,861.0,4.0,378.0,446.041,507.0,834.0,284.0,506.0,546.186,592.0,741.0,0.0,11.0,79.9088,152.0,524.0,117.0,120.436,9.19793,22.5056,16.3798,10.0,10.0
+2674,89.189,10.0,4.0,149.0,309.485,658.0,864.0,4.0,379.0,446.307,507.0,876.0,367.0,507.0,546.496,592.0,749.0,0.0,11.0,79.7271,152.0,521.0,118.0,120.814,8.57788,22.6239,16.4733,10.0,10.0
+2675,89.222,10.0,4.0,148.0,309.605,660.0,853.0,4.0,380.0,446.255,507.0,829.0,318.0,506.0,546.175,592.0,771.0,0.0,11.0,79.7491,150.0,523.0,117.0,119.939,10.5144,22.766,16.4978,10.0,10.0
+2676,89.256,10.0,4.0,148.0,310.278,662.0,866.0,4.0,378.0,445.465,507.0,918.0,346.0,506.0,546.492,592.0,771.0,0.0,11.0,80.6105,153.0,522.0,117.0,119.856,8.76673,22.4908,16.3005,10.0,10.0
+2677,89.289,10.0,4.0,148.0,309.649,661.0,855.0,4.0,378.0,445.857,508.0,843.0,358.0,507.0,545.984,591.0,784.0,0.0,11.0,79.8912,153.0,518.0,117.0,120.666,10.0233,22.6913,16.4144,10.0,10.0
+2678,89.323,10.0,4.0,148.0,308.795,658.0,859.0,4.0,378.0,445.388,507.0,861.0,284.0,506.0,546.348,592.0,766.0,0.0,12.0,80.4823,153.0,516.0,117.0,119.537,9.43696,22.7611,16.4532,10.0,10.0
+2679,89.356,10.0,4.0,149.0,308.755,657.0,847.0,4.0,378.0,445.462,507.0,848.0,247.0,507.0,546.652,592.0,788.0,0.0,11.0,80.7373,152.0,519.0,118.0,120.801,8.00197,22.994,16.3938,10.0,10.0
+2680,89.389,10.0,4.0,148.0,308.071,656.0,862.0,4.0,379.0,445.656,507.0,864.0,330.0,506.0,546.133,592.0,776.0,0.0,11.0,80.3319,152.0,517.0,117.0,120.109,9.74487,22.5483,16.3939,10.0,10.0
+2681,89.423,10.0,4.0,148.0,308.646,656.0,861.0,4.0,379.0,446.194,507.0,869.0,312.0,506.0,546.157,592.0,790.0,0.0,11.0,79.7678,151.0,517.0,117.0,119.853,8.09332,22.3965,16.4799,10.0,10.0
+2682,89.456,10.0,4.0,148.0,308.009,656.0,858.0,4.0,379.0,446.014,507.0,898.0,344.0,506.0,546.306,592.0,769.0,0.0,12.0,79.9047,152.0,522.0,117.0,120.19,8.64524,22.2511,16.3459,10.0,10.0
+2683,89.489,10.0,4.0,148.0,308.374,659.0,852.0,4.0,378.0,445.369,507.0,880.0,292.0,506.0,545.816,592.0,790.0,0.0,12.0,80.3646,153.0,521.0,117.0,118.922,8.48961,22.4634,16.4786,10.0,10.0
+2684,89.523,10.0,4.0,148.0,309.111,660.0,852.0,4.0,379.0,446.091,507.0,881.0,358.0,507.0,546.389,592.0,765.0,0.0,11.0,79.8277,151.0,526.0,117.0,120.228,7.44246,22.3046,16.6445,10.0,10.0
+2685,89.556,10.0,4.0,149.0,309.271,660.0,924.0,4.0,378.0,445.157,507.0,866.0,337.0,506.0,545.941,592.0,765.0,0.0,12.0,80.7247,154.0,521.0,117.0,119.096,8.19094,22.4229,16.4352,10.0,10.0
+2686,89.59,10.0,4.0,148.0,308.469,659.0,846.0,4.0,378.0,444.924,507.0,856.0,358.0,506.0,545.986,592.0,760.0,0.0,12.0,80.9302,153.0,521.0,117.0,119.207,7.43034,22.3525,16.5395,10.0,10.0
+2687,89.623,10.0,4.0,150.0,308.523,657.0,917.0,4.0,378.0,445.816,507.0,856.0,326.0,506.0,546.371,592.0,793.0,0.0,12.0,80.277,152.0,524.0,117.0,120.622,8.29336,22.7487,16.4261,10.0,10.0
+2688,89.656,10.0,4.0,149.0,308.911,658.0,858.0,4.0,377.0,445.04,507.0,828.0,302.0,506.0,546.309,592.0,782.0,0.0,12.0,80.9146,154.0,521.0,117.0,119.598,8.43033,22.7574,16.4029,10.0,10.0
+2689,89.69,10.0,4.0,149.0,308.648,659.0,855.0,4.0,378.0,445.343,507.0,858.0,325.0,506.0,546.359,593.0,749.0,0.0,11.0,80.6119,152.0,525.0,117.0,119.871,7.66325,22.4564,16.3865,10.0,10.0
+2690,89.723,10.0,4.0,149.0,308.811,660.0,859.0,4.0,378.0,445.435,507.0,854.0,326.0,506.0,545.737,592.0,785.0,0.0,11.0,80.3681,152.0,523.0,117.0,119.571,8.5502,22.5324,16.4352,10.0,10.0
+2691,89.756,10.0,4.0,148.0,309.04,660.0,928.0,4.0,378.0,445.853,507.0,936.0,338.0,506.0,546.586,593.0,801.0,0.0,12.0,80.3252,153.0,525.0,117.0,119.708,7.75518,22.7465,16.5862,10.0,10.0
+2692,89.79,10.0,4.0,149.0,307.068,653.0,855.0,4.0,378.0,446.03,507.0,919.0,272.0,506.0,545.284,591.0,800.0,0.0,11.0,79.6642,152.0,519.0,117.0,119.98,9.6192,22.4336,16.7011,10.0,10.0
+2693,89.823,10.0,4.0,149.0,308.025,658.0,860.0,4.0,379.0,445.861,507.0,848.0,334.0,506.0,545.383,592.0,784.0,0.0,12.0,79.746,152.0,519.0,117.0,119.725,9.5531,22.5878,16.5042,10.0,10.0
+2694,89.856,10.0,4.0,148.0,307.786,657.0,856.0,4.0,379.0,446.453,507.0,855.0,348.0,507.0,545.992,591.0,747.0,0.0,11.0,79.3765,152.0,524.0,117.0,120.232,7.66966,22.5901,16.4109,10.0,10.0
+2695,89.89,10.0,4.0,148.0,307.118,655.0,854.0,4.0,379.0,446.734,508.0,818.0,378.0,506.0,545.598,591.0,755.0,0.0,11.0,79.2216,150.0,522.0,117.0,120.671,8.65668,22.5544,16.4552,10.0,10.0
+2696,89.923,10.0,4.0,148.0,306.485,654.0,856.0,4.0,379.0,446.612,508.0,823.0,338.0,506.0,545.598,591.0,778.0,0.0,11.0,79.337,151.0,519.0,117.0,119.808,7.70336,22.3438,16.2227,10.0,10.0
+2697,89.957,10.0,4.0,148.0,306.48,654.0,855.0,4.0,380.0,447.355,508.0,833.0,344.0,506.0,544.991,591.0,780.0,0.0,11.0,78.4797,149.0,520.0,117.0,120.538,8.8183,22.3988,16.2708,10.0,10.0
+2698,89.99,10.0,4.0,147.0,306.192,655.0,845.0,4.0,380.0,446.841,507.0,824.0,344.0,506.0,545.044,590.0,775.0,0.0,11.0,78.9452,150.0,521.0,117.0,119.387,9.63206,22.5783,16.3797,10.0,10.0
+2699,90.023,10.0,4.0,147.0,306.494,656.0,853.0,4.0,378.0,446.752,507.0,824.0,347.0,506.0,545.583,590.0,783.0,0.0,11.0,79.0643,151.0,520.0,117.0,120.46,7.53238,22.577,16.4731,10.0,10.0
+2700,90.057,10.0,4.0,148.0,307.168,658.0,847.0,4.0,380.0,446.656,508.0,832.0,336.0,506.0,545.013,590.0,790.0,0.0,11.0,79.1551,150.0,519.0,117.0,120.187,8.6359,22.7609,16.6328,10.0,10.0
+2701,90.09,10.0,4.0,148.0,307.598,658.0,861.0,4.0,381.0,447.893,508.0,846.0,272.0,506.0,545.14,590.0,768.0,0.0,11.0,78.2162,148.0,523.0,117.0,120.897,7.87373,22.5885,16.5842,10.0,10.0
+2702,90.123,10.0,4.0,148.0,306.327,655.0,928.0,4.0,380.0,447.111,508.0,888.0,310.0,506.0,544.558,589.0,774.0,0.0,11.0,78.5637,149.0,520.0,117.0,120.342,8.88189,22.2872,16.293,10.0,10.0
+2703,90.157,10.0,4.0,148.0,307.757,659.0,849.0,4.0,380.0,447.863,508.0,848.0,344.0,506.0,544.559,589.0,775.0,0.0,10.0,77.9351,149.0,524.0,117.0,120.097,8.78119,22.5915,16.447,10.0,10.0
+2704,90.19,10.0,4.0,148.0,307.355,659.0,933.0,4.0,380.0,447.463,508.0,839.0,304.0,506.0,545.135,590.0,769.0,0.0,11.0,78.5005,150.0,521.0,117.0,120.604,7.75323,22.6407,16.4989,10.0,10.0
+2705,90.223,10.0,4.0,148.0,307.282,658.0,852.0,4.0,380.0,447.094,508.0,847.0,332.0,506.0,545.089,589.0,752.0,0.0,11.0,78.813,150.0,519.0,117.0,120.636,8.73607,22.4808,16.6197,10.0,10.0
+2706,90.257,10.0,4.0,147.0,307.419,658.0,843.0,4.0,379.0,446.489,507.0,887.0,336.0,506.0,545.402,590.0,773.0,0.0,11.0,79.2331,150.0,521.0,117.0,119.573,7.7186,22.665,16.2323,10.0,10.0
+2707,90.29,10.0,4.0,147.0,306.505,657.0,860.0,4.0,380.0,447.904,508.0,804.0,328.0,506.0,545.294,590.0,787.0,0.0,11.0,78.0594,149.0,524.0,118.0,121.865,8.83832,22.6672,16.4186,10.0,10.0
+2708,90.324,10.0,4.0,147.0,304.765,655.0,851.0,4.0,380.0,447.274,508.0,900.0,404.0,505.0,544.883,590.0,867.0,0.0,11.0,78.5194,149.0,516.0,117.0,120.025,9.29306,22.4149,16.4326,10.0,10.0
+2709,90.357,10.0,4.0,147.0,304.444,654.0,858.0,4.0,380.0,447.863,508.0,857.0,368.0,506.0,545.247,589.0,904.0,0.0,10.0,78.0887,149.0,515.0,117.0,120.826,8.13243,22.4323,16.2554,10.0,10.0
+2710,90.39,10.0,4.0,147.0,303.329,653.0,896.0,4.0,382.0,448.487,509.0,905.0,370.0,505.0,544.275,589.0,825.0,0.0,10.0,77.3455,147.0,521.0,117.0,120.777,9.63665,22.5693,16.3923,10.0,10.0
+2711,90.424,10.0,4.0,146.0,303.038,653.0,930.0,4.0,383.0,448.982,508.0,1019.0,314.0,505.0,544.577,589.0,782.0,0.0,11.0,77.2227,147.0,523.0,117.0,120.487,8.18799,22.6251,16.2886,10.0,10.0
+2712,90.457,10.0,4.0,146.0,302.088,653.0,865.0,4.0,380.0,447.453,508.0,1019.0,348.0,506.0,545.011,590.0,784.0,0.0,11.0,78.5155,149.0,541.0,117.0,120.633,9.13287,22.1665,16.2278,10.0,10.0
+2713,90.49,10.0,4.0,146.0,302.405,654.0,861.0,4.0,379.0,447.188,507.0,1019.0,312.0,506.0,545.598,591.0,786.0,0.0,11.0,78.9562,150.0,519.0,117.0,120.335,8.99923,22.3601,16.3522,10.0,10.0
+2714,90.524,10.0,4.0,146.0,302.539,652.0,855.0,4.0,380.0,447.279,507.0,1019.0,302.0,507.0,546.253,591.0,780.0,0.0,11.0,79.0391,150.0,533.0,118.0,121.226,7.91591,22.519,16.3956,10.0,10.0
+2715,90.557,10.0,4.0,147.0,303.543,653.0,853.0,4.0,380.0,446.532,507.0,1019.0,364.0,506.0,545.909,591.0,789.0,0.0,12.0,79.5929,151.0,553.0,117.0,119.709,9.06983,22.5987,16.5029,10.0,10.0
+2716,90.591,10.0,4.0,146.0,304.025,654.0,896.0,4.0,378.0,446.042,507.0,1019.0,328.0,506.0,545.916,591.0,768.0,0.0,11.0,80.0667,152.0,528.0,117.0,120.251,7.85366,22.5094,16.6,10.0,10.0
+2717,90.624,10.0,4.0,147.0,303.164,649.0,845.0,4.0,379.0,446.539,507.0,1019.0,292.0,506.0,545.949,591.0,768.0,0.0,11.0,79.5383,151.0,517.0,117.0,120.341,9.17578,22.7422,16.5754,10.0,10.0
+2718,90.657,10.0,4.0,147.0,304.012,652.0,856.0,4.0,379.0,446.623,507.0,855.0,262.0,506.0,545.858,591.0,744.0,0.0,11.0,79.3117,150.0,519.0,117.0,120.178,9.32241,22.7213,16.4207,10.0,10.0
+2719,90.691,10.0,4.0,147.0,303.87,652.0,856.0,4.0,379.0,446.467,507.0,836.0,344.0,506.0,546.278,592.0,779.0,0.0,11.0,79.7077,151.0,520.0,117.0,120.317,8.10879,22.6984,16.4385,10.0,10.0
+2720,90.724,10.0,4.0,147.0,304.757,655.0,854.0,4.0,378.0,446.241,507.0,975.0,294.0,506.0,545.614,592.0,761.0,0.0,11.0,79.8028,153.0,521.0,117.0,120.171,9.73255,22.8577,16.5081,10.0,10.0
+2721,90.757,10.0,4.0,146.0,304.759,655.0,921.0,4.0,378.0,446.127,507.0,872.0,295.0,506.0,546.628,593.0,886.0,0.0,11.0,80.3497,153.0,520.0,118.0,120.318,8.27294,22.7226,16.5617,10.0,10.0
+2722,90.791,10.0,4.0,148.0,304.952,655.0,849.0,4.0,378.0,445.227,507.0,872.0,340.0,506.0,546.08,591.0,785.0,0.0,11.0,80.7092,152.0,521.0,117.0,120.04,9.18587,22.604,16.5634,10.0,10.0
+2723,90.824,10.0,4.0,147.0,304.857,654.0,850.0,4.0,378.0,445.064,507.0,852.0,318.0,506.0,546.667,592.0,779.0,0.0,12.0,80.9092,153.0,524.0,117.0,119.799,9.55658,22.8671,16.6871,10.0,10.0
+2724,90.857,10.0,4.0,148.0,305.29,653.0,929.0,4.0,378.0,444.955,507.0,881.0,367.0,506.0,547.239,593.0,781.0,0.0,12.0,81.4659,154.0,520.0,118.0,120.319,8.01628,22.8503,16.7443,10.0,10.0
+2725,90.891,10.0,4.0,148.0,305.269,652.0,856.0,4.0,376.0,444.052,507.0,855.0,259.0,506.0,546.756,593.0,785.0,0.0,12.0,82.0675,154.0,518.0,117.0,119.621,9.10768,22.9003,16.8308,10.0,10.0
+2726,90.924,10.0,4.0,147.0,305.164,653.0,929.0,4.0,375.0,443.521,507.0,870.0,262.0,506.0,547.327,594.0,794.0,0.0,12.0,82.771,156.0,519.0,117.0,119.469,7.78416,22.701,16.7926,10.0,10.0
+2727,90.958,10.0,4.0,147.0,305.754,655.0,862.0,4.0,373.0,442.488,507.0,889.0,338.0,506.0,546.998,593.0,778.0,0.0,12.0,83.6728,158.0,518.0,117.0,119.605,9.58948,22.9276,16.7169,10.0,10.0
+2728,90.991,10.0,4.0,147.0,305.36,653.0,865.0,4.0,374.0,442.643,506.0,867.0,262.0,506.0,546.793,593.0,769.0,0.0,12.0,83.4363,156.0,520.0,116.0,119.271,10.0282,23.374,17.005,10.0,10.0
+2729,91.024,10.0,4.0,147.0,305.38,653.0,863.0,4.0,373.0,441.863,507.0,874.0,329.0,506.0,547.054,594.0,778.0,0.0,12.0,84.175,159.0,527.0,116.0,119.124,8.21361,23.4339,17.1513,10.0,10.0
+2730,91.058,10.0,4.0,148.0,305.277,654.0,854.0,4.0,374.0,442.642,507.0,876.0,277.0,506.0,546.577,593.0,796.0,0.0,12.0,83.3852,157.0,522.0,116.0,118.698,9.49549,23.4379,17.2225,10.0,10.0
+2731,91.091,10.0,4.0,148.0,305.588,654.0,860.0,4.0,374.0,442.799,507.0,863.0,371.0,505.0,546.786,594.0,778.0,0.0,12.0,83.3506,157.0,527.0,117.0,119.09,8.18516,23.0499,16.894,10.0,10.0
+2732,91.124,10.0,4.0,147.0,304.696,653.0,846.0,4.0,372.0,441.881,507.0,881.0,333.0,506.0,546.356,593.0,783.0,0.0,12.0,83.9361,158.0,520.0,116.0,118.926,9.32079,23.561,17.1603,10.0,10.0
+2733,91.158,10.0,4.0,147.0,303.555,649.0,867.0,4.0,374.0,442.732,507.0,855.0,369.0,506.0,547.082,594.0,760.0,0.0,12.0,83.3736,156.0,519.0,117.0,119.74,8.84662,23.3686,16.9835,10.0,10.0
+2734,91.191,10.0,4.0,147.0,303.895,650.0,849.0,4.0,374.0,443.356,508.0,870.0,330.0,506.0,546.703,594.0,776.0,0.0,11.0,83.0932,158.0,523.0,117.0,120.464,8.06199,23.5623,17.3612,10.0,10.0
+2735,91.224,10.0,4.0,147.0,303.651,649.0,852.0,4.0,375.0,444.128,508.0,876.0,351.0,506.0,546.717,594.0,804.0,0.0,12.0,82.2866,156.0,525.0,117.0,120.461,9.18772,23.4993,17.138,10.0,10.0
+2736,91.258,10.0,4.0,147.0,303.283,649.0,857.0,4.0,375.0,444.562,507.0,885.0,384.0,506.0,547.124,594.0,768.0,0.0,11.0,82.1164,156.0,523.0,117.0,120.411,7.91352,23.2385,17.0432,10.0,10.0
+2737,91.291,10.0,4.0,147.0,304.257,653.0,852.0,4.0,376.0,444.853,507.0,918.0,366.0,506.0,547.074,594.0,761.0,0.0,11.0,81.7086,155.0,521.0,118.0,120.8,8.6749,23.5091,16.9311,10.0,10.0
+2738,91.325,10.0,4.0,147.0,303.203,650.0,924.0,4.0,375.0,444.582,507.0,834.0,355.0,506.0,547.614,595.0,778.0,0.0,12.0,82.3005,156.0,520.0,118.0,120.536,8.98779,23.3894,17.0695,10.0,10.0
+2739,91.358,10.0,4.0,148.0,303.527,650.0,902.0,4.0,375.0,444.437,508.0,850.0,269.0,506.0,547.673,594.0,780.0,0.0,12.0,82.5962,156.0,522.0,118.0,121.718,7.90309,23.51,17.0169,10.0,10.0
+2740,91.391,10.0,4.0,147.0,303.578,650.0,858.0,4.0,376.0,444.433,507.0,903.0,272.0,505.0,546.92,595.0,760.0,0.0,11.0,82.2024,156.0,521.0,117.0,119.981,9.36392,23.6921,17.1702,10.0,10.0
+2741,91.425,10.0,4.0,147.0,304.08,653.0,850.0,4.0,377.0,444.897,507.0,869.0,298.0,505.0,547.625,595.0,782.0,0.0,12.0,82.2763,155.0,535.0,118.0,120.595,8.16191,23.6856,17.0072,10.0,10.0
+2742,91.458,10.0,4.0,146.0,302.211,648.0,926.0,4.0,376.0,444.923,508.0,909.0,308.0,506.0,547.146,594.0,778.0,0.0,11.0,81.8603,156.0,520.0,118.0,121.331,10.4688,23.8818,17.1727,10.0,10.0
+2743,91.491,10.0,4.0,146.0,302.481,651.0,856.0,4.0,378.0,446.063,508.0,854.0,360.0,505.0,545.775,592.0,802.0,0.0,11.0,80.3428,153.0,519.0,117.0,120.451,9.49573,23.4843,16.872,10.0,10.0
+2744,91.525,10.0,4.0,146.0,301.981,650.0,855.0,4.0,379.0,447.107,509.0,865.0,256.0,506.0,546.196,592.0,788.0,0.0,11.0,79.63,152.0,526.0,118.0,122.449,8.31276,23.4141,16.8809,10.0,10.0
+2745,91.558,10.0,4.0,146.0,301.632,649.0,874.0,4.0,379.0,446.873,509.0,877.0,347.0,506.0,545.924,592.0,779.0,0.0,10.0,79.6989,152.0,532.0,118.0,121.745,10.3261,23.5101,16.8402,10.0,10.0
+2746,91.592,10.0,4.0,146.0,301.827,649.0,857.0,4.0,378.0,446.306,508.0,870.0,350.0,506.0,546.118,592.0,752.0,0.0,11.0,80.2473,153.0,521.0,117.0,120.971,8.57075,23.2499,16.8886,10.0,10.0
+2747,91.625,10.0,4.0,147.0,301.94,650.0,855.0,4.0,379.0,446.567,508.0,891.0,366.0,506.0,546.061,592.0,793.0,0.0,10.0,79.9879,152.0,525.0,118.0,121.531,9.02797,22.9419,16.791,10.0,10.0
+2748,91.658,10.0,4.0,147.0,302.189,649.0,858.0,4.0,379.0,446.8,507.0,865.0,370.0,506.0,546.921,592.0,785.0,0.0,11.0,79.9718,151.0,527.0,118.0,121.37,10.1237,22.8415,16.8039,10.0,10.0
+2749,91.692,10.0,4.0,147.0,302.221,649.0,855.0,4.0,380.0,446.795,508.0,858.0,368.0,506.0,547.386,593.0,760.0,0.0,11.0,80.3114,151.0,514.0,119.0,122.618,8.76154,23.2243,16.7309,10.0,10.0
+2750,91.725,10.0,4.0,147.0,301.704,648.0,851.0,4.0,378.0,446.246,508.0,852.0,358.0,505.0,546.147,593.0,786.0,0.0,11.0,80.3158,153.0,521.0,117.0,120.936,10.0265,23.2757,16.8353,10.0,10.0
+2751,91.758,10.0,4.0,146.0,301.757,648.0,910.0,4.0,380.0,447.06,508.0,820.0,317.0,506.0,546.714,593.0,769.0,0.0,11.0,79.7433,152.0,522.0,118.0,121.721,8.19992,23.3067,17.0125,10.0,10.0
+2752,91.792,10.0,4.0,147.0,301.797,649.0,849.0,4.0,378.0,446.593,509.0,727.0,298.0,505.0,545.5,592.0,796.0,0.0,10.0,79.764,152.0,523.0,117.0,121.854,9.23008,23.3465,16.9939,10.0,10.0
+2753,91.825,10.0,4.0,148.0,302.457,649.0,861.0,4.0,377.0,445.843,508.0,826.0,283.0,505.0,546.354,593.0,777.0,0.0,11.0,80.7075,154.0,516.0,118.0,121.275,9.10512,23.1905,16.9119,10.0,10.0
+2754,91.858,10.0,4.0,148.0,301.941,649.0,855.0,4.0,379.0,446.182,508.0,844.0,313.0,506.0,546.687,594.0,782.0,0.0,11.0,80.5906,153.0,519.0,118.0,121.501,8.63355,23.2884,17.0174,10.0,10.0
+2755,91.892,10.0,4.0,148.0,301.916,648.0,844.0,4.0,377.0,446.272,508.0,821.0,328.0,505.0,545.586,592.0,765.0,0.0,11.0,80.1,154.0,527.0,117.0,120.884,10.0045,23.4539,17.0718,10.0,10.0
+2756,91.925,10.0,4.0,147.0,301.151,648.0,897.0,4.0,377.0,445.992,509.0,791.0,270.0,505.0,546.321,594.0,768.0,0.0,10.0,80.7413,155.0,518.0,118.0,121.625,8.38947,23.5154,17.0149,10.0,10.0
+2757,91.959,10.0,4.0,147.0,300.689,645.0,867.0,4.0,375.0,444.854,508.0,803.0,322.0,506.0,546.151,594.0,785.0,0.0,11.0,81.3259,155.0,515.0,117.0,120.656,9.99381,23.5654,17.2036,10.0,10.0
+2758,91.992,10.0,4.0,147.0,301.287,648.0,847.0,4.0,376.0,445.228,508.0,800.0,358.0,505.0,546.56,594.0,771.0,0.0,11.0,81.2741,156.0,523.0,117.0,120.38,9.33495,23.7162,16.9259,10.0,10.0
+2759,92.025,10.0,4.0,147.0,300.441,647.0,862.0,4.0,375.0,444.993,508.0,803.0,345.0,506.0,546.488,593.0,764.0,0.0,11.0,81.2765,156.0,521.0,117.0,120.754,7.72252,23.5176,16.7363,10.0,10.0
+2760,92.059,10.0,4.0,147.0,301.069,647.0,853.0,4.0,374.0,443.798,507.0,844.0,352.0,505.0,546.249,594.0,806.0,0.0,12.0,82.3522,156.0,519.0,116.0,119.421,8.9574,23.3168,16.7822,10.0,10.0
+2761,92.092,10.0,4.0,148.0,302.137,648.0,853.0,4.0,374.0,443.704,507.0,778.0,358.0,506.0,546.823,595.0,928.0,0.0,11.0,82.4708,157.0,520.0,117.0,120.041,7.90537,23.3475,17.0245,10.0,10.0
+2762,92.125,10.0,4.0,148.0,302.545,649.0,861.0,4.0,374.0,443.238,507.0,936.0,380.0,506.0,547.319,594.0,787.0,0.0,11.0,83.1126,157.0,517.0,117.0,119.967,9.79254,23.3508,17.3589,10.0,10.0
+2763,92.159,10.0,4.0,147.0,303.191,649.0,849.0,4.0,374.0,442.432,507.0,907.0,364.0,506.0,547.298,594.0,783.0,0.0,12.0,83.6335,157.0,523.0,117.0,119.317,10.3871,23.5809,17.5137,10.0,10.0
+2764,92.192,10.0,4.0,147.0,303.552,649.0,931.0,4.0,374.0,442.805,507.0,922.0,326.0,506.0,547.562,594.0,787.0,0.0,12.0,83.4891,157.0,521.0,117.0,120.109,8.36378,23.227,17.0698,10.0,10.0
+2765,92.225,10.0,4.0,147.0,303.614,650.0,859.0,4.0,374.0,442.451,506.0,881.0,309.0,506.0,546.918,593.0,784.0,0.0,12.0,83.708,158.0,520.0,116.0,118.55,9.44016,23.2204,16.7249,10.0,10.0
+2766,92.259,10.0,4.0,147.0,303.638,650.0,855.0,4.0,373.0,442.269,507.0,892.0,317.0,506.0,547.602,595.0,765.0,0.0,12.0,84.2045,159.0,520.0,117.0,119.752,7.913,23.4283,16.9902,10.0,10.0
+2767,92.292,10.0,4.0,147.0,303.856,650.0,921.0,4.0,374.0,442.433,507.0,889.0,290.0,506.0,547.262,593.0,763.0,0.0,12.0,83.8599,157.0,524.0,117.0,119.674,8.66404,23.4063,17.0224,10.0,10.0
+2768,92.326,10.0,4.0,147.0,304.061,650.0,928.0,4.0,374.0,442.746,507.0,859.0,269.0,506.0,547.537,594.0,760.0,0.0,12.0,83.7818,158.0,520.0,117.0,119.82,9.24203,23.3049,16.7487,10.0,10.0
+2769,92.359,10.0,4.0,147.0,303.412,649.0,856.0,4.0,373.0,442.105,506.0,860.0,316.0,506.0,547.459,594.0,782.0,0.0,12.0,84.1545,159.0,522.0,117.0,119.558,8.01483,23.5182,17.0803,10.0,10.0
+2770,92.392,10.0,4.0,147.0,302.59,649.0,935.0,4.0,374.0,443.014,507.0,886.0,338.0,506.0,546.868,594.0,781.0,0.0,12.0,83.2303,157.0,525.0,117.0,119.784,9.40557,23.233,16.97,10.0,10.0
+2771,92.426,10.0,4.0,146.0,302.79,649.0,847.0,4.0,374.0,442.604,506.0,884.0,265.0,506.0,547.505,594.0,785.0,0.0,12.0,83.8201,158.0,521.0,117.0,119.031,7.89847,23.3394,16.7797,10.0,10.0
+2772,92.459,10.0,4.0,147.0,303.089,649.0,881.0,4.0,371.0,441.22,506.0,858.0,271.0,506.0,547.851,595.0,771.0,0.0,12.0,85.1165,161.0,518.0,116.0,119.13,8.75866,23.2165,17.0666,10.0,10.0
+2773,92.492,10.0,4.0,147.0,303.226,650.0,868.0,4.0,373.0,442.22,506.0,823.0,331.0,506.0,547.609,595.0,771.0,0.0,12.0,84.163,159.0,520.0,117.0,119.457,8.56578,23.4126,17.2031,10.0,10.0
+2774,92.526,10.0,4.0,147.0,303.886,651.0,865.0,4.0,373.0,442.416,507.0,859.0,306.0,506.0,547.987,595.0,882.0,0.0,12.0,84.1879,159.0,525.0,117.0,120.283,7.63513,23.562,17.0275,10.0,10.0
+2775,92.559,10.0,4.0,147.0,304.114,651.0,853.0,4.0,374.0,443.129,507.0,896.0,334.0,506.0,547.702,595.0,844.0,0.0,12.0,83.485,158.0,526.0,117.0,119.766,8.52385,23.7809,17.2815,10.0,10.0
+2776,92.593,10.0,4.0,147.0,303.987,653.0,857.0,4.0,372.0,442.665,507.0,933.0,265.0,506.0,548.079,596.0,836.0,0.0,12.0,84.2698,160.0,523.0,117.0,119.801,7.67513,23.5738,17.0411,10.0,10.0
+2777,92.626,10.0,4.0,148.0,303.999,653.0,857.0,4.0,371.0,442.678,507.0,923.0,340.0,506.0,548.118,596.0,830.0,0.0,12.0,84.0541,161.0,526.0,118.0,120.798,8.50794,23.6804,17.0936,10.0,10.0
+2778,92.659,10.0,4.0,147.0,303.997,653.0,905.0,4.0,374.0,442.891,506.0,958.0,326.0,506.0,548.22,596.0,819.0,0.0,12.0,83.8424,159.0,538.0,117.0,119.57,8.25187,23.3049,17.1286,10.0,10.0
+2779,92.693,10.0,4.0,148.0,303.22,650.0,848.0,4.0,372.0,442.677,507.0,926.0,352.0,507.0,548.509,596.0,851.0,0.0,12.0,84.0063,159.0,516.0,118.0,120.605,7.63621,23.3907,17.0125,10.0,10.0
+2780,92.726,10.0,4.0,148.0,303.292,650.0,871.0,4.0,372.0,442.105,507.0,827.0,269.0,505.0,548.114,597.0,958.0,0.0,12.0,84.5106,160.0,520.0,117.0,119.587,8.47737,23.2402,16.9572,10.0,10.0
+2781,92.759,10.0,4.0,147.0,303.682,652.0,848.0,4.0,374.0,442.837,507.0,789.0,320.0,505.0,548.18,596.0,943.0,0.0,12.0,83.9098,159.0,519.0,117.0,119.774,7.58835,23.4617,17.0338,10.0,10.0
+2782,92.793,10.0,4.0,147.0,303.267,651.0,848.0,4.0,372.0,442.891,507.0,785.0,380.0,506.0,548.268,596.0,933.0,0.0,11.0,83.6792,160.0,522.0,117.0,120.651,8.33422,23.2405,17.0033,10.0,10.0
+2783,92.826,10.0,4.0,148.0,303.368,652.0,862.0,4.0,372.0,442.614,507.0,995.0,383.0,506.0,548.419,596.0,794.0,0.0,11.0,84.0666,160.0,541.0,118.0,121.019,8.67217,23.1847,16.8091,10.0,10.0
+2784,92.859,10.0,4.0,148.0,303.109,650.0,934.0,4.0,373.0,442.96,507.0,836.0,350.0,506.0,548.722,597.0,841.0,0.0,11.0,83.9767,160.0,523.0,118.0,121.874,7.58238,23.2895,16.9595,10.0,10.0
+2785,92.893,10.0,4.0,148.0,302.659,650.0,843.0,4.0,374.0,443.604,507.0,811.0,383.0,506.0,547.896,595.0,941.0,0.0,12.0,82.9923,158.0,523.0,118.0,120.815,8.33179,23.3528,16.8635,10.0,10.0
+2786,92.926,10.0,4.0,148.0,302.538,650.0,863.0,4.0,374.0,443.569,507.0,780.0,380.0,506.0,547.954,596.0,915.0,0.0,11.0,82.9962,158.0,524.0,118.0,120.628,7.47641,23.3633,16.9018,10.0,10.0
+2787,92.96,10.0,4.0,147.0,302.515,649.0,929.0,4.0,374.0,443.609,508.0,780.0,365.0,506.0,548.07,595.0,785.0,0.0,11.0,83.0851,159.0,521.0,118.0,121.169,8.41017,23.3469,16.7974,10.0,10.0
+2788,92.993,10.0,4.0,147.0,303.458,651.0,851.0,4.0,374.0,443.439,507.0,780.0,358.0,506.0,548.334,596.0,790.0,0.0,11.0,83.2892,159.0,520.0,118.0,120.576,8.29576,23.1701,16.8895,10.0,10.0
+2789,93.026,10.0,4.0,147.0,303.23,651.0,856.0,4.0,373.0,443.838,507.0,736.0,361.0,507.0,548.368,595.0,779.0,0.0,11.0,82.9304,159.0,526.0,118.0,121.56,7.48857,23.1354,17.0237,10.0,10.0
+2790,93.06,10.0,4.0,148.0,303.265,650.0,857.0,4.0,375.0,443.948,507.0,766.0,292.0,506.0,548.472,596.0,792.0,0.0,11.0,82.9393,157.0,526.0,118.0,121.493,8.27177,23.1396,17.1058,10.0,10.0
+2791,93.093,10.0,4.0,148.0,303.717,650.0,915.0,4.0,375.0,444.683,508.0,746.0,339.0,506.0,548.971,597.0,777.0,0.0,11.0,82.5913,157.0,524.0,119.0,122.126,7.39461,23.1995,16.9788,10.0,10.0
+2792,93.126,10.0,4.0,148.0,302.269,649.0,874.0,4.0,374.0,443.351,507.0,800.0,371.0,507.0,548.397,596.0,783.0,0.0,11.0,83.3063,159.0,522.0,118.0,120.909,8.37963,23.3209,17.0832,10.0,10.0
+2793,93.16,10.0,4.0,147.0,302.328,649.0,850.0,4.0,374.0,443.797,507.0,788.0,381.0,506.0,548.345,595.0,771.0,0.0,11.0,82.9736,158.0,518.0,118.0,120.99,8.30876,23.186,17.1026,10.0,10.0
+2794,93.193,10.0,4.0,148.0,302.786,649.0,845.0,4.0,375.0,444.285,507.0,807.0,370.0,506.0,547.927,596.0,785.0,0.0,11.0,82.5198,157.0,518.0,118.0,121.346,7.44363,22.8685,16.9246,10.0,10.0
+2795,93.226,10.0,4.0,148.0,302.806,650.0,931.0,4.0,374.0,443.829,508.0,803.0,372.0,505.0,546.939,594.0,804.0,0.0,11.0,82.6649,158.0,521.0,117.0,120.827,8.32989,23.1334,16.8025,10.0,10.0
+2796,93.26,10.0,4.0,148.0,303.059,651.0,848.0,4.0,374.0,443.824,507.0,818.0,365.0,506.0,547.741,595.0,751.0,0.0,11.0,82.7499,158.0,518.0,118.0,120.806,7.6573,23.2344,16.8872,10.0,10.0
+2797,93.293,10.0,4.0,147.0,302.433,650.0,850.0,4.0,375.0,444.993,508.0,789.0,291.0,506.0,546.965,594.0,783.0,0.0,11.0,81.6522,156.0,521.0,118.0,121.822,8.70873,23.1169,16.9791,10.0,10.0
+2798,93.327,10.0,4.0,147.0,302.246,649.0,862.0,4.0,376.0,444.984,508.0,899.0,331.0,505.0,546.696,595.0,790.0,0.0,11.0,81.4865,155.0,519.0,117.0,120.85,9.32862,23.3461,17.0547,10.0,10.0
+2799,93.36,10.0,4.0,147.0,302.126,650.0,895.0,4.0,376.0,445.017,508.0,864.0,322.0,506.0,547.404,594.0,768.0,0.0,11.0,81.6827,155.0,520.0,118.0,121.599,7.89843,23.1578,16.8286,10.0,10.0
+2800,93.393,10.0,4.0,147.0,303.02,651.0,861.0,4.0,375.0,443.923,507.0,856.0,302.0,506.0,547.009,594.0,916.0,0.0,12.0,82.4842,156.0,518.0,117.0,120.114,9.12465,23.12,17.0315,10.0,10.0
+2801,93.427,10.0,4.0,147.0,303.983,653.0,853.0,4.0,375.0,443.735,507.0,848.0,316.0,505.0,547.348,594.0,856.0,0.0,11.0,82.7428,157.0,520.0,117.0,120.15,7.91857,22.8302,16.8369,10.0,10.0
+2802,93.46,10.0,4.0,147.0,302.077,649.0,850.0,4.0,374.0,443.71,507.0,866.0,326.0,506.0,547.112,594.0,928.0,0.0,11.0,82.7084,157.0,524.0,117.0,120.46,9.28472,23.0723,16.7735,10.0,10.0
+2803,93.493,10.0,4.0,147.0,302.595,650.0,863.0,4.0,374.0,443.32,508.0,840.0,358.0,505.0,547.101,594.0,769.0,0.0,11.0,83.1174,158.0,529.0,117.0,120.563,9.08391,23.1737,17.0205,10.0,10.0
+2804,93.527,10.0,4.0,147.0,302.599,650.0,857.0,4.0,375.0,443.77,508.0,834.0,302.0,506.0,547.592,595.0,769.0,0.0,11.0,82.8873,158.0,521.0,118.0,120.95,7.9239,23.3773,17.0958,10.0,10.0
+2805,93.56,10.0,4.0,147.0,302.151,650.0,850.0,4.0,374.0,443.627,507.0,862.0,306.0,506.0,547.203,594.0,771.0,0.0,11.0,82.7216,157.0,521.0,117.0,120.292,9.13604,23.0225,16.9832,10.0,10.0
+2806,93.594,10.0,4.0,147.0,302.597,650.0,865.0,4.0,374.0,443.165,507.0,868.0,310.0,506.0,547.57,594.0,768.0,0.0,11.0,83.3365,158.0,519.0,117.0,120.478,8.00263,22.9312,16.9133,10.0,10.0
+2807,93.627,10.0,4.0,148.0,301.688,649.0,855.0,4.0,373.0,442.882,507.0,812.0,300.0,506.0,547.697,594.0,788.0,0.0,11.0,83.5069,159.0,525.0,117.0,120.452,8.85234,23.1186,16.8307,10.0,10.0
+2808,93.66,10.0,4.0,147.0,301.438,648.0,856.0,4.0,374.0,443.606,508.0,746.0,304.0,506.0,546.837,594.0,777.0,0.0,11.0,82.5317,158.0,525.0,117.0,120.499,8.58673,23.2278,16.9959,10.0,10.0
+2809,93.694,10.0,4.0,148.0,301.945,649.0,854.0,4.0,373.0,443.162,507.0,793.0,290.0,506.0,547.633,594.0,770.0,0.0,11.0,83.1617,159.0,523.0,117.0,120.558,7.55613,23.4918,17.1334,10.0,10.0
+2810,93.727,10.0,4.0,147.0,301.145,648.0,848.0,4.0,373.0,442.893,507.0,828.0,382.0,506.0,546.939,594.0,782.0,0.0,11.0,83.3356,158.0,524.0,117.0,119.841,8.80677,23.2672,16.839,10.0,10.0
+2811,93.76,10.0,4.0,147.0,301.363,648.0,928.0,4.0,374.0,443.747,507.0,832.0,352.0,505.0,547.28,594.0,783.0,0.0,11.0,82.8195,157.0,516.0,117.0,120.186,7.88834,23.2489,16.7256,10.0,10.0
+2812,93.794,10.0,4.0,147.0,300.815,648.0,853.0,4.0,374.0,443.867,507.0,813.0,392.0,506.0,546.508,594.0,774.0,0.0,11.0,82.3266,156.0,521.0,117.0,119.888,8.81643,23.304,16.9915,10.0,10.0
+2813,93.827,10.0,4.0,148.0,301.813,649.0,848.0,4.0,376.0,443.806,508.0,792.0,362.0,506.0,547.082,595.0,788.0,0.0,11.0,82.5493,156.0,525.0,117.0,120.782,8.66694,23.0587,16.7407,10.0,10.0
+2814,93.86,10.0,4.0,148.0,302.597,649.0,928.0,4.0,375.0,444.245,508.0,800.0,375.0,506.0,547.26,594.0,768.0,0.0,11.0,82.2563,156.0,520.0,117.0,120.835,7.68528,23.1565,16.7866,10.0,10.0
+2815,93.894,10.0,4.0,148.0,301.698,649.0,850.0,4.0,375.0,444.432,508.0,822.0,344.0,506.0,546.49,594.0,767.0,0.0,11.0,81.8846,156.0,524.0,117.0,120.707,8.48765,23.03,16.8656,10.0,10.0
+2816,93.927,10.0,4.0,147.0,300.976,648.0,859.0,4.0,375.0,444.203,508.0,788.0,334.0,506.0,546.44,594.0,783.0,0.0,11.0,81.9339,156.0,523.0,117.0,120.289,7.76529,23.1043,16.9842,10.0,10.0
+2817,93.961,10.0,4.0,147.0,301.592,649.0,857.0,4.0,374.0,444.29,508.0,852.0,354.0,506.0,546.582,594.0,770.0,0.0,11.0,81.898,157.0,525.0,117.0,120.892,8.49105,23.0826,16.884,10.0,10.0
+2818,93.994,10.0,4.0,147.0,301.912,649.0,856.0,4.0,374.0,444.55,508.0,766.0,362.0,506.0,547.009,594.0,780.0,0.0,11.0,81.7303,157.0,526.0,117.0,120.701,8.35363,23.0535,16.7763,10.0,10.0
+2819,94.027,10.0,4.0,148.0,302.169,649.0,900.0,4.0,376.0,445.226,508.0,822.0,360.0,506.0,546.475,594.0,755.0,0.0,11.0,81.1719,155.0,527.0,118.0,121.028,7.47261,23.3364,17.056,10.0,10.0
+2820,94.061,10.0,4.0,148.0,302.508,650.0,848.0,4.0,376.0,445.427,508.0,813.0,330.0,506.0,545.506,592.0,765.0,0.0,10.0,80.6337,154.0,525.0,117.0,120.676,8.57575,23.2752,16.9905,10.0,10.0
+2821,94.094,10.0,4.0,148.0,303.06,650.0,844.0,4.0,377.0,445.504,508.0,782.0,260.0,505.0,545.945,593.0,754.0,0.0,11.0,80.7965,154.0,525.0,117.0,120.485,7.76395,23.0133,16.7923,10.0,10.0
+2822,94.127,10.0,4.0,147.0,301.873,649.0,902.0,4.0,376.0,444.697,508.0,789.0,340.0,505.0,545.371,592.0,785.0,0.0,11.0,81.1646,155.0,528.0,116.0,119.623,8.29553,23.177,16.9717,10.0,10.0
+2823,94.161,10.0,4.0,147.0,301.884,650.0,904.0,4.0,375.0,443.541,507.0,814.0,358.0,505.0,546.071,593.0,770.0,0.0,11.0,82.2217,156.0,526.0,116.0,119.135,8.46846,23.2223,16.8173,10.0,10.0
+2824,94.194,10.0,4.0,147.0,301.498,649.0,931.0,4.0,375.0,443.969,507.0,816.0,348.0,506.0,546.337,593.0,805.0,0.0,11.0,81.9232,155.0,524.0,117.0,119.697,7.53367,22.943,16.9291,10.0,10.0
+2825,94.227,10.0,4.0,148.0,302.082,649.0,905.0,4.0,374.0,443.338,507.0,783.0,334.0,506.0,546.394,593.0,780.0,0.0,12.0,82.5081,157.0,555.0,116.0,119.474,8.24957,23.0815,16.8923,10.0,10.0
+2826,94.261,10.0,4.0,148.0,302.336,649.0,864.0,4.0,374.0,443.42,507.0,774.0,336.0,506.0,547.182,594.0,758.0,0.0,11.0,82.8615,158.0,525.0,117.0,119.799,7.5342,23.2168,16.9711,10.0,10.0
+2827,94.294,10.0,4.0,147.0,302.842,650.0,827.0,4.0,374.0,443.455,508.0,831.0,362.0,506.0,546.697,593.0,802.0,0.0,11.0,82.5299,157.0,528.0,117.0,120.23,8.51782,23.2064,16.7633,10.0,10.0
+2828,94.328,10.0,4.0,148.0,301.916,649.0,857.0,4.0,376.0,444.574,508.0,811.0,290.0,506.0,546.266,592.0,746.0,0.0,11.0,81.6595,155.0,519.0,117.0,120.512,8.43447,23.3662,16.8862,10.0,10.0
+2829,94.361,10.0,4.0,148.0,302.038,649.0,870.0,4.0,375.0,444.574,508.0,832.0,344.0,506.0,546.629,593.0,758.0,0.0,11.0,81.6655,156.0,520.0,117.0,121.045,7.79058,22.929,16.7152,10.0,10.0
+2830,94.394,10.0,4.0,147.0,301.535,649.0,853.0,4.0,375.0,444.272,508.0,782.0,316.0,505.0,546.134,593.0,780.0,0.0,11.0,81.7676,157.0,525.0,117.0,120.022,8.53903,23.0223,16.6646,10.0,10.0
+2831,94.428,10.0,4.0,148.0,301.494,648.0,854.0,4.0,376.0,444.82,508.0,787.0,360.0,506.0,547.06,595.0,798.0,0.0,11.0,81.7663,156.0,529.0,117.0,120.846,7.56067,23.2531,16.8467,10.0,10.0
+2832,94.461,10.0,4.0,147.0,301.221,649.0,916.0,4.0,374.0,443.116,508.0,793.0,336.0,505.0,546.244,594.0,800.0,0.0,11.0,82.8769,157.0,520.0,116.0,119.724,8.12553,23.4917,16.9251,10.0,10.0
+2833,94.494,10.0,4.0,148.0,301.328,648.0,851.0,4.0,374.0,443.748,507.0,797.0,352.0,506.0,546.807,594.0,762.0,0.0,11.0,82.4534,158.0,559.0,117.0,119.804,8.20228,23.4371,16.8791,10.0,10.0
+2834,94.528,10.0,4.0,147.0,300.942,647.0,859.0,4.0,374.0,443.894,508.0,817.0,319.0,506.0,546.844,594.0,776.0,0.0,11.0,82.3176,158.0,525.0,117.0,120.526,7.40322,23.1396,16.8465,10.0,10.0
+2835,94.561,10.0,4.0,147.0,300.919,647.0,863.0,4.0,374.0,443.961,507.0,818.0,343.0,506.0,546.594,594.0,780.0,0.0,11.0,82.157,156.0,522.0,117.0,119.948,8.0435,22.998,16.7628,10.0,10.0
+2836,94.595,10.0,4.0,147.0,301.358,648.0,939.0,4.0,374.0,443.686,507.0,788.0,355.0,505.0,546.885,594.0,889.0,0.0,11.0,82.6233,158.0,523.0,117.0,119.992,7.3903,23.3072,16.7947,10.0,10.0
+2837,94.628,10.0,4.0,148.0,301.386,647.0,885.0,4.0,374.0,444.158,508.0,771.0,317.0,506.0,546.773,594.0,791.0,0.0,11.0,81.9483,157.0,563.0,117.0,120.766,7.83504,23.2215,16.9341,10.0,10.0
+2838,94.661,10.0,4.0,148.0,301.375,648.0,864.0,4.0,374.0,443.822,507.0,788.0,304.0,506.0,546.978,595.0,771.0,0.0,11.0,82.3876,158.0,541.0,117.0,120.446,8.08797,22.852,16.7933,10.0,10.0
+2839,94.695,10.0,4.0,147.0,301.474,648.0,933.0,4.0,373.0,443.419,508.0,776.0,348.0,506.0,547.674,595.0,764.0,0.0,11.0,83.1011,159.0,525.0,118.0,121.504,7.43592,23.1064,16.882,10.0,10.0
+2840,94.728,10.0,4.0,147.0,301.466,648.0,928.0,4.0,374.0,443.194,507.0,887.0,148.0,506.0,547.263,594.0,800.0,0.0,11.0,83.1458,158.0,527.0,117.0,119.887,8.63735,23.3272,16.9522,10.0,10.0
+2841,94.761,10.0,4.0,147.0,301.526,648.0,864.0,4.0,374.0,443.222,507.0,859.0,278.0,506.0,547.859,596.0,755.0,0.0,12.0,83.4723,159.0,559.0,117.0,120.07,7.90468,23.0642,16.9531,10.0,10.0
+2842,94.795,10.0,4.0,147.0,301.966,649.0,863.0,4.0,374.0,443.455,507.0,804.0,308.0,506.0,546.81,594.0,796.0,0.0,11.0,82.7999,158.0,525.0,117.0,119.827,9.72707,23.2705,17.1179,10.0,10.0
+2843,94.828,10.0,4.0,148.0,302.446,650.0,857.0,4.0,374.0,443.795,507.0,818.0,362.0,505.0,546.644,594.0,769.0,0.0,11.0,82.4427,158.0,528.0,117.0,119.536,9.49103,23.369,16.8888,10.0,10.0
+2844,94.861,10.0,4.0,148.0,302.54,650.0,860.0,4.0,376.0,444.777,508.0,820.0,374.0,505.0,546.664,594.0,798.0,0.0,11.0,81.7251,155.0,526.0,117.0,120.577,7.60782,23.3039,17.1535,10.0,10.0
+2845,94.895,10.0,4.0,147.0,301.549,649.0,865.0,4.0,375.0,444.803,508.0,833.0,338.0,506.0,546.306,593.0,778.0,0.0,11.0,81.4035,155.0,523.0,117.0,120.098,8.87807,23.0669,16.8874,10.0,10.0
+2846,94.928,10.0,4.0,147.0,301.701,649.0,857.0,4.0,374.0,444.474,508.0,816.0,360.0,506.0,547.012,595.0,762.0,0.0,11.0,81.9374,157.0,525.0,117.0,120.906,7.82971,22.9003,16.7413,10.0,10.0
+2847,94.962,10.0,4.0,146.0,300.48,647.0,853.0,4.0,374.0,444.674,509.0,798.0,362.0,505.0,546.235,593.0,786.0,0.0,10.0,81.6667,157.0,529.0,117.0,120.925,9.19571,23.1383,16.8417,10.0,10.0
+2848,94.995,10.0,4.0,147.0,301.025,648.0,864.0,4.0,376.0,445.117,508.0,811.0,352.0,505.0,545.961,593.0,778.0,0.0,11.0,81.0616,155.0,527.0,117.0,120.04,9.23704,22.8643,16.705,10.0,10.0
+2849,95.028,10.0,4.0,147.0,300.812,648.0,845.0,4.0,376.0,445.309,509.0,747.0,337.0,506.0,546.004,593.0,774.0,0.0,10.0,80.8404,155.0,529.0,117.0,120.921,7.70933,22.8225,16.8223,10.0,10.0
+2850,95.062,10.0,4.0,147.0,300.95,648.0,859.0,4.0,377.0,445.905,508.0,788.0,294.0,505.0,545.654,592.0,871.0,0.0,10.0,80.2673,154.0,529.0,117.0,120.55,8.70277,22.7353,16.677,10.0,10.0
+2851,95.095,10.0,4.0,147.0,301.647,648.0,859.0,4.0,377.0,446.025,509.0,779.0,307.0,505.0,545.859,594.0,907.0,0.0,10.0,80.4369,155.0,527.0,117.0,121.187,7.61449,23.1231,16.8802,10.0,10.0
+2852,95.128,10.0,4.0,147.0,300.879,648.0,849.0,4.0,375.0,445.661,509.0,819.0,302.0,505.0,545.9,594.0,900.0,0.0,10.0,80.7161,156.0,525.0,117.0,120.909,8.90723,22.8763,16.5694,10.0,10.0
+2853,95.162,10.0,4.0,147.0,301.069,647.0,863.0,4.0,376.0,446.101,509.0,802.0,336.0,505.0,545.867,593.0,776.0,0.0,10.0,80.3421,155.0,560.0,118.0,121.562,8.46384,23.1776,16.7641,10.0,10.0
+2854,95.195,10.0,4.0,147.0,300.784,647.0,858.0,4.0,376.0,445.894,509.0,819.0,328.0,505.0,545.973,594.0,775.0,0.0,10.0,80.5484,154.0,540.0,117.0,121.235,8.12128,23.4138,16.962,10.0,10.0
+2855,95.228,10.0,4.0,147.0,300.65,647.0,841.0,4.0,374.0,444.987,508.0,795.0,290.0,505.0,545.705,593.0,777.0,0.0,11.0,81.1244,157.0,549.0,117.0,119.751,10.0442,23.4116,17.0217,10.0,10.0
+2856,95.262,10.0,4.0,146.0,300.925,648.0,849.0,4.0,375.0,444.766,508.0,801.0,316.0,505.0,546.426,594.0,895.0,0.0,10.0,81.5814,156.0,524.0,117.0,120.446,8.58933,22.9655,16.7387,10.0,10.0
+2857,95.295,10.0,4.0,147.0,301.034,648.0,929.0,4.0,377.0,445.903,508.0,793.0,304.0,506.0,546.009,592.0,787.0,0.0,10.0,80.367,155.0,552.0,117.0,121.197,10.0976,22.7947,16.5981,10.0,10.0
+2858,95.329,10.0,4.0,147.0,301.246,649.0,861.0,4.0,374.0,444.636,508.0,794.0,293.0,505.0,546.097,593.0,836.0,0.0,10.0,81.6942,157.0,529.0,117.0,120.4,8.46824,23.1365,16.8253,10.0,10.0
+2859,95.362,10.0,4.0,147.0,300.768,648.0,863.0,4.0,375.0,445.178,509.0,811.0,304.0,505.0,546.317,594.0,895.0,0.0,10.0,81.3601,156.0,528.0,117.0,121.91,7.66192,23.0859,16.9,10.0,10.0
+2860,95.395,10.0,4.0,147.0,301.138,648.0,857.0,4.0,376.0,445.17,509.0,779.0,362.0,505.0,545.742,593.0,792.0,0.0,10.0,81.1333,155.0,541.0,117.0,120.826,8.76296,23.2266,16.7625,10.0,10.0
+2861,95.429,10.0,4.0,147.0,301.341,648.0,857.0,4.0,375.0,444.48,508.0,776.0,326.0,506.0,546.818,594.0,783.0,0.0,11.0,81.8682,156.0,535.0,117.0,120.579,7.70325,23.0594,16.7623,10.0,10.0
+2862,95.462,10.0,4.0,148.0,301.375,648.0,916.0,4.0,374.0,443.827,508.0,795.0,314.0,505.0,545.747,594.0,771.0,0.0,11.0,82.1153,157.0,530.0,116.0,119.781,8.86736,23.1111,16.9627,10.0,10.0
+2863,95.495,10.0,4.0,148.0,302.202,649.0,936.0,4.0,375.0,444.57,508.0,800.0,302.0,504.0,545.473,592.0,782.0,0.0,10.0,81.5176,155.0,555.0,116.0,120.146,8.70466,23.163,16.7594,10.0,10.0
+2864,95.529,10.0,4.0,148.0,302.575,649.0,861.0,4.0,375.0,444.905,508.0,764.0,350.0,506.0,546.321,592.0,783.0,0.0,11.0,81.362,155.0,525.0,117.0,121.284,7.97468,23.1257,16.6559,10.0,10.0
+2865,95.562,10.0,4.0,147.0,301.992,649.0,928.0,4.0,375.0,444.772,508.0,833.0,330.0,506.0,545.71,592.0,771.0,0.0,10.0,81.2237,156.0,528.0,116.0,120.329,8.71859,23.1507,16.7792,10.0,10.0
+2866,95.596,10.0,4.0,148.0,302.25,649.0,857.0,4.0,374.0,444.634,508.0,814.0,315.0,505.0,546.406,593.0,768.0,0.0,10.0,81.7478,157.0,525.0,117.0,120.629,7.73391,23.178,16.9396,10.0,10.0
+2867,95.629,10.0,4.0,148.0,301.634,648.0,917.0,4.0,376.0,445.445,508.0,849.0,337.0,505.0,545.683,592.0,754.0,0.0,10.0,80.5842,155.0,524.0,117.0,120.607,8.84703,23.1187,16.7198,10.0,10.0
+2868,95.662,10.0,4.0,148.0,301.884,649.0,853.0,4.0,374.0,444.172,508.0,794.0,348.0,505.0,546.424,594.0,782.0,0.0,11.0,82.0737,157.0,525.0,117.0,120.519,8.43593,23.1281,16.7132,10.0,10.0
+2869,95.696,10.0,4.0,147.0,301.852,649.0,834.0,4.0,374.0,444.306,508.0,785.0,313.0,506.0,546.631,594.0,764.0,0.0,10.0,81.8994,157.0,520.0,117.0,120.55,7.70532,23.1393,16.8871,10.0,10.0
+2870,95.729,10.0,4.0,147.0,301.556,649.0,910.0,4.0,376.0,445.237,508.0,796.0,305.0,506.0,545.646,592.0,765.0,0.0,10.0,80.7183,155.0,524.0,117.0,120.2,8.77604,23.0875,16.7158,10.0,10.0
+2871,95.762,10.0,4.0,147.0,301.794,649.0,849.0,4.0,377.0,446.174,508.0,789.0,302.0,505.0,546.243,593.0,785.0,0.0,11.0,80.3915,155.0,525.0,118.0,121.239,7.83122,22.9997,16.9013,10.0,10.0
+2872,95.796,10.0,4.0,147.0,301.342,649.0,851.0,4.0,374.0,444.149,508.0,800.0,316.0,506.0,546.633,594.0,765.0,0.0,11.0,82.1593,157.0,522.0,117.0,120.65,8.1067,23.0613,16.9297,10.0,10.0
+2873,95.829,10.0,4.0,148.0,301.219,647.0,933.0,4.0,376.0,444.926,508.0,783.0,308.0,505.0,546.055,593.0,795.0,0.0,11.0,81.212,155.0,530.0,117.0,119.87,8.52967,23.3427,16.9109,10.0,10.0
+2874,95.862,10.0,4.0,148.0,301.791,648.0,849.0,4.0,376.0,445.091,508.0,806.0,332.0,506.0,546.257,593.0,760.0,0.0,11.0,81.0407,155.0,517.0,117.0,120.752,7.67461,23.2796,16.8805,10.0,10.0
+2875,95.896,10.0,4.0,148.0,302.583,649.0,902.0,4.0,374.0,444.074,508.0,761.0,348.0,506.0,546.243,594.0,786.0,0.0,11.0,82.0653,157.0,527.0,117.0,120.352,8.41469,23.2295,16.8299,10.0,10.0
+2876,95.929,10.0,4.0,149.0,303.041,650.0,863.0,4.0,374.0,444.055,508.0,813.0,340.0,506.0,546.583,593.0,754.0,0.0,11.0,82.1633,158.0,526.0,117.0,120.776,7.77381,23.0016,16.9423,10.0,10.0
+2877,95.963,10.0,4.0,147.0,301.733,650.0,856.0,4.0,374.0,444.538,508.0,795.0,332.0,505.0,546.296,594.0,788.0,0.0,10.0,81.64,157.0,520.0,117.0,120.065,8.76249,23.3906,17.068,10.0,10.0
+2878,95.996,10.0,4.0,147.0,300.913,649.0,856.0,4.0,374.0,444.476,508.0,799.0,370.0,506.0,546.644,594.0,769.0,0.0,11.0,81.913,156.0,527.0,117.0,120.754,8.85368,23.2837,16.88,10.0,10.0
+2879,96.029,10.0,4.0,147.0,300.771,648.0,889.0,4.0,374.0,443.798,508.0,803.0,326.0,506.0,547.699,595.0,794.0,0.0,11.0,82.7347,159.0,526.0,118.0,120.694,7.76321,23.0037,16.8254,10.0,10.0
+2880,96.063,10.0,4.0,148.0,301.825,649.0,850.0,4.0,373.0,443.963,508.0,811.0,308.0,506.0,547.515,595.0,768.0,0.0,11.0,82.5981,158.0,526.0,118.0,120.823,9.43304,23.0792,16.9099,10.0,10.0
+2881,96.096,10.0,4.0,149.0,302.906,651.0,857.0,4.0,374.0,444.496,508.0,795.0,312.0,506.0,548.021,596.0,770.0,0.0,11.0,82.5292,158.0,530.0,118.0,121.668,8.46277,23.2163,16.869,10.0,10.0
+2882,96.129,10.0,4.0,148.0,301.691,649.0,841.0,4.0,373.0,443.467,508.0,801.0,240.0,506.0,547.356,594.0,851.0,0.0,11.0,82.9856,159.0,524.0,117.0,121.41,10.5522,23.35,17.0597,10.0,10.0
+2883,96.163,10.0,4.0,148.0,302.287,650.0,854.0,4.0,374.0,443.399,508.0,856.0,244.0,506.0,548.173,595.0,799.0,0.0,11.0,83.589,159.0,528.0,118.0,120.997,10.8002,23.3808,17.1514,10.0,10.0
+2884,96.196,10.0,4.0,148.0,302.817,651.0,868.0,4.0,374.0,443.454,508.0,813.0,227.0,506.0,547.753,596.0,799.0,0.0,11.0,83.2591,158.0,522.0,118.0,120.62,8.98811,22.9633,17.061,10.0,10.0
+2885,96.229,10.0,4.0,147.0,302.674,653.0,935.0,4.0,374.0,443.226,507.0,805.0,236.0,506.0,547.063,595.0,821.0,0.0,11.0,83.1977,159.0,568.0,117.0,119.995,10.9912,23.2297,17.2012,10.0,10.0
+2886,96.263,10.0,4.0,148.0,303.571,654.0,849.0,4.0,372.0,442.813,507.0,851.0,245.0,506.0,547.458,596.0,831.0,0.0,11.0,83.8002,160.0,530.0,117.0,120.317,8.74885,23.3237,16.8631,10.0,10.0
+2887,96.296,10.0,4.0,147.0,302.411,649.0,849.0,4.0,374.0,443.579,507.0,796.0,239.0,506.0,547.283,595.0,853.0,0.0,11.0,82.8283,158.0,524.0,117.0,120.387,10.257,23.1895,16.892,10.0,10.0
+2888,96.33,10.0,4.0,147.0,302.982,649.0,851.0,4.0,373.0,443.901,507.0,794.0,240.0,506.0,548.151,596.0,815.0,0.0,11.0,83.0287,160.0,571.0,118.0,120.799,9.94581,22.9709,16.6802,10.0,10.0
+2889,96.363,10.0,4.0,148.0,303.222,650.0,925.0,4.0,372.0,443.635,508.0,800.0,249.0,507.0,548.486,597.0,878.0,0.0,11.0,83.3904,160.0,533.0,118.0,121.314,8.23881,23.1188,16.9156,10.0,10.0
+2890,96.396,10.0,4.0,148.0,303.329,651.0,924.0,4.0,371.0,443.022,507.0,914.0,254.0,506.0,548.299,598.0,933.0,0.0,11.0,83.871,161.0,523.0,118.0,120.571,8.95634,23.5263,16.9846,10.0,10.0
+2891,96.43,10.0,4.0,148.0,303.54,653.0,848.0,4.0,373.0,443.587,507.0,889.0,258.0,506.0,548.735,598.0,928.0,0.0,11.0,83.6148,160.0,520.0,118.0,120.523,7.77354,23.1513,17.0524,10.0,10.0
+2892,96.463,10.0,4.0,147.0,301.631,649.0,858.0,4.0,373.0,443.404,507.0,859.0,265.0,506.0,548.189,597.0,793.0,0.0,12.0,83.418,159.0,526.0,118.0,120.411,8.67164,23.1038,17.098,10.0,10.0
+2893,96.496,10.0,4.0,147.0,303.182,652.0,859.0,4.0,372.0,442.962,507.0,836.0,267.0,506.0,548.819,599.0,953.0,0.0,12.0,84.0661,161.0,519.0,118.0,120.323,8.82347,23.3188,17.2148,10.0,10.0
+2894,96.53,10.0,4.0,147.0,303.376,653.0,853.0,4.0,372.0,443.18,508.0,816.0,236.0,507.0,548.615,597.0,940.0,0.0,11.0,83.7362,161.0,525.0,118.0,121.395,7.64522,23.2171,16.9965,10.0,10.0
+2895,96.563,10.0,4.0,147.0,303.073,651.0,852.0,4.0,373.0,443.705,508.0,848.0,248.0,506.0,547.711,596.0,792.0,0.0,11.0,83.0054,160.0,526.0,118.0,119.948,8.58656,23.094,17.0119,10.0,10.0
+2896,96.597,10.0,4.0,148.0,303.329,652.0,861.0,4.0,373.0,443.626,508.0,876.0,205.0,506.0,548.225,598.0,922.0,0.0,11.0,83.3147,161.0,521.0,118.0,120.912,7.63439,23.1251,16.9189,10.0,10.0
+2897,96.63,10.0,4.0,147.0,303.375,653.0,853.0,4.0,371.0,443.157,508.0,796.0,245.0,506.0,548.198,596.0,869.0,0.0,11.0,83.76,161.0,524.0,118.0,120.895,8.74878,23.3928,17.1841,10.0,10.0
+2898,96.663,10.0,4.0,148.0,302.628,650.0,866.0,4.0,373.0,444.298,508.0,800.0,204.0,506.0,547.427,596.0,881.0,0.0,11.0,82.6661,159.0,524.0,118.0,121.06,8.87532,23.3347,17.1351,10.0,10.0
+2899,96.697,10.0,4.0,148.0,302.975,651.0,860.0,4.0,372.0,443.934,508.0,788.0,226.0,507.0,548.674,598.0,818.0,0.0,11.0,83.2515,161.0,522.0,118.0,121.878,7.4302,23.1268,17.0679,10.0,10.0
+2900,96.73,10.0,4.0,148.0,303.449,653.0,854.0,4.0,371.0,442.843,508.0,817.0,194.0,506.0,548.069,597.0,813.0,0.0,11.0,84.0265,162.0,557.0,118.0,120.584,8.25208,23.1043,16.8794,10.0,10.0
+2901,96.763,10.0,4.0,148.0,303.683,652.0,911.0,4.0,372.0,443.066,507.0,785.0,222.0,506.0,548.934,599.0,820.0,0.0,12.0,84.0751,161.0,531.0,118.0,120.551,7.53074,23.0844,16.9523,10.0,10.0
+2902,96.797,10.0,4.0,147.0,303.3,652.0,933.0,4.0,371.0,442.598,507.0,788.0,254.0,506.0,548.668,598.0,839.0,0.0,11.0,84.2793,162.0,522.0,118.0,120.397,8.29416,23.3561,17.0187,10.0,10.0
+2903,96.83,10.0,4.0,148.0,304.0,653.0,856.0,4.0,372.0,442.594,507.0,875.0,278.0,506.0,548.615,598.0,804.0,0.0,11.0,84.2303,161.0,533.0,118.0,120.203,8.56159,23.5776,17.0053,10.0,10.0
+2904,96.863,10.0,4.0,149.0,304.608,654.0,863.0,4.0,373.0,443.911,508.0,875.0,266.0,506.0,548.708,598.0,786.0,0.0,11.0,83.3799,160.0,544.0,118.0,121.184,7.55113,23.5005,17.0016,10.0,10.0
+2905,96.897,10.0,4.0,148.0,304.15,655.0,891.0,4.0,373.0,444.386,508.0,799.0,238.0,506.0,547.715,596.0,893.0,0.0,11.0,82.5709,159.0,520.0,118.0,120.541,8.37643,23.2004,16.9573,10.0,10.0
+2906,96.93,10.0,4.0,148.0,303.555,654.0,893.0,4.0,373.0,444.094,508.0,838.0,266.0,506.0,547.777,597.0,788.0,0.0,11.0,82.8951,160.0,555.0,118.0,120.614,7.60787,23.2646,16.989,10.0,10.0
+2907,96.964,10.0,4.0,147.0,302.338,652.0,836.0,4.0,374.0,443.718,508.0,761.0,265.0,506.0,548.115,597.0,791.0,0.0,11.0,82.9411,159.0,552.0,118.0,120.917,8.09203,23.0475,16.912,10.0,10.0
+2908,96.997,10.0,4.0,147.0,301.524,650.0,855.0,4.0,374.0,444.242,508.0,833.0,244.0,506.0,548.227,597.0,785.0,0.0,11.0,82.7483,159.0,557.0,118.0,120.778,8.2674,23.2564,16.8237,10.0,10.0
+2909,97.03,10.0,4.0,146.0,301.229,649.0,932.0,4.0,373.0,443.747,507.0,818.0,266.0,506.0,549.131,600.0,959.0,0.0,11.0,83.4528,160.0,524.0,118.0,120.587,7.63857,23.4533,17.2108,10.0,10.0
+2910,97.064,10.0,4.0,147.0,302.037,650.0,863.0,4.0,372.0,443.267,508.0,909.0,284.0,506.0,548.613,598.0,972.0,0.0,11.0,83.7338,161.0,525.0,118.0,120.98,8.29287,23.2817,16.8315,10.0,10.0
+2911,97.097,10.0,4.0,147.0,302.23,650.0,936.0,4.0,375.0,445.029,508.0,784.0,270.0,506.0,548.949,599.0,951.0,0.0,11.0,82.4851,158.0,524.0,119.0,122.157,7.38522,23.3823,16.9423,10.0,10.0
+2912,97.13,10.0,4.0,147.0,302.622,654.0,851.0,4.0,371.0,443.199,508.0,876.0,270.0,506.0,548.604,599.0,939.0,0.0,11.0,83.8165,162.0,521.0,118.0,120.838,8.24013,23.5073,17.1212,10.0,10.0
+2913,97.164,10.0,4.0,147.0,302.542,654.0,850.0,4.0,372.0,443.545,507.0,782.0,265.0,506.0,548.018,597.0,939.0,0.0,11.0,83.3416,160.0,522.0,118.0,120.548,8.07659,23.4211,17.2187,10.0,10.0
+2914,97.197,10.0,4.0,147.0,302.644,654.0,931.0,4.0,374.0,444.224,508.0,889.0,263.0,506.0,548.459,598.0,914.0,0.0,11.0,82.7922,160.0,525.0,118.0,120.717,7.46668,23.1835,16.8759,10.0,10.0
+2915,97.23,10.0,4.0,147.0,302.431,653.0,853.0,4.0,371.0,443.534,508.0,849.0,266.0,506.0,548.124,597.0,959.0,0.0,11.0,83.3323,162.0,523.0,118.0,120.57,8.10404,23.312,17.0479,10.0,10.0
+2916,97.264,10.0,4.0,147.0,302.418,653.0,862.0,4.0,370.0,442.485,508.0,779.0,241.0,506.0,548.619,599.0,864.0,0.0,11.0,84.5713,163.0,525.0,118.0,119.989,7.44441,23.3216,17.1442,10.0,10.0
+2917,97.297,10.0,4.0,147.0,301.948,649.0,849.0,4.0,371.0,443.622,508.0,795.0,254.0,506.0,548.574,598.0,944.0,0.0,11.0,83.5226,162.0,518.0,118.0,120.925,8.20075,23.5305,17.4247,10.0,10.0
+2918,97.331,10.0,4.0,147.0,302.49,651.0,863.0,4.0,370.0,443.414,508.0,768.0,235.0,506.0,548.945,600.0,823.0,0.0,11.0,84.0592,163.0,526.0,118.0,121.421,8.22311,23.4943,17.3756,10.0,10.0
+2919,97.364,10.0,4.0,147.0,302.718,652.0,857.0,4.0,370.0,443.336,508.0,782.0,248.0,506.0,549.448,601.0,788.0,0.0,11.0,84.3906,164.0,524.0,119.0,121.938,7.43097,23.6079,17.4036,10.0,10.0
+2920,97.397,10.0,4.0,147.0,302.534,651.0,930.0,4.0,369.0,442.159,508.0,815.0,257.0,506.0,549.418,602.0,803.0,0.0,11.0,85.3833,165.0,519.0,118.0,121.524,8.2277,23.7436,17.3292,10.0,10.0
+2921,97.431,10.0,4.0,147.0,302.968,653.0,856.0,4.0,368.0,441.423,508.0,801.0,266.0,506.0,550.068,603.0,799.0,0.0,12.0,86.5453,167.0,527.0,118.0,120.979,7.56383,24.2921,17.7586,10.0,10.0
+2922,97.464,10.0,4.0,147.0,302.626,653.0,851.0,4.0,360.0,437.359,507.0,851.0,210.0,506.0,551.941,607.0,795.0,0.0,12.0,90.9257,176.0,528.0,118.0,120.697,8.33797,25.2251,18.1546,10.0,10.0
+2923,97.497,10.0,4.0,147.0,303.211,655.0,930.0,4.0,361.0,437.333,507.0,851.0,231.0,506.0,552.022,606.0,811.0,0.0,12.0,91.2404,174.0,518.0,118.0,120.905,8.32707,25.2541,18.369,10.0,10.0
+2924,97.531,10.0,4.0,147.0,302.992,653.0,854.0,4.0,361.0,437.823,507.0,823.0,223.0,506.0,552.293,607.0,826.0,0.0,12.0,90.7229,175.0,528.0,118.0,121.596,7.63217,25.3801,18.3087,10.0,10.0
+2925,97.564,10.0,4.0,147.0,302.623,652.0,841.0,4.0,361.0,438.401,508.0,868.0,238.0,506.0,551.997,607.0,817.0,0.0,12.0,90.348,175.0,529.0,119.0,121.982,8.48317,25.4775,18.3914,10.0,10.0
+2926,97.598,10.0,4.0,147.0,302.372,651.0,932.0,4.0,361.0,438.178,507.0,823.0,219.0,506.0,552.033,608.0,815.0,0.0,12.0,90.4147,175.0,531.0,118.0,120.959,7.57229,25.2679,18.2175,10.0,10.0
+2927,97.631,10.0,4.0,148.0,303.625,655.0,863.0,4.0,361.0,437.841,508.0,789.0,269.0,505.0,550.691,605.0,812.0,0.0,12.0,90.1768,174.0,534.0,118.0,120.926,8.29797,25.1787,18.3696,10.0,10.0
+2928,97.664,10.0,4.0,149.0,303.018,653.0,866.0,4.0,361.0,438.082,507.0,806.0,251.0,506.0,551.454,606.0,798.0,0.0,12.0,90.4062,175.0,527.0,118.0,121.324,8.10387,25.286,18.4985,10.0,10.0
+2929,97.698,10.0,4.0,149.0,303.19,653.0,857.0,4.0,361.0,438.22,507.0,833.0,256.0,506.0,551.482,606.0,793.0,0.0,12.0,90.0593,174.0,528.0,118.0,121.379,7.3802,25.4694,18.5452,10.0,10.0
+2930,97.731,10.0,4.0,148.0,303.094,652.0,850.0,4.0,360.0,437.764,507.0,931.0,274.0,506.0,551.225,605.0,812.0,0.0,12.0,90.32,174.0,527.0,118.0,120.778,8.25368,25.2833,18.3181,10.0,10.0
+2931,97.764,10.0,4.0,148.0,303.147,651.0,845.0,4.0,360.0,437.898,507.0,899.0,211.0,506.0,551.91,607.0,833.0,0.0,12.0,90.6309,175.0,530.0,118.0,121.134,7.55696,25.4028,18.5418,10.0,10.0
+2932,97.798,10.0,4.0,148.0,303.119,651.0,858.0,4.0,359.0,436.808,507.0,925.0,278.0,506.0,551.535,606.0,809.0,0.0,12.0,91.3498,177.0,528.0,118.0,121.041,8.95402,25.2136,18.5799,10.0,10.0
+2933,97.831,10.0,4.0,148.0,302.226,650.0,856.0,4.0,363.0,438.415,507.0,819.0,259.0,506.0,550.937,605.0,824.0,0.0,12.0,89.6427,172.0,521.0,118.0,120.719,9.81332,25.0044,18.2717,10.0,10.0
+2934,97.864,10.0,4.0,149.0,302.717,650.0,851.0,4.0,363.0,438.566,508.0,848.0,240.0,506.0,551.19,604.0,819.0,0.0,12.0,89.539,172.0,526.0,118.0,121.656,8.66378,25.2595,18.4485,10.0,10.0
+2935,97.898,10.0,4.0,148.0,302.141,649.0,850.0,4.0,361.0,438.439,507.0,871.0,316.0,505.0,550.513,604.0,802.0,0.0,12.0,89.6065,173.0,525.0,118.0,120.911,10.4998,25.1564,18.4511,10.0,10.0
+2936,97.931,10.0,4.0,148.0,301.899,649.0,861.0,4.0,361.0,438.356,508.0,870.0,199.0,505.0,550.489,604.0,789.0,0.0,12.0,89.6204,173.0,528.0,118.0,120.828,8.54921,24.9033,18.2807,10.0,10.0
+2937,97.965,10.0,4.0,148.0,302.513,650.0,856.0,4.0,364.0,438.764,508.0,814.0,254.0,506.0,550.815,604.0,795.0,0.0,12.0,89.4376,171.0,530.0,118.0,121.611,9.85985,25.3093,18.383,10.0,10.0
+2938,97.998,10.0,4.0,147.0,302.137,650.0,852.0,4.0,360.0,437.546,507.0,866.0,258.0,506.0,551.586,606.0,802.0,0.0,12.0,90.7211,174.0,532.0,118.0,121.076,9.87128,25.4374,18.3522,10.0,10.0
+2939,98.031,10.0,4.0,148.0,301.908,649.0,853.0,4.0,360.0,437.409,507.0,828.0,173.0,506.0,551.3,605.0,788.0,0.0,12.0,90.6466,174.0,527.0,118.0,121.386,7.99839,25.2496,18.5493,10.0,10.0
+2940,98.065,10.0,4.0,148.0,302.579,650.0,931.0,4.0,363.0,438.147,508.0,837.0,213.0,506.0,551.163,604.0,799.0,0.0,12.0,90.0467,171.0,529.0,118.0,121.343,9.01932,25.102,18.2323,10.0,10.0
+2941,98.098,10.0,4.0,148.0,302.915,650.0,856.0,4.0,364.0,439.276,508.0,832.0,249.0,506.0,551.37,604.0,785.0,0.0,12.0,89.1837,171.0,526.0,119.0,122.118,7.66218,25.1089,18.4761,10.0,10.0
+2942,98.131,10.0,4.0,148.0,301.706,649.0,855.0,4.0,363.0,438.419,507.0,858.0,247.0,506.0,551.012,605.0,804.0,0.0,12.0,89.6396,173.0,526.0,118.0,120.956,8.60572,24.987,18.3595,10.0,10.0
+2943,98.165,10.0,4.0,149.0,302.692,651.0,858.0,4.0,362.0,438.749,508.0,816.0,177.0,506.0,551.128,605.0,849.0,0.0,12.0,89.5518,173.0,525.0,118.0,121.943,8.63073,24.9301,18.3554,10.0,10.0
+2944,98.198,10.0,4.0,148.0,302.119,650.0,850.0,4.0,364.0,439.58,508.0,853.0,300.0,506.0,550.534,604.0,822.0,0.0,11.0,88.5114,171.0,531.0,118.0,122.087,7.48884,24.6996,18.2553,10.0,10.0
+2945,98.231,10.0,4.0,147.0,301.565,649.0,853.0,4.0,364.0,439.7,508.0,817.0,254.0,505.0,549.93,605.0,854.0,0.0,11.0,88.2355,171.0,531.0,118.0,121.021,8.35743,25.1421,18.1148,10.0,10.0
+2946,98.265,10.0,4.0,147.0,301.646,650.0,859.0,4.0,365.0,439.923,508.0,861.0,266.0,505.0,550.104,604.0,917.0,0.0,11.0,88.2148,169.0,524.0,118.0,121.627,7.55015,24.9292,18.3023,10.0,10.0
+2947,98.298,10.0,4.0,147.0,301.32,649.0,936.0,4.0,364.0,440.079,508.0,799.0,268.0,505.0,550.12,603.0,898.0,0.0,11.0,87.9554,170.0,525.0,118.0,121.685,8.38912,24.6643,18.2619,10.0,10.0
+2948,98.332,10.0,4.0,147.0,300.601,648.0,844.0,4.0,364.0,439.747,508.0,850.0,266.0,506.0,550.19,604.0,840.0,0.0,12.0,88.2373,170.0,558.0,118.0,121.491,8.69899,24.6419,17.8765,10.0,10.0
+2949,98.365,10.0,4.0,147.0,301.037,649.0,852.0,4.0,365.0,440.662,509.0,904.0,280.0,506.0,550.388,604.0,981.0,0.0,11.0,87.4821,169.0,532.0,118.0,122.443,7.71478,25.0698,18.0912,10.0,10.0
+2950,98.398,10.0,4.0,147.0,301.67,649.0,847.0,4.0,364.0,439.683,508.0,1019.0,316.0,505.0,550.001,604.0,851.0,0.0,11.0,88.4512,171.0,562.0,118.0,121.73,8.55161,24.872,18.2802,10.0,10.0
+2951,98.432,10.0,4.0,147.0,301.633,650.0,842.0,4.0,364.0,439.904,509.0,865.0,190.0,505.0,550.938,606.0,975.0,0.0,11.0,88.8458,171.0,526.0,119.0,122.456,7.60203,25.4826,18.6201,10.0,10.0
+2952,98.465,10.0,4.0,146.0,300.733,650.0,900.0,4.0,364.0,438.77,508.0,844.0,266.0,505.0,549.369,604.0,1005.0,0.0,11.0,89.0801,171.0,524.0,117.0,120.703,8.51885,25.3909,18.4819,10.0,10.0
+2953,98.498,10.0,4.0,147.0,302.222,651.0,851.0,4.0,362.0,438.724,508.0,850.0,261.0,504.0,550.347,605.0,923.0,0.0,12.0,89.4521,173.0,528.0,118.0,120.958,8.30559,25.3034,18.4122,10.0,10.0
+2954,98.532,10.0,4.0,147.0,302.088,650.0,920.0,4.0,358.0,437.15,508.0,934.0,248.0,505.0,551.42,606.0,802.0,0.0,12.0,91.3619,177.0,528.0,118.0,121.546,7.67228,25.6393,18.7989,10.0,10.0
+2955,98.565,10.0,4.0,147.0,302.816,651.0,853.0,4.0,357.0,436.433,508.0,937.0,258.0,504.0,551.275,607.0,812.0,0.0,12.0,92.358,179.0,523.0,118.0,121.629,9.04589,26.1004,19.1246,10.0,10.0
+2956,98.599,10.0,4.0,148.0,303.286,653.0,853.0,4.0,355.0,435.469,508.0,880.0,234.0,504.0,552.07,608.0,802.0,0.0,11.0,93.3546,180.0,528.0,118.0,121.706,8.03751,26.0767,19.229,10.0,10.0
+2957,98.632,10.0,4.0,147.0,303.177,650.0,851.0,4.0,353.0,435.418,509.0,863.0,274.0,504.0,551.497,608.0,815.0,0.0,11.0,93.3992,181.0,529.0,117.0,121.49,9.02958,26.3791,19.3972,10.0,10.0
+2958,98.665,10.0,4.0,148.0,302.814,651.0,841.0,4.0,354.0,435.723,508.0,820.0,312.0,504.0,552.059,608.0,803.0,0.0,12.0,93.2716,180.0,532.0,118.0,121.61,8.81329,26.7496,19.4478,10.0,10.0
+2959,98.699,10.0,4.0,148.0,302.696,651.0,854.0,4.0,353.0,435.651,509.0,829.0,299.0,505.0,552.35,608.0,829.0,0.0,12.0,93.5474,182.0,530.0,118.0,122.455,7.67154,26.8476,19.3423,10.0,10.0
+2960,98.732,10.0,4.0,148.0,302.739,651.0,866.0,4.0,353.0,435.51,508.0,903.0,302.0,504.0,551.557,608.0,816.0,0.0,11.0,93.2547,181.0,529.0,117.0,121.595,8.45836,26.6389,19.3373,10.0,10.0
+2961,98.765,10.0,4.0,147.0,303.143,652.0,846.0,4.0,353.0,435.347,508.0,857.0,311.0,504.0,552.464,609.0,807.0,0.0,12.0,93.9812,181.0,530.0,118.0,121.914,7.57572,26.9236,19.5611,10.0,10.0
+2962,98.799,10.0,4.0,148.0,303.168,652.0,868.0,4.0,352.0,434.007,508.0,890.0,257.0,504.0,552.786,609.0,827.0,0.0,12.0,95.3803,184.0,532.0,118.0,121.516,8.54283,26.8005,19.3206,10.0,10.0
+2963,98.832,10.0,4.0,148.0,304.179,654.0,852.0,4.0,351.0,434.597,508.0,828.0,316.0,505.0,553.267,611.0,822.0,0.0,12.0,94.851,185.0,540.0,118.0,122.176,8.4086,27.2317,19.9789,10.0,10.0
+2964,98.865,10.0,4.0,148.0,304.107,654.0,937.0,4.0,352.0,434.741,509.0,882.0,293.0,506.0,553.288,610.0,828.0,0.0,12.0,94.7952,184.0,527.0,118.0,123.487,7.79168,26.8454,19.7233,10.0,10.0
+2965,98.899,10.0,4.0,148.0,303.716,653.0,924.0,4.0,349.0,433.562,508.0,887.0,312.0,505.0,553.581,610.0,823.0,0.0,12.0,95.7368,187.0,532.0,118.0,122.384,8.98977,26.7075,19.4786,10.0,10.0
+2966,98.932,10.0,4.0,148.0,304.285,655.0,861.0,4.0,351.0,433.421,508.0,869.0,304.0,504.0,554.143,612.0,830.0,0.0,12.0,96.2943,185.0,531.0,118.0,121.972,7.90902,26.7977,19.5605,10.0,10.0
+2967,98.966,10.0,4.0,147.0,303.756,655.0,860.0,4.0,350.0,433.402,507.0,886.0,308.0,505.0,553.219,610.0,823.0,0.0,13.0,95.7629,185.0,530.0,118.0,121.432,8.64456,26.8732,19.7112,10.0,10.0
+2968,98.999,10.0,4.0,146.0,302.049,652.0,849.0,4.0,348.0,432.233,507.0,866.0,292.0,504.0,553.75,612.0,819.0,0.0,13.0,97.2648,189.0,532.0,117.0,120.662,9.11398,26.7259,19.7647,10.0,10.0
+2969,99.032,10.0,4.0,146.0,302.14,652.0,860.0,4.0,350.0,433.152,507.0,826.0,242.0,505.0,553.316,611.0,837.0,0.0,13.0,95.9759,186.0,559.0,118.0,121.358,7.65124,27.0593,19.7042,10.0,10.0
+2970,99.066,10.0,4.0,147.0,302.274,652.0,863.0,4.0,352.0,433.525,508.0,829.0,240.0,504.0,552.479,609.0,833.0,0.0,12.0,95.4664,184.0,561.0,117.0,120.787,8.36275,26.8123,19.5136,10.0,10.0
+2971,99.099,10.0,4.0,147.0,302.238,651.0,866.0,4.0,352.0,433.562,507.0,855.0,276.0,504.0,552.641,610.0,815.0,0.0,13.0,95.4414,184.0,574.0,117.0,120.069,7.4686,27.0503,19.7016,10.0,10.0
+2972,99.132,10.0,4.0,146.0,301.955,651.0,864.0,4.0,348.0,432.42,507.0,892.0,242.0,504.0,552.67,610.0,839.0,0.0,12.0,96.3886,187.0,562.0,117.0,120.579,8.61976,26.8432,19.6632,10.0,10.0
+2973,99.166,10.0,4.0,148.0,303.105,651.0,934.0,4.0,351.0,433.414,507.0,830.0,258.0,504.0,552.728,610.0,818.0,0.0,13.0,95.5644,186.0,536.0,117.0,120.171,9.93872,27.0895,19.5574,10.0,10.0
+2974,99.199,10.0,4.0,147.0,303.612,655.0,864.0,4.0,349.0,433.296,507.0,855.0,232.0,505.0,553.25,610.0,825.0,0.0,13.0,95.8954,186.0,565.0,118.0,121.199,8.05841,26.6284,19.4512,10.0,10.0
+2975,99.232,10.0,4.0,147.0,304.42,655.0,929.0,4.0,347.0,431.836,507.0,857.0,258.0,504.0,553.254,610.0,839.0,0.0,13.0,97.2868,188.0,554.0,117.0,120.086,9.02535,27.2612,19.7239,10.0,10.0
+2976,99.266,10.0,4.0,147.0,305.152,656.0,859.0,4.0,347.0,431.326,506.0,874.0,202.0,504.0,553.931,612.0,839.0,0.0,13.0,97.9159,189.0,576.0,117.0,120.211,7.73803,27.1577,19.6504,10.0,10.0
+2977,99.299,10.0,4.0,147.0,305.009,656.0,855.0,4.0,348.0,431.847,507.0,836.0,201.0,504.0,552.745,611.0,935.0,0.0,13.0,96.9633,187.0,534.0,117.0,119.85,9.06311,27.3913,19.9413,10.0,10.0
+2978,99.333,10.0,4.0,146.0,304.625,656.0,858.0,4.0,348.0,431.36,507.0,845.0,242.0,504.0,553.104,610.0,804.0,0.0,13.0,97.4018,187.0,550.0,117.0,119.475,8.87431,26.873,19.6521,10.0,10.0
+2979,99.366,10.0,4.0,147.0,305.373,657.0,940.0,4.0,348.0,431.435,507.0,884.0,310.0,505.0,553.511,611.0,838.0,0.0,13.0,97.5145,188.0,527.0,117.0,120.194,7.75504,26.6669,19.6697,10.0,10.0
+2980,99.399,10.0,4.0,147.0,305.919,657.0,860.0,4.0,349.0,431.605,507.0,794.0,304.0,505.0,553.156,610.0,841.0,0.0,13.0,96.9658,186.0,535.0,117.0,120.263,8.65491,27.2905,19.6651,10.0,10.0
+2981,99.433,10.0,4.0,147.0,306.278,658.0,851.0,4.0,351.0,432.695,507.0,856.0,244.0,505.0,553.404,610.0,806.0,0.0,13.0,96.3499,185.0,532.0,117.0,120.769,7.6895,27.2131,19.674,10.0,10.0
+2982,99.466,10.0,4.0,147.0,305.574,658.0,872.0,4.0,348.0,432.63,507.0,903.0,226.0,505.0,552.065,608.0,809.0,0.0,13.0,95.759,186.0,532.0,117.0,120.126,8.29683,26.9245,19.5509,10.0,10.0
+2983,99.499,10.0,4.0,146.0,306.47,659.0,855.0,4.0,351.0,434.044,507.0,856.0,288.0,504.0,553.024,609.0,872.0,0.0,13.0,95.048,185.0,526.0,118.0,120.883,8.3139,27.0228,19.5626,10.0,10.0
+2984,99.533,10.0,4.0,147.0,306.467,659.0,855.0,4.0,351.0,432.834,507.0,862.0,292.0,505.0,553.601,610.0,792.0,0.0,13.0,96.2557,185.0,532.0,118.0,120.95,7.495,26.7765,19.5486,10.0,10.0
+2985,99.566,10.0,4.0,147.0,305.926,658.0,848.0,4.0,348.0,432.134,507.0,822.0,254.0,505.0,553.349,611.0,826.0,0.0,13.0,96.8042,188.0,528.0,117.0,120.473,8.42937,26.9738,19.7028,10.0,10.0
+2986,99.6,10.0,4.0,146.0,305.963,658.0,853.0,4.0,350.0,432.367,507.0,832.0,259.0,505.0,554.478,612.0,811.0,0.0,13.0,97.1065,186.0,532.0,118.0,120.162,7.63212,27.0677,19.3776,10.0,10.0
+2987,99.633,10.0,4.0,147.0,305.61,656.0,871.0,4.0,352.0,433.732,507.0,840.0,225.0,505.0,552.216,609.0,825.0,0.0,13.0,95.107,184.0,525.0,117.0,120.474,8.35396,26.8005,19.7637,10.0,10.0
+2988,99.666,10.0,4.0,147.0,305.587,657.0,852.0,4.0,349.0,432.787,507.0,851.0,245.0,505.0,553.61,610.0,873.0,0.0,13.0,96.4997,186.0,528.0,118.0,121.125,8.22538,26.6282,19.7463,10.0,10.0
+2989,99.7,10.0,4.0,147.0,305.711,657.0,930.0,4.0,351.0,432.991,507.0,820.0,210.0,506.0,553.385,610.0,885.0,0.0,13.0,96.0343,184.0,525.0,118.0,121.085,7.59165,26.742,19.5866,10.0,10.0
+2990,99.733,10.0,4.0,146.0,305.649,658.0,841.0,4.0,352.0,433.591,507.0,886.0,244.0,505.0,552.321,609.0,934.0,0.0,12.0,95.127,184.0,526.0,117.0,120.208,8.08643,27.1379,19.7461,10.0,10.0
+2991,99.766,10.0,4.0,147.0,306.277,659.0,883.0,4.0,350.0,432.567,507.0,835.0,264.0,505.0,553.235,610.0,802.0,0.0,13.0,96.4292,186.0,529.0,117.0,120.721,7.524,27.0662,19.6212,10.0,10.0
+2992,99.8,10.0,4.0,147.0,304.636,654.0,841.0,4.0,351.0,432.699,507.0,858.0,175.0,505.0,552.796,609.0,817.0,0.0,13.0,96.0405,185.0,528.0,117.0,120.625,8.39432,26.9002,19.6554,10.0,10.0
+2993,99.833,10.0,4.0,147.0,305.359,656.0,851.0,4.0,351.0,432.974,507.0,813.0,266.0,505.0,553.359,611.0,819.0,0.0,13.0,96.0078,185.0,530.0,117.0,120.487,8.04932,26.5407,19.4572,10.0,10.0
+2994,99.866,10.0,4.0,147.0,305.001,655.0,849.0,4.0,348.0,432.382,507.0,816.0,238.0,505.0,553.68,611.0,815.0,0.0,13.0,96.4835,187.0,527.0,118.0,120.611,7.44307,26.9264,19.543,10.0,10.0
+2995,99.9,10.0,4.0,147.0,305.385,656.0,923.0,4.0,348.0,431.925,507.0,931.0,217.0,504.0,552.632,610.0,801.0,0.0,13.0,96.7845,187.0,530.0,117.0,119.593,8.14585,26.7552,19.675,10.0,10.0
+2996,99.933,10.0,4.0,147.0,305.541,656.0,854.0,4.0,349.0,432.457,508.0,820.0,242.0,504.0,552.869,610.0,831.0,0.0,12.0,96.5629,186.0,529.0,117.0,120.525,7.61613,27.1327,19.8936,10.0,10.0
+2997,99.967,10.0,4.0,147.0,305.507,658.0,848.0,4.0,350.0,433.854,508.0,818.0,258.0,505.0,552.433,610.0,840.0,0.0,12.0,95.0073,186.0,541.0,117.0,121.153,8.30125,27.616,19.6254,10.0,10.0
+2998,100.0,10.0,4.0,147.0,305.972,657.0,860.0,4.0,355.0,436.344,508.0,782.0,281.0,504.0,551.109,607.0,814.0,0.0,12.0,92.0913,179.0,528.0,117.0,120.617,8.11249,26.7986,19.2522,10.0,10.0
+2999,100.033,10.0,4.0,148.0,306.435,658.0,850.0,4.0,360.0,437.306,508.0,898.0,367.0,506.0,551.132,607.0,850.0,0.0,11.0,90.9026,176.0,526.0,118.0,121.712,7.46047,26.0427,18.9646,10.0,10.0
+3000,100.067,10.0,4.0,147.0,306.847,660.0,854.0,4.0,358.0,436.502,508.0,881.0,295.0,505.0,551.547,606.0,837.0,0.0,12.0,91.8577,178.0,528.0,117.0,121.045,8.20499,26.0028,18.7812,10.0,10.0
+3001,100.1,10.0,4.0,148.0,307.128,660.0,847.0,4.0,356.0,436.228,508.0,834.0,238.0,505.0,551.623,608.0,804.0,0.0,12.0,92.2648,179.0,531.0,118.0,120.938,7.59547,25.8404,18.7469,10.0,10.0
+3002,100.133,10.0,4.0,148.0,306.778,659.0,864.0,4.0,354.0,435.139,508.0,833.0,227.0,505.0,551.362,607.0,814.0,0.0,12.0,92.8804,180.0,528.0,117.0,120.725,8.04715,25.8842,18.8662,10.0,10.0
+3003,100.167,10.0,4.0,148.0,307.868,660.0,852.0,4.0,355.0,435.546,508.0,856.0,271.0,505.0,551.625,607.0,814.0,0.0,12.0,92.9312,180.0,529.0,117.0,121.345,8.40719,25.8659,19.0396,10.0,10.0
+3004,100.2,10.0,4.0,148.0,307.553,660.0,850.0,4.0,356.0,435.436,508.0,876.0,306.0,506.0,551.828,608.0,818.0,0.0,12.0,92.8525,179.0,533.0,117.0,121.036,7.65027,25.8161,19.1267,10.0,10.0
+3005,100.233,10.0,4.0,148.0,307.421,661.0,858.0,4.0,356.0,435.667,508.0,876.0,352.0,505.0,550.958,606.0,831.0,0.0,12.0,92.5528,179.0,531.0,117.0,120.968,8.43935,25.7511,18.9482,10.0,10.0
+3006,100.267,10.0,4.0,148.0,308.056,662.0,905.0,4.0,354.0,435.522,508.0,887.0,187.0,505.0,551.697,608.0,820.0,0.0,12.0,93.0548,180.0,533.0,117.0,120.766,7.74528,25.5486,19.1813,10.0,10.0
+3007,100.3,10.0,4.0,148.0,306.635,659.0,849.0,4.0,357.0,436.936,509.0,906.0,296.0,505.0,550.603,606.0,803.0,0.0,11.0,91.3048,178.0,533.0,117.0,121.772,8.56611,25.8658,19.0586,10.0,10.0
+3008,100.334,10.0,4.0,147.0,305.634,657.0,850.0,4.0,356.0,436.557,508.0,896.0,261.0,504.0,550.533,606.0,789.0,0.0,12.0,91.6985,178.0,566.0,117.0,120.988,8.4406,25.7096,18.7047,10.0,10.0
+3009,100.367,10.0,4.0,147.0,305.725,658.0,841.0,4.0,354.0,436.91,509.0,816.0,291.0,505.0,551.043,606.0,840.0,0.0,11.0,91.3973,179.0,535.0,118.0,122.234,7.65245,26.1473,18.937,10.0,10.0
+3010,100.4,10.0,4.0,147.0,305.995,659.0,850.0,4.0,354.0,436.03,508.0,887.0,312.0,505.0,550.525,606.0,824.0,0.0,11.0,91.9154,179.0,531.0,117.0,120.5,8.00474,26.1323,18.9031,10.0,10.0
+3011,100.434,10.0,4.0,146.0,306.052,660.0,935.0,4.0,354.0,435.971,508.0,831.0,316.0,505.0,550.91,606.0,825.0,0.0,11.0,92.2173,179.0,532.0,117.0,120.978,7.44045,25.8636,18.9718,10.0,10.0
+3012,100.467,10.0,4.0,146.0,305.104,658.0,848.0,4.0,352.0,434.894,508.0,837.0,305.0,506.0,551.84,607.0,794.0,0.0,11.0,93.4062,181.0,528.0,118.0,121.631,8.04314,25.9701,19.0516,10.0,10.0
+3013,100.5,10.0,4.0,146.0,305.417,659.0,868.0,4.0,355.0,436.042,508.0,896.0,327.0,505.0,551.813,608.0,786.0,0.0,12.0,92.4653,180.0,533.0,118.0,121.723,8.25359,25.9089,18.9035,10.0,10.0
+3014,100.534,10.0,4.0,146.0,304.933,658.0,921.0,4.0,354.0,435.303,508.0,869.0,304.0,506.0,551.962,608.0,795.0,0.0,12.0,92.9822,181.0,528.0,118.0,121.802,7.36533,25.8334,19.0336,10.0,10.0
+3015,100.567,10.0,4.0,146.0,304.024,655.0,853.0,4.0,354.0,435.37,508.0,882.0,325.0,505.0,551.217,606.0,812.0,0.0,12.0,92.707,180.0,533.0,117.0,120.722,8.20893,25.8268,18.8582,10.0,10.0
+3016,100.601,10.0,4.0,146.0,304.383,655.0,858.0,4.0,354.0,435.42,508.0,973.0,327.0,505.0,551.381,608.0,792.0,0.0,12.0,92.9808,180.0,525.0,117.0,121.251,7.46634,26.1517,19.0006,10.0,10.0
+3017,100.634,10.0,4.0,147.0,305.353,655.0,934.0,4.0,354.0,435.959,508.0,901.0,334.0,506.0,551.584,607.0,804.0,0.0,11.0,92.4215,180.0,532.0,118.0,121.677,8.36884,26.0461,19.0405,10.0,10.0
+3018,100.667,10.0,4.0,147.0,304.866,655.0,929.0,4.0,352.0,435.45,508.0,870.0,371.0,506.0,552.436,608.0,807.0,0.0,12.0,93.2147,182.0,527.0,118.0,122.47,7.99029,26.1251,19.2228,10.0,10.0
+3019,100.701,10.0,4.0,147.0,305.429,656.0,855.0,4.0,357.0,436.794,509.0,921.0,362.0,506.0,552.184,607.0,785.0,0.0,11.0,92.06,178.0,527.0,119.0,123.686,7.82314,26.0022,18.9559,10.0,10.0
+3020,100.734,10.0,4.0,147.0,305.937,659.0,907.0,4.0,357.0,437.028,509.0,864.0,342.0,506.0,551.171,606.0,804.0,0.0,11.0,91.4421,178.0,535.0,118.0,122.958,8.87256,25.8793,18.6095,10.0,10.0
+3021,100.767,10.0,4.0,147.0,306.144,660.0,858.0,4.0,359.0,437.929,509.0,916.0,325.0,506.0,551.719,607.0,789.0,0.0,11.0,90.8595,177.0,530.0,119.0,123.703,7.91131,25.8321,18.8913,10.0,10.0
+3022,100.801,10.0,4.0,148.0,305.972,660.0,845.0,4.0,354.0,436.971,510.0,891.0,347.0,507.0,552.508,607.0,784.0,0.0,10.0,91.8916,180.0,527.0,119.0,124.524,8.42207,26.0884,18.9615,10.0,10.0
+3023,100.834,10.0,4.0,147.0,306.291,658.0,856.0,4.0,359.0,438.711,510.0,870.0,353.0,507.0,552.744,608.0,809.0,0.0,10.0,90.7155,176.0,532.0,120.0,125.719,8.5299,25.9538,18.9364,10.0,10.0
+3024,100.867,10.0,4.0,148.0,306.164,658.0,930.0,4.0,359.0,438.347,510.0,891.0,161.0,507.0,553.13,608.0,801.0,0.0,10.0,91.0131,176.0,545.0,120.0,125.355,7.98152,25.6984,19.0955,10.0,10.0
+3025,100.901,10.0,4.0,147.0,305.293,657.0,832.0,4.0,358.0,437.954,510.0,905.0,288.0,507.0,552.691,608.0,815.0,0.0,10.0,91.3001,178.0,555.0,119.0,125.093,8.96227,25.4931,18.8954,10.0,10.0
+3026,100.934,10.0,4.0,147.0,305.972,658.0,915.0,4.0,358.0,438.228,511.0,872.0,135.0,507.0,553.325,608.0,826.0,0.0,10.0,91.458,178.0,562.0,120.0,126.406,7.72628,25.4678,19.027,10.0,10.0
+3027,100.968,10.0,4.0,147.0,305.832,658.0,935.0,4.0,357.0,437.514,510.0,915.0,92.0,508.0,553.849,609.0,799.0,0.0,10.0,92.2301,180.0,532.0,120.0,126.419,9.29728,25.6303,18.9699,10.0,10.0
+3028,101.001,10.0,4.0,147.0,305.092,655.0,856.0,4.0,357.0,438.558,511.0,926.0,317.0,507.0,553.164,608.0,818.0,0.0,10.0,91.148,179.0,540.0,120.0,126.814,8.61344,25.923,18.9295,10.0,10.0
+3029,101.034,10.0,4.0,147.0,305.377,656.0,938.0,4.0,358.0,438.47,511.0,872.0,282.0,508.0,554.184,609.0,962.0,0.0,10.0,91.7144,179.0,545.0,120.0,127.032,7.93039,25.7323,18.9187,10.0,10.0
+3030,101.068,10.0,4.0,147.0,305.441,656.0,849.0,4.0,360.0,439.475,511.0,816.0,222.0,508.0,553.403,608.0,822.0,0.0,10.0,90.3753,177.0,574.0,120.0,127.047,9.48285,25.8069,18.8525,10.0,10.0
+3031,101.101,10.0,4.0,147.0,305.415,656.0,856.0,4.0,359.0,439.979,512.0,837.0,294.0,508.0,553.751,609.0,789.0,0.0,10.0,90.389,178.0,526.0,121.0,128.321,8.29287,25.7435,18.9021,10.0,10.0
+3032,101.134,10.0,4.0,147.0,304.795,656.0,854.0,4.0,358.0,439.352,512.0,855.0,344.0,508.0,553.11,608.0,797.0,0.0,10.0,90.6372,178.0,523.0,120.0,128.443,9.711,25.9653,19.0086,10.0,10.0
+3033,101.168,10.0,4.0,146.0,305.246,657.0,856.0,4.0,360.0,440.472,512.0,866.0,337.0,507.0,552.462,608.0,818.0,0.0,10.0,89.5337,176.0,531.0,120.0,127.791,8.22753,25.6473,18.805,10.0,10.0
+3034,101.201,10.0,4.0,146.0,304.627,655.0,854.0,4.0,358.0,440.131,512.0,844.0,326.0,508.0,552.922,608.0,817.0,0.0,10.0,89.8325,178.0,529.0,121.0,128.31,7.77713,25.864,18.9838,10.0,10.0
+3035,101.234,10.0,4.0,147.0,304.587,653.0,854.0,4.0,358.0,439.414,511.0,865.0,312.0,507.0,552.938,608.0,836.0,0.0,10.0,90.4189,178.0,552.0,120.0,127.189,9.03338,25.8323,18.9585,10.0,10.0
+3036,101.268,10.0,4.0,147.0,304.716,653.0,864.0,4.0,359.0,439.974,512.0,907.0,302.0,508.0,553.439,608.0,816.0,0.0,10.0,90.1587,178.0,553.0,121.0,127.765,7.92794,25.7315,18.7441,10.0,10.0
+3037,101.301,10.0,4.0,147.0,306.029,657.0,845.0,4.0,361.0,440.068,512.0,838.0,339.0,508.0,553.56,608.0,797.0,0.0,10.0,90.0768,176.0,532.0,121.0,128.066,9.86401,25.8789,19.0955,10.0,10.0
+3038,101.335,10.0,4.0,147.0,305.517,657.0,851.0,4.0,359.0,439.448,511.0,895.0,358.0,507.0,552.863,607.0,802.0,0.0,10.0,90.2914,177.0,530.0,120.0,126.623,9.74234,25.5994,18.7921,10.0,10.0
+3039,101.368,10.0,4.0,148.0,305.931,656.0,901.0,4.0,360.0,440.445,512.0,875.0,359.0,508.0,553.591,608.0,809.0,0.0,10.0,89.7522,176.0,529.0,121.0,128.87,7.92208,25.3527,18.784,10.0,10.0
+3040,101.401,10.0,4.0,148.0,305.968,655.0,862.0,4.0,361.0,440.484,512.0,991.0,349.0,508.0,553.192,608.0,819.0,0.0,10.0,89.5511,176.0,525.0,121.0,128.568,9.05501,25.2141,18.9136,10.0,10.0
+3041,101.435,10.0,4.0,149.0,306.55,657.0,864.0,4.0,361.0,440.368,512.0,864.0,316.0,508.0,553.921,608.0,811.0,0.0,10.0,89.9914,175.0,534.0,121.0,128.263,7.88272,25.5497,19.1702,10.0,10.0
+3042,101.468,10.0,4.0,148.0,306.143,656.0,855.0,4.0,357.0,438.406,512.0,893.0,336.0,508.0,554.067,608.0,820.0,0.0,10.0,91.702,180.0,524.0,121.0,128.196,9.37391,25.7473,18.8959,10.0,10.0
+3043,101.501,10.0,4.0,149.0,307.29,659.0,850.0,4.0,359.0,439.544,512.0,914.0,322.0,508.0,554.42,609.0,835.0,0.0,10.0,90.973,178.0,532.0,121.0,128.666,9.37443,25.6063,18.9593,10.0,10.0
+3044,101.535,10.0,4.0,148.0,306.6,658.0,865.0,4.0,358.0,438.992,512.0,889.0,306.0,508.0,554.561,609.0,814.0,0.0,10.0,91.3604,179.0,524.0,121.0,128.913,8.05522,25.7773,18.8683,10.0,10.0
+3045,101.568,10.0,4.0,148.0,306.058,657.0,849.0,4.0,358.0,438.587,511.0,854.0,308.0,508.0,554.312,609.0,829.0,0.0,10.0,91.7675,179.0,536.0,121.0,127.831,9.26905,25.7485,18.9358,10.0,10.0
+3046,101.602,10.0,4.0,148.0,306.487,658.0,866.0,4.0,357.0,438.736,511.0,908.0,316.0,508.0,554.737,609.0,837.0,0.0,10.0,91.677,179.0,529.0,121.0,128.133,7.91349,25.9137,18.9367,10.0,10.0
+3047,101.635,10.0,4.0,149.0,306.404,658.0,851.0,4.0,360.0,439.406,512.0,839.0,308.0,508.0,554.298,608.0,794.0,0.0,10.0,90.9032,177.0,541.0,121.0,128.588,8.96451,25.6936,18.8115,10.0,10.0
+3048,101.668,10.0,4.0,148.0,305.585,656.0,862.0,4.0,358.0,439.6,512.0,848.0,290.0,508.0,553.994,608.0,817.0,0.0,10.0,90.8294,178.0,547.0,121.0,128.779,8.78092,25.8718,18.8219,10.0,10.0
+3049,101.702,10.0,4.0,148.0,305.931,657.0,851.0,4.0,359.0,440.389,512.0,861.0,258.0,508.0,554.533,609.0,897.0,0.0,10.0,90.3489,179.0,537.0,122.0,129.681,7.55341,25.9134,18.9403,10.0,10.0
+3050,101.735,10.0,4.0,147.0,305.383,656.0,857.0,4.0,363.0,441.399,512.0,883.0,264.0,508.0,553.258,608.0,825.0,0.0,10.0,88.9342,174.0,526.0,121.0,129.139,8.34928,25.6093,18.8313,10.0,10.0
+3051,101.768,10.0,4.0,147.0,304.769,656.0,864.0,4.0,362.0,441.831,512.0,829.0,263.0,507.0,553.217,608.0,819.0,0.0,10.0,88.545,174.0,517.0,122.0,128.894,7.54265,25.7059,19.0618,10.0,10.0
+3052,101.802,10.0,4.0,147.0,304.818,659.0,863.0,4.0,359.0,439.993,512.0,824.0,245.0,507.0,552.338,607.0,802.0,0.0,10.0,89.7142,176.0,540.0,120.0,127.495,8.30744,25.6974,18.9788,10.0,10.0
+3053,101.835,10.0,4.0,147.0,304.815,656.0,847.0,4.0,363.0,441.198,512.0,837.0,258.0,507.0,552.997,608.0,795.0,0.0,10.0,89.1051,174.0,542.0,121.0,128.767,8.31141,25.4437,18.757,10.0,10.0
+3054,101.868,10.0,4.0,147.0,304.108,654.0,856.0,4.0,361.0,441.368,512.0,865.0,219.0,508.0,552.516,607.0,902.0,0.0,10.0,88.7502,174.0,531.0,121.0,129.467,7.60399,25.8226,18.8091,10.0,10.0
+3055,101.902,10.0,4.0,148.0,304.586,655.0,851.0,4.0,360.0,440.755,512.0,829.0,244.0,507.0,551.856,607.0,865.0,0.0,10.0,88.8959,175.0,525.0,120.0,128.62,9.03148,25.577,18.853,10.0,10.0
+3056,101.935,10.0,4.0,147.0,305.327,656.0,930.0,4.0,360.0,440.317,512.0,837.0,230.0,507.0,552.579,608.0,983.0,0.0,10.0,89.5672,175.0,526.0,120.0,128.782,8.13043,25.4092,18.7479,10.0,10.0
+3057,101.969,10.0,4.0,149.0,306.414,657.0,860.0,4.0,363.0,442.94,513.0,903.0,258.0,507.0,551.889,607.0,810.0,0.0,10.0,87.5474,172.0,546.0,121.0,131.014,8.77933,26.0812,19.0261,10.0,10.0
+3058,102.002,10.0,4.0,147.0,304.334,653.0,857.0,4.0,362.0,441.731,512.0,922.0,284.0,507.0,552.156,608.0,846.0,0.0,10.0,88.3582,174.0,528.0,121.0,129.03,8.12794,25.9847,18.9916,10.0,10.0
+3059,102.035,10.0,4.0,147.0,304.507,654.0,847.0,4.0,364.0,442.484,513.0,821.0,294.0,508.0,552.328,607.0,814.0,0.0,10.0,87.7422,172.0,532.0,121.0,130.53,7.39638,25.7912,18.8977,10.0,10.0
+3060,102.069,10.0,4.0,147.0,305.029,655.0,862.0,4.0,364.0,442.737,513.0,870.0,254.0,507.0,551.925,606.0,827.0,0.0,10.0,87.4248,172.0,528.0,121.0,130.455,8.07957,25.9454,18.6759,10.0,10.0
+3061,102.102,10.0,4.0,147.0,305.407,656.0,858.0,4.0,364.0,442.63,512.0,815.0,246.0,507.0,552.654,607.0,785.0,0.0,10.0,87.8421,173.0,529.0,122.0,129.888,7.33993,25.64,18.8866,10.0,10.0
+3062,102.135,10.0,4.0,148.0,303.787,650.0,871.0,4.0,362.0,442.212,513.0,834.0,269.0,507.0,551.639,606.0,814.0,0.0,9.0,87.8643,173.0,526.0,121.0,130.732,8.3743,25.7592,18.8988,10.0,10.0
+3063,102.169,10.0,4.0,147.0,305.875,656.0,859.0,4.0,363.0,442.124,513.0,958.0,254.0,507.0,551.309,605.0,823.0,0.0,10.0,87.728,172.0,527.0,121.0,130.094,8.21264,25.7557,18.7171,10.0,10.0
+3064,102.202,10.0,4.0,147.0,305.09,656.0,851.0,4.0,363.0,442.455,513.0,820.0,244.0,507.0,551.828,606.0,797.0,0.0,9.0,87.4728,173.0,526.0,121.0,130.112,7.43881,25.5682,18.7742,10.0,10.0
+3065,102.235,10.0,4.0,147.0,305.465,657.0,846.0,4.0,362.0,441.778,512.0,815.0,248.0,506.0,551.188,606.0,815.0,0.0,10.0,87.9209,173.0,530.0,120.0,128.748,8.28638,25.3307,18.7666,10.0,10.0
+3066,102.269,10.0,4.0,147.0,305.754,658.0,848.0,4.0,361.0,441.154,512.0,978.0,270.0,507.0,552.099,607.0,812.0,0.0,10.0,88.8654,175.0,529.0,120.0,129.022,7.43877,25.4295,18.6859,10.0,10.0
+3067,102.302,10.0,4.0,147.0,305.235,656.0,916.0,4.0,364.0,441.791,512.0,903.0,272.0,507.0,551.518,606.0,823.0,0.0,10.0,87.9681,172.0,529.0,120.0,128.775,8.00694,25.584,18.8541,10.0,10.0
+3068,102.336,10.0,4.0,147.0,304.785,655.0,856.0,4.0,360.0,440.9,512.0,919.0,262.0,507.0,551.674,606.0,846.0,0.0,9.0,88.845,176.0,525.0,120.0,128.972,8.03746,25.8033,18.9482,10.0,10.0
+3069,102.369,10.0,4.0,148.0,305.412,656.0,851.0,4.0,361.0,441.291,513.0,862.0,258.0,508.0,551.976,607.0,805.0,0.0,9.0,88.4045,175.0,532.0,121.0,130.047,7.66141,25.5588,18.822,10.0,10.0
+3070,102.402,10.0,4.0,147.0,304.928,655.0,853.0,4.0,362.0,441.791,513.0,884.0,275.0,507.0,551.718,607.0,801.0,0.0,10.0,88.1117,173.0,527.0,121.0,129.587,8.29939,25.7366,18.7043,10.0,10.0
+3071,102.436,10.0,4.0,147.0,305.109,655.0,859.0,4.0,361.0,441.467,512.0,848.0,254.0,507.0,552.251,608.0,816.0,0.0,10.0,88.4928,175.0,522.0,121.0,128.6,7.60058,25.7627,18.9296,10.0,10.0
+3072,102.469,10.0,4.0,148.0,303.796,652.0,839.0,4.0,360.0,441.034,513.0,939.0,280.0,507.0,551.453,606.0,814.0,0.0,10.0,88.6248,175.0,522.0,120.0,129.059,8.68281,25.9672,18.7897,10.0,10.0
+3073,102.502,10.0,4.0,146.0,303.861,652.0,851.0,4.0,364.0,443.052,513.0,872.0,166.0,506.0,552.185,608.0,806.0,0.0,10.0,87.5196,173.0,523.0,122.0,130.881,8.84879,25.8573,18.9029,10.0,10.0
+3074,102.536,10.0,4.0,146.0,304.027,653.0,857.0,4.0,364.0,443.328,514.0,888.0,274.0,507.0,552.108,607.0,818.0,0.0,9.0,87.0554,173.0,529.0,122.0,131.342,8.03742,25.4319,18.7335,10.0,10.0
+3075,102.569,10.0,4.0,147.0,304.17,654.0,859.0,4.0,362.0,441.63,513.0,893.0,275.0,506.0,551.671,608.0,797.0,0.0,10.0,88.4215,174.0,529.0,121.0,129.774,9.2618,25.7245,18.7499,10.0,10.0
+3076,102.603,10.0,4.0,147.0,304.317,655.0,863.0,4.0,363.0,441.578,512.0,836.0,228.0,507.0,552.653,608.0,794.0,0.0,10.0,88.7332,174.0,527.0,121.0,129.392,8.08796,25.7084,19.1472,10.0,10.0
+3077,102.636,10.0,4.0,147.0,304.521,655.0,858.0,4.0,363.0,441.204,512.0,833.0,234.0,506.0,551.397,607.0,820.0,0.0,10.0,88.4382,173.0,533.0,120.0,128.785,6.6698,25.6158,19.1128,10.0,10.0
+3078,102.669,10.0,4.0,148.0,303.757,651.0,936.0,4.0,361.0,441.083,512.0,869.0,233.0,507.0,552.85,608.0,800.0,0.0,10.0,89.0926,176.0,526.0,121.0,129.635,10.6728,25.8322,19.1114,10.0,10.0
+3079,102.703,10.0,4.0,148.0,303.93,651.0,858.0,4.0,364.0,442.113,512.0,876.0,248.0,508.0,553.194,608.0,810.0,0.0,10.0,88.5153,173.0,526.0,122.0,130.303,7.79518,25.9866,19.0393,10.0,10.0
+3080,102.736,10.0,4.0,148.0,304.579,654.0,862.0,4.0,362.0,441.996,513.0,856.0,234.0,508.0,552.541,607.0,812.0,0.0,9.0,88.3442,174.0,525.0,121.0,129.85,9.07,25.6071,18.9019,10.0,10.0
+3081,102.769,10.0,4.0,147.0,304.437,655.0,872.0,4.0,362.0,441.905,512.0,855.0,240.0,507.0,552.659,608.0,800.0,0.0,9.0,88.5149,175.0,526.0,121.0,129.193,8.26444,25.7083,19.0323,10.0,10.0
+3082,102.803,10.0,4.0,148.0,304.383,654.0,852.0,4.0,362.0,441.941,513.0,818.0,202.0,508.0,552.628,608.0,790.0,0.0,10.0,88.4688,175.0,530.0,121.0,129.915,9.04843,25.5837,18.9886,10.0,10.0
+3083,102.836,10.0,4.0,149.0,305.227,655.0,865.0,4.0,362.0,441.996,513.0,839.0,240.0,507.0,552.765,608.0,836.0,0.0,10.0,88.5433,175.0,525.0,121.0,130.166,8.55146,25.8525,18.7895,10.0,10.0
+3084,102.869,10.0,4.0,148.0,304.646,655.0,850.0,4.0,360.0,441.107,513.0,871.0,236.0,508.0,553.566,608.0,827.0,0.0,10.0,89.4727,176.0,524.0,122.0,130.465,7.79755,25.8547,18.8592,10.0,10.0
+3085,102.903,10.0,4.0,149.0,305.508,657.0,862.0,4.0,360.0,440.9,513.0,829.0,254.0,508.0,553.02,608.0,798.0,0.0,9.0,89.2794,176.0,530.0,121.0,130.197,8.63604,25.7879,18.8958,10.0,10.0
+3086,102.936,10.0,4.0,148.0,306.252,659.0,857.0,4.0,360.0,440.351,512.0,794.0,240.0,508.0,553.168,608.0,818.0,0.0,10.0,89.6793,177.0,532.0,121.0,128.843,7.72213,25.8975,18.7452,10.0,10.0
+3087,102.97,10.0,4.0,147.0,304.48,655.0,853.0,4.0,362.0,441.769,512.0,842.0,230.0,508.0,553.441,608.0,804.0,0.0,10.0,88.8371,175.0,523.0,122.0,130.176,8.45469,25.7812,18.8427,10.0,10.0
+3088,103.003,10.0,4.0,148.0,304.111,655.0,857.0,4.0,360.0,440.662,512.0,896.0,234.0,508.0,553.993,609.0,832.0,0.0,10.0,89.9904,177.0,527.0,122.0,129.054,9.43437,26.1113,18.8755,10.0,10.0
+3089,103.036,10.0,4.0,147.0,304.593,655.0,855.0,4.0,360.0,440.559,512.0,964.0,298.0,508.0,554.277,610.0,816.0,0.0,10.0,90.1636,177.0,525.0,122.0,129.928,8.21701,25.8032,19.0389,10.0,10.0
+3090,103.07,10.0,4.0,148.0,305.355,657.0,936.0,4.0,360.0,440.039,512.0,922.0,270.0,508.0,554.194,609.0,803.0,0.0,10.0,90.505,178.0,526.0,122.0,129.388,9.72865,25.9826,18.9801,10.0,10.0
+3091,103.103,10.0,4.0,148.0,305.388,656.0,934.0,4.0,360.0,439.628,512.0,920.0,248.0,508.0,554.268,609.0,833.0,0.0,10.0,90.8328,177.0,518.0,121.0,128.829,8.14569,25.8231,18.807,10.0,10.0
+3092,103.136,10.0,4.0,148.0,303.47,651.0,852.0,4.0,359.0,439.883,512.0,925.0,234.0,508.0,553.971,609.0,828.0,0.0,10.0,90.6597,178.0,522.0,121.0,129.631,8.57661,25.6943,18.6037,10.0,10.0
+3093,103.17,10.0,4.0,147.0,304.172,655.0,862.0,4.0,362.0,441.566,512.0,925.0,272.0,508.0,553.242,608.0,981.0,0.0,10.0,88.8301,175.0,526.0,122.0,129.9,8.98528,25.6706,18.9803,10.0,10.0
+3094,103.203,10.0,4.0,148.0,304.146,654.0,860.0,4.0,361.0,440.982,512.0,966.0,266.0,508.0,554.057,609.0,921.0,0.0,10.0,89.6758,177.0,538.0,122.0,129.611,7.80728,26.1491,19.1166,10.0,10.0
+3095,103.236,10.0,4.0,148.0,303.973,655.0,854.0,4.0,359.0,439.401,512.0,933.0,315.0,508.0,553.784,609.0,917.0,0.0,10.0,90.7398,178.0,521.0,121.0,128.005,9.02087,25.9069,18.891,10.0,10.0
+3096,103.27,10.0,4.0,147.0,304.507,657.0,936.0,4.0,359.0,439.699,512.0,948.0,304.0,508.0,554.081,609.0,935.0,0.0,10.0,90.697,178.0,524.0,121.0,127.857,7.89072,25.5366,18.8977,10.0,10.0
+3097,103.303,10.0,4.0,147.0,303.817,655.0,846.0,4.0,360.0,440.544,512.0,917.0,234.0,508.0,553.172,609.0,968.0,0.0,10.0,89.6804,177.0,528.0,121.0,128.932,8.46049,26.0078,18.8589,10.0,10.0
+3098,103.337,10.0,4.0,147.0,303.039,652.0,868.0,4.0,359.0,439.511,511.0,906.0,218.0,508.0,553.287,608.0,805.0,0.0,10.0,90.3014,176.0,528.0,121.0,127.821,9.62313,25.8899,19.1843,10.0,10.0
+3099,103.37,10.0,4.0,148.0,304.034,653.0,853.0,4.0,363.0,440.803,512.0,848.0,248.0,508.0,553.716,608.0,825.0,0.0,10.0,89.3623,174.0,528.0,121.0,128.779,8.50029,25.589,19.0278,10.0,10.0
+3100,103.403,10.0,4.0,148.0,304.173,654.0,857.0,4.0,360.0,439.759,512.0,875.0,194.0,508.0,552.751,608.0,847.0,0.0,10.0,89.8039,176.0,524.0,120.0,127.99,9.91899,25.783,18.8194,10.0,10.0
+3101,103.437,10.0,4.0,147.0,304.024,654.0,864.0,4.0,358.0,438.58,511.0,892.0,226.0,508.0,553.441,608.0,794.0,0.0,10.0,91.2521,178.0,528.0,120.0,127.993,8.15791,25.5903,18.8433,10.0,10.0
+3102,103.47,10.0,4.0,147.0,303.361,650.0,854.0,4.0,359.0,439.482,512.0,907.0,218.0,507.0,552.272,607.0,809.0,0.0,10.0,90.1417,177.0,527.0,120.0,128.831,8.2843,25.6741,18.9908,10.0,10.0
+3103,103.503,10.0,4.0,148.0,304.502,654.0,857.0,4.0,360.0,440.047,512.0,833.0,247.0,507.0,552.582,608.0,834.0,0.0,10.0,89.6665,175.0,536.0,120.0,127.567,8.64571,25.8545,19.1135,10.0,10.0
+3104,103.537,10.0,4.0,147.0,303.858,653.0,860.0,4.0,359.0,439.7,512.0,849.0,222.0,508.0,553.048,608.0,834.0,0.0,10.0,90.1144,177.0,527.0,121.0,127.948,7.45553,25.8759,18.7204,10.0,10.0
+3105,103.57,10.0,4.0,147.0,303.951,654.0,861.0,4.0,360.0,440.099,512.0,872.0,243.0,507.0,552.72,608.0,791.0,0.0,10.0,89.8564,176.0,530.0,121.0,128.389,8.46054,25.6537,19.0143,10.0,10.0
+3106,103.604,10.0,4.0,147.0,304.207,654.0,850.0,4.0,361.0,440.254,512.0,840.0,240.0,508.0,553.08,608.0,834.0,0.0,10.0,89.8555,175.0,524.0,121.0,128.086,7.68222,25.5696,18.8128,10.0,10.0
+3107,103.637,10.0,4.0,148.0,303.653,651.0,930.0,4.0,363.0,440.989,512.0,814.0,255.0,508.0,552.392,607.0,811.0,0.0,10.0,88.9016,174.0,522.0,121.0,129.255,8.46504,25.8763,18.9262,10.0,10.0
+3108,103.67,10.0,4.0,147.0,303.151,652.0,860.0,4.0,359.0,439.481,512.0,944.0,265.0,508.0,552.822,608.0,816.0,0.0,10.0,90.1882,177.0,526.0,120.0,128.186,8.8778,25.7589,18.9668,10.0,10.0
+3109,103.704,10.0,4.0,148.0,303.702,653.0,858.0,4.0,359.0,439.833,512.0,839.0,323.0,508.0,553.596,608.0,817.0,0.0,10.0,90.3092,177.0,529.0,121.0,128.862,7.55784,25.6599,19.3057,10.0,10.0
+3110,103.737,10.0,4.0,147.0,303.104,650.0,854.0,4.0,359.0,439.536,512.0,936.0,345.0,508.0,552.973,608.0,805.0,0.0,10.0,90.2214,177.0,519.0,120.0,127.874,8.3557,25.6148,18.9835,10.0,10.0
+3111,103.77,10.0,4.0,147.0,303.039,650.0,919.0,4.0,358.0,439.236,512.0,923.0,310.0,507.0,553.261,610.0,803.0,0.0,10.0,90.8363,179.0,528.0,120.0,127.563,7.52391,25.8941,19.1017,10.0,10.0
+3112,103.804,10.0,4.0,148.0,303.448,650.0,863.0,4.0,361.0,440.824,513.0,861.0,326.0,508.0,551.966,607.0,822.0,0.0,10.0,88.9873,174.0,528.0,121.0,129.638,8.61622,26.2911,19.2133,10.0,10.0
+3113,103.837,10.0,4.0,147.0,303.156,651.0,858.0,4.0,363.0,441.272,512.0,923.0,308.0,508.0,552.26,608.0,807.0,0.0,10.0,88.6037,173.0,539.0,121.0,129.031,9.27609,25.9107,19.1249,10.0,10.0
+3114,103.87,10.0,4.0,148.0,302.88,650.0,845.0,4.0,359.0,440.384,512.0,822.0,280.0,508.0,552.651,608.0,800.0,0.0,10.0,89.4295,176.0,525.0,121.0,129.038,7.91956,25.8704,18.9481,10.0,10.0
+3115,103.904,10.0,4.0,147.0,302.579,650.0,847.0,4.0,358.0,438.647,511.0,863.0,293.0,507.0,552.755,608.0,778.0,0.0,10.0,90.8696,178.0,524.0,120.0,127.115,8.88105,25.5619,18.8639,10.0,10.0
+3116,103.937,10.0,4.0,147.0,303.146,651.0,844.0,4.0,358.0,438.733,511.0,895.0,352.0,507.0,553.684,610.0,805.0,0.0,10.0,91.2833,178.0,518.0,121.0,127.582,7.56522,25.8528,19.2113,10.0,10.0
+3117,103.971,10.0,4.0,148.0,302.25,650.0,935.0,4.0,360.0,439.408,512.0,932.0,274.0,508.0,552.571,608.0,827.0,0.0,10.0,90.3244,175.0,526.0,120.0,127.838,9.21703,25.7533,19.163,10.0,10.0
+3118,104.004,10.0,4.0,147.0,301.625,648.0,911.0,4.0,360.0,439.704,512.0,885.0,270.0,507.0,553.257,608.0,829.0,0.0,10.0,90.4541,176.0,529.0,121.0,128.772,8.81163,25.5207,19.0587,10.0,10.0
+3119,104.037,10.0,4.0,147.0,302.164,649.0,849.0,4.0,359.0,439.454,512.0,904.0,242.0,508.0,553.331,609.0,795.0,0.0,10.0,91.0065,177.0,523.0,121.0,129.379,7.41573,25.7016,19.2532,10.0,10.0
+3120,104.071,10.0,4.0,147.0,302.597,650.0,849.0,4.0,359.0,439.148,512.0,942.0,294.0,508.0,553.393,608.0,822.0,0.0,10.0,90.8444,177.0,528.0,121.0,128.013,8.57666,25.568,18.9089,10.0,10.0
+3121,104.104,10.0,4.0,147.0,302.605,650.0,857.0,4.0,358.0,438.897,512.0,936.0,256.0,508.0,553.945,609.0,801.0,0.0,9.0,91.3667,178.0,529.0,121.0,128.537,7.68581,25.5525,18.8829,10.0,10.0
+3122,104.137,10.0,4.0,147.0,303.189,653.0,853.0,4.0,358.0,437.973,512.0,942.0,280.0,508.0,553.74,608.0,814.0,0.0,10.0,92.1397,179.0,522.0,120.0,128.653,9.41692,26.0516,18.9074,10.0,10.0
+3123,104.171,10.0,4.0,148.0,303.941,654.0,852.0,4.0,354.0,437.349,512.0,910.0,243.0,508.0,554.556,609.0,813.0,0.0,10.0,92.9023,181.0,530.0,121.0,127.98,8.99729,26.0379,19.1254,10.0,10.0
+3124,104.204,10.0,4.0,147.0,303.01,652.0,849.0,4.0,357.0,438.058,512.0,909.0,280.0,508.0,553.653,608.0,799.0,0.0,10.0,91.9493,179.0,527.0,121.0,128.446,7.92064,25.8155,19.0736,10.0,10.0
+3125,104.237,10.0,4.0,147.0,302.609,650.0,860.0,4.0,356.0,438.272,512.0,903.0,208.0,508.0,553.598,609.0,811.0,0.0,10.0,91.9411,179.0,529.0,121.0,128.609,9.13182,26.0751,19.096,10.0,10.0
+3126,104.271,10.0,4.0,147.0,303.096,651.0,859.0,4.0,359.0,438.616,512.0,836.0,244.0,508.0,554.283,609.0,787.0,0.0,10.0,91.704,178.0,534.0,121.0,128.425,7.9446,26.1117,18.9998,10.0,10.0
+3127,104.304,10.0,4.0,147.0,302.936,652.0,912.0,4.0,357.0,438.588,512.0,968.0,266.0,508.0,553.384,608.0,788.0,0.0,10.0,91.5952,179.0,530.0,120.0,129.121,9.07651,25.8255,18.8933,10.0,10.0
+3128,104.338,10.0,4.0,147.0,302.059,650.0,854.0,4.0,358.0,438.971,512.0,854.0,312.0,507.0,552.796,608.0,805.0,0.0,10.0,90.8823,178.0,522.0,120.0,128.269,9.31537,25.7726,19.036,10.0,10.0
+3129,104.371,10.0,4.0,147.0,302.389,651.0,846.0,4.0,358.0,439.168,512.0,904.0,336.0,508.0,553.764,608.0,786.0,0.0,10.0,91.1562,178.0,528.0,121.0,129.538,8.67147,25.6684,18.8733,10.0,10.0
+3130,104.404,10.0,4.0,147.0,301.903,650.0,843.0,4.0,356.0,438.335,512.0,874.0,340.0,508.0,553.708,608.0,810.0,0.0,10.0,91.7862,179.0,528.0,121.0,128.205,10.6601,25.8937,18.8877,10.0,10.0
+3131,104.438,10.0,4.0,147.0,301.735,650.0,867.0,4.0,354.0,437.473,512.0,907.0,303.0,508.0,553.704,608.0,817.0,0.0,10.0,92.2393,180.0,532.0,120.0,127.46,8.82784,26.2708,19.2233,10.0,10.0
+3132,104.471,10.0,4.0,147.0,301.856,649.0,860.0,4.0,353.0,437.229,512.0,883.0,245.0,508.0,553.843,608.0,823.0,0.0,10.0,92.6176,180.0,533.0,120.0,128.391,9.58877,25.8659,18.9845,10.0,10.0
+3133,104.504,10.0,4.0,146.0,300.176,648.0,856.0,4.0,355.0,438.851,512.0,827.0,264.0,508.0,554.483,609.0,802.0,0.0,10.0,91.6598,180.0,528.0,121.0,129.491,10.4769,25.76,19.0192,10.0,10.0
+3134,104.538,10.0,4.0,146.0,298.987,647.0,849.0,4.0,358.0,439.387,512.0,866.0,326.0,508.0,554.302,609.0,805.0,0.0,10.0,91.1374,178.0,525.0,121.0,129.61,8.2426,25.6133,18.9972,10.0,10.0
+3135,104.571,10.0,4.0,146.0,298.536,647.0,845.0,4.0,358.0,438.414,512.0,904.0,312.0,507.0,553.174,608.0,826.0,0.0,10.0,91.4011,178.0,527.0,120.0,128.429,10.3923,25.5094,18.7722,10.0,10.0
+3136,104.605,10.0,4.0,146.0,298.803,648.0,838.0,4.0,356.0,438.851,512.0,822.0,265.0,508.0,554.015,609.0,805.0,0.0,10.0,91.3719,179.0,519.0,121.0,128.398,8.78308,26.0325,18.9047,10.0,10.0
+3137,104.638,10.0,4.0,146.0,298.203,647.0,849.0,4.0,355.0,437.876,512.0,874.0,268.0,508.0,553.718,608.0,805.0,0.0,10.0,91.8277,180.0,531.0,120.0,128.163,10.7387,26.1584,19.0098,10.0,10.0
+3138,104.671,10.0,4.0,147.0,298.508,648.0,852.0,4.0,353.0,437.147,512.0,964.0,274.0,508.0,554.03,609.0,803.0,0.0,10.0,92.8101,181.0,532.0,120.0,128.083,9.49768,25.857,19.0252,10.0,10.0
+3139,104.705,10.0,4.0,147.0,299.176,648.0,865.0,4.0,354.0,437.294,512.0,927.0,226.0,508.0,554.435,609.0,824.0,0.0,10.0,92.7284,180.0,523.0,121.0,128.474,7.9877,26.2018,19.1414,10.0,10.0
+3140,104.738,10.0,4.0,147.0,299.498,648.0,850.0,4.0,354.0,437.363,512.0,877.0,201.0,508.0,553.801,608.0,923.0,0.0,10.0,92.543,180.0,526.0,120.0,127.972,9.46948,26.0796,19.0998,10.0,10.0
+3141,104.771,10.0,4.0,146.0,299.709,648.0,915.0,4.0,353.0,437.112,512.0,941.0,145.0,508.0,554.387,609.0,818.0,0.0,10.0,93.0023,180.0,532.0,120.0,127.792,8.29871,26.0593,19.1202,10.0,10.0
+3142,104.805,10.0,4.0,147.0,299.965,647.0,848.0,4.0,355.0,437.925,512.0,835.0,236.0,508.0,554.463,609.0,814.0,0.0,10.0,92.3018,180.0,525.0,121.0,128.927,10.0871,25.9086,18.8645,10.0,10.0
+3143,104.838,10.0,4.0,147.0,300.802,649.0,856.0,4.0,358.0,437.995,512.0,891.0,244.0,508.0,554.237,609.0,800.0,0.0,10.0,92.2971,179.0,528.0,121.0,128.133,8.89633,25.9504,19.0742,10.0,10.0
+3144,104.871,10.0,4.0,147.0,300.327,648.0,842.0,4.0,357.0,438.615,512.0,896.0,271.0,508.0,554.356,608.0,822.0,0.0,10.0,91.7322,179.0,521.0,121.0,129.485,7.89169,25.9294,19.2704,10.0,10.0
+3145,104.905,10.0,4.0,148.0,300.048,648.0,865.0,4.0,357.0,438.717,512.0,860.0,244.0,507.0,553.262,608.0,892.0,0.0,10.0,91.3106,178.0,529.0,120.0,128.68,8.67992,25.5351,19.1083,10.0,10.0
+3146,104.938,10.0,4.0,147.0,300.496,649.0,856.0,4.0,358.0,438.568,512.0,835.0,198.0,508.0,553.688,608.0,810.0,0.0,10.0,91.4173,178.0,522.0,120.0,128.25,7.63231,25.7819,19.0375,10.0,10.0
+3147,104.972,10.0,4.0,146.0,299.631,649.0,862.0,4.0,359.0,440.073,512.0,894.0,280.0,508.0,553.525,609.0,811.0,0.0,10.0,90.326,177.0,527.0,121.0,129.362,8.52213,25.822,19.0479,10.0,10.0
+3148,105.005,10.0,4.0,146.0,300.07,648.0,861.0,4.0,356.0,438.486,512.0,953.0,300.0,508.0,553.277,608.0,787.0,0.0,10.0,91.2934,179.0,527.0,120.0,128.953,8.60661,25.9853,18.9842,10.0,10.0
+3149,105.038,10.0,4.0,146.0,300.375,648.0,863.0,4.0,357.0,438.665,512.0,911.0,310.0,508.0,554.254,609.0,816.0,0.0,10.0,91.6432,178.0,523.0,121.0,129.583,7.52898,25.9947,19.06,10.0,10.0
+3150,105.072,10.0,4.0,146.0,300.557,648.0,844.0,4.0,356.0,439.174,512.0,903.0,270.0,508.0,554.145,609.0,824.0,0.0,10.0,91.3489,179.0,525.0,121.0,129.832,8.55624,25.8735,18.9655,10.0,10.0
+3151,105.105,10.0,4.0,146.0,300.317,648.0,854.0,4.0,356.0,439.081,512.0,1019.0,294.0,508.0,554.39,609.0,801.0,0.0,10.0,91.4683,180.0,521.0,121.0,129.772,7.76032,25.7493,19.0682,10.0,10.0
+3152,105.138,10.0,4.0,146.0,299.597,647.0,841.0,4.0,358.0,439.289,512.0,914.0,254.0,508.0,553.868,608.0,820.0,0.0,10.0,90.8727,178.0,528.0,121.0,129.149,8.51738,25.6574,19.0157,10.0,10.0
+3153,105.172,10.0,4.0,147.0,300.29,648.0,927.0,4.0,359.0,440.146,512.0,881.0,248.0,508.0,553.244,608.0,804.0,0.0,10.0,90.0922,176.0,533.0,121.0,129.56,8.50355,25.7977,18.9247,10.0,10.0
+3154,105.205,10.0,4.0,146.0,299.999,648.0,861.0,4.0,358.0,439.502,512.0,867.0,302.0,508.0,553.575,608.0,797.0,0.0,10.0,90.5621,178.0,528.0,121.0,128.986,7.68949,25.602,18.8208,10.0,10.0
+3155,105.238,10.0,4.0,146.0,299.771,647.0,876.0,4.0,359.0,440.338,512.0,915.0,262.0,508.0,553.571,609.0,813.0,0.0,10.0,90.3641,178.0,526.0,121.0,129.329,8.91037,26.0394,19.1138,10.0,10.0
+3156,105.272,10.0,4.0,146.0,300.245,648.0,866.0,4.0,360.0,440.731,512.0,821.0,224.0,508.0,553.58,608.0,865.0,0.0,10.0,89.8713,176.0,527.0,122.0,130.32,7.92008,26.175,19.062,10.0,10.0
+3157,105.305,10.0,4.0,146.0,300.224,648.0,845.0,4.0,358.0,439.697,512.0,832.0,232.0,508.0,553.936,609.0,979.0,0.0,10.0,90.7435,178.0,521.0,121.0,129.632,8.20595,25.9859,18.7482,10.0,10.0
+3158,105.339,10.0,4.0,146.0,299.995,648.0,932.0,4.0,358.0,439.062,512.0,851.0,230.0,507.0,553.279,609.0,879.0,0.0,10.0,90.855,178.0,531.0,120.0,128.0,8.3003,26.0561,18.898,10.0,10.0
+3159,105.372,10.0,4.0,146.0,299.836,648.0,870.0,4.0,358.0,440.007,512.0,828.0,230.0,508.0,553.275,609.0,814.0,0.0,10.0,90.156,178.0,575.0,121.0,129.559,7.50284,26.359,19.1261,10.0,10.0
+3160,105.405,10.0,4.0,146.0,299.547,647.0,932.0,4.0,358.0,439.625,512.0,822.0,166.0,507.0,552.507,608.0,892.0,0.0,10.0,90.1814,178.0,531.0,120.0,128.555,8.40335,26.0825,19.1543,10.0,10.0
+3161,105.439,10.0,4.0,146.0,299.806,648.0,932.0,4.0,359.0,439.819,512.0,823.0,222.0,507.0,552.881,608.0,907.0,0.0,10.0,90.2238,176.0,527.0,120.0,128.206,7.55824,25.7151,18.8611,10.0,10.0
+3162,105.472,10.0,4.0,147.0,300.179,648.0,873.0,4.0,359.0,439.989,512.0,815.0,270.0,507.0,552.04,606.0,905.0,0.0,10.0,89.5636,176.0,528.0,120.0,128.395,9.17074,25.8169,19.0208,10.0,10.0
+3163,105.505,10.0,4.0,146.0,301.324,649.0,844.0,4.0,359.0,439.441,512.0,827.0,219.0,507.0,552.539,608.0,813.0,0.0,10.0,90.4247,177.0,564.0,120.0,127.91,8.98934,25.8759,18.9658,10.0,10.0
+3164,105.539,10.0,4.0,147.0,301.264,650.0,938.0,4.0,357.0,438.952,512.0,879.0,210.0,508.0,552.998,608.0,918.0,0.0,10.0,90.8964,179.0,523.0,120.0,128.95,7.60191,25.993,18.8749,10.0,10.0
+3165,105.572,10.0,4.0,147.0,301.725,651.0,854.0,4.0,358.0,438.889,512.0,800.0,234.0,507.0,552.782,608.0,868.0,0.0,10.0,90.87,178.0,567.0,120.0,128.357,8.62835,26.0411,18.8356,10.0,10.0
+3166,105.606,10.0,4.0,147.0,302.793,653.0,846.0,4.0,355.0,438.426,512.0,832.0,334.0,507.0,553.009,608.0,805.0,0.0,10.0,91.3707,179.0,549.0,120.0,127.871,7.67583,26.075,19.0147,10.0,10.0
+3167,105.639,10.0,4.0,147.0,301.375,650.0,858.0,4.0,360.0,439.637,512.0,790.0,249.0,508.0,552.971,608.0,831.0,0.0,10.0,90.1645,176.0,541.0,121.0,128.855,8.88269,25.8332,19.0881,10.0,10.0
+3168,105.672,10.0,4.0,148.0,301.366,650.0,846.0,4.0,358.0,438.582,512.0,856.0,290.0,507.0,553.742,609.0,940.0,0.0,10.0,91.6899,179.0,532.0,121.0,128.229,9.53312,25.9179,19.1129,10.0,10.0
+3169,105.706,10.0,4.0,147.0,301.526,650.0,859.0,4.0,358.0,439.256,512.0,905.0,258.0,508.0,554.035,609.0,951.0,0.0,10.0,91.295,179.0,523.0,121.0,129.541,8.0654,26.1677,19.2553,10.0,10.0
+3170,105.739,10.0,4.0,147.0,302.082,650.0,852.0,4.0,358.0,438.498,512.0,875.0,298.0,508.0,553.536,608.0,793.0,0.0,10.0,91.2697,179.0,574.0,120.0,128.047,9.1184,26.3226,19.2656,10.0,10.0
+3171,105.772,10.0,4.0,147.0,302.065,650.0,850.0,4.0,358.0,438.764,511.0,845.0,266.0,507.0,553.457,608.0,967.0,0.0,10.0,91.1354,179.0,525.0,120.0,127.089,7.73728,26.2122,19.0304,10.0,10.0
+3172,105.806,10.0,4.0,147.0,301.666,649.0,859.0,4.0,355.0,438.497,512.0,779.0,208.0,508.0,553.486,608.0,914.0,0.0,10.0,91.4933,180.0,528.0,120.0,128.242,8.84863,25.9719,18.9598,10.0,10.0
+3173,105.839,10.0,4.0,148.0,303.44,655.0,868.0,4.0,359.0,440.106,512.0,831.0,241.0,508.0,552.774,608.0,935.0,0.0,10.0,89.9867,177.0,529.0,121.0,128.923,8.69286,25.6753,18.6063,10.0,10.0
+3174,105.872,10.0,4.0,148.0,303.69,655.0,927.0,4.0,357.0,438.994,512.0,762.0,246.0,508.0,553.186,608.0,954.0,0.0,10.0,90.8369,178.0,525.0,121.0,128.472,7.7348,25.9194,18.8469,10.0,10.0
+3175,105.906,10.0,4.0,149.0,303.901,655.0,850.0,4.0,357.0,438.221,512.0,898.0,258.0,508.0,553.285,609.0,979.0,0.0,10.0,91.635,179.0,528.0,120.0,127.914,9.01147,25.9062,19.1501,10.0,10.0
+3176,105.939,10.0,4.0,148.0,303.656,654.0,868.0,4.0,358.0,438.677,512.0,816.0,256.0,507.0,553.303,609.0,874.0,0.0,10.0,91.4705,179.0,527.0,120.0,128.212,7.96086,26.0421,19.1983,10.0,10.0
+3177,105.973,10.0,4.0,148.0,302.703,651.0,872.0,4.0,358.0,438.85,512.0,819.0,280.0,508.0,553.68,608.0,796.0,0.0,10.0,91.2842,179.0,526.0,121.0,128.572,9.77887,25.9205,19.0625,10.0,10.0
+3178,106.006,10.0,4.0,148.0,303.024,654.0,931.0,4.0,354.0,437.269,511.0,802.0,269.0,507.0,552.876,608.0,832.0,0.0,10.0,92.209,181.0,566.0,120.0,126.794,9.57695,26.1301,19.2351,10.0,10.0
+3179,106.039,10.0,4.0,148.0,303.344,653.0,848.0,4.0,359.0,438.873,512.0,833.0,248.0,508.0,553.368,608.0,829.0,0.0,10.0,91.1146,178.0,527.0,121.0,128.208,7.96186,25.8843,19.1571,10.0,10.0
+3180,106.073,10.0,4.0,148.0,303.484,653.0,928.0,4.0,359.0,439.929,512.0,854.0,228.0,507.0,552.105,607.0,821.0,0.0,10.0,89.5481,176.0,541.0,120.0,127.511,9.32914,25.7882,18.7112,10.0,10.0
+3181,106.106,10.0,4.0,148.0,303.494,654.0,855.0,4.0,360.0,440.537,512.0,790.0,248.0,507.0,552.262,607.0,875.0,0.0,10.0,89.268,175.0,530.0,120.0,128.348,7.969,25.6319,18.7018,10.0,10.0
+3182,106.139,10.0,4.0,147.0,302.75,652.0,858.0,4.0,359.0,439.778,512.0,845.0,158.0,507.0,552.062,607.0,799.0,0.0,10.0,89.8572,176.0,528.0,120.0,128.358,10.0462,25.9261,19.0853,10.0,10.0
+3183,106.173,10.0,4.0,147.0,303.878,655.0,852.0,4.0,361.0,440.446,512.0,810.0,222.0,507.0,552.23,607.0,811.0,0.0,10.0,89.2814,174.0,525.0,120.0,128.518,9.59911,25.7046,18.7904,10.0,10.0
+3184,106.206,10.0,4.0,147.0,302.827,653.0,863.0,4.0,358.0,439.187,512.0,916.0,266.0,508.0,552.567,608.0,818.0,0.0,10.0,90.4594,178.0,527.0,120.0,128.632,7.81836,26.0621,18.9521,10.0,10.0
+3185,106.239,10.0,4.0,148.0,302.907,652.0,868.0,4.0,357.0,438.596,512.0,802.0,246.0,507.0,552.127,607.0,792.0,0.0,10.0,90.7273,178.0,569.0,120.0,127.035,8.67293,26.1221,19.0476,10.0,10.0
+3186,106.273,10.0,4.0,147.0,303.55,654.0,862.0,4.0,359.0,439.055,512.0,817.0,212.0,506.0,552.45,608.0,820.0,0.0,10.0,90.6761,177.0,573.0,120.0,127.398,7.51057,25.7404,19.0305,10.0,10.0
+3187,106.306,10.0,4.0,147.0,303.067,652.0,861.0,4.0,359.0,440.4,512.0,821.0,258.0,507.0,552.108,608.0,916.0,0.0,10.0,89.4499,176.0,551.0,120.0,128.823,8.40397,25.5782,18.9795,10.0,10.0
+3188,106.34,10.0,4.0,148.0,302.558,653.0,849.0,4.0,358.0,439.712,512.0,990.0,268.0,506.0,551.816,608.0,794.0,0.0,10.0,90.1035,177.0,532.0,120.0,127.972,8.62728,25.9651,19.0489,10.0,10.0
+3189,106.373,10.0,4.0,148.0,303.03,654.0,834.0,4.0,360.0,440.866,512.0,889.0,225.0,508.0,552.147,608.0,851.0,0.0,10.0,89.1131,176.0,530.0,121.0,129.312,7.39488,25.7178,19.2164,10.0,10.0
+3190,106.406,10.0,4.0,148.0,303.341,654.0,897.0,4.0,359.0,439.96,512.0,839.0,222.0,507.0,551.88,608.0,810.0,0.0,10.0,89.7615,177.0,526.0,120.0,128.249,8.22498,25.8321,19.0741,10.0,10.0
+3191,106.44,10.0,4.0,148.0,303.06,653.0,846.0,4.0,358.0,439.206,512.0,882.0,232.0,507.0,552.833,609.0,810.0,0.0,10.0,90.9195,178.0,530.0,120.0,128.676,7.59701,25.9682,19.2865,10.0,10.0
+3192,106.473,10.0,4.0,148.0,302.095,650.0,855.0,4.0,358.0,439.362,512.0,827.0,226.0,507.0,552.461,608.0,817.0,0.0,10.0,90.4737,178.0,529.0,120.0,128.262,8.29703,26.2216,19.0913,10.0,10.0
+3193,106.506,10.0,4.0,148.0,303.535,654.0,858.0,4.0,360.0,440.675,512.0,812.0,226.0,507.0,552.628,609.0,793.0,0.0,10.0,89.5151,176.0,531.0,121.0,129.308,8.55746,26.1841,19.0175,10.0,10.0
+3194,106.54,10.0,4.0,148.0,303.055,652.0,855.0,4.0,358.0,439.843,512.0,794.0,240.0,508.0,553.275,609.0,798.0,0.0,10.0,90.1616,179.0,532.0,121.0,128.488,7.77427,26.0854,19.2394,10.0,10.0
+3195,106.573,10.0,4.0,148.0,302.61,652.0,848.0,4.0,358.0,439.842,512.0,835.0,230.0,507.0,552.68,608.0,845.0,0.0,10.0,90.1196,178.0,525.0,120.0,128.823,8.97059,25.9721,18.9987,10.0,10.0
+3196,106.607,10.0,4.0,148.0,302.847,652.0,855.0,4.0,360.0,440.656,512.0,904.0,268.0,507.0,552.901,610.0,811.0,0.0,10.0,89.7371,177.0,523.0,121.0,129.224,7.86828,26.1179,19.084,10.0,10.0
+3197,106.64,10.0,4.0,148.0,301.853,649.0,857.0,4.0,359.0,441.146,513.0,816.0,284.0,508.0,553.073,609.0,827.0,0.0,9.0,89.2709,178.0,529.0,121.0,130.065,8.38431,26.2666,19.0546,10.0,10.0
+3198,106.673,10.0,4.0,149.0,301.496,649.0,852.0,4.0,357.0,439.872,512.0,861.0,269.0,508.0,553.388,609.0,840.0,0.0,10.0,90.3929,179.0,533.0,121.0,128.999,8.8059,26.2924,19.4126,10.0,10.0
+3199,106.707,10.0,4.0,148.0,301.545,649.0,928.0,4.0,358.0,439.902,512.0,835.0,205.0,508.0,553.711,609.0,850.0,0.0,10.0,90.5934,178.0,534.0,121.0,129.466,8.0066,26.1517,19.2034,10.0,10.0
+3200,106.74,10.0,4.0,148.0,301.27,649.0,862.0,4.0,359.0,440.292,512.0,828.0,234.0,507.0,553.036,609.0,805.0,0.0,10.0,89.9602,178.0,532.0,121.0,129.085,8.73056,26.5997,19.4743,10.0,10.0
+3201,106.773,10.0,4.0,147.0,300.805,649.0,915.0,4.0,359.0,440.985,513.0,812.0,254.0,506.0,552.381,609.0,794.0,0.0,10.0,89.4621,177.0,532.0,121.0,129.377,7.76043,26.6444,19.6087,10.0,10.0
+3202,106.807,10.0,4.0,149.0,302.309,650.0,860.0,4.0,358.0,440.147,513.0,803.0,254.0,507.0,552.616,608.0,804.0,0.0,10.0,89.9207,178.0,528.0,121.0,129.498,8.46304,26.3181,19.3441,10.0,10.0
+3203,106.84,10.0,4.0,148.0,303.661,652.0,909.0,4.0,360.0,440.908,512.0,800.0,257.0,507.0,552.328,608.0,799.0,0.0,10.0,89.1092,175.0,530.0,121.0,128.573,8.57423,26.0545,19.4782,10.0,10.0
+3204,106.873,10.0,4.0,149.0,303.538,653.0,853.0,4.0,359.0,440.639,512.0,798.0,234.0,508.0,552.999,609.0,825.0,0.0,10.0,89.5719,177.0,524.0,121.0,129.59,7.63692,25.9337,19.4165,10.0,10.0
+3205,106.907,10.0,4.0,149.0,303.247,653.0,843.0,4.0,358.0,439.381,512.0,803.0,254.0,508.0,553.302,609.0,840.0,0.0,10.0,90.6913,178.0,532.0,121.0,128.793,8.3734,26.226,19.2921,10.0,10.0
+3206,106.94,10.0,4.0,149.0,303.74,653.0,862.0,4.0,358.0,439.171,512.0,839.0,267.0,508.0,554.345,609.0,835.0,0.0,10.0,91.2237,179.0,547.0,121.0,128.641,7.6822,25.891,19.1388,10.0,10.0
+3207,106.974,10.0,4.0,148.0,302.628,651.0,855.0,4.0,355.0,438.068,512.0,844.0,265.0,508.0,552.75,608.0,790.0,0.0,10.0,91.3285,180.0,520.0,120.0,127.405,8.26076,26.2279,19.177,10.0,10.0
+3208,107.007,10.0,4.0,148.0,302.272,651.0,878.0,4.0,353.0,437.896,511.0,915.0,360.0,508.0,553.525,609.0,796.0,0.0,10.0,91.9376,182.0,524.0,120.0,127.768,8.47982,26.1026,19.1005,10.0,10.0
+3209,107.04,10.0,4.0,148.0,302.371,650.0,855.0,4.0,354.0,438.092,511.0,897.0,302.0,508.0,553.363,609.0,929.0,0.0,10.0,91.6584,181.0,528.0,120.0,127.597,7.75116,26.0754,19.1629,10.0,10.0
+3210,107.074,10.0,4.0,149.0,302.673,651.0,855.0,4.0,355.0,438.212,512.0,936.0,246.0,508.0,553.641,609.0,971.0,0.0,10.0,91.7822,180.0,527.0,120.0,128.224,8.49583,25.845,19.3807,10.0,10.0
+3211,107.107,10.0,4.0,148.0,302.423,653.0,934.0,4.0,353.0,437.377,512.0,910.0,346.0,508.0,555.032,611.0,789.0,0.0,10.0,93.0574,182.0,526.0,121.0,128.44,7.51928,26.2257,19.5152,10.0,10.0
+3212,107.14,10.0,4.0,148.0,301.912,652.0,862.0,4.0,353.0,437.535,512.0,916.0,314.0,508.0,554.541,611.0,935.0,0.0,10.0,92.7451,182.0,527.0,121.0,128.812,8.03892,25.8324,19.1892,10.0,10.0
+3213,107.174,10.0,4.0,149.0,303.239,654.0,865.0,4.0,355.0,438.083,511.0,887.0,329.0,508.0,553.58,609.0,824.0,0.0,10.0,91.7075,180.0,529.0,120.0,127.634,8.15631,26.3038,19.0502,10.0,10.0
+3214,107.207,10.0,4.0,148.0,302.26,650.0,848.0,4.0,352.0,437.001,511.0,904.0,326.0,508.0,554.196,609.0,804.0,0.0,11.0,92.8852,183.0,526.0,120.0,127.196,7.3985,26.2954,19.044,10.0,10.0
+3215,107.24,10.0,4.0,148.0,302.431,650.0,931.0,4.0,352.0,436.642,512.0,897.0,296.0,508.0,554.316,610.0,789.0,0.0,10.0,93.346,183.0,523.0,120.0,127.852,8.28619,26.4565,19.1876,10.0,10.0
+3216,107.274,10.0,4.0,149.0,303.461,651.0,863.0,4.0,354.0,437.62,511.0,909.0,290.0,508.0,554.61,610.0,818.0,0.0,10.0,92.4299,181.0,526.0,121.0,127.799,7.46823,26.3209,19.2439,10.0,10.0
+3217,107.307,10.0,4.0,148.0,303.184,652.0,859.0,4.0,359.0,440.018,512.0,910.0,248.0,508.0,552.18,607.0,822.0,0.0,10.0,89.4956,176.0,533.0,120.0,128.501,8.37214,25.9617,19.3306,10.0,10.0
+3218,107.341,10.0,4.0,149.0,301.865,649.0,927.0,4.0,358.0,439.462,512.0,818.0,232.0,508.0,552.884,608.0,804.0,0.0,10.0,90.1048,178.0,528.0,120.0,128.601,8.35244,25.5449,18.7955,10.0,10.0
+3219,107.374,10.0,4.0,149.0,302.541,649.0,861.0,4.0,361.0,441.261,512.0,859.0,230.0,508.0,552.968,608.0,796.0,0.0,10.0,88.6633,175.0,525.0,121.0,129.73,7.80119,25.5509,18.7767,10.0,10.0
+3220,107.407,10.0,4.0,148.0,302.287,649.0,861.0,4.0,359.0,439.963,512.0,907.0,344.0,508.0,552.713,608.0,854.0,0.0,10.0,89.6637,177.0,525.0,121.0,128.421,8.33953,25.6152,18.7578,10.0,10.0
+3221,107.441,10.0,4.0,148.0,302.164,649.0,892.0,4.0,359.0,439.761,511.0,916.0,337.0,508.0,553.615,609.0,865.0,0.0,10.0,90.2123,177.0,526.0,121.0,127.782,7.49145,25.8971,19.0035,10.0,10.0
+3222,107.474,10.0,4.0,148.0,302.292,649.0,849.0,4.0,359.0,439.554,512.0,899.0,301.0,508.0,553.644,608.0,975.0,0.0,10.0,90.591,177.0,522.0,121.0,129.131,8.28245,25.8881,18.9267,10.0,10.0
+3223,107.507,10.0,4.0,149.0,302.967,649.0,858.0,4.0,358.0,439.249,512.0,953.0,311.0,508.0,553.997,608.0,949.0,0.0,10.0,90.6097,178.0,518.0,121.0,128.341,8.29408,25.9252,18.7441,10.0,10.0
+3224,107.541,10.0,4.0,148.0,302.165,649.0,857.0,4.0,359.0,438.908,512.0,949.0,338.0,508.0,553.866,608.0,957.0,0.0,10.0,90.9649,177.0,524.0,121.0,128.392,7.77836,25.569,18.8514,10.0,10.0
+3225,107.574,10.0,4.0,148.0,302.374,649.0,854.0,4.0,359.0,439.239,511.0,897.0,291.0,508.0,553.689,608.0,929.0,0.0,10.0,90.5894,178.0,529.0,121.0,128.031,8.49855,25.6665,18.9124,10.0,10.0
+3226,107.608,10.0,4.0,148.0,302.787,650.0,846.0,4.0,359.0,439.582,511.0,908.0,290.0,508.0,553.209,608.0,922.0,0.0,10.0,90.1693,177.0,523.0,121.0,127.762,7.66987,25.4455,18.6227,10.0,10.0
+3227,107.641,10.0,4.0,149.0,302.72,651.0,855.0,4.0,360.0,439.881,512.0,984.0,220.0,508.0,552.681,607.0,814.0,0.0,10.0,89.7996,175.0,551.0,120.0,128.031,8.57188,25.6961,18.815,10.0,10.0
+3228,107.674,10.0,4.0,150.0,302.748,650.0,860.0,4.0,362.0,441.289,512.0,1019.0,284.0,508.0,551.974,606.0,800.0,0.0,10.0,88.1937,174.0,526.0,121.0,129.343,8.08966,25.4908,18.9219,10.0,10.0
+3229,107.708,10.0,4.0,149.0,302.363,650.0,856.0,4.0,360.0,441.256,512.0,985.0,314.0,508.0,552.478,608.0,861.0,0.0,10.0,88.6761,175.0,551.0,121.0,129.886,7.68648,25.2021,18.6156,10.0,10.0
+3230,107.741,10.0,4.0,148.0,302.088,650.0,865.0,4.0,359.0,439.694,512.0,1019.0,330.0,508.0,552.427,607.0,797.0,0.0,10.0,89.7546,177.0,540.0,120.0,128.372,8.28629,25.3933,18.6225,10.0,10.0
+3231,107.774,10.0,4.0,148.0,301.985,649.0,853.0,4.0,358.0,439.218,512.0,1019.0,278.0,508.0,553.438,608.0,796.0,0.0,10.0,90.5072,178.0,529.0,121.0,128.156,7.47995,25.3026,18.7008,10.0,10.0
+3232,107.808,10.0,4.0,148.0,302.462,649.0,866.0,4.0,360.0,439.963,512.0,1019.0,342.0,508.0,553.241,608.0,823.0,0.0,10.0,89.87,176.0,565.0,121.0,128.802,8.496,25.4153,18.814,10.0,10.0
+3233,107.841,10.0,4.0,149.0,302.818,652.0,857.0,4.0,360.0,440.734,512.0,1019.0,322.0,508.0,552.771,608.0,782.0,0.0,10.0,88.9534,175.0,543.0,121.0,128.813,8.25806,25.8188,18.8556,10.0,10.0
+3234,107.874,10.0,4.0,149.0,302.313,650.0,855.0,4.0,361.0,441.06,512.0,958.0,232.0,508.0,552.896,608.0,820.0,0.0,10.0,88.7982,174.0,523.0,121.0,129.271,7.99165,25.9366,18.81,10.0,10.0
+3235,107.908,10.0,4.0,149.0,302.52,650.0,933.0,4.0,364.0,442.167,512.0,1019.0,210.0,508.0,551.069,604.0,784.0,0.0,10.0,86.8251,170.0,521.0,120.0,128.152,9.03215,25.51,18.6518,10.0,10.0
+3236,107.941,10.0,4.0,149.0,302.772,650.0,863.0,4.0,366.0,443.39,512.0,823.0,266.0,508.0,551.269,604.0,784.0,0.0,10.0,85.7075,168.0,524.0,121.0,128.354,7.99976,25.062,18.1978,10.0,10.0
+3237,107.975,10.0,4.0,148.0,303.188,652.0,926.0,4.0,365.0,442.125,511.0,795.0,326.0,508.0,551.433,605.0,950.0,0.0,10.0,86.8213,170.0,528.0,120.0,127.794,10.0427,24.9933,18.2271,10.0,10.0
+3238,108.008,10.0,4.0,149.0,304.069,652.0,857.0,4.0,366.0,442.75,512.0,895.0,280.0,508.0,551.262,604.0,829.0,0.0,10.0,86.106,168.0,524.0,121.0,128.372,9.81379,24.6106,18.1914,10.0,10.0
+3239,108.041,10.0,4.0,149.0,303.915,652.0,860.0,4.0,366.0,443.104,512.0,839.0,190.0,508.0,551.662,605.0,793.0,0.0,10.0,86.0153,169.0,517.0,121.0,129.392,8.15438,24.5645,18.3603,10.0,10.0
+3240,108.075,10.0,4.0,149.0,303.948,653.0,859.0,4.0,365.0,442.68,512.0,869.0,371.0,508.0,551.097,604.0,815.0,0.0,10.0,86.0451,168.0,525.0,120.0,127.735,8.81317,24.5503,18.1694,10.0,10.0
+3241,108.108,10.0,4.0,149.0,303.777,651.0,856.0,4.0,365.0,442.707,512.0,897.0,254.0,508.0,551.619,604.0,786.0,0.0,10.0,86.2826,169.0,520.0,121.0,128.415,7.46197,24.566,18.192,10.0,10.0
+3242,108.141,10.0,4.0,149.0,303.822,654.0,859.0,4.0,366.0,442.345,512.0,893.0,266.0,508.0,551.374,604.0,793.0,0.0,10.0,86.5464,169.0,528.0,121.0,128.366,8.70253,24.4361,17.9436,10.0,10.0
+3243,108.175,10.0,4.0,148.0,302.344,650.0,848.0,4.0,365.0,441.949,511.0,934.0,290.0,508.0,551.864,605.0,799.0,0.0,10.0,86.9539,169.0,528.0,121.0,127.881,8.87929,24.2431,17.9585,10.0,10.0
+3244,108.208,10.0,4.0,148.0,301.621,649.0,856.0,4.0,364.0,441.611,511.0,856.0,350.0,508.0,552.014,605.0,753.0,0.0,10.0,87.1903,170.0,523.0,121.0,127.989,7.8935,24.2569,18.0953,10.0,10.0
+3245,108.241,10.0,4.0,147.0,301.448,649.0,861.0,4.0,364.0,441.403,511.0,933.0,290.0,508.0,552.031,605.0,788.0,0.0,10.0,87.5556,171.0,533.0,120.0,127.361,8.88692,24.0037,17.9018,10.0,10.0
+3246,108.275,10.0,4.0,147.0,301.856,649.0,850.0,4.0,364.0,441.784,512.0,901.0,260.0,508.0,552.122,605.0,794.0,0.0,10.0,87.192,171.0,524.0,121.0,127.849,7.79913,24.1144,17.9718,10.0,10.0
+3247,108.308,10.0,4.0,147.0,300.015,647.0,855.0,4.0,364.0,442.168,512.0,888.0,348.0,508.0,552.044,605.0,826.0,0.0,10.0,86.9863,172.0,529.0,121.0,128.55,9.39903,24.6252,18.0505,10.0,10.0
+3248,108.342,10.0,4.0,148.0,300.912,648.0,882.0,4.0,364.0,442.18,512.0,797.0,296.0,508.0,552.17,606.0,806.0,0.0,10.0,87.0594,171.0,526.0,121.0,128.669,9.61662,24.6272,18.06,10.0,10.0
+3249,108.375,10.0,4.0,147.0,300.848,648.0,862.0,4.0,364.0,442.423,512.0,831.0,350.0,508.0,551.991,605.0,786.0,0.0,10.0,86.9551,170.0,520.0,121.0,129.328,8.17843,24.3328,18.2494,10.0,10.0
+3250,108.408,10.0,4.0,147.0,299.837,647.0,858.0,4.0,365.0,442.347,512.0,885.0,342.0,508.0,551.572,604.0,812.0,0.0,9.0,86.6557,169.0,526.0,121.0,128.041,9.35314,24.5638,17.9296,10.0,10.0
+3251,108.442,10.0,4.0,147.0,299.246,647.0,929.0,4.0,364.0,442.204,512.0,911.0,364.0,508.0,551.86,605.0,798.0,0.0,9.0,87.0097,171.0,522.0,121.0,128.34,7.97828,24.7616,17.8903,10.0,10.0
+3252,108.475,10.0,4.0,146.0,298.68,644.0,851.0,4.0,366.0,443.633,512.0,818.0,288.0,508.0,551.385,604.0,800.0,0.0,9.0,85.4701,168.0,528.0,121.0,128.945,8.92551,24.6437,17.9685,10.0,10.0
+3253,108.508,10.0,4.0,147.0,299.196,646.0,855.0,4.0,366.0,443.588,512.0,835.0,278.0,508.0,551.315,605.0,800.0,0.0,9.0,85.5297,169.0,528.0,121.0,128.791,8.51936,24.5121,18.154,10.0,10.0
+3254,108.542,10.0,4.0,147.0,299.345,645.0,912.0,4.0,365.0,443.095,512.0,797.0,236.0,508.0,551.446,604.0,786.0,0.0,9.0,85.7677,168.0,526.0,121.0,128.409,7.9743,24.4108,18.1153,10.0,10.0
+3255,108.575,10.0,4.0,147.0,299.701,646.0,861.0,4.0,368.0,443.713,512.0,778.0,304.0,508.0,550.672,603.0,783.0,0.0,10.0,84.7847,166.0,526.0,120.0,127.877,9.66364,24.4028,18.0012,10.0,10.0
+3256,108.609,10.0,4.0,147.0,300.545,648.0,848.0,4.0,370.0,444.985,512.0,860.0,328.0,508.0,550.423,602.0,797.0,0.0,9.0,83.7153,165.0,524.0,121.0,128.802,8.38489,24.1936,17.7325,10.0,10.0
+3257,108.642,10.0,4.0,148.0,299.724,645.0,851.0,4.0,369.0,444.196,512.0,828.0,308.0,508.0,550.715,602.0,783.0,0.0,10.0,84.3601,165.0,526.0,121.0,128.289,9.70678,23.8828,17.6753,10.0,10.0
+3258,108.675,10.0,4.0,148.0,299.99,647.0,848.0,4.0,371.0,446.373,512.0,855.0,352.0,508.0,550.163,602.0,768.0,0.0,9.0,82.6088,162.0,527.0,121.0,129.884,8.17304,24.1144,17.461,10.0,10.0
+3259,108.709,10.0,4.0,148.0,299.673,646.0,851.0,4.0,372.0,446.836,513.0,910.0,358.0,508.0,550.642,602.0,793.0,0.0,9.0,82.422,162.0,529.0,122.0,130.745,8.05063,23.7772,17.2263,10.0,10.0
+3260,108.742,10.0,4.0,147.0,298.251,643.0,851.0,4.0,371.0,445.932,512.0,959.0,376.0,508.0,550.042,601.0,780.0,0.0,9.0,82.7673,163.0,520.0,121.0,129.164,9.51857,23.777,17.3165,10.0,10.0
+3261,108.775,10.0,4.0,147.0,298.139,644.0,849.0,4.0,372.0,445.979,512.0,895.0,349.0,508.0,550.414,602.0,784.0,0.0,9.0,82.7235,162.0,526.0,121.0,128.946,8.02783,23.757,17.4086,10.0,10.0
+3262,108.809,10.0,4.0,147.0,299.068,645.0,853.0,4.0,373.0,446.597,512.0,921.0,347.0,508.0,550.655,601.0,789.0,0.0,9.0,82.404,161.0,528.0,122.0,129.539,9.79715,23.835,17.2086,10.0,10.0
+3263,108.842,10.0,4.0,147.0,298.616,644.0,848.0,4.0,370.0,445.477,512.0,868.0,342.0,508.0,550.931,602.0,793.0,0.0,9.0,83.427,164.0,528.0,121.0,129.024,11.1836,23.6604,17.5589,10.0,10.0
+3264,108.875,10.0,4.0,147.0,298.086,643.0,928.0,4.0,371.0,445.877,512.0,972.0,304.0,508.0,551.099,602.0,789.0,0.0,9.0,83.1281,163.0,521.0,122.0,129.548,8.79303,23.7641,17.5559,10.0,10.0
+3265,108.909,10.0,4.0,147.0,298.252,645.0,850.0,4.0,372.0,446.215,512.0,875.0,268.0,508.0,550.285,601.0,779.0,0.0,9.0,82.7055,162.0,520.0,121.0,129.465,10.1521,23.6719,17.4449,10.0,10.0
+3266,108.942,10.0,4.0,147.0,298.416,647.0,861.0,4.0,372.0,446.308,512.0,832.0,250.0,508.0,550.494,602.0,784.0,0.0,8.0,82.5697,162.0,525.0,121.0,129.215,8.1234,24.0478,17.5456,10.0,10.0
+3267,108.976,10.0,4.0,146.0,297.004,643.0,846.0,4.0,370.0,444.816,512.0,849.0,378.0,508.0,550.223,601.0,785.0,0.0,9.0,83.7163,163.0,525.0,121.0,128.897,9.69523,24.1302,17.4791,10.0,10.0
+3268,109.009,10.0,4.0,147.0,297.482,643.0,846.0,4.0,372.0,446.541,512.0,826.0,268.0,508.0,550.316,602.0,782.0,0.0,9.0,82.4972,162.0,519.0,122.0,129.833,8.79085,24.1092,17.5723,10.0,10.0
+3269,109.042,10.0,4.0,147.0,297.087,643.0,856.0,4.0,372.0,446.543,513.0,1019.0,325.0,508.0,550.629,602.0,793.0,0.0,9.0,82.638,162.0,553.0,122.0,130.587,7.8703,23.7929,17.4033,10.0,10.0
+3270,109.076,10.0,4.0,147.0,297.03,644.0,932.0,4.0,371.0,445.869,512.0,880.0,304.0,508.0,550.18,602.0,884.0,0.0,8.0,82.8519,163.0,518.0,121.0,129.438,8.7912,23.8691,17.4256,10.0,10.0
+3271,109.109,10.0,4.0,147.0,296.916,643.0,844.0,4.0,371.0,445.402,512.0,1014.0,334.0,508.0,550.559,603.0,822.0,0.0,9.0,83.3733,163.0,568.0,121.0,128.38,7.59394,23.7068,17.6695,10.0,10.0
+3272,109.142,10.0,4.0,147.0,296.759,642.0,838.0,4.0,371.0,446.227,512.0,1019.0,330.0,508.0,550.408,602.0,786.0,0.0,9.0,82.7545,163.0,568.0,121.0,129.569,8.44854,23.6972,17.4842,10.0,10.0
+3273,109.176,10.0,4.0,147.0,296.739,643.0,866.0,4.0,371.0,445.1,512.0,897.0,342.0,508.0,550.191,602.0,800.0,0.0,9.0,83.3904,163.0,524.0,121.0,128.089,8.44398,23.9133,17.5778,10.0,10.0
+3274,109.209,10.0,4.0,147.0,297.378,643.0,856.0,4.0,370.0,445.2,512.0,804.0,312.0,508.0,550.349,602.0,787.0,0.0,9.0,83.3894,163.0,523.0,121.0,129.206,7.48539,23.8174,17.3663,10.0,10.0
+3275,109.242,10.0,4.0,147.0,297.864,644.0,861.0,4.0,370.0,445.619,512.0,816.0,306.0,508.0,549.662,601.0,821.0,0.0,9.0,82.6011,163.0,524.0,121.0,128.556,8.17349,23.6675,17.4027,10.0,10.0
+3276,109.276,10.0,4.0,147.0,298.233,645.0,848.0,4.0,372.0,446.237,512.0,896.0,304.0,508.0,549.652,602.0,799.0,0.0,9.0,82.1376,161.0,519.0,121.0,128.132,7.42385,23.6046,17.2096,10.0,10.0
+3277,109.309,10.0,4.0,147.0,297.283,642.0,854.0,4.0,370.0,444.939,512.0,926.0,270.0,508.0,549.845,600.0,780.0,0.0,9.0,83.1293,163.0,532.0,120.0,127.806,9.16771,23.7968,17.2106,10.0,10.0
+3278,109.343,10.0,4.0,148.0,298.225,642.0,911.0,4.0,373.0,446.596,512.0,792.0,272.0,508.0,549.898,602.0,778.0,0.0,9.0,81.9863,160.0,524.0,121.0,129.632,10.1761,23.446,17.4791,10.0,10.0
+3279,109.376,10.0,4.0,147.0,298.37,643.0,935.0,4.0,372.0,446.052,512.0,890.0,330.0,508.0,550.242,601.0,769.0,0.0,9.0,82.5199,162.0,523.0,121.0,129.93,8.35378,23.4755,17.2651,10.0,10.0
+3280,109.409,10.0,4.0,149.0,298.838,644.0,853.0,4.0,371.0,445.837,512.0,916.0,312.0,508.0,549.539,599.0,771.0,0.0,9.0,82.3835,161.0,524.0,121.0,128.98,9.57967,23.5761,17.2509,10.0,10.0
+3281,109.443,10.0,4.0,149.0,298.692,645.0,872.0,4.0,375.0,447.726,512.0,816.0,283.0,508.0,549.071,596.0,785.0,0.0,8.0,80.3354,157.0,523.0,121.0,129.774,7.91809,23.2047,17.1808,10.0,10.0
+3282,109.476,10.0,4.0,147.0,298.799,645.0,858.0,4.0,377.0,448.403,512.0,786.0,306.0,508.0,548.004,595.0,934.0,0.0,8.0,79.3279,155.0,526.0,121.0,129.148,9.04705,22.6158,16.7309,10.0,10.0
+3283,109.509,10.0,4.0,148.0,298.778,644.0,866.0,4.0,376.0,448.236,512.0,868.0,306.0,508.0,548.493,596.0,802.0,0.0,8.0,79.6048,156.0,530.0,121.0,128.667,8.76481,22.7724,16.734,10.0,10.0
+3284,109.543,10.0,4.0,148.0,299.149,645.0,837.0,4.0,376.0,447.819,512.0,871.0,297.0,508.0,548.768,597.0,884.0,0.0,8.0,80.1307,156.0,520.0,121.0,128.82,7.46521,22.9087,16.6921,10.0,10.0
+3285,109.576,10.0,4.0,148.0,299.549,647.0,847.0,4.0,377.0,448.579,512.0,768.0,244.0,508.0,548.223,596.0,864.0,0.0,8.0,79.3149,155.0,525.0,121.0,128.576,8.42354,23.0849,16.7646,10.0,10.0
+3286,109.61,10.0,4.0,148.0,299.566,647.0,928.0,4.0,378.0,449.589,512.0,810.0,276.0,508.0,548.403,596.0,960.0,0.0,8.0,78.5182,155.0,525.0,121.0,129.233,7.60686,23.2267,16.7768,10.0,10.0
+3287,109.643,10.0,4.0,148.0,299.624,648.0,853.0,4.0,379.0,449.729,512.0,827.0,229.0,508.0,547.469,594.0,955.0,0.0,8.0,77.9809,153.0,524.0,121.0,129.633,8.89671,22.6797,16.5525,10.0,10.0
+3288,109.676,10.0,4.0,149.0,300.64,649.0,847.0,4.0,380.0,450.975,513.0,1006.0,296.0,508.0,547.755,595.0,834.0,0.0,8.0,77.1069,151.0,544.0,122.0,130.299,8.85069,22.6781,16.5045,10.0,10.0
+3289,109.71,10.0,4.0,148.0,300.432,648.0,930.0,4.0,380.0,450.695,513.0,835.0,319.0,508.0,548.262,595.0,951.0,0.0,8.0,77.5932,153.0,521.0,122.0,130.509,7.50854,22.5693,16.3355,10.0,10.0
+3290,109.743,10.0,4.0,147.0,300.044,648.0,931.0,4.0,379.0,449.783,512.0,841.0,288.0,508.0,547.877,594.0,944.0,0.0,8.0,77.9839,153.0,523.0,121.0,129.48,8.08682,22.4523,16.4544,10.0,10.0
+3291,109.776,10.0,4.0,147.0,299.889,648.0,868.0,4.0,380.0,449.961,512.0,824.0,272.0,508.0,548.412,594.0,934.0,0.0,8.0,78.1502,153.0,524.0,122.0,130.362,7.27836,22.6307,16.536,10.0,10.0
+3292,109.81,10.0,4.0,148.0,299.791,646.0,838.0,4.0,378.0,449.189,512.0,845.0,248.0,508.0,548.9,596.0,963.0,0.0,9.0,78.8128,154.0,524.0,121.0,128.839,8.09218,22.6237,16.4939,10.0,10.0
+3293,109.843,10.0,4.0,148.0,300.009,648.0,860.0,4.0,378.0,449.22,512.0,947.0,340.0,508.0,549.262,596.0,833.0,0.0,8.0,78.9353,154.0,525.0,122.0,129.577,8.27059,22.7236,16.5666,10.0,10.0
+3294,109.876,10.0,4.0,149.0,300.397,648.0,861.0,4.0,378.0,449.568,512.0,875.0,266.0,509.0,549.123,596.0,873.0,0.0,8.0,78.6311,154.0,519.0,122.0,130.48,7.58507,22.258,16.4112,10.0,10.0
+3295,109.91,10.0,4.0,148.0,300.113,647.0,862.0,4.0,379.0,449.958,512.0,870.0,282.0,508.0,548.311,595.0,820.0,0.0,9.0,77.9869,153.0,525.0,121.0,129.608,8.38212,22.5732,16.5181,10.0,10.0
+3296,109.943,10.0,4.0,148.0,300.242,648.0,861.0,4.0,380.0,450.367,512.0,816.0,276.0,508.0,548.7,596.0,764.0,0.0,9.0,77.8754,152.0,524.0,122.0,129.628,7.41373,22.3506,16.5015,10.0,10.0
+3297,109.977,10.0,4.0,148.0,299.516,647.0,858.0,4.0,377.0,448.374,512.0,782.0,274.0,508.0,548.027,594.0,821.0,0.0,9.0,79.1367,154.0,525.0,120.0,128.486,8.41854,22.6369,16.4762,10.0,10.0
+3298,110.01,10.0,4.0,148.0,299.247,644.0,869.0,4.0,380.0,450.195,512.0,732.0,277.0,508.0,547.955,595.0,934.0,0.0,8.0,77.5995,152.0,523.0,121.0,128.912,7.97072,22.3785,16.524,10.0,10.0
+3299,110.043,10.0,4.0,147.0,299.442,646.0,931.0,4.0,380.0,450.272,512.0,833.0,280.0,508.0,548.142,594.0,859.0,0.0,8.0,77.611,151.0,525.0,121.0,129.393,7.34121,22.6399,16.5622,10.0,10.0
+3300,110.077,10.0,4.0,148.0,299.713,646.0,862.0,4.0,379.0,449.338,512.0,847.0,295.0,508.0,548.198,595.0,765.0,0.0,8.0,78.438,153.0,522.0,121.0,129.033,7.948,22.3486,16.5249,10.0,10.0
+3301,110.11,10.0,4.0,148.0,300.35,647.0,852.0,4.0,377.0,448.998,512.0,821.0,277.0,508.0,549.004,595.0,768.0,0.0,9.0,79.042,154.0,527.0,122.0,129.528,7.28722,22.5105,16.5342,10.0,10.0
+3302,110.143,10.0,4.0,147.0,299.648,647.0,855.0,4.0,380.0,449.758,512.0,706.0,270.0,508.0,548.448,594.0,885.0,0.0,8.0,78.026,152.0,526.0,121.0,129.307,8.0429,22.6746,16.5469,10.0,10.0
+3303,110.177,10.0,4.0,147.0,299.381,648.0,847.0,4.0,380.0,449.934,512.0,877.0,302.0,508.0,548.3,594.0,870.0,0.0,8.0,77.8877,152.0,527.0,121.0,129.53,8.19979,22.3066,16.3222,10.0,10.0
+3304,110.21,10.0,4.0,147.0,299.53,648.0,864.0,4.0,381.0,450.555,512.0,766.0,290.0,508.0,548.373,594.0,770.0,0.0,8.0,77.3142,150.0,520.0,122.0,129.438,7.39806,22.11,16.326,10.0,10.0
+3305,110.243,10.0,4.0,147.0,299.383,648.0,847.0,4.0,381.0,450.158,512.0,737.0,280.0,508.0,548.214,594.0,826.0,0.0,8.0,77.4558,150.0,526.0,121.0,128.639,8.36835,22.1766,16.0836,10.0,10.0
+3306,110.277,10.0,4.0,147.0,299.141,647.0,852.0,4.0,380.0,450.279,512.0,790.0,285.0,508.0,548.264,594.0,897.0,0.0,8.0,77.2903,151.0,522.0,121.0,128.488,7.58484,21.8757,16.2579,10.0,10.0
+3307,110.31,10.0,4.0,147.0,298.777,647.0,865.0,4.0,380.0,450.321,512.0,849.0,313.0,508.0,547.436,593.0,785.0,0.0,8.0,76.9068,151.0,525.0,121.0,128.518,8.07266,21.7406,15.9343,10.0,10.0
+3308,110.344,10.0,4.0,147.0,299.442,647.0,857.0,4.0,381.0,451.254,512.0,823.0,293.0,508.0,547.925,594.0,778.0,0.0,8.0,76.389,150.0,521.0,122.0,129.339,8.12138,22.1081,15.9822,10.0,10.0
+3309,110.377,10.0,4.0,147.0,298.928,647.0,862.0,4.0,382.0,451.223,512.0,827.0,290.0,508.0,547.698,593.0,763.0,0.0,8.0,76.1732,149.0,521.0,122.0,129.924,7.41611,21.9161,15.9959,10.0,10.0
+3310,110.41,10.0,4.0,147.0,298.512,646.0,869.0,4.0,383.0,451.612,512.0,871.0,296.0,508.0,547.013,592.0,776.0,0.0,8.0,75.5793,148.0,523.0,121.0,128.61,8.41242,21.5888,15.6996,10.0,10.0
+3311,110.444,10.0,4.0,147.0,298.414,645.0,858.0,4.0,382.0,450.992,511.0,823.0,328.0,508.0,547.246,593.0,944.0,0.0,8.0,76.0456,149.0,524.0,121.0,127.359,7.6174,21.4459,15.7503,10.0,10.0
+3312,110.477,10.0,4.0,147.0,298.792,648.0,861.0,4.0,383.0,451.639,512.0,754.0,302.0,508.0,546.359,592.0,747.0,0.0,8.0,75.3529,148.0,518.0,121.0,128.449,9.47827,21.732,16.2531,10.0,10.0
+3313,110.51,10.0,4.0,147.0,298.675,647.0,851.0,4.0,383.0,451.017,512.0,822.0,302.0,508.0,546.972,592.0,771.0,0.0,8.0,75.9861,148.0,514.0,121.0,128.135,9.97727,21.5909,16.1954,10.0,10.0
+3314,110.544,10.0,4.0,147.0,298.799,647.0,862.0,4.0,383.0,451.124,512.0,861.0,314.0,508.0,547.286,593.0,762.0,0.0,8.0,76.0895,148.0,523.0,121.0,128.534,8.19441,21.5216,15.9214,10.0,10.0
+3315,110.577,10.0,4.0,147.0,298.637,646.0,852.0,4.0,382.0,450.726,512.0,806.0,294.0,508.0,547.276,593.0,768.0,0.0,8.0,76.4884,150.0,524.0,121.0,128.615,9.60146,21.8289,16.1552,10.0,10.0
+3316,110.611,10.0,4.0,147.0,298.973,647.0,867.0,4.0,381.0,450.751,512.0,763.0,276.0,508.0,547.533,593.0,759.0,0.0,8.0,76.4336,150.0,518.0,121.0,128.531,8.27571,21.7399,15.9654,10.0,10.0
+3317,110.644,10.0,4.0,148.0,299.478,648.0,853.0,4.0,382.0,450.516,512.0,734.0,302.0,508.0,547.095,593.0,753.0,0.0,8.0,76.6073,150.0,521.0,121.0,128.159,9.4344,21.7149,16.037,10.0,10.0
+3318,110.677,10.0,4.0,148.0,299.63,646.0,870.0,4.0,383.0,450.703,512.0,818.0,326.0,508.0,547.051,592.0,789.0,0.0,8.0,76.272,148.0,523.0,121.0,127.998,9.12143,21.6207,15.9692,10.0,10.0
+3319,110.711,10.0,4.0,147.0,299.371,647.0,848.0,4.0,382.0,450.405,511.0,756.0,294.0,508.0,547.406,593.0,777.0,0.0,8.0,76.5699,149.0,522.0,121.0,127.713,7.68804,21.6528,16.1626,10.0,10.0
+3320,110.744,10.0,4.0,147.0,300.051,648.0,878.0,4.0,382.0,450.345,512.0,718.0,291.0,508.0,546.879,592.0,735.0,0.0,8.0,76.3884,149.0,517.0,120.0,127.428,8.62382,21.6425,15.7839,10.0,10.0
+3321,110.777,10.0,4.0,148.0,300.336,648.0,858.0,4.0,385.0,452.36,512.0,815.0,340.0,508.0,547.069,592.0,761.0,0.0,8.0,74.7995,146.0,524.0,121.0,128.858,7.71785,21.6284,15.9772,10.0,10.0
+3322,110.811,10.0,4.0,147.0,300.303,648.0,866.0,4.0,391.0,454.118,512.0,768.0,322.0,508.0,544.966,588.0,764.0,0.0,8.0,72.0384,140.0,521.0,121.0,128.622,8.7909,20.939,15.5126,10.0,10.0
+3323,110.844,10.0,4.0,148.0,300.539,648.0,865.0,4.0,391.0,453.858,512.0,729.0,273.0,508.0,545.274,588.0,775.0,0.0,8.0,72.4805,141.0,521.0,121.0,128.526,8.51154,20.428,15.0606,10.0,10.0
+3324,110.877,10.0,4.0,148.0,300.323,648.0,842.0,4.0,392.0,454.398,512.0,733.0,315.0,508.0,545.583,588.0,750.0,0.0,8.0,72.1741,141.0,525.0,122.0,129.238,7.73606,20.584,15.0731,10.0,10.0
+3325,110.911,10.0,4.0,148.0,300.189,648.0,853.0,4.0,391.0,454.217,512.0,762.0,348.0,508.0,544.934,588.0,756.0,0.0,8.0,72.1185,140.0,518.0,121.0,128.554,8.2951,20.648,15.1729,10.0,10.0
+3326,110.944,10.0,4.0,148.0,300.183,648.0,857.0,4.0,389.0,453.85,512.0,768.0,284.0,508.0,545.674,589.0,758.0,0.0,8.0,72.76,142.0,515.0,121.0,127.988,7.65506,20.7604,15.3114,10.0,10.0
+3327,110.978,10.0,4.0,147.0,300.486,649.0,851.0,4.0,389.0,453.314,512.0,802.0,275.0,508.0,545.793,589.0,763.0,0.0,7.0,73.108,142.0,518.0,121.0,127.996,8.4722,20.7659,15.2774,10.0,10.0
+3328,111.011,10.0,4.0,147.0,299.32,647.0,861.0,4.0,392.0,454.667,512.0,838.0,290.0,508.0,545.083,588.0,759.0,0.0,7.0,71.7632,140.0,520.0,121.0,128.344,8.76168,20.5677,15.212,10.0,10.0
+3329,111.044,10.0,4.0,147.0,299.543,647.0,856.0,4.0,391.0,454.267,512.0,821.0,276.0,508.0,545.559,589.0,758.0,0.0,8.0,72.2581,141.0,516.0,121.0,127.851,7.6286,20.7169,15.284,10.0,10.0
+3330,111.078,10.0,4.0,147.0,299.656,647.0,926.0,4.0,389.0,453.681,512.0,751.0,266.0,508.0,545.067,588.0,759.0,0.0,7.0,72.6407,142.0,520.0,120.0,127.584,8.43523,20.5587,15.1478,10.0,10.0
+3331,111.111,10.0,4.0,147.0,299.691,647.0,853.0,4.0,391.0,454.492,512.0,748.0,294.0,508.0,545.49,589.0,763.0,0.0,8.0,72.244,141.0,520.0,121.0,128.942,7.64215,20.6994,15.1308,10.0,10.0
+3332,111.144,10.0,4.0,146.0,299.6,648.0,848.0,4.0,390.0,454.525,512.0,744.0,298.0,508.0,545.584,588.0,735.0,0.0,7.0,72.2209,141.0,513.0,122.0,129.313,8.43266,20.7408,15.2422,10.0,10.0
+3333,111.178,10.0,4.0,147.0,299.686,647.0,858.0,4.0,392.0,454.65,512.0,809.0,260.0,508.0,545.314,589.0,731.0,0.0,7.0,71.7944,140.0,514.0,121.0,128.733,8.27379,20.5112,15.0322,10.0,10.0
+3334,111.211,10.0,4.0,146.0,299.114,647.0,856.0,4.0,396.0,456.881,512.0,829.0,282.0,508.0,545.211,588.0,743.0,0.0,7.0,69.6985,137.0,515.0,122.0,130.243,7.69102,20.5567,14.782,10.0,10.0
+3335,111.244,10.0,4.0,146.0,299.293,646.0,860.0,4.0,399.0,458.746,512.0,778.0,308.0,508.0,543.381,585.0,718.0,0.0,7.0,67.1359,132.0,519.0,122.0,129.574,8.6916,20.0658,14.388,10.0,10.0
+3336,111.278,10.0,4.0,147.0,299.491,647.0,868.0,4.0,400.0,458.693,512.0,737.0,318.0,508.0,543.338,585.0,744.0,0.0,7.0,67.3407,132.0,510.0,122.0,129.767,7.715,19.5969,14.1494,10.0,10.0
+3337,111.311,10.0,4.0,147.0,299.016,645.0,915.0,4.0,400.0,458.7,512.0,751.0,304.0,508.0,543.579,585.0,735.0,0.0,7.0,67.3923,131.0,514.0,122.0,129.987,8.4214,19.391,14.3052,10.0,10.0
+3338,111.345,10.0,4.0,147.0,299.943,647.0,937.0,4.0,399.0,459.099,512.0,819.0,332.0,508.0,543.437,585.0,743.0,0.0,7.0,66.9781,132.0,521.0,122.0,129.387,8.81726,19.7337,14.4158,10.0,10.0
+3339,111.378,10.0,4.0,147.0,299.287,647.0,845.0,4.0,399.0,458.771,512.0,733.0,284.0,508.0,543.392,584.0,745.0,0.0,7.0,67.122,132.0,517.0,122.0,129.503,7.61729,19.7306,14.3717,10.0,10.0
+3340,111.411,10.0,4.0,147.0,299.754,648.0,862.0,4.0,399.0,458.429,512.0,727.0,298.0,508.0,543.022,584.0,755.0,0.0,7.0,67.2992,132.0,519.0,121.0,129.248,8.61555,19.4791,14.2091,10.0,10.0
+3341,111.445,10.0,4.0,146.0,299.485,648.0,855.0,4.0,400.0,458.527,512.0,741.0,289.0,508.0,543.329,585.0,760.0,0.0,7.0,67.3687,131.0,516.0,122.0,129.456,7.84786,19.468,14.1242,10.0,10.0
+3342,111.478,10.0,4.0,147.0,298.357,646.0,853.0,4.0,402.0,459.575,512.0,754.0,295.0,508.0,542.988,584.0,800.0,0.0,7.0,66.3276,129.0,518.0,122.0,129.886,8.53685,19.5156,14.0651,10.0,10.0
+3343,111.511,10.0,4.0,147.0,299.176,648.0,936.0,4.0,399.0,458.51,513.0,742.0,326.0,508.0,543.125,585.0,776.0,0.0,7.0,67.2631,131.0,522.0,122.0,129.945,8.25208,19.5154,14.0721,10.0,10.0
+3344,111.545,10.0,4.0,146.0,298.37,647.0,922.0,4.0,402.0,459.39,512.0,764.0,312.0,508.0,543.429,584.0,758.0,0.0,7.0,66.5727,130.0,519.0,122.0,130.485,7.34588,19.2998,14.1768,10.0,10.0
+3345,111.578,10.0,4.0,146.0,297.718,645.0,858.0,10.0,402.0,460.902,513.0,753.0,322.0,508.0,542.242,582.0,745.0,0.0,7.0,64.8465,127.0,507.0,122.0,130.793,8.05807,19.4529,14.1159,10.0,10.0
+3346,111.612,10.0,4.0,146.0,297.741,645.0,857.0,4.0,406.0,462.674,513.0,737.0,328.0,508.0,541.263,580.0,729.0,0.0,6.0,62.5316,123.0,516.0,122.0,130.21,7.26793,18.9791,13.7507,10.0,10.0
+3347,111.645,10.0,4.0,146.0,297.215,643.0,854.0,16.0,406.0,462.579,513.0,803.0,364.0,508.0,540.694,580.0,743.0,0.0,6.0,62.4796,123.0,502.0,121.0,129.722,7.85566,18.6218,13.6245,10.0,10.0
+3348,111.678,10.0,4.0,147.0,297.431,643.0,851.0,4.0,405.0,461.801,512.0,766.0,318.0,508.0,541.228,581.0,885.0,0.0,6.0,63.2448,124.0,513.0,121.0,129.044,7.99136,18.4786,13.6499,10.0,10.0
+3349,111.712,10.0,4.0,147.0,297.29,643.0,937.0,4.0,405.0,461.86,512.0,725.0,316.0,508.0,541.606,581.0,881.0,0.0,7.0,63.3505,125.0,515.0,122.0,130.249,7.60872,18.3443,13.6697,10.0,10.0
+3350,111.745,10.0,4.0,147.0,297.48,644.0,871.0,4.0,405.0,461.581,512.0,761.0,337.0,508.0,541.492,581.0,901.0,0.0,7.0,63.5838,125.0,516.0,121.0,129.249,8.37549,18.3283,13.5547,10.0,10.0
+3351,111.778,10.0,4.0,147.0,297.684,644.0,865.0,4.0,405.0,461.766,512.0,749.0,336.0,508.0,542.086,581.0,900.0,0.0,7.0,63.6448,125.0,515.0,122.0,129.648,7.38749,18.2125,13.4101,10.0,10.0
+3352,111.812,10.0,4.0,147.0,296.746,643.0,909.0,4.0,404.0,461.617,512.0,765.0,329.0,508.0,542.137,581.0,904.0,0.0,7.0,63.7498,125.0,514.0,122.0,130.365,8.18594,18.4018,13.5672,10.0,10.0
+3353,111.845,10.0,4.0,147.0,296.224,639.0,934.0,5.0,404.0,461.564,512.0,727.0,310.0,508.0,542.215,581.0,895.0,0.0,7.0,63.8085,125.0,510.0,122.0,129.838,8.36445,18.5788,13.6049,10.0,10.0
+3354,111.878,10.0,4.0,147.0,296.41,640.0,846.0,4.0,406.0,461.762,512.0,777.0,325.0,508.0,542.12,582.0,907.0,0.0,7.0,63.6075,124.0,516.0,122.0,130.269,7.49443,18.5553,13.5633,10.0,10.0
+3355,111.912,10.0,4.0,147.0,297.256,643.0,848.0,16.0,404.0,461.58,512.0,765.0,326.0,508.0,541.748,581.0,887.0,0.0,7.0,63.6102,125.0,504.0,122.0,129.337,8.39911,18.5432,13.608,10.0,10.0
+3356,111.945,10.0,4.0,147.0,297.934,646.0,864.0,21.0,405.0,461.762,512.0,721.0,322.0,508.0,542.414,582.0,813.0,0.0,7.0,63.6431,125.0,495.0,122.0,129.678,7.57556,18.4982,13.579,10.0,10.0
+3357,111.979,10.0,4.0,146.0,297.755,646.0,872.0,4.0,410.0,463.532,512.0,691.0,344.0,508.0,540.876,580.0,729.0,0.0,7.0,61.2828,119.0,530.0,122.0,129.063,8.52173,18.1162,13.2855,10.0,10.0
+3358,112.012,10.0,4.0,147.0,298.167,646.0,858.0,4.0,409.0,463.407,512.0,721.0,322.0,508.0,541.353,580.0,868.0,0.0,7.0,61.3142,120.0,513.0,122.0,128.467,8.36614,18.0326,13.0553,10.0,10.0
+3359,112.045,10.0,4.0,147.0,298.002,645.0,853.0,94.0,409.0,463.356,512.0,713.0,348.0,509.0,541.472,580.0,777.0,0.0,7.0,61.4987,120.0,422.0,122.0,129.603,7.51431,17.8613,13.012,10.0,10.0
+3360,112.079,10.0,4.0,147.0,298.374,645.0,861.0,56.0,409.0,463.812,512.0,765.0,330.0,508.0,541.06,579.0,805.0,0.0,7.0,60.9968,119.0,458.0,122.0,128.878,8.38682,17.8147,12.9336,10.0,10.0
+3361,112.112,10.0,4.0,147.0,298.833,646.0,856.0,25.0,409.0,463.948,512.0,702.0,324.0,508.0,541.38,580.0,846.0,0.0,7.0,61.0436,120.0,489.0,122.0,130.075,7.48201,17.7376,12.8481,10.0,10.0
+3362,112.145,10.0,4.0,146.0,298.273,646.0,934.0,4.0,408.0,463.03,512.0,752.0,337.0,508.0,541.139,579.0,864.0,0.0,7.0,61.5103,120.0,515.0,122.0,128.455,8.07447,17.5054,12.9501,10.0,10.0
+3363,112.179,10.0,4.0,147.0,298.413,648.0,857.0,19.0,410.0,464.25,512.0,732.0,338.0,508.0,540.703,578.0,807.0,0.0,7.0,60.5773,119.0,497.0,122.0,129.676,8.30222,17.5217,12.943,10.0,10.0
+3364,112.212,10.0,4.0,147.0,297.999,647.0,848.0,30.0,411.0,464.533,512.0,709.0,336.0,508.0,540.919,578.0,821.0,0.0,7.0,60.4155,118.0,488.0,122.0,130.498,7.46402,17.4994,12.8935,10.0,10.0
+3365,112.245,10.0,4.0,146.0,298.235,647.0,877.0,36.0,408.0,463.128,512.0,690.0,263.0,508.0,540.922,579.0,728.0,0.0,7.0,61.4956,120.0,479.0,122.0,128.409,8.76807,17.5206,12.7122,10.0,10.0
+3366,112.279,10.0,4.0,146.0,298.558,648.0,870.0,14.0,408.0,462.832,512.0,728.0,294.0,508.0,541.116,579.0,866.0,0.0,7.0,61.8327,121.0,504.0,122.0,127.656,7.92607,17.6609,12.8449,10.0,10.0
+3367,112.312,10.0,4.0,146.0,298.165,644.0,933.0,35.0,410.0,463.859,512.0,849.0,361.0,508.0,541.074,579.0,812.0,0.0,7.0,60.9798,119.0,480.0,122.0,129.213,10.1448,17.7078,12.8975,10.0,10.0
+3368,112.346,10.0,4.0,147.0,298.886,647.0,902.0,30.0,409.0,463.969,512.0,799.0,370.0,508.0,540.827,579.0,814.0,0.0,7.0,60.5762,119.0,485.0,122.0,128.068,10.0987,17.6232,12.9371,10.0,10.0
+3369,112.379,10.0,4.0,147.0,298.868,647.0,930.0,52.0,413.0,466.216,512.0,819.0,370.0,508.0,539.901,577.0,778.0,0.0,7.0,58.1824,115.0,460.0,122.0,129.832,7.97996,17.3092,12.6993,10.0,10.0
+3370,112.412,10.0,4.0,146.0,298.699,648.0,938.0,29.0,417.0,467.542,512.0,770.0,383.0,508.0,539.015,575.0,841.0,0.0,6.0,56.5749,111.0,487.0,122.0,129.361,8.90064,16.7659,12.2842,10.0,10.0
+3371,112.446,10.0,4.0,146.0,298.653,648.0,857.0,26.0,417.0,467.722,512.0,752.0,376.0,508.0,539.003,576.0,804.0,0.0,6.0,56.3461,111.0,489.0,122.0,128.785,7.49827,16.4832,12.0851,10.0,10.0
+3372,112.479,10.0,4.0,146.0,297.158,645.0,931.0,72.0,415.0,466.801,512.0,835.0,398.0,509.0,539.397,576.0,780.0,0.0,6.0,57.2033,113.0,444.0,122.0,129.727,8.1835,16.4497,12.197,10.0,10.0
+3373,112.512,10.0,4.0,147.0,297.529,644.0,841.0,39.0,417.0,467.305,512.0,856.0,404.0,508.0,539.111,575.0,801.0,0.0,6.0,56.6747,111.0,473.0,122.0,128.064,8.37249,16.5548,12.2595,10.0,10.0
+3374,112.546,10.0,4.0,147.0,297.365,644.0,897.0,30.0,416.0,466.941,512.0,900.0,376.0,509.0,539.686,576.0,732.0,0.0,7.0,57.2937,113.0,487.0,122.0,129.652,7.48689,16.6055,12.2302,10.0,10.0
+3375,112.579,10.0,4.0,147.0,297.952,644.0,861.0,39.0,414.0,465.889,512.0,778.0,336.0,508.0,539.22,575.0,872.0,0.0,7.0,57.85,114.0,474.0,122.0,127.463,8.48128,16.7562,12.3216,10.0,10.0
+3376,112.613,10.0,4.0,147.0,298.461,645.0,863.0,80.0,414.0,465.658,512.0,762.0,352.0,508.0,539.988,576.0,825.0,0.0,7.0,58.5174,114.0,435.0,122.0,127.516,7.52729,16.8719,12.3336,10.0,10.0
+3377,112.646,10.0,4.0,147.0,298.401,645.0,857.0,62.0,414.0,465.795,512.0,779.0,347.0,509.0,539.868,576.0,727.0,0.0,7.0,58.1901,114.0,451.0,122.0,128.814,8.06922,16.7179,12.2381,10.0,10.0
+3378,112.679,10.0,4.0,147.0,298.811,648.0,878.0,16.0,414.0,465.881,512.0,764.0,336.0,508.0,539.824,576.0,718.0,0.0,7.0,58.2538,114.0,504.0,122.0,128.246,8.51566,16.7769,12.2912,10.0,10.0
+3379,112.713,10.0,4.0,147.0,298.741,647.0,854.0,44.0,414.0,465.89,512.0,778.0,366.0,508.0,539.675,576.0,726.0,0.0,7.0,58.0862,114.0,474.0,122.0,128.868,7.76338,16.5317,12.1995,10.0,10.0
+3380,112.746,10.0,4.0,147.0,299.136,647.0,861.0,40.0,414.0,465.156,512.0,768.0,338.0,508.0,539.837,576.0,702.0,0.0,7.0,58.7419,114.0,475.0,122.0,127.283,8.68169,16.5841,12.0983,10.0,10.0
+3381,112.779,10.0,4.0,147.0,299.682,648.0,853.0,60.0,412.0,464.559,511.0,716.0,294.0,509.0,540.517,577.0,703.0,0.0,7.0,59.5911,116.0,453.0,122.0,127.598,7.51535,16.7823,12.2853,10.0,10.0
+3382,112.813,10.0,4.0,148.0,299.533,647.0,848.0,14.0,413.0,464.937,512.0,784.0,394.0,509.0,540.22,576.0,724.0,0.0,7.0,59.0662,115.0,501.0,122.0,127.772,8.3347,16.8617,12.2629,10.0,10.0
+3383,112.846,10.0,4.0,148.0,299.971,647.0,859.0,48.0,416.0,466.367,511.0,774.0,374.0,509.0,539.389,575.0,730.0,0.0,7.0,57.3034,112.0,471.0,122.0,127.417,8.805,16.924,12.0478,10.0,10.0
+3384,112.879,10.0,4.0,147.0,299.614,647.0,865.0,86.0,418.0,467.13,512.0,669.0,344.0,509.0,538.858,573.0,702.0,0.0,7.0,56.2155,109.0,429.0,122.0,127.599,7.91506,16.3537,11.8635,10.0,10.0
+3385,112.913,10.0,4.0,148.0,299.933,648.0,855.0,64.0,418.0,467.574,512.0,680.0,366.0,508.0,537.973,572.0,720.0,0.0,6.0,55.447,109.0,451.0,121.0,126.758,8.95389,15.819,11.5461,10.0,10.0
+3386,112.946,10.0,4.0,148.0,300.039,649.0,863.0,46.0,418.0,467.461,511.0,698.0,422.0,509.0,538.401,573.0,727.0,0.0,7.0,55.7711,109.0,470.0,122.0,126.604,7.82897,15.8131,11.6857,10.0,10.0
+3387,112.98,10.0,4.0,147.0,298.83,646.0,848.0,40.0,418.0,467.497,511.0,722.0,416.0,509.0,538.291,572.0,696.0,0.0,7.0,55.5252,109.0,475.0,121.0,126.781,8.47548,15.8952,11.6648,10.0,10.0
+3388,113.013,10.0,4.0,148.0,299.247,648.0,837.0,76.0,418.0,467.12,512.0,696.0,398.0,509.0,538.389,573.0,685.0,0.0,7.0,56.0511,110.0,438.0,121.0,126.826,8.25542,15.7518,11.5908,10.0,10.0
+3389,113.046,10.0,4.0,147.0,299.303,648.0,844.0,60.0,418.0,467.68,512.0,745.0,364.0,509.0,538.302,573.0,709.0,0.0,6.0,55.5386,109.0,452.0,121.0,127.615,7.61726,15.8478,11.5732,10.0,10.0
+3390,113.08,10.0,4.0,147.0,299.038,647.0,859.0,80.0,418.0,467.628,512.0,721.0,398.0,508.0,538.082,572.0,709.0,0.0,7.0,55.4593,109.0,436.0,121.0,126.823,8.51014,15.8105,11.5544,10.0,10.0
+3391,113.113,10.0,4.0,148.0,299.185,648.0,840.0,50.0,418.0,467.838,511.0,726.0,298.0,509.0,538.464,573.0,710.0,0.0,6.0,55.376,108.0,466.0,122.0,126.715,7.56592,15.9783,11.5892,10.0,10.0
+3392,113.146,10.0,4.0,147.0,298.285,645.0,856.0,86.0,418.0,467.654,512.0,734.0,430.0,509.0,538.052,572.0,701.0,0.0,6.0,55.425,108.0,427.0,121.0,127.071,8.59015,15.79,11.7277,10.0,10.0
+3393,113.18,10.0,4.0,147.0,299.477,648.0,856.0,86.0,418.0,468.017,512.0,681.0,364.0,508.0,538.034,572.0,698.0,0.0,6.0,55.0884,108.0,428.0,122.0,127.372,7.91435,15.924,11.6543,10.0,10.0
+3394,113.213,10.0,4.0,146.0,298.928,647.0,848.0,80.0,418.0,468.069,512.0,716.0,384.0,509.0,538.291,573.0,680.0,0.0,6.0,55.2242,109.0,435.0,122.0,128.355,7.70005,15.5434,11.5265,10.0,10.0
+3395,113.246,10.0,4.0,146.0,298.898,647.0,855.0,86.0,418.0,468.041,512.0,774.0,358.0,508.0,538.07,573.0,711.0,0.0,6.0,55.1987,109.0,430.0,121.0,126.898,8.74894,15.8587,11.6428,10.0,10.0
+3396,113.28,10.0,4.0,147.0,299.562,647.0,845.0,68.0,419.0,468.727,512.0,707.0,380.0,508.0,538.099,573.0,694.0,0.0,6.0,54.7483,108.0,447.0,122.0,128.486,7.89572,15.7664,11.6125,10.0,10.0
+3397,113.313,10.0,4.0,147.0,298.284,643.0,848.0,90.0,418.0,467.964,511.0,820.0,337.0,509.0,538.151,573.0,706.0,0.0,6.0,55.1852,108.0,423.0,121.0,126.56,8.76811,15.8651,11.552,10.0,10.0
+3398,113.347,10.0,4.0,147.0,297.992,642.0,856.0,72.0,422.0,469.852,512.0,756.0,344.0,508.0,536.744,570.0,697.0,0.0,6.0,52.8695,104.0,443.0,121.0,126.85,8.5633,15.8271,11.4613,10.0,10.0
+3399,113.38,10.0,4.0,147.0,298.38,643.0,857.0,72.0,422.0,470.273,512.0,774.0,394.0,509.0,537.101,570.0,687.0,0.0,6.0,52.6857,103.0,444.0,122.0,128.051,8.03422,15.3537,11.2556,10.0,10.0
+3400,113.413,10.0,4.0,148.0,298.936,644.0,851.0,82.0,422.0,470.342,512.0,764.0,372.0,508.0,536.763,570.0,758.0,0.0,6.0,52.5138,103.0,434.0,122.0,128.244,8.82622,15.5888,11.3629,10.0,10.0
+3401,113.447,10.0,4.0,147.0,298.866,646.0,857.0,68.0,422.0,470.046,512.0,733.0,346.0,508.0,537.049,572.0,828.0,0.0,6.0,52.9448,105.0,444.0,122.0,128.07,7.62518,15.5513,11.4467,10.0,10.0
+3402,113.48,10.0,4.0,148.0,300.156,648.0,848.0,62.0,423.0,470.829,512.0,708.0,366.0,508.0,536.702,570.0,828.0,0.0,6.0,52.0816,102.0,456.0,122.0,128.257,8.41126,15.315,11.2598,10.0,10.0
+3403,113.513,10.0,4.0,147.0,300.078,649.0,909.0,76.0,422.0,469.898,512.0,746.0,352.0,508.0,537.051,570.0,814.0,0.0,6.0,53.0243,104.0,440.0,122.0,127.746,8.48388,15.481,11.2116,10.0,10.0
+3404,113.547,10.0,4.0,147.0,300.054,648.0,929.0,80.0,422.0,470.046,512.0,710.0,384.0,509.0,537.279,571.0,820.0,0.0,6.0,53.0788,104.0,437.0,122.0,128.345,7.6169,15.5072,11.2046,10.0,10.0
+3405,113.58,10.0,4.0,148.0,300.279,648.0,933.0,66.0,422.0,470.138,512.0,711.0,344.0,508.0,536.912,570.0,834.0,0.0,6.0,52.8842,104.0,447.0,122.0,127.948,8.79276,15.4167,11.1382,10.0,10.0
+3406,113.614,10.0,4.0,147.0,300.915,649.0,851.0,62.0,422.0,469.998,512.0,744.0,374.0,509.0,537.278,571.0,853.0,0.0,6.0,53.0122,104.0,454.0,122.0,127.564,8.13076,15.4123,11.2205,10.0,10.0
+3407,113.647,10.0,4.0,147.0,299.355,646.0,848.0,63.0,422.0,470.062,512.0,778.0,377.0,509.0,537.106,571.0,776.0,0.0,6.0,52.9452,104.0,454.0,122.0,128.431,9.23211,15.2976,11.2782,10.0,10.0
+3408,113.68,10.0,4.0,148.0,300.678,648.0,933.0,90.0,422.0,470.693,512.0,798.0,389.0,509.0,537.189,571.0,810.0,0.0,6.0,52.5393,104.0,426.0,122.0,128.972,8.49438,15.2196,11.1151,10.0,10.0
+3409,113.714,10.0,4.0,148.0,300.667,648.0,856.0,93.0,425.0,471.355,512.0,743.0,413.0,509.0,537.153,571.0,748.0,0.0,6.0,51.9218,101.0,420.0,123.0,129.829,7.37355,15.3578,11.0935,10.0,10.0
+3410,113.747,10.0,4.0,147.0,299.95,647.0,862.0,109.0,426.0,471.78,512.0,736.0,380.0,509.0,536.513,570.0,816.0,0.0,6.0,51.0691,101.0,407.0,122.0,128.741,8.28765,15.0677,11.0925,10.0,10.0
+3411,113.78,10.0,4.0,147.0,299.662,648.0,866.0,80.0,424.0,471.753,512.0,744.0,402.0,509.0,536.63,570.0,744.0,0.0,6.0,51.0799,101.0,435.0,122.0,128.217,7.48157,14.8003,10.9939,10.0,10.0
+3412,113.814,10.0,4.0,147.0,300.547,649.0,870.0,105.0,428.0,471.954,512.0,822.0,395.0,509.0,536.5,569.0,759.0,0.0,6.0,50.7988,100.0,412.0,122.0,128.518,8.20728,14.9279,10.852,10.0,10.0
+3413,113.847,10.0,4.0,148.0,300.32,648.0,848.0,80.0,426.0,471.525,512.0,880.0,402.0,509.0,536.965,570.0,696.0,0.0,6.0,51.3942,100.0,432.0,122.0,128.253,8.86912,14.9416,10.7589,10.0,10.0
+3414,113.88,10.0,4.0,147.0,299.811,647.0,933.0,87.0,425.0,471.28,512.0,732.0,360.0,509.0,536.892,570.0,779.0,0.0,6.0,51.5955,101.0,429.0,122.0,128.638,7.81571,14.9482,10.9244,10.0,10.0
+3415,113.914,10.0,4.0,147.0,300.041,647.0,839.0,100.0,427.0,471.524,512.0,714.0,374.0,509.0,536.491,569.0,832.0,0.0,6.0,51.2197,100.0,414.0,122.0,128.325,8.3516,14.8587,10.961,10.0,10.0
+3416,113.947,10.0,4.0,148.0,300.443,648.0,934.0,114.0,429.0,471.937,512.0,686.0,360.0,509.0,536.328,569.0,791.0,0.0,6.0,50.721,99.0,402.0,122.0,128.499,7.4641,14.9165,10.7887,10.0,10.0
+3417,113.981,10.0,4.0,147.0,300.558,649.0,881.0,93.0,423.0,470.732,512.0,705.0,362.0,509.0,536.359,569.0,785.0,0.0,6.0,51.7563,101.0,420.0,122.0,127.13,8.06073,14.8858,10.6808,10.0,10.0
+3418,114.014,10.0,4.0,148.0,300.478,649.0,857.0,89.0,429.0,471.944,512.0,716.0,394.0,509.0,536.113,569.0,803.0,0.0,6.0,50.6426,99.0,426.0,122.0,128.018,8.37572,14.8876,10.7887,10.0,10.0
+3419,114.047,10.0,4.0,147.0,300.034,648.0,862.0,90.0,427.0,471.95,512.0,711.0,416.0,509.0,536.194,569.0,793.0,0.0,6.0,50.7307,100.0,424.0,122.0,128.785,7.82409,14.6997,10.7998,10.0,10.0
+3420,114.081,10.0,4.0,147.0,299.16,647.0,866.0,92.0,426.0,471.491,512.0,706.0,359.0,509.0,536.248,568.0,814.0,0.0,6.0,50.9922,100.0,424.0,122.0,127.508,8.94153,14.8264,10.8925,10.0,10.0
+3421,114.114,10.0,4.0,148.0,299.928,647.0,883.0,105.0,425.0,471.225,512.0,679.0,366.0,509.0,536.712,569.0,832.0,0.0,6.0,51.4626,101.0,410.0,122.0,128.272,7.82849,14.7074,10.7069,10.0,10.0
+3422,114.147,10.0,4.0,147.0,299.492,647.0,856.0,72.0,428.0,471.858,512.0,716.0,394.0,509.0,536.065,568.0,796.0,0.0,6.0,50.7313,100.0,444.0,122.0,128.69,8.32838,14.5882,10.6182,10.0,10.0
+3423,114.181,10.0,4.0,146.0,299.212,648.0,894.0,96.0,426.0,471.715,512.0,722.0,391.0,509.0,535.991,568.0,798.0,0.0,6.0,50.7911,100.0,418.0,122.0,128.652,7.88722,14.6104,10.6807,10.0,10.0
+3424,114.214,10.0,4.0,147.0,298.618,647.0,856.0,106.0,427.0,471.746,512.0,649.0,361.0,509.0,536.163,569.0,805.0,0.0,6.0,50.7985,100.0,408.0,122.0,129.319,7.37879,14.5216,10.6471,10.0,10.0
+3425,114.247,10.0,4.0,147.0,298.806,646.0,862.0,111.0,427.0,472.111,512.0,695.0,384.0,509.0,536.091,568.0,807.0,0.0,6.0,50.4952,100.0,402.0,122.0,128.791,8.01427,14.7702,10.8211,10.0,10.0
+3426,114.281,10.0,4.0,147.0,298.864,645.0,861.0,108.0,429.0,472.527,512.0,790.0,417.0,509.0,536.516,569.0,749.0,0.0,6.0,50.3669,99.0,410.0,123.0,129.193,7.35554,14.7031,10.6887,10.0,10.0
+3427,114.314,10.0,4.0,146.0,297.728,644.0,852.0,105.0,425.0,471.623,512.0,701.0,408.0,509.0,536.443,569.0,694.0,0.0,6.0,51.0015,100.0,410.0,122.0,128.54,8.6154,14.9811,10.7029,10.0,10.0
+3428,114.348,10.0,4.0,146.0,298.071,644.0,923.0,123.0,428.0,472.34,512.0,730.0,412.0,509.0,536.368,569.0,814.0,0.0,6.0,50.3741,99.0,394.0,122.0,128.866,8.95442,14.6772,10.632,10.0,10.0
+3429,114.381,10.0,4.0,146.0,297.995,643.0,864.0,111.0,428.0,472.363,512.0,736.0,392.0,509.0,536.269,568.0,811.0,0.0,6.0,50.1941,99.0,401.0,122.0,128.689,7.86652,14.6124,10.6019,10.0,10.0
+3430,114.414,10.0,4.0,146.0,297.462,643.0,914.0,102.0,428.0,472.399,512.0,735.0,404.0,508.0,535.787,569.0,805.0,0.0,6.0,50.1283,99.0,413.0,122.0,128.424,8.99813,14.4627,10.6066,10.0,10.0
+3431,114.448,10.0,4.0,146.0,297.022,642.0,936.0,101.0,425.0,472.254,512.0,746.0,408.0,508.0,535.721,569.0,807.0,0.0,6.0,50.3634,100.0,413.0,122.0,128.256,7.83313,14.5589,10.7326,10.0,10.0
+3432,114.481,10.0,4.0,146.0,297.165,642.0,868.0,103.0,430.0,473.88,512.0,746.0,394.0,509.0,535.544,568.0,696.0,0.0,6.0,48.8796,97.0,410.0,123.0,131.002,8.41409,14.6945,10.7412,10.0,10.0
+3433,114.514,10.0,4.0,146.0,297.202,643.0,851.0,102.0,429.0,473.048,512.0,721.0,312.0,508.0,535.566,568.0,797.0,0.0,6.0,49.6309,99.0,410.0,122.0,129.101,8.89839,14.6057,10.6779,10.0,10.0
+3434,114.548,10.0,4.0,146.0,296.908,642.0,854.0,91.0,430.0,473.322,512.0,754.0,404.0,508.0,535.077,568.0,700.0,0.0,6.0,49.0604,97.0,423.0,122.0,129.334,8.08313,14.5523,10.7677,10.0,10.0
+3435,114.581,10.0,4.0,146.0,296.783,641.0,856.0,115.0,430.0,473.613,512.0,755.0,374.0,508.0,535.035,567.0,688.0,0.0,6.0,48.8723,96.0,400.0,122.0,128.674,9.24192,14.544,10.7025,10.0,10.0
+3436,114.615,10.0,4.0,146.0,296.735,640.0,850.0,124.0,430.0,473.398,512.0,692.0,348.0,508.0,535.414,568.0,690.0,0.0,6.0,49.0938,97.0,391.0,122.0,129.106,7.88604,14.6987,10.7482,10.0,10.0
+3437,114.648,10.0,4.0,146.0,297.395,643.0,843.0,103.0,430.0,473.239,512.0,678.0,348.0,509.0,535.525,568.0,687.0,0.0,6.0,49.3703,98.0,410.0,122.0,129.298,8.33702,14.4543,10.6363,10.0,10.0
+3438,114.681,10.0,4.0,147.0,298.54,645.0,856.0,86.0,430.0,473.714,512.0,711.0,352.0,508.0,535.313,568.0,674.0,0.0,6.0,48.9974,97.0,431.0,123.0,129.954,8.17808,14.5695,10.6593,10.0,10.0
+3439,114.715,10.0,4.0,147.0,298.136,645.0,850.0,106.0,430.0,473.519,512.0,765.0,369.0,509.0,535.821,568.0,703.0,0.0,6.0,49.2975,98.0,408.0,123.0,130.418,7.3995,14.525,10.717,10.0,10.0
+3440,114.748,10.0,4.0,147.0,298.21,645.0,855.0,102.0,429.0,472.753,512.0,689.0,366.0,509.0,535.618,568.0,698.0,0.0,6.0,49.7138,98.0,414.0,122.0,129.189,8.06979,14.7727,10.8054,10.0,10.0
+3441,114.781,10.0,4.0,147.0,298.583,645.0,868.0,92.0,430.0,473.059,512.0,718.0,342.0,508.0,535.654,568.0,684.0,0.0,6.0,49.5551,97.0,421.0,122.0,129.174,7.4219,14.4019,10.6976,10.0,10.0
+3442,114.815,10.0,4.0,148.0,300.16,648.0,860.0,84.0,430.0,473.262,512.0,746.0,362.0,509.0,535.74,568.0,700.0,0.0,6.0,49.3756,97.0,433.0,123.0,129.571,8.46029,14.5676,10.6573,10.0,10.0
+3443,114.848,10.0,4.0,147.0,298.909,647.0,870.0,89.0,430.0,473.061,512.0,787.0,352.0,509.0,535.389,568.0,686.0,0.0,6.0,49.3794,97.0,425.0,122.0,129.17,8.68219,14.4794,10.6432,10.0,10.0
+3444,114.881,10.0,4.0,148.0,299.734,648.0,859.0,94.0,430.0,473.574,512.0,693.0,328.0,509.0,535.578,568.0,696.0,0.0,6.0,49.0088,96.0,424.0,123.0,129.452,7.8434,14.3995,10.7234,10.0,10.0
+3445,114.915,10.0,4.0,148.0,300.008,648.0,858.0,57.0,431.0,473.902,512.0,765.0,328.0,509.0,535.04,566.0,683.0,0.0,6.0,48.4924,95.0,457.0,122.0,129.47,8.92775,14.4633,10.5198,10.0,10.0
+3446,114.948,10.0,4.0,147.0,300.713,649.0,860.0,68.0,431.0,474.104,512.0,678.0,384.0,509.0,535.22,567.0,718.0,0.0,6.0,48.3533,96.0,447.0,122.0,129.711,7.75269,14.5766,10.6147,10.0,10.0
+3447,114.982,10.0,4.0,147.0,299.281,649.0,855.0,105.0,430.0,473.454,512.0,780.0,436.0,509.0,535.179,567.0,683.0,0.0,6.0,48.889,96.0,410.0,122.0,129.377,8.36425,14.4187,10.4269,10.0,10.0
+3448,115.015,10.0,4.0,147.0,299.578,648.0,847.0,106.0,430.0,473.675,512.0,757.0,429.0,509.0,535.21,567.0,693.0,0.0,6.0,48.6968,96.0,409.0,122.0,129.09,8.01423,14.2918,10.4182,10.0,10.0
+3449,115.048,10.0,4.0,147.0,299.597,648.0,850.0,104.0,431.0,474.112,512.0,712.0,367.0,509.0,535.443,567.0,676.0,0.0,6.0,48.3305,95.0,409.0,123.0,129.819,7.52083,14.2585,10.3705,10.0,10.0
+3450,115.082,10.0,4.0,147.0,299.413,647.0,849.0,95.0,431.0,473.891,512.0,733.0,408.0,509.0,534.887,567.0,686.0,0.0,6.0,48.4322,95.0,420.0,122.0,129.18,8.7645,14.3809,10.5122,10.0,10.0
+3451,115.115,10.0,4.0,147.0,299.375,646.0,932.0,106.0,434.0,475.085,512.0,772.0,380.0,509.0,534.763,566.0,690.0,0.0,6.0,47.3293,93.0,409.0,123.0,129.896,7.92169,14.3737,10.5673,10.0,10.0
+3452,115.148,10.0,4.0,147.0,298.398,645.0,855.0,125.0,432.0,474.657,512.0,749.0,425.0,509.0,534.894,567.0,687.0,0.0,6.0,47.7327,95.0,388.0,122.0,129.81,9.12653,14.168,10.2331,10.0,10.0
+3453,115.182,10.0,4.0,147.0,298.481,648.0,842.0,110.0,432.0,474.197,512.0,663.0,377.0,509.0,535.294,568.0,692.0,0.0,6.0,48.243,95.0,403.0,122.0,129.391,8.77969,14.1769,10.4624,10.0,10.0
+3454,115.215,10.0,4.0,147.0,298.307,647.0,934.0,106.0,432.0,474.373,512.0,690.0,376.0,509.0,535.287,567.0,680.0,0.0,6.0,48.0408,94.0,410.0,123.0,129.76,7.62734,14.3015,10.3666,10.0,10.0
+3455,115.248,10.0,4.0,146.0,297.68,645.0,850.0,118.0,432.0,474.185,512.0,711.0,376.0,509.0,534.953,566.0,690.0,0.0,6.0,47.9808,94.0,399.0,122.0,128.372,8.79672,14.228,10.3739,10.0,10.0
+3456,115.282,10.0,4.0,146.0,296.966,645.0,846.0,124.0,431.0,473.968,512.0,735.0,380.0,509.0,535.129,567.0,703.0,0.0,6.0,48.2002,95.0,392.0,122.0,128.118,7.65578,14.1343,10.3789,10.0,10.0
+3457,115.315,10.0,4.0,146.0,296.928,647.0,859.0,110.0,430.0,473.274,512.0,755.0,370.0,509.0,535.296,567.0,689.0,0.0,6.0,48.7996,96.0,402.0,122.0,127.27,9.92242,14.2671,10.4344,10.0,10.0
+3458,115.349,10.0,4.0,146.0,296.269,644.0,870.0,91.0,431.0,474.238,512.0,714.0,398.0,509.0,535.412,568.0,680.0,0.0,6.0,48.1727,95.0,424.0,122.0,128.332,10.4398,14.1327,10.3286,10.0,10.0
+3459,115.382,10.0,4.0,146.0,295.611,644.0,857.0,128.0,430.0,473.772,512.0,761.0,406.0,509.0,535.435,567.0,682.0,0.0,6.0,48.6421,96.0,388.0,122.0,128.892,8.67105,14.2338,10.3384,10.0,10.0
+3460,115.415,10.0,4.0,146.0,294.857,643.0,850.0,132.0,430.0,473.37,512.0,715.0,394.0,509.0,535.188,568.0,756.0,0.0,6.0,48.7287,96.0,383.0,122.0,127.739,10.1487,14.1956,10.3805,10.0,10.0
+3461,115.449,10.0,4.0,146.0,294.495,643.0,852.0,72.0,431.0,473.897,512.0,721.0,404.0,509.0,535.407,568.0,803.0,0.0,6.0,48.4469,96.0,440.0,122.0,128.234,8.29715,14.0448,10.278,10.0,10.0
+3462,115.482,10.0,4.0,146.0,293.946,643.0,834.0,104.0,431.0,474.091,512.0,747.0,418.0,509.0,535.436,568.0,796.0,0.0,6.0,48.309,96.0,411.0,122.0,129.016,9.49371,14.0487,10.3275,10.0,10.0
+3463,115.515,10.0,4.0,145.0,294.016,644.0,846.0,120.0,430.0,473.879,512.0,740.0,387.0,509.0,535.279,568.0,684.0,0.0,6.0,48.3246,96.0,396.0,122.0,128.001,9.38747,14.0783,10.1607,10.0,10.0
+3464,115.549,10.0,4.0,146.0,294.411,643.0,857.0,110.0,432.0,474.278,512.0,721.0,384.0,509.0,535.326,568.0,832.0,0.0,6.0,47.9461,95.0,405.0,122.0,128.505,8.30274,14.0176,10.1401,10.0,10.0
+3465,115.582,10.0,4.0,146.0,295.074,644.0,856.0,114.0,431.0,474.26,512.0,736.0,410.0,509.0,534.86,566.0,807.0,0.0,6.0,47.8374,95.0,400.0,122.0,128.192,9.76421,13.9309,10.1184,10.0,10.0
+3466,115.616,10.0,4.0,145.0,295.564,646.0,855.0,106.0,431.0,474.096,512.0,935.0,384.0,508.0,534.689,566.0,684.0,0.0,6.0,47.8834,94.0,427.0,122.0,126.6,8.09009,13.8932,10.2669,10.0,10.0
+3467,115.649,10.0,4.0,148.0,296.212,643.0,850.0,122.0,431.0,474.606,512.0,928.0,358.0,509.0,534.654,567.0,680.0,0.0,6.0,47.4764,94.0,417.0,122.0,128.513,9.28469,13.9723,10.1918,10.0,10.0
+3468,115.682,10.0,4.0,148.0,297.093,647.0,855.0,126.0,432.0,474.749,512.0,895.0,412.0,509.0,534.883,566.0,692.0,0.0,6.0,47.4315,94.0,413.0,122.0,128.494,9.76154,13.8455,10.103,10.0,10.0
+3469,115.716,10.0,4.0,147.0,297.293,647.0,844.0,108.0,432.0,474.514,512.0,845.0,414.0,509.0,534.737,565.0,700.0,0.0,6.0,47.603,94.0,405.0,122.0,128.257,8.33747,13.8957,10.0229,10.0,10.0
+3470,115.749,10.0,4.0,147.0,298.277,647.0,858.0,101.0,431.0,473.832,512.0,918.0,386.0,508.0,534.74,567.0,690.0,0.0,6.0,48.0888,95.0,420.0,122.0,127.064,10.1455,13.8472,10.0996,10.0,10.0
+3471,115.782,10.0,4.0,147.0,298.452,646.0,857.0,120.0,431.0,473.792,512.0,751.0,412.0,509.0,535.019,566.0,664.0,0.0,6.0,48.2005,95.0,394.0,122.0,126.901,8.75664,13.9862,10.1563,10.0,10.0
+3472,115.816,10.0,4.0,148.0,299.076,647.0,866.0,124.0,430.0,473.261,512.0,841.0,394.0,509.0,535.424,568.0,678.0,0.0,6.0,48.802,96.0,391.0,122.0,127.321,9.86085,13.7629,10.0975,10.0,10.0
+3473,115.849,10.0,4.0,148.0,298.329,643.0,871.0,108.0,430.0,473.491,512.0,697.0,405.0,509.0,535.165,567.0,682.0,0.0,6.0,48.5033,96.0,405.0,122.0,127.47,9.16465,13.926,10.1228,10.0,10.0
+3474,115.882,10.0,4.0,147.0,299.077,645.0,848.0,102.0,431.0,473.698,512.0,727.0,398.0,509.0,535.444,567.0,673.0,0.0,6.0,48.4452,95.0,413.0,122.0,127.776,8.6792,13.7503,10.1124,10.0,10.0
+3475,115.916,10.0,4.0,147.0,299.205,646.0,866.0,118.0,430.0,473.557,512.0,717.0,384.0,509.0,535.139,567.0,673.0,0.0,6.0,48.361,95.0,400.0,122.0,127.424,10.0644,13.6744,10.0519,10.0,10.0
+3476,115.949,10.0,4.0,146.0,298.418,645.0,875.0,138.0,433.0,474.751,512.0,727.0,412.0,509.0,534.653,565.0,764.0,0.0,6.0,47.1649,93.0,376.0,122.0,128.652,8.37114,13.6741,9.77627,10.0,10.0
+3477,115.983,10.0,4.0,146.0,298.122,646.0,859.0,126.0,434.0,475.2,512.0,708.0,398.0,509.0,534.677,565.0,796.0,0.0,6.0,46.7481,92.0,387.0,122.0,128.804,9.34337,13.714,9.80789,10.0,10.0
+3478,116.016,10.0,4.0,146.0,297.132,647.0,859.0,106.0,434.0,475.268,512.0,688.0,405.0,509.0,534.306,565.0,794.0,0.0,6.0,46.4784,91.0,410.0,122.0,126.751,10.0231,13.502,9.89648,10.0,10.0
+3479,116.049,10.0,4.0,146.0,296.346,645.0,867.0,128.0,434.0,475.15,512.0,718.0,398.0,509.0,534.417,564.0,788.0,0.0,6.0,46.6026,91.0,389.0,122.0,127.538,7.88068,13.2733,9.84373,10.0,10.0
+3480,116.083,10.0,4.0,147.0,296.011,643.0,861.0,102.0,434.0,475.091,512.0,676.0,384.0,509.0,534.908,565.0,800.0,0.0,6.0,46.9475,92.0,418.0,122.0,127.793,8.90008,13.2412,9.79387,10.0,10.0
+3481,116.116,10.0,4.0,146.0,296.421,645.0,861.0,118.0,434.0,475.479,512.0,662.0,405.0,509.0,534.876,565.0,710.0,0.0,5.0,46.5857,92.0,394.0,123.0,128.086,7.76557,13.5359,9.78989,10.0,10.0
+3482,116.149,10.0,4.0,146.0,296.67,647.0,856.0,104.0,434.0,475.283,512.0,708.0,410.0,509.0,534.634,565.0,788.0,0.0,6.0,46.7732,92.0,413.0,122.0,128.244,9.39058,13.6769,9.85036,10.0,10.0
+3483,116.183,10.0,4.0,146.0,298.756,649.0,851.0,118.0,434.0,474.574,512.0,678.0,380.0,509.0,534.698,565.0,780.0,0.0,6.0,47.3737,92.0,396.0,122.0,127.695,9.53799,13.6544,9.87953,10.0,10.0
+3484,116.216,10.0,4.0,147.0,298.851,648.0,858.0,134.0,435.0,475.654,512.0,646.0,406.0,509.0,534.698,565.0,778.0,0.0,5.0,46.326,91.0,381.0,123.0,129.64,8.46703,13.6122,9.85462,10.0,10.0
+3485,116.249,10.0,4.0,146.0,298.426,648.0,847.0,150.0,435.0,475.707,512.0,666.0,388.0,509.0,533.982,563.0,786.0,0.0,5.0,45.9392,90.0,363.0,122.0,127.339,10.0763,13.4765,9.76772,10.0,10.0
+3486,116.283,10.0,4.0,146.0,298.431,648.0,846.0,108.0,435.0,475.288,512.0,712.0,412.0,509.0,534.273,564.0,784.0,0.0,5.0,46.4342,91.0,408.0,122.0,127.634,8.39826,13.3428,9.76381,10.0,10.0
+3487,116.316,10.0,4.0,146.0,297.885,645.0,858.0,124.0,436.0,476.116,512.0,690.0,384.0,509.0,534.254,562.0,758.0,0.0,5.0,45.6579,89.0,390.0,123.0,128.891,10.2957,13.4688,9.79907,10.0,10.0
+3488,116.35,10.0,4.0,146.0,296.71,643.0,874.0,136.0,435.0,475.831,512.0,676.0,408.0,509.0,533.915,562.0,792.0,0.0,5.0,45.8069,90.0,380.0,122.0,127.51,10.0179,13.3264,9.60773,10.0,10.0
+3489,116.383,10.0,4.0,146.0,296.409,642.0,848.0,138.0,436.0,476.304,512.0,699.0,418.0,509.0,534.176,563.0,787.0,0.0,5.0,45.5881,89.0,374.0,123.0,129.345,8.02651,13.2947,9.64613,10.0,10.0
+3490,116.416,10.0,4.0,146.0,295.898,642.0,857.0,116.0,436.0,476.411,512.0,783.0,421.0,509.0,533.837,562.0,712.0,0.0,5.0,45.2661,89.0,399.0,122.0,128.375,9.07964,13.3435,9.67462,10.0,10.0
+3491,116.45,10.0,4.0,146.0,295.981,642.0,931.0,156.0,436.0,476.715,512.0,674.0,412.0,509.0,534.166,563.0,816.0,0.0,5.0,45.3155,89.0,357.0,123.0,129.464,7.78917,13.3745,9.77367,10.0,10.0
+3492,116.483,10.0,4.0,146.0,295.124,641.0,938.0,155.0,436.0,476.578,512.0,721.0,420.0,509.0,533.851,562.0,777.0,0.0,5.0,45.0633,89.0,359.0,122.0,128.086,9.32543,13.4243,9.7173,10.0,10.0
+3493,116.516,10.0,4.0,145.0,294.953,641.0,854.0,133.0,437.0,476.835,512.0,792.0,436.0,509.0,533.902,562.0,689.0,0.0,5.0,44.9394,88.0,379.0,123.0,128.774,9.48748,13.1324,9.6806,10.0,10.0
+3494,116.55,10.0,4.0,145.0,294.599,638.0,850.0,108.0,436.0,477.08,512.0,871.0,388.0,509.0,534.036,563.0,665.0,0.0,5.0,44.9114,89.0,406.0,123.0,129.194,7.86738,13.2872,9.73132,10.0,10.0
+3495,116.583,10.0,4.0,145.0,294.237,637.0,927.0,123.0,437.0,477.074,512.0,673.0,370.0,509.0,533.544,561.0,769.0,0.0,5.0,44.6664,88.0,390.0,122.0,128.825,8.73443,13.2353,9.78064,10.0,10.0
+3496,116.617,10.0,4.0,145.0,293.984,637.0,862.0,144.0,438.0,477.193,512.0,686.0,381.0,509.0,533.568,561.0,803.0,0.0,5.0,44.5626,88.0,371.0,123.0,129.12,7.44216,13.1098,9.6371,10.0,10.0
+3497,116.65,10.0,4.0,146.0,294.699,637.0,850.0,151.0,440.0,477.933,512.0,729.0,417.0,509.0,533.167,560.0,741.0,0.0,5.0,43.8916,86.0,363.0,123.0,129.852,8.44751,13.222,9.53328,10.0,10.0
+3498,116.683,10.0,4.0,146.0,295.6,639.0,835.0,128.0,437.0,476.768,512.0,818.0,415.0,509.0,533.666,562.0,703.0,0.0,5.0,45.0441,88.0,388.0,123.0,129.062,8.51371,13.2814,9.66352,10.0,10.0
+3499,116.717,10.0,4.0,146.0,295.411,640.0,883.0,124.0,438.0,477.397,512.0,690.0,401.0,509.0,533.611,561.0,769.0,0.0,5.0,44.5434,88.0,389.0,123.0,129.547,7.95726,13.359,9.78148,10.0,10.0
+3500,116.75,10.0,4.0,146.0,295.909,640.0,912.0,157.0,439.0,477.536,512.0,735.0,420.0,509.0,533.292,561.0,763.0,0.0,5.0,44.1566,86.0,356.0,122.0,128.173,9.04719,13.1313,9.63017,10.0,10.0
+3501,116.783,10.0,4.0,146.0,296.225,641.0,847.0,142.0,440.0,477.959,512.0,693.0,400.0,509.0,533.364,560.0,764.0,0.0,5.0,43.7961,85.0,371.0,123.0,129.045,7.7409,13.3037,9.65975,10.0,10.0
+3502,116.817,10.0,4.0,146.0,296.29,643.0,856.0,128.0,439.0,477.227,512.0,722.0,424.0,509.0,533.561,561.0,764.0,0.0,5.0,44.4479,86.0,386.0,123.0,129.171,9.7507,13.0615,9.54521,10.0,10.0
+3503,116.85,10.0,4.0,146.0,297.383,643.0,913.0,143.0,439.0,477.626,512.0,709.0,430.0,509.0,533.513,561.0,672.0,0.0,5.0,44.1751,86.0,371.0,123.0,129.64,11.0835,12.9709,9.57214,10.0,10.0
+3504,116.883,10.0,4.0,146.0,297.043,643.0,849.0,157.0,439.0,477.472,512.0,688.0,394.0,509.0,533.478,561.0,663.0,0.0,5.0,44.2667,86.0,359.0,123.0,130.157,8.95697,12.9636,9.58953,10.0,10.0
+3505,116.917,10.0,4.0,147.0,297.168,643.0,845.0,125.0,439.0,477.325,512.0,708.0,402.0,509.0,532.985,560.0,779.0,0.0,5.0,44.102,86.0,389.0,122.0,128.474,10.2117,12.917,9.61505,10.0,10.0
+3506,116.95,10.0,4.0,147.0,297.08,643.0,852.0,125.0,438.0,476.916,512.0,680.0,424.0,509.0,533.16,560.0,673.0,0.0,5.0,44.6032,87.0,390.0,122.0,128.489,7.92887,13.1041,9.60006,10.0,10.0
+3507,116.984,10.0,4.0,147.0,297.298,643.0,852.0,129.0,440.0,477.387,512.0,659.0,375.0,509.0,532.96,560.0,665.0,0.0,5.0,44.0078,85.0,384.0,122.0,129.293,8.71794,13.0794,9.5191,10.0,10.0
+3508,117.017,10.0,4.0,146.0,297.393,643.0,848.0,156.0,437.0,476.788,512.0,678.0,384.0,509.0,533.083,560.0,675.0,0.0,5.0,44.5791,87.0,358.0,122.0,127.792,8.87306,12.8942,9.43485,10.0,10.0
+3509,117.05,10.0,4.0,146.0,297.288,643.0,869.0,137.0,437.0,476.702,512.0,752.0,394.0,509.0,533.216,560.0,671.0,0.0,5.0,44.7838,87.0,375.0,122.0,129.073,7.47969,13.1479,9.53159,10.0,10.0
+3510,117.084,10.0,4.0,147.0,297.938,644.0,860.0,161.0,438.0,476.839,512.0,698.0,423.0,509.0,533.286,561.0,675.0,0.0,5.0,44.6275,87.0,354.0,122.0,128.417,8.44861,13.2362,9.72539,10.0,10.0
+3511,117.117,10.0,4.0,146.0,297.8,643.0,850.0,132.0,437.0,476.846,512.0,678.0,380.0,509.0,533.401,561.0,658.0,0.0,5.0,44.7084,88.0,381.0,122.0,128.635,7.57204,13.0393,9.64809,10.0,10.0
+3512,117.15,10.0,4.0,147.0,297.068,642.0,913.0,156.0,436.0,476.454,512.0,688.0,372.0,510.0,533.706,561.0,677.0,0.0,5.0,45.0776,88.0,358.0,122.0,128.96,8.29408,13.2784,9.63993,10.0,10.0
+3513,117.184,10.0,4.0,147.0,298.283,645.0,855.0,145.0,438.0,476.856,512.0,764.0,376.0,509.0,533.249,560.0,673.0,0.0,5.0,44.6262,86.0,367.0,122.0,127.533,9.20776,13.0801,9.58638,10.0,10.0
+3514,117.217,10.0,4.0,147.0,298.52,645.0,873.0,123.0,438.0,477.201,512.0,893.0,376.0,509.0,533.223,560.0,685.0,0.0,5.0,44.4126,86.0,392.0,122.0,128.344,7.79077,13.1279,9.63235,10.0,10.0
+3515,117.25,10.0,4.0,147.0,297.579,643.0,854.0,124.0,437.0,477.165,512.0,871.0,397.0,509.0,533.082,560.0,656.0,0.0,5.0,44.2892,87.0,390.0,122.0,128.223,8.72456,13.204,9.65123,10.0,10.0
+3516,117.284,10.0,4.0,146.0,297.076,643.0,841.0,143.0,438.0,477.427,512.0,736.0,389.0,508.0,533.103,561.0,694.0,0.0,5.0,44.2954,87.0,371.0,122.0,129.113,7.50168,13.1877,9.58488,10.0,10.0
+3517,117.317,10.0,4.0,147.0,296.371,638.0,853.0,138.0,440.0,477.608,512.0,706.0,380.0,509.0,532.83,560.0,679.0,0.0,5.0,43.8776,85.0,375.0,122.0,128.426,8.7933,13.1832,9.49096,10.0,10.0
+3518,117.351,10.0,4.0,147.0,297.049,642.0,863.0,118.0,436.0,476.113,512.0,768.0,372.0,509.0,533.489,561.0,673.0,0.0,6.0,45.301,88.0,398.0,122.0,127.061,8.07017,13.3226,9.73687,10.0,10.0
+3519,117.384,10.0,4.0,147.0,297.657,642.0,856.0,120.0,437.0,476.391,512.0,701.0,394.0,509.0,533.405,561.0,665.0,0.0,6.0,45.117,88.0,394.0,122.0,128.121,7.56849,13.1845,9.6841,10.0,10.0
+3520,117.417,10.0,4.0,148.0,298.513,644.0,853.0,145.0,439.0,476.677,512.0,693.0,444.0,509.0,533.397,561.0,665.0,0.0,5.0,44.8305,87.0,369.0,122.0,127.92,8.54975,13.2272,9.63308,10.0,10.0
+3521,117.451,10.0,4.0,147.0,298.564,644.0,921.0,155.0,440.0,477.141,512.0,678.0,410.0,509.0,533.515,561.0,676.0,0.0,5.0,44.457,86.0,357.0,122.0,128.311,7.6767,13.0919,9.52569,10.0,10.0
+3522,117.484,10.0,4.0,148.0,297.528,644.0,926.0,114.0,437.0,476.212,512.0,688.0,398.0,509.0,533.279,560.0,683.0,0.0,5.0,45.0882,87.0,400.0,122.0,127.462,9.00646,13.0196,9.56703,10.0,10.0
+3523,117.517,10.0,4.0,147.0,297.898,644.0,866.0,144.0,440.0,477.659,512.0,671.0,432.0,509.0,533.275,560.0,662.0,0.0,5.0,43.7516,85.0,372.0,122.0,127.74,8.51441,13.1421,9.40989,10.0,10.0
+3524,117.551,10.0,4.0,147.0,297.877,644.0,871.0,138.0,439.0,477.172,512.0,686.0,398.0,509.0,533.251,560.0,676.0,0.0,5.0,44.1741,86.0,376.0,122.0,128.487,7.52298,13.0483,9.41784,10.0,10.0
+3525,117.584,10.0,4.0,147.0,297.96,643.0,861.0,144.0,439.0,477.028,512.0,666.0,362.0,509.0,533.168,560.0,666.0,0.0,5.0,44.3288,86.0,368.0,122.0,128.159,8.41149,12.8345,9.42467,10.0,10.0
+3526,117.618,10.0,4.0,148.0,298.326,644.0,849.0,133.0,438.0,476.859,512.0,801.0,364.0,509.0,533.165,560.0,670.0,0.0,5.0,44.4311,87.0,381.0,122.0,127.487,7.52133,12.8118,9.34905,10.0,10.0
+3527,117.651,10.0,4.0,149.0,299.057,644.0,851.0,122.0,440.0,477.532,512.0,869.0,404.0,509.0,533.381,560.0,678.0,0.0,5.0,44.0135,86.0,394.0,123.0,129.192,8.40102,12.9199,9.36105,10.0,10.0
+3528,117.684,10.0,4.0,148.0,297.587,642.0,837.0,135.0,440.0,477.362,512.0,881.0,384.0,509.0,533.323,560.0,676.0,0.0,5.0,44.0372,85.0,381.0,122.0,127.467,9.06917,12.7482,9.38256,10.0,10.0
+3529,117.718,10.0,4.0,149.0,298.516,644.0,845.0,160.0,440.0,477.552,512.0,891.0,370.0,510.0,533.584,560.0,666.0,0.0,6.0,44.0574,86.0,382.0,123.0,128.613,7.83871,12.8061,9.34915,10.0,10.0
+3530,117.751,10.0,4.0,148.0,298.826,644.0,865.0,134.0,440.0,477.343,512.0,831.0,408.0,509.0,533.24,560.0,678.0,0.0,5.0,44.0873,85.0,381.0,122.0,127.916,8.95093,12.8339,9.42221,10.0,10.0
+3531,117.784,10.0,4.0,148.0,299.617,646.0,861.0,150.0,440.0,477.429,512.0,849.0,388.0,509.0,533.316,560.0,674.0,0.0,5.0,44.1786,86.0,366.0,122.0,128.509,7.72219,12.8382,9.40793,10.0,10.0
+3532,117.818,10.0,4.0,148.0,298.171,644.0,855.0,144.0,439.0,477.033,512.0,892.0,384.0,510.0,533.563,560.0,684.0,0.0,6.0,44.478,86.0,380.0,122.0,128.906,9.10664,12.9633,9.43988,10.0,10.0
+3533,117.851,10.0,4.0,148.0,299.582,647.0,850.0,149.0,440.0,477.358,512.0,880.0,370.0,509.0,533.548,560.0,660.0,0.0,6.0,44.3586,86.0,368.0,123.0,128.157,8.71874,13.0518,9.42782,10.0,10.0
+3534,117.884,10.0,4.0,148.0,299.241,646.0,853.0,124.0,440.0,477.212,512.0,826.0,404.0,509.0,533.541,560.0,682.0,0.0,5.0,44.3406,86.0,391.0,123.0,128.722,7.7326,12.9634,9.48142,10.0,10.0
+3535,117.918,10.0,4.0,149.0,298.947,643.0,859.0,156.0,440.0,477.428,512.0,694.0,428.0,509.0,533.542,561.0,690.0,0.0,5.0,44.2027,86.0,358.0,123.0,128.819,8.93467,12.827,9.42272,10.0,10.0
+3536,117.951,10.0,4.0,148.0,298.391,642.0,896.0,148.0,440.0,477.361,512.0,688.0,412.0,509.0,533.574,561.0,678.0,0.0,5.0,44.1936,86.0,365.0,123.0,128.187,7.79835,12.9376,9.66815,10.0,10.0
+3537,117.985,10.0,4.0,148.0,299.654,648.0,861.0,156.0,439.0,477.439,512.0,658.0,412.0,509.0,533.183,560.0,667.0,0.0,5.0,44.0525,86.0,359.0,122.0,128.763,9.66035,12.9627,9.53895,10.0,10.0
+3538,118.018,10.0,4.0,147.0,299.156,648.0,858.0,132.0,437.0,476.68,512.0,645.0,416.0,509.0,533.589,561.0,666.0,0.0,5.0,44.8898,88.0,383.0,122.0,128.048,9.43957,12.98,9.58987,10.0,10.0
+3539,118.051,10.0,4.0,148.0,299.464,647.0,855.0,118.0,438.0,477.167,512.0,650.0,420.0,509.0,533.662,562.0,671.0,0.0,5.0,44.5769,87.0,395.0,123.0,129.081,7.79147,13.2479,9.68423,10.0,10.0
+3540,118.085,10.0,4.0,148.0,298.986,644.0,851.0,135.0,440.0,477.562,512.0,707.0,440.0,509.0,533.056,560.0,782.0,0.0,5.0,43.9454,86.0,381.0,122.0,128.515,8.71177,13.0291,9.65445,10.0,10.0
+3541,118.118,10.0,4.0,148.0,299.375,645.0,856.0,128.0,440.0,477.827,512.0,680.0,422.0,509.0,533.026,560.0,794.0,0.0,5.0,43.6447,86.0,385.0,122.0,128.494,7.72975,13.0809,9.51009,10.0,10.0
+3542,118.151,10.0,4.0,148.0,299.191,646.0,855.0,124.0,437.0,477.028,512.0,702.0,428.0,509.0,533.132,560.0,750.0,0.0,5.0,44.3831,87.0,392.0,122.0,128.644,8.60143,13.0793,9.42879,10.0,10.0
+3543,118.185,10.0,4.0,148.0,300.195,647.0,855.0,118.0,438.0,477.105,512.0,713.0,430.0,509.0,533.248,560.0,744.0,0.0,5.0,44.3961,87.0,399.0,122.0,128.155,8.30237,12.8861,9.48675,10.0,10.0
+3544,118.218,10.0,4.0,147.0,299.639,647.0,863.0,144.0,438.0,477.06,512.0,672.0,440.0,509.0,533.395,561.0,728.0,0.0,5.0,44.5041,87.0,369.0,122.0,129.173,7.67868,13.2587,9.62649,10.0,10.0
+3545,118.251,10.0,4.0,147.0,299.776,648.0,849.0,150.0,437.0,477.079,512.0,811.0,392.0,509.0,532.938,560.0,671.0,0.0,5.0,44.3429,87.0,363.0,122.0,128.284,8.70283,13.249,9.61052,10.0,10.0
+3546,118.285,10.0,4.0,147.0,299.944,648.0,865.0,106.0,438.0,476.971,512.0,891.0,394.0,509.0,532.935,560.0,671.0,0.0,5.0,44.3879,87.0,410.0,122.0,127.597,7.8093,13.0858,9.62334,10.0,10.0
+3547,118.318,10.0,4.0,147.0,300.005,649.0,854.0,122.0,439.0,477.636,512.0,837.0,428.0,509.0,532.954,560.0,678.0,0.0,5.0,43.9561,86.0,392.0,122.0,129.818,8.54499,13.0163,9.6068,10.0,10.0
+3548,118.352,10.0,4.0,147.0,299.669,648.0,871.0,132.0,436.0,476.579,512.0,766.0,436.0,509.0,533.264,561.0,735.0,0.0,5.0,44.9394,88.0,383.0,122.0,127.535,8.56435,13.1576,9.62243,10.0,10.0
+3549,118.385,10.0,4.0,147.0,300.028,649.0,847.0,138.0,436.0,476.564,512.0,859.0,420.0,509.0,533.56,561.0,672.0,0.0,5.0,44.9661,89.0,376.0,122.0,128.323,7.85922,13.2954,9.63174,10.0,10.0
+3550,118.418,10.0,4.0,147.0,300.731,649.0,855.0,100.0,437.0,476.719,512.0,768.0,428.0,509.0,533.467,561.0,726.0,0.0,5.0,44.8118,88.0,414.0,122.0,128.283,8.40353,13.1124,9.48736,10.0,10.0
+3551,118.452,10.0,4.0,146.0,300.663,650.0,861.0,132.0,437.0,476.687,512.0,810.0,432.0,508.0,532.97,560.0,676.0,0.0,5.0,44.5252,87.0,381.0,122.0,127.022,7.53855,13.0096,9.502,10.0,10.0
+3552,118.485,10.0,4.0,147.0,299.903,649.0,855.0,156.0,436.0,476.497,512.0,836.0,394.0,509.0,533.023,561.0,660.0,0.0,5.0,44.7944,88.0,358.0,122.0,128.446,8.3749,13.0778,9.53835,10.0,10.0
+3553,118.518,10.0,4.0,146.0,300.334,650.0,857.0,142.0,439.0,477.601,512.0,867.0,412.0,508.0,532.605,560.0,687.0,0.0,5.0,43.6877,86.0,370.0,122.0,127.866,8.59035,13.0034,9.4516,10.0,10.0
+3554,118.552,10.0,4.0,147.0,299.83,649.0,865.0,144.0,438.0,477.226,512.0,760.0,420.0,509.0,533.147,561.0,670.0,0.0,5.0,44.2032,87.0,370.0,122.0,128.645,7.8618,12.9939,9.50305,10.0,10.0
+3555,118.585,10.0,4.0,147.0,299.95,649.0,878.0,140.0,437.0,477.183,512.0,684.0,420.0,509.0,533.107,561.0,784.0,0.0,5.0,44.2491,88.0,374.0,122.0,128.048,9.11686,12.9451,9.40272,10.0,10.0
+3556,118.619,10.0,4.0,147.0,300.167,650.0,868.0,128.0,438.0,477.152,512.0,688.0,412.0,509.0,533.204,561.0,770.0,0.0,5.0,44.3826,88.0,392.0,122.0,128.197,7.96612,12.7906,9.49993,10.0,10.0
+3557,118.652,10.0,4.0,147.0,299.772,648.0,935.0,124.0,439.0,477.747,512.0,706.0,394.0,509.0,532.878,560.0,774.0,0.0,5.0,43.7364,86.0,389.0,122.0,129.674,9.22188,12.9859,9.54068,10.0,10.0
+3558,118.685,10.0,4.0,147.0,299.263,648.0,854.0,118.0,439.0,477.318,512.0,690.0,394.0,509.0,532.749,560.0,770.0,0.0,5.0,43.9588,87.0,396.0,122.0,127.653,8.98228,13.0007,9.37687,10.0,10.0
+3559,118.719,10.0,4.0,147.0,299.778,649.0,856.0,96.0,438.0,477.388,512.0,872.0,412.0,509.0,532.792,560.0,677.0,0.0,5.0,43.9305,86.0,422.0,122.0,128.456,7.73753,13.0949,9.46245,10.0,10.0
+3560,118.752,10.0,4.0,147.0,299.516,649.0,864.0,144.0,438.0,477.142,512.0,691.0,432.0,509.0,532.809,560.0,769.0,0.0,5.0,44.0972,87.0,370.0,122.0,127.62,8.80408,13.0596,9.55565,10.0,10.0
+3561,118.785,10.0,4.0,147.0,299.365,648.0,867.0,144.0,436.0,476.909,512.0,679.0,409.0,509.0,533.095,560.0,762.0,0.0,5.0,44.3473,88.0,369.0,122.0,127.528,7.72802,12.9909,9.58077,10.0,10.0
+3562,118.819,10.0,4.0,148.0,299.26,648.0,852.0,137.0,437.0,476.989,512.0,701.0,424.0,509.0,532.887,560.0,673.0,0.0,5.0,44.2902,87.0,378.0,122.0,128.555,8.046,13.0547,9.57413,10.0,10.0
+3563,118.852,10.0,4.0,147.0,299.839,649.0,851.0,134.0,440.0,478.01,512.0,720.0,428.0,509.0,532.914,560.0,785.0,0.0,5.0,43.4744,85.0,381.0,122.0,128.721,8.43254,13.1394,9.52038,10.0,10.0
+3564,118.885,10.0,4.0,147.0,299.522,648.0,855.0,150.0,439.0,477.464,512.0,685.0,413.0,509.0,532.925,560.0,678.0,0.0,5.0,43.9751,86.0,365.0,122.0,129.884,7.40683,12.9546,9.55713,10.0,10.0
+3565,118.919,10.0,4.0,147.0,299.642,648.0,933.0,137.0,439.0,477.371,512.0,680.0,370.0,509.0,532.717,560.0,673.0,0.0,5.0,43.8981,87.0,375.0,122.0,128.519,8.66305,12.9645,9.47271,10.0,10.0
+3566,118.952,10.0,4.0,147.0,300.297,650.0,851.0,123.0,439.0,477.535,512.0,671.0,402.0,509.0,532.752,560.0,657.0,0.0,5.0,43.7424,86.0,391.0,122.0,127.677,7.85778,13.0015,9.5399,10.0,10.0
+3567,118.986,10.0,4.0,146.0,298.23,646.0,865.0,129.0,439.0,477.745,512.0,654.0,398.0,508.0,532.641,560.0,658.0,0.0,5.0,43.6204,86.0,386.0,122.0,128.772,10.8724,13.0068,9.64128,10.0,10.0
+3568,119.019,10.0,4.0,146.0,297.92,647.0,929.0,155.0,438.0,477.2,512.0,721.0,452.0,508.0,532.715,560.0,673.0,0.0,5.0,43.9558,87.0,359.0,122.0,126.868,10.4362,13.213,9.6461,10.0,10.0
+3569,119.052,10.0,4.0,147.0,298.355,647.0,848.0,156.0,437.0,477.092,512.0,709.0,362.0,509.0,533.079,561.0,671.0,0.0,5.0,44.2706,88.0,358.0,122.0,128.097,8.75676,13.1508,9.60308,10.0,10.0
+3570,119.086,10.0,4.0,146.0,297.507,646.0,847.0,123.0,436.0,476.664,512.0,719.0,420.0,509.0,533.114,561.0,656.0,0.0,5.0,44.6009,89.0,390.0,122.0,126.919,11.4168,13.4076,9.7667,10.0,10.0
+3571,119.119,10.0,4.0,146.0,296.531,645.0,883.0,128.0,436.0,476.544,512.0,694.0,420.0,509.0,533.306,561.0,663.0,0.0,5.0,44.8195,89.0,386.0,122.0,127.644,9.36157,12.9992,9.54322,10.0,10.0
+3572,119.152,10.0,4.0,146.0,295.438,642.0,837.0,144.0,436.0,476.928,512.0,748.0,384.0,509.0,533.05,561.0,671.0,0.0,5.0,44.4435,88.0,368.0,122.0,127.579,10.0198,13.1244,9.60489,10.0,10.0
+3573,119.186,10.0,4.0,146.0,296.334,644.0,934.0,143.0,437.0,477.141,512.0,678.0,362.0,509.0,533.134,561.0,681.0,0.0,5.0,44.1713,88.0,371.0,122.0,127.17,9.49716,13.278,9.66257,10.0,10.0
+3574,119.219,10.0,4.0,146.0,296.643,646.0,855.0,143.0,437.0,477.118,512.0,691.0,357.0,509.0,533.084,561.0,673.0,0.0,5.0,44.2395,88.0,372.0,122.0,127.958,8.60854,13.1132,9.6477,10.0,10.0
+3575,119.252,10.0,4.0,147.0,297.614,646.0,852.0,128.0,439.0,476.948,512.0,708.0,380.0,509.0,532.744,560.0,675.0,0.0,5.0,44.2616,87.0,388.0,121.0,126.979,9.99082,13.2366,9.65409,10.0,10.0
+3576,119.286,10.0,4.0,146.0,298.059,647.0,855.0,152.0,440.0,477.662,512.0,794.0,348.0,509.0,533.102,560.0,675.0,0.0,5.0,43.8372,86.0,361.0,122.0,127.55,8.05868,13.1774,9.56421,10.0,10.0
+3577,119.319,10.0,4.0,146.0,298.397,647.0,855.0,153.0,437.0,476.814,512.0,695.0,387.0,509.0,533.668,561.0,673.0,0.0,5.0,44.8525,87.0,360.0,122.0,128.219,9.25126,13.1773,9.6696,10.0,10.0
+3578,119.353,10.0,4.0,147.0,298.488,644.0,838.0,116.0,436.0,476.362,512.0,679.0,387.0,509.0,533.602,562.0,664.0,0.0,6.0,45.0754,88.0,396.0,122.0,126.769,10.0442,13.5565,9.92322,10.0,10.0
+3579,119.386,10.0,4.0,147.0,298.848,644.0,873.0,132.0,436.0,476.399,512.0,710.0,414.0,509.0,533.95,562.0,692.0,0.0,6.0,45.2036,89.0,382.0,122.0,127.84,8.5748,13.323,9.73096,10.0,10.0
+3580,119.419,10.0,4.0,147.0,299.031,644.0,842.0,138.0,437.0,476.316,512.0,683.0,423.0,509.0,533.492,561.0,692.0,0.0,6.0,45.0179,88.0,377.0,122.0,126.724,9.79519,13.2066,9.63401,10.0,10.0
+3581,119.453,10.0,4.0,146.0,298.774,644.0,930.0,134.0,437.0,476.556,512.0,662.0,408.0,509.0,533.726,562.0,686.0,0.0,6.0,44.9916,88.0,378.0,122.0,127.899,8.01652,13.1386,9.51807,10.0,10.0
+3582,119.486,10.0,4.0,147.0,298.893,647.0,862.0,111.0,437.0,476.591,512.0,683.0,437.0,509.0,533.608,562.0,673.0,0.0,6.0,44.9137,88.0,405.0,122.0,127.853,9.05536,13.1434,9.67342,10.0,10.0
+3583,119.519,10.0,4.0,147.0,299.952,648.0,851.0,156.0,437.0,476.676,512.0,642.0,394.0,509.0,533.835,562.0,678.0,0.0,6.0,44.9293,88.0,358.0,122.0,127.672,9.63296,13.27,9.83509,10.0,10.0
+3584,119.553,10.0,4.0,146.0,298.827,647.0,854.0,137.0,437.0,476.779,512.0,667.0,412.0,509.0,533.58,561.0,670.0,0.0,6.0,44.7224,88.0,377.0,122.0,128.193,7.84677,13.4416,9.7165,10.0,10.0
+3585,119.586,10.0,4.0,146.0,298.452,647.0,845.0,137.0,437.0,476.629,512.0,684.0,400.0,509.0,533.103,561.0,673.0,0.0,5.0,44.6078,88.0,376.0,122.0,127.286,9.20703,13.3638,9.57265,10.0,10.0
+3586,119.62,10.0,4.0,146.0,298.898,648.0,842.0,136.0,438.0,476.739,512.0,602.0,436.0,509.0,533.298,561.0,673.0,0.0,5.0,44.4573,87.0,378.0,122.0,126.889,7.97455,13.3448,9.55144,10.0,10.0
+3587,119.653,10.0,4.0,146.0,298.412,646.0,826.0,153.0,437.0,476.529,512.0,618.0,438.0,509.0,533.204,560.0,665.0,0.0,6.0,44.6061,87.0,361.0,122.0,127.374,9.27912,13.0754,9.69199,10.0,10.0
+3588,119.686,10.0,4.0,148.0,299.951,647.0,857.0,150.0,437.0,476.305,512.0,662.0,420.0,509.0,533.739,561.0,696.0,0.0,6.0,45.0677,88.0,365.0,122.0,126.861,10.0319,13.2305,9.61476,10.0,10.0
+3589,119.72,10.0,4.0,147.0,300.059,648.0,931.0,143.0,437.0,476.411,512.0,673.0,420.0,510.0,533.892,561.0,661.0,0.0,6.0,45.1378,87.0,370.0,123.0,128.364,7.92791,13.1357,9.47695,10.0,10.0
+3590,119.753,10.0,4.0,147.0,300.293,648.0,859.0,128.0,437.0,476.488,512.0,655.0,408.0,509.0,533.559,561.0,674.0,0.0,5.0,44.8756,88.0,388.0,122.0,127.718,8.80898,13.0775,9.52679,10.0,10.0
+3591,119.786,10.0,4.0,147.0,300.047,649.0,867.0,156.0,437.0,476.442,512.0,659.0,442.0,509.0,533.503,561.0,666.0,0.0,6.0,44.9292,87.0,359.0,122.0,126.916,7.60258,12.9068,9.51151,10.0,10.0
+3592,119.82,10.0,4.0,148.0,299.821,647.0,862.0,144.0,437.0,476.779,512.0,685.0,432.0,509.0,533.526,560.0,673.0,0.0,5.0,44.6444,88.0,369.0,122.0,128.973,8.82795,13.0787,9.52126,10.0,10.0
+3593,119.853,10.0,4.0,147.0,300.561,649.0,871.0,108.0,437.0,476.752,512.0,701.0,413.0,509.0,533.595,561.0,664.0,0.0,5.0,44.6961,88.0,404.0,122.0,128.324,8.5451,13.0372,9.49588,10.0,10.0
+3594,119.886,10.0,4.0,148.0,300.161,648.0,849.0,118.0,437.0,476.658,512.0,681.0,405.0,509.0,533.683,561.0,672.0,0.0,5.0,44.8424,88.0,397.0,122.0,128.213,7.79353,13.1045,9.52639,10.0,10.0
+3595,119.92,10.0,4.0,147.0,299.916,647.0,850.0,137.0,438.0,477.097,512.0,673.0,402.0,509.0,533.286,561.0,683.0,0.0,5.0,44.3903,87.0,376.0,122.0,128.188,8.84605,13.0351,9.55603,10.0,10.0
+3596,119.953,10.0,4.0,147.0,300.387,648.0,861.0,156.0,440.0,477.304,512.0,670.0,401.0,509.0,533.377,562.0,683.0,0.0,5.0,44.2465,87.0,359.0,122.0,128.177,7.70424,13.1798,9.65388,10.0,10.0
+3597,119.987,10.0,4.0,148.0,299.31,646.0,855.0,142.0,438.0,477.355,512.0,672.0,412.0,509.0,533.226,561.0,670.0,0.0,5.0,44.1396,87.0,371.0,122.0,128.76,8.51872,13.1366,9.47575,10.0,10.0
diff --git a/videosummarystats.csv b/videosummarystats.csv
new file mode 100644
index 0000000..fb4d5e3
--- /dev/null
+++ b/videosummarystats.csv
@@ -0,0 +1,9 @@
+,Frame Time,vrep,ymin,ylow,yavg,yhigh,ymax,umin,ulow,uavg,uhigh,umax,vmin,vlow,vavg,vhigh,vmax,satmin,satlow,satavg,sathigh,satmax,huemed,hueavg,ydif,udif,vdif,ybitdepth,ubitdepth,vbitdepth,tout,brng
+count,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0,3597.0
+mean,59.99326666666666,0.028530293144286904,0.0,32.218793438976924,69.04636535168194,139.27411731998887,232.5084792882958,63.46232971921045,112.63886572143453,121.99281540172366,131.26716708368085,164.29941618015013,104.77453433416736,125.92827356130108,131.64511759799834,137.59966638865723,166.67278287461772,0.0,1.6916875173755908,11.06425996385877,21.46232971921045,69.97164303586322,148.23380594940227,149.02100500417015,2.194147535223798,2.4411191159299417,1.620263730052822,8.0,8.0,8.0,0.002333173132332499,0.09304380914095078
+std,34.65157651526318,0.16074650674213678,0.0,15.509593801212917,35.569768376620544,72.49615025704404,23.192219166380593,14.869530342723278,12.838041861847001,8.965209273424872,8.52181412768774,17.210068715037167,10.181338948129516,3.3814539732154163,4.488124504410513,7.671754523168475,15.746124984081023,0.0,1.1809435925757883,6.378723456696221,12.418008578776085,16.529990168457918,55.65547916183267,49.6356627714303,2.3299306961185238,0.8530740282202759,0.6363910082438498,0.0,0.0,0.0,0.0011900474875298492,0.19283345642020383
+min,0.0,0.0,0.0,1.0,1.21088,1.0,132.0,9.0,88.0,107.829,126.0,135.0,66.0,116.0,122.953,127.0,133.0,0.0,0.0,1.23527,2.0,39.0,108.0,112.744,0.0,0.0,0.0,8.0,8.0,8.0,0.000688729,0.0011917
+25%,29.996633,0.0,0.0,17.0,31.8949,51.0,215.0,55.0,103.0,116.001,127.0,148.0,97.0,127.0,128.07,130.0,158.0,0.0,1.0,5.32714,9.0,57.0,117.0,124.09,1.61504,1.92372,1.22478,8.0,8.0,8.0,0.00148891,0.0011917
+50%,59.993267,0.0,0.0,37.0,75.4543,162.0,235.0,72.0,110.0,119.154,128.0,164.0,108.0,127.0,133.368,140.0,166.0,0.0,1.0,11.4369,23.0,62.0,122.0,129.321,2.06903,1.99505,1.30375,8.0,8.0,8.0,0.00177183,0.0380087
+75%,89.9899,0.0,0.0,39.0,94.7821,192.0,255.0,74.0,125.0,127.682,130.0,179.0,114.0,128.0,135.16,144.0,180.0,0.0,3.0,14.417,29.0,81.0,161.0,154.962,2.4885,2.88112,1.93877,8.0,8.0,8.0,0.00307499,0.116844
+max,119.986533,0.987654,0.0,62.0,133.074,248.0,255.0,90.0,131.0,141.008,156.0,216.0,118.0,128.0,138.717,152.0,203.0,0.0,5.0,23.5357,45.0,121.0,290.0,281.45,87.279,13.4459,9.23477,8.0,8.0,8.0,0.0148177,0.998883