diff --git a/disperser/cmd/dataapi/main.go b/disperser/cmd/dataapi/main.go index 7053639e0c..e49501b05c 100644 --- a/disperser/cmd/dataapi/main.go +++ b/disperser/cmd/dataapi/main.go @@ -20,6 +20,7 @@ import ( "github.com/Layr-Labs/eigenda/disperser/dataapi" "github.com/Layr-Labs/eigenda/disperser/dataapi/prometheus" "github.com/Layr-Labs/eigenda/disperser/dataapi/subgraph" + serverv2 "github.com/Layr-Labs/eigenda/disperser/dataapi/v2" "github.com/Layr-Labs/eigensdk-go/logging" gethcommon "github.com/ethereum/go-ethereum/common" @@ -33,7 +34,7 @@ var ( gitDate string ) -// @title EigenDA Data Access API +// @title EigenDA Data Access API V1 // @description This is the EigenDA Data Access API server. // @version 1 // @Schemes https http @@ -131,7 +132,7 @@ func RunDataApi(ctx *cli.Context) error { if config.ServerVersion == 2 { blobMetadataStorev2 := blobstorev2.NewBlobMetadataStore(dynamoClient, logger, config.BlobstoreConfig.TableName) - serverv2 := dataapi.NewServerV2( + serverv2 := serverv2.NewServerV2( dataapi.Config{ ServerMode: config.ServerMode, SocketAddr: config.SocketAddr, diff --git a/disperser/dataapi/Makefile b/disperser/dataapi/Makefile index 0d41147d5b..64f6ebfb14 100644 --- a/disperser/dataapi/Makefile +++ b/disperser/dataapi/Makefile @@ -1,10 +1,17 @@ -build: +build: cd .. && go build -o ./bin/dataapi ./cmd/dataapi test: - go test -v . + go test -v ./... -generate-swagger: - @echo " > Generating swagger..." - swag init -g ../cmd/dataapi/main.go --parseDependency - swag fmt +generate-swagger-v1: + @echo " > Generating v1 swagger..." + swag init -g ../cmd/dataapi/main.go --parseDependency --output docs/v1 --instanceName V1 --packageName v1 --parseDepth 0 --exclude ./v2 --dir . + swag fmt --dir . --exclude ./v2/server_v2.go + +generate-swagger-v2: + @echo " > Generating v2 swagger..." + swag init -g swagger.go --parseDependency --output docs/v2 --instanceName V2 --packageName v2 --dir ./v2 --parseDepth 0 + swag fmt --dir ./v2 + +generate-swagger: generate-swagger-v1 generate-swagger-v2 diff --git a/disperser/dataapi/docs/docs.go b/disperser/dataapi/docs/v1/V1_docs.go similarity index 62% rename from disperser/dataapi/docs/docs.go rename to disperser/dataapi/docs/v1/V1_docs.go index 247530c888..637b56b867 100644 --- a/disperser/dataapi/docs/docs.go +++ b/disperser/dataapi/docs/v1/V1_docs.go @@ -1,9 +1,9 @@ -// Package docs Code generated by swaggo/swag. DO NOT EDIT -package docs +// Package v1 Code generated by swaggo/swag. DO NOT EDIT +package v1 import "github.com/swaggo/swag" -const docTemplate = `{ +const docTemplateV1 = `{ "schemes": {{ marshal .Schemes }}, "swagger": "2.0", "info": { @@ -15,197 +15,6 @@ const docTemplate = `{ "host": "{{.Host}}", "basePath": "{{.BasePath}}", "paths": { - "/batches/{batch_header_hash}": { - "get": { - "produces": [ - "application/json" - ], - "tags": [ - "Batch" - ], - "summary": "Fetch batch by the batch header hash", - "parameters": [ - { - "type": "string", - "description": "Batch header hash in hex string", - "name": "batch_header_hash", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/dataapi.BatchResponse" - } - }, - "400": { - "description": "error: Bad request", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "404": { - "description": "error: Not found", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "500": { - "description": "error: Server error", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - } - } - } - }, - "/blobs/{blob_key}": { - "get": { - "produces": [ - "application/json" - ], - "tags": [ - "Blob" - ], - "summary": "Fetch blob metadata by blob key", - "parameters": [ - { - "type": "string", - "description": "Blob key in hex string", - "name": "blob_key", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/dataapi.BlobResponse" - } - }, - "400": { - "description": "error: Bad request", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "404": { - "description": "error: Not found", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "500": { - "description": "error: Server error", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - } - } - } - }, - "/blobs/{blob_key}/certificate": { - "get": { - "produces": [ - "application/json" - ], - "tags": [ - "Blob" - ], - "summary": "Fetch blob certificate by blob key", - "parameters": [ - { - "type": "string", - "description": "Blob key in hex string", - "name": "blob_key", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/dataapi.BlobCertificateResponse" - } - }, - "400": { - "description": "error: Bad request", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "404": { - "description": "error: Not found", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "500": { - "description": "error: Server error", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - } - } - } - }, - "/blobs/{blob_key}/verification-info": { - "get": { - "produces": [ - "application/json" - ], - "tags": [ - "Blob" - ], - "summary": "Fetch blob verification info by blob key and batch header hash", - "parameters": [ - { - "type": "string", - "description": "Blob key in hex string", - "name": "blob_key", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Batch header hash in hex string", - "name": "batch_header_hash", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/dataapi.BlobVerificationInfoResponse" - } - }, - "400": { - "description": "error: Bad request", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "404": { - "description": "error: Not found", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "500": { - "description": "error: Server error", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - } - } - } - }, "/feed/batches/{batch_header_hash}/blobs": { "get": { "produces": [ @@ -628,7 +437,7 @@ const docTemplate = `{ } } }, - "/metrics/summary": { + "/metrics/throughput": { "get": { "produces": [ "application/json" @@ -636,7 +445,7 @@ const docTemplate = `{ "tags": [ "Metrics" ], - "summary": "Fetch metrics summary", + "summary": "Fetch throughput time series", "parameters": [ { "type": "integer", @@ -655,7 +464,10 @@ const docTemplate = `{ "200": { "description": "OK", "schema": { - "$ref": "#/definitions/dataapi.Metric" + "type": "array", + "items": { + "$ref": "#/definitions/dataapi.Throughput" + } } }, "400": { @@ -679,37 +491,20 @@ const docTemplate = `{ } } }, - "/metrics/throughput": { + "/operators-info/deregistered-operators": { "get": { "produces": [ "application/json" ], "tags": [ - "Metrics" - ], - "summary": "Fetch throughput time series", - "parameters": [ - { - "type": "integer", - "description": "Start unix timestamp [default: 1 hour ago]", - "name": "start", - "in": "query" - }, - { - "type": "integer", - "description": "End unix timestamp [default: unix time now]", - "name": "end", - "in": "query" - } + "OperatorsInfo" ], + "summary": "Fetch list of operators that have been deregistered for days. Days is a query parameter with a default value of 14 and max value of 30.", "responses": { "200": { "description": "OK", "schema": { - "type": "array", - "items": { - "$ref": "#/definitions/dataapi.Throughput" - } + "$ref": "#/definitions/dataapi.QueriedStateOperatorsResponse" } }, "400": { @@ -733,26 +528,38 @@ const docTemplate = `{ } } }, - "/metrics/timeseries/throughput": { + "/operators-info/operator-ejections": { "get": { "produces": [ "application/json" ], "tags": [ - "Metrics" + "OperatorsInfo" ], - "summary": "Fetch throughput time series", + "summary": "Fetch list of operator ejections over last N days.", "parameters": [ { "type": "integer", - "description": "Start unix timestamp [default: 1 hour ago]", - "name": "start", + "description": "Lookback in days [default: 1]", + "name": "days", + "in": "query" + }, + { + "type": "string", + "description": "Operator ID filter [default: all operators]", + "name": "operator_id", "in": "query" }, { "type": "integer", - "description": "End unix timestamp [default: unix time now]", - "name": "end", + "description": "Return first N ejections [default: 1000]", + "name": "first", + "in": "query" + }, + { + "type": "integer", + "description": "Skip first N ejections [default: 0]", + "name": "skip", "in": "query" } ], @@ -760,10 +567,7 @@ const docTemplate = `{ "200": { "description": "OK", "schema": { - "type": "array", - "items": { - "$ref": "#/definitions/dataapi.Throughput" - } + "$ref": "#/definitions/dataapi.QueriedOperatorEjectionsResponse" } }, "400": { @@ -787,20 +591,29 @@ const docTemplate = `{ } } }, - "/operators-info/deregistered-operators": { + "/operators-info/operators-stake": { "get": { "produces": [ "application/json" ], "tags": [ - "OperatorsInfo" + "OperatorsStake" + ], + "summary": "Operator stake distribution query", + "parameters": [ + { + "type": "string", + "description": "Operator ID", + "name": "operator_id", + "in": "query", + "required": true + } ], - "summary": "Fetch list of operators that have been deregistered for days. Days is a query parameter with a default value of 14 and max value of 30.", "responses": { "200": { "description": "OK", "schema": { - "$ref": "#/definitions/dataapi.QueriedStateOperatorsResponse" + "$ref": "#/definitions/dataapi.OperatorsStakeResponse" } }, "400": { @@ -824,7 +637,7 @@ const docTemplate = `{ } } }, - "/operators-info/operator-ejections": { + "/operators-info/port-check": { "get": { "produces": [ "application/json" @@ -832,116 +645,7 @@ const docTemplate = `{ "tags": [ "OperatorsInfo" ], - "summary": "Fetch list of operator ejections over last N days.", - "parameters": [ - { - "type": "integer", - "description": "Lookback in days [default: 1]", - "name": "days", - "in": "query" - }, - { - "type": "string", - "description": "Operator ID filter [default: all operators]", - "name": "operator_id", - "in": "query" - }, - { - "type": "integer", - "description": "Return first N ejections [default: 1000]", - "name": "first", - "in": "query" - }, - { - "type": "integer", - "description": "Skip first N ejections [default: 0]", - "name": "skip", - "in": "query" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/dataapi.QueriedOperatorEjectionsResponse" - } - }, - "400": { - "description": "error: Bad request", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "404": { - "description": "error: Not found", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "500": { - "description": "error: Server error", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - } - } - } - }, - "/operators-info/operators-stake": { - "get": { - "produces": [ - "application/json" - ], - "tags": [ - "OperatorsStake" - ], - "summary": "Operator stake distribution query", - "parameters": [ - { - "type": "string", - "description": "Operator ID", - "name": "operator_id", - "in": "query", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/dataapi.OperatorsStakeResponse" - } - }, - "400": { - "description": "error: Bad request", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "404": { - "description": "error: Not found", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "500": { - "description": "error: Server error", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - } - } - } - }, - "/operators-info/port-check": { - "get": { - "produces": [ - "application/json" - ], - "tags": [ - "OperatorsInfo" - ], - "summary": "Operator node reachability port check", + "summary": "Operator node reachability port check", "parameters": [ { "type": "string", @@ -1040,171 +744,12 @@ const docTemplate = `{ } } } - }, - "/operators/nodeinfo": { - "get": { - "produces": [ - "application/json" - ], - "tags": [ - "OperatorsNodeInfo" - ], - "summary": "Active operator semver", - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/dataapi.SemverReportResponse" - } - }, - "500": { - "description": "error: Server error", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - } - } - } - }, - "/operators/reachability": { - "get": { - "produces": [ - "application/json" - ], - "tags": [ - "OperatorsReachability" - ], - "summary": "Operator node reachability check", - "parameters": [ - { - "type": "string", - "description": "Operator ID in hex string [default: all operators if unspecified]", - "name": "operator_id", - "in": "query" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/dataapi.OperatorPortCheckResponse" - } - }, - "400": { - "description": "error: Bad request", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "404": { - "description": "error: Not found", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "500": { - "description": "error: Server error", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - } - } - } - }, - "/operators/stake": { - "get": { - "produces": [ - "application/json" - ], - "tags": [ - "OperatorsStake" - ], - "summary": "Operator stake distribution query", - "parameters": [ - { - "type": "string", - "description": "Operator ID in hex string [default: all operators if unspecified]", - "name": "operator_id", - "in": "query" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/dataapi.OperatorsStakeResponse" - } - }, - "400": { - "description": "error: Bad request", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "404": { - "description": "error: Not found", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "500": { - "description": "error: Server error", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - } - } - } } }, "definitions": { "big.Int": { "type": "object" }, - "core.G1Point": { - "type": "object", - "properties": { - "x": { - "type": "array", - "items": { - "type": "integer" - } - } - } - }, - "core.G2Point": { - "type": "object", - "properties": { - "x": { - "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" - } - } - }, - "core.PaymentMetadata": { - "type": "object", - "properties": { - "account_id": { - "description": "AccountID is the ETH account address for the payer", - "type": "string" - }, - "cumulative_payment": { - "description": "TODO: we are thinking the contract can use uint128 for cumulative payment,\nbut the definition on v2 uses uint64. Double check with team.", - "allOf": [ - { - "$ref": "#/definitions/big.Int" - } - ] - }, - "reservation_period": { - "description": "ReservationPeriod represents the range of time at which the dispersal is made", - "type": "integer" - }, - "salt": { - "description": "Allow same blob to be dispersed multiple times within the same reservation period", - "type": "integer" - } - } - }, "core.SecurityParam": { "type": "object", "properties": { @@ -1225,42 +770,6 @@ const docTemplate = `{ } } }, - "core.Signature": { - "type": "object", - "properties": { - "x": { - "type": "array", - "items": { - "type": "integer" - } - } - } - }, - "dataapi.BatchResponse": { - "type": "object", - "properties": { - "batch_header_hash": { - "type": "string" - }, - "blob_verification_infos": { - "type": "array", - "items": { - "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobVerificationInfo" - } - }, - "signed_batch": { - "$ref": "#/definitions/dataapi.SignedBatch" - } - } - }, - "dataapi.BlobCertificateResponse": { - "type": "object", - "properties": { - "blob_certificate": { - "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobCertificate" - } - } - }, "dataapi.BlobMetadataResponse": { "type": "object", "properties": { @@ -1314,31 +823,6 @@ const docTemplate = `{ } } }, - "dataapi.BlobResponse": { - "type": "object", - "properties": { - "blob_header": { - "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobHeader" - }, - "blob_size_bytes": { - "type": "integer" - }, - "dispersed_at": { - "type": "integer" - }, - "status": { - "type": "string" - } - } - }, - "dataapi.BlobVerificationInfoResponse": { - "type": "object", - "properties": { - "blob_verification_info": { - "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobVerificationInfo" - } - } - }, "dataapi.BlobsResponse": { "type": "object", "properties": { @@ -1606,17 +1090,6 @@ const docTemplate = `{ } } }, - "dataapi.SignedBatch": { - "type": "object", - "properties": { - "attestation": { - "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.Attestation" - }, - "batch_header": { - "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BatchHeader" - } - } - }, "dataapi.Throughput": { "type": "object", "properties": { @@ -1653,181 +1126,34 @@ const docTemplate = `{ "items": { "type": "integer" } - } - } - }, - "encoding.G2Commitment": { - "type": "object", - "properties": { - "x": { - "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" - } - } - }, - "encoding.LengthProof": { - "type": "object", - "properties": { - "x": { - "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" - } - } - }, - "github_com_Layr-Labs_eigenda_core_v2.Attestation": { - "type": "object", - "properties": { - "apkg2": { - "description": "APKG2 is the aggregate public key of all signers", - "allOf": [ - { - "$ref": "#/definitions/core.G2Point" - } - ] - }, - "attestedAt": { - "description": "AttestedAt is the time the attestation was made", - "type": "integer" - }, - "batchRoot": { - "description": "BatchRoot is the root of a Merkle tree whose leaves are the keys of the blobs in the batch", - "type": "array", - "items": { - "type": "integer" - } - }, - "nonSignerPubKeys": { - "description": "NonSignerPubKeys are the public keys of the operators that did not sign the blob", - "type": "array", - "items": { - "$ref": "#/definitions/core.G1Point" - } - }, - "quorumAPKs": { - "description": "QuorumAPKs is the aggregate public keys of all operators in each quorum", - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/core.G1Point" - } - }, - "quorumNumbers": { - "description": "QuorumNumbers contains the quorums relevant for the attestation", - "type": "array", - "items": { - "type": "integer" - } - }, - "quorumResults": { - "description": "QuorumResults contains the results of the quorum verification", - "type": "object", - "additionalProperties": { - "type": "integer" - } }, - "referenceBlockNumber": { - "description": "ReferenceBlockNumber is the block number at which all operator information (stakes, indexes, etc.) is taken from", - "type": "integer" - }, - "sigma": { - "description": "Sigma is the aggregate signature of all signers", - "allOf": [ - { - "$ref": "#/definitions/core.Signature" - } - ] - } - } - }, - "github_com_Layr-Labs_eigenda_core_v2.BatchHeader": { - "type": "object", - "properties": { - "batchRoot": { - "description": "BatchRoot is the root of a Merkle tree whose leaves are the keys of the blobs in the batch", + "y": { "type": "array", "items": { "type": "integer" } - }, - "referenceBlockNumber": { - "description": "ReferenceBlockNumber is the block number at which all operator information (stakes, indexes, etc.) is taken from", - "type": "integer" } } }, - "github_com_Layr-Labs_eigenda_core_v2.BlobCertificate": { - "type": "object", - "properties": { - "blobHeader": { - "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobHeader" - }, - "relayKeys": { - "description": "RelayKeys", - "type": "array", - "items": { - "type": "integer" - } - } - } - }, - "github_com_Layr-Labs_eigenda_core_v2.BlobHeader": { + "encoding.G2Commitment": { "type": "object", "properties": { - "blobCommitments": { - "$ref": "#/definitions/encoding.BlobCommitments" - }, - "blobVersion": { - "type": "integer" - }, - "paymentMetadata": { - "description": "PaymentMetadata contains the payment information for the blob", - "allOf": [ - { - "$ref": "#/definitions/core.PaymentMetadata" - } - ] - }, - "quorumNumbers": { - "description": "QuorumNumbers contains the quorums the blob is dispersed to", - "type": "array", - "items": { - "type": "integer" - } + "x": { + "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" }, - "signature": { - "description": "Signature is the signature of the blob header by the account ID", - "type": "array", - "items": { - "type": "integer" - } + "y": { + "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" } } }, - "github_com_Layr-Labs_eigenda_core_v2.BlobVerificationInfo": { + "encoding.LengthProof": { "type": "object", "properties": { - "BlobKey": { - "type": "array", - "items": { - "type": "integer" - } - }, - "batchRoot": { - "description": "BatchRoot is the root of a Merkle tree whose leaves are the keys of the blobs in the batch", - "type": "array", - "items": { - "type": "integer" - } - }, - "blobIndex": { - "type": "integer" - }, - "inclusionProof": { - "type": "array", - "items": { - "type": "integer" - } + "x": { + "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" }, - "referenceBlockNumber": { - "description": "ReferenceBlockNumber is the block number at which all operator information (stakes, indexes, etc.) is taken from", - "type": "integer" + "y": { + "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" } } }, @@ -1858,6 +1184,12 @@ const docTemplate = `{ "items": { "type": "integer" } + }, + "a1": { + "type": "array", + "items": { + "type": "integer" + } } } }, @@ -1887,20 +1219,20 @@ const docTemplate = `{ } }` -// SwaggerInfo holds exported Swagger Info so clients can modify it -var SwaggerInfo = &swag.Spec{ +// SwaggerInfoV1 holds exported Swagger Info so clients can modify it +var SwaggerInfoV1 = &swag.Spec{ Version: "1", Host: "", BasePath: "", Schemes: []string{"https", "http"}, - Title: "EigenDA Data Access API", + Title: "EigenDA Data Access API V1", Description: "This is the EigenDA Data Access API server.", - InfoInstanceName: "swagger", - SwaggerTemplate: docTemplate, + InfoInstanceName: "V1", + SwaggerTemplate: docTemplateV1, LeftDelim: "{{", RightDelim: "}}", } func init() { - swag.Register(SwaggerInfo.InstanceName(), SwaggerInfo) + swag.Register(SwaggerInfoV1.InstanceName(), SwaggerInfoV1) } diff --git a/disperser/dataapi/docs/swagger.json b/disperser/dataapi/docs/v1/V1_swagger.json similarity index 62% rename from disperser/dataapi/docs/swagger.json rename to disperser/dataapi/docs/v1/V1_swagger.json index 667c5d6a2e..052eeafeb8 100644 --- a/disperser/dataapi/docs/swagger.json +++ b/disperser/dataapi/docs/v1/V1_swagger.json @@ -6,202 +6,11 @@ "swagger": "2.0", "info": { "description": "This is the EigenDA Data Access API server.", - "title": "EigenDA Data Access API", + "title": "EigenDA Data Access API V1", "contact": {}, "version": "1" }, "paths": { - "/batches/{batch_header_hash}": { - "get": { - "produces": [ - "application/json" - ], - "tags": [ - "Batch" - ], - "summary": "Fetch batch by the batch header hash", - "parameters": [ - { - "type": "string", - "description": "Batch header hash in hex string", - "name": "batch_header_hash", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/dataapi.BatchResponse" - } - }, - "400": { - "description": "error: Bad request", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "404": { - "description": "error: Not found", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "500": { - "description": "error: Server error", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - } - } - } - }, - "/blobs/{blob_key}": { - "get": { - "produces": [ - "application/json" - ], - "tags": [ - "Blob" - ], - "summary": "Fetch blob metadata by blob key", - "parameters": [ - { - "type": "string", - "description": "Blob key in hex string", - "name": "blob_key", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/dataapi.BlobResponse" - } - }, - "400": { - "description": "error: Bad request", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "404": { - "description": "error: Not found", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "500": { - "description": "error: Server error", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - } - } - } - }, - "/blobs/{blob_key}/certificate": { - "get": { - "produces": [ - "application/json" - ], - "tags": [ - "Blob" - ], - "summary": "Fetch blob certificate by blob key", - "parameters": [ - { - "type": "string", - "description": "Blob key in hex string", - "name": "blob_key", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/dataapi.BlobCertificateResponse" - } - }, - "400": { - "description": "error: Bad request", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "404": { - "description": "error: Not found", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "500": { - "description": "error: Server error", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - } - } - } - }, - "/blobs/{blob_key}/verification-info": { - "get": { - "produces": [ - "application/json" - ], - "tags": [ - "Blob" - ], - "summary": "Fetch blob verification info by blob key and batch header hash", - "parameters": [ - { - "type": "string", - "description": "Blob key in hex string", - "name": "blob_key", - "in": "path", - "required": true - }, - { - "type": "string", - "description": "Batch header hash in hex string", - "name": "batch_header_hash", - "in": "path", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/dataapi.BlobVerificationInfoResponse" - } - }, - "400": { - "description": "error: Bad request", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "404": { - "description": "error: Not found", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "500": { - "description": "error: Server error", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - } - } - } - }, "/feed/batches/{batch_header_hash}/blobs": { "get": { "produces": [ @@ -624,7 +433,7 @@ } } }, - "/metrics/summary": { + "/metrics/throughput": { "get": { "produces": [ "application/json" @@ -632,7 +441,7 @@ "tags": [ "Metrics" ], - "summary": "Fetch metrics summary", + "summary": "Fetch throughput time series", "parameters": [ { "type": "integer", @@ -651,7 +460,10 @@ "200": { "description": "OK", "schema": { - "$ref": "#/definitions/dataapi.Metric" + "type": "array", + "items": { + "$ref": "#/definitions/dataapi.Throughput" + } } }, "400": { @@ -675,37 +487,20 @@ } } }, - "/metrics/throughput": { + "/operators-info/deregistered-operators": { "get": { "produces": [ "application/json" ], "tags": [ - "Metrics" - ], - "summary": "Fetch throughput time series", - "parameters": [ - { - "type": "integer", - "description": "Start unix timestamp [default: 1 hour ago]", - "name": "start", - "in": "query" - }, - { - "type": "integer", - "description": "End unix timestamp [default: unix time now]", - "name": "end", - "in": "query" - } + "OperatorsInfo" ], + "summary": "Fetch list of operators that have been deregistered for days. Days is a query parameter with a default value of 14 and max value of 30.", "responses": { "200": { "description": "OK", "schema": { - "type": "array", - "items": { - "$ref": "#/definitions/dataapi.Throughput" - } + "$ref": "#/definitions/dataapi.QueriedStateOperatorsResponse" } }, "400": { @@ -729,26 +524,38 @@ } } }, - "/metrics/timeseries/throughput": { + "/operators-info/operator-ejections": { "get": { "produces": [ "application/json" ], "tags": [ - "Metrics" + "OperatorsInfo" ], - "summary": "Fetch throughput time series", + "summary": "Fetch list of operator ejections over last N days.", "parameters": [ { "type": "integer", - "description": "Start unix timestamp [default: 1 hour ago]", - "name": "start", + "description": "Lookback in days [default: 1]", + "name": "days", + "in": "query" + }, + { + "type": "string", + "description": "Operator ID filter [default: all operators]", + "name": "operator_id", "in": "query" }, { "type": "integer", - "description": "End unix timestamp [default: unix time now]", - "name": "end", + "description": "Return first N ejections [default: 1000]", + "name": "first", + "in": "query" + }, + { + "type": "integer", + "description": "Skip first N ejections [default: 0]", + "name": "skip", "in": "query" } ], @@ -756,10 +563,7 @@ "200": { "description": "OK", "schema": { - "type": "array", - "items": { - "$ref": "#/definitions/dataapi.Throughput" - } + "$ref": "#/definitions/dataapi.QueriedOperatorEjectionsResponse" } }, "400": { @@ -783,20 +587,29 @@ } } }, - "/operators-info/deregistered-operators": { + "/operators-info/operators-stake": { "get": { "produces": [ "application/json" ], "tags": [ - "OperatorsInfo" + "OperatorsStake" + ], + "summary": "Operator stake distribution query", + "parameters": [ + { + "type": "string", + "description": "Operator ID", + "name": "operator_id", + "in": "query", + "required": true + } ], - "summary": "Fetch list of operators that have been deregistered for days. Days is a query parameter with a default value of 14 and max value of 30.", "responses": { "200": { "description": "OK", "schema": { - "$ref": "#/definitions/dataapi.QueriedStateOperatorsResponse" + "$ref": "#/definitions/dataapi.OperatorsStakeResponse" } }, "400": { @@ -820,7 +633,7 @@ } } }, - "/operators-info/operator-ejections": { + "/operators-info/port-check": { "get": { "produces": [ "application/json" @@ -828,116 +641,7 @@ "tags": [ "OperatorsInfo" ], - "summary": "Fetch list of operator ejections over last N days.", - "parameters": [ - { - "type": "integer", - "description": "Lookback in days [default: 1]", - "name": "days", - "in": "query" - }, - { - "type": "string", - "description": "Operator ID filter [default: all operators]", - "name": "operator_id", - "in": "query" - }, - { - "type": "integer", - "description": "Return first N ejections [default: 1000]", - "name": "first", - "in": "query" - }, - { - "type": "integer", - "description": "Skip first N ejections [default: 0]", - "name": "skip", - "in": "query" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/dataapi.QueriedOperatorEjectionsResponse" - } - }, - "400": { - "description": "error: Bad request", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "404": { - "description": "error: Not found", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "500": { - "description": "error: Server error", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - } - } - } - }, - "/operators-info/operators-stake": { - "get": { - "produces": [ - "application/json" - ], - "tags": [ - "OperatorsStake" - ], - "summary": "Operator stake distribution query", - "parameters": [ - { - "type": "string", - "description": "Operator ID", - "name": "operator_id", - "in": "query", - "required": true - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/dataapi.OperatorsStakeResponse" - } - }, - "400": { - "description": "error: Bad request", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "404": { - "description": "error: Not found", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "500": { - "description": "error: Server error", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - } - } - } - }, - "/operators-info/port-check": { - "get": { - "produces": [ - "application/json" - ], - "tags": [ - "OperatorsInfo" - ], - "summary": "Operator node reachability port check", + "summary": "Operator node reachability port check", "parameters": [ { "type": "string", @@ -1036,171 +740,12 @@ } } } - }, - "/operators/nodeinfo": { - "get": { - "produces": [ - "application/json" - ], - "tags": [ - "OperatorsNodeInfo" - ], - "summary": "Active operator semver", - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/dataapi.SemverReportResponse" - } - }, - "500": { - "description": "error: Server error", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - } - } - } - }, - "/operators/reachability": { - "get": { - "produces": [ - "application/json" - ], - "tags": [ - "OperatorsReachability" - ], - "summary": "Operator node reachability check", - "parameters": [ - { - "type": "string", - "description": "Operator ID in hex string [default: all operators if unspecified]", - "name": "operator_id", - "in": "query" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/dataapi.OperatorPortCheckResponse" - } - }, - "400": { - "description": "error: Bad request", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "404": { - "description": "error: Not found", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "500": { - "description": "error: Server error", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - } - } - } - }, - "/operators/stake": { - "get": { - "produces": [ - "application/json" - ], - "tags": [ - "OperatorsStake" - ], - "summary": "Operator stake distribution query", - "parameters": [ - { - "type": "string", - "description": "Operator ID in hex string [default: all operators if unspecified]", - "name": "operator_id", - "in": "query" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/dataapi.OperatorsStakeResponse" - } - }, - "400": { - "description": "error: Bad request", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "404": { - "description": "error: Not found", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - }, - "500": { - "description": "error: Server error", - "schema": { - "$ref": "#/definitions/dataapi.ErrorResponse" - } - } - } - } } }, "definitions": { "big.Int": { "type": "object" }, - "core.G1Point": { - "type": "object", - "properties": { - "x": { - "type": "array", - "items": { - "type": "integer" - } - } - } - }, - "core.G2Point": { - "type": "object", - "properties": { - "x": { - "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" - } - } - }, - "core.PaymentMetadata": { - "type": "object", - "properties": { - "account_id": { - "description": "AccountID is the ETH account address for the payer", - "type": "string" - }, - "cumulative_payment": { - "description": "TODO: we are thinking the contract can use uint128 for cumulative payment,\nbut the definition on v2 uses uint64. Double check with team.", - "allOf": [ - { - "$ref": "#/definitions/big.Int" - } - ] - }, - "reservation_period": { - "description": "ReservationPeriod represents the range of time at which the dispersal is made", - "type": "integer" - }, - "salt": { - "description": "Allow same blob to be dispersed multiple times within the same reservation period", - "type": "integer" - } - } - }, "core.SecurityParam": { "type": "object", "properties": { @@ -1221,42 +766,6 @@ } } }, - "core.Signature": { - "type": "object", - "properties": { - "x": { - "type": "array", - "items": { - "type": "integer" - } - } - } - }, - "dataapi.BatchResponse": { - "type": "object", - "properties": { - "batch_header_hash": { - "type": "string" - }, - "blob_verification_infos": { - "type": "array", - "items": { - "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobVerificationInfo" - } - }, - "signed_batch": { - "$ref": "#/definitions/dataapi.SignedBatch" - } - } - }, - "dataapi.BlobCertificateResponse": { - "type": "object", - "properties": { - "blob_certificate": { - "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobCertificate" - } - } - }, "dataapi.BlobMetadataResponse": { "type": "object", "properties": { @@ -1310,31 +819,6 @@ } } }, - "dataapi.BlobResponse": { - "type": "object", - "properties": { - "blob_header": { - "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobHeader" - }, - "blob_size_bytes": { - "type": "integer" - }, - "dispersed_at": { - "type": "integer" - }, - "status": { - "type": "string" - } - } - }, - "dataapi.BlobVerificationInfoResponse": { - "type": "object", - "properties": { - "blob_verification_info": { - "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobVerificationInfo" - } - } - }, "dataapi.BlobsResponse": { "type": "object", "properties": { @@ -1602,17 +1086,6 @@ } } }, - "dataapi.SignedBatch": { - "type": "object", - "properties": { - "attestation": { - "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.Attestation" - }, - "batch_header": { - "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BatchHeader" - } - } - }, "dataapi.Throughput": { "type": "object", "properties": { @@ -1649,181 +1122,34 @@ "items": { "type": "integer" } - } - } - }, - "encoding.G2Commitment": { - "type": "object", - "properties": { - "x": { - "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" - } - } - }, - "encoding.LengthProof": { - "type": "object", - "properties": { - "x": { - "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" - } - } - }, - "github_com_Layr-Labs_eigenda_core_v2.Attestation": { - "type": "object", - "properties": { - "apkg2": { - "description": "APKG2 is the aggregate public key of all signers", - "allOf": [ - { - "$ref": "#/definitions/core.G2Point" - } - ] - }, - "attestedAt": { - "description": "AttestedAt is the time the attestation was made", - "type": "integer" - }, - "batchRoot": { - "description": "BatchRoot is the root of a Merkle tree whose leaves are the keys of the blobs in the batch", - "type": "array", - "items": { - "type": "integer" - } - }, - "nonSignerPubKeys": { - "description": "NonSignerPubKeys are the public keys of the operators that did not sign the blob", - "type": "array", - "items": { - "$ref": "#/definitions/core.G1Point" - } - }, - "quorumAPKs": { - "description": "QuorumAPKs is the aggregate public keys of all operators in each quorum", - "type": "object", - "additionalProperties": { - "$ref": "#/definitions/core.G1Point" - } - }, - "quorumNumbers": { - "description": "QuorumNumbers contains the quorums relevant for the attestation", - "type": "array", - "items": { - "type": "integer" - } - }, - "quorumResults": { - "description": "QuorumResults contains the results of the quorum verification", - "type": "object", - "additionalProperties": { - "type": "integer" - } }, - "referenceBlockNumber": { - "description": "ReferenceBlockNumber is the block number at which all operator information (stakes, indexes, etc.) is taken from", - "type": "integer" - }, - "sigma": { - "description": "Sigma is the aggregate signature of all signers", - "allOf": [ - { - "$ref": "#/definitions/core.Signature" - } - ] - } - } - }, - "github_com_Layr-Labs_eigenda_core_v2.BatchHeader": { - "type": "object", - "properties": { - "batchRoot": { - "description": "BatchRoot is the root of a Merkle tree whose leaves are the keys of the blobs in the batch", + "y": { "type": "array", "items": { "type": "integer" } - }, - "referenceBlockNumber": { - "description": "ReferenceBlockNumber is the block number at which all operator information (stakes, indexes, etc.) is taken from", - "type": "integer" } } }, - "github_com_Layr-Labs_eigenda_core_v2.BlobCertificate": { - "type": "object", - "properties": { - "blobHeader": { - "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobHeader" - }, - "relayKeys": { - "description": "RelayKeys", - "type": "array", - "items": { - "type": "integer" - } - } - } - }, - "github_com_Layr-Labs_eigenda_core_v2.BlobHeader": { + "encoding.G2Commitment": { "type": "object", "properties": { - "blobCommitments": { - "$ref": "#/definitions/encoding.BlobCommitments" - }, - "blobVersion": { - "type": "integer" - }, - "paymentMetadata": { - "description": "PaymentMetadata contains the payment information for the blob", - "allOf": [ - { - "$ref": "#/definitions/core.PaymentMetadata" - } - ] - }, - "quorumNumbers": { - "description": "QuorumNumbers contains the quorums the blob is dispersed to", - "type": "array", - "items": { - "type": "integer" - } + "x": { + "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" }, - "signature": { - "description": "Signature is the signature of the blob header by the account ID", - "type": "array", - "items": { - "type": "integer" - } + "y": { + "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" } } }, - "github_com_Layr-Labs_eigenda_core_v2.BlobVerificationInfo": { + "encoding.LengthProof": { "type": "object", "properties": { - "BlobKey": { - "type": "array", - "items": { - "type": "integer" - } - }, - "batchRoot": { - "description": "BatchRoot is the root of a Merkle tree whose leaves are the keys of the blobs in the batch", - "type": "array", - "items": { - "type": "integer" - } - }, - "blobIndex": { - "type": "integer" - }, - "inclusionProof": { - "type": "array", - "items": { - "type": "integer" - } + "x": { + "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" }, - "referenceBlockNumber": { - "description": "ReferenceBlockNumber is the block number at which all operator information (stakes, indexes, etc.) is taken from", - "type": "integer" + "y": { + "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" } } }, @@ -1854,6 +1180,12 @@ "items": { "type": "integer" } + }, + "a1": { + "type": "array", + "items": { + "type": "integer" + } } } }, diff --git a/disperser/dataapi/docs/swagger.yaml b/disperser/dataapi/docs/v1/V1_swagger.yaml similarity index 61% rename from disperser/dataapi/docs/swagger.yaml rename to disperser/dataapi/docs/v1/V1_swagger.yaml index 019c00ef4a..ea9a47bd3a 100644 --- a/disperser/dataapi/docs/swagger.yaml +++ b/disperser/dataapi/docs/v1/V1_swagger.yaml @@ -1,38 +1,6 @@ definitions: big.Int: type: object - core.G1Point: - properties: - x: - items: - type: integer - type: array - type: object - core.G2Point: - properties: - x: - $ref: '#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2' - type: object - core.PaymentMetadata: - properties: - account_id: - description: AccountID is the ETH account address for the payer - type: string - cumulative_payment: - allOf: - - $ref: '#/definitions/big.Int' - description: |- - TODO: we are thinking the contract can use uint128 for cumulative payment, - but the definition on v2 uses uint64. Double check with team. - reservation_period: - description: ReservationPeriod represents the range of time at which the dispersal - is made - type: integer - salt: - description: Allow same blob to be dispersed multiple times within the same - reservation period - type: integer - type: object core.SecurityParam: properties: adversaryThreshold: @@ -54,29 +22,6 @@ definitions: data was posted to the DA node. type: integer type: object - core.Signature: - properties: - x: - items: - type: integer - type: array - type: object - dataapi.BatchResponse: - properties: - batch_header_hash: - type: string - blob_verification_infos: - items: - $ref: '#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobVerificationInfo' - type: array - signed_batch: - $ref: '#/definitions/dataapi.SignedBatch' - type: object - dataapi.BlobCertificateResponse: - properties: - blob_certificate: - $ref: '#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobCertificate' - type: object dataapi.BlobMetadataResponse: properties: batch_header_hash: @@ -112,22 +57,6 @@ definitions: signatory_record_hash: type: string type: object - dataapi.BlobResponse: - properties: - blob_header: - $ref: '#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobHeader' - blob_size_bytes: - type: integer - dispersed_at: - type: integer - status: - type: string - type: object - dataapi.BlobVerificationInfoResponse: - properties: - blob_verification_info: - $ref: '#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobVerificationInfo' - type: object dataapi.BlobsResponse: properties: data: @@ -300,13 +229,6 @@ definitions: meta: $ref: '#/definitions/dataapi.Meta' type: object - dataapi.SignedBatch: - properties: - attestation: - $ref: '#/definitions/github_com_Layr-Labs_eigenda_core_v2.Attestation' - batch_header: - $ref: '#/definitions/github_com_Layr-Labs_eigenda_core_v2.BatchHeader' - type: object dataapi.Throughput: properties: throughput: @@ -331,130 +253,24 @@ definitions: items: type: integer type: array + "y": + items: + type: integer + type: array type: object encoding.G2Commitment: properties: x: $ref: '#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2' + "y": + $ref: '#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2' type: object encoding.LengthProof: properties: x: $ref: '#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2' - type: object - github_com_Layr-Labs_eigenda_core_v2.Attestation: - properties: - apkg2: - allOf: - - $ref: '#/definitions/core.G2Point' - description: APKG2 is the aggregate public key of all signers - attestedAt: - description: AttestedAt is the time the attestation was made - type: integer - batchRoot: - description: BatchRoot is the root of a Merkle tree whose leaves are the keys - of the blobs in the batch - items: - type: integer - type: array - nonSignerPubKeys: - description: NonSignerPubKeys are the public keys of the operators that did - not sign the blob - items: - $ref: '#/definitions/core.G1Point' - type: array - quorumAPKs: - additionalProperties: - $ref: '#/definitions/core.G1Point' - description: QuorumAPKs is the aggregate public keys of all operators in each - quorum - type: object - quorumNumbers: - description: QuorumNumbers contains the quorums relevant for the attestation - items: - type: integer - type: array - quorumResults: - additionalProperties: - type: integer - description: QuorumResults contains the results of the quorum verification - type: object - referenceBlockNumber: - description: ReferenceBlockNumber is the block number at which all operator - information (stakes, indexes, etc.) is taken from - type: integer - sigma: - allOf: - - $ref: '#/definitions/core.Signature' - description: Sigma is the aggregate signature of all signers - type: object - github_com_Layr-Labs_eigenda_core_v2.BatchHeader: - properties: - batchRoot: - description: BatchRoot is the root of a Merkle tree whose leaves are the keys - of the blobs in the batch - items: - type: integer - type: array - referenceBlockNumber: - description: ReferenceBlockNumber is the block number at which all operator - information (stakes, indexes, etc.) is taken from - type: integer - type: object - github_com_Layr-Labs_eigenda_core_v2.BlobCertificate: - properties: - blobHeader: - $ref: '#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobHeader' - relayKeys: - description: RelayKeys - items: - type: integer - type: array - type: object - github_com_Layr-Labs_eigenda_core_v2.BlobHeader: - properties: - blobCommitments: - $ref: '#/definitions/encoding.BlobCommitments' - blobVersion: - type: integer - paymentMetadata: - allOf: - - $ref: '#/definitions/core.PaymentMetadata' - description: PaymentMetadata contains the payment information for the blob - quorumNumbers: - description: QuorumNumbers contains the quorums the blob is dispersed to - items: - type: integer - type: array - signature: - description: Signature is the signature of the blob header by the account - ID - items: - type: integer - type: array - type: object - github_com_Layr-Labs_eigenda_core_v2.BlobVerificationInfo: - properties: - BlobKey: - items: - type: integer - type: array - batchRoot: - description: BatchRoot is the root of a Merkle tree whose leaves are the keys - of the blobs in the batch - items: - type: integer - type: array - blobIndex: - type: integer - inclusionProof: - items: - type: integer - type: array - referenceBlockNumber: - description: ReferenceBlockNumber is the block number at which all operator - information (stakes, indexes, etc.) is taken from - type: integer + "y": + $ref: '#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2' type: object github_com_Layr-Labs_eigenda_disperser.BlobStatus: enum: @@ -478,6 +294,10 @@ definitions: items: type: integer type: array + a1: + items: + type: integer + type: array type: object semver.SemverMetrics: properties: @@ -497,134 +317,9 @@ definitions: info: contact: {} description: This is the EigenDA Data Access API server. - title: EigenDA Data Access API + title: EigenDA Data Access API V1 version: "1" paths: - /batches/{batch_header_hash}: - get: - parameters: - - description: Batch header hash in hex string - in: path - name: batch_header_hash - required: true - type: string - produces: - - application/json - responses: - "200": - description: OK - schema: - $ref: '#/definitions/dataapi.BatchResponse' - "400": - description: 'error: Bad request' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - "404": - description: 'error: Not found' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - "500": - description: 'error: Server error' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - summary: Fetch batch by the batch header hash - tags: - - Batch - /blobs/{blob_key}: - get: - parameters: - - description: Blob key in hex string - in: path - name: blob_key - required: true - type: string - produces: - - application/json - responses: - "200": - description: OK - schema: - $ref: '#/definitions/dataapi.BlobResponse' - "400": - description: 'error: Bad request' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - "404": - description: 'error: Not found' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - "500": - description: 'error: Server error' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - summary: Fetch blob metadata by blob key - tags: - - Blob - /blobs/{blob_key}/certificate: - get: - parameters: - - description: Blob key in hex string - in: path - name: blob_key - required: true - type: string - produces: - - application/json - responses: - "200": - description: OK - schema: - $ref: '#/definitions/dataapi.BlobCertificateResponse' - "400": - description: 'error: Bad request' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - "404": - description: 'error: Not found' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - "500": - description: 'error: Server error' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - summary: Fetch blob certificate by blob key - tags: - - Blob - /blobs/{blob_key}/verification-info: - get: - parameters: - - description: Blob key in hex string - in: path - name: blob_key - required: true - type: string - - description: Batch header hash in hex string - in: path - name: batch_header_hash - required: true - type: string - produces: - - application/json - responses: - "200": - description: OK - schema: - $ref: '#/definitions/dataapi.BlobVerificationInfoResponse' - "400": - description: 'error: Bad request' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - "404": - description: 'error: Not found' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - "500": - description: 'error: Server error' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - summary: Fetch blob verification info by blob key and batch header hash - tags: - - Blob /feed/batches/{batch_header_hash}/blobs: get: parameters: @@ -901,39 +596,6 @@ paths: summary: Fetch operators non signing percentage tags: - Metrics - /metrics/summary: - get: - parameters: - - description: 'Start unix timestamp [default: 1 hour ago]' - in: query - name: start - type: integer - - description: 'End unix timestamp [default: unix time now]' - in: query - name: end - type: integer - produces: - - application/json - responses: - "200": - description: OK - schema: - $ref: '#/definitions/dataapi.Metric' - "400": - description: 'error: Bad request' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - "404": - description: 'error: Not found' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - "500": - description: 'error: Server error' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - summary: Fetch metrics summary - tags: - - Metrics /metrics/throughput: get: parameters: @@ -969,41 +631,6 @@ paths: summary: Fetch throughput time series tags: - Metrics - /metrics/timeseries/throughput: - get: - parameters: - - description: 'Start unix timestamp [default: 1 hour ago]' - in: query - name: start - type: integer - - description: 'End unix timestamp [default: unix time now]' - in: query - name: end - type: integer - produces: - - application/json - responses: - "200": - description: OK - schema: - items: - $ref: '#/definitions/dataapi.Throughput' - type: array - "400": - description: 'error: Bad request' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - "404": - description: 'error: Not found' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - "500": - description: 'error: Server error' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - summary: Fetch throughput time series - tags: - - Metrics /operators-info/deregistered-operators: get: produces: @@ -1171,80 +798,6 @@ paths: summary: Active operator semver scan tags: - OperatorsInfo - /operators/nodeinfo: - get: - produces: - - application/json - responses: - "200": - description: OK - schema: - $ref: '#/definitions/dataapi.SemverReportResponse' - "500": - description: 'error: Server error' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - summary: Active operator semver - tags: - - OperatorsNodeInfo - /operators/reachability: - get: - parameters: - - description: 'Operator ID in hex string [default: all operators if unspecified]' - in: query - name: operator_id - type: string - produces: - - application/json - responses: - "200": - description: OK - schema: - $ref: '#/definitions/dataapi.OperatorPortCheckResponse' - "400": - description: 'error: Bad request' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - "404": - description: 'error: Not found' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - "500": - description: 'error: Server error' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - summary: Operator node reachability check - tags: - - OperatorsReachability - /operators/stake: - get: - parameters: - - description: 'Operator ID in hex string [default: all operators if unspecified]' - in: query - name: operator_id - type: string - produces: - - application/json - responses: - "200": - description: OK - schema: - $ref: '#/definitions/dataapi.OperatorsStakeResponse' - "400": - description: 'error: Bad request' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - "404": - description: 'error: Not found' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - "500": - description: 'error: Server error' - schema: - $ref: '#/definitions/dataapi.ErrorResponse' - summary: Operator stake distribution query - tags: - - OperatorsStake schemes: - https - http diff --git a/disperser/dataapi/docs/v2/V2_docs.go b/disperser/dataapi/docs/v2/V2_docs.go new file mode 100644 index 0000000000..c4a2a5fb8b --- /dev/null +++ b/disperser/dataapi/docs/v2/V2_docs.go @@ -0,0 +1,945 @@ +// Package v2 Code generated by swaggo/swag. DO NOT EDIT +package v2 + +import "github.com/swaggo/swag" + +const docTemplateV2 = `{ + "schemes": {{ marshal .Schemes }}, + "swagger": "2.0", + "info": { + "description": "{{escape .Description}}", + "title": "{{.Title}}", + "contact": {}, + "version": "{{.Version}}" + }, + "host": "{{.Host}}", + "basePath": "{{.BasePath}}", + "paths": { + "/batches/{batch_header_hash}": { + "get": { + "produces": [ + "application/json" + ], + "tags": [ + "Batch" + ], + "summary": "Fetch batch by the batch header hash", + "parameters": [ + { + "type": "string", + "description": "Batch header hash in hex string", + "name": "batch_header_hash", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v2.BatchResponse" + } + }, + "400": { + "description": "error: Bad request", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "404": { + "description": "error: Not found", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "500": { + "description": "error: Server error", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + } + } + } + }, + "/blobs/{blob_key}": { + "get": { + "produces": [ + "application/json" + ], + "tags": [ + "Blob" + ], + "summary": "Fetch blob metadata by blob key", + "parameters": [ + { + "type": "string", + "description": "Blob key in hex string", + "name": "blob_key", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v2.BlobResponse" + } + }, + "400": { + "description": "error: Bad request", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "404": { + "description": "error: Not found", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "500": { + "description": "error: Server error", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + } + } + } + }, + "/blobs/{blob_key}/certificate": { + "get": { + "produces": [ + "application/json" + ], + "tags": [ + "Blob" + ], + "summary": "Fetch blob certificate by blob key v2", + "parameters": [ + { + "type": "string", + "description": "Blob key in hex string", + "name": "blob_key", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v2.BlobCertificateResponse" + } + }, + "400": { + "description": "error: Bad request", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "404": { + "description": "error: Not found", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "500": { + "description": "error: Server error", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + } + } + } + }, + "/blobs/{blob_key}/verification-info": { + "get": { + "produces": [ + "application/json" + ], + "tags": [ + "Blob" + ], + "summary": "Fetch blob verification info by blob key and batch header hash", + "parameters": [ + { + "type": "string", + "description": "Blob key in hex string", + "name": "blob_key", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Batch header hash in hex string", + "name": "batch_header_hash", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v2.BlobVerificationInfoResponse" + } + }, + "400": { + "description": "error: Bad request", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "404": { + "description": "error: Not found", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "500": { + "description": "error: Server error", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + } + } + } + }, + "/metrics/summary": { + "get": { + "produces": [ + "application/json" + ], + "tags": [ + "Metrics" + ], + "summary": "Fetch metrics summary", + "parameters": [ + { + "type": "integer", + "description": "Start unix timestamp [default: 1 hour ago]", + "name": "start", + "in": "query" + }, + { + "type": "integer", + "description": "End unix timestamp [default: unix time now]", + "name": "end", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v2.Metric" + } + }, + "400": { + "description": "error: Bad request", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "404": { + "description": "error: Not found", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "500": { + "description": "error: Server error", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + } + } + } + }, + "/metrics/timeseries/throughput": { + "get": { + "produces": [ + "application/json" + ], + "tags": [ + "Metrics" + ], + "summary": "Fetch throughput time series", + "parameters": [ + { + "type": "integer", + "description": "Start unix timestamp [default: 1 hour ago]", + "name": "start", + "in": "query" + }, + { + "type": "integer", + "description": "End unix timestamp [default: unix time now]", + "name": "end", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/v2.Throughput" + } + } + }, + "400": { + "description": "error: Bad request", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "404": { + "description": "error: Not found", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "500": { + "description": "error: Server error", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + } + } + } + }, + "/operators/nodeinfo": { + "get": { + "produces": [ + "application/json" + ], + "tags": [ + "Operators" + ], + "summary": "Active operator semver", + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v2.SemverReportResponse" + } + }, + "500": { + "description": "error: Server error", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + } + } + } + }, + "/operators/reachability": { + "get": { + "produces": [ + "application/json" + ], + "tags": [ + "Operators" + ], + "summary": "Operator node reachability check", + "parameters": [ + { + "type": "string", + "description": "Operator ID in hex string [default: all operators if unspecified]", + "name": "operator_id", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v2.OperatorPortCheckResponse" + } + }, + "400": { + "description": "error: Bad request", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "404": { + "description": "error: Not found", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "500": { + "description": "error: Server error", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + } + } + } + }, + "/operators/stake": { + "get": { + "produces": [ + "application/json" + ], + "tags": [ + "Operators" + ], + "summary": "Operator stake distribution query", + "parameters": [ + { + "type": "string", + "description": "Operator ID in hex string [default: all operators if unspecified]", + "name": "operator_id", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v2.OperatorsStakeResponse" + } + }, + "400": { + "description": "error: Bad request", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "404": { + "description": "error: Not found", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "500": { + "description": "error: Server error", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + } + } + } + } + }, + "definitions": { + "big.Int": { + "type": "object" + }, + "core.G1Point": { + "type": "object", + "properties": { + "x": { + "type": "array", + "items": { + "type": "integer" + } + }, + "y": { + "type": "array", + "items": { + "type": "integer" + } + } + } + }, + "core.G2Point": { + "type": "object", + "properties": { + "x": { + "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" + }, + "y": { + "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" + } + } + }, + "core.PaymentMetadata": { + "type": "object", + "properties": { + "account_id": { + "description": "AccountID is the ETH account address for the payer", + "type": "string" + }, + "cumulative_payment": { + "description": "TODO: we are thinking the contract can use uint128 for cumulative payment,\nbut the definition on v2 uses uint64. Double check with team.", + "allOf": [ + { + "$ref": "#/definitions/big.Int" + } + ] + }, + "reservation_period": { + "description": "ReservationPeriod represents the range of time at which the dispersal is made", + "type": "integer" + }, + "salt": { + "description": "Allow same blob to be dispersed multiple times within the same reservation period", + "type": "integer" + } + } + }, + "core.Signature": { + "type": "object", + "properties": { + "x": { + "type": "array", + "items": { + "type": "integer" + } + }, + "y": { + "type": "array", + "items": { + "type": "integer" + } + } + } + }, + "encoding.BlobCommitments": { + "type": "object", + "properties": { + "commitment": { + "$ref": "#/definitions/encoding.G1Commitment" + }, + "length": { + "type": "integer" + }, + "length_commitment": { + "$ref": "#/definitions/encoding.G2Commitment" + }, + "length_proof": { + "$ref": "#/definitions/encoding.LengthProof" + } + } + }, + "encoding.G1Commitment": { + "type": "object", + "properties": { + "x": { + "type": "array", + "items": { + "type": "integer" + } + }, + "y": { + "type": "array", + "items": { + "type": "integer" + } + } + } + }, + "encoding.G2Commitment": { + "type": "object", + "properties": { + "x": { + "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" + }, + "y": { + "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" + } + } + }, + "encoding.LengthProof": { + "type": "object", + "properties": { + "x": { + "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" + }, + "y": { + "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" + } + } + }, + "github_com_Layr-Labs_eigenda_core_v2.Attestation": { + "type": "object", + "properties": { + "apkg2": { + "description": "APKG2 is the aggregate public key of all signers", + "allOf": [ + { + "$ref": "#/definitions/core.G2Point" + } + ] + }, + "attestedAt": { + "description": "AttestedAt is the time the attestation was made", + "type": "integer" + }, + "batchRoot": { + "description": "BatchRoot is the root of a Merkle tree whose leaves are the keys of the blobs in the batch", + "type": "array", + "items": { + "type": "integer" + } + }, + "nonSignerPubKeys": { + "description": "NonSignerPubKeys are the public keys of the operators that did not sign the blob", + "type": "array", + "items": { + "$ref": "#/definitions/core.G1Point" + } + }, + "quorumAPKs": { + "description": "QuorumAPKs is the aggregate public keys of all operators in each quorum", + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/core.G1Point" + } + }, + "quorumNumbers": { + "description": "QuorumNumbers contains the quorums relevant for the attestation", + "type": "array", + "items": { + "type": "integer" + } + }, + "quorumResults": { + "description": "QuorumResults contains the results of the quorum verification", + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "referenceBlockNumber": { + "description": "ReferenceBlockNumber is the block number at which all operator information (stakes, indexes, etc.) is taken from", + "type": "integer" + }, + "sigma": { + "description": "Sigma is the aggregate signature of all signers", + "allOf": [ + { + "$ref": "#/definitions/core.Signature" + } + ] + } + } + }, + "github_com_Layr-Labs_eigenda_core_v2.BatchHeader": { + "type": "object", + "properties": { + "batchRoot": { + "description": "BatchRoot is the root of a Merkle tree whose leaves are the keys of the blobs in the batch", + "type": "array", + "items": { + "type": "integer" + } + }, + "referenceBlockNumber": { + "description": "ReferenceBlockNumber is the block number at which all operator information (stakes, indexes, etc.) is taken from", + "type": "integer" + } + } + }, + "github_com_Layr-Labs_eigenda_core_v2.BlobCertificate": { + "type": "object", + "properties": { + "blobHeader": { + "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobHeader" + }, + "relayKeys": { + "description": "RelayKeys", + "type": "array", + "items": { + "type": "integer" + } + } + } + }, + "github_com_Layr-Labs_eigenda_core_v2.BlobHeader": { + "type": "object", + "properties": { + "blobCommitments": { + "$ref": "#/definitions/encoding.BlobCommitments" + }, + "blobVersion": { + "type": "integer" + }, + "paymentMetadata": { + "description": "PaymentMetadata contains the payment information for the blob", + "allOf": [ + { + "$ref": "#/definitions/core.PaymentMetadata" + } + ] + }, + "quorumNumbers": { + "description": "QuorumNumbers contains the quorums the blob is dispersed to", + "type": "array", + "items": { + "type": "integer" + } + }, + "signature": { + "description": "Signature is the signature of the blob header by the account ID", + "type": "array", + "items": { + "type": "integer" + } + } + } + }, + "github_com_Layr-Labs_eigenda_core_v2.BlobVerificationInfo": { + "type": "object", + "properties": { + "BlobKey": { + "type": "array", + "items": { + "type": "integer" + } + }, + "batchRoot": { + "description": "BatchRoot is the root of a Merkle tree whose leaves are the keys of the blobs in the batch", + "type": "array", + "items": { + "type": "integer" + } + }, + "blobIndex": { + "type": "integer" + }, + "inclusionProof": { + "type": "array", + "items": { + "type": "integer" + } + }, + "referenceBlockNumber": { + "description": "ReferenceBlockNumber is the block number at which all operator information (stakes, indexes, etc.) is taken from", + "type": "integer" + } + } + }, + "github_com_Layr-Labs_eigenda_disperser_dataapi_v2.SignedBatch": { + "type": "object", + "properties": { + "attestation": { + "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.Attestation" + }, + "batch_header": { + "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BatchHeader" + } + } + }, + "github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2": { + "type": "object", + "properties": { + "a0": { + "type": "array", + "items": { + "type": "integer" + } + }, + "a1": { + "type": "array", + "items": { + "type": "integer" + } + } + } + }, + "semver.SemverMetrics": { + "type": "object", + "properties": { + "count": { + "type": "integer" + }, + "operators": { + "type": "array", + "items": { + "type": "string" + } + }, + "semver": { + "type": "string" + }, + "stake_percentage": { + "type": "object", + "additionalProperties": { + "type": "number" + } + } + } + }, + "v2.BatchResponse": { + "type": "object", + "properties": { + "batch_header_hash": { + "type": "string" + }, + "blob_verification_infos": { + "type": "array", + "items": { + "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobVerificationInfo" + } + }, + "signed_batch": { + "$ref": "#/definitions/github_com_Layr-Labs_eigenda_disperser_dataapi_v2.SignedBatch" + } + } + }, + "v2.BlobCertificateResponse": { + "type": "object", + "properties": { + "blob_certificate": { + "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobCertificate" + } + } + }, + "v2.BlobResponse": { + "type": "object", + "properties": { + "blob_header": { + "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobHeader" + }, + "blob_size_bytes": { + "type": "integer" + }, + "dispersed_at": { + "type": "integer" + }, + "status": { + "type": "string" + } + } + }, + "v2.BlobVerificationInfoResponse": { + "type": "object", + "properties": { + "blob_verification_info": { + "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobVerificationInfo" + } + } + }, + "v2.ErrorResponse": { + "type": "object", + "properties": { + "error": { + "type": "string" + } + } + }, + "v2.Metric": { + "type": "object", + "properties": { + "cost_in_gas": { + "type": "number" + }, + "throughput": { + "type": "number" + }, + "total_stake": { + "description": "deprecated: use TotalStakePerQuorum instead. Remove when the frontend is updated.", + "allOf": [ + { + "$ref": "#/definitions/big.Int" + } + ] + }, + "total_stake_per_quorum": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/big.Int" + } + } + } + }, + "v2.OperatorPortCheckResponse": { + "type": "object", + "properties": { + "dispersal_online": { + "type": "boolean" + }, + "dispersal_socket": { + "type": "string" + }, + "operator_id": { + "type": "string" + }, + "retrieval_online": { + "type": "boolean" + }, + "retrieval_socket": { + "type": "string" + } + } + }, + "v2.OperatorStake": { + "type": "object", + "properties": { + "operator_id": { + "type": "string" + }, + "quorum_id": { + "type": "string" + }, + "rank": { + "type": "integer" + }, + "stake_percentage": { + "type": "number" + } + } + }, + "v2.OperatorsStakeResponse": { + "type": "object", + "properties": { + "stake_ranked_operators": { + "type": "object", + "additionalProperties": { + "type": "array", + "items": { + "$ref": "#/definitions/v2.OperatorStake" + } + } + } + } + }, + "v2.SemverReportResponse": { + "type": "object", + "properties": { + "semver": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/semver.SemverMetrics" + } + } + } + }, + "v2.Throughput": { + "type": "object", + "properties": { + "throughput": { + "type": "number" + }, + "timestamp": { + "type": "integer" + } + } + } + } +}` + +// SwaggerInfoV2 holds exported Swagger Info so clients can modify it +var SwaggerInfoV2 = &swag.Spec{ + Version: "2.0", + Host: "", + BasePath: "/api/v2", + Schemes: []string{"https", "http"}, + Title: "EigenDA Data Access API V2", + Description: "This is the EigenDA Data Access API V2 server.", + InfoInstanceName: "V2", + SwaggerTemplate: docTemplateV2, + LeftDelim: "{{", + RightDelim: "}}", +} + +func init() { + swag.Register(SwaggerInfoV2.InstanceName(), SwaggerInfoV2) +} diff --git a/disperser/dataapi/docs/v2/V2_swagger.json b/disperser/dataapi/docs/v2/V2_swagger.json new file mode 100644 index 0000000000..43436793ce --- /dev/null +++ b/disperser/dataapi/docs/v2/V2_swagger.json @@ -0,0 +1,924 @@ +{ + "schemes": [ + "https", + "http" + ], + "swagger": "2.0", + "info": { + "description": "This is the EigenDA Data Access API V2 server.", + "title": "EigenDA Data Access API V2", + "contact": {}, + "version": "2.0" + }, + "basePath": "/api/v2", + "paths": { + "/batches/{batch_header_hash}": { + "get": { + "produces": [ + "application/json" + ], + "tags": [ + "Batch" + ], + "summary": "Fetch batch by the batch header hash", + "parameters": [ + { + "type": "string", + "description": "Batch header hash in hex string", + "name": "batch_header_hash", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v2.BatchResponse" + } + }, + "400": { + "description": "error: Bad request", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "404": { + "description": "error: Not found", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "500": { + "description": "error: Server error", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + } + } + } + }, + "/blobs/{blob_key}": { + "get": { + "produces": [ + "application/json" + ], + "tags": [ + "Blob" + ], + "summary": "Fetch blob metadata by blob key", + "parameters": [ + { + "type": "string", + "description": "Blob key in hex string", + "name": "blob_key", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v2.BlobResponse" + } + }, + "400": { + "description": "error: Bad request", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "404": { + "description": "error: Not found", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "500": { + "description": "error: Server error", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + } + } + } + }, + "/blobs/{blob_key}/certificate": { + "get": { + "produces": [ + "application/json" + ], + "tags": [ + "Blob" + ], + "summary": "Fetch blob certificate by blob key v2", + "parameters": [ + { + "type": "string", + "description": "Blob key in hex string", + "name": "blob_key", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v2.BlobCertificateResponse" + } + }, + "400": { + "description": "error: Bad request", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "404": { + "description": "error: Not found", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "500": { + "description": "error: Server error", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + } + } + } + }, + "/blobs/{blob_key}/verification-info": { + "get": { + "produces": [ + "application/json" + ], + "tags": [ + "Blob" + ], + "summary": "Fetch blob verification info by blob key and batch header hash", + "parameters": [ + { + "type": "string", + "description": "Blob key in hex string", + "name": "blob_key", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "Batch header hash in hex string", + "name": "batch_header_hash", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v2.BlobVerificationInfoResponse" + } + }, + "400": { + "description": "error: Bad request", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "404": { + "description": "error: Not found", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "500": { + "description": "error: Server error", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + } + } + } + }, + "/metrics/summary": { + "get": { + "produces": [ + "application/json" + ], + "tags": [ + "Metrics" + ], + "summary": "Fetch metrics summary", + "parameters": [ + { + "type": "integer", + "description": "Start unix timestamp [default: 1 hour ago]", + "name": "start", + "in": "query" + }, + { + "type": "integer", + "description": "End unix timestamp [default: unix time now]", + "name": "end", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v2.Metric" + } + }, + "400": { + "description": "error: Bad request", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "404": { + "description": "error: Not found", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "500": { + "description": "error: Server error", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + } + } + } + }, + "/metrics/timeseries/throughput": { + "get": { + "produces": [ + "application/json" + ], + "tags": [ + "Metrics" + ], + "summary": "Fetch throughput time series", + "parameters": [ + { + "type": "integer", + "description": "Start unix timestamp [default: 1 hour ago]", + "name": "start", + "in": "query" + }, + { + "type": "integer", + "description": "End unix timestamp [default: unix time now]", + "name": "end", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/v2.Throughput" + } + } + }, + "400": { + "description": "error: Bad request", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "404": { + "description": "error: Not found", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "500": { + "description": "error: Server error", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + } + } + } + }, + "/operators/nodeinfo": { + "get": { + "produces": [ + "application/json" + ], + "tags": [ + "Operators" + ], + "summary": "Active operator semver", + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v2.SemverReportResponse" + } + }, + "500": { + "description": "error: Server error", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + } + } + } + }, + "/operators/reachability": { + "get": { + "produces": [ + "application/json" + ], + "tags": [ + "Operators" + ], + "summary": "Operator node reachability check", + "parameters": [ + { + "type": "string", + "description": "Operator ID in hex string [default: all operators if unspecified]", + "name": "operator_id", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v2.OperatorPortCheckResponse" + } + }, + "400": { + "description": "error: Bad request", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "404": { + "description": "error: Not found", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "500": { + "description": "error: Server error", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + } + } + } + }, + "/operators/stake": { + "get": { + "produces": [ + "application/json" + ], + "tags": [ + "Operators" + ], + "summary": "Operator stake distribution query", + "parameters": [ + { + "type": "string", + "description": "Operator ID in hex string [default: all operators if unspecified]", + "name": "operator_id", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v2.OperatorsStakeResponse" + } + }, + "400": { + "description": "error: Bad request", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "404": { + "description": "error: Not found", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + }, + "500": { + "description": "error: Server error", + "schema": { + "$ref": "#/definitions/v2.ErrorResponse" + } + } + } + } + } + }, + "definitions": { + "big.Int": { + "type": "object" + }, + "core.G1Point": { + "type": "object", + "properties": { + "x": { + "type": "array", + "items": { + "type": "integer" + } + }, + "y": { + "type": "array", + "items": { + "type": "integer" + } + } + } + }, + "core.G2Point": { + "type": "object", + "properties": { + "x": { + "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" + }, + "y": { + "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" + } + } + }, + "core.PaymentMetadata": { + "type": "object", + "properties": { + "account_id": { + "description": "AccountID is the ETH account address for the payer", + "type": "string" + }, + "cumulative_payment": { + "description": "TODO: we are thinking the contract can use uint128 for cumulative payment,\nbut the definition on v2 uses uint64. Double check with team.", + "allOf": [ + { + "$ref": "#/definitions/big.Int" + } + ] + }, + "reservation_period": { + "description": "ReservationPeriod represents the range of time at which the dispersal is made", + "type": "integer" + }, + "salt": { + "description": "Allow same blob to be dispersed multiple times within the same reservation period", + "type": "integer" + } + } + }, + "core.Signature": { + "type": "object", + "properties": { + "x": { + "type": "array", + "items": { + "type": "integer" + } + }, + "y": { + "type": "array", + "items": { + "type": "integer" + } + } + } + }, + "encoding.BlobCommitments": { + "type": "object", + "properties": { + "commitment": { + "$ref": "#/definitions/encoding.G1Commitment" + }, + "length": { + "type": "integer" + }, + "length_commitment": { + "$ref": "#/definitions/encoding.G2Commitment" + }, + "length_proof": { + "$ref": "#/definitions/encoding.LengthProof" + } + } + }, + "encoding.G1Commitment": { + "type": "object", + "properties": { + "x": { + "type": "array", + "items": { + "type": "integer" + } + }, + "y": { + "type": "array", + "items": { + "type": "integer" + } + } + } + }, + "encoding.G2Commitment": { + "type": "object", + "properties": { + "x": { + "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" + }, + "y": { + "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" + } + } + }, + "encoding.LengthProof": { + "type": "object", + "properties": { + "x": { + "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" + }, + "y": { + "$ref": "#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2" + } + } + }, + "github_com_Layr-Labs_eigenda_core_v2.Attestation": { + "type": "object", + "properties": { + "apkg2": { + "description": "APKG2 is the aggregate public key of all signers", + "allOf": [ + { + "$ref": "#/definitions/core.G2Point" + } + ] + }, + "attestedAt": { + "description": "AttestedAt is the time the attestation was made", + "type": "integer" + }, + "batchRoot": { + "description": "BatchRoot is the root of a Merkle tree whose leaves are the keys of the blobs in the batch", + "type": "array", + "items": { + "type": "integer" + } + }, + "nonSignerPubKeys": { + "description": "NonSignerPubKeys are the public keys of the operators that did not sign the blob", + "type": "array", + "items": { + "$ref": "#/definitions/core.G1Point" + } + }, + "quorumAPKs": { + "description": "QuorumAPKs is the aggregate public keys of all operators in each quorum", + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/core.G1Point" + } + }, + "quorumNumbers": { + "description": "QuorumNumbers contains the quorums relevant for the attestation", + "type": "array", + "items": { + "type": "integer" + } + }, + "quorumResults": { + "description": "QuorumResults contains the results of the quorum verification", + "type": "object", + "additionalProperties": { + "type": "integer" + } + }, + "referenceBlockNumber": { + "description": "ReferenceBlockNumber is the block number at which all operator information (stakes, indexes, etc.) is taken from", + "type": "integer" + }, + "sigma": { + "description": "Sigma is the aggregate signature of all signers", + "allOf": [ + { + "$ref": "#/definitions/core.Signature" + } + ] + } + } + }, + "github_com_Layr-Labs_eigenda_core_v2.BatchHeader": { + "type": "object", + "properties": { + "batchRoot": { + "description": "BatchRoot is the root of a Merkle tree whose leaves are the keys of the blobs in the batch", + "type": "array", + "items": { + "type": "integer" + } + }, + "referenceBlockNumber": { + "description": "ReferenceBlockNumber is the block number at which all operator information (stakes, indexes, etc.) is taken from", + "type": "integer" + } + } + }, + "github_com_Layr-Labs_eigenda_core_v2.BlobCertificate": { + "type": "object", + "properties": { + "blobHeader": { + "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobHeader" + }, + "relayKeys": { + "description": "RelayKeys", + "type": "array", + "items": { + "type": "integer" + } + } + } + }, + "github_com_Layr-Labs_eigenda_core_v2.BlobHeader": { + "type": "object", + "properties": { + "blobCommitments": { + "$ref": "#/definitions/encoding.BlobCommitments" + }, + "blobVersion": { + "type": "integer" + }, + "paymentMetadata": { + "description": "PaymentMetadata contains the payment information for the blob", + "allOf": [ + { + "$ref": "#/definitions/core.PaymentMetadata" + } + ] + }, + "quorumNumbers": { + "description": "QuorumNumbers contains the quorums the blob is dispersed to", + "type": "array", + "items": { + "type": "integer" + } + }, + "signature": { + "description": "Signature is the signature of the blob header by the account ID", + "type": "array", + "items": { + "type": "integer" + } + } + } + }, + "github_com_Layr-Labs_eigenda_core_v2.BlobVerificationInfo": { + "type": "object", + "properties": { + "BlobKey": { + "type": "array", + "items": { + "type": "integer" + } + }, + "batchRoot": { + "description": "BatchRoot is the root of a Merkle tree whose leaves are the keys of the blobs in the batch", + "type": "array", + "items": { + "type": "integer" + } + }, + "blobIndex": { + "type": "integer" + }, + "inclusionProof": { + "type": "array", + "items": { + "type": "integer" + } + }, + "referenceBlockNumber": { + "description": "ReferenceBlockNumber is the block number at which all operator information (stakes, indexes, etc.) is taken from", + "type": "integer" + } + } + }, + "github_com_Layr-Labs_eigenda_disperser_dataapi_v2.SignedBatch": { + "type": "object", + "properties": { + "attestation": { + "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.Attestation" + }, + "batch_header": { + "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BatchHeader" + } + } + }, + "github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2": { + "type": "object", + "properties": { + "a0": { + "type": "array", + "items": { + "type": "integer" + } + }, + "a1": { + "type": "array", + "items": { + "type": "integer" + } + } + } + }, + "semver.SemverMetrics": { + "type": "object", + "properties": { + "count": { + "type": "integer" + }, + "operators": { + "type": "array", + "items": { + "type": "string" + } + }, + "semver": { + "type": "string" + }, + "stake_percentage": { + "type": "object", + "additionalProperties": { + "type": "number" + } + } + } + }, + "v2.BatchResponse": { + "type": "object", + "properties": { + "batch_header_hash": { + "type": "string" + }, + "blob_verification_infos": { + "type": "array", + "items": { + "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobVerificationInfo" + } + }, + "signed_batch": { + "$ref": "#/definitions/github_com_Layr-Labs_eigenda_disperser_dataapi_v2.SignedBatch" + } + } + }, + "v2.BlobCertificateResponse": { + "type": "object", + "properties": { + "blob_certificate": { + "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobCertificate" + } + } + }, + "v2.BlobResponse": { + "type": "object", + "properties": { + "blob_header": { + "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobHeader" + }, + "blob_size_bytes": { + "type": "integer" + }, + "dispersed_at": { + "type": "integer" + }, + "status": { + "type": "string" + } + } + }, + "v2.BlobVerificationInfoResponse": { + "type": "object", + "properties": { + "blob_verification_info": { + "$ref": "#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobVerificationInfo" + } + } + }, + "v2.ErrorResponse": { + "type": "object", + "properties": { + "error": { + "type": "string" + } + } + }, + "v2.Metric": { + "type": "object", + "properties": { + "cost_in_gas": { + "type": "number" + }, + "throughput": { + "type": "number" + }, + "total_stake": { + "description": "deprecated: use TotalStakePerQuorum instead. Remove when the frontend is updated.", + "allOf": [ + { + "$ref": "#/definitions/big.Int" + } + ] + }, + "total_stake_per_quorum": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/big.Int" + } + } + } + }, + "v2.OperatorPortCheckResponse": { + "type": "object", + "properties": { + "dispersal_online": { + "type": "boolean" + }, + "dispersal_socket": { + "type": "string" + }, + "operator_id": { + "type": "string" + }, + "retrieval_online": { + "type": "boolean" + }, + "retrieval_socket": { + "type": "string" + } + } + }, + "v2.OperatorStake": { + "type": "object", + "properties": { + "operator_id": { + "type": "string" + }, + "quorum_id": { + "type": "string" + }, + "rank": { + "type": "integer" + }, + "stake_percentage": { + "type": "number" + } + } + }, + "v2.OperatorsStakeResponse": { + "type": "object", + "properties": { + "stake_ranked_operators": { + "type": "object", + "additionalProperties": { + "type": "array", + "items": { + "$ref": "#/definitions/v2.OperatorStake" + } + } + } + } + }, + "v2.SemverReportResponse": { + "type": "object", + "properties": { + "semver": { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/semver.SemverMetrics" + } + } + } + }, + "v2.Throughput": { + "type": "object", + "properties": { + "throughput": { + "type": "number" + }, + "timestamp": { + "type": "integer" + } + } + } + } +} \ No newline at end of file diff --git a/disperser/dataapi/docs/v2/V2_swagger.yaml b/disperser/dataapi/docs/v2/V2_swagger.yaml new file mode 100644 index 0000000000..0029da5a8b --- /dev/null +++ b/disperser/dataapi/docs/v2/V2_swagger.yaml @@ -0,0 +1,613 @@ +basePath: /api/v2 +definitions: + big.Int: + type: object + core.G1Point: + properties: + x: + items: + type: integer + type: array + "y": + items: + type: integer + type: array + type: object + core.G2Point: + properties: + x: + $ref: '#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2' + "y": + $ref: '#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2' + type: object + core.PaymentMetadata: + properties: + account_id: + description: AccountID is the ETH account address for the payer + type: string + cumulative_payment: + allOf: + - $ref: '#/definitions/big.Int' + description: |- + TODO: we are thinking the contract can use uint128 for cumulative payment, + but the definition on v2 uses uint64. Double check with team. + reservation_period: + description: ReservationPeriod represents the range of time at which the dispersal + is made + type: integer + salt: + description: Allow same blob to be dispersed multiple times within the same + reservation period + type: integer + type: object + core.Signature: + properties: + x: + items: + type: integer + type: array + "y": + items: + type: integer + type: array + type: object + encoding.BlobCommitments: + properties: + commitment: + $ref: '#/definitions/encoding.G1Commitment' + length: + type: integer + length_commitment: + $ref: '#/definitions/encoding.G2Commitment' + length_proof: + $ref: '#/definitions/encoding.LengthProof' + type: object + encoding.G1Commitment: + properties: + x: + items: + type: integer + type: array + "y": + items: + type: integer + type: array + type: object + encoding.G2Commitment: + properties: + x: + $ref: '#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2' + "y": + $ref: '#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2' + type: object + encoding.LengthProof: + properties: + x: + $ref: '#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2' + "y": + $ref: '#/definitions/github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2' + type: object + github_com_Layr-Labs_eigenda_core_v2.Attestation: + properties: + apkg2: + allOf: + - $ref: '#/definitions/core.G2Point' + description: APKG2 is the aggregate public key of all signers + attestedAt: + description: AttestedAt is the time the attestation was made + type: integer + batchRoot: + description: BatchRoot is the root of a Merkle tree whose leaves are the keys + of the blobs in the batch + items: + type: integer + type: array + nonSignerPubKeys: + description: NonSignerPubKeys are the public keys of the operators that did + not sign the blob + items: + $ref: '#/definitions/core.G1Point' + type: array + quorumAPKs: + additionalProperties: + $ref: '#/definitions/core.G1Point' + description: QuorumAPKs is the aggregate public keys of all operators in each + quorum + type: object + quorumNumbers: + description: QuorumNumbers contains the quorums relevant for the attestation + items: + type: integer + type: array + quorumResults: + additionalProperties: + type: integer + description: QuorumResults contains the results of the quorum verification + type: object + referenceBlockNumber: + description: ReferenceBlockNumber is the block number at which all operator + information (stakes, indexes, etc.) is taken from + type: integer + sigma: + allOf: + - $ref: '#/definitions/core.Signature' + description: Sigma is the aggregate signature of all signers + type: object + github_com_Layr-Labs_eigenda_core_v2.BatchHeader: + properties: + batchRoot: + description: BatchRoot is the root of a Merkle tree whose leaves are the keys + of the blobs in the batch + items: + type: integer + type: array + referenceBlockNumber: + description: ReferenceBlockNumber is the block number at which all operator + information (stakes, indexes, etc.) is taken from + type: integer + type: object + github_com_Layr-Labs_eigenda_core_v2.BlobCertificate: + properties: + blobHeader: + $ref: '#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobHeader' + relayKeys: + description: RelayKeys + items: + type: integer + type: array + type: object + github_com_Layr-Labs_eigenda_core_v2.BlobHeader: + properties: + blobCommitments: + $ref: '#/definitions/encoding.BlobCommitments' + blobVersion: + type: integer + paymentMetadata: + allOf: + - $ref: '#/definitions/core.PaymentMetadata' + description: PaymentMetadata contains the payment information for the blob + quorumNumbers: + description: QuorumNumbers contains the quorums the blob is dispersed to + items: + type: integer + type: array + signature: + description: Signature is the signature of the blob header by the account + ID + items: + type: integer + type: array + type: object + github_com_Layr-Labs_eigenda_core_v2.BlobVerificationInfo: + properties: + BlobKey: + items: + type: integer + type: array + batchRoot: + description: BatchRoot is the root of a Merkle tree whose leaves are the keys + of the blobs in the batch + items: + type: integer + type: array + blobIndex: + type: integer + inclusionProof: + items: + type: integer + type: array + referenceBlockNumber: + description: ReferenceBlockNumber is the block number at which all operator + information (stakes, indexes, etc.) is taken from + type: integer + type: object + github_com_Layr-Labs_eigenda_disperser_dataapi_v2.SignedBatch: + properties: + attestation: + $ref: '#/definitions/github_com_Layr-Labs_eigenda_core_v2.Attestation' + batch_header: + $ref: '#/definitions/github_com_Layr-Labs_eigenda_core_v2.BatchHeader' + type: object + github_com_consensys_gnark-crypto_ecc_bn254_internal_fptower.E2: + properties: + a0: + items: + type: integer + type: array + a1: + items: + type: integer + type: array + type: object + semver.SemverMetrics: + properties: + count: + type: integer + operators: + items: + type: string + type: array + semver: + type: string + stake_percentage: + additionalProperties: + type: number + type: object + type: object + v2.BatchResponse: + properties: + batch_header_hash: + type: string + blob_verification_infos: + items: + $ref: '#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobVerificationInfo' + type: array + signed_batch: + $ref: '#/definitions/github_com_Layr-Labs_eigenda_disperser_dataapi_v2.SignedBatch' + type: object + v2.BlobCertificateResponse: + properties: + blob_certificate: + $ref: '#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobCertificate' + type: object + v2.BlobResponse: + properties: + blob_header: + $ref: '#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobHeader' + blob_size_bytes: + type: integer + dispersed_at: + type: integer + status: + type: string + type: object + v2.BlobVerificationInfoResponse: + properties: + blob_verification_info: + $ref: '#/definitions/github_com_Layr-Labs_eigenda_core_v2.BlobVerificationInfo' + type: object + v2.ErrorResponse: + properties: + error: + type: string + type: object + v2.Metric: + properties: + cost_in_gas: + type: number + throughput: + type: number + total_stake: + allOf: + - $ref: '#/definitions/big.Int' + description: 'deprecated: use TotalStakePerQuorum instead. Remove when the + frontend is updated.' + total_stake_per_quorum: + additionalProperties: + $ref: '#/definitions/big.Int' + type: object + type: object + v2.OperatorPortCheckResponse: + properties: + dispersal_online: + type: boolean + dispersal_socket: + type: string + operator_id: + type: string + retrieval_online: + type: boolean + retrieval_socket: + type: string + type: object + v2.OperatorStake: + properties: + operator_id: + type: string + quorum_id: + type: string + rank: + type: integer + stake_percentage: + type: number + type: object + v2.OperatorsStakeResponse: + properties: + stake_ranked_operators: + additionalProperties: + items: + $ref: '#/definitions/v2.OperatorStake' + type: array + type: object + type: object + v2.SemverReportResponse: + properties: + semver: + additionalProperties: + $ref: '#/definitions/semver.SemverMetrics' + type: object + type: object + v2.Throughput: + properties: + throughput: + type: number + timestamp: + type: integer + type: object +info: + contact: {} + description: This is the EigenDA Data Access API V2 server. + title: EigenDA Data Access API V2 + version: "2.0" +paths: + /batches/{batch_header_hash}: + get: + parameters: + - description: Batch header hash in hex string + in: path + name: batch_header_hash + required: true + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/v2.BatchResponse' + "400": + description: 'error: Bad request' + schema: + $ref: '#/definitions/v2.ErrorResponse' + "404": + description: 'error: Not found' + schema: + $ref: '#/definitions/v2.ErrorResponse' + "500": + description: 'error: Server error' + schema: + $ref: '#/definitions/v2.ErrorResponse' + summary: Fetch batch by the batch header hash + tags: + - Batch + /blobs/{blob_key}: + get: + parameters: + - description: Blob key in hex string + in: path + name: blob_key + required: true + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/v2.BlobResponse' + "400": + description: 'error: Bad request' + schema: + $ref: '#/definitions/v2.ErrorResponse' + "404": + description: 'error: Not found' + schema: + $ref: '#/definitions/v2.ErrorResponse' + "500": + description: 'error: Server error' + schema: + $ref: '#/definitions/v2.ErrorResponse' + summary: Fetch blob metadata by blob key + tags: + - Blob + /blobs/{blob_key}/certificate: + get: + parameters: + - description: Blob key in hex string + in: path + name: blob_key + required: true + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/v2.BlobCertificateResponse' + "400": + description: 'error: Bad request' + schema: + $ref: '#/definitions/v2.ErrorResponse' + "404": + description: 'error: Not found' + schema: + $ref: '#/definitions/v2.ErrorResponse' + "500": + description: 'error: Server error' + schema: + $ref: '#/definitions/v2.ErrorResponse' + summary: Fetch blob certificate by blob key v2 + tags: + - Blob + /blobs/{blob_key}/verification-info: + get: + parameters: + - description: Blob key in hex string + in: path + name: blob_key + required: true + type: string + - description: Batch header hash in hex string + in: path + name: batch_header_hash + required: true + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/v2.BlobVerificationInfoResponse' + "400": + description: 'error: Bad request' + schema: + $ref: '#/definitions/v2.ErrorResponse' + "404": + description: 'error: Not found' + schema: + $ref: '#/definitions/v2.ErrorResponse' + "500": + description: 'error: Server error' + schema: + $ref: '#/definitions/v2.ErrorResponse' + summary: Fetch blob verification info by blob key and batch header hash + tags: + - Blob + /metrics/summary: + get: + parameters: + - description: 'Start unix timestamp [default: 1 hour ago]' + in: query + name: start + type: integer + - description: 'End unix timestamp [default: unix time now]' + in: query + name: end + type: integer + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/v2.Metric' + "400": + description: 'error: Bad request' + schema: + $ref: '#/definitions/v2.ErrorResponse' + "404": + description: 'error: Not found' + schema: + $ref: '#/definitions/v2.ErrorResponse' + "500": + description: 'error: Server error' + schema: + $ref: '#/definitions/v2.ErrorResponse' + summary: Fetch metrics summary + tags: + - Metrics + /metrics/timeseries/throughput: + get: + parameters: + - description: 'Start unix timestamp [default: 1 hour ago]' + in: query + name: start + type: integer + - description: 'End unix timestamp [default: unix time now]' + in: query + name: end + type: integer + produces: + - application/json + responses: + "200": + description: OK + schema: + items: + $ref: '#/definitions/v2.Throughput' + type: array + "400": + description: 'error: Bad request' + schema: + $ref: '#/definitions/v2.ErrorResponse' + "404": + description: 'error: Not found' + schema: + $ref: '#/definitions/v2.ErrorResponse' + "500": + description: 'error: Server error' + schema: + $ref: '#/definitions/v2.ErrorResponse' + summary: Fetch throughput time series + tags: + - Metrics + /operators/nodeinfo: + get: + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/v2.SemverReportResponse' + "500": + description: 'error: Server error' + schema: + $ref: '#/definitions/v2.ErrorResponse' + summary: Active operator semver + tags: + - Operators + /operators/reachability: + get: + parameters: + - description: 'Operator ID in hex string [default: all operators if unspecified]' + in: query + name: operator_id + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/v2.OperatorPortCheckResponse' + "400": + description: 'error: Bad request' + schema: + $ref: '#/definitions/v2.ErrorResponse' + "404": + description: 'error: Not found' + schema: + $ref: '#/definitions/v2.ErrorResponse' + "500": + description: 'error: Server error' + schema: + $ref: '#/definitions/v2.ErrorResponse' + summary: Operator node reachability check + tags: + - Operators + /operators/stake: + get: + parameters: + - description: 'Operator ID in hex string [default: all operators if unspecified]' + in: query + name: operator_id + type: string + produces: + - application/json + responses: + "200": + description: OK + schema: + $ref: '#/definitions/v2.OperatorsStakeResponse' + "400": + description: 'error: Bad request' + schema: + $ref: '#/definitions/v2.ErrorResponse' + "404": + description: 'error: Not found' + schema: + $ref: '#/definitions/v2.ErrorResponse' + "500": + description: 'error: Server error' + schema: + $ref: '#/definitions/v2.ErrorResponse' + summary: Operator stake distribution query + tags: + - Operators +schemes: +- https +- http +swagger: "2.0" diff --git a/disperser/dataapi/metrics_handler.go b/disperser/dataapi/metrics_handler.go index 9ccbc6fbc5..c0d92fbdcb 100644 --- a/disperser/dataapi/metrics_handler.go +++ b/disperser/dataapi/metrics_handler.go @@ -11,18 +11,18 @@ const ( ) // metricHandler handles operations to collect metrics about the Disperser. -type metricsHandler struct { +type MetricsHandler struct { // For accessing metrics info promClient PrometheusClient } -func newMetricsHandler(promClient PrometheusClient) *metricsHandler { - return &metricsHandler{ +func NewMetricsHandler(promClient PrometheusClient) *MetricsHandler { + return &MetricsHandler{ promClient: promClient, } } -func (mh *metricsHandler) getAvgThroughput(ctx context.Context, startTime int64, endTime int64) (float64, error) { +func (mh *MetricsHandler) GetAvgThroughput(ctx context.Context, startTime int64, endTime int64) (float64, error) { result, err := mh.promClient.QueryDisperserBlobSizeBytesPerSecond(ctx, time.Unix(startTime, 0), time.Unix(endTime, 0)) if err != nil { return 0, err @@ -36,7 +36,7 @@ func (mh *metricsHandler) getAvgThroughput(ctx context.Context, startTime int64, return totalBytes / timeDuration, nil } -func (mh *metricsHandler) getThroughputTimeseries(ctx context.Context, startTime int64, endTime int64) ([]*Throughput, error) { +func (mh *MetricsHandler) GetThroughputTimeseries(ctx context.Context, startTime int64, endTime int64) ([]*Throughput, error) { throughputRateSecs := uint16(defaultThroughputRateSecs) if endTime-startTime >= 7*24*60*60 { throughputRateSecs = uint16(sevenDayThroughputRateSecs) diff --git a/disperser/dataapi/metrics_handlers.go b/disperser/dataapi/metrics_handlers.go index e317c5cfdb..efdab463e4 100644 --- a/disperser/dataapi/metrics_handlers.go +++ b/disperser/dataapi/metrics_handlers.go @@ -42,7 +42,7 @@ func (s *server) getMetric(ctx context.Context, startTime int64, endTime int64) } } - throughput, err := s.metricsHandler.getAvgThroughput(ctx, startTime, endTime) + throughput, err := s.metricsHandler.GetAvgThroughput(ctx, startTime, endTime) if err != nil { return nil, err } diff --git a/disperser/dataapi/operator_handler.go b/disperser/dataapi/operator_handler.go index 10d65104cb..8c5172420d 100644 --- a/disperser/dataapi/operator_handler.go +++ b/disperser/dataapi/operator_handler.go @@ -11,8 +11,8 @@ import ( "github.com/Layr-Labs/eigensdk-go/logging" ) -// operatorHandler handles operations to collect and process operators info. -type operatorHandler struct { +// OperatorHandler handles operations to collect and process operators info. +type OperatorHandler struct { // For visibility logger logging.Logger metrics *Metrics @@ -24,8 +24,8 @@ type operatorHandler struct { subgraphClient SubgraphClient } -func newOperatorHandler(logger logging.Logger, metrics *Metrics, chainReader core.Reader, chainState core.ChainState, indexedChainState core.IndexedChainState, subgraphClient SubgraphClient) *operatorHandler { - return &operatorHandler{ +func NewOperatorHandler(logger logging.Logger, metrics *Metrics, chainReader core.Reader, chainState core.ChainState, indexedChainState core.IndexedChainState, subgraphClient SubgraphClient) *OperatorHandler { + return &OperatorHandler{ logger: logger, metrics: metrics, chainReader: chainReader, @@ -35,7 +35,7 @@ func newOperatorHandler(logger logging.Logger, metrics *Metrics, chainReader cor } } -func (oh *operatorHandler) probeOperatorHosts(ctx context.Context, operatorId string) (*OperatorPortCheckResponse, error) { +func (oh *OperatorHandler) ProbeOperatorHosts(ctx context.Context, operatorId string) (*OperatorPortCheckResponse, error) { operatorInfo, err := oh.subgraphClient.QueryOperatorInfoByOperatorId(ctx, operatorId) if err != nil { oh.logger.Warn("failed to fetch operator info", "operatorId", operatorId, "error", err) @@ -65,7 +65,7 @@ func (oh *operatorHandler) probeOperatorHosts(ctx context.Context, operatorId st return portCheckResponse, nil } -func (oh *operatorHandler) getOperatorsStake(ctx context.Context, operatorId string) (*OperatorsStakeResponse, error) { +func (oh *OperatorHandler) GetOperatorsStake(ctx context.Context, operatorId string) (*OperatorsStakeResponse, error) { currentBlock, err := oh.indexedChainState.GetCurrentBlockNumber() if err != nil { return nil, fmt.Errorf("failed to fetch current block number: %w", err) @@ -109,7 +109,7 @@ func (oh *operatorHandler) getOperatorsStake(ctx context.Context, operatorId str }, nil } -func (s *operatorHandler) scanOperatorsHostInfo(ctx context.Context) (*SemverReportResponse, error) { +func (s *OperatorHandler) ScanOperatorsHostInfo(ctx context.Context) (*SemverReportResponse, error) { currentBlock, err := s.indexedChainState.GetCurrentBlockNumber() if err != nil { return nil, fmt.Errorf("failed to fetch current block number: %w", err) diff --git a/disperser/dataapi/server.go b/disperser/dataapi/server.go index a04e3d3e8f..a4a86081db 100644 --- a/disperser/dataapi/server.go +++ b/disperser/dataapi/server.go @@ -23,7 +23,7 @@ import ( "github.com/Layr-Labs/eigenda/disperser" "github.com/Layr-Labs/eigenda/disperser/common/semver" - "github.com/Layr-Labs/eigenda/disperser/dataapi/docs" + docsv1 "github.com/Layr-Labs/eigenda/disperser/dataapi/docs/v1" "github.com/gin-contrib/cors" "github.com/gin-contrib/logger" "github.com/gin-gonic/gin" @@ -208,11 +208,16 @@ type ( eigenDAGRPCServiceChecker EigenDAGRPCServiceChecker eigenDAHttpServiceChecker EigenDAHttpServiceChecker - operatorHandler *operatorHandler - metricsHandler *metricsHandler + operatorHandler *OperatorHandler + metricsHandler *MetricsHandler } ) +type ServerInterface interface { + Start() error + Shutdown() error +} + func NewServer( config Config, blobstore disperser.BlobStore, @@ -260,8 +265,8 @@ func NewServer( batcherHealthEndpt: config.BatcherHealthEndpt, eigenDAGRPCServiceChecker: eigenDAGRPCServiceChecker, eigenDAHttpServiceChecker: eigenDAHttpServiceChecker, - operatorHandler: newOperatorHandler(logger, metrics, transactor, chainState, indexedChainState, subgraphClient), - metricsHandler: newMetricsHandler(promClient), + operatorHandler: NewOperatorHandler(logger, metrics, transactor, chainState, indexedChainState, subgraphClient), + metricsHandler: NewMetricsHandler(promClient), } } @@ -273,8 +278,8 @@ func (s *server) Start() error { router := gin.New() basePath := "/api/v1" - docs.SwaggerInfo.BasePath = basePath - docs.SwaggerInfo.Host = os.Getenv("SWAGGER_HOST") + docsv1.SwaggerInfoV1.BasePath = basePath + docsv1.SwaggerInfoV1.Host = os.Getenv("SWAGGER_HOST") v1 := router.Group(basePath) { feed := v1.Group("/feed") @@ -304,7 +309,7 @@ func (s *server) Start() error { } swagger := v1.Group("/swagger") { - swagger.GET("/*any", ginswagger.WrapHandler(swaggerfiles.Handler)) + swagger.GET("/*any", ginswagger.WrapHandler(swaggerfiles.Handler, ginswagger.InstanceName("V1"), ginswagger.URL("/api/v1/swagger/doc.json"))) } } @@ -609,7 +614,7 @@ func (s *server) FetchMetricsThroughputHandler(c *gin.Context) { end = now.Unix() } - ths, err := s.metricsHandler.getThroughputTimeseries(c.Request.Context(), start, end) + ths, err := s.metricsHandler.GetThroughputTimeseries(c.Request.Context(), start, end) if err != nil { s.metrics.IncrementFailedRequestNum("FetchMetricsTroughput") errorResponse(c, err) @@ -732,7 +737,7 @@ func (s *server) OperatorsStake(c *gin.Context) { operatorId := c.DefaultQuery("operator_id", "") s.logger.Info("getting operators stake distribution", "operatorId", operatorId) - operatorsStakeResponse, err := s.operatorHandler.getOperatorsStake(c.Request.Context(), operatorId) + operatorsStakeResponse, err := s.operatorHandler.GetOperatorsStake(c.Request.Context(), operatorId) if err != nil { s.metrics.IncrementFailedRequestNum("OperatorsStake") errorResponse(c, fmt.Errorf("failed to get operator stake: %w", err)) @@ -923,7 +928,7 @@ func (s *server) OperatorPortCheck(c *gin.Context) { operatorId := c.DefaultQuery("operator_id", "") s.logger.Info("checking operator ports", "operatorId", operatorId) - portCheckResponse, err := s.operatorHandler.probeOperatorHosts(c.Request.Context(), operatorId) + portCheckResponse, err := s.operatorHandler.ProbeOperatorHosts(c.Request.Context(), operatorId) if err != nil { if strings.Contains(err.Error(), "not found") { err = errNotFound @@ -955,7 +960,7 @@ func (s *server) SemverScan(c *gin.Context) { })) defer timer.ObserveDuration() - report, err := s.operatorHandler.scanOperatorsHostInfo(c.Request.Context()) + report, err := s.operatorHandler.ScanOperatorsHostInfo(c.Request.Context()) if err != nil { s.logger.Error("failed to scan operators host info", "error", err) s.metrics.IncrementFailedRequestNum("SemverScan") diff --git a/disperser/dataapi/server_v2.go b/disperser/dataapi/v2/server_v2.go similarity index 80% rename from disperser/dataapi/server_v2.go rename to disperser/dataapi/v2/server_v2.go index 660a91fa4c..d44a002306 100644 --- a/disperser/dataapi/server_v2.go +++ b/disperser/dataapi/v2/server_v2.go @@ -1,18 +1,24 @@ -package dataapi +package v2 import ( + "context" "errors" "fmt" + "math/big" "net/http" "os" + "os/signal" "strconv" "strings" + "syscall" "time" "github.com/Layr-Labs/eigenda/core" corev2 "github.com/Layr-Labs/eigenda/core/v2" + "github.com/Layr-Labs/eigenda/disperser/common/semver" "github.com/Layr-Labs/eigenda/disperser/common/v2/blobstore" - "github.com/Layr-Labs/eigenda/disperser/dataapi/docs" + "github.com/Layr-Labs/eigenda/disperser/dataapi" + docsv2 "github.com/Layr-Labs/eigenda/disperser/dataapi/docs/v2" "github.com/Layr-Labs/eigensdk-go/logging" "github.com/gin-contrib/cors" "github.com/gin-contrib/logger" @@ -22,7 +28,22 @@ import ( ginswagger "github.com/swaggo/gin-swagger" ) +var errNotFound = errors.New("not found") + +const ( + cacheControlParam = "Cache-Control" + maxFeedBlobAge = 300 // this is completely static + maxOperatorsStakeAge = 300 // not expect the stake change to happen frequently + maxOperatorPortCheckAge = 60 + maxMetricAge = 10 + maxThroughputAge = 10 +) + type ( + ErrorResponse struct { + Error string `json:"error"` + } + SignedBatch struct { BatchHeader *corev2.BatchHeader `json:"batch_header"` Attestation *corev2.Attestation `json:"attestation"` @@ -52,12 +73,43 @@ type ( MetricSummary struct { AvgThroughput float64 `json:"avg_throughput"` } -) -type ServerInterface interface { - Start() error - Shutdown() error -} + OperatorStake struct { + QuorumId string `json:"quorum_id"` + OperatorId string `json:"operator_id"` + StakePercentage float64 `json:"stake_percentage"` + Rank int `json:"rank"` + } + + OperatorsStakeResponse struct { + StakeRankedOperators map[string][]*OperatorStake `json:"stake_ranked_operators"` + } + + OperatorPortCheckResponse struct { + OperatorId string `json:"operator_id"` + DispersalSocket string `json:"dispersal_socket"` + RetrievalSocket string `json:"retrieval_socket"` + DispersalOnline bool `json:"dispersal_online"` + RetrievalOnline bool `json:"retrieval_online"` + } + + SemverReportResponse struct { + Semver map[string]*semver.SemverMetrics `json:"semver"` + } + + Metric struct { + Throughput float64 `json:"throughput"` + CostInGas float64 `json:"cost_in_gas"` + // deprecated: use TotalStakePerQuorum instead. Remove when the frontend is updated. + TotalStake *big.Int `json:"total_stake"` + TotalStakePerQuorum map[core.QuorumID]*big.Int `json:"total_stake_per_quorum"` + } + + Throughput struct { + Throughput float64 `json:"throughput"` + Timestamp uint64 `json:"timestamp"` + } +) type ServerV2 struct { serverMode string @@ -66,27 +118,27 @@ type ServerV2 struct { logger logging.Logger blobMetadataStore *blobstore.BlobMetadataStore - subgraphClient SubgraphClient + subgraphClient dataapi.SubgraphClient chainReader core.Reader chainState core.ChainState indexedChainState core.IndexedChainState - promClient PrometheusClient - metrics *Metrics + promClient dataapi.PrometheusClient + metrics *dataapi.Metrics - operatorHandler *operatorHandler - metricsHandler *metricsHandler + operatorHandler *dataapi.OperatorHandler + metricsHandler *dataapi.MetricsHandler } func NewServerV2( - config Config, + config dataapi.Config, blobMetadataStore *blobstore.BlobMetadataStore, - promClient PrometheusClient, - subgraphClient SubgraphClient, + promClient dataapi.PrometheusClient, + subgraphClient dataapi.SubgraphClient, chainReader core.Reader, chainState core.ChainState, indexedChainState core.IndexedChainState, logger logging.Logger, - metrics *Metrics, + metrics *dataapi.Metrics, ) *ServerV2 { l := logger.With("component", "DataAPIServerV2") return &ServerV2{ @@ -101,8 +153,8 @@ func NewServerV2( chainState: chainState, indexedChainState: indexedChainState, metrics: metrics, - operatorHandler: newOperatorHandler(l, metrics, chainReader, chainState, indexedChainState, subgraphClient), - metricsHandler: newMetricsHandler(promClient), + operatorHandler: dataapi.NewOperatorHandler(l, metrics, chainReader, chainState, indexedChainState, subgraphClient), + metricsHandler: dataapi.NewMetricsHandler(promClient), } } @@ -114,8 +166,9 @@ func (s *ServerV2) Start() error { router := gin.New() basePath := "/api/v2" - docs.SwaggerInfo.BasePath = basePath - docs.SwaggerInfo.Host = os.Getenv("SWAGGER_HOST") + docsv2.SwaggerInfoV2.BasePath = basePath + docsv2.SwaggerInfoV2.Host = os.Getenv("SWAGGER_HOST") + v2 := router.Group(basePath) { blob := v2.Group("/blob") @@ -144,7 +197,8 @@ func (s *ServerV2) Start() error { } swagger := v2.Group("/swagger") { - swagger.GET("/*any", ginswagger.WrapHandler(swaggerfiles.Handler)) + swagger.GET("/*any", ginswagger.WrapHandler(swaggerfiles.Handler, ginswagger.InstanceName("V2"), ginswagger.URL("/api/v2/swagger/doc.json"))) + } } @@ -179,6 +233,55 @@ func (s *ServerV2) Start() error { return <-errChan } +func errorResponse(c *gin.Context, err error) { + _ = c.Error(err) + var code int + switch { + case errors.Is(err, errNotFound): + code = http.StatusNotFound + default: + code = http.StatusInternalServerError + } + c.JSON(code, ErrorResponse{ + Error: err.Error(), + }) +} + +func run(logger logging.Logger, httpServer *http.Server) <-chan error { + errChan := make(chan error, 1) + ctx, stop := signal.NotifyContext( + context.Background(), + os.Interrupt, + syscall.SIGTERM, + syscall.SIGQUIT, + ) + + go func() { + <-ctx.Done() + + logger.Info("shutdown signal received") + + defer func() { + stop() + close(errChan) + }() + + if err := httpServer.Shutdown(context.Background()); err != nil { + errChan <- err + } + logger.Info("shutdown completed") + }() + + go func() { + logger.Info("server v2 running", "addr", httpServer.Addr) + if err := httpServer.ListenAndServe(); err != nil { + errChan <- err + } + }() + + return errChan +} + func (s *ServerV2) Shutdown() error { return nil } @@ -226,7 +329,7 @@ func (s *ServerV2) FetchBlobHandler(c *gin.Context) { // FetchBlobCertificateHandler godoc // -// @Summary Fetch blob certificate by blob key +// @Summary Fetch blob certificate by blob key v2 // @Tags Blob // @Produce json // @Param blob_key path string true "Blob key in hex string" @@ -280,7 +383,7 @@ func (s *ServerV2) FetchBlobVerificationInfoHandler(c *gin.Context) { return } batchHeaderHashHex := c.Query("batch_header_hash") - batchHeaderHash, err := ConvertHexadecimalToBytes([]byte(batchHeaderHashHex)) + batchHeaderHash, err := dataapi.ConvertHexadecimalToBytes([]byte(batchHeaderHashHex)) if err != nil { s.metrics.IncrementInvalidArgRequestNum("FetchBlobVerificationInfo") errorResponse(c, err) @@ -319,7 +422,7 @@ func (s *ServerV2) FetchBatchFeedHandler(c *gin.Context) { func (s *ServerV2) FetchBatchHandler(c *gin.Context) { start := time.Now() batchHeaderHashHex := c.Param("batch_header_hash") - batchHeaderHash, err := ConvertHexadecimalToBytes([]byte(batchHeaderHashHex)) + batchHeaderHash, err := dataapi.ConvertHexadecimalToBytes([]byte(batchHeaderHashHex)) if err != nil { s.metrics.IncrementInvalidArgRequestNum("FetchBatch") errorResponse(c, errors.New("invalid batch header hash")) @@ -348,7 +451,7 @@ func (s *ServerV2) FetchBatchHandler(c *gin.Context) { // FetchOperatorsStake godoc // // @Summary Operator stake distribution query -// @Tags OperatorsStake +// @Tags Operators // @Produce json // @Param operator_id query string false "Operator ID in hex string [default: all operators if unspecified]" // @Success 200 {object} OperatorsStakeResponse @@ -365,7 +468,7 @@ func (s *ServerV2) FetchOperatorsStake(c *gin.Context) { operatorId := c.DefaultQuery("operator_id", "") s.logger.Info("getting operators stake distribution", "operatorId", operatorId) - operatorsStakeResponse, err := s.operatorHandler.getOperatorsStake(c.Request.Context(), operatorId) + operatorsStakeResponse, err := s.operatorHandler.GetOperatorsStake(c.Request.Context(), operatorId) if err != nil { s.metrics.IncrementFailedRequestNum("FetchOperatorsStake") errorResponse(c, fmt.Errorf("failed to get operator stake - %s", err)) @@ -380,7 +483,7 @@ func (s *ServerV2) FetchOperatorsStake(c *gin.Context) { // FetchOperatorsNodeInfo godoc // // @Summary Active operator semver -// @Tags OperatorsNodeInfo +// @Tags Operators // @Produce json // @Success 200 {object} SemverReportResponse // @Failure 500 {object} ErrorResponse "error: Server error" @@ -391,7 +494,7 @@ func (s *ServerV2) FetchOperatorsNodeInfo(c *gin.Context) { })) defer timer.ObserveDuration() - report, err := s.operatorHandler.scanOperatorsHostInfo(c.Request.Context()) + report, err := s.operatorHandler.ScanOperatorsHostInfo(c.Request.Context()) if err != nil { s.logger.Error("failed to scan operators host info", "error", err) s.metrics.IncrementFailedRequestNum("FetchOperatorsNodeInfo") @@ -404,7 +507,7 @@ func (s *ServerV2) FetchOperatorsNodeInfo(c *gin.Context) { // CheckOperatorsReachability godoc // // @Summary Operator node reachability check -// @Tags OperatorsReachability +// @Tags Operators // @Produce json // @Param operator_id query string false "Operator ID in hex string [default: all operators if unspecified]" // @Success 200 {object} OperatorPortCheckResponse @@ -420,7 +523,7 @@ func (s *ServerV2) CheckOperatorsReachability(c *gin.Context) { operatorId := c.DefaultQuery("operator_id", "") s.logger.Info("checking operator ports", "operatorId", operatorId) - portCheckResponse, err := s.operatorHandler.probeOperatorHosts(c.Request.Context(), operatorId) + portCheckResponse, err := s.operatorHandler.ProbeOperatorHosts(c.Request.Context(), operatorId) if err != nil { if strings.Contains(err.Error(), "not found") { err = errNotFound @@ -470,7 +573,7 @@ func (s *ServerV2) FetchMetricsSummaryHandler(c *gin.Context) { end = now.Unix() } - avgThroughput, err := s.metricsHandler.getAvgThroughput(c.Request.Context(), start, end) + avgThroughput, err := s.metricsHandler.GetAvgThroughput(c.Request.Context(), start, end) if err != nil { s.metrics.IncrementFailedRequestNum("FetchMetricsSummary") errorResponse(c, err) @@ -482,7 +585,7 @@ func (s *ServerV2) FetchMetricsSummaryHandler(c *gin.Context) { } s.metrics.IncrementSuccessfulRequestNum("FetchMetricsSummary") - c.Writer.Header().Set(cacheControlParam, fmt.Sprintf("max-age=%d", maxMetricAage)) + c.Writer.Header().Set(cacheControlParam, fmt.Sprintf("max-age=%d", maxMetricAge)) c.JSON(http.StatusOK, metricSummary) } @@ -515,7 +618,7 @@ func (s *ServerV2) FetchMetricsThroughputTimeseriesHandler(c *gin.Context) { end = now.Unix() } - ths, err := s.metricsHandler.getThroughputTimeseries(c.Request.Context(), start, end) + ths, err := s.metricsHandler.GetThroughputTimeseries(c.Request.Context(), start, end) if err != nil { s.metrics.IncrementFailedRequestNum("FetchMetricsThroughputTimeseriesHandler") errorResponse(c, err) diff --git a/disperser/dataapi/server_v2_test.go b/disperser/dataapi/v2/server_v2_test.go similarity index 77% rename from disperser/dataapi/server_v2_test.go rename to disperser/dataapi/v2/server_v2_test.go index 033e7f7279..2ec0f02eff 100644 --- a/disperser/dataapi/server_v2_test.go +++ b/disperser/dataapi/v2/server_v2_test.go @@ -1,8 +1,9 @@ -package dataapi_test +package v2_test import ( "context" "crypto/rand" + _ "embed" "encoding/hex" "encoding/json" "fmt" @@ -18,25 +19,42 @@ import ( "github.com/Layr-Labs/eigenda/common/aws/dynamodb" test_utils "github.com/Layr-Labs/eigenda/common/aws/dynamodb/utils" "github.com/Layr-Labs/eigenda/core" + coremock "github.com/Layr-Labs/eigenda/core/mock" corev2 "github.com/Layr-Labs/eigenda/core/v2" + "github.com/Layr-Labs/eigenda/disperser/common/inmem" commonv2 "github.com/Layr-Labs/eigenda/disperser/common/v2" blobstorev2 "github.com/Layr-Labs/eigenda/disperser/common/v2/blobstore" "github.com/Layr-Labs/eigenda/disperser/dataapi" + prommock "github.com/Layr-Labs/eigenda/disperser/dataapi/prometheus/mock" + "github.com/Layr-Labs/eigenda/disperser/dataapi/subgraph" + subgraphmock "github.com/Layr-Labs/eigenda/disperser/dataapi/subgraph/mock" + serverv2 "github.com/Layr-Labs/eigenda/disperser/dataapi/v2" "github.com/Layr-Labs/eigenda/encoding" "github.com/Layr-Labs/eigenda/inabox/deploy" "github.com/Layr-Labs/eigensdk-go/logging" "github.com/consensys/gnark-crypto/ecc/bn254" "github.com/consensys/gnark-crypto/ecc/bn254/fp" + "github.com/gin-gonic/gin" "github.com/google/uuid" "github.com/ory/dockertest/v3" "github.com/prometheus/common/model" + "github.com/shurcooL/graphql" "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" + "google.golang.org/grpc" + "google.golang.org/grpc/health/grpc_health_v1" ) var ( + //go:embed testdata/prometheus-response-sample.json + mockPrometheusResponse string + + //go:embed testdata/prometheus-resp-avg-throughput.json + mockPrometheusRespAvgThroughput string + blobMetadataStore *blobstorev2.BlobMetadataStore - testDataApiServerV2 *dataapi.ServerV2 + testDataApiServerV2 *serverv2.ServerV2 logger = logging.NewNoopLogger() @@ -45,8 +63,88 @@ var ( dockertestPool *dockertest.Pool dockertestResource *dockertest.Resource deployLocalStack bool + + mockLogger = logging.NewNoopLogger() + blobstore = inmem.NewBlobStore() + mockPrometheusApi = &prommock.MockPrometheusApi{} + prometheusClient = dataapi.NewPrometheusClient(mockPrometheusApi, "test-cluster") + mockSubgraphApi = &subgraphmock.MockSubgraphApi{} + subgraphClient = dataapi.NewSubgraphClient(mockSubgraphApi, mockLogger) + + config = dataapi.Config{ServerMode: "test", SocketAddr: ":8080", AllowOrigins: []string{"*"}, DisperserHostname: "localhost:32007", ChurnerHostname: "localhost:32009"} + + mockTx = &coremock.MockWriter{} + opId0, _ = core.OperatorIDFromHex("e22dae12a0074f20b8fc96a0489376db34075e545ef60c4845d264a732568311") + opId1, _ = core.OperatorIDFromHex("e23cae12a0074f20b8fc96a0489376db34075e545ef60c4845d264b732568312") + mockChainState, _ = coremock.NewChainDataMock(map[uint8]map[core.OperatorID]int{ + 0: { + opId0: 1, + opId1: 1, + }, + 1: { + opId0: 1, + opId1: 3, + }, + }) + mockIndexedChainState, _ = coremock.MakeChainDataMock(map[uint8]int{ + 0: 10, + 1: 10, + 2: 10, + }) + testDataApiServer = dataapi.NewServer(config, blobstore, prometheusClient, subgraphClient, mockTx, mockChainState, mockIndexedChainState, mockLogger, dataapi.NewMetrics(nil, "9001", mockLogger), &MockGRPCConnection{}, nil, nil) + + operatorInfo = &subgraph.IndexedOperatorInfo{ + Id: "0xa96bfb4a7ca981ad365220f336dc5a3de0816ebd5130b79bbc85aca94bc9b6ac", + PubkeyG1_X: "1336192159512049190945679273141887248666932624338963482128432381981287252980", + PubkeyG1_Y: "25195175002875833468883745675063986308012687914999552116603423331534089122704", + PubkeyG2_X: []graphql.String{ + "31597023645215426396093421944506635812143308313031252511177204078669540440732", + "21405255666568400552575831267661419473985517916677491029848981743882451844775", + }, + PubkeyG2_Y: []graphql.String{ + "8416989242565286095121881312760798075882411191579108217086927390793923664442", + "23612061731370453436662267863740141021994163834412349567410746669651828926551", + }, + SocketUpdates: []subgraph.SocketUpdates{ + { + Socket: "23.93.76.1:32005;32006", + }, + }, + } ) +type MockSubgraphClient struct { + mock.Mock +} + +type MockGRPCConnection struct{} + +type MockHttpClient struct { + ShouldSucceed bool +} + +func (mc *MockGRPCConnection) Dial(serviceName string, opts ...grpc.DialOption) (*grpc.ClientConn, error) { + // Here, return a mock connection. How you implement this depends on your testing framework + // and what aspects of the gRPC connection you wish to mock. + // For a simple approach, you might not even need to return a real *grpc.ClientConn + // but rather a mock or stub that satisfies the interface. + return &grpc.ClientConn{}, nil // Simplified, consider using a more sophisticated mock. +} + +type MockGRPNilConnection struct{} + +func (mc *MockGRPNilConnection) Dial(serviceName string, opts ...grpc.DialOption) (*grpc.ClientConn, error) { + // Here, return a mock connection. How you implement this depends on your testing framework + // and what aspects of the gRPC connection you wish to mock. + // For a simple approach, you might not even need to return a real *grpc.ClientConn + // but rather a mock or stub that satisfies the interface. + return nil, nil // Simplified, consider using a more sophisticated mock. +} + +type MockHealthCheckService struct { + ResponseMap map[string]*grpc_health_v1.HealthCheckResponse +} + func TestMain(m *testing.M) { setup(m) m.Run() @@ -95,7 +193,7 @@ func setup(m *testing.M) { panic("failed to create dynamodb client: " + err.Error()) } blobMetadataStore = blobstorev2.NewBlobMetadataStore(dynamoClient, logger, metadataTableName) - testDataApiServerV2 = dataapi.NewServerV2(config, blobMetadataStore, prometheusClient, subgraphClient, mockTx, mockChainState, mockIndexedChainState, mockLogger, dataapi.NewMetrics(nil, "9001", mockLogger)) + testDataApiServerV2 = serverv2.NewServerV2(config, blobMetadataStore, prometheusClient, subgraphClient, mockTx, mockChainState, mockIndexedChainState, mockLogger, dataapi.NewMetrics(nil, "9001", mockLogger)) } // makeCommitment returns a test hardcoded BlobCommitments @@ -156,6 +254,10 @@ func makeBlobHeaderV2(t *testing.T) *corev2.BlobHeader { } } +func setUpRouter() *gin.Engine { + return gin.Default() +} + func TestFetchBlobHandlerV2(t *testing.T) { r := setUpRouter() @@ -184,7 +286,7 @@ func TestFetchBlobHandlerV2(t *testing.T) { data, err := io.ReadAll(res.Body) assert.NoError(t, err) - var response dataapi.BlobResponse + var response serverv2.BlobResponse err = json.Unmarshal(data, &response) assert.NoError(t, err) assert.NotNil(t, response) @@ -225,7 +327,7 @@ func TestFetchBlobCertificateHandler(t *testing.T) { data, err := io.ReadAll(res.Body) assert.NoError(t, err) - var response dataapi.BlobCertificateResponse + var response serverv2.BlobCertificateResponse err = json.Unmarshal(data, &response) assert.NoError(t, err) assert.NotNil(t, response) @@ -275,7 +377,7 @@ func TestFetchBlobVerificationInfoHandler(t *testing.T) { data, err := io.ReadAll(res.Body) assert.NoError(t, err) - var response dataapi.BlobVerificationInfoResponse + var response serverv2.BlobVerificationInfoResponse err = json.Unmarshal(data, &response) assert.NoError(t, err) assert.NotNil(t, response) @@ -328,7 +430,7 @@ func TestFetchBatchHandlerV2(t *testing.T) { data, err := io.ReadAll(res.Body) assert.NoError(t, err) - var response dataapi.BatchResponse + var response serverv2.BatchResponse err = json.Unmarshal(data, &response) assert.NoError(t, err) assert.NotNil(t, response) @@ -448,7 +550,7 @@ func TestFetchMetricsSummaryHandler(t *testing.T) { data, err := io.ReadAll(res.Body) assert.NoError(t, err) - var response dataapi.MetricSummary + var response serverv2.MetricSummary err = json.Unmarshal(data, &response) assert.NoError(t, err) assert.NotNil(t, response) diff --git a/disperser/dataapi/v2/swagger.go b/disperser/dataapi/v2/swagger.go new file mode 100644 index 0000000000..1cdbcb7a6d --- /dev/null +++ b/disperser/dataapi/v2/swagger.go @@ -0,0 +1,13 @@ +package v2 + +// @title EigenDA Data Access API V2 +// @version 2.0 +// @description This is the EigenDA Data Access API V2 server. +// @BasePath /api/v2 +// @schemes https http + +// SwaggerV2Doc holds swagger docs for v2 +func SwaggerV2Doc() { + // This function exists solely to hold the swagger docs + // It should never be called +} diff --git a/disperser/dataapi/v2/testdata/prometheus-resp-avg-throughput.json b/disperser/dataapi/v2/testdata/prometheus-resp-avg-throughput.json new file mode 100644 index 0000000000..6a10b023f1 --- /dev/null +++ b/disperser/dataapi/v2/testdata/prometheus-resp-avg-throughput.json @@ -0,0 +1,14417 @@ +{ + "metric": { + "__name__": "blob_total{status=\"success\"}", + "instance": "host.docker.internal:8080", + "job": "bookmark", + "origin": "testclient", + "quorum": "0", + "status": "success", + "cluster": "test-cluster" + }, + "values": [ + [ + 1701292680.781, + "14333.333333333334" + ], + [ + 1701292681.781, + "14333.333333333334" + ], + [ + 1701292682.781, + "14333.333333333334" + ], + [ + 1701292683.781, + "14333.333333333334" + ], + [ + 1701292684.781, + "14333.333333333334" + ], + [ + 1701292685.781, + "14333.333333333334" + ], + [ + 1701292686.781, + "14333.333333333334" + ], + [ + 1701292687.781, + "14333.333333333334" + ], + [ + 1701292688.781, + "14333.333333333334" + ], + [ + 1701292689.781, + "14333.333333333334" + ], + [ + 1701292690.781, + "14333.333333333334" + ], + [ + 1701292691.781, + "14333.333333333334" + ], + [ + 1701292692.781, + "14333.333333333334" + ], + [ + 1701292693.781, + "14333.333333333334" + ], + [ + 1701292694.781, + "14333.333333333334" + ], + [ + 1701292695.781, + "14333.333333333334" + ], + [ + 1701292696.781, + "14333.333333333334" + ], + [ + 1701292697.781, + "14333.333333333334" + ], + [ + 1701292698.781, + "14333.333333333334" + ], + [ + 1701292699.781, + "14333.333333333334" + ], + [ + 1701292700.781, + "14333.333333333334" + ], + [ + 1701292701.781, + "14333.333333333334" + ], + [ + 1701292702.781, + "14333.333333333334" + ], + [ + 1701292703.781, + "14333.333333333334" + ], + [ + 1701292704.781, + "14333.333333333334" + ], + [ + 1701292705.781, + "14333.333333333334" + ], + [ + 1701292706.781, + "14333.333333333334" + ], + [ + 1701292707.781, + "14333.333333333334" + ], + [ + 1701292708.781, + "14333.333333333334" + ], + [ + 1701292709.781, + "14333.333333333334" + ], + [ + 1701292710.781, + "14333.333333333334" + ], + [ + 1701292711.781, + "14333.333333333334" + ], + [ + 1701292712.781, + "14333.333333333334" + ], + [ + 1701292713.781, + "14333.333333333334" + ], + [ + 1701292714.781, + "14333.333333333334" + ], + [ + 1701292715.781, + "14333.333333333334" + ], + [ + 1701292716.781, + "14333.333333333334" + ], + [ + 1701292717.781, + "14333.333333333334" + ], + [ + 1701292718.781, + "14333.333333333334" + ], + [ + 1701292719.781, + "8000" + ], + [ + 1701292720.781, + "8000" + ], + [ + 1701292721.781, + "8000" + ], + [ + 1701292722.781, + "8000" + ], + [ + 1701292723.781, + "8000" + ], + [ + 1701292724.781, + "8000" + ], + [ + 1701292725.781, + "8000" + ], + [ + 1701292726.781, + "8000" + ], + [ + 1701292727.781, + "8000" + ], + [ + 1701292728.781, + "8000" + ], + [ + 1701292729.781, + "8000" + ], + [ + 1701292730.781, + "8000" + ], + [ + 1701292731.781, + "8000" + ], + [ + 1701292732.781, + "8000" + ], + [ + 1701292733.781, + "8000" + ], + [ + 1701292734.781, + "8000" + ], + [ + 1701292735.781, + "8000" + ], + [ + 1701292736.781, + "8000" + ], + [ + 1701292737.781, + "8000" + ], + [ + 1701292738.781, + "8000" + ], + [ + 1701292739.781, + "8000" + ], + [ + 1701292740.781, + "8000" + ], + [ + 1701292741.781, + "8000" + ], + [ + 1701292742.781, + "8000" + ], + [ + 1701292743.781, + "8000" + ], + [ + 1701292744.781, + "8000" + ], + [ + 1701292745.781, + "8000" + ], + [ + 1701292746.781, + "8000" + ], + [ + 1701292747.781, + "8000" + ], + [ + 1701292748.781, + "8000" + ], + [ + 1701292749.781, + "8000" + ], + [ + 1701292750.781, + "8000" + ], + [ + 1701292751.781, + "8000" + ], + [ + 1701292752.781, + "8000" + ], + [ + 1701292753.781, + "8000" + ], + [ + 1701292754.781, + "8000" + ], + [ + 1701292755.781, + "8000" + ], + [ + 1701292756.781, + "8000" + ], + [ + 1701292757.781, + "8000" + ], + [ + 1701292758.781, + "8000" + ], + [ + 1701292759.781, + "8000" + ], + [ + 1701292760.781, + "8000" + ], + [ + 1701292761.781, + "8000" + ], + [ + 1701292762.781, + "8000" + ], + [ + 1701292763.781, + "8000" + ], + [ + 1701292764.781, + "8000" + ], + [ + 1701292765.781, + "8000" + ], + [ + 1701292766.781, + "8000" + ], + [ + 1701292767.781, + "8000" + ], + [ + 1701292768.781, + "8000" + ], + [ + 1701292769.781, + "8000" + ], + [ + 1701292770.781, + "8000" + ], + [ + 1701292771.781, + "8000" + ], + [ + 1701292772.781, + "8000" + ], + [ + 1701292773.781, + "8000" + ], + [ + 1701292774.781, + "8000" + ], + [ + 1701292775.781, + "8000" + ], + [ + 1701292776.781, + "8000" + ], + [ + 1701292777.781, + "8000" + ], + [ + 1701292778.781, + "8000" + ], + [ + 1701292779.781, + "11666.666666666666" + ], + [ + 1701292780.781, + "11666.666666666666" + ], + [ + 1701292781.781, + "11666.666666666666" + ], + [ + 1701292782.781, + "11666.666666666666" + ], + [ + 1701292783.781, + "11666.666666666666" + ], + [ + 1701292784.781, + "11666.666666666666" + ], + [ + 1701292785.781, + "11666.666666666666" + ], + [ + 1701292786.781, + "11666.666666666666" + ], + [ + 1701292787.781, + "11666.666666666666" + ], + [ + 1701292788.781, + "11666.666666666666" + ], + [ + 1701292789.781, + "11666.666666666666" + ], + [ + 1701292790.781, + "11666.666666666666" + ], + [ + 1701292791.781, + "11666.666666666666" + ], + [ + 1701292792.781, + "11666.666666666666" + ], + [ + 1701292793.781, + "11666.666666666666" + ], + [ + 1701292794.781, + "11666.666666666666" + ], + [ + 1701292795.781, + "11666.666666666666" + ], + [ + 1701292796.781, + "11666.666666666666" + ], + [ + 1701292797.781, + "11666.666666666666" + ], + [ + 1701292798.781, + "11666.666666666666" + ], + [ + 1701292799.781, + "11666.666666666666" + ], + [ + 1701292800.781, + "11666.666666666666" + ], + [ + 1701292801.781, + "11666.666666666666" + ], + [ + 1701292802.781, + "11666.666666666666" + ], + [ + 1701292803.781, + "11666.666666666666" + ], + [ + 1701292804.781, + "11666.666666666666" + ], + [ + 1701292805.781, + "11666.666666666666" + ], + [ + 1701292806.781, + "11666.666666666666" + ], + [ + 1701292807.781, + "11666.666666666666" + ], + [ + 1701292808.781, + "11666.666666666666" + ], + [ + 1701292809.781, + "11666.666666666666" + ], + [ + 1701292810.781, + "11666.666666666666" + ], + [ + 1701292811.781, + "11666.666666666666" + ], + [ + 1701292812.781, + "11666.666666666666" + ], + [ + 1701292813.781, + "11666.666666666666" + ], + [ + 1701292814.781, + "11666.666666666666" + ], + [ + 1701292815.781, + "11666.666666666666" + ], + [ + 1701292816.781, + "11666.666666666666" + ], + [ + 1701292817.781, + "11666.666666666666" + ], + [ + 1701292818.781, + "11666.666666666666" + ], + [ + 1701292819.781, + "11666.666666666666" + ], + [ + 1701292820.781, + "11666.666666666666" + ], + [ + 1701292821.781, + "11666.666666666666" + ], + [ + 1701292822.781, + "11666.666666666666" + ], + [ + 1701292823.781, + "11666.666666666666" + ], + [ + 1701292824.781, + "11666.666666666666" + ], + [ + 1701292825.781, + "11666.666666666666" + ], + [ + 1701292826.781, + "11666.666666666666" + ], + [ + 1701292827.781, + "11666.666666666666" + ], + [ + 1701292828.781, + "11666.666666666666" + ], + [ + 1701292829.781, + "11666.666666666666" + ], + [ + 1701292830.781, + "11666.666666666666" + ], + [ + 1701292831.781, + "11666.666666666666" + ], + [ + 1701292832.781, + "11666.666666666666" + ], + [ + 1701292833.781, + "11666.666666666666" + ], + [ + 1701292834.781, + "11666.666666666666" + ], + [ + 1701292835.781, + "11666.666666666666" + ], + [ + 1701292836.781, + "11666.666666666666" + ], + [ + 1701292837.781, + "11666.666666666666" + ], + [ + 1701292838.781, + "11666.666666666666" + ], + [ + 1701292839.781, + "4333.333333333333" + ], + [ + 1701292840.781, + "4333.333333333333" + ], + [ + 1701292841.781, + "4333.333333333333" + ], + [ + 1701292842.781, + "4333.333333333333" + ], + [ + 1701292843.781, + "4333.333333333333" + ], + [ + 1701292844.781, + "4333.333333333333" + ], + [ + 1701292845.781, + "4333.333333333333" + ], + [ + 1701292846.781, + "4333.333333333333" + ], + [ + 1701292847.781, + "4333.333333333333" + ], + [ + 1701292848.781, + "4333.333333333333" + ], + [ + 1701292849.781, + "4333.333333333333" + ], + [ + 1701292850.781, + "4333.333333333333" + ], + [ + 1701292851.781, + "4333.333333333333" + ], + [ + 1701292852.781, + "4333.333333333333" + ], + [ + 1701292853.781, + "4333.333333333333" + ], + [ + 1701292854.781, + "4333.333333333333" + ], + [ + 1701292855.781, + "4333.333333333333" + ], + [ + 1701292856.781, + "4333.333333333333" + ], + [ + 1701292857.781, + "4333.333333333333" + ], + [ + 1701292858.781, + "4333.333333333333" + ], + [ + 1701292859.781, + "4333.333333333333" + ], + [ + 1701292860.781, + "4333.333333333333" + ], + [ + 1701292861.781, + "4333.333333333333" + ], + [ + 1701292862.781, + "4333.333333333333" + ], + [ + 1701292863.781, + "4333.333333333333" + ], + [ + 1701292864.781, + "4333.333333333333" + ], + [ + 1701292865.781, + "4333.333333333333" + ], + [ + 1701292866.781, + "4333.333333333333" + ], + [ + 1701292867.781, + "4333.333333333333" + ], + [ + 1701292868.781, + "4333.333333333333" + ], + [ + 1701292869.781, + "4333.333333333333" + ], + [ + 1701292870.781, + "4333.333333333333" + ], + [ + 1701292871.781, + "4333.333333333333" + ], + [ + 1701292872.781, + "4333.333333333333" + ], + [ + 1701292873.781, + "4333.333333333333" + ], + [ + 1701292874.781, + "4333.333333333333" + ], + [ + 1701292875.781, + "4333.333333333333" + ], + [ + 1701292876.781, + "4333.333333333333" + ], + [ + 1701292877.781, + "4333.333333333333" + ], + [ + 1701292878.781, + "4333.333333333333" + ], + [ + 1701292879.781, + "4333.333333333333" + ], + [ + 1701292880.781, + "4333.333333333333" + ], + [ + 1701292881.781, + "4333.333333333333" + ], + [ + 1701292882.781, + "4333.333333333333" + ], + [ + 1701292883.781, + "4333.333333333333" + ], + [ + 1701292884.781, + "4333.333333333333" + ], + [ + 1701292885.781, + "4333.333333333333" + ], + [ + 1701292886.781, + "4333.333333333333" + ], + [ + 1701292887.781, + "4333.333333333333" + ], + [ + 1701292888.781, + "4333.333333333333" + ], + [ + 1701292889.781, + "4333.333333333333" + ], + [ + 1701292890.781, + "4333.333333333333" + ], + [ + 1701292891.781, + "4333.333333333333" + ], + [ + 1701292892.781, + "4333.333333333333" + ], + [ + 1701292893.781, + "4333.333333333333" + ], + [ + 1701292894.781, + "4333.333333333333" + ], + [ + 1701292895.781, + "4333.333333333333" + ], + [ + 1701292896.781, + "4333.333333333333" + ], + [ + 1701292897.781, + "4333.333333333333" + ], + [ + 1701292898.781, + "4333.333333333333" + ], + [ + 1701292899.781, + "12000" + ], + [ + 1701292900.781, + "12000" + ], + [ + 1701292901.781, + "12000" + ], + [ + 1701292902.781, + "12000" + ], + [ + 1701292903.781, + "12000" + ], + [ + 1701292904.781, + "12000" + ], + [ + 1701292905.781, + "12000" + ], + [ + 1701292906.781, + "12000" + ], + [ + 1701292907.781, + "12000" + ], + [ + 1701292908.781, + "12000" + ], + [ + 1701292909.781, + "12000" + ], + [ + 1701292910.781, + "12000" + ], + [ + 1701292911.781, + "12000" + ], + [ + 1701292912.781, + "12000" + ], + [ + 1701292913.781, + "12000" + ], + [ + 1701292914.781, + "12000" + ], + [ + 1701292915.781, + "12000" + ], + [ + 1701292916.781, + "12000" + ], + [ + 1701292917.781, + "12000" + ], + [ + 1701292918.781, + "12000" + ], + [ + 1701292919.781, + "12000" + ], + [ + 1701292920.781, + "12000" + ], + [ + 1701292921.781, + "12000" + ], + [ + 1701292922.781, + "12000" + ], + [ + 1701292923.781, + "12000" + ], + [ + 1701292924.781, + "12000" + ], + [ + 1701292925.781, + "12000" + ], + [ + 1701292926.781, + "12000" + ], + [ + 1701292927.781, + "12000" + ], + [ + 1701292928.781, + "12000" + ], + [ + 1701292929.781, + "12000" + ], + [ + 1701292930.781, + "12000" + ], + [ + 1701292931.781, + "12000" + ], + [ + 1701292932.781, + "12000" + ], + [ + 1701292933.781, + "12000" + ], + [ + 1701292934.781, + "12000" + ], + [ + 1701292935.781, + "12000" + ], + [ + 1701292936.781, + "12000" + ], + [ + 1701292937.781, + "12000" + ], + [ + 1701292938.781, + "12000" + ], + [ + 1701292939.781, + "12000" + ], + [ + 1701292940.781, + "12000" + ], + [ + 1701292941.781, + "12000" + ], + [ + 1701292942.781, + "12000" + ], + [ + 1701292943.781, + "12000" + ], + [ + 1701292944.781, + "12000" + ], + [ + 1701292945.781, + "12000" + ], + [ + 1701292946.781, + "12000" + ], + [ + 1701292947.781, + "12000" + ], + [ + 1701292948.781, + "12000" + ], + [ + 1701292949.781, + "12000" + ], + [ + 1701292950.781, + "12000" + ], + [ + 1701292951.781, + "12000" + ], + [ + 1701292952.781, + "12000" + ], + [ + 1701292953.781, + "12000" + ], + [ + 1701292954.781, + "12000" + ], + [ + 1701292955.781, + "12000" + ], + [ + 1701292956.781, + "12000" + ], + [ + 1701292957.781, + "12000" + ], + [ + 1701292958.781, + "12000" + ], + [ + 1701292959.781, + "13668" + ], + [ + 1701292960.781, + "13668" + ], + [ + 1701292961.781, + "13668" + ], + [ + 1701292962.781, + "13668" + ], + [ + 1701292963.781, + "13668" + ], + [ + 1701292964.781, + "13668" + ], + [ + 1701292965.781, + "13668" + ], + [ + 1701292966.781, + "13668" + ], + [ + 1701292967.781, + "13668" + ], + [ + 1701292968.781, + "13668" + ], + [ + 1701292969.781, + "13668" + ], + [ + 1701292970.781, + "13668" + ], + [ + 1701292971.781, + "13668" + ], + [ + 1701292972.781, + "13668" + ], + [ + 1701292973.781, + "13668" + ], + [ + 1701292974.781, + "13668" + ], + [ + 1701292975.781, + "13668" + ], + [ + 1701292976.781, + "13668" + ], + [ + 1701292977.781, + "13668" + ], + [ + 1701292978.781, + "13668" + ], + [ + 1701292979.781, + "13668" + ], + [ + 1701292980.781, + "13668" + ], + [ + 1701292981.781, + "13668" + ], + [ + 1701292982.781, + "13668" + ], + [ + 1701292983.781, + "13668" + ], + [ + 1701292984.781, + "13668" + ], + [ + 1701292985.781, + "13668" + ], + [ + 1701292986.781, + "13668" + ], + [ + 1701292987.781, + "13668" + ], + [ + 1701292988.781, + "13668" + ], + [ + 1701292989.781, + "13668" + ], + [ + 1701292990.781, + "13668" + ], + [ + 1701292991.781, + "13668" + ], + [ + 1701292992.781, + "13668" + ], + [ + 1701292993.781, + "13668" + ], + [ + 1701292994.781, + "13668" + ], + [ + 1701292995.781, + "13668" + ], + [ + 1701292996.781, + "13668" + ], + [ + 1701292997.781, + "13668" + ], + [ + 1701292998.781, + "13668" + ], + [ + 1701292999.781, + "13668" + ], + [ + 1701293000.781, + "13668" + ], + [ + 1701293001.781, + "13668" + ], + [ + 1701293002.781, + "13668" + ], + [ + 1701293003.781, + "13668" + ], + [ + 1701293004.781, + "13668" + ], + [ + 1701293005.781, + "13668" + ], + [ + 1701293006.781, + "13668" + ], + [ + 1701293007.781, + "13668" + ], + [ + 1701293008.781, + "13668" + ], + [ + 1701293009.781, + "13668" + ], + [ + 1701293010.781, + "13668" + ], + [ + 1701293011.781, + "13668" + ], + [ + 1701293012.781, + "13668" + ], + [ + 1701293013.781, + "13668" + ], + [ + 1701293014.781, + "13668" + ], + [ + 1701293015.781, + "13668" + ], + [ + 1701293016.781, + "13668" + ], + [ + 1701293017.781, + "13668" + ], + [ + 1701293018.781, + "13668" + ], + [ + 1701293019.781, + "10501.333333333334" + ], + [ + 1701293020.781, + "10501.333333333334" + ], + [ + 1701293021.781, + "10501.333333333334" + ], + [ + 1701293022.781, + "10501.333333333334" + ], + [ + 1701293023.781, + "10501.333333333334" + ], + [ + 1701293024.781, + "10501.333333333334" + ], + [ + 1701293025.781, + "10501.333333333334" + ], + [ + 1701293026.781, + "10501.333333333334" + ], + [ + 1701293027.781, + "10501.333333333334" + ], + [ + 1701293028.781, + "10501.333333333334" + ], + [ + 1701293029.781, + "10501.333333333334" + ], + [ + 1701293030.781, + "10501.333333333334" + ], + [ + 1701293031.781, + "10501.333333333334" + ], + [ + 1701293032.781, + "10501.333333333334" + ], + [ + 1701293033.781, + "10501.333333333334" + ], + [ + 1701293034.781, + "10501.333333333334" + ], + [ + 1701293035.781, + "10501.333333333334" + ], + [ + 1701293036.781, + "10501.333333333334" + ], + [ + 1701293037.781, + "10501.333333333334" + ], + [ + 1701293038.781, + "10501.333333333334" + ], + [ + 1701293039.781, + "10501.333333333334" + ], + [ + 1701293040.781, + "10501.333333333334" + ], + [ + 1701293041.781, + "10501.333333333334" + ], + [ + 1701293042.781, + "10501.333333333334" + ], + [ + 1701293043.781, + "10501.333333333334" + ], + [ + 1701293044.781, + "10501.333333333334" + ], + [ + 1701293045.781, + "10501.333333333334" + ], + [ + 1701293046.781, + "10501.333333333334" + ], + [ + 1701293047.781, + "10501.333333333334" + ], + [ + 1701293048.781, + "10501.333333333334" + ], + [ + 1701293049.781, + "10501.333333333334" + ], + [ + 1701293050.781, + "10501.333333333334" + ], + [ + 1701293051.781, + "10501.333333333334" + ], + [ + 1701293052.781, + "10501.333333333334" + ], + [ + 1701293053.781, + "10501.333333333334" + ], + [ + 1701293054.781, + "10501.333333333334" + ], + [ + 1701293055.781, + "10501.333333333334" + ], + [ + 1701293056.781, + "10501.333333333334" + ], + [ + 1701293057.781, + "10501.333333333334" + ], + [ + 1701293058.781, + "10501.333333333334" + ], + [ + 1701293059.781, + "10501.333333333334" + ], + [ + 1701293060.781, + "10501.333333333334" + ], + [ + 1701293061.781, + "10501.333333333334" + ], + [ + 1701293062.781, + "10501.333333333334" + ], + [ + 1701293063.781, + "10501.333333333334" + ], + [ + 1701293064.781, + "10501.333333333334" + ], + [ + 1701293065.781, + "10501.333333333334" + ], + [ + 1701293066.781, + "10501.333333333334" + ], + [ + 1701293067.781, + "10501.333333333334" + ], + [ + 1701293068.781, + "10501.333333333334" + ], + [ + 1701293069.781, + "10501.333333333334" + ], + [ + 1701293070.781, + "10501.333333333334" + ], + [ + 1701293071.781, + "10501.333333333334" + ], + [ + 1701293072.781, + "10501.333333333334" + ], + [ + 1701293073.781, + "10501.333333333334" + ], + [ + 1701293074.781, + "10501.333333333334" + ], + [ + 1701293075.781, + "10501.333333333334" + ], + [ + 1701293076.781, + "10501.333333333334" + ], + [ + 1701293077.781, + "10501.333333333334" + ], + [ + 1701293078.781, + "10501.333333333334" + ], + [ + 1701293079.781, + "4000" + ], + [ + 1701293080.781, + "4000" + ], + [ + 1701293081.781, + "4000" + ], + [ + 1701293082.781, + "4000" + ], + [ + 1701293083.781, + "4000" + ], + [ + 1701293084.781, + "4000" + ], + [ + 1701293085.781, + "4000" + ], + [ + 1701293086.781, + "4000" + ], + [ + 1701293087.781, + "4000" + ], + [ + 1701293088.781, + "4000" + ], + [ + 1701293089.781, + "4000" + ], + [ + 1701293090.781, + "4000" + ], + [ + 1701293091.781, + "4000" + ], + [ + 1701293092.781, + "4000" + ], + [ + 1701293093.781, + "4000" + ], + [ + 1701293094.781, + "4000" + ], + [ + 1701293095.781, + "4000" + ], + [ + 1701293096.781, + "4000" + ], + [ + 1701293097.781, + "4000" + ], + [ + 1701293098.781, + "4000" + ], + [ + 1701293099.781, + "4000" + ], + [ + 1701293100.781, + "4000" + ], + [ + 1701293101.781, + "4000" + ], + [ + 1701293102.781, + "4000" + ], + [ + 1701293103.781, + "4000" + ], + [ + 1701293104.781, + "4000" + ], + [ + 1701293105.781, + "4000" + ], + [ + 1701293106.781, + "4000" + ], + [ + 1701293107.781, + "4000" + ], + [ + 1701293108.781, + "4000" + ], + [ + 1701293109.781, + "4000" + ], + [ + 1701293110.781, + "4000" + ], + [ + 1701293111.781, + "4000" + ], + [ + 1701293112.781, + "4000" + ], + [ + 1701293113.781, + "4000" + ], + [ + 1701293114.781, + "4000" + ], + [ + 1701293115.781, + "4000" + ], + [ + 1701293116.781, + "4000" + ], + [ + 1701293117.781, + "4000" + ], + [ + 1701293118.781, + "4000" + ], + [ + 1701293119.781, + "4000" + ], + [ + 1701293120.781, + "4000" + ], + [ + 1701293121.781, + "4000" + ], + [ + 1701293122.781, + "4000" + ], + [ + 1701293123.781, + "4000" + ], + [ + 1701293124.781, + "4000" + ], + [ + 1701293125.781, + "4000" + ], + [ + 1701293126.781, + "4000" + ], + [ + 1701293127.781, + "4000" + ], + [ + 1701293128.781, + "4000" + ], + [ + 1701293129.781, + "4000" + ], + [ + 1701293130.781, + "4000" + ], + [ + 1701293131.781, + "4000" + ], + [ + 1701293132.781, + "4000" + ], + [ + 1701293133.781, + "4000" + ], + [ + 1701293134.781, + "4000" + ], + [ + 1701293135.781, + "4000" + ], + [ + 1701293136.781, + "4000" + ], + [ + 1701293137.781, + "4000" + ], + [ + 1701293138.781, + "4000" + ], + [ + 1701293139.781, + "14333.333333333334" + ], + [ + 1701293140.781, + "14333.333333333334" + ], + [ + 1701293141.781, + "14333.333333333334" + ], + [ + 1701293142.781, + "14333.333333333334" + ], + [ + 1701293143.781, + "14333.333333333334" + ], + [ + 1701293144.781, + "14333.333333333334" + ], + [ + 1701293145.781, + "14333.333333333334" + ], + [ + 1701293146.781, + "14333.333333333334" + ], + [ + 1701293147.781, + "14333.333333333334" + ], + [ + 1701293148.781, + "14333.333333333334" + ], + [ + 1701293149.781, + "14333.333333333334" + ], + [ + 1701293150.781, + "14333.333333333334" + ], + [ + 1701293151.781, + "14333.333333333334" + ], + [ + 1701293152.781, + "14333.333333333334" + ], + [ + 1701293153.781, + "14333.333333333334" + ], + [ + 1701293154.781, + "14333.333333333334" + ], + [ + 1701293155.781, + "14333.333333333334" + ], + [ + 1701293156.781, + "14333.333333333334" + ], + [ + 1701293157.781, + "14333.333333333334" + ], + [ + 1701293158.781, + "14333.333333333334" + ], + [ + 1701293159.781, + "14333.333333333334" + ], + [ + 1701293160.781, + "14333.333333333334" + ], + [ + 1701293161.781, + "14333.333333333334" + ], + [ + 1701293162.781, + "14333.333333333334" + ], + [ + 1701293163.781, + "14333.333333333334" + ], + [ + 1701293164.781, + "14333.333333333334" + ], + [ + 1701293165.781, + "14333.333333333334" + ], + [ + 1701293166.781, + "14333.333333333334" + ], + [ + 1701293167.781, + "14333.333333333334" + ], + [ + 1701293168.781, + "14333.333333333334" + ], + [ + 1701293169.781, + "14333.333333333334" + ], + [ + 1701293170.781, + "14333.333333333334" + ], + [ + 1701293171.781, + "14333.333333333334" + ], + [ + 1701293172.781, + "14333.333333333334" + ], + [ + 1701293173.781, + "14333.333333333334" + ], + [ + 1701293174.781, + "14333.333333333334" + ], + [ + 1701293175.781, + "14333.333333333334" + ], + [ + 1701293176.781, + "14333.333333333334" + ], + [ + 1701293177.781, + "14333.333333333334" + ], + [ + 1701293178.781, + "14333.333333333334" + ], + [ + 1701293179.781, + "14333.333333333334" + ], + [ + 1701293180.781, + "14333.333333333334" + ], + [ + 1701293181.781, + "14333.333333333334" + ], + [ + 1701293182.781, + "14333.333333333334" + ], + [ + 1701293183.781, + "14333.333333333334" + ], + [ + 1701293184.781, + "14333.333333333334" + ], + [ + 1701293185.781, + "14333.333333333334" + ], + [ + 1701293186.781, + "14333.333333333334" + ], + [ + 1701293187.781, + "14333.333333333334" + ], + [ + 1701293188.781, + "14333.333333333334" + ], + [ + 1701293189.781, + "14333.333333333334" + ], + [ + 1701293190.781, + "14333.333333333334" + ], + [ + 1701293191.781, + "14333.333333333334" + ], + [ + 1701293192.781, + "14333.333333333334" + ], + [ + 1701293193.781, + "14333.333333333334" + ], + [ + 1701293194.781, + "14333.333333333334" + ], + [ + 1701293195.781, + "14333.333333333334" + ], + [ + 1701293196.781, + "14333.333333333334" + ], + [ + 1701293197.781, + "14333.333333333334" + ], + [ + 1701293198.781, + "14333.333333333334" + ], + [ + 1701293199.781, + "12000" + ], + [ + 1701293200.781, + "12000" + ], + [ + 1701293201.781, + "12000" + ], + [ + 1701293202.781, + "12000" + ], + [ + 1701293203.781, + "12000" + ], + [ + 1701293204.781, + "12000" + ], + [ + 1701293205.781, + "12000" + ], + [ + 1701293206.781, + "12000" + ], + [ + 1701293207.781, + "12000" + ], + [ + 1701293208.781, + "12000" + ], + [ + 1701293209.781, + "12000" + ], + [ + 1701293210.781, + "12000" + ], + [ + 1701293211.781, + "12000" + ], + [ + 1701293212.781, + "12000" + ], + [ + 1701293213.781, + "12000" + ], + [ + 1701293214.781, + "12000" + ], + [ + 1701293215.781, + "12000" + ], + [ + 1701293216.781, + "12000" + ], + [ + 1701293217.781, + "12000" + ], + [ + 1701293218.781, + "12000" + ], + [ + 1701293219.781, + "12000" + ], + [ + 1701293220.781, + "12000" + ], + [ + 1701293221.781, + "12000" + ], + [ + 1701293222.781, + "12000" + ], + [ + 1701293223.781, + "12000" + ], + [ + 1701293224.781, + "12000" + ], + [ + 1701293225.781, + "12000" + ], + [ + 1701293226.781, + "12000" + ], + [ + 1701293227.781, + "12000" + ], + [ + 1701293228.781, + "12000" + ], + [ + 1701293229.781, + "12000" + ], + [ + 1701293230.781, + "12000" + ], + [ + 1701293231.781, + "12000" + ], + [ + 1701293232.781, + "12000" + ], + [ + 1701293233.781, + "12000" + ], + [ + 1701293234.781, + "12000" + ], + [ + 1701293235.781, + "12000" + ], + [ + 1701293236.781, + "12000" + ], + [ + 1701293237.781, + "12000" + ], + [ + 1701293238.781, + "12000" + ], + [ + 1701293239.781, + "12000" + ], + [ + 1701293240.781, + "12000" + ], + [ + 1701293241.781, + "12000" + ], + [ + 1701293242.781, + "12000" + ], + [ + 1701293243.781, + "12000" + ], + [ + 1701293244.781, + "12000" + ], + [ + 1701293245.781, + "12000" + ], + [ + 1701293246.781, + "12000" + ], + [ + 1701293247.781, + "12000" + ], + [ + 1701293248.781, + "12000" + ], + [ + 1701293249.781, + "12000" + ], + [ + 1701293250.781, + "12000" + ], + [ + 1701293251.781, + "12000" + ], + [ + 1701293252.781, + "12000" + ], + [ + 1701293253.781, + "12000" + ], + [ + 1701293254.781, + "12000" + ], + [ + 1701293255.781, + "12000" + ], + [ + 1701293256.781, + "12000" + ], + [ + 1701293257.781, + "12000" + ], + [ + 1701293258.781, + "12000" + ], + [ + 1701293259.781, + "3666.6666666666665" + ], + [ + 1701293260.781, + "3666.6666666666665" + ], + [ + 1701293261.781, + "3666.6666666666665" + ], + [ + 1701293262.781, + "3666.6666666666665" + ], + [ + 1701293263.781, + "3666.6666666666665" + ], + [ + 1701293264.781, + "3666.6666666666665" + ], + [ + 1701293265.781, + "3666.6666666666665" + ], + [ + 1701293266.781, + "3666.6666666666665" + ], + [ + 1701293267.781, + "3666.6666666666665" + ], + [ + 1701293268.781, + "3666.6666666666665" + ], + [ + 1701293269.781, + "3666.6666666666665" + ], + [ + 1701293270.781, + "3666.6666666666665" + ], + [ + 1701293271.781, + "3666.6666666666665" + ], + [ + 1701293272.781, + "3666.6666666666665" + ], + [ + 1701293273.781, + "3666.6666666666665" + ], + [ + 1701293274.781, + "3666.6666666666665" + ], + [ + 1701293275.781, + "3666.6666666666665" + ], + [ + 1701293276.781, + "3666.6666666666665" + ], + [ + 1701293277.781, + "3666.6666666666665" + ], + [ + 1701293278.781, + "3666.6666666666665" + ], + [ + 1701293279.781, + "3666.6666666666665" + ], + [ + 1701293280.781, + "3666.6666666666665" + ], + [ + 1701293281.781, + "3666.6666666666665" + ], + [ + 1701293282.781, + "3666.6666666666665" + ], + [ + 1701293283.781, + "3666.6666666666665" + ], + [ + 1701293284.781, + "3666.6666666666665" + ], + [ + 1701293285.781, + "3666.6666666666665" + ], + [ + 1701293286.781, + "3666.6666666666665" + ], + [ + 1701293287.781, + "3666.6666666666665" + ], + [ + 1701293288.781, + "3666.6666666666665" + ], + [ + 1701293289.781, + "3666.6666666666665" + ], + [ + 1701293290.781, + "3666.6666666666665" + ], + [ + 1701293291.781, + "3666.6666666666665" + ], + [ + 1701293292.781, + "3666.6666666666665" + ], + [ + 1701293293.781, + "3666.6666666666665" + ], + [ + 1701293294.781, + "3666.6666666666665" + ], + [ + 1701293295.781, + "3666.6666666666665" + ], + [ + 1701293296.781, + "3666.6666666666665" + ], + [ + 1701293297.781, + "3666.6666666666665" + ], + [ + 1701293298.781, + "3666.6666666666665" + ], + [ + 1701293299.781, + "3666.6666666666665" + ], + [ + 1701293300.781, + "3666.6666666666665" + ], + [ + 1701293301.781, + "3666.6666666666665" + ], + [ + 1701293302.781, + "3666.6666666666665" + ], + [ + 1701293303.781, + "3666.6666666666665" + ], + [ + 1701293304.781, + "3666.6666666666665" + ], + [ + 1701293305.781, + "3666.6666666666665" + ], + [ + 1701293306.781, + "3666.6666666666665" + ], + [ + 1701293307.781, + "3666.6666666666665" + ], + [ + 1701293308.781, + "3666.6666666666665" + ], + [ + 1701293309.781, + "3666.6666666666665" + ], + [ + 1701293310.781, + "3666.6666666666665" + ], + [ + 1701293311.781, + "3666.6666666666665" + ], + [ + 1701293312.781, + "3666.6666666666665" + ], + [ + 1701293313.781, + "3666.6666666666665" + ], + [ + 1701293314.781, + "3666.6666666666665" + ], + [ + 1701293315.781, + "3666.6666666666665" + ], + [ + 1701293316.781, + "3666.6666666666665" + ], + [ + 1701293317.781, + "3666.6666666666665" + ], + [ + 1701293318.781, + "3666.6666666666665" + ], + [ + 1701293319.781, + "12000" + ], + [ + 1701293320.781, + "12000" + ], + [ + 1701293321.781, + "12000" + ], + [ + 1701293322.781, + "12000" + ], + [ + 1701293323.781, + "12000" + ], + [ + 1701293324.781, + "12000" + ], + [ + 1701293325.781, + "12000" + ], + [ + 1701293326.781, + "12000" + ], + [ + 1701293327.781, + "12000" + ], + [ + 1701293328.781, + "12000" + ], + [ + 1701293329.781, + "12000" + ], + [ + 1701293330.781, + "12000" + ], + [ + 1701293331.781, + "12000" + ], + [ + 1701293332.781, + "12000" + ], + [ + 1701293333.781, + "12000" + ], + [ + 1701293334.781, + "12000" + ], + [ + 1701293335.781, + "12000" + ], + [ + 1701293336.781, + "12000" + ], + [ + 1701293337.781, + "12000" + ], + [ + 1701293338.781, + "12000" + ], + [ + 1701293339.781, + "12000" + ], + [ + 1701293340.781, + "12000" + ], + [ + 1701293341.781, + "12000" + ], + [ + 1701293342.781, + "12000" + ], + [ + 1701293343.781, + "12000" + ], + [ + 1701293344.781, + "12000" + ], + [ + 1701293345.781, + "12000" + ], + [ + 1701293346.781, + "12000" + ], + [ + 1701293347.781, + "12000" + ], + [ + 1701293348.781, + "12000" + ], + [ + 1701293349.781, + "12000" + ], + [ + 1701293350.781, + "12000" + ], + [ + 1701293351.781, + "12000" + ], + [ + 1701293352.781, + "12000" + ], + [ + 1701293353.781, + "12000" + ], + [ + 1701293354.781, + "12000" + ], + [ + 1701293355.781, + "12000" + ], + [ + 1701293356.781, + "12000" + ], + [ + 1701293357.781, + "12000" + ], + [ + 1701293358.781, + "12000" + ], + [ + 1701293359.781, + "12000" + ], + [ + 1701293360.781, + "12000" + ], + [ + 1701293361.781, + "12000" + ], + [ + 1701293362.781, + "12000" + ], + [ + 1701293363.781, + "12000" + ], + [ + 1701293364.781, + "12000" + ], + [ + 1701293365.781, + "12000" + ], + [ + 1701293366.781, + "12000" + ], + [ + 1701293367.781, + "12000" + ], + [ + 1701293368.781, + "12000" + ], + [ + 1701293369.781, + "12000" + ], + [ + 1701293370.781, + "12000" + ], + [ + 1701293371.781, + "12000" + ], + [ + 1701293372.781, + "12000" + ], + [ + 1701293373.781, + "12000" + ], + [ + 1701293374.781, + "12000" + ], + [ + 1701293375.781, + "12000" + ], + [ + 1701293376.781, + "12000" + ], + [ + 1701293377.781, + "12000" + ], + [ + 1701293378.781, + "12000" + ], + [ + 1701293379.781, + "10000" + ], + [ + 1701293380.781, + "10000" + ], + [ + 1701293381.781, + "10000" + ], + [ + 1701293382.781, + "10000" + ], + [ + 1701293383.781, + "10000" + ], + [ + 1701293384.781, + "10000" + ], + [ + 1701293385.781, + "10000" + ], + [ + 1701293386.781, + "10000" + ], + [ + 1701293387.781, + "10000" + ], + [ + 1701293388.781, + "10000" + ], + [ + 1701293389.781, + "10000" + ], + [ + 1701293390.781, + "10000" + ], + [ + 1701293391.781, + "10000" + ], + [ + 1701293392.781, + "10000" + ], + [ + 1701293393.781, + "10000" + ], + [ + 1701293394.781, + "10000" + ], + [ + 1701293395.781, + "10000" + ], + [ + 1701293396.781, + "10000" + ], + [ + 1701293397.781, + "10000" + ], + [ + 1701293398.781, + "10000" + ], + [ + 1701293399.781, + "10000" + ], + [ + 1701293400.781, + "10000" + ], + [ + 1701293401.781, + "10000" + ], + [ + 1701293402.781, + "10000" + ], + [ + 1701293403.781, + "10000" + ], + [ + 1701293404.781, + "10000" + ], + [ + 1701293405.781, + "10000" + ], + [ + 1701293406.781, + "10000" + ], + [ + 1701293407.781, + "10000" + ], + [ + 1701293408.781, + "10000" + ], + [ + 1701293409.781, + "10000" + ], + [ + 1701293410.781, + "10000" + ], + [ + 1701293411.781, + "10000" + ], + [ + 1701293412.781, + "10000" + ], + [ + 1701293413.781, + "10000" + ], + [ + 1701293414.781, + "10000" + ], + [ + 1701293415.781, + "10000" + ], + [ + 1701293416.781, + "10000" + ], + [ + 1701293417.781, + "10000" + ], + [ + 1701293418.781, + "10000" + ], + [ + 1701293419.781, + "10000" + ], + [ + 1701293420.781, + "10000" + ], + [ + 1701293421.781, + "10000" + ], + [ + 1701293422.781, + "10000" + ], + [ + 1701293423.781, + "10000" + ], + [ + 1701293424.781, + "10000" + ], + [ + 1701293425.781, + "10000" + ], + [ + 1701293426.781, + "10000" + ], + [ + 1701293427.781, + "10000" + ], + [ + 1701293428.781, + "10000" + ], + [ + 1701293429.781, + "10000" + ], + [ + 1701293430.781, + "10000" + ], + [ + 1701293431.781, + "10000" + ], + [ + 1701293432.781, + "10000" + ], + [ + 1701293433.781, + "10000" + ], + [ + 1701293434.781, + "10000" + ], + [ + 1701293435.781, + "10000" + ], + [ + 1701293436.781, + "10000" + ], + [ + 1701293437.781, + "10000" + ], + [ + 1701293438.781, + "10000" + ], + [ + 1701293439.781, + "10000" + ], + [ + 1701293440.781, + "10000" + ], + [ + 1701293441.781, + "10000" + ], + [ + 1701293442.781, + "10000" + ], + [ + 1701293443.781, + "10000" + ], + [ + 1701293444.781, + "10000" + ], + [ + 1701293445.781, + "10000" + ], + [ + 1701293446.781, + "10000" + ], + [ + 1701293447.781, + "10000" + ], + [ + 1701293448.781, + "10000" + ], + [ + 1701293449.781, + "10000" + ], + [ + 1701293450.781, + "10000" + ], + [ + 1701293451.781, + "10000" + ], + [ + 1701293452.781, + "10000" + ], + [ + 1701293453.781, + "10000" + ], + [ + 1701293454.781, + "10000" + ], + [ + 1701293455.781, + "10000" + ], + [ + 1701293456.781, + "10000" + ], + [ + 1701293457.781, + "10000" + ], + [ + 1701293458.781, + "10000" + ], + [ + 1701293459.781, + "10000" + ], + [ + 1701293460.781, + "10000" + ], + [ + 1701293461.781, + "10000" + ], + [ + 1701293462.781, + "10000" + ], + [ + 1701293463.781, + "10000" + ], + [ + 1701293464.781, + "10000" + ], + [ + 1701293465.781, + "10000" + ], + [ + 1701293466.781, + "10000" + ], + [ + 1701293467.781, + "10000" + ], + [ + 1701293468.781, + "10000" + ], + [ + 1701293469.781, + "10000" + ], + [ + 1701293470.781, + "10000" + ], + [ + 1701293471.781, + "10000" + ], + [ + 1701293472.781, + "10000" + ], + [ + 1701293473.781, + "10000" + ], + [ + 1701293474.781, + "10000" + ], + [ + 1701293475.781, + "10000" + ], + [ + 1701293476.781, + "10000" + ], + [ + 1701293477.781, + "10000" + ], + [ + 1701293478.781, + "10000" + ], + [ + 1701293479.781, + "10000" + ], + [ + 1701293480.781, + "10000" + ], + [ + 1701293481.781, + "10000" + ], + [ + 1701293482.781, + "10000" + ], + [ + 1701293483.781, + "10000" + ], + [ + 1701293484.781, + "10000" + ], + [ + 1701293485.781, + "10000" + ], + [ + 1701293486.781, + "10000" + ], + [ + 1701293487.781, + "10000" + ], + [ + 1701293488.781, + "10000" + ], + [ + 1701293489.781, + "10000" + ], + [ + 1701293490.781, + "10000" + ], + [ + 1701293491.781, + "10000" + ], + [ + 1701293492.781, + "10000" + ], + [ + 1701293493.781, + "10000" + ], + [ + 1701293494.781, + "10000" + ], + [ + 1701293495.781, + "10000" + ], + [ + 1701293496.781, + "10000" + ], + [ + 1701293497.781, + "10000" + ], + [ + 1701293498.781, + "10000" + ], + [ + 1701293499.781, + "10333.333333333334" + ], + [ + 1701293500.781, + "10333.333333333334" + ], + [ + 1701293501.781, + "10333.333333333334" + ], + [ + 1701293502.781, + "10333.333333333334" + ], + [ + 1701293503.781, + "10333.333333333334" + ], + [ + 1701293504.781, + "10333.333333333334" + ], + [ + 1701293505.781, + "10333.333333333334" + ], + [ + 1701293506.781, + "10333.333333333334" + ], + [ + 1701293507.781, + "10333.333333333334" + ], + [ + 1701293508.781, + "10333.333333333334" + ], + [ + 1701293509.781, + "10333.333333333334" + ], + [ + 1701293510.781, + "10333.333333333334" + ], + [ + 1701293511.781, + "10333.333333333334" + ], + [ + 1701293512.781, + "10333.333333333334" + ], + [ + 1701293513.781, + "10333.333333333334" + ], + [ + 1701293514.781, + "10333.333333333334" + ], + [ + 1701293515.781, + "10333.333333333334" + ], + [ + 1701293516.781, + "10333.333333333334" + ], + [ + 1701293517.781, + "10333.333333333334" + ], + [ + 1701293518.781, + "10333.333333333334" + ], + [ + 1701293519.781, + "10333.333333333334" + ], + [ + 1701293520.781, + "10333.333333333334" + ], + [ + 1701293521.781, + "10333.333333333334" + ], + [ + 1701293522.781, + "10333.333333333334" + ], + [ + 1701293523.781, + "10333.333333333334" + ], + [ + 1701293524.781, + "10333.333333333334" + ], + [ + 1701293525.781, + "10333.333333333334" + ], + [ + 1701293526.781, + "10333.333333333334" + ], + [ + 1701293527.781, + "10333.333333333334" + ], + [ + 1701293528.781, + "10333.333333333334" + ], + [ + 1701293529.781, + "10333.333333333334" + ], + [ + 1701293530.781, + "10333.333333333334" + ], + [ + 1701293531.781, + "10333.333333333334" + ], + [ + 1701293532.781, + "10333.333333333334" + ], + [ + 1701293533.781, + "10333.333333333334" + ], + [ + 1701293534.781, + "10333.333333333334" + ], + [ + 1701293535.781, + "10333.333333333334" + ], + [ + 1701293536.781, + "10333.333333333334" + ], + [ + 1701293537.781, + "10333.333333333334" + ], + [ + 1701293538.781, + "10333.333333333334" + ], + [ + 1701293539.781, + "10333.333333333334" + ], + [ + 1701293540.781, + "10333.333333333334" + ], + [ + 1701293541.781, + "10333.333333333334" + ], + [ + 1701293542.781, + "10333.333333333334" + ], + [ + 1701293543.781, + "10333.333333333334" + ], + [ + 1701293544.781, + "10333.333333333334" + ], + [ + 1701293545.781, + "10333.333333333334" + ], + [ + 1701293546.781, + "10333.333333333334" + ], + [ + 1701293547.781, + "10333.333333333334" + ], + [ + 1701293548.781, + "10333.333333333334" + ], + [ + 1701293549.781, + "10333.333333333334" + ], + [ + 1701293550.781, + "10333.333333333334" + ], + [ + 1701293551.781, + "10333.333333333334" + ], + [ + 1701293552.781, + "10333.333333333334" + ], + [ + 1701293553.781, + "10333.333333333334" + ], + [ + 1701293554.781, + "10333.333333333334" + ], + [ + 1701293555.781, + "10333.333333333334" + ], + [ + 1701293556.781, + "10333.333333333334" + ], + [ + 1701293557.781, + "10333.333333333334" + ], + [ + 1701293558.781, + "10333.333333333334" + ], + [ + 1701293559.781, + "15333.333333333334" + ], + [ + 1701293560.781, + "15333.333333333334" + ], + [ + 1701293561.781, + "15333.333333333334" + ], + [ + 1701293562.781, + "15333.333333333334" + ], + [ + 1701293563.781, + "15333.333333333334" + ], + [ + 1701293564.781, + "15333.333333333334" + ], + [ + 1701293565.781, + "15333.333333333334" + ], + [ + 1701293566.781, + "15333.333333333334" + ], + [ + 1701293567.781, + "15333.333333333334" + ], + [ + 1701293568.781, + "15333.333333333334" + ], + [ + 1701293569.781, + "15333.333333333334" + ], + [ + 1701293570.781, + "15333.333333333334" + ], + [ + 1701293571.781, + "15333.333333333334" + ], + [ + 1701293572.781, + "15333.333333333334" + ], + [ + 1701293573.781, + "15333.333333333334" + ], + [ + 1701293574.781, + "15333.333333333334" + ], + [ + 1701293575.781, + "15333.333333333334" + ], + [ + 1701293576.781, + "15333.333333333334" + ], + [ + 1701293577.781, + "15333.333333333334" + ], + [ + 1701293578.781, + "15333.333333333334" + ], + [ + 1701293579.781, + "15333.333333333334" + ], + [ + 1701293580.781, + "15333.333333333334" + ], + [ + 1701293581.781, + "15333.333333333334" + ], + [ + 1701293582.781, + "15333.333333333334" + ], + [ + 1701293583.781, + "15333.333333333334" + ], + [ + 1701293584.781, + "15333.333333333334" + ], + [ + 1701293585.781, + "15333.333333333334" + ], + [ + 1701293586.781, + "15333.333333333334" + ], + [ + 1701293587.781, + "15333.333333333334" + ], + [ + 1701293588.781, + "15333.333333333334" + ], + [ + 1701293589.781, + "15333.333333333334" + ], + [ + 1701293590.781, + "15333.333333333334" + ], + [ + 1701293591.781, + "15333.333333333334" + ], + [ + 1701293592.781, + "15333.333333333334" + ], + [ + 1701293593.781, + "15333.333333333334" + ], + [ + 1701293594.781, + "15333.333333333334" + ], + [ + 1701293595.781, + "15333.333333333334" + ], + [ + 1701293596.781, + "15333.333333333334" + ], + [ + 1701293597.781, + "15333.333333333334" + ], + [ + 1701293598.781, + "15333.333333333334" + ], + [ + 1701293599.781, + "15333.333333333334" + ], + [ + 1701293600.781, + "15333.333333333334" + ], + [ + 1701293601.781, + "15333.333333333334" + ], + [ + 1701293602.781, + "15333.333333333334" + ], + [ + 1701293603.781, + "15333.333333333334" + ], + [ + 1701293604.781, + "15333.333333333334" + ], + [ + 1701293605.781, + "15333.333333333334" + ], + [ + 1701293606.781, + "15333.333333333334" + ], + [ + 1701293607.781, + "15333.333333333334" + ], + [ + 1701293608.781, + "15333.333333333334" + ], + [ + 1701293609.781, + "15333.333333333334" + ], + [ + 1701293610.781, + "15333.333333333334" + ], + [ + 1701293611.781, + "15333.333333333334" + ], + [ + 1701293612.781, + "15333.333333333334" + ], + [ + 1701293613.781, + "15333.333333333334" + ], + [ + 1701293614.781, + "15333.333333333334" + ], + [ + 1701293615.781, + "15333.333333333334" + ], + [ + 1701293616.781, + "15333.333333333334" + ], + [ + 1701293617.781, + "15333.333333333334" + ], + [ + 1701293618.781, + "15333.333333333334" + ], + [ + 1701293619.781, + "15333.333333333334" + ], + [ + 1701293620.781, + "15333.333333333334" + ], + [ + 1701293621.781, + "15333.333333333334" + ], + [ + 1701293622.781, + "15333.333333333334" + ], + [ + 1701293623.781, + "15333.333333333334" + ], + [ + 1701293624.781, + "15333.333333333334" + ], + [ + 1701293625.781, + "15333.333333333334" + ], + [ + 1701293626.781, + "15333.333333333334" + ], + [ + 1701293627.781, + "15333.333333333334" + ], + [ + 1701293628.781, + "15333.333333333334" + ], + [ + 1701293629.781, + "15333.333333333334" + ], + [ + 1701293630.781, + "15333.333333333334" + ], + [ + 1701293631.781, + "15333.333333333334" + ], + [ + 1701293632.781, + "15333.333333333334" + ], + [ + 1701293633.781, + "15333.333333333334" + ], + [ + 1701293634.781, + "15333.333333333334" + ], + [ + 1701293635.781, + "15333.333333333334" + ], + [ + 1701293636.781, + "15333.333333333334" + ], + [ + 1701293637.781, + "15333.333333333334" + ], + [ + 1701293638.781, + "15333.333333333334" + ], + [ + 1701293639.781, + "15333.333333333334" + ], + [ + 1701293640.781, + "15333.333333333334" + ], + [ + 1701293641.781, + "15333.333333333334" + ], + [ + 1701293642.781, + "15333.333333333334" + ], + [ + 1701293643.781, + "15333.333333333334" + ], + [ + 1701293644.781, + "15333.333333333334" + ], + [ + 1701293645.781, + "15333.333333333334" + ], + [ + 1701293646.781, + "15333.333333333334" + ], + [ + 1701293647.781, + "15333.333333333334" + ], + [ + 1701293648.781, + "15333.333333333334" + ], + [ + 1701293649.781, + "15333.333333333334" + ], + [ + 1701293650.781, + "15333.333333333334" + ], + [ + 1701293651.781, + "15333.333333333334" + ], + [ + 1701293652.781, + "15333.333333333334" + ], + [ + 1701293653.781, + "15333.333333333334" + ], + [ + 1701293654.781, + "15333.333333333334" + ], + [ + 1701293655.781, + "15333.333333333334" + ], + [ + 1701293656.781, + "15333.333333333334" + ], + [ + 1701293657.781, + "15333.333333333334" + ], + [ + 1701293658.781, + "15333.333333333334" + ], + [ + 1701293659.781, + "15333.333333333334" + ], + [ + 1701293660.781, + "15333.333333333334" + ], + [ + 1701293661.781, + "15333.333333333334" + ], + [ + 1701293662.781, + "15333.333333333334" + ], + [ + 1701293663.781, + "15333.333333333334" + ], + [ + 1701293664.781, + "15333.333333333334" + ], + [ + 1701293665.781, + "15333.333333333334" + ], + [ + 1701293666.781, + "15333.333333333334" + ], + [ + 1701293667.781, + "15333.333333333334" + ], + [ + 1701293668.781, + "15333.333333333334" + ], + [ + 1701293669.781, + "15333.333333333334" + ], + [ + 1701293670.781, + "15333.333333333334" + ], + [ + 1701293671.781, + "15333.333333333334" + ], + [ + 1701293672.781, + "15333.333333333334" + ], + [ + 1701293673.781, + "15333.333333333334" + ], + [ + 1701293674.781, + "15333.333333333334" + ], + [ + 1701293675.781, + "15333.333333333334" + ], + [ + 1701293676.781, + "15333.333333333334" + ], + [ + 1701293677.781, + "15333.333333333334" + ], + [ + 1701293678.781, + "15333.333333333334" + ], + [ + 1701293679.781, + "3666.6666666666665" + ], + [ + 1701293680.781, + "3666.6666666666665" + ], + [ + 1701293681.781, + "3666.6666666666665" + ], + [ + 1701293682.781, + "3666.6666666666665" + ], + [ + 1701293683.781, + "3666.6666666666665" + ], + [ + 1701293684.781, + "3666.6666666666665" + ], + [ + 1701293685.781, + "3666.6666666666665" + ], + [ + 1701293686.781, + "3666.6666666666665" + ], + [ + 1701293687.781, + "3666.6666666666665" + ], + [ + 1701293688.781, + "3666.6666666666665" + ], + [ + 1701293689.781, + "3666.6666666666665" + ], + [ + 1701293690.781, + "3666.6666666666665" + ], + [ + 1701293691.781, + "3666.6666666666665" + ], + [ + 1701293692.781, + "3666.6666666666665" + ], + [ + 1701293693.781, + "3666.6666666666665" + ], + [ + 1701293694.781, + "3666.6666666666665" + ], + [ + 1701293695.781, + "3666.6666666666665" + ], + [ + 1701293696.781, + "3666.6666666666665" + ], + [ + 1701293697.781, + "3666.6666666666665" + ], + [ + 1701293698.781, + "3666.6666666666665" + ], + [ + 1701293699.781, + "3666.6666666666665" + ], + [ + 1701293700.781, + "3666.6666666666665" + ], + [ + 1701293701.781, + "3666.6666666666665" + ], + [ + 1701293702.781, + "3666.6666666666665" + ], + [ + 1701293703.781, + "3666.6666666666665" + ], + [ + 1701293704.781, + "3666.6666666666665" + ], + [ + 1701293705.781, + "3666.6666666666665" + ], + [ + 1701293706.781, + "3666.6666666666665" + ], + [ + 1701293707.781, + "3666.6666666666665" + ], + [ + 1701293708.781, + "3666.6666666666665" + ], + [ + 1701293709.781, + "3666.6666666666665" + ], + [ + 1701293710.781, + "3666.6666666666665" + ], + [ + 1701293711.781, + "3666.6666666666665" + ], + [ + 1701293712.781, + "3666.6666666666665" + ], + [ + 1701293713.781, + "3666.6666666666665" + ], + [ + 1701293714.781, + "3666.6666666666665" + ], + [ + 1701293715.781, + "3666.6666666666665" + ], + [ + 1701293716.781, + "3666.6666666666665" + ], + [ + 1701293717.781, + "3666.6666666666665" + ], + [ + 1701293718.781, + "3666.6666666666665" + ], + [ + 1701293719.781, + "3666.6666666666665" + ], + [ + 1701293720.781, + "3666.6666666666665" + ], + [ + 1701293721.781, + "3666.6666666666665" + ], + [ + 1701293722.781, + "3666.6666666666665" + ], + [ + 1701293723.781, + "3666.6666666666665" + ], + [ + 1701293724.781, + "3666.6666666666665" + ], + [ + 1701293725.781, + "3666.6666666666665" + ], + [ + 1701293726.781, + "3666.6666666666665" + ], + [ + 1701293727.781, + "3666.6666666666665" + ], + [ + 1701293728.781, + "3666.6666666666665" + ], + [ + 1701293729.781, + "3666.6666666666665" + ], + [ + 1701293730.781, + "3666.6666666666665" + ], + [ + 1701293731.781, + "3666.6666666666665" + ], + [ + 1701293732.781, + "3666.6666666666665" + ], + [ + 1701293733.781, + "3666.6666666666665" + ], + [ + 1701293734.781, + "3666.6666666666665" + ], + [ + 1701293735.781, + "3666.6666666666665" + ], + [ + 1701293736.781, + "3666.6666666666665" + ], + [ + 1701293737.781, + "3666.6666666666665" + ], + [ + 1701293738.781, + "3666.6666666666665" + ], + [ + 1701293739.781, + "14000" + ], + [ + 1701293740.781, + "14000" + ], + [ + 1701293741.781, + "14000" + ], + [ + 1701293742.781, + "14000" + ], + [ + 1701293743.781, + "14000" + ], + [ + 1701293744.781, + "14000" + ], + [ + 1701293745.781, + "14000" + ], + [ + 1701293746.781, + "14000" + ], + [ + 1701293747.781, + "14000" + ], + [ + 1701293748.781, + "14000" + ], + [ + 1701293749.781, + "14000" + ], + [ + 1701293750.781, + "14000" + ], + [ + 1701293751.781, + "14000" + ], + [ + 1701293752.781, + "14000" + ], + [ + 1701293753.781, + "14000" + ], + [ + 1701293754.781, + "14000" + ], + [ + 1701293755.781, + "14000" + ], + [ + 1701293756.781, + "14000" + ], + [ + 1701293757.781, + "14000" + ], + [ + 1701293758.781, + "14000" + ], + [ + 1701293759.781, + "14000" + ], + [ + 1701293760.781, + "14000" + ], + [ + 1701293761.781, + "14000" + ], + [ + 1701293762.781, + "14000" + ], + [ + 1701293763.781, + "14000" + ], + [ + 1701293764.781, + "14000" + ], + [ + 1701293765.781, + "14000" + ], + [ + 1701293766.781, + "14000" + ], + [ + 1701293767.781, + "14000" + ], + [ + 1701293768.781, + "14000" + ], + [ + 1701293769.781, + "14000" + ], + [ + 1701293770.781, + "14000" + ], + [ + 1701293771.781, + "14000" + ], + [ + 1701293772.781, + "14000" + ], + [ + 1701293773.781, + "14000" + ], + [ + 1701293774.781, + "14000" + ], + [ + 1701293775.781, + "14000" + ], + [ + 1701293776.781, + "14000" + ], + [ + 1701293777.781, + "14000" + ], + [ + 1701293778.781, + "14000" + ], + [ + 1701293779.781, + "14000" + ], + [ + 1701293780.781, + "14000" + ], + [ + 1701293781.781, + "14000" + ], + [ + 1701293782.781, + "14000" + ], + [ + 1701293783.781, + "14000" + ], + [ + 1701293784.781, + "14000" + ], + [ + 1701293785.781, + "14000" + ], + [ + 1701293786.781, + "14000" + ], + [ + 1701293787.781, + "14000" + ], + [ + 1701293788.781, + "14000" + ], + [ + 1701293789.781, + "14000" + ], + [ + 1701293790.781, + "14000" + ], + [ + 1701293791.781, + "14000" + ], + [ + 1701293792.781, + "14000" + ], + [ + 1701293793.781, + "14000" + ], + [ + 1701293794.781, + "14000" + ], + [ + 1701293795.781, + "14000" + ], + [ + 1701293796.781, + "14000" + ], + [ + 1701293797.781, + "14000" + ], + [ + 1701293798.781, + "14000" + ], + [ + 1701293799.781, + "12000" + ], + [ + 1701293800.781, + "12000" + ], + [ + 1701293801.781, + "12000" + ], + [ + 1701293802.781, + "12000" + ], + [ + 1701293803.781, + "12000" + ], + [ + 1701293804.781, + "12000" + ], + [ + 1701293805.781, + "12000" + ], + [ + 1701293806.781, + "12000" + ], + [ + 1701293807.781, + "12000" + ], + [ + 1701293808.781, + "12000" + ], + [ + 1701293809.781, + "12000" + ], + [ + 1701293810.781, + "12000" + ], + [ + 1701293811.781, + "12000" + ], + [ + 1701293812.781, + "12000" + ], + [ + 1701293813.781, + "12000" + ], + [ + 1701293814.781, + "12000" + ], + [ + 1701293815.781, + "12000" + ], + [ + 1701293816.781, + "12000" + ], + [ + 1701293817.781, + "12000" + ], + [ + 1701293818.781, + "12000" + ], + [ + 1701293819.781, + "12000" + ], + [ + 1701293820.781, + "12000" + ], + [ + 1701293821.781, + "12000" + ], + [ + 1701293822.781, + "12000" + ], + [ + 1701293823.781, + "12000" + ], + [ + 1701293824.781, + "12000" + ], + [ + 1701293825.781, + "12000" + ], + [ + 1701293826.781, + "12000" + ], + [ + 1701293827.781, + "12000" + ], + [ + 1701293828.781, + "12000" + ], + [ + 1701293829.781, + "12000" + ], + [ + 1701293830.781, + "12000" + ], + [ + 1701293831.781, + "12000" + ], + [ + 1701293832.781, + "12000" + ], + [ + 1701293833.781, + "12000" + ], + [ + 1701293834.781, + "12000" + ], + [ + 1701293835.781, + "12000" + ], + [ + 1701293836.781, + "12000" + ], + [ + 1701293837.781, + "12000" + ], + [ + 1701293838.781, + "12000" + ], + [ + 1701293839.781, + "12000" + ], + [ + 1701293840.781, + "12000" + ], + [ + 1701293841.781, + "12000" + ], + [ + 1701293842.781, + "12000" + ], + [ + 1701293843.781, + "12000" + ], + [ + 1701293844.781, + "12000" + ], + [ + 1701293845.781, + "12000" + ], + [ + 1701293846.781, + "12000" + ], + [ + 1701293847.781, + "12000" + ], + [ + 1701293848.781, + "12000" + ], + [ + 1701293849.781, + "12000" + ], + [ + 1701293850.781, + "12000" + ], + [ + 1701293851.781, + "12000" + ], + [ + 1701293852.781, + "12000" + ], + [ + 1701293853.781, + "12000" + ], + [ + 1701293854.781, + "12000" + ], + [ + 1701293855.781, + "12000" + ], + [ + 1701293856.781, + "12000" + ], + [ + 1701293857.781, + "12000" + ], + [ + 1701293858.781, + "12000" + ], + [ + 1701293859.781, + "10000" + ], + [ + 1701293860.781, + "10000" + ], + [ + 1701293861.781, + "10000" + ], + [ + 1701293862.781, + "10000" + ], + [ + 1701293863.781, + "10000" + ], + [ + 1701293864.781, + "10000" + ], + [ + 1701293865.781, + "10000" + ], + [ + 1701293866.781, + "10000" + ], + [ + 1701293867.781, + "10000" + ], + [ + 1701293868.781, + "10000" + ], + [ + 1701293869.781, + "10000" + ], + [ + 1701293870.781, + "10000" + ], + [ + 1701293871.781, + "10000" + ], + [ + 1701293872.781, + "10000" + ], + [ + 1701293873.781, + "10000" + ], + [ + 1701293874.781, + "10000" + ], + [ + 1701293875.781, + "10000" + ], + [ + 1701293876.781, + "10000" + ], + [ + 1701293877.781, + "10000" + ], + [ + 1701293878.781, + "10000" + ], + [ + 1701293879.781, + "10000" + ], + [ + 1701293880.781, + "10000" + ], + [ + 1701293881.781, + "10000" + ], + [ + 1701293882.781, + "10000" + ], + [ + 1701293883.781, + "10000" + ], + [ + 1701293884.781, + "10000" + ], + [ + 1701293885.781, + "10000" + ], + [ + 1701293886.781, + "10000" + ], + [ + 1701293887.781, + "10000" + ], + [ + 1701293888.781, + "10000" + ], + [ + 1701293889.781, + "10000" + ], + [ + 1701293890.781, + "10000" + ], + [ + 1701293891.781, + "10000" + ], + [ + 1701293892.781, + "10000" + ], + [ + 1701293893.781, + "10000" + ], + [ + 1701293894.781, + "10000" + ], + [ + 1701293895.781, + "10000" + ], + [ + 1701293896.781, + "10000" + ], + [ + 1701293897.781, + "10000" + ], + [ + 1701293898.781, + "10000" + ], + [ + 1701293899.781, + "10000" + ], + [ + 1701293900.781, + "10000" + ], + [ + 1701293901.781, + "10000" + ], + [ + 1701293902.781, + "10000" + ], + [ + 1701293903.781, + "10000" + ], + [ + 1701293904.781, + "10000" + ], + [ + 1701293905.781, + "10000" + ], + [ + 1701293906.781, + "10000" + ], + [ + 1701293907.781, + "10000" + ], + [ + 1701293908.781, + "10000" + ], + [ + 1701293909.781, + "10000" + ], + [ + 1701293910.781, + "10000" + ], + [ + 1701293911.781, + "10000" + ], + [ + 1701293912.781, + "10000" + ], + [ + 1701293913.781, + "10000" + ], + [ + 1701293914.781, + "10000" + ], + [ + 1701293915.781, + "10000" + ], + [ + 1701293916.781, + "10000" + ], + [ + 1701293917.781, + "10000" + ], + [ + 1701293918.781, + "10000" + ], + [ + 1701293919.781, + "8000" + ], + [ + 1701293920.781, + "8000" + ], + [ + 1701293921.781, + "8000" + ], + [ + 1701293922.781, + "8000" + ], + [ + 1701293923.781, + "8000" + ], + [ + 1701293924.781, + "8000" + ], + [ + 1701293925.781, + "8000" + ], + [ + 1701293926.781, + "8000" + ], + [ + 1701293927.781, + "8000" + ], + [ + 1701293928.781, + "8000" + ], + [ + 1701293929.781, + "8000" + ], + [ + 1701293930.781, + "8000" + ], + [ + 1701293931.781, + "8000" + ], + [ + 1701293932.781, + "8000" + ], + [ + 1701293933.781, + "8000" + ], + [ + 1701293934.781, + "8000" + ], + [ + 1701293935.781, + "8000" + ], + [ + 1701293936.781, + "8000" + ], + [ + 1701293937.781, + "8000" + ], + [ + 1701293938.781, + "8000" + ], + [ + 1701293939.781, + "8000" + ], + [ + 1701293940.781, + "8000" + ], + [ + 1701293941.781, + "8000" + ], + [ + 1701293942.781, + "8000" + ], + [ + 1701293943.781, + "8000" + ], + [ + 1701293944.781, + "8000" + ], + [ + 1701293945.781, + "8000" + ], + [ + 1701293946.781, + "8000" + ], + [ + 1701293947.781, + "8000" + ], + [ + 1701293948.781, + "8000" + ], + [ + 1701293949.781, + "8000" + ], + [ + 1701293950.781, + "8000" + ], + [ + 1701293951.781, + "8000" + ], + [ + 1701293952.781, + "8000" + ], + [ + 1701293953.781, + "8000" + ], + [ + 1701293954.781, + "8000" + ], + [ + 1701293955.781, + "8000" + ], + [ + 1701293956.781, + "8000" + ], + [ + 1701293957.781, + "8000" + ], + [ + 1701293958.781, + "8000" + ], + [ + 1701293959.781, + "8000" + ], + [ + 1701293960.781, + "8000" + ], + [ + 1701293961.781, + "8000" + ], + [ + 1701293962.781, + "8000" + ], + [ + 1701293963.781, + "8000" + ], + [ + 1701293964.781, + "8000" + ], + [ + 1701293965.781, + "8000" + ], + [ + 1701293966.781, + "8000" + ], + [ + 1701293967.781, + "8000" + ], + [ + 1701293968.781, + "8000" + ], + [ + 1701293969.781, + "8000" + ], + [ + 1701293970.781, + "8000" + ], + [ + 1701293971.781, + "8000" + ], + [ + 1701293972.781, + "8000" + ], + [ + 1701293973.781, + "8000" + ], + [ + 1701293974.781, + "8000" + ], + [ + 1701293975.781, + "8000" + ], + [ + 1701293976.781, + "8000" + ], + [ + 1701293977.781, + "8000" + ], + [ + 1701293978.781, + "8000" + ], + [ + 1701293979.781, + "0" + ], + [ + 1701293980.781, + "0" + ], + [ + 1701293981.781, + "0" + ], + [ + 1701293982.781, + "0" + ], + [ + 1701293983.781, + "0" + ], + [ + 1701293984.781, + "0" + ], + [ + 1701293985.781, + "0" + ], + [ + 1701293986.781, + "0" + ], + [ + 1701293987.781, + "0" + ], + [ + 1701293988.781, + "0" + ], + [ + 1701293989.781, + "0" + ], + [ + 1701293990.781, + "0" + ], + [ + 1701293991.781, + "0" + ], + [ + 1701293992.781, + "0" + ], + [ + 1701293993.781, + "0" + ], + [ + 1701293994.781, + "0" + ], + [ + 1701293995.781, + "0" + ], + [ + 1701293996.781, + "0" + ], + [ + 1701293997.781, + "0" + ], + [ + 1701293998.781, + "0" + ], + [ + 1701293999.781, + "0" + ], + [ + 1701294000.781, + "0" + ], + [ + 1701294001.781, + "0" + ], + [ + 1701294002.781, + "0" + ], + [ + 1701294003.781, + "0" + ], + [ + 1701294004.781, + "0" + ], + [ + 1701294005.781, + "0" + ], + [ + 1701294006.781, + "0" + ], + [ + 1701294007.781, + "0" + ], + [ + 1701294008.781, + "0" + ], + [ + 1701294009.781, + "0" + ], + [ + 1701294010.781, + "0" + ], + [ + 1701294011.781, + "0" + ], + [ + 1701294012.781, + "0" + ], + [ + 1701294013.781, + "0" + ], + [ + 1701294014.781, + "0" + ], + [ + 1701294015.781, + "0" + ], + [ + 1701294016.781, + "0" + ], + [ + 1701294017.781, + "0" + ], + [ + 1701294018.781, + "0" + ], + [ + 1701294019.781, + "0" + ], + [ + 1701294020.781, + "0" + ], + [ + 1701294021.781, + "0" + ], + [ + 1701294022.781, + "0" + ], + [ + 1701294023.781, + "0" + ], + [ + 1701294024.781, + "0" + ], + [ + 1701294025.781, + "0" + ], + [ + 1701294026.781, + "0" + ], + [ + 1701294027.781, + "0" + ], + [ + 1701294028.781, + "0" + ], + [ + 1701294029.781, + "0" + ], + [ + 1701294030.781, + "0" + ], + [ + 1701294031.781, + "0" + ], + [ + 1701294032.781, + "0" + ], + [ + 1701294033.781, + "0" + ], + [ + 1701294034.781, + "0" + ], + [ + 1701294035.781, + "0" + ], + [ + 1701294036.781, + "0" + ], + [ + 1701294037.781, + "0" + ], + [ + 1701294038.781, + "0" + ], + [ + 1701294039.781, + "18333.333333333332" + ], + [ + 1701294040.781, + "18333.333333333332" + ], + [ + 1701294041.781, + "18333.333333333332" + ], + [ + 1701294042.781, + "18333.333333333332" + ], + [ + 1701294043.781, + "18333.333333333332" + ], + [ + 1701294044.781, + "18333.333333333332" + ], + [ + 1701294045.781, + "18333.333333333332" + ], + [ + 1701294046.781, + "18333.333333333332" + ], + [ + 1701294047.781, + "18333.333333333332" + ], + [ + 1701294048.781, + "18333.333333333332" + ], + [ + 1701294049.781, + "18333.333333333332" + ], + [ + 1701294050.781, + "18333.333333333332" + ], + [ + 1701294051.781, + "18333.333333333332" + ], + [ + 1701294052.781, + "18333.333333333332" + ], + [ + 1701294053.781, + "18333.333333333332" + ], + [ + 1701294054.781, + "18333.333333333332" + ], + [ + 1701294055.781, + "18333.333333333332" + ], + [ + 1701294056.781, + "18333.333333333332" + ], + [ + 1701294057.781, + "18333.333333333332" + ], + [ + 1701294058.781, + "18333.333333333332" + ], + [ + 1701294059.781, + "18333.333333333332" + ], + [ + 1701294060.781, + "18333.333333333332" + ], + [ + 1701294061.781, + "18333.333333333332" + ], + [ + 1701294062.781, + "18333.333333333332" + ], + [ + 1701294063.781, + "18333.333333333332" + ], + [ + 1701294064.781, + "18333.333333333332" + ], + [ + 1701294065.781, + "18333.333333333332" + ], + [ + 1701294066.781, + "18333.333333333332" + ], + [ + 1701294067.781, + "18333.333333333332" + ], + [ + 1701294068.781, + "18333.333333333332" + ], + [ + 1701294069.781, + "18333.333333333332" + ], + [ + 1701294070.781, + "18333.333333333332" + ], + [ + 1701294071.781, + "18333.333333333332" + ], + [ + 1701294072.781, + "18333.333333333332" + ], + [ + 1701294073.781, + "18333.333333333332" + ], + [ + 1701294074.781, + "18333.333333333332" + ], + [ + 1701294075.781, + "18333.333333333332" + ], + [ + 1701294076.781, + "18333.333333333332" + ], + [ + 1701294077.781, + "18333.333333333332" + ], + [ + 1701294078.781, + "18333.333333333332" + ], + [ + 1701294079.781, + "18333.333333333332" + ], + [ + 1701294080.781, + "18333.333333333332" + ], + [ + 1701294081.781, + "18333.333333333332" + ], + [ + 1701294082.781, + "18333.333333333332" + ], + [ + 1701294083.781, + "18333.333333333332" + ], + [ + 1701294084.781, + "18333.333333333332" + ], + [ + 1701294085.781, + "18333.333333333332" + ], + [ + 1701294086.781, + "18333.333333333332" + ], + [ + 1701294087.781, + "18333.333333333332" + ], + [ + 1701294088.781, + "18333.333333333332" + ], + [ + 1701294089.781, + "18333.333333333332" + ], + [ + 1701294090.781, + "18333.333333333332" + ], + [ + 1701294091.781, + "18333.333333333332" + ], + [ + 1701294092.781, + "18333.333333333332" + ], + [ + 1701294093.781, + "18333.333333333332" + ], + [ + 1701294094.781, + "18333.333333333332" + ], + [ + 1701294095.781, + "18333.333333333332" + ], + [ + 1701294096.781, + "18333.333333333332" + ], + [ + 1701294097.781, + "18333.333333333332" + ], + [ + 1701294098.781, + "18333.333333333332" + ], + [ + 1701294099.781, + "11666.666666666666" + ], + [ + 1701294100.781, + "11666.666666666666" + ], + [ + 1701294101.781, + "11666.666666666666" + ], + [ + 1701294102.781, + "11666.666666666666" + ], + [ + 1701294103.781, + "11666.666666666666" + ], + [ + 1701294104.781, + "11666.666666666666" + ], + [ + 1701294105.781, + "11666.666666666666" + ], + [ + 1701294106.781, + "11666.666666666666" + ], + [ + 1701294107.781, + "11666.666666666666" + ], + [ + 1701294108.781, + "11666.666666666666" + ], + [ + 1701294109.781, + "11666.666666666666" + ], + [ + 1701294110.781, + "11666.666666666666" + ], + [ + 1701294111.781, + "11666.666666666666" + ], + [ + 1701294112.781, + "11666.666666666666" + ], + [ + 1701294113.781, + "11666.666666666666" + ], + [ + 1701294114.781, + "11666.666666666666" + ], + [ + 1701294115.781, + "11666.666666666666" + ], + [ + 1701294116.781, + "11666.666666666666" + ], + [ + 1701294117.781, + "11666.666666666666" + ], + [ + 1701294118.781, + "11666.666666666666" + ], + [ + 1701294119.781, + "11666.666666666666" + ], + [ + 1701294120.781, + "11666.666666666666" + ], + [ + 1701294121.781, + "11666.666666666666" + ], + [ + 1701294122.781, + "11666.666666666666" + ], + [ + 1701294123.781, + "11666.666666666666" + ], + [ + 1701294124.781, + "11666.666666666666" + ], + [ + 1701294125.781, + "11666.666666666666" + ], + [ + 1701294126.781, + "11666.666666666666" + ], + [ + 1701294127.781, + "11666.666666666666" + ], + [ + 1701294128.781, + "11666.666666666666" + ], + [ + 1701294129.781, + "11666.666666666666" + ], + [ + 1701294130.781, + "11666.666666666666" + ], + [ + 1701294131.781, + "11666.666666666666" + ], + [ + 1701294132.781, + "11666.666666666666" + ], + [ + 1701294133.781, + "11666.666666666666" + ], + [ + 1701294134.781, + "11666.666666666666" + ], + [ + 1701294135.781, + "11666.666666666666" + ], + [ + 1701294136.781, + "11666.666666666666" + ], + [ + 1701294137.781, + "11666.666666666666" + ], + [ + 1701294138.781, + "11666.666666666666" + ], + [ + 1701294139.781, + "11666.666666666666" + ], + [ + 1701294140.781, + "11666.666666666666" + ], + [ + 1701294141.781, + "11666.666666666666" + ], + [ + 1701294142.781, + "11666.666666666666" + ], + [ + 1701294143.781, + "11666.666666666666" + ], + [ + 1701294144.781, + "11666.666666666666" + ], + [ + 1701294145.781, + "11666.666666666666" + ], + [ + 1701294146.781, + "11666.666666666666" + ], + [ + 1701294147.781, + "11666.666666666666" + ], + [ + 1701294148.781, + "11666.666666666666" + ], + [ + 1701294149.781, + "11666.666666666666" + ], + [ + 1701294150.781, + "11666.666666666666" + ], + [ + 1701294151.781, + "11666.666666666666" + ], + [ + 1701294152.781, + "11666.666666666666" + ], + [ + 1701294153.781, + "11666.666666666666" + ], + [ + 1701294154.781, + "11666.666666666666" + ], + [ + 1701294155.781, + "11666.666666666666" + ], + [ + 1701294156.781, + "11666.666666666666" + ], + [ + 1701294157.781, + "11666.666666666666" + ], + [ + 1701294158.781, + "11666.666666666666" + ], + [ + 1701294159.781, + "12500" + ], + [ + 1701294160.781, + "12500" + ], + [ + 1701294161.781, + "12500" + ], + [ + 1701294162.781, + "12500" + ], + [ + 1701294163.781, + "12500" + ], + [ + 1701294164.781, + "12500" + ], + [ + 1701294165.781, + "12500" + ], + [ + 1701294166.781, + "12500" + ], + [ + 1701294167.781, + "12500" + ], + [ + 1701294168.781, + "12500" + ], + [ + 1701294169.781, + "12500" + ], + [ + 1701294170.781, + "12500" + ], + [ + 1701294171.781, + "12500" + ], + [ + 1701294172.781, + "12500" + ], + [ + 1701294173.781, + "12500" + ], + [ + 1701294174.781, + "12500" + ], + [ + 1701294175.781, + "12500" + ], + [ + 1701294176.781, + "12500" + ], + [ + 1701294177.781, + "12500" + ], + [ + 1701294178.781, + "12500" + ], + [ + 1701294179.781, + "12500" + ], + [ + 1701294180.781, + "12500" + ], + [ + 1701294181.781, + "12500" + ], + [ + 1701294182.781, + "12500" + ], + [ + 1701294183.781, + "12500" + ], + [ + 1701294184.781, + "12500" + ], + [ + 1701294185.781, + "12500" + ], + [ + 1701294186.781, + "12500" + ], + [ + 1701294187.781, + "12500" + ], + [ + 1701294188.781, + "12500" + ], + [ + 1701294189.781, + "12500" + ], + [ + 1701294190.781, + "12500" + ], + [ + 1701294191.781, + "12500" + ], + [ + 1701294192.781, + "12500" + ], + [ + 1701294193.781, + "12500" + ], + [ + 1701294194.781, + "12500" + ], + [ + 1701294195.781, + "12500" + ], + [ + 1701294196.781, + "12500" + ], + [ + 1701294197.781, + "12500" + ], + [ + 1701294198.781, + "12500" + ], + [ + 1701294199.781, + "12500" + ], + [ + 1701294200.781, + "12500" + ], + [ + 1701294201.781, + "12500" + ], + [ + 1701294202.781, + "12500" + ], + [ + 1701294203.781, + "12500" + ], + [ + 1701294204.781, + "12500" + ], + [ + 1701294205.781, + "12500" + ], + [ + 1701294206.781, + "12500" + ], + [ + 1701294207.781, + "12500" + ], + [ + 1701294208.781, + "12500" + ], + [ + 1701294209.781, + "12500" + ], + [ + 1701294210.781, + "12500" + ], + [ + 1701294211.781, + "12500" + ], + [ + 1701294212.781, + "12500" + ], + [ + 1701294213.781, + "12500" + ], + [ + 1701294214.781, + "12500" + ], + [ + 1701294215.781, + "12500" + ], + [ + 1701294216.781, + "12500" + ], + [ + 1701294217.781, + "12500" + ], + [ + 1701294218.781, + "12500" + ], + [ + 1701294219.781, + "0" + ], + [ + 1701294220.781, + "0" + ], + [ + 1701294221.781, + "0" + ], + [ + 1701294222.781, + "0" + ], + [ + 1701294223.781, + "0" + ], + [ + 1701294224.781, + "0" + ], + [ + 1701294225.781, + "0" + ], + [ + 1701294226.781, + "0" + ], + [ + 1701294227.781, + "0" + ], + [ + 1701294228.781, + "0" + ], + [ + 1701294229.781, + "0" + ], + [ + 1701294230.781, + "0" + ], + [ + 1701294231.781, + "0" + ], + [ + 1701294232.781, + "0" + ], + [ + 1701294233.781, + "0" + ], + [ + 1701294234.781, + "0" + ], + [ + 1701294235.781, + "0" + ], + [ + 1701294236.781, + "0" + ], + [ + 1701294237.781, + "0" + ], + [ + 1701294238.781, + "0" + ], + [ + 1701294239.781, + "0" + ], + [ + 1701294240.781, + "0" + ], + [ + 1701294241.781, + "0" + ], + [ + 1701294242.781, + "0" + ], + [ + 1701294243.781, + "0" + ], + [ + 1701294244.781, + "0" + ], + [ + 1701294245.781, + "0" + ], + [ + 1701294246.781, + "0" + ], + [ + 1701294247.781, + "0" + ], + [ + 1701294248.781, + "0" + ], + [ + 1701294249.781, + "0" + ], + [ + 1701294250.781, + "0" + ], + [ + 1701294251.781, + "0" + ], + [ + 1701294252.781, + "0" + ], + [ + 1701294253.781, + "0" + ], + [ + 1701294254.781, + "0" + ], + [ + 1701294255.781, + "0" + ], + [ + 1701294256.781, + "0" + ], + [ + 1701294257.781, + "0" + ], + [ + 1701294258.781, + "0" + ], + [ + 1701294259.781, + "0" + ], + [ + 1701294260.781, + "0" + ], + [ + 1701294261.781, + "0" + ], + [ + 1701294262.781, + "0" + ], + [ + 1701294263.781, + "0" + ], + [ + 1701294264.781, + "0" + ], + [ + 1701294265.781, + "0" + ], + [ + 1701294266.781, + "0" + ], + [ + 1701294267.781, + "0" + ], + [ + 1701294268.781, + "0" + ], + [ + 1701294269.781, + "0" + ], + [ + 1701294270.781, + "0" + ], + [ + 1701294271.781, + "0" + ], + [ + 1701294272.781, + "0" + ], + [ + 1701294273.781, + "0" + ], + [ + 1701294274.781, + "0" + ], + [ + 1701294275.781, + "0" + ], + [ + 1701294276.781, + "0" + ], + [ + 1701294277.781, + "0" + ], + [ + 1701294278.781, + "0" + ], + [ + 1701294279.781, + "13834.666666666666" + ], + [ + 1701294280.781, + "13834.666666666666" + ], + [ + 1701294281.781, + "13834.666666666666" + ], + [ + 1701294282.781, + "13834.666666666666" + ], + [ + 1701294283.781, + "13834.666666666666" + ], + [ + 1701294284.781, + "13834.666666666666" + ], + [ + 1701294285.781, + "13834.666666666666" + ], + [ + 1701294286.781, + "13834.666666666666" + ], + [ + 1701294287.781, + "13834.666666666666" + ], + [ + 1701294288.781, + "13834.666666666666" + ], + [ + 1701294289.781, + "13834.666666666666" + ], + [ + 1701294290.781, + "13834.666666666666" + ], + [ + 1701294291.781, + "13834.666666666666" + ], + [ + 1701294292.781, + "13834.666666666666" + ], + [ + 1701294293.781, + "13834.666666666666" + ], + [ + 1701294294.781, + "13834.666666666666" + ], + [ + 1701294295.781, + "13834.666666666666" + ], + [ + 1701294296.781, + "13834.666666666666" + ], + [ + 1701294297.781, + "13834.666666666666" + ], + [ + 1701294298.781, + "13834.666666666666" + ], + [ + 1701294299.781, + "13834.666666666666" + ], + [ + 1701294300.781, + "13834.666666666666" + ], + [ + 1701294301.781, + "13834.666666666666" + ], + [ + 1701294302.781, + "13834.666666666666" + ], + [ + 1701294303.781, + "13834.666666666666" + ], + [ + 1701294304.781, + "13834.666666666666" + ], + [ + 1701294305.781, + "13834.666666666666" + ], + [ + 1701294306.781, + "13834.666666666666" + ], + [ + 1701294307.781, + "13834.666666666666" + ], + [ + 1701294308.781, + "13834.666666666666" + ], + [ + 1701294309.781, + "13834.666666666666" + ], + [ + 1701294310.781, + "13834.666666666666" + ], + [ + 1701294311.781, + "13834.666666666666" + ], + [ + 1701294312.781, + "13834.666666666666" + ], + [ + 1701294313.781, + "13834.666666666666" + ], + [ + 1701294314.781, + "13834.666666666666" + ], + [ + 1701294315.781, + "13834.666666666666" + ], + [ + 1701294316.781, + "13834.666666666666" + ], + [ + 1701294317.781, + "13834.666666666666" + ], + [ + 1701294318.781, + "13834.666666666666" + ], + [ + 1701294319.781, + "13834.666666666666" + ], + [ + 1701294320.781, + "13834.666666666666" + ], + [ + 1701294321.781, + "13834.666666666666" + ], + [ + 1701294322.781, + "13834.666666666666" + ], + [ + 1701294323.781, + "13834.666666666666" + ], + [ + 1701294324.781, + "13834.666666666666" + ], + [ + 1701294325.781, + "13834.666666666666" + ], + [ + 1701294326.781, + "13834.666666666666" + ], + [ + 1701294327.781, + "13834.666666666666" + ], + [ + 1701294328.781, + "13834.666666666666" + ], + [ + 1701294329.781, + "13834.666666666666" + ], + [ + 1701294330.781, + "13834.666666666666" + ], + [ + 1701294331.781, + "13834.666666666666" + ], + [ + 1701294332.781, + "13834.666666666666" + ], + [ + 1701294333.781, + "13834.666666666666" + ], + [ + 1701294334.781, + "13834.666666666666" + ], + [ + 1701294335.781, + "13834.666666666666" + ], + [ + 1701294336.781, + "13834.666666666666" + ], + [ + 1701294337.781, + "13834.666666666666" + ], + [ + 1701294338.781, + "13834.666666666666" + ], + [ + 1701294339.781, + "13166.666666666666" + ], + [ + 1701294340.781, + "13166.666666666666" + ], + [ + 1701294341.781, + "13166.666666666666" + ], + [ + 1701294342.781, + "13166.666666666666" + ], + [ + 1701294343.781, + "13166.666666666666" + ], + [ + 1701294344.781, + "13166.666666666666" + ], + [ + 1701294345.781, + "13166.666666666666" + ], + [ + 1701294346.781, + "13166.666666666666" + ], + [ + 1701294347.781, + "13166.666666666666" + ], + [ + 1701294348.781, + "13166.666666666666" + ], + [ + 1701294349.781, + "13166.666666666666" + ], + [ + 1701294350.781, + "13166.666666666666" + ], + [ + 1701294351.781, + "13166.666666666666" + ], + [ + 1701294352.781, + "13166.666666666666" + ], + [ + 1701294353.781, + "13166.666666666666" + ], + [ + 1701294354.781, + "13166.666666666666" + ], + [ + 1701294355.781, + "13166.666666666666" + ], + [ + 1701294356.781, + "13166.666666666666" + ], + [ + 1701294357.781, + "13166.666666666666" + ], + [ + 1701294358.781, + "13166.666666666666" + ], + [ + 1701294359.781, + "13166.666666666666" + ], + [ + 1701294360.781, + "13166.666666666666" + ], + [ + 1701294361.781, + "13166.666666666666" + ], + [ + 1701294362.781, + "13166.666666666666" + ], + [ + 1701294363.781, + "13166.666666666666" + ], + [ + 1701294364.781, + "13166.666666666666" + ], + [ + 1701294365.781, + "13166.666666666666" + ], + [ + 1701294366.781, + "13166.666666666666" + ], + [ + 1701294367.781, + "13166.666666666666" + ], + [ + 1701294368.781, + "13166.666666666666" + ], + [ + 1701294369.781, + "13166.666666666666" + ], + [ + 1701294370.781, + "13166.666666666666" + ], + [ + 1701294371.781, + "13166.666666666666" + ], + [ + 1701294372.781, + "13166.666666666666" + ], + [ + 1701294373.781, + "13166.666666666666" + ], + [ + 1701294374.781, + "13166.666666666666" + ], + [ + 1701294375.781, + "13166.666666666666" + ], + [ + 1701294376.781, + "13166.666666666666" + ], + [ + 1701294377.781, + "13166.666666666666" + ], + [ + 1701294378.781, + "13166.666666666666" + ], + [ + 1701294379.781, + "13166.666666666666" + ], + [ + 1701294380.781, + "13166.666666666666" + ], + [ + 1701294381.781, + "13166.666666666666" + ], + [ + 1701294382.781, + "13166.666666666666" + ], + [ + 1701294383.781, + "13166.666666666666" + ], + [ + 1701294384.781, + "13166.666666666666" + ], + [ + 1701294385.781, + "13166.666666666666" + ], + [ + 1701294386.781, + "13166.666666666666" + ], + [ + 1701294387.781, + "13166.666666666666" + ], + [ + 1701294388.781, + "13166.666666666666" + ], + [ + 1701294389.781, + "13166.666666666666" + ], + [ + 1701294390.781, + "13166.666666666666" + ], + [ + 1701294391.781, + "13166.666666666666" + ], + [ + 1701294392.781, + "13166.666666666666" + ], + [ + 1701294393.781, + "13166.666666666666" + ], + [ + 1701294394.781, + "13166.666666666666" + ], + [ + 1701294395.781, + "13166.666666666666" + ], + [ + 1701294396.781, + "13166.666666666666" + ], + [ + 1701294397.781, + "13166.666666666666" + ], + [ + 1701294398.781, + "13166.666666666666" + ], + [ + 1701294399.781, + "10000" + ], + [ + 1701294400.781, + "10000" + ], + [ + 1701294401.781, + "10000" + ], + [ + 1701294402.781, + "10000" + ], + [ + 1701294403.781, + "10000" + ], + [ + 1701294404.781, + "10000" + ], + [ + 1701294405.781, + "10000" + ], + [ + 1701294406.781, + "10000" + ], + [ + 1701294407.781, + "10000" + ], + [ + 1701294408.781, + "10000" + ], + [ + 1701294409.781, + "10000" + ], + [ + 1701294410.781, + "10000" + ], + [ + 1701294411.781, + "10000" + ], + [ + 1701294412.781, + "10000" + ], + [ + 1701294413.781, + "10000" + ], + [ + 1701294414.781, + "10000" + ], + [ + 1701294415.781, + "10000" + ], + [ + 1701294416.781, + "10000" + ], + [ + 1701294417.781, + "10000" + ], + [ + 1701294418.781, + "10000" + ], + [ + 1701294419.781, + "10000" + ], + [ + 1701294420.781, + "10000" + ], + [ + 1701294421.781, + "10000" + ], + [ + 1701294422.781, + "10000" + ], + [ + 1701294423.781, + "10000" + ], + [ + 1701294424.781, + "10000" + ], + [ + 1701294425.781, + "10000" + ], + [ + 1701294426.781, + "10000" + ], + [ + 1701294427.781, + "10000" + ], + [ + 1701294428.781, + "10000" + ], + [ + 1701294429.781, + "10000" + ], + [ + 1701294430.781, + "10000" + ], + [ + 1701294431.781, + "10000" + ], + [ + 1701294432.781, + "10000" + ], + [ + 1701294433.781, + "10000" + ], + [ + 1701294434.781, + "10000" + ], + [ + 1701294435.781, + "10000" + ], + [ + 1701294436.781, + "10000" + ], + [ + 1701294437.781, + "10000" + ], + [ + 1701294438.781, + "10000" + ], + [ + 1701294439.781, + "10000" + ], + [ + 1701294440.781, + "10000" + ], + [ + 1701294441.781, + "10000" + ], + [ + 1701294442.781, + "10000" + ], + [ + 1701294443.781, + "10000" + ], + [ + 1701294444.781, + "10000" + ], + [ + 1701294445.781, + "10000" + ], + [ + 1701294446.781, + "10000" + ], + [ + 1701294447.781, + "10000" + ], + [ + 1701294448.781, + "10000" + ], + [ + 1701294449.781, + "10000" + ], + [ + 1701294450.781, + "10000" + ], + [ + 1701294451.781, + "10000" + ], + [ + 1701294452.781, + "10000" + ], + [ + 1701294453.781, + "10000" + ], + [ + 1701294454.781, + "10000" + ], + [ + 1701294455.781, + "10000" + ], + [ + 1701294456.781, + "10000" + ], + [ + 1701294457.781, + "10000" + ], + [ + 1701294458.781, + "10000" + ], + [ + 1701294459.781, + "9666.666666666666" + ], + [ + 1701294460.781, + "9666.666666666666" + ], + [ + 1701294461.781, + "9666.666666666666" + ], + [ + 1701294462.781, + "9666.666666666666" + ], + [ + 1701294463.781, + "9666.666666666666" + ], + [ + 1701294464.781, + "9666.666666666666" + ], + [ + 1701294465.781, + "9666.666666666666" + ], + [ + 1701294466.781, + "9666.666666666666" + ], + [ + 1701294467.781, + "9666.666666666666" + ], + [ + 1701294468.781, + "9666.666666666666" + ], + [ + 1701294469.781, + "9666.666666666666" + ], + [ + 1701294470.781, + "9666.666666666666" + ], + [ + 1701294471.781, + "9666.666666666666" + ], + [ + 1701294472.781, + "9666.666666666666" + ], + [ + 1701294473.781, + "9666.666666666666" + ], + [ + 1701294474.781, + "9666.666666666666" + ], + [ + 1701294475.781, + "9666.666666666666" + ], + [ + 1701294476.781, + "9666.666666666666" + ], + [ + 1701294477.781, + "9666.666666666666" + ], + [ + 1701294478.781, + "9666.666666666666" + ], + [ + 1701294479.781, + "9666.666666666666" + ], + [ + 1701294480.781, + "9666.666666666666" + ], + [ + 1701294481.781, + "9666.666666666666" + ], + [ + 1701294482.781, + "9666.666666666666" + ], + [ + 1701294483.781, + "9666.666666666666" + ], + [ + 1701294484.781, + "9666.666666666666" + ], + [ + 1701294485.781, + "9666.666666666666" + ], + [ + 1701294486.781, + "9666.666666666666" + ], + [ + 1701294487.781, + "9666.666666666666" + ], + [ + 1701294488.781, + "9666.666666666666" + ], + [ + 1701294489.781, + "9666.666666666666" + ], + [ + 1701294490.781, + "9666.666666666666" + ], + [ + 1701294491.781, + "9666.666666666666" + ], + [ + 1701294492.781, + "9666.666666666666" + ], + [ + 1701294493.781, + "9666.666666666666" + ], + [ + 1701294494.781, + "9666.666666666666" + ], + [ + 1701294495.781, + "9666.666666666666" + ], + [ + 1701294496.781, + "9666.666666666666" + ], + [ + 1701294497.781, + "9666.666666666666" + ], + [ + 1701294498.781, + "9666.666666666666" + ], + [ + 1701294499.781, + "9666.666666666666" + ], + [ + 1701294500.781, + "9666.666666666666" + ], + [ + 1701294501.781, + "9666.666666666666" + ], + [ + 1701294502.781, + "9666.666666666666" + ], + [ + 1701294503.781, + "9666.666666666666" + ], + [ + 1701294504.781, + "9666.666666666666" + ], + [ + 1701294505.781, + "9666.666666666666" + ], + [ + 1701294506.781, + "9666.666666666666" + ], + [ + 1701294507.781, + "9666.666666666666" + ], + [ + 1701294508.781, + "9666.666666666666" + ], + [ + 1701294509.781, + "9666.666666666666" + ], + [ + 1701294510.781, + "9666.666666666666" + ], + [ + 1701294511.781, + "9666.666666666666" + ], + [ + 1701294512.781, + "9666.666666666666" + ], + [ + 1701294513.781, + "9666.666666666666" + ], + [ + 1701294514.781, + "9666.666666666666" + ], + [ + 1701294515.781, + "9666.666666666666" + ], + [ + 1701294516.781, + "9666.666666666666" + ], + [ + 1701294517.781, + "9666.666666666666" + ], + [ + 1701294518.781, + "9666.666666666666" + ], + [ + 1701294519.781, + "12333.333333333334" + ], + [ + 1701294520.781, + "12333.333333333334" + ], + [ + 1701294521.781, + "12333.333333333334" + ], + [ + 1701294522.781, + "12333.333333333334" + ], + [ + 1701294523.781, + "12333.333333333334" + ], + [ + 1701294524.781, + "12333.333333333334" + ], + [ + 1701294525.781, + "12333.333333333334" + ], + [ + 1701294526.781, + "12333.333333333334" + ], + [ + 1701294527.781, + "12333.333333333334" + ], + [ + 1701294528.781, + "12333.333333333334" + ], + [ + 1701294529.781, + "12333.333333333334" + ], + [ + 1701294530.781, + "12333.333333333334" + ], + [ + 1701294531.781, + "12333.333333333334" + ], + [ + 1701294532.781, + "12333.333333333334" + ], + [ + 1701294533.781, + "12333.333333333334" + ], + [ + 1701294534.781, + "12333.333333333334" + ], + [ + 1701294535.781, + "12333.333333333334" + ], + [ + 1701294536.781, + "12333.333333333334" + ], + [ + 1701294537.781, + "12333.333333333334" + ], + [ + 1701294538.781, + "12333.333333333334" + ], + [ + 1701294539.781, + "12333.333333333334" + ], + [ + 1701294540.781, + "12333.333333333334" + ], + [ + 1701294541.781, + "12333.333333333334" + ], + [ + 1701294542.781, + "12333.333333333334" + ], + [ + 1701294543.781, + "12333.333333333334" + ], + [ + 1701294544.781, + "12333.333333333334" + ], + [ + 1701294545.781, + "12333.333333333334" + ], + [ + 1701294546.781, + "12333.333333333334" + ], + [ + 1701294547.781, + "12333.333333333334" + ], + [ + 1701294548.781, + "12333.333333333334" + ], + [ + 1701294549.781, + "12333.333333333334" + ], + [ + 1701294550.781, + "12333.333333333334" + ], + [ + 1701294551.781, + "12333.333333333334" + ], + [ + 1701294552.781, + "12333.333333333334" + ], + [ + 1701294553.781, + "12333.333333333334" + ], + [ + 1701294554.781, + "12333.333333333334" + ], + [ + 1701294555.781, + "12333.333333333334" + ], + [ + 1701294556.781, + "12333.333333333334" + ], + [ + 1701294557.781, + "12333.333333333334" + ], + [ + 1701294558.781, + "12333.333333333334" + ], + [ + 1701294559.781, + "12333.333333333334" + ], + [ + 1701294560.781, + "12333.333333333334" + ], + [ + 1701294561.781, + "12333.333333333334" + ], + [ + 1701294562.781, + "12333.333333333334" + ], + [ + 1701294563.781, + "12333.333333333334" + ], + [ + 1701294564.781, + "12333.333333333334" + ], + [ + 1701294565.781, + "12333.333333333334" + ], + [ + 1701294566.781, + "12333.333333333334" + ], + [ + 1701294567.781, + "12333.333333333334" + ], + [ + 1701294568.781, + "12333.333333333334" + ], + [ + 1701294569.781, + "12333.333333333334" + ], + [ + 1701294570.781, + "12333.333333333334" + ], + [ + 1701294571.781, + "12333.333333333334" + ], + [ + 1701294572.781, + "12333.333333333334" + ], + [ + 1701294573.781, + "12333.333333333334" + ], + [ + 1701294574.781, + "12333.333333333334" + ], + [ + 1701294575.781, + "12333.333333333334" + ], + [ + 1701294576.781, + "12333.333333333334" + ], + [ + 1701294577.781, + "12333.333333333334" + ], + [ + 1701294578.781, + "12333.333333333334" + ], + [ + 1701294579.781, + "11833.333333333334" + ], + [ + 1701294580.781, + "11833.333333333334" + ], + [ + 1701294581.781, + "11833.333333333334" + ], + [ + 1701294582.781, + "11833.333333333334" + ], + [ + 1701294583.781, + "11833.333333333334" + ], + [ + 1701294584.781, + "11833.333333333334" + ], + [ + 1701294585.781, + "11833.333333333334" + ], + [ + 1701294586.781, + "11833.333333333334" + ], + [ + 1701294587.781, + "11833.333333333334" + ], + [ + 1701294588.781, + "11833.333333333334" + ], + [ + 1701294589.781, + "11833.333333333334" + ], + [ + 1701294590.781, + "11833.333333333334" + ], + [ + 1701294591.781, + "11833.333333333334" + ], + [ + 1701294592.781, + "11833.333333333334" + ], + [ + 1701294593.781, + "11833.333333333334" + ], + [ + 1701294594.781, + "11833.333333333334" + ], + [ + 1701294595.781, + "11833.333333333334" + ], + [ + 1701294596.781, + "11833.333333333334" + ], + [ + 1701294597.781, + "11833.333333333334" + ], + [ + 1701294598.781, + "11833.333333333334" + ], + [ + 1701294599.781, + "11833.333333333334" + ], + [ + 1701294600.781, + "11833.333333333334" + ], + [ + 1701294601.781, + "11833.333333333334" + ], + [ + 1701294602.781, + "11833.333333333334" + ], + [ + 1701294603.781, + "11833.333333333334" + ], + [ + 1701294604.781, + "11833.333333333334" + ], + [ + 1701294605.781, + "11833.333333333334" + ], + [ + 1701294606.781, + "11833.333333333334" + ], + [ + 1701294607.781, + "11833.333333333334" + ], + [ + 1701294608.781, + "11833.333333333334" + ], + [ + 1701294609.781, + "11833.333333333334" + ], + [ + 1701294610.781, + "11833.333333333334" + ], + [ + 1701294611.781, + "11833.333333333334" + ], + [ + 1701294612.781, + "11833.333333333334" + ], + [ + 1701294613.781, + "11833.333333333334" + ], + [ + 1701294614.781, + "11833.333333333334" + ], + [ + 1701294615.781, + "11833.333333333334" + ], + [ + 1701294616.781, + "11833.333333333334" + ], + [ + 1701294617.781, + "11833.333333333334" + ], + [ + 1701294618.781, + "11833.333333333334" + ], + [ + 1701294619.781, + "11833.333333333334" + ], + [ + 1701294620.781, + "11833.333333333334" + ], + [ + 1701294621.781, + "11833.333333333334" + ], + [ + 1701294622.781, + "11833.333333333334" + ], + [ + 1701294623.781, + "11833.333333333334" + ], + [ + 1701294624.781, + "11833.333333333334" + ], + [ + 1701294625.781, + "11833.333333333334" + ], + [ + 1701294626.781, + "11833.333333333334" + ], + [ + 1701294627.781, + "11833.333333333334" + ], + [ + 1701294628.781, + "11833.333333333334" + ], + [ + 1701294629.781, + "11833.333333333334" + ], + [ + 1701294630.781, + "11833.333333333334" + ], + [ + 1701294631.781, + "11833.333333333334" + ], + [ + 1701294632.781, + "11833.333333333334" + ], + [ + 1701294633.781, + "11833.333333333334" + ], + [ + 1701294634.781, + "11833.333333333334" + ], + [ + 1701294635.781, + "11833.333333333334" + ], + [ + 1701294636.781, + "11833.333333333334" + ], + [ + 1701294637.781, + "11833.333333333334" + ], + [ + 1701294638.781, + "11833.333333333334" + ], + [ + 1701294639.781, + "8333.333333333334" + ], + [ + 1701294640.781, + "8333.333333333334" + ], + [ + 1701294641.781, + "8333.333333333334" + ], + [ + 1701294642.781, + "8333.333333333334" + ], + [ + 1701294643.781, + "8333.333333333334" + ], + [ + 1701294644.781, + "8333.333333333334" + ], + [ + 1701294645.781, + "8333.333333333334" + ], + [ + 1701294646.781, + "8333.333333333334" + ], + [ + 1701294647.781, + "8333.333333333334" + ], + [ + 1701294648.781, + "8333.333333333334" + ], + [ + 1701294649.781, + "8333.333333333334" + ], + [ + 1701294650.781, + "8333.333333333334" + ], + [ + 1701294651.781, + "8333.333333333334" + ], + [ + 1701294652.781, + "8333.333333333334" + ], + [ + 1701294653.781, + "8333.333333333334" + ], + [ + 1701294654.781, + "8333.333333333334" + ], + [ + 1701294655.781, + "8333.333333333334" + ], + [ + 1701294656.781, + "8333.333333333334" + ], + [ + 1701294657.781, + "8333.333333333334" + ], + [ + 1701294658.781, + "8333.333333333334" + ], + [ + 1701294659.781, + "8333.333333333334" + ], + [ + 1701294660.781, + "8333.333333333334" + ], + [ + 1701294661.781, + "8333.333333333334" + ], + [ + 1701294662.781, + "8333.333333333334" + ], + [ + 1701294663.781, + "8333.333333333334" + ], + [ + 1701294664.781, + "8333.333333333334" + ], + [ + 1701294665.781, + "8333.333333333334" + ], + [ + 1701294666.781, + "8333.333333333334" + ], + [ + 1701294667.781, + "8333.333333333334" + ], + [ + 1701294668.781, + "8333.333333333334" + ], + [ + 1701294669.781, + "8333.333333333334" + ], + [ + 1701294670.781, + "8333.333333333334" + ], + [ + 1701294671.781, + "8333.333333333334" + ], + [ + 1701294672.781, + "8333.333333333334" + ], + [ + 1701294673.781, + "8333.333333333334" + ], + [ + 1701294674.781, + "8333.333333333334" + ], + [ + 1701294675.781, + "8333.333333333334" + ], + [ + 1701294676.781, + "8333.333333333334" + ], + [ + 1701294677.781, + "8333.333333333334" + ], + [ + 1701294678.781, + "8333.333333333334" + ], + [ + 1701294679.781, + "8333.333333333334" + ], + [ + 1701294680.781, + "8333.333333333334" + ], + [ + 1701294681.781, + "8333.333333333334" + ], + [ + 1701294682.781, + "8333.333333333334" + ], + [ + 1701294683.781, + "8333.333333333334" + ], + [ + 1701294684.781, + "8333.333333333334" + ], + [ + 1701294685.781, + "8333.333333333334" + ], + [ + 1701294686.781, + "8333.333333333334" + ], + [ + 1701294687.781, + "8333.333333333334" + ], + [ + 1701294688.781, + "8333.333333333334" + ], + [ + 1701294689.781, + "8333.333333333334" + ], + [ + 1701294690.781, + "8333.333333333334" + ], + [ + 1701294691.781, + "8333.333333333334" + ], + [ + 1701294692.781, + "8333.333333333334" + ], + [ + 1701294693.781, + "8333.333333333334" + ], + [ + 1701294694.781, + "8333.333333333334" + ], + [ + 1701294695.781, + "8333.333333333334" + ], + [ + 1701294696.781, + "8333.333333333334" + ], + [ + 1701294697.781, + "8333.333333333334" + ], + [ + 1701294698.781, + "8333.333333333334" + ], + [ + 1701294699.781, + "9666.666666666666" + ], + [ + 1701294700.781, + "9666.666666666666" + ], + [ + 1701294701.781, + "9666.666666666666" + ], + [ + 1701294702.781, + "9666.666666666666" + ], + [ + 1701294703.781, + "9666.666666666666" + ], + [ + 1701294704.781, + "9666.666666666666" + ], + [ + 1701294705.781, + "9666.666666666666" + ], + [ + 1701294706.781, + "9666.666666666666" + ], + [ + 1701294707.781, + "9666.666666666666" + ], + [ + 1701294708.781, + "9666.666666666666" + ], + [ + 1701294709.781, + "9666.666666666666" + ], + [ + 1701294710.781, + "9666.666666666666" + ], + [ + 1701294711.781, + "9666.666666666666" + ], + [ + 1701294712.781, + "9666.666666666666" + ], + [ + 1701294713.781, + "9666.666666666666" + ], + [ + 1701294714.781, + "9666.666666666666" + ], + [ + 1701294715.781, + "9666.666666666666" + ], + [ + 1701294716.781, + "9666.666666666666" + ], + [ + 1701294717.781, + "9666.666666666666" + ], + [ + 1701294718.781, + "9666.666666666666" + ], + [ + 1701294719.781, + "9666.666666666666" + ], + [ + 1701294720.781, + "9666.666666666666" + ], + [ + 1701294721.781, + "9666.666666666666" + ], + [ + 1701294722.781, + "9666.666666666666" + ], + [ + 1701294723.781, + "9666.666666666666" + ], + [ + 1701294724.781, + "9666.666666666666" + ], + [ + 1701294725.781, + "9666.666666666666" + ], + [ + 1701294726.781, + "9666.666666666666" + ], + [ + 1701294727.781, + "9666.666666666666" + ], + [ + 1701294728.781, + "9666.666666666666" + ], + [ + 1701294729.781, + "9666.666666666666" + ], + [ + 1701294730.781, + "9666.666666666666" + ], + [ + 1701294731.781, + "9666.666666666666" + ], + [ + 1701294732.781, + "9666.666666666666" + ], + [ + 1701294733.781, + "9666.666666666666" + ], + [ + 1701294734.781, + "9666.666666666666" + ], + [ + 1701294735.781, + "9666.666666666666" + ], + [ + 1701294736.781, + "9666.666666666666" + ], + [ + 1701294737.781, + "9666.666666666666" + ], + [ + 1701294738.781, + "9666.666666666666" + ], + [ + 1701294739.781, + "9666.666666666666" + ], + [ + 1701294740.781, + "9666.666666666666" + ], + [ + 1701294741.781, + "9666.666666666666" + ], + [ + 1701294742.781, + "9666.666666666666" + ], + [ + 1701294743.781, + "9666.666666666666" + ], + [ + 1701294744.781, + "9666.666666666666" + ], + [ + 1701294745.781, + "9666.666666666666" + ], + [ + 1701294746.781, + "9666.666666666666" + ], + [ + 1701294747.781, + "9666.666666666666" + ], + [ + 1701294748.781, + "9666.666666666666" + ], + [ + 1701294749.781, + "9666.666666666666" + ], + [ + 1701294750.781, + "9666.666666666666" + ], + [ + 1701294751.781, + "9666.666666666666" + ], + [ + 1701294752.781, + "9666.666666666666" + ], + [ + 1701294753.781, + "9666.666666666666" + ], + [ + 1701294754.781, + "9666.666666666666" + ], + [ + 1701294755.781, + "9666.666666666666" + ], + [ + 1701294756.781, + "9666.666666666666" + ], + [ + 1701294757.781, + "9666.666666666666" + ], + [ + 1701294758.781, + "9666.666666666666" + ], + [ + 1701294759.781, + "10001.333333333334" + ], + [ + 1701294760.781, + "10001.333333333334" + ], + [ + 1701294761.781, + "10001.333333333334" + ], + [ + 1701294762.781, + "10001.333333333334" + ], + [ + 1701294763.781, + "10001.333333333334" + ], + [ + 1701294764.781, + "10001.333333333334" + ], + [ + 1701294765.781, + "10001.333333333334" + ], + [ + 1701294766.781, + "10001.333333333334" + ], + [ + 1701294767.781, + "10001.333333333334" + ], + [ + 1701294768.781, + "10001.333333333334" + ], + [ + 1701294769.781, + "10001.333333333334" + ], + [ + 1701294770.781, + "10001.333333333334" + ], + [ + 1701294771.781, + "10001.333333333334" + ], + [ + 1701294772.781, + "10001.333333333334" + ], + [ + 1701294773.781, + "10001.333333333334" + ], + [ + 1701294774.781, + "10001.333333333334" + ], + [ + 1701294775.781, + "10001.333333333334" + ], + [ + 1701294776.781, + "10001.333333333334" + ], + [ + 1701294777.781, + "10001.333333333334" + ], + [ + 1701294778.781, + "10001.333333333334" + ], + [ + 1701294779.781, + "10001.333333333334" + ], + [ + 1701294780.781, + "10001.333333333334" + ], + [ + 1701294781.781, + "10001.333333333334" + ], + [ + 1701294782.781, + "10001.333333333334" + ], + [ + 1701294783.781, + "10001.333333333334" + ], + [ + 1701294784.781, + "10001.333333333334" + ], + [ + 1701294785.781, + "10001.333333333334" + ], + [ + 1701294786.781, + "10001.333333333334" + ], + [ + 1701294787.781, + "10001.333333333334" + ], + [ + 1701294788.781, + "10001.333333333334" + ], + [ + 1701294789.781, + "10001.333333333334" + ], + [ + 1701294790.781, + "10001.333333333334" + ], + [ + 1701294791.781, + "10001.333333333334" + ], + [ + 1701294792.781, + "10001.333333333334" + ], + [ + 1701294793.781, + "10001.333333333334" + ], + [ + 1701294794.781, + "10001.333333333334" + ], + [ + 1701294795.781, + "10001.333333333334" + ], + [ + 1701294796.781, + "10001.333333333334" + ], + [ + 1701294797.781, + "10001.333333333334" + ], + [ + 1701294798.781, + "10001.333333333334" + ], + [ + 1701294799.781, + "10001.333333333334" + ], + [ + 1701294800.781, + "10001.333333333334" + ], + [ + 1701294801.781, + "10001.333333333334" + ], + [ + 1701294802.781, + "10001.333333333334" + ], + [ + 1701294803.781, + "10001.333333333334" + ], + [ + 1701294804.781, + "10001.333333333334" + ], + [ + 1701294805.781, + "10001.333333333334" + ], + [ + 1701294806.781, + "10001.333333333334" + ], + [ + 1701294807.781, + "10001.333333333334" + ], + [ + 1701294808.781, + "10001.333333333334" + ], + [ + 1701294809.781, + "10001.333333333334" + ], + [ + 1701294810.781, + "10001.333333333334" + ], + [ + 1701294811.781, + "10001.333333333334" + ], + [ + 1701294812.781, + "10001.333333333334" + ], + [ + 1701294813.781, + "10001.333333333334" + ], + [ + 1701294814.781, + "10001.333333333334" + ], + [ + 1701294815.781, + "10001.333333333334" + ], + [ + 1701294816.781, + "10001.333333333334" + ], + [ + 1701294817.781, + "10001.333333333334" + ], + [ + 1701294818.781, + "10001.333333333334" + ], + [ + 1701294819.781, + "7333.333333333333" + ], + [ + 1701294820.781, + "7333.333333333333" + ], + [ + 1701294821.781, + "7333.333333333333" + ], + [ + 1701294822.781, + "7333.333333333333" + ], + [ + 1701294823.781, + "7333.333333333333" + ], + [ + 1701294824.781, + "7333.333333333333" + ], + [ + 1701294825.781, + "7333.333333333333" + ], + [ + 1701294826.781, + "7333.333333333333" + ], + [ + 1701294827.781, + "7333.333333333333" + ], + [ + 1701294828.781, + "7333.333333333333" + ], + [ + 1701294829.781, + "7333.333333333333" + ], + [ + 1701294830.781, + "7333.333333333333" + ], + [ + 1701294831.781, + "7333.333333333333" + ], + [ + 1701294832.781, + "7333.333333333333" + ], + [ + 1701294833.781, + "7333.333333333333" + ], + [ + 1701294834.781, + "7333.333333333333" + ], + [ + 1701294835.781, + "7333.333333333333" + ], + [ + 1701294836.781, + "7333.333333333333" + ], + [ + 1701294837.781, + "7333.333333333333" + ], + [ + 1701294838.781, + "7333.333333333333" + ], + [ + 1701294839.781, + "7333.333333333333" + ], + [ + 1701294840.781, + "7333.333333333333" + ], + [ + 1701294841.781, + "7333.333333333333" + ], + [ + 1701294842.781, + "7333.333333333333" + ], + [ + 1701294843.781, + "7333.333333333333" + ], + [ + 1701294844.781, + "7333.333333333333" + ], + [ + 1701294845.781, + "7333.333333333333" + ], + [ + 1701294846.781, + "7333.333333333333" + ], + [ + 1701294847.781, + "7333.333333333333" + ], + [ + 1701294848.781, + "7333.333333333333" + ], + [ + 1701294849.781, + "7333.333333333333" + ], + [ + 1701294850.781, + "7333.333333333333" + ], + [ + 1701294851.781, + "7333.333333333333" + ], + [ + 1701294852.781, + "7333.333333333333" + ], + [ + 1701294853.781, + "7333.333333333333" + ], + [ + 1701294854.781, + "7333.333333333333" + ], + [ + 1701294855.781, + "7333.333333333333" + ], + [ + 1701294856.781, + "7333.333333333333" + ], + [ + 1701294857.781, + "7333.333333333333" + ], + [ + 1701294858.781, + "7333.333333333333" + ], + [ + 1701294859.781, + "7333.333333333333" + ], + [ + 1701294860.781, + "7333.333333333333" + ], + [ + 1701294861.781, + "7333.333333333333" + ], + [ + 1701294862.781, + "7333.333333333333" + ], + [ + 1701294863.781, + "7333.333333333333" + ], + [ + 1701294864.781, + "7333.333333333333" + ], + [ + 1701294865.781, + "7333.333333333333" + ], + [ + 1701294866.781, + "7333.333333333333" + ], + [ + 1701294867.781, + "7333.333333333333" + ], + [ + 1701294868.781, + "7333.333333333333" + ], + [ + 1701294869.781, + "7333.333333333333" + ], + [ + 1701294870.781, + "7333.333333333333" + ], + [ + 1701294871.781, + "7333.333333333333" + ], + [ + 1701294872.781, + "7333.333333333333" + ], + [ + 1701294873.781, + "7333.333333333333" + ], + [ + 1701294874.781, + "7333.333333333333" + ], + [ + 1701294875.781, + "7333.333333333333" + ], + [ + 1701294876.781, + "7333.333333333333" + ], + [ + 1701294877.781, + "7333.333333333333" + ], + [ + 1701294878.781, + "7333.333333333333" + ], + [ + 1701294879.781, + "18333.333333333332" + ], + [ + 1701294880.781, + "18333.333333333332" + ], + [ + 1701294881.781, + "18333.333333333332" + ], + [ + 1701294882.781, + "18333.333333333332" + ], + [ + 1701294883.781, + "18333.333333333332" + ], + [ + 1701294884.781, + "18333.333333333332" + ], + [ + 1701294885.781, + "18333.333333333332" + ], + [ + 1701294886.781, + "18333.333333333332" + ], + [ + 1701294887.781, + "18333.333333333332" + ], + [ + 1701294888.781, + "18333.333333333332" + ], + [ + 1701294889.781, + "18333.333333333332" + ], + [ + 1701294890.781, + "18333.333333333332" + ], + [ + 1701294891.781, + "18333.333333333332" + ], + [ + 1701294892.781, + "18333.333333333332" + ], + [ + 1701294893.781, + "18333.333333333332" + ], + [ + 1701294894.781, + "18333.333333333332" + ], + [ + 1701294895.781, + "18333.333333333332" + ], + [ + 1701294896.781, + "18333.333333333332" + ], + [ + 1701294897.781, + "18333.333333333332" + ], + [ + 1701294898.781, + "18333.333333333332" + ], + [ + 1701294899.781, + "18333.333333333332" + ], + [ + 1701294900.781, + "18333.333333333332" + ], + [ + 1701294901.781, + "18333.333333333332" + ], + [ + 1701294902.781, + "18333.333333333332" + ], + [ + 1701294903.781, + "18333.333333333332" + ], + [ + 1701294904.781, + "18333.333333333332" + ], + [ + 1701294905.781, + "18333.333333333332" + ], + [ + 1701294906.781, + "18333.333333333332" + ], + [ + 1701294907.781, + "18333.333333333332" + ], + [ + 1701294908.781, + "18333.333333333332" + ], + [ + 1701294909.781, + "18333.333333333332" + ], + [ + 1701294910.781, + "18333.333333333332" + ], + [ + 1701294911.781, + "18333.333333333332" + ], + [ + 1701294912.781, + "18333.333333333332" + ], + [ + 1701294913.781, + "18333.333333333332" + ], + [ + 1701294914.781, + "18333.333333333332" + ], + [ + 1701294915.781, + "18333.333333333332" + ], + [ + 1701294916.781, + "18333.333333333332" + ], + [ + 1701294917.781, + "18333.333333333332" + ], + [ + 1701294918.781, + "18333.333333333332" + ], + [ + 1701294919.781, + "18333.333333333332" + ], + [ + 1701294920.781, + "18333.333333333332" + ], + [ + 1701294921.781, + "18333.333333333332" + ], + [ + 1701294922.781, + "18333.333333333332" + ], + [ + 1701294923.781, + "18333.333333333332" + ], + [ + 1701294924.781, + "18333.333333333332" + ], + [ + 1701294925.781, + "18333.333333333332" + ], + [ + 1701294926.781, + "18333.333333333332" + ], + [ + 1701294927.781, + "18333.333333333332" + ], + [ + 1701294928.781, + "18333.333333333332" + ], + [ + 1701294929.781, + "18333.333333333332" + ], + [ + 1701294930.781, + "18333.333333333332" + ], + [ + 1701294931.781, + "18333.333333333332" + ], + [ + 1701294932.781, + "18333.333333333332" + ], + [ + 1701294933.781, + "18333.333333333332" + ], + [ + 1701294934.781, + "18333.333333333332" + ], + [ + 1701294935.781, + "18333.333333333332" + ], + [ + 1701294936.781, + "18333.333333333332" + ], + [ + 1701294937.781, + "18333.333333333332" + ], + [ + 1701294938.781, + "18333.333333333332" + ], + [ + 1701294939.781, + "10000" + ], + [ + 1701294940.781, + "10000" + ], + [ + 1701294941.781, + "10000" + ], + [ + 1701294942.781, + "10000" + ], + [ + 1701294943.781, + "10000" + ], + [ + 1701294944.781, + "10000" + ], + [ + 1701294945.781, + "10000" + ], + [ + 1701294946.781, + "10000" + ], + [ + 1701294947.781, + "10000" + ], + [ + 1701294948.781, + "10000" + ], + [ + 1701294949.781, + "10000" + ], + [ + 1701294950.781, + "10000" + ], + [ + 1701294951.781, + "10000" + ], + [ + 1701294952.781, + "10000" + ], + [ + 1701294953.781, + "10000" + ], + [ + 1701294954.781, + "10000" + ], + [ + 1701294955.781, + "10000" + ], + [ + 1701294956.781, + "10000" + ], + [ + 1701294957.781, + "10000" + ], + [ + 1701294958.781, + "10000" + ], + [ + 1701294959.781, + "10000" + ], + [ + 1701294960.781, + "10000" + ], + [ + 1701294961.781, + "10000" + ], + [ + 1701294962.781, + "10000" + ], + [ + 1701294963.781, + "10000" + ], + [ + 1701294964.781, + "10000" + ], + [ + 1701294965.781, + "10000" + ], + [ + 1701294966.781, + "10000" + ], + [ + 1701294967.781, + "10000" + ], + [ + 1701294968.781, + "10000" + ], + [ + 1701294969.781, + "10000" + ], + [ + 1701294970.781, + "10000" + ], + [ + 1701294971.781, + "10000" + ], + [ + 1701294972.781, + "10000" + ], + [ + 1701294973.781, + "10000" + ], + [ + 1701294974.781, + "10000" + ], + [ + 1701294975.781, + "10000" + ], + [ + 1701294976.781, + "10000" + ], + [ + 1701294977.781, + "10000" + ], + [ + 1701294978.781, + "10000" + ], + [ + 1701294979.781, + "10000" + ], + [ + 1701294980.781, + "10000" + ], + [ + 1701294981.781, + "10000" + ], + [ + 1701294982.781, + "10000" + ], + [ + 1701294983.781, + "10000" + ], + [ + 1701294984.781, + "10000" + ], + [ + 1701294985.781, + "10000" + ], + [ + 1701294986.781, + "10000" + ], + [ + 1701294987.781, + "10000" + ], + [ + 1701294988.781, + "10000" + ], + [ + 1701294989.781, + "10000" + ], + [ + 1701294990.781, + "10000" + ], + [ + 1701294991.781, + "10000" + ], + [ + 1701294992.781, + "10000" + ], + [ + 1701294993.781, + "10000" + ], + [ + 1701294994.781, + "10000" + ], + [ + 1701294995.781, + "10000" + ], + [ + 1701294996.781, + "10000" + ], + [ + 1701294997.781, + "10000" + ], + [ + 1701294998.781, + "10000" + ], + [ + 1701294999.781, + "7666.666666666667" + ], + [ + 1701295000.781, + "7666.666666666667" + ], + [ + 1701295001.781, + "7666.666666666667" + ], + [ + 1701295002.781, + "7666.666666666667" + ], + [ + 1701295003.781, + "7666.666666666667" + ], + [ + 1701295004.781, + "7666.666666666667" + ], + [ + 1701295005.781, + "7666.666666666667" + ], + [ + 1701295006.781, + "7666.666666666667" + ], + [ + 1701295007.781, + "7666.666666666667" + ], + [ + 1701295008.781, + "7666.666666666667" + ], + [ + 1701295009.781, + "7666.666666666667" + ], + [ + 1701295010.781, + "7666.666666666667" + ], + [ + 1701295011.781, + "7666.666666666667" + ], + [ + 1701295012.781, + "7666.666666666667" + ], + [ + 1701295013.781, + "7666.666666666667" + ], + [ + 1701295014.781, + "7666.666666666667" + ], + [ + 1701295015.781, + "7666.666666666667" + ], + [ + 1701295016.781, + "7666.666666666667" + ], + [ + 1701295017.781, + "7666.666666666667" + ], + [ + 1701295018.781, + "7666.666666666667" + ], + [ + 1701295019.781, + "7666.666666666667" + ], + [ + 1701295020.781, + "7666.666666666667" + ], + [ + 1701295021.781, + "7666.666666666667" + ], + [ + 1701295022.781, + "7666.666666666667" + ], + [ + 1701295023.781, + "7666.666666666667" + ], + [ + 1701295024.781, + "7666.666666666667" + ], + [ + 1701295025.781, + "7666.666666666667" + ], + [ + 1701295026.781, + "7666.666666666667" + ], + [ + 1701295027.781, + "7666.666666666667" + ], + [ + 1701295028.781, + "7666.666666666667" + ], + [ + 1701295029.781, + "7666.666666666667" + ], + [ + 1701295030.781, + "7666.666666666667" + ], + [ + 1701295031.781, + "7666.666666666667" + ], + [ + 1701295032.781, + "7666.666666666667" + ], + [ + 1701295033.781, + "7666.666666666667" + ], + [ + 1701295034.781, + "7666.666666666667" + ], + [ + 1701295035.781, + "7666.666666666667" + ], + [ + 1701295036.781, + "7666.666666666667" + ], + [ + 1701295037.781, + "7666.666666666667" + ], + [ + 1701295038.781, + "7666.666666666667" + ], + [ + 1701295039.781, + "7666.666666666667" + ], + [ + 1701295040.781, + "7666.666666666667" + ], + [ + 1701295041.781, + "7666.666666666667" + ], + [ + 1701295042.781, + "7666.666666666667" + ], + [ + 1701295043.781, + "7666.666666666667" + ], + [ + 1701295044.781, + "7666.666666666667" + ], + [ + 1701295045.781, + "7666.666666666667" + ], + [ + 1701295046.781, + "7666.666666666667" + ], + [ + 1701295047.781, + "7666.666666666667" + ], + [ + 1701295048.781, + "7666.666666666667" + ], + [ + 1701295049.781, + "7666.666666666667" + ], + [ + 1701295050.781, + "7666.666666666667" + ], + [ + 1701295051.781, + "7666.666666666667" + ], + [ + 1701295052.781, + "7666.666666666667" + ], + [ + 1701295053.781, + "7666.666666666667" + ], + [ + 1701295054.781, + "7666.666666666667" + ], + [ + 1701295055.781, + "7666.666666666667" + ], + [ + 1701295056.781, + "7666.666666666667" + ], + [ + 1701295057.781, + "7666.666666666667" + ], + [ + 1701295058.781, + "7666.666666666667" + ], + [ + 1701295059.781, + "12333.333333333334" + ], + [ + 1701295060.781, + "12333.333333333334" + ], + [ + 1701295061.781, + "12333.333333333334" + ], + [ + 1701295062.781, + "12333.333333333334" + ], + [ + 1701295063.781, + "12333.333333333334" + ], + [ + 1701295064.781, + "12333.333333333334" + ], + [ + 1701295065.781, + "12333.333333333334" + ], + [ + 1701295066.781, + "12333.333333333334" + ], + [ + 1701295067.781, + "12333.333333333334" + ], + [ + 1701295068.781, + "12333.333333333334" + ], + [ + 1701295069.781, + "12333.333333333334" + ], + [ + 1701295070.781, + "12333.333333333334" + ], + [ + 1701295071.781, + "12333.333333333334" + ], + [ + 1701295072.781, + "12333.333333333334" + ], + [ + 1701295073.781, + "12333.333333333334" + ], + [ + 1701295074.781, + "12333.333333333334" + ], + [ + 1701295075.781, + "12333.333333333334" + ], + [ + 1701295076.781, + "12333.333333333334" + ], + [ + 1701295077.781, + "12333.333333333334" + ], + [ + 1701295078.781, + "12333.333333333334" + ], + [ + 1701295079.781, + "12333.333333333334" + ], + [ + 1701295080.781, + "12333.333333333334" + ], + [ + 1701295081.781, + "12333.333333333334" + ], + [ + 1701295082.781, + "12333.333333333334" + ], + [ + 1701295083.781, + "12333.333333333334" + ], + [ + 1701295084.781, + "12333.333333333334" + ], + [ + 1701295085.781, + "12333.333333333334" + ], + [ + 1701295086.781, + "12333.333333333334" + ], + [ + 1701295087.781, + "12333.333333333334" + ], + [ + 1701295088.781, + "12333.333333333334" + ], + [ + 1701295089.781, + "12333.333333333334" + ], + [ + 1701295090.781, + "12333.333333333334" + ], + [ + 1701295091.781, + "12333.333333333334" + ], + [ + 1701295092.781, + "12333.333333333334" + ], + [ + 1701295093.781, + "12333.333333333334" + ], + [ + 1701295094.781, + "12333.333333333334" + ], + [ + 1701295095.781, + "12333.333333333334" + ], + [ + 1701295096.781, + "12333.333333333334" + ], + [ + 1701295097.781, + "12333.333333333334" + ], + [ + 1701295098.781, + "12333.333333333334" + ], + [ + 1701295099.781, + "12333.333333333334" + ], + [ + 1701295100.781, + "12333.333333333334" + ], + [ + 1701295101.781, + "12333.333333333334" + ], + [ + 1701295102.781, + "12333.333333333334" + ], + [ + 1701295103.781, + "12333.333333333334" + ], + [ + 1701295104.781, + "12333.333333333334" + ], + [ + 1701295105.781, + "12333.333333333334" + ], + [ + 1701295106.781, + "12333.333333333334" + ], + [ + 1701295107.781, + "12333.333333333334" + ], + [ + 1701295108.781, + "12333.333333333334" + ], + [ + 1701295109.781, + "12333.333333333334" + ], + [ + 1701295110.781, + "12333.333333333334" + ], + [ + 1701295111.781, + "12333.333333333334" + ], + [ + 1701295112.781, + "12333.333333333334" + ], + [ + 1701295113.781, + "12333.333333333334" + ], + [ + 1701295114.781, + "12333.333333333334" + ], + [ + 1701295115.781, + "12333.333333333334" + ], + [ + 1701295116.781, + "12333.333333333334" + ], + [ + 1701295117.781, + "12333.333333333334" + ], + [ + 1701295118.781, + "12333.333333333334" + ], + [ + 1701295119.781, + "7666.666666666667" + ], + [ + 1701295120.781, + "7666.666666666667" + ], + [ + 1701295121.781, + "7666.666666666667" + ], + [ + 1701295122.781, + "7666.666666666667" + ], + [ + 1701295123.781, + "7666.666666666667" + ], + [ + 1701295124.781, + "7666.666666666667" + ], + [ + 1701295125.781, + "7666.666666666667" + ], + [ + 1701295126.781, + "7666.666666666667" + ], + [ + 1701295127.781, + "7666.666666666667" + ], + [ + 1701295128.781, + "7666.666666666667" + ], + [ + 1701295129.781, + "7666.666666666667" + ], + [ + 1701295130.781, + "7666.666666666667" + ], + [ + 1701295131.781, + "7666.666666666667" + ], + [ + 1701295132.781, + "7666.666666666667" + ], + [ + 1701295133.781, + "7666.666666666667" + ], + [ + 1701295134.781, + "7666.666666666667" + ], + [ + 1701295135.781, + "7666.666666666667" + ], + [ + 1701295136.781, + "7666.666666666667" + ], + [ + 1701295137.781, + "7666.666666666667" + ], + [ + 1701295138.781, + "7666.666666666667" + ], + [ + 1701295139.781, + "7666.666666666667" + ], + [ + 1701295140.781, + "7666.666666666667" + ], + [ + 1701295141.781, + "7666.666666666667" + ], + [ + 1701295142.781, + "7666.666666666667" + ], + [ + 1701295143.781, + "7666.666666666667" + ], + [ + 1701295144.781, + "7666.666666666667" + ], + [ + 1701295145.781, + "7666.666666666667" + ], + [ + 1701295146.781, + "7666.666666666667" + ], + [ + 1701295147.781, + "7666.666666666667" + ], + [ + 1701295148.781, + "7666.666666666667" + ], + [ + 1701295149.781, + "7666.666666666667" + ], + [ + 1701295150.781, + "7666.666666666667" + ], + [ + 1701295151.781, + "7666.666666666667" + ], + [ + 1701295152.781, + "7666.666666666667" + ], + [ + 1701295153.781, + "7666.666666666667" + ], + [ + 1701295154.781, + "7666.666666666667" + ], + [ + 1701295155.781, + "7666.666666666667" + ], + [ + 1701295156.781, + "7666.666666666667" + ], + [ + 1701295157.781, + "7666.666666666667" + ], + [ + 1701295158.781, + "7666.666666666667" + ], + [ + 1701295159.781, + "7666.666666666667" + ], + [ + 1701295160.781, + "7666.666666666667" + ], + [ + 1701295161.781, + "7666.666666666667" + ], + [ + 1701295162.781, + "7666.666666666667" + ], + [ + 1701295163.781, + "7666.666666666667" + ], + [ + 1701295164.781, + "7666.666666666667" + ], + [ + 1701295165.781, + "7666.666666666667" + ], + [ + 1701295166.781, + "7666.666666666667" + ], + [ + 1701295167.781, + "7666.666666666667" + ], + [ + 1701295168.781, + "7666.666666666667" + ], + [ + 1701295169.781, + "7666.666666666667" + ], + [ + 1701295170.781, + "7666.666666666667" + ], + [ + 1701295171.781, + "7666.666666666667" + ], + [ + 1701295172.781, + "7666.666666666667" + ], + [ + 1701295173.781, + "7666.666666666667" + ], + [ + 1701295174.781, + "7666.666666666667" + ], + [ + 1701295175.781, + "7666.666666666667" + ], + [ + 1701295176.781, + "7666.666666666667" + ], + [ + 1701295177.781, + "7666.666666666667" + ], + [ + 1701295178.781, + "7666.666666666667" + ], + [ + 1701295179.781, + "8333.333333333334" + ], + [ + 1701295180.781, + "8333.333333333334" + ], + [ + 1701295181.781, + "8333.333333333334" + ], + [ + 1701295182.781, + "8333.333333333334" + ], + [ + 1701295183.781, + "8333.333333333334" + ], + [ + 1701295184.781, + "8333.333333333334" + ], + [ + 1701295185.781, + "8333.333333333334" + ], + [ + 1701295186.781, + "8333.333333333334" + ], + [ + 1701295187.781, + "8333.333333333334" + ], + [ + 1701295188.781, + "8333.333333333334" + ], + [ + 1701295189.781, + "8333.333333333334" + ], + [ + 1701295190.781, + "8333.333333333334" + ], + [ + 1701295191.781, + "8333.333333333334" + ], + [ + 1701295192.781, + "8333.333333333334" + ], + [ + 1701295193.781, + "8333.333333333334" + ], + [ + 1701295194.781, + "8333.333333333334" + ], + [ + 1701295195.781, + "8333.333333333334" + ], + [ + 1701295196.781, + "8333.333333333334" + ], + [ + 1701295197.781, + "8333.333333333334" + ], + [ + 1701295198.781, + "8333.333333333334" + ], + [ + 1701295199.781, + "8333.333333333334" + ], + [ + 1701295200.781, + "8333.333333333334" + ], + [ + 1701295201.781, + "8333.333333333334" + ], + [ + 1701295202.781, + "8333.333333333334" + ], + [ + 1701295203.781, + "8333.333333333334" + ], + [ + 1701295204.781, + "8333.333333333334" + ], + [ + 1701295205.781, + "8333.333333333334" + ], + [ + 1701295206.781, + "8333.333333333334" + ], + [ + 1701295207.781, + "8333.333333333334" + ], + [ + 1701295208.781, + "8333.333333333334" + ], + [ + 1701295209.781, + "8333.333333333334" + ], + [ + 1701295210.781, + "8333.333333333334" + ], + [ + 1701295211.781, + "8333.333333333334" + ], + [ + 1701295212.781, + "8333.333333333334" + ], + [ + 1701295213.781, + "8333.333333333334" + ], + [ + 1701295214.781, + "8333.333333333334" + ], + [ + 1701295215.781, + "8333.333333333334" + ], + [ + 1701295216.781, + "8333.333333333334" + ], + [ + 1701295217.781, + "8333.333333333334" + ], + [ + 1701295218.781, + "8333.333333333334" + ], + [ + 1701295219.781, + "8333.333333333334" + ], + [ + 1701295220.781, + "8333.333333333334" + ], + [ + 1701295221.781, + "8333.333333333334" + ], + [ + 1701295222.781, + "8333.333333333334" + ], + [ + 1701295223.781, + "8333.333333333334" + ], + [ + 1701295224.781, + "8333.333333333334" + ], + [ + 1701295225.781, + "8333.333333333334" + ], + [ + 1701295226.781, + "8333.333333333334" + ], + [ + 1701295227.781, + "8333.333333333334" + ], + [ + 1701295228.781, + "8333.333333333334" + ], + [ + 1701295229.781, + "8333.333333333334" + ], + [ + 1701295230.781, + "8333.333333333334" + ], + [ + 1701295231.781, + "8333.333333333334" + ], + [ + 1701295232.781, + "8333.333333333334" + ], + [ + 1701295233.781, + "8333.333333333334" + ], + [ + 1701295234.781, + "8333.333333333334" + ], + [ + 1701295235.781, + "8333.333333333334" + ], + [ + 1701295236.781, + "8333.333333333334" + ], + [ + 1701295237.781, + "8333.333333333334" + ], + [ + 1701295238.781, + "8333.333333333334" + ], + [ + 1701295239.781, + "14333.333333333334" + ], + [ + 1701295240.781, + "14333.333333333334" + ], + [ + 1701295241.781, + "14333.333333333334" + ], + [ + 1701295242.781, + "14333.333333333334" + ], + [ + 1701295243.781, + "14333.333333333334" + ], + [ + 1701295244.781, + "14333.333333333334" + ], + [ + 1701295245.781, + "14333.333333333334" + ], + [ + 1701295246.781, + "14333.333333333334" + ], + [ + 1701295247.781, + "14333.333333333334" + ], + [ + 1701295248.781, + "14333.333333333334" + ], + [ + 1701295249.781, + "14333.333333333334" + ], + [ + 1701295250.781, + "14333.333333333334" + ], + [ + 1701295251.781, + "14333.333333333334" + ], + [ + 1701295252.781, + "14333.333333333334" + ], + [ + 1701295253.781, + "14333.333333333334" + ], + [ + 1701295254.781, + "14333.333333333334" + ], + [ + 1701295255.781, + "14333.333333333334" + ], + [ + 1701295256.781, + "14333.333333333334" + ], + [ + 1701295257.781, + "14333.333333333334" + ], + [ + 1701295258.781, + "14333.333333333334" + ], + [ + 1701295259.781, + "14333.333333333334" + ], + [ + 1701295260.781, + "14333.333333333334" + ], + [ + 1701295261.781, + "14333.333333333334" + ], + [ + 1701295262.781, + "14333.333333333334" + ], + [ + 1701295263.781, + "14333.333333333334" + ], + [ + 1701295264.781, + "14333.333333333334" + ], + [ + 1701295265.781, + "14333.333333333334" + ], + [ + 1701295266.781, + "14333.333333333334" + ], + [ + 1701295267.781, + "14333.333333333334" + ], + [ + 1701295268.781, + "14333.333333333334" + ], + [ + 1701295269.781, + "14333.333333333334" + ], + [ + 1701295270.781, + "14333.333333333334" + ], + [ + 1701295271.781, + "14333.333333333334" + ], + [ + 1701295272.781, + "14333.333333333334" + ], + [ + 1701295273.781, + "14333.333333333334" + ], + [ + 1701295274.781, + "14333.333333333334" + ], + [ + 1701295275.781, + "14333.333333333334" + ], + [ + 1701295276.781, + "14333.333333333334" + ], + [ + 1701295277.781, + "14333.333333333334" + ], + [ + 1701295278.781, + "14333.333333333334" + ], + [ + 1701295279.781, + "14333.333333333334" + ], + [ + 1701295280.781, + "14333.333333333334" + ], + [ + 1701295281.781, + "14333.333333333334" + ], + [ + 1701295282.781, + "14333.333333333334" + ], + [ + 1701295283.781, + "14333.333333333334" + ], + [ + 1701295284.781, + "14333.333333333334" + ], + [ + 1701295285.781, + "14333.333333333334" + ], + [ + 1701295286.781, + "14333.333333333334" + ], + [ + 1701295287.781, + "14333.333333333334" + ], + [ + 1701295288.781, + "14333.333333333334" + ], + [ + 1701295289.781, + "14333.333333333334" + ], + [ + 1701295290.781, + "14333.333333333334" + ], + [ + 1701295291.781, + "14333.333333333334" + ], + [ + 1701295292.781, + "14333.333333333334" + ], + [ + 1701295293.781, + "14333.333333333334" + ], + [ + 1701295294.781, + "14333.333333333334" + ], + [ + 1701295295.781, + "14333.333333333334" + ], + [ + 1701295296.781, + "14333.333333333334" + ], + [ + 1701295297.781, + "14333.333333333334" + ], + [ + 1701295298.781, + "14333.333333333334" + ], + [ + 1701295299.781, + "3666.6666666666665" + ], + [ + 1701295300.781, + "3666.6666666666665" + ], + [ + 1701295301.781, + "3666.6666666666665" + ], + [ + 1701295302.781, + "3666.6666666666665" + ], + [ + 1701295303.781, + "3666.6666666666665" + ], + [ + 1701295304.781, + "3666.6666666666665" + ], + [ + 1701295305.781, + "3666.6666666666665" + ], + [ + 1701295306.781, + "3666.6666666666665" + ], + [ + 1701295307.781, + "3666.6666666666665" + ], + [ + 1701295308.781, + "3666.6666666666665" + ], + [ + 1701295309.781, + "3666.6666666666665" + ], + [ + 1701295310.781, + "3666.6666666666665" + ], + [ + 1701295311.781, + "3666.6666666666665" + ], + [ + 1701295312.781, + "3666.6666666666665" + ], + [ + 1701295313.781, + "3666.6666666666665" + ], + [ + 1701295314.781, + "3666.6666666666665" + ], + [ + 1701295315.781, + "3666.6666666666665" + ], + [ + 1701295316.781, + "3666.6666666666665" + ], + [ + 1701295317.781, + "3666.6666666666665" + ], + [ + 1701295318.781, + "3666.6666666666665" + ], + [ + 1701295319.781, + "3666.6666666666665" + ], + [ + 1701295320.781, + "3666.6666666666665" + ], + [ + 1701295321.781, + "3666.6666666666665" + ], + [ + 1701295322.781, + "3666.6666666666665" + ], + [ + 1701295323.781, + "3666.6666666666665" + ], + [ + 1701295324.781, + "3666.6666666666665" + ], + [ + 1701295325.781, + "3666.6666666666665" + ], + [ + 1701295326.781, + "3666.6666666666665" + ], + [ + 1701295327.781, + "3666.6666666666665" + ], + [ + 1701295328.781, + "3666.6666666666665" + ], + [ + 1701295329.781, + "3666.6666666666665" + ], + [ + 1701295330.781, + "3666.6666666666665" + ], + [ + 1701295331.781, + "3666.6666666666665" + ], + [ + 1701295332.781, + "3666.6666666666665" + ], + [ + 1701295333.781, + "3666.6666666666665" + ], + [ + 1701295334.781, + "3666.6666666666665" + ], + [ + 1701295335.781, + "3666.6666666666665" + ], + [ + 1701295336.781, + "3666.6666666666665" + ], + [ + 1701295337.781, + "3666.6666666666665" + ], + [ + 1701295338.781, + "3666.6666666666665" + ], + [ + 1701295339.781, + "3666.6666666666665" + ], + [ + 1701295340.781, + "3666.6666666666665" + ], + [ + 1701295341.781, + "3666.6666666666665" + ], + [ + 1701295342.781, + "3666.6666666666665" + ], + [ + 1701295343.781, + "3666.6666666666665" + ], + [ + 1701295344.781, + "3666.6666666666665" + ], + [ + 1701295345.781, + "3666.6666666666665" + ], + [ + 1701295346.781, + "3666.6666666666665" + ], + [ + 1701295347.781, + "3666.6666666666665" + ], + [ + 1701295348.781, + "3666.6666666666665" + ], + [ + 1701295349.781, + "3666.6666666666665" + ], + [ + 1701295350.781, + "3666.6666666666665" + ], + [ + 1701295351.781, + "3666.6666666666665" + ], + [ + 1701295352.781, + "3666.6666666666665" + ], + [ + 1701295353.781, + "3666.6666666666665" + ], + [ + 1701295354.781, + "3666.6666666666665" + ], + [ + 1701295355.781, + "3666.6666666666665" + ], + [ + 1701295356.781, + "3666.6666666666665" + ], + [ + 1701295357.781, + "3666.6666666666665" + ], + [ + 1701295358.781, + "3666.6666666666665" + ], + [ + 1701295359.781, + "16333.333333333334" + ], + [ + 1701295360.781, + "16333.333333333334" + ], + [ + 1701295361.781, + "16333.333333333334" + ], + [ + 1701295362.781, + "16333.333333333334" + ], + [ + 1701295363.781, + "16333.333333333334" + ], + [ + 1701295364.781, + "16333.333333333334" + ], + [ + 1701295365.781, + "16333.333333333334" + ], + [ + 1701295366.781, + "16333.333333333334" + ], + [ + 1701295367.781, + "16333.333333333334" + ], + [ + 1701295368.781, + "16333.333333333334" + ], + [ + 1701295369.781, + "16333.333333333334" + ], + [ + 1701295370.781, + "16333.333333333334" + ], + [ + 1701295371.781, + "16333.333333333334" + ], + [ + 1701295372.781, + "16333.333333333334" + ], + [ + 1701295373.781, + "16333.333333333334" + ], + [ + 1701295374.781, + "16333.333333333334" + ], + [ + 1701295375.781, + "16333.333333333334" + ], + [ + 1701295376.781, + "16333.333333333334" + ], + [ + 1701295377.781, + "16333.333333333334" + ], + [ + 1701295378.781, + "16333.333333333334" + ], + [ + 1701295379.781, + "16333.333333333334" + ], + [ + 1701295380.781, + "16333.333333333334" + ], + [ + 1701295381.781, + "16333.333333333334" + ], + [ + 1701295382.781, + "16333.333333333334" + ], + [ + 1701295383.781, + "16333.333333333334" + ], + [ + 1701295384.781, + "16333.333333333334" + ], + [ + 1701295385.781, + "16333.333333333334" + ], + [ + 1701295386.781, + "16333.333333333334" + ], + [ + 1701295387.781, + "16333.333333333334" + ], + [ + 1701295388.781, + "16333.333333333334" + ], + [ + 1701295389.781, + "16333.333333333334" + ], + [ + 1701295390.781, + "16333.333333333334" + ], + [ + 1701295391.781, + "16333.333333333334" + ], + [ + 1701295392.781, + "16333.333333333334" + ], + [ + 1701295393.781, + "16333.333333333334" + ], + [ + 1701295394.781, + "16333.333333333334" + ], + [ + 1701295395.781, + "16333.333333333334" + ], + [ + 1701295396.781, + "16333.333333333334" + ], + [ + 1701295397.781, + "16333.333333333334" + ], + [ + 1701295398.781, + "16333.333333333334" + ], + [ + 1701295399.781, + "16333.333333333334" + ], + [ + 1701295400.781, + "16333.333333333334" + ], + [ + 1701295401.781, + "16333.333333333334" + ], + [ + 1701295402.781, + "16333.333333333334" + ], + [ + 1701295403.781, + "16333.333333333334" + ], + [ + 1701295404.781, + "16333.333333333334" + ], + [ + 1701295405.781, + "16333.333333333334" + ], + [ + 1701295406.781, + "16333.333333333334" + ], + [ + 1701295407.781, + "16333.333333333334" + ], + [ + 1701295408.781, + "16333.333333333334" + ], + [ + 1701295409.781, + "16333.333333333334" + ], + [ + 1701295410.781, + "16333.333333333334" + ], + [ + 1701295411.781, + "16333.333333333334" + ], + [ + 1701295412.781, + "16333.333333333334" + ], + [ + 1701295413.781, + "16333.333333333334" + ], + [ + 1701295414.781, + "16333.333333333334" + ], + [ + 1701295415.781, + "16333.333333333334" + ], + [ + 1701295416.781, + "16333.333333333334" + ], + [ + 1701295417.781, + "16333.333333333334" + ], + [ + 1701295418.781, + "16333.333333333334" + ], + [ + 1701295419.781, + "16334.666666666666" + ], + [ + 1701295420.781, + "16334.666666666666" + ], + [ + 1701295421.781, + "16334.666666666666" + ], + [ + 1701295422.781, + "16334.666666666666" + ], + [ + 1701295423.781, + "16334.666666666666" + ], + [ + 1701295424.781, + "16334.666666666666" + ], + [ + 1701295425.781, + "16334.666666666666" + ], + [ + 1701295426.781, + "16334.666666666666" + ], + [ + 1701295427.781, + "16334.666666666666" + ], + [ + 1701295428.781, + "16334.666666666666" + ], + [ + 1701295429.781, + "16334.666666666666" + ], + [ + 1701295430.781, + "16334.666666666666" + ], + [ + 1701295431.781, + "16334.666666666666" + ], + [ + 1701295432.781, + "16334.666666666666" + ], + [ + 1701295433.781, + "16334.666666666666" + ], + [ + 1701295434.781, + "16334.666666666666" + ], + [ + 1701295435.781, + "16334.666666666666" + ], + [ + 1701295436.781, + "16334.666666666666" + ], + [ + 1701295437.781, + "16334.666666666666" + ], + [ + 1701295438.781, + "16334.666666666666" + ], + [ + 1701295439.781, + "16334.666666666666" + ], + [ + 1701295440.781, + "16334.666666666666" + ], + [ + 1701295441.781, + "16334.666666666666" + ], + [ + 1701295442.781, + "16334.666666666666" + ], + [ + 1701295443.781, + "16334.666666666666" + ], + [ + 1701295444.781, + "16334.666666666666" + ], + [ + 1701295445.781, + "16334.666666666666" + ], + [ + 1701295446.781, + "16334.666666666666" + ], + [ + 1701295447.781, + "16334.666666666666" + ], + [ + 1701295448.781, + "16334.666666666666" + ], + [ + 1701295449.781, + "16334.666666666666" + ], + [ + 1701295450.781, + "16334.666666666666" + ], + [ + 1701295451.781, + "16334.666666666666" + ], + [ + 1701295452.781, + "16334.666666666666" + ], + [ + 1701295453.781, + "16334.666666666666" + ], + [ + 1701295454.781, + "16334.666666666666" + ], + [ + 1701295455.781, + "16334.666666666666" + ], + [ + 1701295456.781, + "16334.666666666666" + ], + [ + 1701295457.781, + "16334.666666666666" + ], + [ + 1701295458.781, + "16334.666666666666" + ], + [ + 1701295459.781, + "16334.666666666666" + ], + [ + 1701295460.781, + "16334.666666666666" + ], + [ + 1701295461.781, + "16334.666666666666" + ], + [ + 1701295462.781, + "16334.666666666666" + ], + [ + 1701295463.781, + "16334.666666666666" + ], + [ + 1701295464.781, + "16334.666666666666" + ], + [ + 1701295465.781, + "16334.666666666666" + ], + [ + 1701295466.781, + "16334.666666666666" + ], + [ + 1701295467.781, + "16334.666666666666" + ], + [ + 1701295468.781, + "16334.666666666666" + ], + [ + 1701295469.781, + "16334.666666666666" + ], + [ + 1701295470.781, + "16334.666666666666" + ], + [ + 1701295471.781, + "16334.666666666666" + ], + [ + 1701295472.781, + "16334.666666666666" + ], + [ + 1701295473.781, + "16334.666666666666" + ], + [ + 1701295474.781, + "16334.666666666666" + ], + [ + 1701295475.781, + "16334.666666666666" + ], + [ + 1701295476.781, + "16334.666666666666" + ], + [ + 1701295477.781, + "16334.666666666666" + ], + [ + 1701295478.781, + "16334.666666666666" + ], + [ + 1701295479.781, + "10001.333333333334" + ], + [ + 1701295480.781, + "10001.333333333334" + ], + [ + 1701295481.781, + "10001.333333333334" + ], + [ + 1701295482.781, + "10001.333333333334" + ], + [ + 1701295483.781, + "10001.333333333334" + ], + [ + 1701295484.781, + "10001.333333333334" + ], + [ + 1701295485.781, + "10001.333333333334" + ], + [ + 1701295486.781, + "10001.333333333334" + ], + [ + 1701295487.781, + "10001.333333333334" + ], + [ + 1701295488.781, + "10001.333333333334" + ], + [ + 1701295489.781, + "10001.333333333334" + ], + [ + 1701295490.781, + "10001.333333333334" + ], + [ + 1701295491.781, + "10001.333333333334" + ], + [ + 1701295492.781, + "10001.333333333334" + ], + [ + 1701295493.781, + "10001.333333333334" + ], + [ + 1701295494.781, + "10001.333333333334" + ], + [ + 1701295495.781, + "10001.333333333334" + ], + [ + 1701295496.781, + "10001.333333333334" + ], + [ + 1701295497.781, + "10001.333333333334" + ], + [ + 1701295498.781, + "10001.333333333334" + ], + [ + 1701295499.781, + "10001.333333333334" + ], + [ + 1701295500.781, + "10001.333333333334" + ], + [ + 1701295501.781, + "10001.333333333334" + ], + [ + 1701295502.781, + "10001.333333333334" + ], + [ + 1701295503.781, + "10001.333333333334" + ], + [ + 1701295504.781, + "10001.333333333334" + ], + [ + 1701295505.781, + "10001.333333333334" + ], + [ + 1701295506.781, + "10001.333333333334" + ], + [ + 1701295507.781, + "10001.333333333334" + ], + [ + 1701295508.781, + "10001.333333333334" + ], + [ + 1701295509.781, + "10001.333333333334" + ], + [ + 1701295510.781, + "10001.333333333334" + ], + [ + 1701295511.781, + "10001.333333333334" + ], + [ + 1701295512.781, + "10001.333333333334" + ], + [ + 1701295513.781, + "10001.333333333334" + ], + [ + 1701295514.781, + "10001.333333333334" + ], + [ + 1701295515.781, + "10001.333333333334" + ], + [ + 1701295516.781, + "10001.333333333334" + ], + [ + 1701295517.781, + "10001.333333333334" + ], + [ + 1701295518.781, + "10001.333333333334" + ], + [ + 1701295519.781, + "10001.333333333334" + ], + [ + 1701295520.781, + "10001.333333333334" + ], + [ + 1701295521.781, + "10001.333333333334" + ], + [ + 1701295522.781, + "10001.333333333334" + ], + [ + 1701295523.781, + "10001.333333333334" + ], + [ + 1701295524.781, + "10001.333333333334" + ], + [ + 1701295525.781, + "10001.333333333334" + ], + [ + 1701295526.781, + "10001.333333333334" + ], + [ + 1701295527.781, + "10001.333333333334" + ], + [ + 1701295528.781, + "10001.333333333334" + ], + [ + 1701295529.781, + "10001.333333333334" + ], + [ + 1701295530.781, + "10001.333333333334" + ], + [ + 1701295531.781, + "10001.333333333334" + ], + [ + 1701295532.781, + "10001.333333333334" + ], + [ + 1701295533.781, + "10001.333333333334" + ], + [ + 1701295534.781, + "10001.333333333334" + ], + [ + 1701295535.781, + "10001.333333333334" + ], + [ + 1701295536.781, + "10001.333333333334" + ], + [ + 1701295537.781, + "10001.333333333334" + ], + [ + 1701295538.781, + "10001.333333333334" + ], + [ + 1701295539.781, + "8166.666666666667" + ], + [ + 1701295540.781, + "8166.666666666667" + ], + [ + 1701295541.781, + "8166.666666666667" + ], + [ + 1701295542.781, + "8166.666666666667" + ], + [ + 1701295543.781, + "8166.666666666667" + ], + [ + 1701295544.781, + "8166.666666666667" + ], + [ + 1701295545.781, + "8166.666666666667" + ], + [ + 1701295546.781, + "8166.666666666667" + ], + [ + 1701295547.781, + "8166.666666666667" + ], + [ + 1701295548.781, + "8166.666666666667" + ], + [ + 1701295549.781, + "8166.666666666667" + ], + [ + 1701295550.781, + "8166.666666666667" + ], + [ + 1701295551.781, + "8166.666666666667" + ], + [ + 1701295552.781, + "8166.666666666667" + ], + [ + 1701295553.781, + "8166.666666666667" + ], + [ + 1701295554.781, + "8166.666666666667" + ], + [ + 1701295555.781, + "8166.666666666667" + ], + [ + 1701295556.781, + "8166.666666666667" + ], + [ + 1701295557.781, + "8166.666666666667" + ], + [ + 1701295558.781, + "8166.666666666667" + ], + [ + 1701295559.781, + "8166.666666666667" + ], + [ + 1701295560.781, + "8166.666666666667" + ], + [ + 1701295561.781, + "8166.666666666667" + ], + [ + 1701295562.781, + "8166.666666666667" + ], + [ + 1701295563.781, + "8166.666666666667" + ], + [ + 1701295564.781, + "8166.666666666667" + ], + [ + 1701295565.781, + "8166.666666666667" + ], + [ + 1701295566.781, + "8166.666666666667" + ], + [ + 1701295567.781, + "8166.666666666667" + ], + [ + 1701295568.781, + "8166.666666666667" + ], + [ + 1701295569.781, + "8166.666666666667" + ], + [ + 1701295570.781, + "8166.666666666667" + ], + [ + 1701295571.781, + "8166.666666666667" + ], + [ + 1701295572.781, + "8166.666666666667" + ], + [ + 1701295573.781, + "8166.666666666667" + ], + [ + 1701295574.781, + "8166.666666666667" + ], + [ + 1701295575.781, + "8166.666666666667" + ], + [ + 1701295576.781, + "8166.666666666667" + ], + [ + 1701295577.781, + "8166.666666666667" + ], + [ + 1701295578.781, + "8166.666666666667" + ], + [ + 1701295579.781, + "8166.666666666667" + ], + [ + 1701295580.781, + "8166.666666666667" + ], + [ + 1701295581.781, + "8166.666666666667" + ], + [ + 1701295582.781, + "8166.666666666667" + ], + [ + 1701295583.781, + "8166.666666666667" + ], + [ + 1701295584.781, + "8166.666666666667" + ], + [ + 1701295585.781, + "8166.666666666667" + ], + [ + 1701295586.781, + "8166.666666666667" + ], + [ + 1701295587.781, + "8166.666666666667" + ], + [ + 1701295588.781, + "8166.666666666667" + ], + [ + 1701295589.781, + "8166.666666666667" + ], + [ + 1701295590.781, + "8166.666666666667" + ], + [ + 1701295591.781, + "8166.666666666667" + ], + [ + 1701295592.781, + "8166.666666666667" + ], + [ + 1701295593.781, + "8166.666666666667" + ], + [ + 1701295594.781, + "8166.666666666667" + ], + [ + 1701295595.781, + "8166.666666666667" + ], + [ + 1701295596.781, + "8166.666666666667" + ], + [ + 1701295597.781, + "8166.666666666667" + ], + [ + 1701295598.781, + "8166.666666666667" + ], + [ + 1701295599.781, + "7666.666666666667" + ], + [ + 1701295600.781, + "7666.666666666667" + ], + [ + 1701295601.781, + "7666.666666666667" + ], + [ + 1701295602.781, + "7666.666666666667" + ], + [ + 1701295603.781, + "7666.666666666667" + ], + [ + 1701295604.781, + "7666.666666666667" + ], + [ + 1701295605.781, + "7666.666666666667" + ], + [ + 1701295606.781, + "7666.666666666667" + ], + [ + 1701295607.781, + "7666.666666666667" + ], + [ + 1701295608.781, + "7666.666666666667" + ], + [ + 1701295609.781, + "7666.666666666667" + ], + [ + 1701295610.781, + "7666.666666666667" + ], + [ + 1701295611.781, + "7666.666666666667" + ], + [ + 1701295612.781, + "7666.666666666667" + ], + [ + 1701295613.781, + "7666.666666666667" + ], + [ + 1701295614.781, + "7666.666666666667" + ], + [ + 1701295615.781, + "7666.666666666667" + ], + [ + 1701295616.781, + "7666.666666666667" + ], + [ + 1701295617.781, + "7666.666666666667" + ], + [ + 1701295618.781, + "7666.666666666667" + ], + [ + 1701295619.781, + "7666.666666666667" + ], + [ + 1701295620.781, + "7666.666666666667" + ], + [ + 1701295621.781, + "7666.666666666667" + ], + [ + 1701295622.781, + "7666.666666666667" + ], + [ + 1701295623.781, + "7666.666666666667" + ], + [ + 1701295624.781, + "7666.666666666667" + ], + [ + 1701295625.781, + "7666.666666666667" + ], + [ + 1701295626.781, + "7666.666666666667" + ], + [ + 1701295627.781, + "7666.666666666667" + ], + [ + 1701295628.781, + "7666.666666666667" + ], + [ + 1701295629.781, + "7666.666666666667" + ], + [ + 1701295630.781, + "7666.666666666667" + ], + [ + 1701295631.781, + "7666.666666666667" + ], + [ + 1701295632.781, + "7666.666666666667" + ], + [ + 1701295633.781, + "7666.666666666667" + ], + [ + 1701295634.781, + "7666.666666666667" + ], + [ + 1701295635.781, + "7666.666666666667" + ], + [ + 1701295636.781, + "7666.666666666667" + ], + [ + 1701295637.781, + "7666.666666666667" + ], + [ + 1701295638.781, + "7666.666666666667" + ], + [ + 1701295639.781, + "7666.666666666667" + ], + [ + 1701295640.781, + "7666.666666666667" + ], + [ + 1701295641.781, + "7666.666666666667" + ], + [ + 1701295642.781, + "7666.666666666667" + ], + [ + 1701295643.781, + "7666.666666666667" + ], + [ + 1701295644.781, + "7666.666666666667" + ], + [ + 1701295645.781, + "7666.666666666667" + ], + [ + 1701295646.781, + "7666.666666666667" + ], + [ + 1701295647.781, + "7666.666666666667" + ], + [ + 1701295648.781, + "7666.666666666667" + ], + [ + 1701295649.781, + "7666.666666666667" + ], + [ + 1701295650.781, + "7666.666666666667" + ], + [ + 1701295651.781, + "7666.666666666667" + ], + [ + 1701295652.781, + "7666.666666666667" + ], + [ + 1701295653.781, + "7666.666666666667" + ], + [ + 1701295654.781, + "7666.666666666667" + ], + [ + 1701295655.781, + "7666.666666666667" + ], + [ + 1701295656.781, + "7666.666666666667" + ], + [ + 1701295657.781, + "7666.666666666667" + ], + [ + 1701295658.781, + "7666.666666666667" + ], + [ + 1701295659.781, + "10333.333333333334" + ], + [ + 1701295660.781, + "10333.333333333334" + ], + [ + 1701295661.781, + "10333.333333333334" + ], + [ + 1701295662.781, + "10333.333333333334" + ], + [ + 1701295663.781, + "10333.333333333334" + ], + [ + 1701295664.781, + "10333.333333333334" + ], + [ + 1701295665.781, + "10333.333333333334" + ], + [ + 1701295666.781, + "10333.333333333334" + ], + [ + 1701295667.781, + "10333.333333333334" + ], + [ + 1701295668.781, + "10333.333333333334" + ], + [ + 1701295669.781, + "10333.333333333334" + ], + [ + 1701295670.781, + "10333.333333333334" + ], + [ + 1701295671.781, + "10333.333333333334" + ], + [ + 1701295672.781, + "10333.333333333334" + ], + [ + 1701295673.781, + "10333.333333333334" + ], + [ + 1701295674.781, + "10333.333333333334" + ], + [ + 1701295675.781, + "10333.333333333334" + ], + [ + 1701295676.781, + "10333.333333333334" + ], + [ + 1701295677.781, + "10333.333333333334" + ], + [ + 1701295678.781, + "10333.333333333334" + ], + [ + 1701295679.781, + "10333.333333333334" + ], + [ + 1701295680.781, + "10333.333333333334" + ], + [ + 1701295681.781, + "10333.333333333334" + ], + [ + 1701295682.781, + "10333.333333333334" + ], + [ + 1701295683.781, + "10333.333333333334" + ], + [ + 1701295684.781, + "10333.333333333334" + ], + [ + 1701295685.781, + "10333.333333333334" + ], + [ + 1701295686.781, + "10333.333333333334" + ], + [ + 1701295687.781, + "10333.333333333334" + ], + [ + 1701295688.781, + "10333.333333333334" + ], + [ + 1701295689.781, + "10333.333333333334" + ], + [ + 1701295690.781, + "10333.333333333334" + ], + [ + 1701295691.781, + "10333.333333333334" + ], + [ + 1701295692.781, + "10333.333333333334" + ], + [ + 1701295693.781, + "10333.333333333334" + ], + [ + 1701295694.781, + "10333.333333333334" + ], + [ + 1701295695.781, + "10333.333333333334" + ], + [ + 1701295696.781, + "10333.333333333334" + ], + [ + 1701295697.781, + "10333.333333333334" + ], + [ + 1701295698.781, + "10333.333333333334" + ], + [ + 1701295699.781, + "10333.333333333334" + ], + [ + 1701295700.781, + "10333.333333333334" + ], + [ + 1701295701.781, + "10333.333333333334" + ], + [ + 1701295702.781, + "10333.333333333334" + ], + [ + 1701295703.781, + "10333.333333333334" + ], + [ + 1701295704.781, + "10333.333333333334" + ], + [ + 1701295705.781, + "10333.333333333334" + ], + [ + 1701295706.781, + "10333.333333333334" + ], + [ + 1701295707.781, + "10333.333333333334" + ], + [ + 1701295708.781, + "10333.333333333334" + ], + [ + 1701295709.781, + "10333.333333333334" + ], + [ + 1701295710.781, + "10333.333333333334" + ], + [ + 1701295711.781, + "10333.333333333334" + ], + [ + 1701295712.781, + "10333.333333333334" + ], + [ + 1701295713.781, + "10333.333333333334" + ], + [ + 1701295714.781, + "10333.333333333334" + ], + [ + 1701295715.781, + "10333.333333333334" + ], + [ + 1701295716.781, + "10333.333333333334" + ], + [ + 1701295717.781, + "10333.333333333334" + ], + [ + 1701295718.781, + "10333.333333333334" + ], + [ + 1701295719.781, + "13666.666666666666" + ], + [ + 1701295720.781, + "13666.666666666666" + ], + [ + 1701295721.781, + "13666.666666666666" + ], + [ + 1701295722.781, + "13666.666666666666" + ], + [ + 1701295723.781, + "13666.666666666666" + ], + [ + 1701295724.781, + "13666.666666666666" + ], + [ + 1701295725.781, + "13666.666666666666" + ], + [ + 1701295726.781, + "13666.666666666666" + ], + [ + 1701295727.781, + "13666.666666666666" + ], + [ + 1701295728.781, + "13666.666666666666" + ], + [ + 1701295729.781, + "13666.666666666666" + ], + [ + 1701295730.781, + "13666.666666666666" + ], + [ + 1701295731.781, + "13666.666666666666" + ], + [ + 1701295732.781, + "13666.666666666666" + ], + [ + 1701295733.781, + "13666.666666666666" + ], + [ + 1701295734.781, + "13666.666666666666" + ], + [ + 1701295735.781, + "13666.666666666666" + ], + [ + 1701295736.781, + "13666.666666666666" + ], + [ + 1701295737.781, + "13666.666666666666" + ], + [ + 1701295738.781, + "13666.666666666666" + ], + [ + 1701295739.781, + "13666.666666666666" + ], + [ + 1701295740.781, + "13666.666666666666" + ], + [ + 1701295741.781, + "13666.666666666666" + ], + [ + 1701295742.781, + "13666.666666666666" + ], + [ + 1701295743.781, + "13666.666666666666" + ], + [ + 1701295744.781, + "13666.666666666666" + ], + [ + 1701295745.781, + "13666.666666666666" + ], + [ + 1701295746.781, + "13666.666666666666" + ], + [ + 1701295747.781, + "13666.666666666666" + ], + [ + 1701295748.781, + "13666.666666666666" + ], + [ + 1701295749.781, + "13666.666666666666" + ], + [ + 1701295750.781, + "13666.666666666666" + ], + [ + 1701295751.781, + "13666.666666666666" + ], + [ + 1701295752.781, + "13666.666666666666" + ], + [ + 1701295753.781, + "13666.666666666666" + ], + [ + 1701295754.781, + "13666.666666666666" + ], + [ + 1701295755.781, + "13666.666666666666" + ], + [ + 1701295756.781, + "13666.666666666666" + ], + [ + 1701295757.781, + "13666.666666666666" + ], + [ + 1701295758.781, + "13666.666666666666" + ], + [ + 1701295759.781, + "13666.666666666666" + ], + [ + 1701295760.781, + "13666.666666666666" + ], + [ + 1701295761.781, + "13666.666666666666" + ], + [ + 1701295762.781, + "13666.666666666666" + ], + [ + 1701295763.781, + "13666.666666666666" + ], + [ + 1701295764.781, + "13666.666666666666" + ], + [ + 1701295765.781, + "13666.666666666666" + ], + [ + 1701295766.781, + "13666.666666666666" + ], + [ + 1701295767.781, + "13666.666666666666" + ], + [ + 1701295768.781, + "13666.666666666666" + ], + [ + 1701295769.781, + "13666.666666666666" + ], + [ + 1701295770.781, + "13666.666666666666" + ], + [ + 1701295771.781, + "13666.666666666666" + ], + [ + 1701295772.781, + "13666.666666666666" + ], + [ + 1701295773.781, + "13666.666666666666" + ], + [ + 1701295774.781, + "13666.666666666666" + ], + [ + 1701295775.781, + "13666.666666666666" + ], + [ + 1701295776.781, + "13666.666666666666" + ], + [ + 1701295777.781, + "13666.666666666666" + ], + [ + 1701295778.781, + "13666.666666666666" + ], + [ + 1701295779.781, + "8333.333333333334" + ], + [ + 1701295780.781, + "8333.333333333334" + ], + [ + 1701295781.781, + "8333.333333333334" + ], + [ + 1701295782.781, + "8333.333333333334" + ], + [ + 1701295783.781, + "8333.333333333334" + ], + [ + 1701295784.781, + "8333.333333333334" + ], + [ + 1701295785.781, + "8333.333333333334" + ], + [ + 1701295786.781, + "8333.333333333334" + ], + [ + 1701295787.781, + "8333.333333333334" + ], + [ + 1701295788.781, + "8333.333333333334" + ], + [ + 1701295789.781, + "8333.333333333334" + ], + [ + 1701295790.781, + "8333.333333333334" + ], + [ + 1701295791.781, + "8333.333333333334" + ], + [ + 1701295792.781, + "8333.333333333334" + ], + [ + 1701295793.781, + "8333.333333333334" + ], + [ + 1701295794.781, + "8333.333333333334" + ], + [ + 1701295795.781, + "8333.333333333334" + ], + [ + 1701295796.781, + "8333.333333333334" + ], + [ + 1701295797.781, + "8333.333333333334" + ], + [ + 1701295798.781, + "8333.333333333334" + ], + [ + 1701295799.781, + "8333.333333333334" + ], + [ + 1701295800.781, + "8333.333333333334" + ], + [ + 1701295801.781, + "8333.333333333334" + ], + [ + 1701295802.781, + "8333.333333333334" + ], + [ + 1701295803.781, + "8333.333333333334" + ], + [ + 1701295804.781, + "8333.333333333334" + ], + [ + 1701295805.781, + "8333.333333333334" + ], + [ + 1701295806.781, + "8333.333333333334" + ], + [ + 1701295807.781, + "8333.333333333334" + ], + [ + 1701295808.781, + "8333.333333333334" + ], + [ + 1701295809.781, + "8333.333333333334" + ], + [ + 1701295810.781, + "8333.333333333334" + ], + [ + 1701295811.781, + "8333.333333333334" + ], + [ + 1701295812.781, + "8333.333333333334" + ], + [ + 1701295813.781, + "8333.333333333334" + ], + [ + 1701295814.781, + "8333.333333333334" + ], + [ + 1701295815.781, + "8333.333333333334" + ], + [ + 1701295816.781, + "8333.333333333334" + ], + [ + 1701295817.781, + "8333.333333333334" + ], + [ + 1701295818.781, + "8333.333333333334" + ], + [ + 1701295819.781, + "8333.333333333334" + ], + [ + 1701295820.781, + "8333.333333333334" + ], + [ + 1701295821.781, + "8333.333333333334" + ], + [ + 1701295822.781, + "8333.333333333334" + ], + [ + 1701295823.781, + "8333.333333333334" + ], + [ + 1701295824.781, + "8333.333333333334" + ], + [ + 1701295825.781, + "8333.333333333334" + ], + [ + 1701295826.781, + "8333.333333333334" + ], + [ + 1701295827.781, + "8333.333333333334" + ], + [ + 1701295828.781, + "8333.333333333334" + ], + [ + 1701295829.781, + "8333.333333333334" + ], + [ + 1701295830.781, + "8333.333333333334" + ], + [ + 1701295831.781, + "8333.333333333334" + ], + [ + 1701295832.781, + "8333.333333333334" + ], + [ + 1701295833.781, + "8333.333333333334" + ], + [ + 1701295834.781, + "8333.333333333334" + ], + [ + 1701295835.781, + "8333.333333333334" + ], + [ + 1701295836.781, + "8333.333333333334" + ], + [ + 1701295837.781, + "8333.333333333334" + ], + [ + 1701295838.781, + "8333.333333333334" + ], + [ + 1701295839.781, + "11666.666666666666" + ], + [ + 1701295840.781, + "11666.666666666666" + ], + [ + 1701295841.781, + "11666.666666666666" + ], + [ + 1701295842.781, + "11666.666666666666" + ], + [ + 1701295843.781, + "11666.666666666666" + ], + [ + 1701295844.781, + "11666.666666666666" + ], + [ + 1701295845.781, + "11666.666666666666" + ], + [ + 1701295846.781, + "11666.666666666666" + ], + [ + 1701295847.781, + "11666.666666666666" + ], + [ + 1701295848.781, + "11666.666666666666" + ], + [ + 1701295849.781, + "11666.666666666666" + ], + [ + 1701295850.781, + "11666.666666666666" + ], + [ + 1701295851.781, + "11666.666666666666" + ], + [ + 1701295852.781, + "11666.666666666666" + ], + [ + 1701295853.781, + "11666.666666666666" + ], + [ + 1701295854.781, + "11666.666666666666" + ], + [ + 1701295855.781, + "11666.666666666666" + ], + [ + 1701295856.781, + "11666.666666666666" + ], + [ + 1701295857.781, + "11666.666666666666" + ], + [ + 1701295858.781, + "11666.666666666666" + ], + [ + 1701295859.781, + "11666.666666666666" + ], + [ + 1701295860.781, + "11666.666666666666" + ], + [ + 1701295861.781, + "11666.666666666666" + ], + [ + 1701295862.781, + "11666.666666666666" + ], + [ + 1701295863.781, + "11666.666666666666" + ], + [ + 1701295864.781, + "11666.666666666666" + ], + [ + 1701295865.781, + "11666.666666666666" + ], + [ + 1701295866.781, + "11666.666666666666" + ], + [ + 1701295867.781, + "11666.666666666666" + ], + [ + 1701295868.781, + "11666.666666666666" + ], + [ + 1701295869.781, + "11666.666666666666" + ], + [ + 1701295870.781, + "11666.666666666666" + ], + [ + 1701295871.781, + "11666.666666666666" + ], + [ + 1701295872.781, + "11666.666666666666" + ], + [ + 1701295873.781, + "11666.666666666666" + ], + [ + 1701295874.781, + "11666.666666666666" + ], + [ + 1701295875.781, + "11666.666666666666" + ], + [ + 1701295876.781, + "11666.666666666666" + ], + [ + 1701295877.781, + "11666.666666666666" + ], + [ + 1701295878.781, + "11666.666666666666" + ], + [ + 1701295879.781, + "11666.666666666666" + ], + [ + 1701295880.781, + "11666.666666666666" + ], + [ + 1701295881.781, + "11666.666666666666" + ], + [ + 1701295882.781, + "11666.666666666666" + ], + [ + 1701295883.781, + "11666.666666666666" + ], + [ + 1701295884.781, + "11666.666666666666" + ], + [ + 1701295885.781, + "11666.666666666666" + ], + [ + 1701295886.781, + "11666.666666666666" + ], + [ + 1701295887.781, + "11666.666666666666" + ], + [ + 1701295888.781, + "11666.666666666666" + ], + [ + 1701295889.781, + "11666.666666666666" + ], + [ + 1701295890.781, + "11666.666666666666" + ], + [ + 1701295891.781, + "11666.666666666666" + ], + [ + 1701295892.781, + "11666.666666666666" + ], + [ + 1701295893.781, + "11666.666666666666" + ], + [ + 1701295894.781, + "11666.666666666666" + ], + [ + 1701295895.781, + "11666.666666666666" + ], + [ + 1701295896.781, + "11666.666666666666" + ], + [ + 1701295897.781, + "11666.666666666666" + ], + [ + 1701295898.781, + "11666.666666666666" + ], + [ + 1701295899.781, + "4333.333333333333" + ], + [ + 1701295900.781, + "4333.333333333333" + ], + [ + 1701295901.781, + "4333.333333333333" + ], + [ + 1701295902.781, + "4333.333333333333" + ], + [ + 1701295903.781, + "4333.333333333333" + ], + [ + 1701295904.781, + "4333.333333333333" + ], + [ + 1701295905.781, + "4333.333333333333" + ], + [ + 1701295906.781, + "4333.333333333333" + ], + [ + 1701295907.781, + "4333.333333333333" + ], + [ + 1701295908.781, + "4333.333333333333" + ], + [ + 1701295909.781, + "4333.333333333333" + ], + [ + 1701295910.781, + "4333.333333333333" + ], + [ + 1701295911.781, + "4333.333333333333" + ], + [ + 1701295912.781, + "4333.333333333333" + ], + [ + 1701295913.781, + "4333.333333333333" + ], + [ + 1701295914.781, + "4333.333333333333" + ], + [ + 1701295915.781, + "4333.333333333333" + ], + [ + 1701295916.781, + "4333.333333333333" + ], + [ + 1701295917.781, + "4333.333333333333" + ], + [ + 1701295918.781, + "4333.333333333333" + ], + [ + 1701295919.781, + "4333.333333333333" + ], + [ + 1701295920.781, + "4333.333333333333" + ], + [ + 1701295921.781, + "4333.333333333333" + ], + [ + 1701295922.781, + "4333.333333333333" + ], + [ + 1701295923.781, + "4333.333333333333" + ], + [ + 1701295924.781, + "4333.333333333333" + ], + [ + 1701295925.781, + "4333.333333333333" + ], + [ + 1701295926.781, + "4333.333333333333" + ], + [ + 1701295927.781, + "4333.333333333333" + ], + [ + 1701295928.781, + "4333.333333333333" + ], + [ + 1701295929.781, + "4333.333333333333" + ], + [ + 1701295930.781, + "4333.333333333333" + ], + [ + 1701295931.781, + "4333.333333333333" + ], + [ + 1701295932.781, + "4333.333333333333" + ], + [ + 1701295933.781, + "4333.333333333333" + ], + [ + 1701295934.781, + "4333.333333333333" + ], + [ + 1701295935.781, + "4333.333333333333" + ], + [ + 1701295936.781, + "4333.333333333333" + ], + [ + 1701295937.781, + "4333.333333333333" + ], + [ + 1701295938.781, + "4333.333333333333" + ], + [ + 1701295939.781, + "4333.333333333333" + ], + [ + 1701295940.781, + "4333.333333333333" + ], + [ + 1701295941.781, + "4333.333333333333" + ], + [ + 1701295942.781, + "4333.333333333333" + ], + [ + 1701295943.781, + "4333.333333333333" + ], + [ + 1701295944.781, + "4333.333333333333" + ], + [ + 1701295945.781, + "4333.333333333333" + ], + [ + 1701295946.781, + "4333.333333333333" + ], + [ + 1701295947.781, + "4333.333333333333" + ], + [ + 1701295948.781, + "4333.333333333333" + ], + [ + 1701295949.781, + "4333.333333333333" + ], + [ + 1701295950.781, + "4333.333333333333" + ], + [ + 1701295951.781, + "4333.333333333333" + ], + [ + 1701295952.781, + "4333.333333333333" + ], + [ + 1701295953.781, + "4333.333333333333" + ], + [ + 1701295954.781, + "4333.333333333333" + ], + [ + 1701295955.781, + "4333.333333333333" + ], + [ + 1701295956.781, + "4333.333333333333" + ], + [ + 1701295957.781, + "4333.333333333333" + ], + [ + 1701295958.781, + "4333.333333333333" + ], + [ + 1701295959.781, + "12016.666666666666" + ], + [ + 1701295960.781, + "12016.666666666666" + ], + [ + 1701295961.781, + "12016.666666666666" + ], + [ + 1701295962.781, + "12016.666666666666" + ], + [ + 1701295963.781, + "12016.666666666666" + ], + [ + 1701295964.781, + "12016.666666666666" + ], + [ + 1701295965.781, + "12016.666666666666" + ], + [ + 1701295966.781, + "12016.666666666666" + ], + [ + 1701295967.781, + "12016.666666666666" + ], + [ + 1701295968.781, + "12016.666666666666" + ], + [ + 1701295969.781, + "12016.666666666666" + ], + [ + 1701295970.781, + "12016.666666666666" + ], + [ + 1701295971.781, + "12016.666666666666" + ], + [ + 1701295972.781, + "12016.666666666666" + ], + [ + 1701295973.781, + "12016.666666666666" + ], + [ + 1701295974.781, + "12016.666666666666" + ], + [ + 1701295975.781, + "12016.666666666666" + ], + [ + 1701295976.781, + "12016.666666666666" + ], + [ + 1701295977.781, + "12016.666666666666" + ], + [ + 1701295978.781, + "12016.666666666666" + ], + [ + 1701295979.781, + "12016.666666666666" + ], + [ + 1701295980.781, + "12016.666666666666" + ], + [ + 1701295981.781, + "12016.666666666666" + ], + [ + 1701295982.781, + "12016.666666666666" + ], + [ + 1701295983.781, + "12016.666666666666" + ], + [ + 1701295984.781, + "12016.666666666666" + ], + [ + 1701295985.781, + "12016.666666666666" + ], + [ + 1701295986.781, + "12016.666666666666" + ], + [ + 1701295987.781, + "12016.666666666666" + ], + [ + 1701295988.781, + "12016.666666666666" + ], + [ + 1701295989.781, + "12016.666666666666" + ], + [ + 1701295990.781, + "12016.666666666666" + ], + [ + 1701295991.781, + "12016.666666666666" + ], + [ + 1701295992.781, + "12016.666666666666" + ], + [ + 1701295993.781, + "12016.666666666666" + ], + [ + 1701295994.781, + "12016.666666666666" + ], + [ + 1701295995.781, + "12016.666666666666" + ], + [ + 1701295996.781, + "12016.666666666666" + ], + [ + 1701295997.781, + "12016.666666666666" + ], + [ + 1701295998.781, + "12016.666666666666" + ], + [ + 1701295999.781, + "12016.666666666666" + ], + [ + 1701296000.781, + "12016.666666666666" + ], + [ + 1701296001.781, + "12016.666666666666" + ], + [ + 1701296002.781, + "12016.666666666666" + ], + [ + 1701296003.781, + "12016.666666666666" + ], + [ + 1701296004.781, + "12016.666666666666" + ], + [ + 1701296005.781, + "12016.666666666666" + ], + [ + 1701296006.781, + "12016.666666666666" + ], + [ + 1701296007.781, + "12016.666666666666" + ], + [ + 1701296008.781, + "12016.666666666666" + ], + [ + 1701296009.781, + "12016.666666666666" + ], + [ + 1701296010.781, + "12016.666666666666" + ], + [ + 1701296011.781, + "12016.666666666666" + ], + [ + 1701296012.781, + "12016.666666666666" + ], + [ + 1701296013.781, + "12016.666666666666" + ], + [ + 1701296014.781, + "12016.666666666666" + ], + [ + 1701296015.781, + "12016.666666666666" + ], + [ + 1701296016.781, + "12016.666666666666" + ], + [ + 1701296017.781, + "12016.666666666666" + ], + [ + 1701296018.781, + "12016.666666666666" + ], + [ + 1701296019.781, + "15668" + ], + [ + 1701296020.781, + "15668" + ], + [ + 1701296021.781, + "15668" + ], + [ + 1701296022.781, + "15668" + ], + [ + 1701296023.781, + "15668" + ], + [ + 1701296024.781, + "15668" + ], + [ + 1701296025.781, + "15668" + ], + [ + 1701296026.781, + "15668" + ], + [ + 1701296027.781, + "15668" + ], + [ + 1701296028.781, + "15668" + ], + [ + 1701296029.781, + "15668" + ], + [ + 1701296030.781, + "15668" + ], + [ + 1701296031.781, + "15668" + ], + [ + 1701296032.781, + "15668" + ], + [ + 1701296033.781, + "15668" + ], + [ + 1701296034.781, + "15668" + ], + [ + 1701296035.781, + "15668" + ], + [ + 1701296036.781, + "15668" + ], + [ + 1701296037.781, + "15668" + ], + [ + 1701296038.781, + "15668" + ], + [ + 1701296039.781, + "15668" + ], + [ + 1701296040.781, + "15668" + ], + [ + 1701296041.781, + "15668" + ], + [ + 1701296042.781, + "15668" + ], + [ + 1701296043.781, + "15668" + ], + [ + 1701296044.781, + "15668" + ], + [ + 1701296045.781, + "15668" + ], + [ + 1701296046.781, + "15668" + ], + [ + 1701296047.781, + "15668" + ], + [ + 1701296048.781, + "15668" + ], + [ + 1701296049.781, + "15668" + ], + [ + 1701296050.781, + "15668" + ], + [ + 1701296051.781, + "15668" + ], + [ + 1701296052.781, + "15668" + ], + [ + 1701296053.781, + "15668" + ], + [ + 1701296054.781, + "15668" + ], + [ + 1701296055.781, + "15668" + ], + [ + 1701296056.781, + "15668" + ], + [ + 1701296057.781, + "15668" + ], + [ + 1701296058.781, + "15668" + ], + [ + 1701296059.781, + "15668" + ], + [ + 1701296060.781, + "15668" + ], + [ + 1701296061.781, + "15668" + ], + [ + 1701296062.781, + "15668" + ], + [ + 1701296063.781, + "15668" + ], + [ + 1701296064.781, + "15668" + ], + [ + 1701296065.781, + "15668" + ], + [ + 1701296066.781, + "15668" + ], + [ + 1701296067.781, + "15668" + ], + [ + 1701296068.781, + "15668" + ], + [ + 1701296069.781, + "15668" + ], + [ + 1701296070.781, + "15668" + ], + [ + 1701296071.781, + "15668" + ], + [ + 1701296072.781, + "15668" + ], + [ + 1701296073.781, + "15668" + ], + [ + 1701296074.781, + "15668" + ], + [ + 1701296075.781, + "15668" + ], + [ + 1701296076.781, + "15668" + ], + [ + 1701296077.781, + "15668" + ], + [ + 1701296078.781, + "15668" + ], + [ + 1701296079.781, + "7666.666666666667" + ], + [ + 1701296080.781, + "7666.666666666667" + ], + [ + 1701296081.781, + "7666.666666666667" + ], + [ + 1701296082.781, + "7666.666666666667" + ], + [ + 1701296083.781, + "7666.666666666667" + ], + [ + 1701296084.781, + "7666.666666666667" + ], + [ + 1701296085.781, + "7666.666666666667" + ], + [ + 1701296086.781, + "7666.666666666667" + ], + [ + 1701296087.781, + "7666.666666666667" + ], + [ + 1701296088.781, + "7666.666666666667" + ], + [ + 1701296089.781, + "7666.666666666667" + ], + [ + 1701296090.781, + "7666.666666666667" + ], + [ + 1701296091.781, + "7666.666666666667" + ], + [ + 1701296092.781, + "7666.666666666667" + ], + [ + 1701296093.781, + "7666.666666666667" + ], + [ + 1701296094.781, + "7666.666666666667" + ], + [ + 1701296095.781, + "7666.666666666667" + ], + [ + 1701296096.781, + "7666.666666666667" + ], + [ + 1701296097.781, + "7666.666666666667" + ], + [ + 1701296098.781, + "7666.666666666667" + ], + [ + 1701296099.781, + "7666.666666666667" + ], + [ + 1701296100.781, + "7666.666666666667" + ], + [ + 1701296101.781, + "7666.666666666667" + ], + [ + 1701296102.781, + "7666.666666666667" + ], + [ + 1701296103.781, + "7666.666666666667" + ], + [ + 1701296104.781, + "7666.666666666667" + ], + [ + 1701296105.781, + "7666.666666666667" + ], + [ + 1701296106.781, + "7666.666666666667" + ], + [ + 1701296107.781, + "7666.666666666667" + ], + [ + 1701296108.781, + "7666.666666666667" + ], + [ + 1701296109.781, + "7666.666666666667" + ], + [ + 1701296110.781, + "7666.666666666667" + ], + [ + 1701296111.781, + "7666.666666666667" + ], + [ + 1701296112.781, + "7666.666666666667" + ], + [ + 1701296113.781, + "7666.666666666667" + ], + [ + 1701296114.781, + "7666.666666666667" + ], + [ + 1701296115.781, + "7666.666666666667" + ], + [ + 1701296116.781, + "7666.666666666667" + ], + [ + 1701296117.781, + "7666.666666666667" + ], + [ + 1701296118.781, + "7666.666666666667" + ], + [ + 1701296119.781, + "7666.666666666667" + ], + [ + 1701296120.781, + "7666.666666666667" + ], + [ + 1701296121.781, + "7666.666666666667" + ], + [ + 1701296122.781, + "7666.666666666667" + ], + [ + 1701296123.781, + "7666.666666666667" + ], + [ + 1701296124.781, + "7666.666666666667" + ], + [ + 1701296125.781, + "7666.666666666667" + ], + [ + 1701296126.781, + "7666.666666666667" + ], + [ + 1701296127.781, + "7666.666666666667" + ], + [ + 1701296128.781, + "7666.666666666667" + ], + [ + 1701296129.781, + "7666.666666666667" + ], + [ + 1701296130.781, + "7666.666666666667" + ], + [ + 1701296131.781, + "7666.666666666667" + ], + [ + 1701296132.781, + "7666.666666666667" + ], + [ + 1701296133.781, + "7666.666666666667" + ], + [ + 1701296134.781, + "7666.666666666667" + ], + [ + 1701296135.781, + "7666.666666666667" + ], + [ + 1701296136.781, + "7666.666666666667" + ], + [ + 1701296137.781, + "7666.666666666667" + ], + [ + 1701296138.781, + "7666.666666666667" + ], + [ + 1701296139.781, + "12333.333333333334" + ], + [ + 1701296140.781, + "12333.333333333334" + ], + [ + 1701296141.781, + "12333.333333333334" + ], + [ + 1701296142.781, + "12333.333333333334" + ], + [ + 1701296143.781, + "12333.333333333334" + ], + [ + 1701296144.781, + "12333.333333333334" + ], + [ + 1701296145.781, + "12333.333333333334" + ], + [ + 1701296146.781, + "12333.333333333334" + ], + [ + 1701296147.781, + "12333.333333333334" + ], + [ + 1701296148.781, + "12333.333333333334" + ], + [ + 1701296149.781, + "12333.333333333334" + ], + [ + 1701296150.781, + "12333.333333333334" + ], + [ + 1701296151.781, + "12333.333333333334" + ], + [ + 1701296152.781, + "12333.333333333334" + ], + [ + 1701296153.781, + "12333.333333333334" + ], + [ + 1701296154.781, + "12333.333333333334" + ], + [ + 1701296155.781, + "12333.333333333334" + ], + [ + 1701296156.781, + "12333.333333333334" + ], + [ + 1701296157.781, + "12333.333333333334" + ], + [ + 1701296158.781, + "12333.333333333334" + ], + [ + 1701296159.781, + "12333.333333333334" + ], + [ + 1701296160.781, + "12333.333333333334" + ], + [ + 1701296161.781, + "12333.333333333334" + ], + [ + 1701296162.781, + "12333.333333333334" + ], + [ + 1701296163.781, + "12333.333333333334" + ], + [ + 1701296164.781, + "12333.333333333334" + ], + [ + 1701296165.781, + "12333.333333333334" + ], + [ + 1701296166.781, + "12333.333333333334" + ], + [ + 1701296167.781, + "12333.333333333334" + ], + [ + 1701296168.781, + "12333.333333333334" + ], + [ + 1701296169.781, + "12333.333333333334" + ], + [ + 1701296170.781, + "12333.333333333334" + ], + [ + 1701296171.781, + "12333.333333333334" + ], + [ + 1701296172.781, + "12333.333333333334" + ], + [ + 1701296173.781, + "12333.333333333334" + ], + [ + 1701296174.781, + "12333.333333333334" + ], + [ + 1701296175.781, + "12333.333333333334" + ], + [ + 1701296176.781, + "12333.333333333334" + ], + [ + 1701296177.781, + "12333.333333333334" + ], + [ + 1701296178.781, + "12333.333333333334" + ], + [ + 1701296179.781, + "12333.333333333334" + ], + [ + 1701296180.781, + "12333.333333333334" + ], + [ + 1701296181.781, + "12333.333333333334" + ], + [ + 1701296182.781, + "12333.333333333334" + ], + [ + 1701296183.781, + "12333.333333333334" + ], + [ + 1701296184.781, + "12333.333333333334" + ], + [ + 1701296185.781, + "12333.333333333334" + ], + [ + 1701296186.781, + "12333.333333333334" + ], + [ + 1701296187.781, + "12333.333333333334" + ], + [ + 1701296188.781, + "12333.333333333334" + ], + [ + 1701296189.781, + "12333.333333333334" + ], + [ + 1701296190.781, + "12333.333333333334" + ], + [ + 1701296191.781, + "12333.333333333334" + ], + [ + 1701296192.781, + "12333.333333333334" + ], + [ + 1701296193.781, + "12333.333333333334" + ], + [ + 1701296194.781, + "12333.333333333334" + ], + [ + 1701296195.781, + "12333.333333333334" + ], + [ + 1701296196.781, + "12333.333333333334" + ], + [ + 1701296197.781, + "12333.333333333334" + ], + [ + 1701296198.781, + "12333.333333333334" + ], + [ + 1701296199.781, + "10333.333333333334" + ], + [ + 1701296200.781, + "10333.333333333334" + ], + [ + 1701296201.781, + "10333.333333333334" + ], + [ + 1701296202.781, + "10333.333333333334" + ], + [ + 1701296203.781, + "10333.333333333334" + ], + [ + 1701296204.781, + "10333.333333333334" + ], + [ + 1701296205.781, + "10333.333333333334" + ], + [ + 1701296206.781, + "10333.333333333334" + ], + [ + 1701296207.781, + "10333.333333333334" + ], + [ + 1701296208.781, + "10333.333333333334" + ], + [ + 1701296209.781, + "10333.333333333334" + ], + [ + 1701296210.781, + "10333.333333333334" + ], + [ + 1701296211.781, + "10333.333333333334" + ], + [ + 1701296212.781, + "10333.333333333334" + ], + [ + 1701296213.781, + "10333.333333333334" + ], + [ + 1701296214.781, + "10333.333333333334" + ], + [ + 1701296215.781, + "10333.333333333334" + ], + [ + 1701296216.781, + "10333.333333333334" + ], + [ + 1701296217.781, + "10333.333333333334" + ], + [ + 1701296218.781, + "10333.333333333334" + ], + [ + 1701296219.781, + "10333.333333333334" + ], + [ + 1701296220.781, + "10333.333333333334" + ], + [ + 1701296221.781, + "10333.333333333334" + ], + [ + 1701296222.781, + "10333.333333333334" + ], + [ + 1701296223.781, + "10333.333333333334" + ], + [ + 1701296224.781, + "10333.333333333334" + ], + [ + 1701296225.781, + "10333.333333333334" + ], + [ + 1701296226.781, + "10333.333333333334" + ], + [ + 1701296227.781, + "10333.333333333334" + ], + [ + 1701296228.781, + "10333.333333333334" + ], + [ + 1701296229.781, + "10333.333333333334" + ], + [ + 1701296230.781, + "10333.333333333334" + ], + [ + 1701296231.781, + "10333.333333333334" + ], + [ + 1701296232.781, + "10333.333333333334" + ], + [ + 1701296233.781, + "10333.333333333334" + ], + [ + 1701296234.781, + "10333.333333333334" + ], + [ + 1701296235.781, + "10333.333333333334" + ], + [ + 1701296236.781, + "10333.333333333334" + ], + [ + 1701296237.781, + "10333.333333333334" + ], + [ + 1701296238.781, + "10333.333333333334" + ], + [ + 1701296239.781, + "10333.333333333334" + ], + [ + 1701296240.781, + "10333.333333333334" + ], + [ + 1701296241.781, + "10333.333333333334" + ], + [ + 1701296242.781, + "10333.333333333334" + ], + [ + 1701296243.781, + "10333.333333333334" + ], + [ + 1701296244.781, + "10333.333333333334" + ], + [ + 1701296245.781, + "10333.333333333334" + ], + [ + 1701296246.781, + "10333.333333333334" + ], + [ + 1701296247.781, + "10333.333333333334" + ], + [ + 1701296248.781, + "10333.333333333334" + ], + [ + 1701296249.781, + "10333.333333333334" + ], + [ + 1701296250.781, + "10333.333333333334" + ], + [ + 1701296251.781, + "10333.333333333334" + ], + [ + 1701296252.781, + "10333.333333333334" + ], + [ + 1701296253.781, + "10333.333333333334" + ], + [ + 1701296254.781, + "10333.333333333334" + ], + [ + 1701296255.781, + "10333.333333333334" + ], + [ + 1701296256.781, + "10333.333333333334" + ], + [ + 1701296257.781, + "10333.333333333334" + ], + [ + 1701296258.781, + "10333.333333333334" + ], + [ + 1701296259.781, + "3666.6666666666665" + ], + [ + 1701296260.781, + "3666.6666666666665" + ], + [ + 1701296261.781, + "3666.6666666666665" + ], + [ + 1701296262.781, + "3666.6666666666665" + ], + [ + 1701296263.781, + "3666.6666666666665" + ], + [ + 1701296264.781, + "3666.6666666666665" + ], + [ + 1701296265.781, + "3666.6666666666665" + ], + [ + 1701296266.781, + "3666.6666666666665" + ], + [ + 1701296267.781, + "3666.6666666666665" + ], + [ + 1701296268.781, + "3666.6666666666665" + ], + [ + 1701296269.781, + "3666.6666666666665" + ], + [ + 1701296270.781, + "3666.6666666666665" + ], + [ + 1701296271.781, + "3666.6666666666665" + ], + [ + 1701296272.781, + "3666.6666666666665" + ], + [ + 1701296273.781, + "3666.6666666666665" + ], + [ + 1701296274.781, + "3666.6666666666665" + ], + [ + 1701296275.781, + "3666.6666666666665" + ], + [ + 1701296276.781, + "3666.6666666666665" + ], + [ + 1701296277.781, + "3666.6666666666665" + ], + [ + 1701296278.781, + "3666.6666666666665" + ], + [ + 1701296279.781, + "3666.6666666666665" + ], + [ + 1701296280.781, + "3666.6666666666665" + ] +] +} diff --git a/disperser/dataapi/v2/testdata/prometheus-response-sample.json b/disperser/dataapi/v2/testdata/prometheus-response-sample.json new file mode 100644 index 0000000000..b51f02bedc --- /dev/null +++ b/disperser/dataapi/v2/testdata/prometheus-response-sample.json @@ -0,0 +1,14417 @@ +{ + "metric": { + "__name__": "blob_total{status=\"success\"}", + "instance": "host.docker.internal:8080", + "job": "bookmark", + "origin": "testclient", + "quorum": "0", + "status": "success", + "cluster": "test-cluster" + }, + "values": [ + [ + 1699435770.781, + "212400000" + ], + [ + 1699435771.781, + "212400000" + ], + [ + 1699435772.781, + "212400000" + ], + [ + 1699435773.781, + "212400000" + ], + [ + 1699435774.781, + "212400000" + ], + [ + 1699435775.781, + "212400000" + ], + [ + 1699435776.781, + "212400000" + ], + [ + 1699435777.781, + "212400000" + ], + [ + 1699435778.781, + "212400000" + ], + [ + 1699435779.781, + "212400000" + ], + [ + 1699435780.781, + "212400000" + ], + [ + 1699435781.781, + "212400000" + ], + [ + 1699435782.781, + "212400000" + ], + [ + 1699435783.781, + "212400000" + ], + [ + 1699435784.781, + "212400000" + ], + [ + 1699435785.781, + "212400000" + ], + [ + 1699435786.781, + "212400000" + ], + [ + 1699435787.781, + "212400000" + ], + [ + 1699435788.781, + "212400000" + ], + [ + 1699435789.781, + "212400000" + ], + [ + 1699435790.781, + "213000000" + ], + [ + 1699435791.781, + "213000000" + ], + [ + 1699435792.781, + "213000000" + ], + [ + 1699435793.781, + "213000000" + ], + [ + 1699435794.781, + "213000000" + ], + [ + 1699435795.781, + "213000000" + ], + [ + 1699435796.781, + "213000000" + ], + [ + 1699435797.781, + "213000000" + ], + [ + 1699435798.781, + "213000000" + ], + [ + 1699435799.781, + "213000000" + ], + [ + 1699435800.781, + "213000000" + ], + [ + 1699435801.781, + "213000000" + ], + [ + 1699435802.781, + "213000000" + ], + [ + 1699435803.781, + "213000000" + ], + [ + 1699435804.781, + "213000000" + ], + [ + 1699435805.781, + "213000000" + ], + [ + 1699435806.781, + "213000000" + ], + [ + 1699435807.781, + "213000000" + ], + [ + 1699435808.781, + "213000000" + ], + [ + 1699435809.781, + "213000000" + ], + [ + 1699435810.781, + "213000000" + ], + [ + 1699435811.781, + "213000000" + ], + [ + 1699435812.781, + "213000000" + ], + [ + 1699435813.781, + "213000000" + ], + [ + 1699435814.781, + "213000000" + ], + [ + 1699435815.781, + "213000000" + ], + [ + 1699435816.781, + "213000000" + ], + [ + 1699435817.781, + "213000000" + ], + [ + 1699435818.781, + "213000000" + ], + [ + 1699435819.781, + "213000000" + ], + [ + 1699435820.781, + "213000000" + ], + [ + 1699435821.781, + "213000000" + ], + [ + 1699435822.781, + "213000000" + ], + [ + 1699435823.781, + "213000000" + ], + [ + 1699435824.781, + "213000000" + ], + [ + 1699435825.781, + "213000000" + ], + [ + 1699435826.781, + "213000000" + ], + [ + 1699435827.781, + "213000000" + ], + [ + 1699435828.781, + "213000000" + ], + [ + 1699435829.781, + "213000000" + ], + [ + 1699435830.781, + "213000000" + ], + [ + 1699435831.781, + "213000000" + ], + [ + 1699435832.781, + "213000000" + ], + [ + 1699435833.781, + "213000000" + ], + [ + 1699435834.781, + "213000000" + ], + [ + 1699435835.781, + "213000000" + ], + [ + 1699435836.781, + "213000000" + ], + [ + 1699435837.781, + "213000000" + ], + [ + 1699435838.781, + "213000000" + ], + [ + 1699435839.781, + "213000000" + ], + [ + 1699435840.781, + "213000000" + ], + [ + 1699435841.781, + "213000000" + ], + [ + 1699435842.781, + "213000000" + ], + [ + 1699435843.781, + "213000000" + ], + [ + 1699435844.781, + "213000000" + ], + [ + 1699435845.781, + "213000000" + ], + [ + 1699435846.781, + "213000000" + ], + [ + 1699435847.781, + "213000000" + ], + [ + 1699435848.781, + "213000000" + ], + [ + 1699435849.781, + "213000000" + ], + [ + 1699435850.781, + "214200000" + ], + [ + 1699435851.781, + "214200000" + ], + [ + 1699435852.781, + "214200000" + ], + [ + 1699435853.781, + "214200000" + ], + [ + 1699435854.781, + "214200000" + ], + [ + 1699435855.781, + "214200000" + ], + [ + 1699435856.781, + "214200000" + ], + [ + 1699435857.781, + "214200000" + ], + [ + 1699435858.781, + "214200000" + ], + [ + 1699435859.781, + "214200000" + ], + [ + 1699435860.781, + "214200000" + ], + [ + 1699435861.781, + "214200000" + ], + [ + 1699435862.781, + "214200000" + ], + [ + 1699435863.781, + "214200000" + ], + [ + 1699435864.781, + "214200000" + ], + [ + 1699435865.781, + "214200000" + ], + [ + 1699435866.781, + "214200000" + ], + [ + 1699435867.781, + "214200000" + ], + [ + 1699435868.781, + "214200000" + ], + [ + 1699435869.781, + "214200000" + ], + [ + 1699435870.781, + "214200000" + ], + [ + 1699435871.781, + "214200000" + ], + [ + 1699435872.781, + "214200000" + ], + [ + 1699435873.781, + "214200000" + ], + [ + 1699435874.781, + "214200000" + ], + [ + 1699435875.781, + "214200000" + ], + [ + 1699435876.781, + "214200000" + ], + [ + 1699435877.781, + "214200000" + ], + [ + 1699435878.781, + "214200000" + ], + [ + 1699435879.781, + "214200000" + ], + [ + 1699435880.781, + "214200000" + ], + [ + 1699435881.781, + "214200000" + ], + [ + 1699435882.781, + "214200000" + ], + [ + 1699435883.781, + "214200000" + ], + [ + 1699435884.781, + "214200000" + ], + [ + 1699435885.781, + "214200000" + ], + [ + 1699435886.781, + "214200000" + ], + [ + 1699435887.781, + "214200000" + ], + [ + 1699435888.781, + "214200000" + ], + [ + 1699435889.781, + "214200000" + ], + [ + 1699435890.781, + "214200000" + ], + [ + 1699435891.781, + "214200000" + ], + [ + 1699435892.781, + "214200000" + ], + [ + 1699435893.781, + "214200000" + ], + [ + 1699435894.781, + "214200000" + ], + [ + 1699435895.781, + "214200000" + ], + [ + 1699435896.781, + "214200000" + ], + [ + 1699435897.781, + "214200000" + ], + [ + 1699435898.781, + "214200000" + ], + [ + 1699435899.781, + "214200000" + ], + [ + 1699435900.781, + "214200000" + ], + [ + 1699435901.781, + "214200000" + ], + [ + 1699435902.781, + "214200000" + ], + [ + 1699435903.781, + "214200000" + ], + [ + 1699435904.781, + "214200000" + ], + [ + 1699435905.781, + "214200000" + ], + [ + 1699435906.781, + "214200000" + ], + [ + 1699435907.781, + "214200000" + ], + [ + 1699435908.781, + "214200000" + ], + [ + 1699435909.781, + "214200000" + ], + [ + 1699435910.781, + "215400000" + ], + [ + 1699435911.781, + "215400000" + ], + [ + 1699435912.781, + "215400000" + ], + [ + 1699435913.781, + "215400000" + ], + [ + 1699435914.781, + "215400000" + ], + [ + 1699435915.781, + "215400000" + ], + [ + 1699435916.781, + "215400000" + ], + [ + 1699435917.781, + "215400000" + ], + [ + 1699435918.781, + "215400000" + ], + [ + 1699435919.781, + "215400000" + ], + [ + 1699435920.781, + "215400000" + ], + [ + 1699435921.781, + "215400000" + ], + [ + 1699435922.781, + "215400000" + ], + [ + 1699435923.781, + "215400000" + ], + [ + 1699435924.781, + "215400000" + ], + [ + 1699435925.781, + "215400000" + ], + [ + 1699435926.781, + "215400000" + ], + [ + 1699435927.781, + "215400000" + ], + [ + 1699435928.781, + "215400000" + ], + [ + 1699435929.781, + "215400000" + ], + [ + 1699435930.781, + "215400000" + ], + [ + 1699435931.781, + "215400000" + ], + [ + 1699435932.781, + "215400000" + ], + [ + 1699435933.781, + "215400000" + ], + [ + 1699435934.781, + "215400000" + ], + [ + 1699435935.781, + "215400000" + ], + [ + 1699435936.781, + "215400000" + ], + [ + 1699435937.781, + "215400000" + ], + [ + 1699435938.781, + "215400000" + ], + [ + 1699435939.781, + "215400000" + ], + [ + 1699435940.781, + "215400000" + ], + [ + 1699435941.781, + "215400000" + ], + [ + 1699435942.781, + "215400000" + ], + [ + 1699435943.781, + "215400000" + ], + [ + 1699435944.781, + "215400000" + ], + [ + 1699435945.781, + "215400000" + ], + [ + 1699435946.781, + "215400000" + ], + [ + 1699435947.781, + "215400000" + ], + [ + 1699435948.781, + "215400000" + ], + [ + 1699435949.781, + "215400000" + ], + [ + 1699435950.781, + "215400000" + ], + [ + 1699435951.781, + "215400000" + ], + [ + 1699435952.781, + "215400000" + ], + [ + 1699435953.781, + "215400000" + ], + [ + 1699435954.781, + "215400000" + ], + [ + 1699435955.781, + "215400000" + ], + [ + 1699435956.781, + "215400000" + ], + [ + 1699435957.781, + "215400000" + ], + [ + 1699435958.781, + "215400000" + ], + [ + 1699435959.781, + "215400000" + ], + [ + 1699435960.781, + "215400000" + ], + [ + 1699435961.781, + "215400000" + ], + [ + 1699435962.781, + "215400000" + ], + [ + 1699435963.781, + "215400000" + ], + [ + 1699435964.781, + "215400000" + ], + [ + 1699435965.781, + "215400000" + ], + [ + 1699435966.781, + "215400000" + ], + [ + 1699435967.781, + "215400000" + ], + [ + 1699435968.781, + "215400000" + ], + [ + 1699435969.781, + "215400000" + ], + [ + 1699435970.781, + "215800000" + ], + [ + 1699435971.781, + "215800000" + ], + [ + 1699435972.781, + "215800000" + ], + [ + 1699435973.781, + "215800000" + ], + [ + 1699435974.781, + "215800000" + ], + [ + 1699435975.781, + "215800000" + ], + [ + 1699435976.781, + "215800000" + ], + [ + 1699435977.781, + "215800000" + ], + [ + 1699435978.781, + "215800000" + ], + [ + 1699435979.781, + "215800000" + ], + [ + 1699435980.781, + "215800000" + ], + [ + 1699435981.781, + "215800000" + ], + [ + 1699435982.781, + "215800000" + ], + [ + 1699435983.781, + "215800000" + ], + [ + 1699435984.781, + "215800000" + ], + [ + 1699435985.781, + "215800000" + ], + [ + 1699435986.781, + "215800000" + ], + [ + 1699435987.781, + "215800000" + ], + [ + 1699435988.781, + "215800000" + ], + [ + 1699435989.781, + "215800000" + ], + [ + 1699435990.781, + "215800000" + ], + [ + 1699435991.781, + "215800000" + ], + [ + 1699435992.781, + "215800000" + ], + [ + 1699435993.781, + "215800000" + ], + [ + 1699435994.781, + "215800000" + ], + [ + 1699435995.781, + "215800000" + ], + [ + 1699435996.781, + "215800000" + ], + [ + 1699435997.781, + "215800000" + ], + [ + 1699435998.781, + "215800000" + ], + [ + 1699435999.781, + "215800000" + ], + [ + 1699436000.781, + "215800000" + ], + [ + 1699436001.781, + "215800000" + ], + [ + 1699436002.781, + "215800000" + ], + [ + 1699436003.781, + "215800000" + ], + [ + 1699436004.781, + "215800000" + ], + [ + 1699436005.781, + "215800000" + ], + [ + 1699436006.781, + "215800000" + ], + [ + 1699436007.781, + "215800000" + ], + [ + 1699436008.781, + "215800000" + ], + [ + 1699436009.781, + "215800000" + ], + [ + 1699436010.781, + "215800000" + ], + [ + 1699436011.781, + "215800000" + ], + [ + 1699436012.781, + "215800000" + ], + [ + 1699436013.781, + "215800000" + ], + [ + 1699436014.781, + "215800000" + ], + [ + 1699436015.781, + "215800000" + ], + [ + 1699436016.781, + "215800000" + ], + [ + 1699436017.781, + "215800000" + ], + [ + 1699436018.781, + "215800000" + ], + [ + 1699436019.781, + "215800000" + ], + [ + 1699436020.781, + "215800000" + ], + [ + 1699436021.781, + "215800000" + ], + [ + 1699436022.781, + "215800000" + ], + [ + 1699436023.781, + "215800000" + ], + [ + 1699436024.781, + "215800000" + ], + [ + 1699436025.781, + "215800000" + ], + [ + 1699436026.781, + "215800000" + ], + [ + 1699436027.781, + "215800000" + ], + [ + 1699436028.781, + "215800000" + ], + [ + 1699436029.781, + "215800000" + ], + [ + 1699436030.781, + "216800000" + ], + [ + 1699436031.781, + "216800000" + ], + [ + 1699436032.781, + "216800000" + ], + [ + 1699436033.781, + "216800000" + ], + [ + 1699436034.781, + "216800000" + ], + [ + 1699436035.781, + "216800000" + ], + [ + 1699436036.781, + "216800000" + ], + [ + 1699436037.781, + "216800000" + ], + [ + 1699436038.781, + "216800000" + ], + [ + 1699436039.781, + "216800000" + ], + [ + 1699436040.781, + "216800000" + ], + [ + 1699436041.781, + "216800000" + ], + [ + 1699436042.781, + "216800000" + ], + [ + 1699436043.781, + "216800000" + ], + [ + 1699436044.781, + "216800000" + ], + [ + 1699436045.781, + "216800000" + ], + [ + 1699436046.781, + "216800000" + ], + [ + 1699436047.781, + "216800000" + ], + [ + 1699436048.781, + "216800000" + ], + [ + 1699436049.781, + "216800000" + ], + [ + 1699436050.781, + "216800000" + ], + [ + 1699436051.781, + "216800000" + ], + [ + 1699436052.781, + "216800000" + ], + [ + 1699436053.781, + "216800000" + ], + [ + 1699436054.781, + "216800000" + ], + [ + 1699436055.781, + "216800000" + ], + [ + 1699436056.781, + "216800000" + ], + [ + 1699436057.781, + "216800000" + ], + [ + 1699436058.781, + "216800000" + ], + [ + 1699436059.781, + "216800000" + ], + [ + 1699436060.781, + "216800000" + ], + [ + 1699436061.781, + "216800000" + ], + [ + 1699436062.781, + "216800000" + ], + [ + 1699436063.781, + "216800000" + ], + [ + 1699436064.781, + "216800000" + ], + [ + 1699436065.781, + "216800000" + ], + [ + 1699436066.781, + "216800000" + ], + [ + 1699436067.781, + "216800000" + ], + [ + 1699436068.781, + "216800000" + ], + [ + 1699436069.781, + "216800000" + ], + [ + 1699436070.781, + "216800000" + ], + [ + 1699436071.781, + "216800000" + ], + [ + 1699436072.781, + "216800000" + ], + [ + 1699436073.781, + "216800000" + ], + [ + 1699436074.781, + "216800000" + ], + [ + 1699436075.781, + "216800000" + ], + [ + 1699436076.781, + "216800000" + ], + [ + 1699436077.781, + "216800000" + ], + [ + 1699436078.781, + "216800000" + ], + [ + 1699436079.781, + "216800000" + ], + [ + 1699436080.781, + "216800000" + ], + [ + 1699436081.781, + "216800000" + ], + [ + 1699436082.781, + "216800000" + ], + [ + 1699436083.781, + "216800000" + ], + [ + 1699436084.781, + "216800000" + ], + [ + 1699436085.781, + "216800000" + ], + [ + 1699436086.781, + "216800000" + ], + [ + 1699436087.781, + "216800000" + ], + [ + 1699436088.781, + "216800000" + ], + [ + 1699436089.781, + "216800000" + ], + [ + 1699436090.781, + "217200000" + ], + [ + 1699436091.781, + "217200000" + ], + [ + 1699436092.781, + "217200000" + ], + [ + 1699436093.781, + "217200000" + ], + [ + 1699436094.781, + "217200000" + ], + [ + 1699436095.781, + "217200000" + ], + [ + 1699436096.781, + "217200000" + ], + [ + 1699436097.781, + "217200000" + ], + [ + 1699436098.781, + "217200000" + ], + [ + 1699436099.781, + "217200000" + ], + [ + 1699436100.781, + "217200000" + ], + [ + 1699436101.781, + "217200000" + ], + [ + 1699436102.781, + "217200000" + ], + [ + 1699436103.781, + "217200000" + ], + [ + 1699436104.781, + "217200000" + ], + [ + 1699436105.781, + "217200000" + ], + [ + 1699436106.781, + "217200000" + ], + [ + 1699436107.781, + "217200000" + ], + [ + 1699436108.781, + "217200000" + ], + [ + 1699436109.781, + "217200000" + ], + [ + 1699436110.781, + "217200000" + ], + [ + 1699436111.781, + "217200000" + ], + [ + 1699436112.781, + "217200000" + ], + [ + 1699436113.781, + "217200000" + ], + [ + 1699436114.781, + "217200000" + ], + [ + 1699436115.781, + "217200000" + ], + [ + 1699436116.781, + "217200000" + ], + [ + 1699436117.781, + "217200000" + ], + [ + 1699436118.781, + "217200000" + ], + [ + 1699436119.781, + "217200000" + ], + [ + 1699436120.781, + "217200000" + ], + [ + 1699436121.781, + "217200000" + ], + [ + 1699436122.781, + "217200000" + ], + [ + 1699436123.781, + "217200000" + ], + [ + 1699436124.781, + "217200000" + ], + [ + 1699436125.781, + "217200000" + ], + [ + 1699436126.781, + "217200000" + ], + [ + 1699436127.781, + "217200000" + ], + [ + 1699436128.781, + "217200000" + ], + [ + 1699436129.781, + "217200000" + ], + [ + 1699436130.781, + "217200000" + ], + [ + 1699436131.781, + "217200000" + ], + [ + 1699436132.781, + "217200000" + ], + [ + 1699436133.781, + "217200000" + ], + [ + 1699436134.781, + "217200000" + ], + [ + 1699436135.781, + "217200000" + ], + [ + 1699436136.781, + "217200000" + ], + [ + 1699436137.781, + "217200000" + ], + [ + 1699436138.781, + "217200000" + ], + [ + 1699436139.781, + "217200000" + ], + [ + 1699436140.781, + "217200000" + ], + [ + 1699436141.781, + "217200000" + ], + [ + 1699436142.781, + "217200000" + ], + [ + 1699436143.781, + "217200000" + ], + [ + 1699436144.781, + "217200000" + ], + [ + 1699436145.781, + "217200000" + ], + [ + 1699436146.781, + "217200000" + ], + [ + 1699436147.781, + "217200000" + ], + [ + 1699436148.781, + "217200000" + ], + [ + 1699436149.781, + "217200000" + ], + [ + 1699436150.781, + "218800000" + ], + [ + 1699436151.781, + "218800000" + ], + [ + 1699436152.781, + "218800000" + ], + [ + 1699436153.781, + "218800000" + ], + [ + 1699436154.781, + "218800000" + ], + [ + 1699436155.781, + "218800000" + ], + [ + 1699436156.781, + "218800000" + ], + [ + 1699436157.781, + "218800000" + ], + [ + 1699436158.781, + "218800000" + ], + [ + 1699436159.781, + "218800000" + ], + [ + 1699436160.781, + "218800000" + ], + [ + 1699436161.781, + "218800000" + ], + [ + 1699436162.781, + "218800000" + ], + [ + 1699436163.781, + "218800000" + ], + [ + 1699436164.781, + "218800000" + ], + [ + 1699436165.781, + "218800000" + ], + [ + 1699436166.781, + "218800000" + ], + [ + 1699436167.781, + "218800000" + ], + [ + 1699436168.781, + "218800000" + ], + [ + 1699436169.781, + "218800000" + ], + [ + 1699436170.781, + "218800000" + ], + [ + 1699436171.781, + "218800000" + ], + [ + 1699436172.781, + "218800000" + ], + [ + 1699436173.781, + "218800000" + ], + [ + 1699436174.781, + "218800000" + ], + [ + 1699436175.781, + "218800000" + ], + [ + 1699436176.781, + "218800000" + ], + [ + 1699436177.781, + "218800000" + ], + [ + 1699436178.781, + "218800000" + ], + [ + 1699436179.781, + "218800000" + ], + [ + 1699436180.781, + "218800000" + ], + [ + 1699436181.781, + "218800000" + ], + [ + 1699436182.781, + "218800000" + ], + [ + 1699436183.781, + "218800000" + ], + [ + 1699436184.781, + "218800000" + ], + [ + 1699436185.781, + "218800000" + ], + [ + 1699436186.781, + "218800000" + ], + [ + 1699436187.781, + "218800000" + ], + [ + 1699436188.781, + "218800000" + ], + [ + 1699436189.781, + "218800000" + ], + [ + 1699436190.781, + "218800000" + ], + [ + 1699436191.781, + "218800000" + ], + [ + 1699436192.781, + "218800000" + ], + [ + 1699436193.781, + "218800000" + ], + [ + 1699436194.781, + "218800000" + ], + [ + 1699436195.781, + "218800000" + ], + [ + 1699436196.781, + "218800000" + ], + [ + 1699436197.781, + "218800000" + ], + [ + 1699436198.781, + "218800000" + ], + [ + 1699436199.781, + "218800000" + ], + [ + 1699436200.781, + "218800000" + ], + [ + 1699436201.781, + "218800000" + ], + [ + 1699436202.781, + "218800000" + ], + [ + 1699436203.781, + "218800000" + ], + [ + 1699436204.781, + "218800000" + ], + [ + 1699436205.781, + "218800000" + ], + [ + 1699436206.781, + "218800000" + ], + [ + 1699436207.781, + "218800000" + ], + [ + 1699436208.781, + "218800000" + ], + [ + 1699436209.781, + "218800000" + ], + [ + 1699436210.781, + "220200000" + ], + [ + 1699436211.781, + "220200000" + ], + [ + 1699436212.781, + "220200000" + ], + [ + 1699436213.781, + "220200000" + ], + [ + 1699436214.781, + "220200000" + ], + [ + 1699436215.781, + "220200000" + ], + [ + 1699436216.781, + "220200000" + ], + [ + 1699436217.781, + "220200000" + ], + [ + 1699436218.781, + "220200000" + ], + [ + 1699436219.781, + "220200000" + ], + [ + 1699436220.781, + "220200000" + ], + [ + 1699436221.781, + "220200000" + ], + [ + 1699436222.781, + "220200000" + ], + [ + 1699436223.781, + "220200000" + ], + [ + 1699436224.781, + "220200000" + ], + [ + 1699436225.781, + "220200000" + ], + [ + 1699436226.781, + "220200000" + ], + [ + 1699436227.781, + "220200000" + ], + [ + 1699436228.781, + "220200000" + ], + [ + 1699436229.781, + "220200000" + ], + [ + 1699436230.781, + "220200000" + ], + [ + 1699436231.781, + "220200000" + ], + [ + 1699436232.781, + "220200000" + ], + [ + 1699436233.781, + "220200000" + ], + [ + 1699436234.781, + "220200000" + ], + [ + 1699436235.781, + "220200000" + ], + [ + 1699436236.781, + "220200000" + ], + [ + 1699436237.781, + "220200000" + ], + [ + 1699436238.781, + "220200000" + ], + [ + 1699436239.781, + "220200000" + ], + [ + 1699436240.781, + "220200000" + ], + [ + 1699436241.781, + "220200000" + ], + [ + 1699436242.781, + "220200000" + ], + [ + 1699436243.781, + "220200000" + ], + [ + 1699436244.781, + "220200000" + ], + [ + 1699436245.781, + "220200000" + ], + [ + 1699436246.781, + "220200000" + ], + [ + 1699436247.781, + "220200000" + ], + [ + 1699436248.781, + "220200000" + ], + [ + 1699436249.781, + "220200000" + ], + [ + 1699436250.781, + "220200000" + ], + [ + 1699436251.781, + "220200000" + ], + [ + 1699436252.781, + "220200000" + ], + [ + 1699436253.781, + "220200000" + ], + [ + 1699436254.781, + "220200000" + ], + [ + 1699436255.781, + "220200000" + ], + [ + 1699436256.781, + "220200000" + ], + [ + 1699436257.781, + "220200000" + ], + [ + 1699436258.781, + "220200000" + ], + [ + 1699436259.781, + "220200000" + ], + [ + 1699436260.781, + "220200000" + ], + [ + 1699436261.781, + "220200000" + ], + [ + 1699436262.781, + "220200000" + ], + [ + 1699436263.781, + "220200000" + ], + [ + 1699436264.781, + "220200000" + ], + [ + 1699436265.781, + "220200000" + ], + [ + 1699436266.781, + "220200000" + ], + [ + 1699436267.781, + "220200000" + ], + [ + 1699436268.781, + "220200000" + ], + [ + 1699436269.781, + "220200000" + ], + [ + 1699436270.781, + "221200000" + ], + [ + 1699436271.781, + "221200000" + ], + [ + 1699436272.781, + "221200000" + ], + [ + 1699436273.781, + "221200000" + ], + [ + 1699436274.781, + "221200000" + ], + [ + 1699436275.781, + "221200000" + ], + [ + 1699436276.781, + "221200000" + ], + [ + 1699436277.781, + "221200000" + ], + [ + 1699436278.781, + "221200000" + ], + [ + 1699436279.781, + "221200000" + ], + [ + 1699436280.781, + "221200000" + ], + [ + 1699436281.781, + "221200000" + ], + [ + 1699436282.781, + "221200000" + ], + [ + 1699436283.781, + "221200000" + ], + [ + 1699436284.781, + "221200000" + ], + [ + 1699436285.781, + "221200000" + ], + [ + 1699436286.781, + "221200000" + ], + [ + 1699436287.781, + "221200000" + ], + [ + 1699436288.781, + "221200000" + ], + [ + 1699436289.781, + "221200000" + ], + [ + 1699436290.781, + "221200000" + ], + [ + 1699436291.781, + "221200000" + ], + [ + 1699436292.781, + "221200000" + ], + [ + 1699436293.781, + "221200000" + ], + [ + 1699436294.781, + "221200000" + ], + [ + 1699436295.781, + "221200000" + ], + [ + 1699436296.781, + "221200000" + ], + [ + 1699436297.781, + "221200000" + ], + [ + 1699436298.781, + "221200000" + ], + [ + 1699436299.781, + "221200000" + ], + [ + 1699436300.781, + "221200000" + ], + [ + 1699436301.781, + "221200000" + ], + [ + 1699436302.781, + "221200000" + ], + [ + 1699436303.781, + "221200000" + ], + [ + 1699436304.781, + "221200000" + ], + [ + 1699436305.781, + "221200000" + ], + [ + 1699436306.781, + "221200000" + ], + [ + 1699436307.781, + "221200000" + ], + [ + 1699436308.781, + "221200000" + ], + [ + 1699436309.781, + "221200000" + ], + [ + 1699436310.781, + "221200000" + ], + [ + 1699436311.781, + "221200000" + ], + [ + 1699436312.781, + "221200000" + ], + [ + 1699436313.781, + "221200000" + ], + [ + 1699436314.781, + "221200000" + ], + [ + 1699436315.781, + "221200000" + ], + [ + 1699436316.781, + "221200000" + ], + [ + 1699436317.781, + "221200000" + ], + [ + 1699436318.781, + "221200000" + ], + [ + 1699436319.781, + "221200000" + ], + [ + 1699436320.781, + "221200000" + ], + [ + 1699436321.781, + "221200000" + ], + [ + 1699436322.781, + "221200000" + ], + [ + 1699436323.781, + "221200000" + ], + [ + 1699436324.781, + "221200000" + ], + [ + 1699436325.781, + "221200000" + ], + [ + 1699436326.781, + "221200000" + ], + [ + 1699436327.781, + "221200000" + ], + [ + 1699436328.781, + "221200000" + ], + [ + 1699436329.781, + "221200000" + ], + [ + 1699436330.781, + "222600000" + ], + [ + 1699436331.781, + "222600000" + ], + [ + 1699436332.781, + "222600000" + ], + [ + 1699436333.781, + "222600000" + ], + [ + 1699436334.781, + "222600000" + ], + [ + 1699436335.781, + "222600000" + ], + [ + 1699436336.781, + "222600000" + ], + [ + 1699436337.781, + "222600000" + ], + [ + 1699436338.781, + "222600000" + ], + [ + 1699436339.781, + "222600000" + ], + [ + 1699436340.781, + "222600000" + ], + [ + 1699436341.781, + "222600000" + ], + [ + 1699436342.781, + "222600000" + ], + [ + 1699436343.781, + "222600000" + ], + [ + 1699436344.781, + "222600000" + ], + [ + 1699436345.781, + "222600000" + ], + [ + 1699436346.781, + "222600000" + ], + [ + 1699436347.781, + "222600000" + ], + [ + 1699436348.781, + "222600000" + ], + [ + 1699436349.781, + "222600000" + ], + [ + 1699436350.781, + "222600000" + ], + [ + 1699436351.781, + "222600000" + ], + [ + 1699436352.781, + "222600000" + ], + [ + 1699436353.781, + "222600000" + ], + [ + 1699436354.781, + "222600000" + ], + [ + 1699436355.781, + "222600000" + ], + [ + 1699436356.781, + "222600000" + ], + [ + 1699436357.781, + "222600000" + ], + [ + 1699436358.781, + "222600000" + ], + [ + 1699436359.781, + "222600000" + ], + [ + 1699436360.781, + "222600000" + ], + [ + 1699436361.781, + "222600000" + ], + [ + 1699436362.781, + "222600000" + ], + [ + 1699436363.781, + "222600000" + ], + [ + 1699436364.781, + "222600000" + ], + [ + 1699436365.781, + "222600000" + ], + [ + 1699436366.781, + "222600000" + ], + [ + 1699436367.781, + "222600000" + ], + [ + 1699436368.781, + "222600000" + ], + [ + 1699436369.781, + "222600000" + ], + [ + 1699436370.781, + "222600000" + ], + [ + 1699436371.781, + "222600000" + ], + [ + 1699436372.781, + "222600000" + ], + [ + 1699436373.781, + "222600000" + ], + [ + 1699436374.781, + "222600000" + ], + [ + 1699436375.781, + "222600000" + ], + [ + 1699436376.781, + "222600000" + ], + [ + 1699436377.781, + "222600000" + ], + [ + 1699436378.781, + "222600000" + ], + [ + 1699436379.781, + "222600000" + ], + [ + 1699436380.781, + "222600000" + ], + [ + 1699436381.781, + "222600000" + ], + [ + 1699436382.781, + "222600000" + ], + [ + 1699436383.781, + "222600000" + ], + [ + 1699436384.781, + "222600000" + ], + [ + 1699436385.781, + "222600000" + ], + [ + 1699436386.781, + "222600000" + ], + [ + 1699436387.781, + "222600000" + ], + [ + 1699436388.781, + "222600000" + ], + [ + 1699436389.781, + "222600000" + ], + [ + 1699436390.781, + "223600000" + ], + [ + 1699436391.781, + "223600000" + ], + [ + 1699436392.781, + "223600000" + ], + [ + 1699436393.781, + "223600000" + ], + [ + 1699436394.781, + "223600000" + ], + [ + 1699436395.781, + "223600000" + ], + [ + 1699436396.781, + "223600000" + ], + [ + 1699436397.781, + "223600000" + ], + [ + 1699436398.781, + "223600000" + ], + [ + 1699436399.781, + "223600000" + ], + [ + 1699436400.781, + "223600000" + ], + [ + 1699436401.781, + "223600000" + ], + [ + 1699436402.781, + "223600000" + ], + [ + 1699436403.781, + "223600000" + ], + [ + 1699436404.781, + "223600000" + ], + [ + 1699436405.781, + "223600000" + ], + [ + 1699436406.781, + "223600000" + ], + [ + 1699436407.781, + "223600000" + ], + [ + 1699436408.781, + "223600000" + ], + [ + 1699436409.781, + "223600000" + ], + [ + 1699436410.781, + "223600000" + ], + [ + 1699436411.781, + "223600000" + ], + [ + 1699436412.781, + "223600000" + ], + [ + 1699436413.781, + "223600000" + ], + [ + 1699436414.781, + "223600000" + ], + [ + 1699436415.781, + "223600000" + ], + [ + 1699436416.781, + "223600000" + ], + [ + 1699436417.781, + "223600000" + ], + [ + 1699436418.781, + "223600000" + ], + [ + 1699436419.781, + "223600000" + ], + [ + 1699436420.781, + "223600000" + ], + [ + 1699436421.781, + "223600000" + ], + [ + 1699436422.781, + "223600000" + ], + [ + 1699436423.781, + "223600000" + ], + [ + 1699436424.781, + "223600000" + ], + [ + 1699436425.781, + "223600000" + ], + [ + 1699436426.781, + "223600000" + ], + [ + 1699436427.781, + "223600000" + ], + [ + 1699436428.781, + "223600000" + ], + [ + 1699436429.781, + "223600000" + ], + [ + 1699436430.781, + "223600000" + ], + [ + 1699436431.781, + "223600000" + ], + [ + 1699436432.781, + "223600000" + ], + [ + 1699436433.781, + "223600000" + ], + [ + 1699436434.781, + "223600000" + ], + [ + 1699436435.781, + "223600000" + ], + [ + 1699436436.781, + "223600000" + ], + [ + 1699436437.781, + "223600000" + ], + [ + 1699436438.781, + "223600000" + ], + [ + 1699436439.781, + "223600000" + ], + [ + 1699436440.781, + "223600000" + ], + [ + 1699436441.781, + "223600000" + ], + [ + 1699436442.781, + "223600000" + ], + [ + 1699436443.781, + "223600000" + ], + [ + 1699436444.781, + "223600000" + ], + [ + 1699436445.781, + "223600000" + ], + [ + 1699436446.781, + "223600000" + ], + [ + 1699436447.781, + "223600000" + ], + [ + 1699436448.781, + "223600000" + ], + [ + 1699436449.781, + "223600000" + ], + [ + 1699436450.781, + "225000000" + ], + [ + 1699436451.781, + "225000000" + ], + [ + 1699436452.781, + "225000000" + ], + [ + 1699436453.781, + "225000000" + ], + [ + 1699436454.781, + "225000000" + ], + [ + 1699436455.781, + "225000000" + ], + [ + 1699436456.781, + "225000000" + ], + [ + 1699436457.781, + "225000000" + ], + [ + 1699436458.781, + "225000000" + ], + [ + 1699436459.781, + "225000000" + ], + [ + 1699436460.781, + "225000000" + ], + [ + 1699436461.781, + "225000000" + ], + [ + 1699436462.781, + "225000000" + ], + [ + 1699436463.781, + "225000000" + ], + [ + 1699436464.781, + "225000000" + ], + [ + 1699436465.781, + "225000000" + ], + [ + 1699436466.781, + "225000000" + ], + [ + 1699436467.781, + "225000000" + ], + [ + 1699436468.781, + "225000000" + ], + [ + 1699436469.781, + "225000000" + ], + [ + 1699436470.781, + "225000000" + ], + [ + 1699436471.781, + "225000000" + ], + [ + 1699436472.781, + "225000000" + ], + [ + 1699436473.781, + "225000000" + ], + [ + 1699436474.781, + "225000000" + ], + [ + 1699436475.781, + "225000000" + ], + [ + 1699436476.781, + "225000000" + ], + [ + 1699436477.781, + "225000000" + ], + [ + 1699436478.781, + "225000000" + ], + [ + 1699436479.781, + "225000000" + ], + [ + 1699436480.781, + "225000000" + ], + [ + 1699436481.781, + "225000000" + ], + [ + 1699436482.781, + "225000000" + ], + [ + 1699436483.781, + "225000000" + ], + [ + 1699436484.781, + "225000000" + ], + [ + 1699436485.781, + "225000000" + ], + [ + 1699436486.781, + "225000000" + ], + [ + 1699436487.781, + "225000000" + ], + [ + 1699436488.781, + "225000000" + ], + [ + 1699436489.781, + "225000000" + ], + [ + 1699436490.781, + "225000000" + ], + [ + 1699436491.781, + "225000000" + ], + [ + 1699436492.781, + "225000000" + ], + [ + 1699436493.781, + "225000000" + ], + [ + 1699436494.781, + "225000000" + ], + [ + 1699436495.781, + "225000000" + ], + [ + 1699436496.781, + "225000000" + ], + [ + 1699436497.781, + "225000000" + ], + [ + 1699436498.781, + "225000000" + ], + [ + 1699436499.781, + "225000000" + ], + [ + 1699436500.781, + "225000000" + ], + [ + 1699436501.781, + "225000000" + ], + [ + 1699436502.781, + "225000000" + ], + [ + 1699436503.781, + "225000000" + ], + [ + 1699436504.781, + "225000000" + ], + [ + 1699436505.781, + "225000000" + ], + [ + 1699436506.781, + "225000000" + ], + [ + 1699436507.781, + "225000000" + ], + [ + 1699436508.781, + "225000000" + ], + [ + 1699436509.781, + "225000000" + ], + [ + 1699436510.781, + "225000000" + ], + [ + 1699436511.781, + "225000000" + ], + [ + 1699436512.781, + "225000000" + ], + [ + 1699436513.781, + "225000000" + ], + [ + 1699436514.781, + "225000000" + ], + [ + 1699436515.781, + "225000000" + ], + [ + 1699436516.781, + "225000000" + ], + [ + 1699436517.781, + "225000000" + ], + [ + 1699436518.781, + "225000000" + ], + [ + 1699436519.781, + "225000000" + ], + [ + 1699436520.781, + "225000000" + ], + [ + 1699436521.781, + "225000000" + ], + [ + 1699436522.781, + "225000000" + ], + [ + 1699436523.781, + "225000000" + ], + [ + 1699436524.781, + "225000000" + ], + [ + 1699436525.781, + "225000000" + ], + [ + 1699436526.781, + "225000000" + ], + [ + 1699436527.781, + "225000000" + ], + [ + 1699436528.781, + "225000000" + ], + [ + 1699436529.781, + "225000000" + ], + [ + 1699436530.781, + "225000000" + ], + [ + 1699436531.781, + "225000000" + ], + [ + 1699436532.781, + "225000000" + ], + [ + 1699436533.781, + "225000000" + ], + [ + 1699436534.781, + "225000000" + ], + [ + 1699436535.781, + "225000000" + ], + [ + 1699436536.781, + "225000000" + ], + [ + 1699436537.781, + "225000000" + ], + [ + 1699436538.781, + "225000000" + ], + [ + 1699436539.781, + "225000000" + ], + [ + 1699436540.781, + "225000000" + ], + [ + 1699436541.781, + "225000000" + ], + [ + 1699436542.781, + "225000000" + ], + [ + 1699436543.781, + "225000000" + ], + [ + 1699436544.781, + "225000000" + ], + [ + 1699436545.781, + "225000000" + ], + [ + 1699436546.781, + "225000000" + ], + [ + 1699436547.781, + "225000000" + ], + [ + 1699436548.781, + "225000000" + ], + [ + 1699436549.781, + "225000000" + ], + [ + 1699436550.781, + "225000000" + ], + [ + 1699436551.781, + "225000000" + ], + [ + 1699436552.781, + "225000000" + ], + [ + 1699436553.781, + "225000000" + ], + [ + 1699436554.781, + "225000000" + ], + [ + 1699436555.781, + "225000000" + ], + [ + 1699436556.781, + "225000000" + ], + [ + 1699436557.781, + "225000000" + ], + [ + 1699436558.781, + "225000000" + ], + [ + 1699436559.781, + "225000000" + ], + [ + 1699436560.781, + "225000000" + ], + [ + 1699436561.781, + "225000000" + ], + [ + 1699436562.781, + "225000000" + ], + [ + 1699436563.781, + "225000000" + ], + [ + 1699436564.781, + "225000000" + ], + [ + 1699436565.781, + "225000000" + ], + [ + 1699436566.781, + "225000000" + ], + [ + 1699436567.781, + "225000000" + ], + [ + 1699436568.781, + "225000000" + ], + [ + 1699436569.781, + "225000000" + ], + [ + 1699436570.781, + "225800000" + ], + [ + 1699436571.781, + "225800000" + ], + [ + 1699436572.781, + "225800000" + ], + [ + 1699436573.781, + "225800000" + ], + [ + 1699436574.781, + "225800000" + ], + [ + 1699436575.781, + "225800000" + ], + [ + 1699436576.781, + "225800000" + ], + [ + 1699436577.781, + "225800000" + ], + [ + 1699436578.781, + "225800000" + ], + [ + 1699436579.781, + "225800000" + ], + [ + 1699436580.781, + "225800000" + ], + [ + 1699436581.781, + "225800000" + ], + [ + 1699436582.781, + "225800000" + ], + [ + 1699436583.781, + "225800000" + ], + [ + 1699436584.781, + "225800000" + ], + [ + 1699436585.781, + "225800000" + ], + [ + 1699436586.781, + "225800000" + ], + [ + 1699436587.781, + "225800000" + ], + [ + 1699436588.781, + "225800000" + ], + [ + 1699436589.781, + "225800000" + ], + [ + 1699436590.781, + "225800000" + ], + [ + 1699436591.781, + "225800000" + ], + [ + 1699436592.781, + "225800000" + ], + [ + 1699436593.781, + "225800000" + ], + [ + 1699436594.781, + "225800000" + ], + [ + 1699436595.781, + "225800000" + ], + [ + 1699436596.781, + "225800000" + ], + [ + 1699436597.781, + "225800000" + ], + [ + 1699436598.781, + "225800000" + ], + [ + 1699436599.781, + "225800000" + ], + [ + 1699436600.781, + "225800000" + ], + [ + 1699436601.781, + "225800000" + ], + [ + 1699436602.781, + "225800000" + ], + [ + 1699436603.781, + "225800000" + ], + [ + 1699436604.781, + "225800000" + ], + [ + 1699436605.781, + "225800000" + ], + [ + 1699436606.781, + "225800000" + ], + [ + 1699436607.781, + "225800000" + ], + [ + 1699436608.781, + "225800000" + ], + [ + 1699436609.781, + "225800000" + ], + [ + 1699436610.781, + "225800000" + ], + [ + 1699436611.781, + "225800000" + ], + [ + 1699436612.781, + "225800000" + ], + [ + 1699436613.781, + "225800000" + ], + [ + 1699436614.781, + "225800000" + ], + [ + 1699436615.781, + "225800000" + ], + [ + 1699436616.781, + "225800000" + ], + [ + 1699436617.781, + "225800000" + ], + [ + 1699436618.781, + "225800000" + ], + [ + 1699436619.781, + "225800000" + ], + [ + 1699436620.781, + "225800000" + ], + [ + 1699436621.781, + "225800000" + ], + [ + 1699436622.781, + "225800000" + ], + [ + 1699436623.781, + "225800000" + ], + [ + 1699436624.781, + "225800000" + ], + [ + 1699436625.781, + "225800000" + ], + [ + 1699436626.781, + "225800000" + ], + [ + 1699436627.781, + "225800000" + ], + [ + 1699436628.781, + "225800000" + ], + [ + 1699436629.781, + "225800000" + ], + [ + 1699436630.781, + "226400000" + ], + [ + 1699436631.781, + "226400000" + ], + [ + 1699436632.781, + "226400000" + ], + [ + 1699436633.781, + "226400000" + ], + [ + 1699436634.781, + "226400000" + ], + [ + 1699436635.781, + "226400000" + ], + [ + 1699436636.781, + "226400000" + ], + [ + 1699436637.781, + "226400000" + ], + [ + 1699436638.781, + "226400000" + ], + [ + 1699436639.781, + "226400000" + ], + [ + 1699436640.781, + "226400000" + ], + [ + 1699436641.781, + "226400000" + ], + [ + 1699436642.781, + "226400000" + ], + [ + 1699436643.781, + "226400000" + ], + [ + 1699436644.781, + "226400000" + ], + [ + 1699436645.781, + "226400000" + ], + [ + 1699436646.781, + "226400000" + ], + [ + 1699436647.781, + "226400000" + ], + [ + 1699436648.781, + "226400000" + ], + [ + 1699436649.781, + "226400000" + ], + [ + 1699436650.781, + "226400000" + ], + [ + 1699436651.781, + "226400000" + ], + [ + 1699436652.781, + "226400000" + ], + [ + 1699436653.781, + "226400000" + ], + [ + 1699436654.781, + "226400000" + ], + [ + 1699436655.781, + "226400000" + ], + [ + 1699436656.781, + "226400000" + ], + [ + 1699436657.781, + "226400000" + ], + [ + 1699436658.781, + "226400000" + ], + [ + 1699436659.781, + "226400000" + ], + [ + 1699436660.781, + "226400000" + ], + [ + 1699436661.781, + "226400000" + ], + [ + 1699436662.781, + "226400000" + ], + [ + 1699436663.781, + "226400000" + ], + [ + 1699436664.781, + "226400000" + ], + [ + 1699436665.781, + "226400000" + ], + [ + 1699436666.781, + "226400000" + ], + [ + 1699436667.781, + "226400000" + ], + [ + 1699436668.781, + "226400000" + ], + [ + 1699436669.781, + "226400000" + ], + [ + 1699436670.781, + "226400000" + ], + [ + 1699436671.781, + "226400000" + ], + [ + 1699436672.781, + "226400000" + ], + [ + 1699436673.781, + "226400000" + ], + [ + 1699436674.781, + "226400000" + ], + [ + 1699436675.781, + "226400000" + ], + [ + 1699436676.781, + "226400000" + ], + [ + 1699436677.781, + "226400000" + ], + [ + 1699436678.781, + "226400000" + ], + [ + 1699436679.781, + "226400000" + ], + [ + 1699436680.781, + "226400000" + ], + [ + 1699436681.781, + "226400000" + ], + [ + 1699436682.781, + "226400000" + ], + [ + 1699436683.781, + "226400000" + ], + [ + 1699436684.781, + "226400000" + ], + [ + 1699436685.781, + "226400000" + ], + [ + 1699436686.781, + "226400000" + ], + [ + 1699436687.781, + "226400000" + ], + [ + 1699436688.781, + "226400000" + ], + [ + 1699436689.781, + "226400000" + ], + [ + 1699436690.781, + "227000000" + ], + [ + 1699436691.781, + "227000000" + ], + [ + 1699436692.781, + "227000000" + ], + [ + 1699436693.781, + "227000000" + ], + [ + 1699436694.781, + "227000000" + ], + [ + 1699436695.781, + "227000000" + ], + [ + 1699436696.781, + "227000000" + ], + [ + 1699436697.781, + "227000000" + ], + [ + 1699436698.781, + "227000000" + ], + [ + 1699436699.781, + "227000000" + ], + [ + 1699436700.781, + "227000000" + ], + [ + 1699436701.781, + "227000000" + ], + [ + 1699436702.781, + "227000000" + ], + [ + 1699436703.781, + "227000000" + ], + [ + 1699436704.781, + "227000000" + ], + [ + 1699436705.781, + "227000000" + ], + [ + 1699436706.781, + "227000000" + ], + [ + 1699436707.781, + "227000000" + ], + [ + 1699436708.781, + "227000000" + ], + [ + 1699436709.781, + "227000000" + ], + [ + 1699436710.781, + "227000000" + ], + [ + 1699436711.781, + "227000000" + ], + [ + 1699436712.781, + "227000000" + ], + [ + 1699436713.781, + "227000000" + ], + [ + 1699436714.781, + "227000000" + ], + [ + 1699436715.781, + "227000000" + ], + [ + 1699436716.781, + "227000000" + ], + [ + 1699436717.781, + "227000000" + ], + [ + 1699436718.781, + "227000000" + ], + [ + 1699436719.781, + "227000000" + ], + [ + 1699436720.781, + "227000000" + ], + [ + 1699436721.781, + "227000000" + ], + [ + 1699436722.781, + "227000000" + ], + [ + 1699436723.781, + "227000000" + ], + [ + 1699436724.781, + "227000000" + ], + [ + 1699436725.781, + "227000000" + ], + [ + 1699436726.781, + "227000000" + ], + [ + 1699436727.781, + "227000000" + ], + [ + 1699436728.781, + "227000000" + ], + [ + 1699436729.781, + "227000000" + ], + [ + 1699436730.781, + "227000000" + ], + [ + 1699436731.781, + "227000000" + ], + [ + 1699436732.781, + "227000000" + ], + [ + 1699436733.781, + "227000000" + ], + [ + 1699436734.781, + "227000000" + ], + [ + 1699436735.781, + "227000000" + ], + [ + 1699436736.781, + "227000000" + ], + [ + 1699436737.781, + "227000000" + ], + [ + 1699436738.781, + "227000000" + ], + [ + 1699436739.781, + "227000000" + ], + [ + 1699436740.781, + "227000000" + ], + [ + 1699436741.781, + "227000000" + ], + [ + 1699436742.781, + "227000000" + ], + [ + 1699436743.781, + "227000000" + ], + [ + 1699436744.781, + "227000000" + ], + [ + 1699436745.781, + "227000000" + ], + [ + 1699436746.781, + "227000000" + ], + [ + 1699436747.781, + "227000000" + ], + [ + 1699436748.781, + "227000000" + ], + [ + 1699436749.781, + "227000000" + ], + [ + 1699436750.781, + "228600000" + ], + [ + 1699436751.781, + "228600000" + ], + [ + 1699436752.781, + "228600000" + ], + [ + 1699436753.781, + "228600000" + ], + [ + 1699436754.781, + "228600000" + ], + [ + 1699436755.781, + "228600000" + ], + [ + 1699436756.781, + "228600000" + ], + [ + 1699436757.781, + "228600000" + ], + [ + 1699436758.781, + "228600000" + ], + [ + 1699436759.781, + "228600000" + ], + [ + 1699436760.781, + "228600000" + ], + [ + 1699436761.781, + "228600000" + ], + [ + 1699436762.781, + "228600000" + ], + [ + 1699436763.781, + "228600000" + ], + [ + 1699436764.781, + "228600000" + ], + [ + 1699436765.781, + "228600000" + ], + [ + 1699436766.781, + "228600000" + ], + [ + 1699436767.781, + "228600000" + ], + [ + 1699436768.781, + "228600000" + ], + [ + 1699436769.781, + "228600000" + ], + [ + 1699436770.781, + "228600000" + ], + [ + 1699436771.781, + "228600000" + ], + [ + 1699436772.781, + "228600000" + ], + [ + 1699436773.781, + "228600000" + ], + [ + 1699436774.781, + "228600000" + ], + [ + 1699436775.781, + "228600000" + ], + [ + 1699436776.781, + "228600000" + ], + [ + 1699436777.781, + "228600000" + ], + [ + 1699436778.781, + "228600000" + ], + [ + 1699436779.781, + "228600000" + ], + [ + 1699436780.781, + "228600000" + ], + [ + 1699436781.781, + "228600000" + ], + [ + 1699436782.781, + "228600000" + ], + [ + 1699436783.781, + "228600000" + ], + [ + 1699436784.781, + "228600000" + ], + [ + 1699436785.781, + "228600000" + ], + [ + 1699436786.781, + "228600000" + ], + [ + 1699436787.781, + "228600000" + ], + [ + 1699436788.781, + "228600000" + ], + [ + 1699436789.781, + "228600000" + ], + [ + 1699436790.781, + "228600000" + ], + [ + 1699436791.781, + "228600000" + ], + [ + 1699436792.781, + "228600000" + ], + [ + 1699436793.781, + "228600000" + ], + [ + 1699436794.781, + "228600000" + ], + [ + 1699436795.781, + "228600000" + ], + [ + 1699436796.781, + "228600000" + ], + [ + 1699436797.781, + "228600000" + ], + [ + 1699436798.781, + "228600000" + ], + [ + 1699436799.781, + "228600000" + ], + [ + 1699436800.781, + "228600000" + ], + [ + 1699436801.781, + "228600000" + ], + [ + 1699436802.781, + "228600000" + ], + [ + 1699436803.781, + "228600000" + ], + [ + 1699436804.781, + "228600000" + ], + [ + 1699436805.781, + "228600000" + ], + [ + 1699436806.781, + "228600000" + ], + [ + 1699436807.781, + "228600000" + ], + [ + 1699436808.781, + "228600000" + ], + [ + 1699436809.781, + "228600000" + ], + [ + 1699436810.781, + "229000000" + ], + [ + 1699436811.781, + "229000000" + ], + [ + 1699436812.781, + "229000000" + ], + [ + 1699436813.781, + "229000000" + ], + [ + 1699436814.781, + "229000000" + ], + [ + 1699436815.781, + "229000000" + ], + [ + 1699436816.781, + "229000000" + ], + [ + 1699436817.781, + "229000000" + ], + [ + 1699436818.781, + "229000000" + ], + [ + 1699436819.781, + "229000000" + ], + [ + 1699436820.781, + "229000000" + ], + [ + 1699436821.781, + "229000000" + ], + [ + 1699436822.781, + "229000000" + ], + [ + 1699436823.781, + "229000000" + ], + [ + 1699436824.781, + "229000000" + ], + [ + 1699436825.781, + "229000000" + ], + [ + 1699436826.781, + "229000000" + ], + [ + 1699436827.781, + "229000000" + ], + [ + 1699436828.781, + "229000000" + ], + [ + 1699436829.781, + "229000000" + ], + [ + 1699436830.781, + "229000000" + ], + [ + 1699436831.781, + "229000000" + ], + [ + 1699436832.781, + "229000000" + ], + [ + 1699436833.781, + "229000000" + ], + [ + 1699436834.781, + "229000000" + ], + [ + 1699436835.781, + "229000000" + ], + [ + 1699436836.781, + "229000000" + ], + [ + 1699436837.781, + "229000000" + ], + [ + 1699436838.781, + "229000000" + ], + [ + 1699436839.781, + "229000000" + ], + [ + 1699436840.781, + "229000000" + ], + [ + 1699436841.781, + "229000000" + ], + [ + 1699436842.781, + "229000000" + ], + [ + 1699436843.781, + "229000000" + ], + [ + 1699436844.781, + "229000000" + ], + [ + 1699436845.781, + "229000000" + ], + [ + 1699436846.781, + "229000000" + ], + [ + 1699436847.781, + "229000000" + ], + [ + 1699436848.781, + "229000000" + ], + [ + 1699436849.781, + "229000000" + ], + [ + 1699436850.781, + "229000000" + ], + [ + 1699436851.781, + "229000000" + ], + [ + 1699436852.781, + "229000000" + ], + [ + 1699436853.781, + "229000000" + ], + [ + 1699436854.781, + "229000000" + ], + [ + 1699436855.781, + "229000000" + ], + [ + 1699436856.781, + "229000000" + ], + [ + 1699436857.781, + "229000000" + ], + [ + 1699436858.781, + "229000000" + ], + [ + 1699436859.781, + "229000000" + ], + [ + 1699436860.781, + "229000000" + ], + [ + 1699436861.781, + "229000000" + ], + [ + 1699436862.781, + "229000000" + ], + [ + 1699436863.781, + "229000000" + ], + [ + 1699436864.781, + "229000000" + ], + [ + 1699436865.781, + "229000000" + ], + [ + 1699436866.781, + "229000000" + ], + [ + 1699436867.781, + "229000000" + ], + [ + 1699436868.781, + "229000000" + ], + [ + 1699436869.781, + "229000000" + ], + [ + 1699436870.781, + "231000000" + ], + [ + 1699436871.781, + "231000000" + ], + [ + 1699436872.781, + "231000000" + ], + [ + 1699436873.781, + "231000000" + ], + [ + 1699436874.781, + "231000000" + ], + [ + 1699436875.781, + "231000000" + ], + [ + 1699436876.781, + "231000000" + ], + [ + 1699436877.781, + "231000000" + ], + [ + 1699436878.781, + "231000000" + ], + [ + 1699436879.781, + "231000000" + ], + [ + 1699436880.781, + "231000000" + ], + [ + 1699436881.781, + "231000000" + ], + [ + 1699436882.781, + "231000000" + ], + [ + 1699436883.781, + "231000000" + ], + [ + 1699436884.781, + "231000000" + ], + [ + 1699436885.781, + "231000000" + ], + [ + 1699436886.781, + "231000000" + ], + [ + 1699436887.781, + "231000000" + ], + [ + 1699436888.781, + "231000000" + ], + [ + 1699436889.781, + "231000000" + ], + [ + 1699436890.781, + "231000000" + ], + [ + 1699436891.781, + "231000000" + ], + [ + 1699436892.781, + "231000000" + ], + [ + 1699436893.781, + "231000000" + ], + [ + 1699436894.781, + "231000000" + ], + [ + 1699436895.781, + "231000000" + ], + [ + 1699436896.781, + "231000000" + ], + [ + 1699436897.781, + "231000000" + ], + [ + 1699436898.781, + "231000000" + ], + [ + 1699436899.781, + "231000000" + ], + [ + 1699436900.781, + "231000000" + ], + [ + 1699436901.781, + "231000000" + ], + [ + 1699436902.781, + "231000000" + ], + [ + 1699436903.781, + "231000000" + ], + [ + 1699436904.781, + "231000000" + ], + [ + 1699436905.781, + "231000000" + ], + [ + 1699436906.781, + "231000000" + ], + [ + 1699436907.781, + "231000000" + ], + [ + 1699436908.781, + "231000000" + ], + [ + 1699436909.781, + "231000000" + ], + [ + 1699436910.781, + "231000000" + ], + [ + 1699436911.781, + "231000000" + ], + [ + 1699436912.781, + "231000000" + ], + [ + 1699436913.781, + "231000000" + ], + [ + 1699436914.781, + "231000000" + ], + [ + 1699436915.781, + "231000000" + ], + [ + 1699436916.781, + "231000000" + ], + [ + 1699436917.781, + "231000000" + ], + [ + 1699436918.781, + "231000000" + ], + [ + 1699436919.781, + "231000000" + ], + [ + 1699436920.781, + "231000000" + ], + [ + 1699436921.781, + "231000000" + ], + [ + 1699436922.781, + "231000000" + ], + [ + 1699436923.781, + "231000000" + ], + [ + 1699436924.781, + "231000000" + ], + [ + 1699436925.781, + "231000000" + ], + [ + 1699436926.781, + "231000000" + ], + [ + 1699436927.781, + "231000000" + ], + [ + 1699436928.781, + "231000000" + ], + [ + 1699436929.781, + "231000000" + ], + [ + 1699436930.781, + "232400000" + ], + [ + 1699436931.781, + "232400000" + ], + [ + 1699436932.781, + "232400000" + ], + [ + 1699436933.781, + "232400000" + ], + [ + 1699436934.781, + "232400000" + ], + [ + 1699436935.781, + "232400000" + ], + [ + 1699436936.781, + "232400000" + ], + [ + 1699436937.781, + "232400000" + ], + [ + 1699436938.781, + "232400000" + ], + [ + 1699436939.781, + "232400000" + ], + [ + 1699436940.781, + "232400000" + ], + [ + 1699436941.781, + "232400000" + ], + [ + 1699436942.781, + "232400000" + ], + [ + 1699436943.781, + "232400000" + ], + [ + 1699436944.781, + "232400000" + ], + [ + 1699436945.781, + "232400000" + ], + [ + 1699436946.781, + "232400000" + ], + [ + 1699436947.781, + "232400000" + ], + [ + 1699436948.781, + "232400000" + ], + [ + 1699436949.781, + "232400000" + ], + [ + 1699436950.781, + "232400000" + ], + [ + 1699436951.781, + "232400000" + ], + [ + 1699436952.781, + "232400000" + ], + [ + 1699436953.781, + "232400000" + ], + [ + 1699436954.781, + "232400000" + ], + [ + 1699436955.781, + "232400000" + ], + [ + 1699436956.781, + "232400000" + ], + [ + 1699436957.781, + "232400000" + ], + [ + 1699436958.781, + "232400000" + ], + [ + 1699436959.781, + "232400000" + ], + [ + 1699436960.781, + "232400000" + ], + [ + 1699436961.781, + "232400000" + ], + [ + 1699436962.781, + "232400000" + ], + [ + 1699436963.781, + "232400000" + ], + [ + 1699436964.781, + "232400000" + ], + [ + 1699436965.781, + "232400000" + ], + [ + 1699436966.781, + "232400000" + ], + [ + 1699436967.781, + "232400000" + ], + [ + 1699436968.781, + "232400000" + ], + [ + 1699436969.781, + "232400000" + ], + [ + 1699436970.781, + "232400000" + ], + [ + 1699436971.781, + "232400000" + ], + [ + 1699436972.781, + "232400000" + ], + [ + 1699436973.781, + "232400000" + ], + [ + 1699436974.781, + "232400000" + ], + [ + 1699436975.781, + "232400000" + ], + [ + 1699436976.781, + "232400000" + ], + [ + 1699436977.781, + "232400000" + ], + [ + 1699436978.781, + "232400000" + ], + [ + 1699436979.781, + "232400000" + ], + [ + 1699436980.781, + "232400000" + ], + [ + 1699436981.781, + "232400000" + ], + [ + 1699436982.781, + "232400000" + ], + [ + 1699436983.781, + "232400000" + ], + [ + 1699436984.781, + "232400000" + ], + [ + 1699436985.781, + "232400000" + ], + [ + 1699436986.781, + "232400000" + ], + [ + 1699436987.781, + "232400000" + ], + [ + 1699436988.781, + "232400000" + ], + [ + 1699436989.781, + "232400000" + ], + [ + 1699436990.781, + "233400000" + ], + [ + 1699436991.781, + "233400000" + ], + [ + 1699436992.781, + "233400000" + ], + [ + 1699436993.781, + "233400000" + ], + [ + 1699436994.781, + "233400000" + ], + [ + 1699436995.781, + "233400000" + ], + [ + 1699436996.781, + "233400000" + ], + [ + 1699436997.781, + "233400000" + ], + [ + 1699436998.781, + "233400000" + ], + [ + 1699436999.781, + "233400000" + ], + [ + 1699437000.781, + "233400000" + ], + [ + 1699437001.781, + "233400000" + ], + [ + 1699437002.781, + "233400000" + ], + [ + 1699437003.781, + "233400000" + ], + [ + 1699437004.781, + "233400000" + ], + [ + 1699437005.781, + "233400000" + ], + [ + 1699437006.781, + "233400000" + ], + [ + 1699437007.781, + "233400000" + ], + [ + 1699437008.781, + "233400000" + ], + [ + 1699437009.781, + "233400000" + ], + [ + 1699437010.781, + "233400000" + ], + [ + 1699437011.781, + "233400000" + ], + [ + 1699437012.781, + "233400000" + ], + [ + 1699437013.781, + "233400000" + ], + [ + 1699437014.781, + "233400000" + ], + [ + 1699437015.781, + "233400000" + ], + [ + 1699437016.781, + "233400000" + ], + [ + 1699437017.781, + "233400000" + ], + [ + 1699437018.781, + "233400000" + ], + [ + 1699437019.781, + "233400000" + ], + [ + 1699437020.781, + "233400000" + ], + [ + 1699437021.781, + "233400000" + ], + [ + 1699437022.781, + "233400000" + ], + [ + 1699437023.781, + "233400000" + ], + [ + 1699437024.781, + "233400000" + ], + [ + 1699437025.781, + "233400000" + ], + [ + 1699437026.781, + "233400000" + ], + [ + 1699437027.781, + "233400000" + ], + [ + 1699437028.781, + "233400000" + ], + [ + 1699437029.781, + "233400000" + ], + [ + 1699437030.781, + "233400000" + ], + [ + 1699437031.781, + "233400000" + ], + [ + 1699437032.781, + "233400000" + ], + [ + 1699437033.781, + "233400000" + ], + [ + 1699437034.781, + "233400000" + ], + [ + 1699437035.781, + "233400000" + ], + [ + 1699437036.781, + "233400000" + ], + [ + 1699437037.781, + "233400000" + ], + [ + 1699437038.781, + "233400000" + ], + [ + 1699437039.781, + "233400000" + ], + [ + 1699437040.781, + "233400000" + ], + [ + 1699437041.781, + "233400000" + ], + [ + 1699437042.781, + "233400000" + ], + [ + 1699437043.781, + "233400000" + ], + [ + 1699437044.781, + "233400000" + ], + [ + 1699437045.781, + "233400000" + ], + [ + 1699437046.781, + "233400000" + ], + [ + 1699437047.781, + "233400000" + ], + [ + 1699437048.781, + "233400000" + ], + [ + 1699437049.781, + "233400000" + ], + [ + 1699437050.781, + "234800000" + ], + [ + 1699437051.781, + "234800000" + ], + [ + 1699437052.781, + "234800000" + ], + [ + 1699437053.781, + "234800000" + ], + [ + 1699437054.781, + "234800000" + ], + [ + 1699437055.781, + "234800000" + ], + [ + 1699437056.781, + "234800000" + ], + [ + 1699437057.781, + "234800000" + ], + [ + 1699437058.781, + "234800000" + ], + [ + 1699437059.781, + "234800000" + ], + [ + 1699437060.781, + "234800000" + ], + [ + 1699437061.781, + "234800000" + ], + [ + 1699437062.781, + "234800000" + ], + [ + 1699437063.781, + "234800000" + ], + [ + 1699437064.781, + "234800000" + ], + [ + 1699437065.781, + "234800000" + ], + [ + 1699437066.781, + "234800000" + ], + [ + 1699437067.781, + "234800000" + ], + [ + 1699437068.781, + "234800000" + ], + [ + 1699437069.781, + "234800000" + ], + [ + 1699437070.781, + "234800000" + ], + [ + 1699437071.781, + "234800000" + ], + [ + 1699437072.781, + "234800000" + ], + [ + 1699437073.781, + "234800000" + ], + [ + 1699437074.781, + "234800000" + ], + [ + 1699437075.781, + "234800000" + ], + [ + 1699437076.781, + "234800000" + ], + [ + 1699437077.781, + "234800000" + ], + [ + 1699437078.781, + "234800000" + ], + [ + 1699437079.781, + "234800000" + ], + [ + 1699437080.781, + "234800000" + ], + [ + 1699437081.781, + "234800000" + ], + [ + 1699437082.781, + "234800000" + ], + [ + 1699437083.781, + "234800000" + ], + [ + 1699437084.781, + "234800000" + ], + [ + 1699437085.781, + "234800000" + ], + [ + 1699437086.781, + "234800000" + ], + [ + 1699437087.781, + "234800000" + ], + [ + 1699437088.781, + "234800000" + ], + [ + 1699437089.781, + "234800000" + ], + [ + 1699437090.781, + "234800000" + ], + [ + 1699437091.781, + "234800000" + ], + [ + 1699437092.781, + "234800000" + ], + [ + 1699437093.781, + "234800000" + ], + [ + 1699437094.781, + "234800000" + ], + [ + 1699437095.781, + "234800000" + ], + [ + 1699437096.781, + "234800000" + ], + [ + 1699437097.781, + "234800000" + ], + [ + 1699437098.781, + "234800000" + ], + [ + 1699437099.781, + "234800000" + ], + [ + 1699437100.781, + "234800000" + ], + [ + 1699437101.781, + "234800000" + ], + [ + 1699437102.781, + "234800000" + ], + [ + 1699437103.781, + "234800000" + ], + [ + 1699437104.781, + "234800000" + ], + [ + 1699437105.781, + "234800000" + ], + [ + 1699437106.781, + "234800000" + ], + [ + 1699437107.781, + "234800000" + ], + [ + 1699437108.781, + "234800000" + ], + [ + 1699437109.781, + "234800000" + ], + [ + 1699437110.781, + "235800000" + ], + [ + 1699437111.781, + "235800000" + ], + [ + 1699437112.781, + "235800000" + ], + [ + 1699437113.781, + "235800000" + ], + [ + 1699437114.781, + "235800000" + ], + [ + 1699437115.781, + "235800000" + ], + [ + 1699437116.781, + "235800000" + ], + [ + 1699437117.781, + "235800000" + ], + [ + 1699437118.781, + "235800000" + ], + [ + 1699437119.781, + "235800000" + ], + [ + 1699437120.781, + "235800000" + ], + [ + 1699437121.781, + "235800000" + ], + [ + 1699437122.781, + "235800000" + ], + [ + 1699437123.781, + "235800000" + ], + [ + 1699437124.781, + "235800000" + ], + [ + 1699437125.781, + "235800000" + ], + [ + 1699437126.781, + "235800000" + ], + [ + 1699437127.781, + "235800000" + ], + [ + 1699437128.781, + "235800000" + ], + [ + 1699437129.781, + "235800000" + ], + [ + 1699437130.781, + "235800000" + ], + [ + 1699437131.781, + "235800000" + ], + [ + 1699437132.781, + "235800000" + ], + [ + 1699437133.781, + "235800000" + ], + [ + 1699437134.781, + "235800000" + ], + [ + 1699437135.781, + "235800000" + ], + [ + 1699437136.781, + "235800000" + ], + [ + 1699437137.781, + "235800000" + ], + [ + 1699437138.781, + "235800000" + ], + [ + 1699437139.781, + "235800000" + ], + [ + 1699437140.781, + "235800000" + ], + [ + 1699437141.781, + "235800000" + ], + [ + 1699437142.781, + "235800000" + ], + [ + 1699437143.781, + "235800000" + ], + [ + 1699437144.781, + "235800000" + ], + [ + 1699437145.781, + "235800000" + ], + [ + 1699437146.781, + "235800000" + ], + [ + 1699437147.781, + "235800000" + ], + [ + 1699437148.781, + "235800000" + ], + [ + 1699437149.781, + "235800000" + ], + [ + 1699437150.781, + "235800000" + ], + [ + 1699437151.781, + "235800000" + ], + [ + 1699437152.781, + "235800000" + ], + [ + 1699437153.781, + "235800000" + ], + [ + 1699437154.781, + "235800000" + ], + [ + 1699437155.781, + "235800000" + ], + [ + 1699437156.781, + "235800000" + ], + [ + 1699437157.781, + "235800000" + ], + [ + 1699437158.781, + "235800000" + ], + [ + 1699437159.781, + "235800000" + ], + [ + 1699437160.781, + "235800000" + ], + [ + 1699437161.781, + "235800000" + ], + [ + 1699437162.781, + "235800000" + ], + [ + 1699437163.781, + "235800000" + ], + [ + 1699437164.781, + "235800000" + ], + [ + 1699437165.781, + "235800000" + ], + [ + 1699437166.781, + "235800000" + ], + [ + 1699437167.781, + "235800000" + ], + [ + 1699437168.781, + "235800000" + ], + [ + 1699437169.781, + "235800000" + ], + [ + 1699437170.781, + "235800000" + ], + [ + 1699437171.781, + "235800000" + ], + [ + 1699437172.781, + "235800000" + ], + [ + 1699437173.781, + "235800000" + ], + [ + 1699437174.781, + "235800000" + ], + [ + 1699437175.781, + "235800000" + ], + [ + 1699437176.781, + "235800000" + ], + [ + 1699437177.781, + "235800000" + ], + [ + 1699437178.781, + "235800000" + ], + [ + 1699437179.781, + "235800000" + ], + [ + 1699437180.781, + "235800000" + ], + [ + 1699437181.781, + "235800000" + ], + [ + 1699437182.781, + "235800000" + ], + [ + 1699437183.781, + "235800000" + ], + [ + 1699437184.781, + "235800000" + ], + [ + 1699437185.781, + "235800000" + ], + [ + 1699437186.781, + "235800000" + ], + [ + 1699437187.781, + "235800000" + ], + [ + 1699437188.781, + "235800000" + ], + [ + 1699437189.781, + "235800000" + ], + [ + 1699437190.781, + "235800000" + ], + [ + 1699437191.781, + "235800000" + ], + [ + 1699437192.781, + "235800000" + ], + [ + 1699437193.781, + "235800000" + ], + [ + 1699437194.781, + "235800000" + ], + [ + 1699437195.781, + "235800000" + ], + [ + 1699437196.781, + "235800000" + ], + [ + 1699437197.781, + "235800000" + ], + [ + 1699437198.781, + "235800000" + ], + [ + 1699437199.781, + "235800000" + ], + [ + 1699437200.781, + "235800000" + ], + [ + 1699437201.781, + "235800000" + ], + [ + 1699437202.781, + "235800000" + ], + [ + 1699437203.781, + "235800000" + ], + [ + 1699437204.781, + "235800000" + ], + [ + 1699437205.781, + "235800000" + ], + [ + 1699437206.781, + "235800000" + ], + [ + 1699437207.781, + "235800000" + ], + [ + 1699437208.781, + "235800000" + ], + [ + 1699437209.781, + "235800000" + ], + [ + 1699437210.781, + "235800000" + ], + [ + 1699437211.781, + "235800000" + ], + [ + 1699437212.781, + "235800000" + ], + [ + 1699437213.781, + "235800000" + ], + [ + 1699437214.781, + "235800000" + ], + [ + 1699437215.781, + "235800000" + ], + [ + 1699437216.781, + "235800000" + ], + [ + 1699437217.781, + "235800000" + ], + [ + 1699437218.781, + "235800000" + ], + [ + 1699437219.781, + "235800000" + ], + [ + 1699437220.781, + "235800000" + ], + [ + 1699437221.781, + "235800000" + ], + [ + 1699437222.781, + "235800000" + ], + [ + 1699437223.781, + "235800000" + ], + [ + 1699437224.781, + "235800000" + ], + [ + 1699437225.781, + "235800000" + ], + [ + 1699437226.781, + "235800000" + ], + [ + 1699437227.781, + "235800000" + ], + [ + 1699437228.781, + "235800000" + ], + [ + 1699437229.781, + "235800000" + ], + [ + 1699437230.781, + "237800000" + ], + [ + 1699437231.781, + "237800000" + ], + [ + 1699437232.781, + "237800000" + ], + [ + 1699437233.781, + "237800000" + ], + [ + 1699437234.781, + "237800000" + ], + [ + 1699437235.781, + "237800000" + ], + [ + 1699437236.781, + "237800000" + ], + [ + 1699437237.781, + "237800000" + ], + [ + 1699437238.781, + "237800000" + ], + [ + 1699437239.781, + "237800000" + ], + [ + 1699437240.781, + "237800000" + ], + [ + 1699437241.781, + "237800000" + ], + [ + 1699437242.781, + "237800000" + ], + [ + 1699437243.781, + "237800000" + ], + [ + 1699437244.781, + "237800000" + ], + [ + 1699437245.781, + "237800000" + ], + [ + 1699437246.781, + "237800000" + ], + [ + 1699437247.781, + "237800000" + ], + [ + 1699437248.781, + "237800000" + ], + [ + 1699437249.781, + "237800000" + ], + [ + 1699437250.781, + "237800000" + ], + [ + 1699437251.781, + "237800000" + ], + [ + 1699437252.781, + "237800000" + ], + [ + 1699437253.781, + "237800000" + ], + [ + 1699437254.781, + "237800000" + ], + [ + 1699437255.781, + "237800000" + ], + [ + 1699437256.781, + "237800000" + ], + [ + 1699437257.781, + "237800000" + ], + [ + 1699437258.781, + "237800000" + ], + [ + 1699437259.781, + "237800000" + ], + [ + 1699437260.781, + "237800000" + ], + [ + 1699437261.781, + "237800000" + ], + [ + 1699437262.781, + "237800000" + ], + [ + 1699437263.781, + "237800000" + ], + [ + 1699437264.781, + "237800000" + ], + [ + 1699437265.781, + "237800000" + ], + [ + 1699437266.781, + "237800000" + ], + [ + 1699437267.781, + "237800000" + ], + [ + 1699437268.781, + "237800000" + ], + [ + 1699437269.781, + "237800000" + ], + [ + 1699437270.781, + "237800000" + ], + [ + 1699437271.781, + "237800000" + ], + [ + 1699437272.781, + "237800000" + ], + [ + 1699437273.781, + "237800000" + ], + [ + 1699437274.781, + "237800000" + ], + [ + 1699437275.781, + "237800000" + ], + [ + 1699437276.781, + "237800000" + ], + [ + 1699437277.781, + "237800000" + ], + [ + 1699437278.781, + "237800000" + ], + [ + 1699437279.781, + "237800000" + ], + [ + 1699437280.781, + "237800000" + ], + [ + 1699437281.781, + "237800000" + ], + [ + 1699437282.781, + "237800000" + ], + [ + 1699437283.781, + "237800000" + ], + [ + 1699437284.781, + "237800000" + ], + [ + 1699437285.781, + "237800000" + ], + [ + 1699437286.781, + "237800000" + ], + [ + 1699437287.781, + "237800000" + ], + [ + 1699437288.781, + "237800000" + ], + [ + 1699437289.781, + "237800000" + ], + [ + 1699437290.781, + "238200000" + ], + [ + 1699437291.781, + "238200000" + ], + [ + 1699437292.781, + "238200000" + ], + [ + 1699437293.781, + "238200000" + ], + [ + 1699437294.781, + "238200000" + ], + [ + 1699437295.781, + "238200000" + ], + [ + 1699437296.781, + "238200000" + ], + [ + 1699437297.781, + "238200000" + ], + [ + 1699437298.781, + "238200000" + ], + [ + 1699437299.781, + "238200000" + ], + [ + 1699437300.781, + "238200000" + ], + [ + 1699437301.781, + "238200000" + ], + [ + 1699437302.781, + "238200000" + ], + [ + 1699437303.781, + "238200000" + ], + [ + 1699437304.781, + "238200000" + ], + [ + 1699437305.781, + "238200000" + ], + [ + 1699437306.781, + "238200000" + ], + [ + 1699437307.781, + "238200000" + ], + [ + 1699437308.781, + "238200000" + ], + [ + 1699437309.781, + "238200000" + ], + [ + 1699437310.781, + "238200000" + ], + [ + 1699437311.781, + "238200000" + ], + [ + 1699437312.781, + "238200000" + ], + [ + 1699437313.781, + "238200000" + ], + [ + 1699437314.781, + "238200000" + ], + [ + 1699437315.781, + "238200000" + ], + [ + 1699437316.781, + "238200000" + ], + [ + 1699437317.781, + "238200000" + ], + [ + 1699437318.781, + "238200000" + ], + [ + 1699437319.781, + "238200000" + ], + [ + 1699437320.781, + "238200000" + ], + [ + 1699437321.781, + "238200000" + ], + [ + 1699437322.781, + "238200000" + ], + [ + 1699437323.781, + "238200000" + ], + [ + 1699437324.781, + "238200000" + ], + [ + 1699437325.781, + "238200000" + ], + [ + 1699437326.781, + "238200000" + ], + [ + 1699437327.781, + "238200000" + ], + [ + 1699437328.781, + "238200000" + ], + [ + 1699437329.781, + "238200000" + ], + [ + 1699437330.781, + "238200000" + ], + [ + 1699437331.781, + "238200000" + ], + [ + 1699437332.781, + "238200000" + ], + [ + 1699437333.781, + "238200000" + ], + [ + 1699437334.781, + "238200000" + ], + [ + 1699437335.781, + "238200000" + ], + [ + 1699437336.781, + "238200000" + ], + [ + 1699437337.781, + "238200000" + ], + [ + 1699437338.781, + "238200000" + ], + [ + 1699437339.781, + "238200000" + ], + [ + 1699437340.781, + "238200000" + ], + [ + 1699437341.781, + "238200000" + ], + [ + 1699437342.781, + "238200000" + ], + [ + 1699437343.781, + "238200000" + ], + [ + 1699437344.781, + "238200000" + ], + [ + 1699437345.781, + "238200000" + ], + [ + 1699437346.781, + "238200000" + ], + [ + 1699437347.781, + "238200000" + ], + [ + 1699437348.781, + "238200000" + ], + [ + 1699437349.781, + "238200000" + ], + [ + 1699437350.781, + "238600000" + ], + [ + 1699437351.781, + "238600000" + ], + [ + 1699437352.781, + "238600000" + ], + [ + 1699437353.781, + "238600000" + ], + [ + 1699437354.781, + "238600000" + ], + [ + 1699437355.781, + "238600000" + ], + [ + 1699437356.781, + "238600000" + ], + [ + 1699437357.781, + "238600000" + ], + [ + 1699437358.781, + "238600000" + ], + [ + 1699437359.781, + "238600000" + ], + [ + 1699437360.781, + "238600000" + ], + [ + 1699437361.781, + "238600000" + ], + [ + 1699437362.781, + "238600000" + ], + [ + 1699437363.781, + "238600000" + ], + [ + 1699437364.781, + "238600000" + ], + [ + 1699437365.781, + "238600000" + ], + [ + 1699437366.781, + "238600000" + ], + [ + 1699437367.781, + "238600000" + ], + [ + 1699437368.781, + "238600000" + ], + [ + 1699437369.781, + "238600000" + ], + [ + 1699437370.781, + "238600000" + ], + [ + 1699437371.781, + "238600000" + ], + [ + 1699437372.781, + "238600000" + ], + [ + 1699437373.781, + "238600000" + ], + [ + 1699437374.781, + "238600000" + ], + [ + 1699437375.781, + "238600000" + ], + [ + 1699437376.781, + "238600000" + ], + [ + 1699437377.781, + "238600000" + ], + [ + 1699437378.781, + "238600000" + ], + [ + 1699437379.781, + "238600000" + ], + [ + 1699437380.781, + "238600000" + ], + [ + 1699437381.781, + "238600000" + ], + [ + 1699437382.781, + "238600000" + ], + [ + 1699437383.781, + "238600000" + ], + [ + 1699437384.781, + "238600000" + ], + [ + 1699437385.781, + "238600000" + ], + [ + 1699437386.781, + "238600000" + ], + [ + 1699437387.781, + "238600000" + ], + [ + 1699437388.781, + "238600000" + ], + [ + 1699437389.781, + "238600000" + ], + [ + 1699437390.781, + "238600000" + ], + [ + 1699437391.781, + "238600000" + ], + [ + 1699437392.781, + "238600000" + ], + [ + 1699437393.781, + "238600000" + ], + [ + 1699437394.781, + "238600000" + ], + [ + 1699437395.781, + "238600000" + ], + [ + 1699437396.781, + "238600000" + ], + [ + 1699437397.781, + "238600000" + ], + [ + 1699437398.781, + "238600000" + ], + [ + 1699437399.781, + "238600000" + ], + [ + 1699437400.781, + "238600000" + ], + [ + 1699437401.781, + "238600000" + ], + [ + 1699437402.781, + "238600000" + ], + [ + 1699437403.781, + "238600000" + ], + [ + 1699437404.781, + "238600000" + ], + [ + 1699437405.781, + "238600000" + ], + [ + 1699437406.781, + "238600000" + ], + [ + 1699437407.781, + "238600000" + ], + [ + 1699437408.781, + "238600000" + ], + [ + 1699437409.781, + "238600000" + ], + [ + 1699437410.781, + "239400000" + ], + [ + 1699437411.781, + "239400000" + ], + [ + 1699437412.781, + "239400000" + ], + [ + 1699437413.781, + "239400000" + ], + [ + 1699437414.781, + "239400000" + ], + [ + 1699437415.781, + "239400000" + ], + [ + 1699437416.781, + "239400000" + ], + [ + 1699437417.781, + "239400000" + ], + [ + 1699437418.781, + "239400000" + ], + [ + 1699437419.781, + "239400000" + ], + [ + 1699437420.781, + "239400000" + ], + [ + 1699437421.781, + "239400000" + ], + [ + 1699437422.781, + "239400000" + ], + [ + 1699437423.781, + "239400000" + ], + [ + 1699437424.781, + "239400000" + ], + [ + 1699437425.781, + "239400000" + ], + [ + 1699437426.781, + "239400000" + ], + [ + 1699437427.781, + "239400000" + ], + [ + 1699437428.781, + "239400000" + ], + [ + 1699437429.781, + "239400000" + ], + [ + 1699437430.781, + "239400000" + ], + [ + 1699437431.781, + "239400000" + ], + [ + 1699437432.781, + "239400000" + ], + [ + 1699437433.781, + "239400000" + ], + [ + 1699437434.781, + "239400000" + ], + [ + 1699437435.781, + "239400000" + ], + [ + 1699437436.781, + "239400000" + ], + [ + 1699437437.781, + "239400000" + ], + [ + 1699437438.781, + "239400000" + ], + [ + 1699437439.781, + "239400000" + ], + [ + 1699437440.781, + "239400000" + ], + [ + 1699437441.781, + "239400000" + ], + [ + 1699437442.781, + "239400000" + ], + [ + 1699437443.781, + "239400000" + ], + [ + 1699437444.781, + "239400000" + ], + [ + 1699437445.781, + "239400000" + ], + [ + 1699437446.781, + "239400000" + ], + [ + 1699437447.781, + "239400000" + ], + [ + 1699437448.781, + "239400000" + ], + [ + 1699437449.781, + "239400000" + ], + [ + 1699437450.781, + "239400000" + ], + [ + 1699437451.781, + "239400000" + ], + [ + 1699437452.781, + "239400000" + ], + [ + 1699437453.781, + "239400000" + ], + [ + 1699437454.781, + "239400000" + ], + [ + 1699437455.781, + "239400000" + ], + [ + 1699437456.781, + "239400000" + ], + [ + 1699437457.781, + "239400000" + ], + [ + 1699437458.781, + "239400000" + ], + [ + 1699437459.781, + "239400000" + ], + [ + 1699437460.781, + "239400000" + ], + [ + 1699437461.781, + "239400000" + ], + [ + 1699437462.781, + "239400000" + ], + [ + 1699437463.781, + "239400000" + ], + [ + 1699437464.781, + "239400000" + ], + [ + 1699437465.781, + "239400000" + ], + [ + 1699437466.781, + "239400000" + ], + [ + 1699437467.781, + "239400000" + ], + [ + 1699437468.781, + "239400000" + ], + [ + 1699437469.781, + "239400000" + ], + [ + 1699437470.781, + "241000000" + ], + [ + 1699437471.781, + "241000000" + ], + [ + 1699437472.781, + "241000000" + ], + [ + 1699437473.781, + "241000000" + ], + [ + 1699437474.781, + "241000000" + ], + [ + 1699437475.781, + "241000000" + ], + [ + 1699437476.781, + "241000000" + ], + [ + 1699437477.781, + "241000000" + ], + [ + 1699437478.781, + "241000000" + ], + [ + 1699437479.781, + "241000000" + ], + [ + 1699437480.781, + "241000000" + ], + [ + 1699437481.781, + "241000000" + ], + [ + 1699437482.781, + "241000000" + ], + [ + 1699437483.781, + "241000000" + ], + [ + 1699437484.781, + "241000000" + ], + [ + 1699437485.781, + "241000000" + ], + [ + 1699437486.781, + "241000000" + ], + [ + 1699437487.781, + "241000000" + ], + [ + 1699437488.781, + "241000000" + ], + [ + 1699437489.781, + "241000000" + ], + [ + 1699437490.781, + "241000000" + ], + [ + 1699437491.781, + "241000000" + ], + [ + 1699437492.781, + "241000000" + ], + [ + 1699437493.781, + "241000000" + ], + [ + 1699437494.781, + "241000000" + ], + [ + 1699437495.781, + "241000000" + ], + [ + 1699437496.781, + "241000000" + ], + [ + 1699437497.781, + "241000000" + ], + [ + 1699437498.781, + "241000000" + ], + [ + 1699437499.781, + "241000000" + ], + [ + 1699437500.781, + "241000000" + ], + [ + 1699437501.781, + "241000000" + ], + [ + 1699437502.781, + "241000000" + ], + [ + 1699437503.781, + "241000000" + ], + [ + 1699437504.781, + "241000000" + ], + [ + 1699437505.781, + "241000000" + ], + [ + 1699437506.781, + "241000000" + ], + [ + 1699437507.781, + "241000000" + ], + [ + 1699437508.781, + "241000000" + ], + [ + 1699437509.781, + "241000000" + ], + [ + 1699437510.781, + "241000000" + ], + [ + 1699437511.781, + "241000000" + ], + [ + 1699437512.781, + "241000000" + ], + [ + 1699437513.781, + "241000000" + ], + [ + 1699437514.781, + "241000000" + ], + [ + 1699437515.781, + "241000000" + ], + [ + 1699437516.781, + "241000000" + ], + [ + 1699437517.781, + "241000000" + ], + [ + 1699437518.781, + "241000000" + ], + [ + 1699437519.781, + "241000000" + ], + [ + 1699437520.781, + "241000000" + ], + [ + 1699437521.781, + "241000000" + ], + [ + 1699437522.781, + "241000000" + ], + [ + 1699437523.781, + "241000000" + ], + [ + 1699437524.781, + "241000000" + ], + [ + 1699437525.781, + "241000000" + ], + [ + 1699437526.781, + "241000000" + ], + [ + 1699437527.781, + "241000000" + ], + [ + 1699437528.781, + "241000000" + ], + [ + 1699437529.781, + "241000000" + ], + [ + 1699437530.781, + "242400000" + ], + [ + 1699437531.781, + "242400000" + ], + [ + 1699437532.781, + "242400000" + ], + [ + 1699437533.781, + "242400000" + ], + [ + 1699437534.781, + "242400000" + ], + [ + 1699437535.781, + "242400000" + ], + [ + 1699437536.781, + "242400000" + ], + [ + 1699437537.781, + "242400000" + ], + [ + 1699437538.781, + "242400000" + ], + [ + 1699437539.781, + "242400000" + ], + [ + 1699437540.781, + "242400000" + ], + [ + 1699437541.781, + "242400000" + ], + [ + 1699437542.781, + "242400000" + ], + [ + 1699437543.781, + "242400000" + ], + [ + 1699437544.781, + "242400000" + ], + [ + 1699437545.781, + "242400000" + ], + [ + 1699437546.781, + "242400000" + ], + [ + 1699437547.781, + "242400000" + ], + [ + 1699437548.781, + "242400000" + ], + [ + 1699437549.781, + "242400000" + ], + [ + 1699437550.781, + "242400000" + ], + [ + 1699437551.781, + "242400000" + ], + [ + 1699437552.781, + "242400000" + ], + [ + 1699437553.781, + "242400000" + ], + [ + 1699437554.781, + "242400000" + ], + [ + 1699437555.781, + "242400000" + ], + [ + 1699437556.781, + "242400000" + ], + [ + 1699437557.781, + "242400000" + ], + [ + 1699437558.781, + "242400000" + ], + [ + 1699437559.781, + "242400000" + ], + [ + 1699437560.781, + "242400000" + ], + [ + 1699437561.781, + "242400000" + ], + [ + 1699437562.781, + "242400000" + ], + [ + 1699437563.781, + "242400000" + ], + [ + 1699437564.781, + "242400000" + ], + [ + 1699437565.781, + "242400000" + ], + [ + 1699437566.781, + "242400000" + ], + [ + 1699437567.781, + "242400000" + ], + [ + 1699437568.781, + "242400000" + ], + [ + 1699437569.781, + "242400000" + ], + [ + 1699437570.781, + "242400000" + ], + [ + 1699437571.781, + "242400000" + ], + [ + 1699437572.781, + "242400000" + ], + [ + 1699437573.781, + "242400000" + ], + [ + 1699437574.781, + "242400000" + ], + [ + 1699437575.781, + "242400000" + ], + [ + 1699437576.781, + "242400000" + ], + [ + 1699437577.781, + "242400000" + ], + [ + 1699437578.781, + "242400000" + ], + [ + 1699437579.781, + "242400000" + ], + [ + 1699437580.781, + "242400000" + ], + [ + 1699437581.781, + "242400000" + ], + [ + 1699437582.781, + "242400000" + ], + [ + 1699437583.781, + "242400000" + ], + [ + 1699437584.781, + "242400000" + ], + [ + 1699437585.781, + "242400000" + ], + [ + 1699437586.781, + "242400000" + ], + [ + 1699437587.781, + "242400000" + ], + [ + 1699437588.781, + "242400000" + ], + [ + 1699437589.781, + "242400000" + ], + [ + 1699437590.781, + "243400000" + ], + [ + 1699437591.781, + "243400000" + ], + [ + 1699437592.781, + "243400000" + ], + [ + 1699437593.781, + "243400000" + ], + [ + 1699437594.781, + "243400000" + ], + [ + 1699437595.781, + "243400000" + ], + [ + 1699437596.781, + "243400000" + ], + [ + 1699437597.781, + "243400000" + ], + [ + 1699437598.781, + "243400000" + ], + [ + 1699437599.781, + "243400000" + ], + [ + 1699437600.781, + "243400000" + ], + [ + 1699437601.781, + "243400000" + ], + [ + 1699437602.781, + "243400000" + ], + [ + 1699437603.781, + "243400000" + ], + [ + 1699437604.781, + "243400000" + ], + [ + 1699437605.781, + "243400000" + ], + [ + 1699437606.781, + "243400000" + ], + [ + 1699437607.781, + "243400000" + ], + [ + 1699437608.781, + "243400000" + ], + [ + 1699437609.781, + "243400000" + ], + [ + 1699437610.781, + "243400000" + ], + [ + 1699437611.781, + "243400000" + ], + [ + 1699437612.781, + "243400000" + ], + [ + 1699437613.781, + "243400000" + ], + [ + 1699437614.781, + "243400000" + ], + [ + 1699437615.781, + "243400000" + ], + [ + 1699437616.781, + "243400000" + ], + [ + 1699437617.781, + "243400000" + ], + [ + 1699437618.781, + "243400000" + ], + [ + 1699437619.781, + "243400000" + ], + [ + 1699437620.781, + "243400000" + ], + [ + 1699437621.781, + "243400000" + ], + [ + 1699437622.781, + "243400000" + ], + [ + 1699437623.781, + "243400000" + ], + [ + 1699437624.781, + "243400000" + ], + [ + 1699437625.781, + "243400000" + ], + [ + 1699437626.781, + "243400000" + ], + [ + 1699437627.781, + "243400000" + ], + [ + 1699437628.781, + "243400000" + ], + [ + 1699437629.781, + "243400000" + ], + [ + 1699437630.781, + "243400000" + ], + [ + 1699437631.781, + "243400000" + ], + [ + 1699437632.781, + "243400000" + ], + [ + 1699437633.781, + "243400000" + ], + [ + 1699437634.781, + "243400000" + ], + [ + 1699437635.781, + "243400000" + ], + [ + 1699437636.781, + "243400000" + ], + [ + 1699437637.781, + "243400000" + ], + [ + 1699437638.781, + "243400000" + ], + [ + 1699437639.781, + "243400000" + ], + [ + 1699437640.781, + "243400000" + ], + [ + 1699437641.781, + "243400000" + ], + [ + 1699437642.781, + "243400000" + ], + [ + 1699437643.781, + "243400000" + ], + [ + 1699437644.781, + "243400000" + ], + [ + 1699437645.781, + "243400000" + ], + [ + 1699437646.781, + "243400000" + ], + [ + 1699437647.781, + "243400000" + ], + [ + 1699437648.781, + "243400000" + ], + [ + 1699437649.781, + "243400000" + ], + [ + 1699437650.781, + "244200000" + ], + [ + 1699437651.781, + "244200000" + ], + [ + 1699437652.781, + "244200000" + ], + [ + 1699437653.781, + "244200000" + ], + [ + 1699437654.781, + "244200000" + ], + [ + 1699437655.781, + "244200000" + ], + [ + 1699437656.781, + "244200000" + ], + [ + 1699437657.781, + "244200000" + ], + [ + 1699437658.781, + "244200000" + ], + [ + 1699437659.781, + "244200000" + ], + [ + 1699437660.781, + "244200000" + ], + [ + 1699437661.781, + "244200000" + ], + [ + 1699437662.781, + "244200000" + ], + [ + 1699437663.781, + "244200000" + ], + [ + 1699437664.781, + "244200000" + ], + [ + 1699437665.781, + "244200000" + ], + [ + 1699437666.781, + "244200000" + ], + [ + 1699437667.781, + "244200000" + ], + [ + 1699437668.781, + "244200000" + ], + [ + 1699437669.781, + "244200000" + ], + [ + 1699437670.781, + "244200000" + ], + [ + 1699437671.781, + "244200000" + ], + [ + 1699437672.781, + "244200000" + ], + [ + 1699437673.781, + "244200000" + ], + [ + 1699437674.781, + "244200000" + ], + [ + 1699437675.781, + "244200000" + ], + [ + 1699437676.781, + "244200000" + ], + [ + 1699437677.781, + "244200000" + ], + [ + 1699437678.781, + "244200000" + ], + [ + 1699437679.781, + "244200000" + ], + [ + 1699437680.781, + "244200000" + ], + [ + 1699437681.781, + "244200000" + ], + [ + 1699437682.781, + "244200000" + ], + [ + 1699437683.781, + "244200000" + ], + [ + 1699437684.781, + "244200000" + ], + [ + 1699437685.781, + "244200000" + ], + [ + 1699437686.781, + "244200000" + ], + [ + 1699437687.781, + "244200000" + ], + [ + 1699437688.781, + "244200000" + ], + [ + 1699437689.781, + "244200000" + ], + [ + 1699437690.781, + "244200000" + ], + [ + 1699437691.781, + "244200000" + ], + [ + 1699437692.781, + "244200000" + ], + [ + 1699437693.781, + "244200000" + ], + [ + 1699437694.781, + "244200000" + ], + [ + 1699437695.781, + "244200000" + ], + [ + 1699437696.781, + "244200000" + ], + [ + 1699437697.781, + "244200000" + ], + [ + 1699437698.781, + "244200000" + ], + [ + 1699437699.781, + "244200000" + ], + [ + 1699437700.781, + "244200000" + ], + [ + 1699437701.781, + "244200000" + ], + [ + 1699437702.781, + "244200000" + ], + [ + 1699437703.781, + "244200000" + ], + [ + 1699437704.781, + "244200000" + ], + [ + 1699437705.781, + "244200000" + ], + [ + 1699437706.781, + "244200000" + ], + [ + 1699437707.781, + "244200000" + ], + [ + 1699437708.781, + "244200000" + ], + [ + 1699437709.781, + "244200000" + ], + [ + 1699437710.781, + "244800000" + ], + [ + 1699437711.781, + "244800000" + ], + [ + 1699437712.781, + "244800000" + ], + [ + 1699437713.781, + "244800000" + ], + [ + 1699437714.781, + "244800000" + ], + [ + 1699437715.781, + "244800000" + ], + [ + 1699437716.781, + "244800000" + ], + [ + 1699437717.781, + "244800000" + ], + [ + 1699437718.781, + "244800000" + ], + [ + 1699437719.781, + "244800000" + ], + [ + 1699437720.781, + "244800000" + ], + [ + 1699437721.781, + "244800000" + ], + [ + 1699437722.781, + "244800000" + ], + [ + 1699437723.781, + "244800000" + ], + [ + 1699437724.781, + "244800000" + ], + [ + 1699437725.781, + "244800000" + ], + [ + 1699437726.781, + "244800000" + ], + [ + 1699437727.781, + "244800000" + ], + [ + 1699437728.781, + "244800000" + ], + [ + 1699437729.781, + "244800000" + ], + [ + 1699437730.781, + "244800000" + ], + [ + 1699437731.781, + "244800000" + ], + [ + 1699437732.781, + "244800000" + ], + [ + 1699437733.781, + "244800000" + ], + [ + 1699437734.781, + "244800000" + ], + [ + 1699437735.781, + "244800000" + ], + [ + 1699437736.781, + "244800000" + ], + [ + 1699437737.781, + "244800000" + ], + [ + 1699437738.781, + "244800000" + ], + [ + 1699437739.781, + "244800000" + ], + [ + 1699437740.781, + "244800000" + ], + [ + 1699437741.781, + "244800000" + ], + [ + 1699437742.781, + "244800000" + ], + [ + 1699437743.781, + "244800000" + ], + [ + 1699437744.781, + "244800000" + ], + [ + 1699437745.781, + "244800000" + ], + [ + 1699437746.781, + "244800000" + ], + [ + 1699437747.781, + "244800000" + ], + [ + 1699437748.781, + "244800000" + ], + [ + 1699437749.781, + "244800000" + ], + [ + 1699437750.781, + "244800000" + ], + [ + 1699437751.781, + "244800000" + ], + [ + 1699437752.781, + "244800000" + ], + [ + 1699437753.781, + "244800000" + ], + [ + 1699437754.781, + "244800000" + ], + [ + 1699437755.781, + "244800000" + ], + [ + 1699437756.781, + "244800000" + ], + [ + 1699437757.781, + "244800000" + ], + [ + 1699437758.781, + "244800000" + ], + [ + 1699437759.781, + "244800000" + ], + [ + 1699437760.781, + "244800000" + ], + [ + 1699437761.781, + "244800000" + ], + [ + 1699437762.781, + "244800000" + ], + [ + 1699437763.781, + "244800000" + ], + [ + 1699437764.781, + "244800000" + ], + [ + 1699437765.781, + "244800000" + ], + [ + 1699437766.781, + "244800000" + ], + [ + 1699437767.781, + "244800000" + ], + [ + 1699437768.781, + "244800000" + ], + [ + 1699437769.781, + "244800000" + ], + [ + 1699437770.781, + "245400000" + ], + [ + 1699437771.781, + "245400000" + ], + [ + 1699437772.781, + "245400000" + ], + [ + 1699437773.781, + "245400000" + ], + [ + 1699437774.781, + "245400000" + ], + [ + 1699437775.781, + "245400000" + ], + [ + 1699437776.781, + "245400000" + ], + [ + 1699437777.781, + "245400000" + ], + [ + 1699437778.781, + "245400000" + ], + [ + 1699437779.781, + "245400000" + ], + [ + 1699437780.781, + "245400000" + ], + [ + 1699437781.781, + "245400000" + ], + [ + 1699437782.781, + "245400000" + ], + [ + 1699437783.781, + "245400000" + ], + [ + 1699437784.781, + "245400000" + ], + [ + 1699437785.781, + "245400000" + ], + [ + 1699437786.781, + "245400000" + ], + [ + 1699437787.781, + "245400000" + ], + [ + 1699437788.781, + "245400000" + ], + [ + 1699437789.781, + "245400000" + ], + [ + 1699437790.781, + "245400000" + ], + [ + 1699437791.781, + "245400000" + ], + [ + 1699437792.781, + "245400000" + ], + [ + 1699437793.781, + "245400000" + ], + [ + 1699437794.781, + "245400000" + ], + [ + 1699437795.781, + "245400000" + ], + [ + 1699437796.781, + "245400000" + ], + [ + 1699437797.781, + "245400000" + ], + [ + 1699437798.781, + "245400000" + ], + [ + 1699437799.781, + "245400000" + ], + [ + 1699437800.781, + "245400000" + ], + [ + 1699437801.781, + "245400000" + ], + [ + 1699437802.781, + "245400000" + ], + [ + 1699437803.781, + "245400000" + ], + [ + 1699437804.781, + "245400000" + ], + [ + 1699437805.781, + "245400000" + ], + [ + 1699437806.781, + "245400000" + ], + [ + 1699437807.781, + "245400000" + ], + [ + 1699437808.781, + "245400000" + ], + [ + 1699437809.781, + "245400000" + ], + [ + 1699437810.781, + "245400000" + ], + [ + 1699437811.781, + "245400000" + ], + [ + 1699437812.781, + "245400000" + ], + [ + 1699437813.781, + "245400000" + ], + [ + 1699437814.781, + "245400000" + ], + [ + 1699437815.781, + "245400000" + ], + [ + 1699437816.781, + "245400000" + ], + [ + 1699437817.781, + "245400000" + ], + [ + 1699437818.781, + "245400000" + ], + [ + 1699437819.781, + "245400000" + ], + [ + 1699437820.781, + "245400000" + ], + [ + 1699437821.781, + "245400000" + ], + [ + 1699437822.781, + "245400000" + ], + [ + 1699437823.781, + "245400000" + ], + [ + 1699437824.781, + "245400000" + ], + [ + 1699437825.781, + "245400000" + ], + [ + 1699437826.781, + "245400000" + ], + [ + 1699437827.781, + "245400000" + ], + [ + 1699437828.781, + "245400000" + ], + [ + 1699437829.781, + "245400000" + ], + [ + 1699437830.781, + "246400000" + ], + [ + 1699437831.781, + "246400000" + ], + [ + 1699437832.781, + "246400000" + ], + [ + 1699437833.781, + "246400000" + ], + [ + 1699437834.781, + "246400000" + ], + [ + 1699437835.781, + "246400000" + ], + [ + 1699437836.781, + "246400000" + ], + [ + 1699437837.781, + "246400000" + ], + [ + 1699437838.781, + "246400000" + ], + [ + 1699437839.781, + "246400000" + ], + [ + 1699437840.781, + "246400000" + ], + [ + 1699437841.781, + "246400000" + ], + [ + 1699437842.781, + "246400000" + ], + [ + 1699437843.781, + "246400000" + ], + [ + 1699437844.781, + "246400000" + ], + [ + 1699437845.781, + "246400000" + ], + [ + 1699437846.781, + "246400000" + ], + [ + 1699437847.781, + "246400000" + ], + [ + 1699437848.781, + "246400000" + ], + [ + 1699437849.781, + "246400000" + ], + [ + 1699437850.781, + "246400000" + ], + [ + 1699437851.781, + "246400000" + ], + [ + 1699437852.781, + "246400000" + ], + [ + 1699437853.781, + "246400000" + ], + [ + 1699437854.781, + "246400000" + ], + [ + 1699437855.781, + "246400000" + ], + [ + 1699437856.781, + "246400000" + ], + [ + 1699437857.781, + "246400000" + ], + [ + 1699437858.781, + "246400000" + ], + [ + 1699437859.781, + "246400000" + ], + [ + 1699437860.781, + "246400000" + ], + [ + 1699437861.781, + "246400000" + ], + [ + 1699437862.781, + "246400000" + ], + [ + 1699437863.781, + "246400000" + ], + [ + 1699437864.781, + "246400000" + ], + [ + 1699437865.781, + "246400000" + ], + [ + 1699437866.781, + "246400000" + ], + [ + 1699437867.781, + "246400000" + ], + [ + 1699437868.781, + "246400000" + ], + [ + 1699437869.781, + "246400000" + ], + [ + 1699437870.781, + "246400000" + ], + [ + 1699437871.781, + "246400000" + ], + [ + 1699437872.781, + "246400000" + ], + [ + 1699437873.781, + "246400000" + ], + [ + 1699437874.781, + "246400000" + ], + [ + 1699437875.781, + "246400000" + ], + [ + 1699437876.781, + "246400000" + ], + [ + 1699437877.781, + "246400000" + ], + [ + 1699437878.781, + "246400000" + ], + [ + 1699437879.781, + "246400000" + ], + [ + 1699437880.781, + "246400000" + ], + [ + 1699437881.781, + "246400000" + ], + [ + 1699437882.781, + "246400000" + ], + [ + 1699437883.781, + "246400000" + ], + [ + 1699437884.781, + "246400000" + ], + [ + 1699437885.781, + "246400000" + ], + [ + 1699437886.781, + "246400000" + ], + [ + 1699437887.781, + "246400000" + ], + [ + 1699437888.781, + "246400000" + ], + [ + 1699437889.781, + "246400000" + ], + [ + 1699437890.781, + "247800000" + ], + [ + 1699437891.781, + "247800000" + ], + [ + 1699437892.781, + "247800000" + ], + [ + 1699437893.781, + "247800000" + ], + [ + 1699437894.781, + "247800000" + ], + [ + 1699437895.781, + "247800000" + ], + [ + 1699437896.781, + "247800000" + ], + [ + 1699437897.781, + "247800000" + ], + [ + 1699437898.781, + "247800000" + ], + [ + 1699437899.781, + "247800000" + ], + [ + 1699437900.781, + "247800000" + ], + [ + 1699437901.781, + "247800000" + ], + [ + 1699437902.781, + "247800000" + ], + [ + 1699437903.781, + "247800000" + ], + [ + 1699437904.781, + "247800000" + ], + [ + 1699437905.781, + "247800000" + ], + [ + 1699437906.781, + "247800000" + ], + [ + 1699437907.781, + "247800000" + ], + [ + 1699437908.781, + "247800000" + ], + [ + 1699437909.781, + "247800000" + ], + [ + 1699437910.781, + "247800000" + ], + [ + 1699437911.781, + "247800000" + ], + [ + 1699437912.781, + "247800000" + ], + [ + 1699437913.781, + "247800000" + ], + [ + 1699437914.781, + "247800000" + ], + [ + 1699437915.781, + "247800000" + ], + [ + 1699437916.781, + "247800000" + ], + [ + 1699437917.781, + "247800000" + ], + [ + 1699437918.781, + "247800000" + ], + [ + 1699437919.781, + "247800000" + ], + [ + 1699437920.781, + "247800000" + ], + [ + 1699437921.781, + "247800000" + ], + [ + 1699437922.781, + "247800000" + ], + [ + 1699437923.781, + "247800000" + ], + [ + 1699437924.781, + "247800000" + ], + [ + 1699437925.781, + "247800000" + ], + [ + 1699437926.781, + "247800000" + ], + [ + 1699437927.781, + "247800000" + ], + [ + 1699437928.781, + "247800000" + ], + [ + 1699437929.781, + "247800000" + ], + [ + 1699437930.781, + "247800000" + ], + [ + 1699437931.781, + "247800000" + ], + [ + 1699437932.781, + "247800000" + ], + [ + 1699437933.781, + "247800000" + ], + [ + 1699437934.781, + "247800000" + ], + [ + 1699437935.781, + "247800000" + ], + [ + 1699437936.781, + "247800000" + ], + [ + 1699437937.781, + "247800000" + ], + [ + 1699437938.781, + "247800000" + ], + [ + 1699437939.781, + "247800000" + ], + [ + 1699437940.781, + "247800000" + ], + [ + 1699437941.781, + "247800000" + ], + [ + 1699437942.781, + "247800000" + ], + [ + 1699437943.781, + "247800000" + ], + [ + 1699437944.781, + "247800000" + ], + [ + 1699437945.781, + "247800000" + ], + [ + 1699437946.781, + "247800000" + ], + [ + 1699437947.781, + "247800000" + ], + [ + 1699437948.781, + "247800000" + ], + [ + 1699437949.781, + "247800000" + ], + [ + 1699437950.781, + "248800000" + ], + [ + 1699437951.781, + "248800000" + ], + [ + 1699437952.781, + "248800000" + ], + [ + 1699437953.781, + "248800000" + ], + [ + 1699437954.781, + "248800000" + ], + [ + 1699437955.781, + "248800000" + ], + [ + 1699437956.781, + "248800000" + ], + [ + 1699437957.781, + "248800000" + ], + [ + 1699437958.781, + "248800000" + ], + [ + 1699437959.781, + "248800000" + ], + [ + 1699437960.781, + "248800000" + ], + [ + 1699437961.781, + "248800000" + ], + [ + 1699437962.781, + "248800000" + ], + [ + 1699437963.781, + "248800000" + ], + [ + 1699437964.781, + "248800000" + ], + [ + 1699437965.781, + "248800000" + ], + [ + 1699437966.781, + "248800000" + ], + [ + 1699437967.781, + "248800000" + ], + [ + 1699437968.781, + "248800000" + ], + [ + 1699437969.781, + "248800000" + ], + [ + 1699437970.781, + "248800000" + ], + [ + 1699437971.781, + "248800000" + ], + [ + 1699437972.781, + "248800000" + ], + [ + 1699437973.781, + "248800000" + ], + [ + 1699437974.781, + "248800000" + ], + [ + 1699437975.781, + "248800000" + ], + [ + 1699437976.781, + "248800000" + ], + [ + 1699437977.781, + "248800000" + ], + [ + 1699437978.781, + "248800000" + ], + [ + 1699437979.781, + "248800000" + ], + [ + 1699437980.781, + "248800000" + ], + [ + 1699437981.781, + "248800000" + ], + [ + 1699437982.781, + "248800000" + ], + [ + 1699437983.781, + "248800000" + ], + [ + 1699437984.781, + "248800000" + ], + [ + 1699437985.781, + "248800000" + ], + [ + 1699437986.781, + "248800000" + ], + [ + 1699437987.781, + "248800000" + ], + [ + 1699437988.781, + "248800000" + ], + [ + 1699437989.781, + "248800000" + ], + [ + 1699437990.781, + "248800000" + ], + [ + 1699437991.781, + "248800000" + ], + [ + 1699437992.781, + "248800000" + ], + [ + 1699437993.781, + "248800000" + ], + [ + 1699437994.781, + "248800000" + ], + [ + 1699437995.781, + "248800000" + ], + [ + 1699437996.781, + "248800000" + ], + [ + 1699437997.781, + "248800000" + ], + [ + 1699437998.781, + "248800000" + ], + [ + 1699437999.781, + "248800000" + ], + [ + 1699438000.781, + "248800000" + ], + [ + 1699438001.781, + "248800000" + ], + [ + 1699438002.781, + "248800000" + ], + [ + 1699438003.781, + "248800000" + ], + [ + 1699438004.781, + "248800000" + ], + [ + 1699438005.781, + "248800000" + ], + [ + 1699438006.781, + "248800000" + ], + [ + 1699438007.781, + "248800000" + ], + [ + 1699438008.781, + "248800000" + ], + [ + 1699438009.781, + "248800000" + ], + [ + 1699438010.781, + "248800000" + ], + [ + 1699438011.781, + "248800000" + ], + [ + 1699438012.781, + "248800000" + ], + [ + 1699438013.781, + "248800000" + ], + [ + 1699438014.781, + "248800000" + ], + [ + 1699438015.781, + "248800000" + ], + [ + 1699438016.781, + "248800000" + ], + [ + 1699438017.781, + "248800000" + ], + [ + 1699438018.781, + "248800000" + ], + [ + 1699438019.781, + "248800000" + ], + [ + 1699438020.781, + "248800000" + ], + [ + 1699438021.781, + "248800000" + ], + [ + 1699438022.781, + "248800000" + ], + [ + 1699438023.781, + "248800000" + ], + [ + 1699438024.781, + "248800000" + ], + [ + 1699438025.781, + "248800000" + ], + [ + 1699438026.781, + "248800000" + ], + [ + 1699438027.781, + "248800000" + ], + [ + 1699438028.781, + "248800000" + ], + [ + 1699438029.781, + "248800000" + ], + [ + 1699438030.781, + "248800000" + ], + [ + 1699438031.781, + "248800000" + ], + [ + 1699438032.781, + "248800000" + ], + [ + 1699438033.781, + "248800000" + ], + [ + 1699438034.781, + "248800000" + ], + [ + 1699438035.781, + "248800000" + ], + [ + 1699438036.781, + "248800000" + ], + [ + 1699438037.781, + "248800000" + ], + [ + 1699438038.781, + "248800000" + ], + [ + 1699438039.781, + "248800000" + ], + [ + 1699438040.781, + "248800000" + ], + [ + 1699438041.781, + "248800000" + ], + [ + 1699438042.781, + "248800000" + ], + [ + 1699438043.781, + "248800000" + ], + [ + 1699438044.781, + "248800000" + ], + [ + 1699438045.781, + "248800000" + ], + [ + 1699438046.781, + "248800000" + ], + [ + 1699438047.781, + "248800000" + ], + [ + 1699438048.781, + "248800000" + ], + [ + 1699438049.781, + "248800000" + ], + [ + 1699438050.781, + "248800000" + ], + [ + 1699438051.781, + "248800000" + ], + [ + 1699438052.781, + "248800000" + ], + [ + 1699438053.781, + "248800000" + ], + [ + 1699438054.781, + "248800000" + ], + [ + 1699438055.781, + "248800000" + ], + [ + 1699438056.781, + "248800000" + ], + [ + 1699438057.781, + "248800000" + ], + [ + 1699438058.781, + "248800000" + ], + [ + 1699438059.781, + "248800000" + ], + [ + 1699438060.781, + "248800000" + ], + [ + 1699438061.781, + "248800000" + ], + [ + 1699438062.781, + "248800000" + ], + [ + 1699438063.781, + "248800000" + ], + [ + 1699438064.781, + "248800000" + ], + [ + 1699438065.781, + "248800000" + ], + [ + 1699438066.781, + "248800000" + ], + [ + 1699438067.781, + "248800000" + ], + [ + 1699438068.781, + "248800000" + ], + [ + 1699438069.781, + "248800000" + ], + [ + 1699438070.781, + "249800000" + ], + [ + 1699438071.781, + "249800000" + ], + [ + 1699438072.781, + "249800000" + ], + [ + 1699438073.781, + "249800000" + ], + [ + 1699438074.781, + "249800000" + ], + [ + 1699438075.781, + "249800000" + ], + [ + 1699438076.781, + "249800000" + ], + [ + 1699438077.781, + "249800000" + ], + [ + 1699438078.781, + "249800000" + ], + [ + 1699438079.781, + "249800000" + ], + [ + 1699438080.781, + "249800000" + ], + [ + 1699438081.781, + "249800000" + ], + [ + 1699438082.781, + "249800000" + ], + [ + 1699438083.781, + "249800000" + ], + [ + 1699438084.781, + "249800000" + ], + [ + 1699438085.781, + "249800000" + ], + [ + 1699438086.781, + "249800000" + ], + [ + 1699438087.781, + "249800000" + ], + [ + 1699438088.781, + "249800000" + ], + [ + 1699438089.781, + "249800000" + ], + [ + 1699438090.781, + "249800000" + ], + [ + 1699438091.781, + "249800000" + ], + [ + 1699438092.781, + "249800000" + ], + [ + 1699438093.781, + "249800000" + ], + [ + 1699438094.781, + "249800000" + ], + [ + 1699438095.781, + "249800000" + ], + [ + 1699438096.781, + "249800000" + ], + [ + 1699438097.781, + "249800000" + ], + [ + 1699438098.781, + "249800000" + ], + [ + 1699438099.781, + "249800000" + ], + [ + 1699438100.781, + "249800000" + ], + [ + 1699438101.781, + "249800000" + ], + [ + 1699438102.781, + "249800000" + ], + [ + 1699438103.781, + "249800000" + ], + [ + 1699438104.781, + "249800000" + ], + [ + 1699438105.781, + "249800000" + ], + [ + 1699438106.781, + "249800000" + ], + [ + 1699438107.781, + "249800000" + ], + [ + 1699438108.781, + "249800000" + ], + [ + 1699438109.781, + "249800000" + ], + [ + 1699438110.781, + "249800000" + ], + [ + 1699438111.781, + "249800000" + ], + [ + 1699438112.781, + "249800000" + ], + [ + 1699438113.781, + "249800000" + ], + [ + 1699438114.781, + "249800000" + ], + [ + 1699438115.781, + "249800000" + ], + [ + 1699438116.781, + "249800000" + ], + [ + 1699438117.781, + "249800000" + ], + [ + 1699438118.781, + "249800000" + ], + [ + 1699438119.781, + "249800000" + ], + [ + 1699438120.781, + "249800000" + ], + [ + 1699438121.781, + "249800000" + ], + [ + 1699438122.781, + "249800000" + ], + [ + 1699438123.781, + "249800000" + ], + [ + 1699438124.781, + "249800000" + ], + [ + 1699438125.781, + "249800000" + ], + [ + 1699438126.781, + "249800000" + ], + [ + 1699438127.781, + "249800000" + ], + [ + 1699438128.781, + "249800000" + ], + [ + 1699438129.781, + "249800000" + ], + [ + 1699438130.781, + "250600000" + ], + [ + 1699438131.781, + "250600000" + ], + [ + 1699438132.781, + "250600000" + ], + [ + 1699438133.781, + "250600000" + ], + [ + 1699438134.781, + "250600000" + ], + [ + 1699438135.781, + "250600000" + ], + [ + 1699438136.781, + "250600000" + ], + [ + 1699438137.781, + "250600000" + ], + [ + 1699438138.781, + "250600000" + ], + [ + 1699438139.781, + "250600000" + ], + [ + 1699438140.781, + "250600000" + ], + [ + 1699438141.781, + "250600000" + ], + [ + 1699438142.781, + "250600000" + ], + [ + 1699438143.781, + "250600000" + ], + [ + 1699438144.781, + "250600000" + ], + [ + 1699438145.781, + "250600000" + ], + [ + 1699438146.781, + "250600000" + ], + [ + 1699438147.781, + "250600000" + ], + [ + 1699438148.781, + "250600000" + ], + [ + 1699438149.781, + "250600000" + ], + [ + 1699438150.781, + "250600000" + ], + [ + 1699438151.781, + "250600000" + ], + [ + 1699438152.781, + "250600000" + ], + [ + 1699438153.781, + "250600000" + ], + [ + 1699438154.781, + "250600000" + ], + [ + 1699438155.781, + "250600000" + ], + [ + 1699438156.781, + "250600000" + ], + [ + 1699438157.781, + "250600000" + ], + [ + 1699438158.781, + "250600000" + ], + [ + 1699438159.781, + "250600000" + ], + [ + 1699438160.781, + "250600000" + ], + [ + 1699438161.781, + "250600000" + ], + [ + 1699438162.781, + "250600000" + ], + [ + 1699438163.781, + "250600000" + ], + [ + 1699438164.781, + "250600000" + ], + [ + 1699438165.781, + "250600000" + ], + [ + 1699438166.781, + "250600000" + ], + [ + 1699438167.781, + "250600000" + ], + [ + 1699438168.781, + "250600000" + ], + [ + 1699438169.781, + "250600000" + ], + [ + 1699438170.781, + "250600000" + ], + [ + 1699438171.781, + "250600000" + ], + [ + 1699438172.781, + "250600000" + ], + [ + 1699438173.781, + "250600000" + ], + [ + 1699438174.781, + "250600000" + ], + [ + 1699438175.781, + "250600000" + ], + [ + 1699438176.781, + "250600000" + ], + [ + 1699438177.781, + "250600000" + ], + [ + 1699438178.781, + "250600000" + ], + [ + 1699438179.781, + "250600000" + ], + [ + 1699438180.781, + "250600000" + ], + [ + 1699438181.781, + "250600000" + ], + [ + 1699438182.781, + "250600000" + ], + [ + 1699438183.781, + "250600000" + ], + [ + 1699438184.781, + "250600000" + ], + [ + 1699438185.781, + "250600000" + ], + [ + 1699438186.781, + "250600000" + ], + [ + 1699438187.781, + "250600000" + ], + [ + 1699438188.781, + "250600000" + ], + [ + 1699438189.781, + "250600000" + ], + [ + 1699438190.781, + "252200000" + ], + [ + 1699438191.781, + "252200000" + ], + [ + 1699438192.781, + "252200000" + ], + [ + 1699438193.781, + "252200000" + ], + [ + 1699438194.781, + "252200000" + ], + [ + 1699438195.781, + "252200000" + ], + [ + 1699438196.781, + "252200000" + ], + [ + 1699438197.781, + "252200000" + ], + [ + 1699438198.781, + "252200000" + ], + [ + 1699438199.781, + "252200000" + ], + [ + 1699438200.781, + "252200000" + ], + [ + 1699438201.781, + "252200000" + ], + [ + 1699438202.781, + "252200000" + ], + [ + 1699438203.781, + "252200000" + ], + [ + 1699438204.781, + "252200000" + ], + [ + 1699438205.781, + "252200000" + ], + [ + 1699438206.781, + "252200000" + ], + [ + 1699438207.781, + "252200000" + ], + [ + 1699438208.781, + "252200000" + ], + [ + 1699438209.781, + "252200000" + ], + [ + 1699438210.781, + "252200000" + ], + [ + 1699438211.781, + "252200000" + ], + [ + 1699438212.781, + "252200000" + ], + [ + 1699438213.781, + "252200000" + ], + [ + 1699438214.781, + "252200000" + ], + [ + 1699438215.781, + "252200000" + ], + [ + 1699438216.781, + "252200000" + ], + [ + 1699438217.781, + "252200000" + ], + [ + 1699438218.781, + "252200000" + ], + [ + 1699438219.781, + "252200000" + ], + [ + 1699438220.781, + "252200000" + ], + [ + 1699438221.781, + "252200000" + ], + [ + 1699438222.781, + "252200000" + ], + [ + 1699438223.781, + "252200000" + ], + [ + 1699438224.781, + "252200000" + ], + [ + 1699438225.781, + "252200000" + ], + [ + 1699438226.781, + "252200000" + ], + [ + 1699438227.781, + "252200000" + ], + [ + 1699438228.781, + "252200000" + ], + [ + 1699438229.781, + "252200000" + ], + [ + 1699438230.781, + "252200000" + ], + [ + 1699438231.781, + "252200000" + ], + [ + 1699438232.781, + "252200000" + ], + [ + 1699438233.781, + "252200000" + ], + [ + 1699438234.781, + "252200000" + ], + [ + 1699438235.781, + "252200000" + ], + [ + 1699438236.781, + "252200000" + ], + [ + 1699438237.781, + "252200000" + ], + [ + 1699438238.781, + "252200000" + ], + [ + 1699438239.781, + "252200000" + ], + [ + 1699438240.781, + "252200000" + ], + [ + 1699438241.781, + "252200000" + ], + [ + 1699438242.781, + "252200000" + ], + [ + 1699438243.781, + "252200000" + ], + [ + 1699438244.781, + "252200000" + ], + [ + 1699438245.781, + "252200000" + ], + [ + 1699438246.781, + "252200000" + ], + [ + 1699438247.781, + "252200000" + ], + [ + 1699438248.781, + "252200000" + ], + [ + 1699438249.781, + "252200000" + ], + [ + 1699438250.781, + "253600000" + ], + [ + 1699438251.781, + "253600000" + ], + [ + 1699438252.781, + "253600000" + ], + [ + 1699438253.781, + "253600000" + ], + [ + 1699438254.781, + "253600000" + ], + [ + 1699438255.781, + "253600000" + ], + [ + 1699438256.781, + "253600000" + ], + [ + 1699438257.781, + "253600000" + ], + [ + 1699438258.781, + "253600000" + ], + [ + 1699438259.781, + "253600000" + ], + [ + 1699438260.781, + "253600000" + ], + [ + 1699438261.781, + "253600000" + ], + [ + 1699438262.781, + "253600000" + ], + [ + 1699438263.781, + "253600000" + ], + [ + 1699438264.781, + "253600000" + ], + [ + 1699438265.781, + "253600000" + ], + [ + 1699438266.781, + "253600000" + ], + [ + 1699438267.781, + "253600000" + ], + [ + 1699438268.781, + "253600000" + ], + [ + 1699438269.781, + "253600000" + ], + [ + 1699438270.781, + "253600000" + ], + [ + 1699438271.781, + "253600000" + ], + [ + 1699438272.781, + "253600000" + ], + [ + 1699438273.781, + "253600000" + ], + [ + 1699438274.781, + "253600000" + ], + [ + 1699438275.781, + "253600000" + ], + [ + 1699438276.781, + "253600000" + ], + [ + 1699438277.781, + "253600000" + ], + [ + 1699438278.781, + "253600000" + ], + [ + 1699438279.781, + "253600000" + ], + [ + 1699438280.781, + "253600000" + ], + [ + 1699438281.781, + "253600000" + ], + [ + 1699438282.781, + "253600000" + ], + [ + 1699438283.781, + "253600000" + ], + [ + 1699438284.781, + "253600000" + ], + [ + 1699438285.781, + "253600000" + ], + [ + 1699438286.781, + "253600000" + ], + [ + 1699438287.781, + "253600000" + ], + [ + 1699438288.781, + "253600000" + ], + [ + 1699438289.781, + "253600000" + ], + [ + 1699438290.781, + "253600000" + ], + [ + 1699438291.781, + "253600000" + ], + [ + 1699438292.781, + "253600000" + ], + [ + 1699438293.781, + "253600000" + ], + [ + 1699438294.781, + "253600000" + ], + [ + 1699438295.781, + "253600000" + ], + [ + 1699438296.781, + "253600000" + ], + [ + 1699438297.781, + "253600000" + ], + [ + 1699438298.781, + "253600000" + ], + [ + 1699438299.781, + "253600000" + ], + [ + 1699438300.781, + "253600000" + ], + [ + 1699438301.781, + "253600000" + ], + [ + 1699438302.781, + "253600000" + ], + [ + 1699438303.781, + "253600000" + ], + [ + 1699438304.781, + "253600000" + ], + [ + 1699438305.781, + "253600000" + ], + [ + 1699438306.781, + "253600000" + ], + [ + 1699438307.781, + "253600000" + ], + [ + 1699438308.781, + "253600000" + ], + [ + 1699438309.781, + "253600000" + ], + [ + 1699438310.781, + "254600000" + ], + [ + 1699438311.781, + "254600000" + ], + [ + 1699438312.781, + "254600000" + ], + [ + 1699438313.781, + "254600000" + ], + [ + 1699438314.781, + "254600000" + ], + [ + 1699438315.781, + "254600000" + ], + [ + 1699438316.781, + "254600000" + ], + [ + 1699438317.781, + "254600000" + ], + [ + 1699438318.781, + "254600000" + ], + [ + 1699438319.781, + "254600000" + ], + [ + 1699438320.781, + "254600000" + ], + [ + 1699438321.781, + "254600000" + ], + [ + 1699438322.781, + "254600000" + ], + [ + 1699438323.781, + "254600000" + ], + [ + 1699438324.781, + "254600000" + ], + [ + 1699438325.781, + "254600000" + ], + [ + 1699438326.781, + "254600000" + ], + [ + 1699438327.781, + "254600000" + ], + [ + 1699438328.781, + "254600000" + ], + [ + 1699438329.781, + "254600000" + ], + [ + 1699438330.781, + "254600000" + ], + [ + 1699438331.781, + "254600000" + ], + [ + 1699438332.781, + "254600000" + ], + [ + 1699438333.781, + "254600000" + ], + [ + 1699438334.781, + "254600000" + ], + [ + 1699438335.781, + "254600000" + ], + [ + 1699438336.781, + "254600000" + ], + [ + 1699438337.781, + "254600000" + ], + [ + 1699438338.781, + "254600000" + ], + [ + 1699438339.781, + "254600000" + ], + [ + 1699438340.781, + "254600000" + ], + [ + 1699438341.781, + "254600000" + ], + [ + 1699438342.781, + "254600000" + ], + [ + 1699438343.781, + "254600000" + ], + [ + 1699438344.781, + "254600000" + ], + [ + 1699438345.781, + "254600000" + ], + [ + 1699438346.781, + "254600000" + ], + [ + 1699438347.781, + "254600000" + ], + [ + 1699438348.781, + "254600000" + ], + [ + 1699438349.781, + "254600000" + ], + [ + 1699438350.781, + "254600000" + ], + [ + 1699438351.781, + "254600000" + ], + [ + 1699438352.781, + "254600000" + ], + [ + 1699438353.781, + "254600000" + ], + [ + 1699438354.781, + "254600000" + ], + [ + 1699438355.781, + "254600000" + ], + [ + 1699438356.781, + "254600000" + ], + [ + 1699438357.781, + "254600000" + ], + [ + 1699438358.781, + "254600000" + ], + [ + 1699438359.781, + "254600000" + ], + [ + 1699438360.781, + "254600000" + ], + [ + 1699438361.781, + "254600000" + ], + [ + 1699438362.781, + "254600000" + ], + [ + 1699438363.781, + "254600000" + ], + [ + 1699438364.781, + "254600000" + ], + [ + 1699438365.781, + "254600000" + ], + [ + 1699438366.781, + "254600000" + ], + [ + 1699438367.781, + "254600000" + ], + [ + 1699438368.781, + "254600000" + ], + [ + 1699438369.781, + "254600000" + ], + [ + 1699438370.781, + "255000000" + ], + [ + 1699438371.781, + "255000000" + ], + [ + 1699438372.781, + "255000000" + ], + [ + 1699438373.781, + "255000000" + ], + [ + 1699438374.781, + "255000000" + ], + [ + 1699438375.781, + "255000000" + ], + [ + 1699438376.781, + "255000000" + ], + [ + 1699438377.781, + "255000000" + ], + [ + 1699438378.781, + "255000000" + ], + [ + 1699438379.781, + "255000000" + ], + [ + 1699438380.781, + "255000000" + ], + [ + 1699438381.781, + "255000000" + ], + [ + 1699438382.781, + "255000000" + ], + [ + 1699438383.781, + "255000000" + ], + [ + 1699438384.781, + "255000000" + ], + [ + 1699438385.781, + "255000000" + ], + [ + 1699438386.781, + "255000000" + ], + [ + 1699438387.781, + "255000000" + ], + [ + 1699438388.781, + "255000000" + ], + [ + 1699438389.781, + "255000000" + ], + [ + 1699438390.781, + "255000000" + ], + [ + 1699438391.781, + "255000000" + ], + [ + 1699438392.781, + "255000000" + ], + [ + 1699438393.781, + "255000000" + ], + [ + 1699438394.781, + "255000000" + ], + [ + 1699438395.781, + "255000000" + ], + [ + 1699438396.781, + "255000000" + ], + [ + 1699438397.781, + "255000000" + ], + [ + 1699438398.781, + "255000000" + ], + [ + 1699438399.781, + "255000000" + ], + [ + 1699438400.781, + "255000000" + ], + [ + 1699438401.781, + "255000000" + ], + [ + 1699438402.781, + "255000000" + ], + [ + 1699438403.781, + "255000000" + ], + [ + 1699438404.781, + "255000000" + ], + [ + 1699438405.781, + "255000000" + ], + [ + 1699438406.781, + "255000000" + ], + [ + 1699438407.781, + "255000000" + ], + [ + 1699438408.781, + "255000000" + ], + [ + 1699438409.781, + "255000000" + ], + [ + 1699438410.781, + "255000000" + ], + [ + 1699438411.781, + "255000000" + ], + [ + 1699438412.781, + "255000000" + ], + [ + 1699438413.781, + "255000000" + ], + [ + 1699438414.781, + "255000000" + ], + [ + 1699438415.781, + "255000000" + ], + [ + 1699438416.781, + "255000000" + ], + [ + 1699438417.781, + "255000000" + ], + [ + 1699438418.781, + "255000000" + ], + [ + 1699438419.781, + "255000000" + ], + [ + 1699438420.781, + "255000000" + ], + [ + 1699438421.781, + "255000000" + ], + [ + 1699438422.781, + "255000000" + ], + [ + 1699438423.781, + "255000000" + ], + [ + 1699438424.781, + "255000000" + ], + [ + 1699438425.781, + "255000000" + ], + [ + 1699438426.781, + "255000000" + ], + [ + 1699438427.781, + "255000000" + ], + [ + 1699438428.781, + "255000000" + ], + [ + 1699438429.781, + "255000000" + ], + [ + 1699438430.781, + "256000000" + ], + [ + 1699438431.781, + "256000000" + ], + [ + 1699438432.781, + "256000000" + ], + [ + 1699438433.781, + "256000000" + ], + [ + 1699438434.781, + "256000000" + ], + [ + 1699438435.781, + "256000000" + ], + [ + 1699438436.781, + "256000000" + ], + [ + 1699438437.781, + "256000000" + ], + [ + 1699438438.781, + "256000000" + ], + [ + 1699438439.781, + "256000000" + ], + [ + 1699438440.781, + "256000000" + ], + [ + 1699438441.781, + "256000000" + ], + [ + 1699438442.781, + "256000000" + ], + [ + 1699438443.781, + "256000000" + ], + [ + 1699438444.781, + "256000000" + ], + [ + 1699438445.781, + "256000000" + ], + [ + 1699438446.781, + "256000000" + ], + [ + 1699438447.781, + "256000000" + ], + [ + 1699438448.781, + "256000000" + ], + [ + 1699438449.781, + "256000000" + ], + [ + 1699438450.781, + "256000000" + ], + [ + 1699438451.781, + "256000000" + ], + [ + 1699438452.781, + "256000000" + ], + [ + 1699438453.781, + "256000000" + ], + [ + 1699438454.781, + "256000000" + ], + [ + 1699438455.781, + "256000000" + ], + [ + 1699438456.781, + "256000000" + ], + [ + 1699438457.781, + "256000000" + ], + [ + 1699438458.781, + "256000000" + ], + [ + 1699438459.781, + "256000000" + ], + [ + 1699438460.781, + "256000000" + ], + [ + 1699438461.781, + "256000000" + ], + [ + 1699438462.781, + "256000000" + ], + [ + 1699438463.781, + "256000000" + ], + [ + 1699438464.781, + "256000000" + ], + [ + 1699438465.781, + "256000000" + ], + [ + 1699438466.781, + "256000000" + ], + [ + 1699438467.781, + "256000000" + ], + [ + 1699438468.781, + "256000000" + ], + [ + 1699438469.781, + "256000000" + ], + [ + 1699438470.781, + "256000000" + ], + [ + 1699438471.781, + "256000000" + ], + [ + 1699438472.781, + "256000000" + ], + [ + 1699438473.781, + "256000000" + ], + [ + 1699438474.781, + "256000000" + ], + [ + 1699438475.781, + "256000000" + ], + [ + 1699438476.781, + "256000000" + ], + [ + 1699438477.781, + "256000000" + ], + [ + 1699438478.781, + "256000000" + ], + [ + 1699438479.781, + "256000000" + ], + [ + 1699438480.781, + "256000000" + ], + [ + 1699438481.781, + "256000000" + ], + [ + 1699438482.781, + "256000000" + ], + [ + 1699438483.781, + "256000000" + ], + [ + 1699438484.781, + "256000000" + ], + [ + 1699438485.781, + "256000000" + ], + [ + 1699438486.781, + "256000000" + ], + [ + 1699438487.781, + "256000000" + ], + [ + 1699438488.781, + "256000000" + ], + [ + 1699438489.781, + "256000000" + ], + [ + 1699438490.781, + "256000000" + ], + [ + 1699438491.781, + "256000000" + ], + [ + 1699438492.781, + "256000000" + ], + [ + 1699438493.781, + "256000000" + ], + [ + 1699438494.781, + "256000000" + ], + [ + 1699438495.781, + "256000000" + ], + [ + 1699438496.781, + "256000000" + ], + [ + 1699438497.781, + "256000000" + ], + [ + 1699438498.781, + "256000000" + ], + [ + 1699438499.781, + "256000000" + ], + [ + 1699438500.781, + "256000000" + ], + [ + 1699438501.781, + "256000000" + ], + [ + 1699438502.781, + "256000000" + ], + [ + 1699438503.781, + "256000000" + ], + [ + 1699438504.781, + "256000000" + ], + [ + 1699438505.781, + "256000000" + ], + [ + 1699438506.781, + "256000000" + ], + [ + 1699438507.781, + "256000000" + ], + [ + 1699438508.781, + "256000000" + ], + [ + 1699438509.781, + "256000000" + ], + [ + 1699438510.781, + "256000000" + ], + [ + 1699438511.781, + "256000000" + ], + [ + 1699438512.781, + "256000000" + ], + [ + 1699438513.781, + "256000000" + ], + [ + 1699438514.781, + "256000000" + ], + [ + 1699438515.781, + "256000000" + ], + [ + 1699438516.781, + "256000000" + ], + [ + 1699438517.781, + "256000000" + ], + [ + 1699438518.781, + "256000000" + ], + [ + 1699438519.781, + "256000000" + ], + [ + 1699438520.781, + "256000000" + ], + [ + 1699438521.781, + "256000000" + ], + [ + 1699438522.781, + "256000000" + ], + [ + 1699438523.781, + "256000000" + ], + [ + 1699438524.781, + "256000000" + ], + [ + 1699438525.781, + "256000000" + ], + [ + 1699438526.781, + "256000000" + ], + [ + 1699438527.781, + "256000000" + ], + [ + 1699438528.781, + "256000000" + ], + [ + 1699438529.781, + "256000000" + ], + [ + 1699438530.781, + "256000000" + ], + [ + 1699438531.781, + "256000000" + ], + [ + 1699438532.781, + "256000000" + ], + [ + 1699438533.781, + "256000000" + ], + [ + 1699438534.781, + "256000000" + ], + [ + 1699438535.781, + "256000000" + ], + [ + 1699438536.781, + "256000000" + ], + [ + 1699438537.781, + "256000000" + ], + [ + 1699438538.781, + "256000000" + ], + [ + 1699438539.781, + "256000000" + ], + [ + 1699438540.781, + "256000000" + ], + [ + 1699438541.781, + "256000000" + ], + [ + 1699438542.781, + "256000000" + ], + [ + 1699438543.781, + "256000000" + ], + [ + 1699438544.781, + "256000000" + ], + [ + 1699438545.781, + "256000000" + ], + [ + 1699438546.781, + "256000000" + ], + [ + 1699438547.781, + "256000000" + ], + [ + 1699438548.781, + "256000000" + ], + [ + 1699438549.781, + "256000000" + ], + [ + 1699438550.781, + "257600000" + ], + [ + 1699438551.781, + "257600000" + ], + [ + 1699438552.781, + "257600000" + ], + [ + 1699438553.781, + "257600000" + ], + [ + 1699438554.781, + "257600000" + ], + [ + 1699438555.781, + "257600000" + ], + [ + 1699438556.781, + "257600000" + ], + [ + 1699438557.781, + "257600000" + ], + [ + 1699438558.781, + "257600000" + ], + [ + 1699438559.781, + "257600000" + ], + [ + 1699438560.781, + "257600000" + ], + [ + 1699438561.781, + "257600000" + ], + [ + 1699438562.781, + "257600000" + ], + [ + 1699438563.781, + "257600000" + ], + [ + 1699438564.781, + "257600000" + ], + [ + 1699438565.781, + "257600000" + ], + [ + 1699438566.781, + "257600000" + ], + [ + 1699438567.781, + "257600000" + ], + [ + 1699438568.781, + "257600000" + ], + [ + 1699438569.781, + "257600000" + ], + [ + 1699438570.781, + "257600000" + ], + [ + 1699438571.781, + "257600000" + ], + [ + 1699438572.781, + "257600000" + ], + [ + 1699438573.781, + "257600000" + ], + [ + 1699438574.781, + "257600000" + ], + [ + 1699438575.781, + "257600000" + ], + [ + 1699438576.781, + "257600000" + ], + [ + 1699438577.781, + "257600000" + ], + [ + 1699438578.781, + "257600000" + ], + [ + 1699438579.781, + "257600000" + ], + [ + 1699438580.781, + "257600000" + ], + [ + 1699438581.781, + "257600000" + ], + [ + 1699438582.781, + "257600000" + ], + [ + 1699438583.781, + "257600000" + ], + [ + 1699438584.781, + "257600000" + ], + [ + 1699438585.781, + "257600000" + ], + [ + 1699438586.781, + "257600000" + ], + [ + 1699438587.781, + "257600000" + ], + [ + 1699438588.781, + "257600000" + ], + [ + 1699438589.781, + "257600000" + ], + [ + 1699438590.781, + "257600000" + ], + [ + 1699438591.781, + "257600000" + ], + [ + 1699438592.781, + "257600000" + ], + [ + 1699438593.781, + "257600000" + ], + [ + 1699438594.781, + "257600000" + ], + [ + 1699438595.781, + "257600000" + ], + [ + 1699438596.781, + "257600000" + ], + [ + 1699438597.781, + "257600000" + ], + [ + 1699438598.781, + "257600000" + ], + [ + 1699438599.781, + "257600000" + ], + [ + 1699438600.781, + "257600000" + ], + [ + 1699438601.781, + "257600000" + ], + [ + 1699438602.781, + "257600000" + ], + [ + 1699438603.781, + "257600000" + ], + [ + 1699438604.781, + "257600000" + ], + [ + 1699438605.781, + "257600000" + ], + [ + 1699438606.781, + "257600000" + ], + [ + 1699438607.781, + "257600000" + ], + [ + 1699438608.781, + "257600000" + ], + [ + 1699438609.781, + "257600000" + ], + [ + 1699438610.781, + "259000000" + ], + [ + 1699438611.781, + "259000000" + ], + [ + 1699438612.781, + "259000000" + ], + [ + 1699438613.781, + "259000000" + ], + [ + 1699438614.781, + "259000000" + ], + [ + 1699438615.781, + "259000000" + ], + [ + 1699438616.781, + "259000000" + ], + [ + 1699438617.781, + "259000000" + ], + [ + 1699438618.781, + "259000000" + ], + [ + 1699438619.781, + "259000000" + ], + [ + 1699438620.781, + "259000000" + ], + [ + 1699438621.781, + "259000000" + ], + [ + 1699438622.781, + "259000000" + ], + [ + 1699438623.781, + "259000000" + ], + [ + 1699438624.781, + "259000000" + ], + [ + 1699438625.781, + "259000000" + ], + [ + 1699438626.781, + "259000000" + ], + [ + 1699438627.781, + "259000000" + ], + [ + 1699438628.781, + "259000000" + ], + [ + 1699438629.781, + "259000000" + ], + [ + 1699438630.781, + "259000000" + ], + [ + 1699438631.781, + "259000000" + ], + [ + 1699438632.781, + "259000000" + ], + [ + 1699438633.781, + "259000000" + ], + [ + 1699438634.781, + "259000000" + ], + [ + 1699438635.781, + "259000000" + ], + [ + 1699438636.781, + "259000000" + ], + [ + 1699438637.781, + "259000000" + ], + [ + 1699438638.781, + "259000000" + ], + [ + 1699438639.781, + "259000000" + ], + [ + 1699438640.781, + "259000000" + ], + [ + 1699438641.781, + "259000000" + ], + [ + 1699438642.781, + "259000000" + ], + [ + 1699438643.781, + "259000000" + ], + [ + 1699438644.781, + "259000000" + ], + [ + 1699438645.781, + "259000000" + ], + [ + 1699438646.781, + "259000000" + ], + [ + 1699438647.781, + "259000000" + ], + [ + 1699438648.781, + "259000000" + ], + [ + 1699438649.781, + "259000000" + ], + [ + 1699438650.781, + "259000000" + ], + [ + 1699438651.781, + "259000000" + ], + [ + 1699438652.781, + "259000000" + ], + [ + 1699438653.781, + "259000000" + ], + [ + 1699438654.781, + "259000000" + ], + [ + 1699438655.781, + "259000000" + ], + [ + 1699438656.781, + "259000000" + ], + [ + 1699438657.781, + "259000000" + ], + [ + 1699438658.781, + "259000000" + ], + [ + 1699438659.781, + "259000000" + ], + [ + 1699438660.781, + "259000000" + ], + [ + 1699438661.781, + "259000000" + ], + [ + 1699438662.781, + "259000000" + ], + [ + 1699438663.781, + "259000000" + ], + [ + 1699438664.781, + "259000000" + ], + [ + 1699438665.781, + "259000000" + ], + [ + 1699438666.781, + "259000000" + ], + [ + 1699438667.781, + "259000000" + ], + [ + 1699438668.781, + "259000000" + ], + [ + 1699438669.781, + "259000000" + ], + [ + 1699438670.781, + "260000000" + ], + [ + 1699438671.781, + "260000000" + ], + [ + 1699438672.781, + "260000000" + ], + [ + 1699438673.781, + "260000000" + ], + [ + 1699438674.781, + "260000000" + ], + [ + 1699438675.781, + "260000000" + ], + [ + 1699438676.781, + "260000000" + ], + [ + 1699438677.781, + "260000000" + ], + [ + 1699438678.781, + "260000000" + ], + [ + 1699438679.781, + "260000000" + ], + [ + 1699438680.781, + "260000000" + ], + [ + 1699438681.781, + "260000000" + ], + [ + 1699438682.781, + "260000000" + ], + [ + 1699438683.781, + "260000000" + ], + [ + 1699438684.781, + "260000000" + ], + [ + 1699438685.781, + "260000000" + ], + [ + 1699438686.781, + "260000000" + ], + [ + 1699438687.781, + "260000000" + ], + [ + 1699438688.781, + "260000000" + ], + [ + 1699438689.781, + "260000000" + ], + [ + 1699438690.781, + "260000000" + ], + [ + 1699438691.781, + "260000000" + ], + [ + 1699438692.781, + "260000000" + ], + [ + 1699438693.781, + "260000000" + ], + [ + 1699438694.781, + "260000000" + ], + [ + 1699438695.781, + "260000000" + ], + [ + 1699438696.781, + "260000000" + ], + [ + 1699438697.781, + "260000000" + ], + [ + 1699438698.781, + "260000000" + ], + [ + 1699438699.781, + "260000000" + ], + [ + 1699438700.781, + "260000000" + ], + [ + 1699438701.781, + "260000000" + ], + [ + 1699438702.781, + "260000000" + ], + [ + 1699438703.781, + "260000000" + ], + [ + 1699438704.781, + "260000000" + ], + [ + 1699438705.781, + "260000000" + ], + [ + 1699438706.781, + "260000000" + ], + [ + 1699438707.781, + "260000000" + ], + [ + 1699438708.781, + "260000000" + ], + [ + 1699438709.781, + "260000000" + ], + [ + 1699438710.781, + "260000000" + ], + [ + 1699438711.781, + "260000000" + ], + [ + 1699438712.781, + "260000000" + ], + [ + 1699438713.781, + "260000000" + ], + [ + 1699438714.781, + "260000000" + ], + [ + 1699438715.781, + "260000000" + ], + [ + 1699438716.781, + "260000000" + ], + [ + 1699438717.781, + "260000000" + ], + [ + 1699438718.781, + "260000000" + ], + [ + 1699438719.781, + "260000000" + ], + [ + 1699438720.781, + "260000000" + ], + [ + 1699438721.781, + "260000000" + ], + [ + 1699438722.781, + "260000000" + ], + [ + 1699438723.781, + "260000000" + ], + [ + 1699438724.781, + "260000000" + ], + [ + 1699438725.781, + "260000000" + ], + [ + 1699438726.781, + "260000000" + ], + [ + 1699438727.781, + "260000000" + ], + [ + 1699438728.781, + "260000000" + ], + [ + 1699438729.781, + "260000000" + ], + [ + 1699438730.781, + "261400000" + ], + [ + 1699438731.781, + "261400000" + ], + [ + 1699438732.781, + "261400000" + ], + [ + 1699438733.781, + "261400000" + ], + [ + 1699438734.781, + "261400000" + ], + [ + 1699438735.781, + "261400000" + ], + [ + 1699438736.781, + "261400000" + ], + [ + 1699438737.781, + "261400000" + ], + [ + 1699438738.781, + "261400000" + ], + [ + 1699438739.781, + "261400000" + ], + [ + 1699438740.781, + "261400000" + ], + [ + 1699438741.781, + "261400000" + ], + [ + 1699438742.781, + "261400000" + ], + [ + 1699438743.781, + "261400000" + ], + [ + 1699438744.781, + "261400000" + ], + [ + 1699438745.781, + "261400000" + ], + [ + 1699438746.781, + "261400000" + ], + [ + 1699438747.781, + "261400000" + ], + [ + 1699438748.781, + "261400000" + ], + [ + 1699438749.781, + "261400000" + ], + [ + 1699438750.781, + "261400000" + ], + [ + 1699438751.781, + "261400000" + ], + [ + 1699438752.781, + "261400000" + ], + [ + 1699438753.781, + "261400000" + ], + [ + 1699438754.781, + "261400000" + ], + [ + 1699438755.781, + "261400000" + ], + [ + 1699438756.781, + "261400000" + ], + [ + 1699438757.781, + "261400000" + ], + [ + 1699438758.781, + "261400000" + ], + [ + 1699438759.781, + "261400000" + ], + [ + 1699438760.781, + "261400000" + ], + [ + 1699438761.781, + "261400000" + ], + [ + 1699438762.781, + "261400000" + ], + [ + 1699438763.781, + "261400000" + ], + [ + 1699438764.781, + "261400000" + ], + [ + 1699438765.781, + "261400000" + ], + [ + 1699438766.781, + "261400000" + ], + [ + 1699438767.781, + "261400000" + ], + [ + 1699438768.781, + "261400000" + ], + [ + 1699438769.781, + "261400000" + ], + [ + 1699438770.781, + "261400000" + ], + [ + 1699438771.781, + "261400000" + ], + [ + 1699438772.781, + "261400000" + ], + [ + 1699438773.781, + "261400000" + ], + [ + 1699438774.781, + "261400000" + ], + [ + 1699438775.781, + "261400000" + ], + [ + 1699438776.781, + "261400000" + ], + [ + 1699438777.781, + "261400000" + ], + [ + 1699438778.781, + "261400000" + ], + [ + 1699438779.781, + "261400000" + ], + [ + 1699438780.781, + "261400000" + ], + [ + 1699438781.781, + "261400000" + ], + [ + 1699438782.781, + "261400000" + ], + [ + 1699438783.781, + "261400000" + ], + [ + 1699438784.781, + "261400000" + ], + [ + 1699438785.781, + "261400000" + ], + [ + 1699438786.781, + "261400000" + ], + [ + 1699438787.781, + "261400000" + ], + [ + 1699438788.781, + "261400000" + ], + [ + 1699438789.781, + "261400000" + ], + [ + 1699438790.781, + "262400000" + ], + [ + 1699438791.781, + "262400000" + ], + [ + 1699438792.781, + "262400000" + ], + [ + 1699438793.781, + "262400000" + ], + [ + 1699438794.781, + "262400000" + ], + [ + 1699438795.781, + "262400000" + ], + [ + 1699438796.781, + "262400000" + ], + [ + 1699438797.781, + "262400000" + ], + [ + 1699438798.781, + "262400000" + ], + [ + 1699438799.781, + "262400000" + ], + [ + 1699438800.781, + "262400000" + ], + [ + 1699438801.781, + "262400000" + ], + [ + 1699438802.781, + "262400000" + ], + [ + 1699438803.781, + "262400000" + ], + [ + 1699438804.781, + "262400000" + ], + [ + 1699438805.781, + "262400000" + ], + [ + 1699438806.781, + "262400000" + ], + [ + 1699438807.781, + "262400000" + ], + [ + 1699438808.781, + "262400000" + ], + [ + 1699438809.781, + "262400000" + ], + [ + 1699438810.781, + "262400000" + ], + [ + 1699438811.781, + "262400000" + ], + [ + 1699438812.781, + "262400000" + ], + [ + 1699438813.781, + "262400000" + ], + [ + 1699438814.781, + "262400000" + ], + [ + 1699438815.781, + "262400000" + ], + [ + 1699438816.781, + "262400000" + ], + [ + 1699438817.781, + "262400000" + ], + [ + 1699438818.781, + "262400000" + ], + [ + 1699438819.781, + "262400000" + ], + [ + 1699438820.781, + "262400000" + ], + [ + 1699438821.781, + "262400000" + ], + [ + 1699438822.781, + "262400000" + ], + [ + 1699438823.781, + "262400000" + ], + [ + 1699438824.781, + "262400000" + ], + [ + 1699438825.781, + "262400000" + ], + [ + 1699438826.781, + "262400000" + ], + [ + 1699438827.781, + "262400000" + ], + [ + 1699438828.781, + "262400000" + ], + [ + 1699438829.781, + "262400000" + ], + [ + 1699438830.781, + "262400000" + ], + [ + 1699438831.781, + "262400000" + ], + [ + 1699438832.781, + "262400000" + ], + [ + 1699438833.781, + "262400000" + ], + [ + 1699438834.781, + "262400000" + ], + [ + 1699438835.781, + "262400000" + ], + [ + 1699438836.781, + "262400000" + ], + [ + 1699438837.781, + "262400000" + ], + [ + 1699438838.781, + "262400000" + ], + [ + 1699438839.781, + "262400000" + ], + [ + 1699438840.781, + "262400000" + ], + [ + 1699438841.781, + "262400000" + ], + [ + 1699438842.781, + "262400000" + ], + [ + 1699438843.781, + "262400000" + ], + [ + 1699438844.781, + "262400000" + ], + [ + 1699438845.781, + "262400000" + ], + [ + 1699438846.781, + "262400000" + ], + [ + 1699438847.781, + "262400000" + ], + [ + 1699438848.781, + "262400000" + ], + [ + 1699438849.781, + "262400000" + ], + [ + 1699438850.781, + "263200000" + ], + [ + 1699438851.781, + "263200000" + ], + [ + 1699438852.781, + "263200000" + ], + [ + 1699438853.781, + "263200000" + ], + [ + 1699438854.781, + "263200000" + ], + [ + 1699438855.781, + "263200000" + ], + [ + 1699438856.781, + "263200000" + ], + [ + 1699438857.781, + "263200000" + ], + [ + 1699438858.781, + "263200000" + ], + [ + 1699438859.781, + "263200000" + ], + [ + 1699438860.781, + "263200000" + ], + [ + 1699438861.781, + "263200000" + ], + [ + 1699438862.781, + "263200000" + ], + [ + 1699438863.781, + "263200000" + ], + [ + 1699438864.781, + "263200000" + ], + [ + 1699438865.781, + "263200000" + ], + [ + 1699438866.781, + "263200000" + ], + [ + 1699438867.781, + "263200000" + ], + [ + 1699438868.781, + "263200000" + ], + [ + 1699438869.781, + "263200000" + ], + [ + 1699438870.781, + "263200000" + ], + [ + 1699438871.781, + "263200000" + ], + [ + 1699438872.781, + "263200000" + ], + [ + 1699438873.781, + "263200000" + ], + [ + 1699438874.781, + "263200000" + ], + [ + 1699438875.781, + "263200000" + ], + [ + 1699438876.781, + "263200000" + ], + [ + 1699438877.781, + "263200000" + ], + [ + 1699438878.781, + "263200000" + ], + [ + 1699438879.781, + "263200000" + ], + [ + 1699438880.781, + "263200000" + ], + [ + 1699438881.781, + "263200000" + ], + [ + 1699438882.781, + "263200000" + ], + [ + 1699438883.781, + "263200000" + ], + [ + 1699438884.781, + "263200000" + ], + [ + 1699438885.781, + "263200000" + ], + [ + 1699438886.781, + "263200000" + ], + [ + 1699438887.781, + "263200000" + ], + [ + 1699438888.781, + "263200000" + ], + [ + 1699438889.781, + "263200000" + ], + [ + 1699438890.781, + "263200000" + ], + [ + 1699438891.781, + "263200000" + ], + [ + 1699438892.781, + "263200000" + ], + [ + 1699438893.781, + "263200000" + ], + [ + 1699438894.781, + "263200000" + ], + [ + 1699438895.781, + "263200000" + ], + [ + 1699438896.781, + "263200000" + ], + [ + 1699438897.781, + "263200000" + ], + [ + 1699438898.781, + "263200000" + ], + [ + 1699438899.781, + "263200000" + ], + [ + 1699438900.781, + "263200000" + ], + [ + 1699438901.781, + "263200000" + ], + [ + 1699438902.781, + "263200000" + ], + [ + 1699438903.781, + "263200000" + ], + [ + 1699438904.781, + "263200000" + ], + [ + 1699438905.781, + "263200000" + ], + [ + 1699438906.781, + "263200000" + ], + [ + 1699438907.781, + "263200000" + ], + [ + 1699438908.781, + "263200000" + ], + [ + 1699438909.781, + "263200000" + ], + [ + 1699438910.781, + "264400000" + ], + [ + 1699438911.781, + "264400000" + ], + [ + 1699438912.781, + "264400000" + ], + [ + 1699438913.781, + "264400000" + ], + [ + 1699438914.781, + "264400000" + ], + [ + 1699438915.781, + "264400000" + ], + [ + 1699438916.781, + "264400000" + ], + [ + 1699438917.781, + "264400000" + ], + [ + 1699438918.781, + "264400000" + ], + [ + 1699438919.781, + "264400000" + ], + [ + 1699438920.781, + "264400000" + ], + [ + 1699438921.781, + "264400000" + ], + [ + 1699438922.781, + "264400000" + ], + [ + 1699438923.781, + "264400000" + ], + [ + 1699438924.781, + "264400000" + ], + [ + 1699438925.781, + "264400000" + ], + [ + 1699438926.781, + "264400000" + ], + [ + 1699438927.781, + "264400000" + ], + [ + 1699438928.781, + "264400000" + ], + [ + 1699438929.781, + "264400000" + ], + [ + 1699438930.781, + "264400000" + ], + [ + 1699438931.781, + "264400000" + ], + [ + 1699438932.781, + "264400000" + ], + [ + 1699438933.781, + "264400000" + ], + [ + 1699438934.781, + "264400000" + ], + [ + 1699438935.781, + "264400000" + ], + [ + 1699438936.781, + "264400000" + ], + [ + 1699438937.781, + "264400000" + ], + [ + 1699438938.781, + "264400000" + ], + [ + 1699438939.781, + "264400000" + ], + [ + 1699438940.781, + "264400000" + ], + [ + 1699438941.781, + "264400000" + ], + [ + 1699438942.781, + "264400000" + ], + [ + 1699438943.781, + "264400000" + ], + [ + 1699438944.781, + "264400000" + ], + [ + 1699438945.781, + "264400000" + ], + [ + 1699438946.781, + "264400000" + ], + [ + 1699438947.781, + "264400000" + ], + [ + 1699438948.781, + "264400000" + ], + [ + 1699438949.781, + "264400000" + ], + [ + 1699438950.781, + "264400000" + ], + [ + 1699438951.781, + "264400000" + ], + [ + 1699438952.781, + "264400000" + ], + [ + 1699438953.781, + "264400000" + ], + [ + 1699438954.781, + "264400000" + ], + [ + 1699438955.781, + "264400000" + ], + [ + 1699438956.781, + "264400000" + ], + [ + 1699438957.781, + "264400000" + ], + [ + 1699438958.781, + "264400000" + ], + [ + 1699438959.781, + "264400000" + ], + [ + 1699438960.781, + "264400000" + ], + [ + 1699438961.781, + "264400000" + ], + [ + 1699438962.781, + "264400000" + ], + [ + 1699438963.781, + "264400000" + ], + [ + 1699438964.781, + "264400000" + ], + [ + 1699438965.781, + "264400000" + ], + [ + 1699438966.781, + "264400000" + ], + [ + 1699438967.781, + "264400000" + ], + [ + 1699438968.781, + "264400000" + ], + [ + 1699438969.781, + "264400000" + ], + [ + 1699438970.781, + "265000000" + ], + [ + 1699438971.781, + "265000000" + ], + [ + 1699438972.781, + "265000000" + ], + [ + 1699438973.781, + "265000000" + ], + [ + 1699438974.781, + "265000000" + ], + [ + 1699438975.781, + "265000000" + ], + [ + 1699438976.781, + "265000000" + ], + [ + 1699438977.781, + "265000000" + ], + [ + 1699438978.781, + "265000000" + ], + [ + 1699438979.781, + "265000000" + ], + [ + 1699438980.781, + "265000000" + ], + [ + 1699438981.781, + "265000000" + ], + [ + 1699438982.781, + "265000000" + ], + [ + 1699438983.781, + "265000000" + ], + [ + 1699438984.781, + "265000000" + ], + [ + 1699438985.781, + "265000000" + ], + [ + 1699438986.781, + "265000000" + ], + [ + 1699438987.781, + "265000000" + ], + [ + 1699438988.781, + "265000000" + ], + [ + 1699438989.781, + "265000000" + ], + [ + 1699438990.781, + "265000000" + ], + [ + 1699438991.781, + "265000000" + ], + [ + 1699438992.781, + "265000000" + ], + [ + 1699438993.781, + "265000000" + ], + [ + 1699438994.781, + "265000000" + ], + [ + 1699438995.781, + "265000000" + ], + [ + 1699438996.781, + "265000000" + ], + [ + 1699438997.781, + "265000000" + ], + [ + 1699438998.781, + "265000000" + ], + [ + 1699438999.781, + "265000000" + ], + [ + 1699439000.781, + "265000000" + ], + [ + 1699439001.781, + "265000000" + ], + [ + 1699439002.781, + "265000000" + ], + [ + 1699439003.781, + "265000000" + ], + [ + 1699439004.781, + "265000000" + ], + [ + 1699439005.781, + "265000000" + ], + [ + 1699439006.781, + "265000000" + ], + [ + 1699439007.781, + "265000000" + ], + [ + 1699439008.781, + "265000000" + ], + [ + 1699439009.781, + "265000000" + ], + [ + 1699439010.781, + "265000000" + ], + [ + 1699439011.781, + "265000000" + ], + [ + 1699439012.781, + "265000000" + ], + [ + 1699439013.781, + "265000000" + ], + [ + 1699439014.781, + "265000000" + ], + [ + 1699439015.781, + "265000000" + ], + [ + 1699439016.781, + "265000000" + ], + [ + 1699439017.781, + "265000000" + ], + [ + 1699439018.781, + "265000000" + ], + [ + 1699439019.781, + "265000000" + ], + [ + 1699439020.781, + "265000000" + ], + [ + 1699439021.781, + "265000000" + ], + [ + 1699439022.781, + "265000000" + ], + [ + 1699439023.781, + "265000000" + ], + [ + 1699439024.781, + "265000000" + ], + [ + 1699439025.781, + "265000000" + ], + [ + 1699439026.781, + "265000000" + ], + [ + 1699439027.781, + "265000000" + ], + [ + 1699439028.781, + "265000000" + ], + [ + 1699439029.781, + "265000000" + ], + [ + 1699439030.781, + "265800000" + ], + [ + 1699439031.781, + "265800000" + ], + [ + 1699439032.781, + "265800000" + ], + [ + 1699439033.781, + "265800000" + ], + [ + 1699439034.781, + "265800000" + ], + [ + 1699439035.781, + "265800000" + ], + [ + 1699439036.781, + "265800000" + ], + [ + 1699439037.781, + "265800000" + ], + [ + 1699439038.781, + "265800000" + ], + [ + 1699439039.781, + "265800000" + ], + [ + 1699439040.781, + "265800000" + ], + [ + 1699439041.781, + "265800000" + ], + [ + 1699439042.781, + "265800000" + ], + [ + 1699439043.781, + "265800000" + ], + [ + 1699439044.781, + "265800000" + ], + [ + 1699439045.781, + "265800000" + ], + [ + 1699439046.781, + "265800000" + ], + [ + 1699439047.781, + "265800000" + ], + [ + 1699439048.781, + "265800000" + ], + [ + 1699439049.781, + "265800000" + ], + [ + 1699439050.781, + "265800000" + ], + [ + 1699439051.781, + "265800000" + ], + [ + 1699439052.781, + "265800000" + ], + [ + 1699439053.781, + "265800000" + ], + [ + 1699439054.781, + "265800000" + ], + [ + 1699439055.781, + "265800000" + ], + [ + 1699439056.781, + "265800000" + ], + [ + 1699439057.781, + "265800000" + ], + [ + 1699439058.781, + "265800000" + ], + [ + 1699439059.781, + "265800000" + ], + [ + 1699439060.781, + "265800000" + ], + [ + 1699439061.781, + "265800000" + ], + [ + 1699439062.781, + "265800000" + ], + [ + 1699439063.781, + "265800000" + ], + [ + 1699439064.781, + "265800000" + ], + [ + 1699439065.781, + "265800000" + ], + [ + 1699439066.781, + "265800000" + ], + [ + 1699439067.781, + "265800000" + ], + [ + 1699439068.781, + "265800000" + ], + [ + 1699439069.781, + "265800000" + ], + [ + 1699439070.781, + "265800000" + ], + [ + 1699439071.781, + "265800000" + ], + [ + 1699439072.781, + "265800000" + ], + [ + 1699439073.781, + "265800000" + ], + [ + 1699439074.781, + "265800000" + ], + [ + 1699439075.781, + "265800000" + ], + [ + 1699439076.781, + "265800000" + ], + [ + 1699439077.781, + "265800000" + ], + [ + 1699439078.781, + "265800000" + ], + [ + 1699439079.781, + "265800000" + ], + [ + 1699439080.781, + "265800000" + ], + [ + 1699439081.781, + "265800000" + ], + [ + 1699439082.781, + "265800000" + ], + [ + 1699439083.781, + "265800000" + ], + [ + 1699439084.781, + "265800000" + ], + [ + 1699439085.781, + "265800000" + ], + [ + 1699439086.781, + "265800000" + ], + [ + 1699439087.781, + "265800000" + ], + [ + 1699439088.781, + "265800000" + ], + [ + 1699439089.781, + "265800000" + ], + [ + 1699439090.781, + "266600000" + ], + [ + 1699439091.781, + "266600000" + ], + [ + 1699439092.781, + "266600000" + ], + [ + 1699439093.781, + "266600000" + ], + [ + 1699439094.781, + "266600000" + ], + [ + 1699439095.781, + "266600000" + ], + [ + 1699439096.781, + "266600000" + ], + [ + 1699439097.781, + "266600000" + ], + [ + 1699439098.781, + "266600000" + ], + [ + 1699439099.781, + "266600000" + ], + [ + 1699439100.781, + "266600000" + ], + [ + 1699439101.781, + "266600000" + ], + [ + 1699439102.781, + "266600000" + ], + [ + 1699439103.781, + "266600000" + ], + [ + 1699439104.781, + "266600000" + ], + [ + 1699439105.781, + "266600000" + ], + [ + 1699439106.781, + "266600000" + ], + [ + 1699439107.781, + "266600000" + ], + [ + 1699439108.781, + "266600000" + ], + [ + 1699439109.781, + "266600000" + ], + [ + 1699439110.781, + "266600000" + ], + [ + 1699439111.781, + "266600000" + ], + [ + 1699439112.781, + "266600000" + ], + [ + 1699439113.781, + "266600000" + ], + [ + 1699439114.781, + "266600000" + ], + [ + 1699439115.781, + "266600000" + ], + [ + 1699439116.781, + "266600000" + ], + [ + 1699439117.781, + "266600000" + ], + [ + 1699439118.781, + "266600000" + ], + [ + 1699439119.781, + "266600000" + ], + [ + 1699439120.781, + "266600000" + ], + [ + 1699439121.781, + "266600000" + ], + [ + 1699439122.781, + "266600000" + ], + [ + 1699439123.781, + "266600000" + ], + [ + 1699439124.781, + "266600000" + ], + [ + 1699439125.781, + "266600000" + ], + [ + 1699439126.781, + "266600000" + ], + [ + 1699439127.781, + "266600000" + ], + [ + 1699439128.781, + "266600000" + ], + [ + 1699439129.781, + "266600000" + ], + [ + 1699439130.781, + "266600000" + ], + [ + 1699439131.781, + "266600000" + ], + [ + 1699439132.781, + "266600000" + ], + [ + 1699439133.781, + "266600000" + ], + [ + 1699439134.781, + "266600000" + ], + [ + 1699439135.781, + "266600000" + ], + [ + 1699439136.781, + "266600000" + ], + [ + 1699439137.781, + "266600000" + ], + [ + 1699439138.781, + "266600000" + ], + [ + 1699439139.781, + "266600000" + ], + [ + 1699439140.781, + "266600000" + ], + [ + 1699439141.781, + "266600000" + ], + [ + 1699439142.781, + "266600000" + ], + [ + 1699439143.781, + "266600000" + ], + [ + 1699439144.781, + "266600000" + ], + [ + 1699439145.781, + "266600000" + ], + [ + 1699439146.781, + "266600000" + ], + [ + 1699439147.781, + "266600000" + ], + [ + 1699439148.781, + "266600000" + ], + [ + 1699439149.781, + "266600000" + ], + [ + 1699439150.781, + "268200000" + ], + [ + 1699439151.781, + "268200000" + ], + [ + 1699439152.781, + "268200000" + ], + [ + 1699439153.781, + "268200000" + ], + [ + 1699439154.781, + "268200000" + ], + [ + 1699439155.781, + "268200000" + ], + [ + 1699439156.781, + "268200000" + ], + [ + 1699439157.781, + "268200000" + ], + [ + 1699439158.781, + "268200000" + ], + [ + 1699439159.781, + "268200000" + ], + [ + 1699439160.781, + "268200000" + ], + [ + 1699439161.781, + "268200000" + ], + [ + 1699439162.781, + "268200000" + ], + [ + 1699439163.781, + "268200000" + ], + [ + 1699439164.781, + "268200000" + ], + [ + 1699439165.781, + "268200000" + ], + [ + 1699439166.781, + "268200000" + ], + [ + 1699439167.781, + "268200000" + ], + [ + 1699439168.781, + "268200000" + ], + [ + 1699439169.781, + "268200000" + ], + [ + 1699439170.781, + "268200000" + ], + [ + 1699439171.781, + "268200000" + ], + [ + 1699439172.781, + "268200000" + ], + [ + 1699439173.781, + "268200000" + ], + [ + 1699439174.781, + "268200000" + ], + [ + 1699439175.781, + "268200000" + ], + [ + 1699439176.781, + "268200000" + ], + [ + 1699439177.781, + "268200000" + ], + [ + 1699439178.781, + "268200000" + ], + [ + 1699439179.781, + "268200000" + ], + [ + 1699439180.781, + "268200000" + ], + [ + 1699439181.781, + "268200000" + ], + [ + 1699439182.781, + "268200000" + ], + [ + 1699439183.781, + "268200000" + ], + [ + 1699439184.781, + "268200000" + ], + [ + 1699439185.781, + "268200000" + ], + [ + 1699439186.781, + "268200000" + ], + [ + 1699439187.781, + "268200000" + ], + [ + 1699439188.781, + "268200000" + ], + [ + 1699439189.781, + "268200000" + ], + [ + 1699439190.781, + "268200000" + ], + [ + 1699439191.781, + "268200000" + ], + [ + 1699439192.781, + "268200000" + ], + [ + 1699439193.781, + "268200000" + ], + [ + 1699439194.781, + "268200000" + ], + [ + 1699439195.781, + "268200000" + ], + [ + 1699439196.781, + "268200000" + ], + [ + 1699439197.781, + "268200000" + ], + [ + 1699439198.781, + "268200000" + ], + [ + 1699439199.781, + "268200000" + ], + [ + 1699439200.781, + "268200000" + ], + [ + 1699439201.781, + "268200000" + ], + [ + 1699439202.781, + "268200000" + ], + [ + 1699439203.781, + "268200000" + ], + [ + 1699439204.781, + "268200000" + ], + [ + 1699439205.781, + "268200000" + ], + [ + 1699439206.781, + "268200000" + ], + [ + 1699439207.781, + "268200000" + ], + [ + 1699439208.781, + "268200000" + ], + [ + 1699439209.781, + "268200000" + ], + [ + 1699439210.781, + "269600000" + ], + [ + 1699439211.781, + "269600000" + ], + [ + 1699439212.781, + "269600000" + ], + [ + 1699439213.781, + "269600000" + ], + [ + 1699439214.781, + "269600000" + ], + [ + 1699439215.781, + "269600000" + ], + [ + 1699439216.781, + "269600000" + ], + [ + 1699439217.781, + "269600000" + ], + [ + 1699439218.781, + "269600000" + ], + [ + 1699439219.781, + "269600000" + ], + [ + 1699439220.781, + "269600000" + ], + [ + 1699439221.781, + "269600000" + ], + [ + 1699439222.781, + "269600000" + ], + [ + 1699439223.781, + "269600000" + ], + [ + 1699439224.781, + "269600000" + ], + [ + 1699439225.781, + "269600000" + ], + [ + 1699439226.781, + "269600000" + ], + [ + 1699439227.781, + "269600000" + ], + [ + 1699439228.781, + "269600000" + ], + [ + 1699439229.781, + "269600000" + ], + [ + 1699439230.781, + "269600000" + ], + [ + 1699439231.781, + "269600000" + ], + [ + 1699439232.781, + "269600000" + ], + [ + 1699439233.781, + "269600000" + ], + [ + 1699439234.781, + "269600000" + ], + [ + 1699439235.781, + "269600000" + ], + [ + 1699439236.781, + "269600000" + ], + [ + 1699439237.781, + "269600000" + ], + [ + 1699439238.781, + "269600000" + ], + [ + 1699439239.781, + "269600000" + ], + [ + 1699439240.781, + "269600000" + ], + [ + 1699439241.781, + "269600000" + ], + [ + 1699439242.781, + "269600000" + ], + [ + 1699439243.781, + "269600000" + ], + [ + 1699439244.781, + "269600000" + ], + [ + 1699439245.781, + "269600000" + ], + [ + 1699439246.781, + "269600000" + ], + [ + 1699439247.781, + "269600000" + ], + [ + 1699439248.781, + "269600000" + ], + [ + 1699439249.781, + "269600000" + ], + [ + 1699439250.781, + "269600000" + ], + [ + 1699439251.781, + "269600000" + ], + [ + 1699439252.781, + "269600000" + ], + [ + 1699439253.781, + "269600000" + ], + [ + 1699439254.781, + "269600000" + ], + [ + 1699439255.781, + "269600000" + ], + [ + 1699439256.781, + "269600000" + ], + [ + 1699439257.781, + "269600000" + ], + [ + 1699439258.781, + "269600000" + ], + [ + 1699439259.781, + "269600000" + ], + [ + 1699439260.781, + "269600000" + ], + [ + 1699439261.781, + "269600000" + ], + [ + 1699439262.781, + "269600000" + ], + [ + 1699439263.781, + "269600000" + ], + [ + 1699439264.781, + "269600000" + ], + [ + 1699439265.781, + "269600000" + ], + [ + 1699439266.781, + "269600000" + ], + [ + 1699439267.781, + "269600000" + ], + [ + 1699439268.781, + "269600000" + ], + [ + 1699439269.781, + "269600000" + ], + [ + 1699439270.781, + "270600000" + ], + [ + 1699439271.781, + "270600000" + ], + [ + 1699439272.781, + "270600000" + ], + [ + 1699439273.781, + "270600000" + ], + [ + 1699439274.781, + "270600000" + ], + [ + 1699439275.781, + "270600000" + ], + [ + 1699439276.781, + "270600000" + ], + [ + 1699439277.781, + "270600000" + ], + [ + 1699439278.781, + "270600000" + ], + [ + 1699439279.781, + "270600000" + ], + [ + 1699439280.781, + "270600000" + ], + [ + 1699439281.781, + "270600000" + ], + [ + 1699439282.781, + "270600000" + ], + [ + 1699439283.781, + "270600000" + ], + [ + 1699439284.781, + "270600000" + ], + [ + 1699439285.781, + "270600000" + ], + [ + 1699439286.781, + "270600000" + ], + [ + 1699439287.781, + "270600000" + ], + [ + 1699439288.781, + "270600000" + ], + [ + 1699439289.781, + "270600000" + ], + [ + 1699439290.781, + "270600000" + ], + [ + 1699439291.781, + "270600000" + ], + [ + 1699439292.781, + "270600000" + ], + [ + 1699439293.781, + "270600000" + ], + [ + 1699439294.781, + "270600000" + ], + [ + 1699439295.781, + "270600000" + ], + [ + 1699439296.781, + "270600000" + ], + [ + 1699439297.781, + "270600000" + ], + [ + 1699439298.781, + "270600000" + ], + [ + 1699439299.781, + "270600000" + ], + [ + 1699439300.781, + "270600000" + ], + [ + 1699439301.781, + "270600000" + ], + [ + 1699439302.781, + "270600000" + ], + [ + 1699439303.781, + "270600000" + ], + [ + 1699439304.781, + "270600000" + ], + [ + 1699439305.781, + "270600000" + ], + [ + 1699439306.781, + "270600000" + ], + [ + 1699439307.781, + "270600000" + ], + [ + 1699439308.781, + "270600000" + ], + [ + 1699439309.781, + "270600000" + ], + [ + 1699439310.781, + "270600000" + ], + [ + 1699439311.781, + "270600000" + ], + [ + 1699439312.781, + "270600000" + ], + [ + 1699439313.781, + "270600000" + ], + [ + 1699439314.781, + "270600000" + ], + [ + 1699439315.781, + "270600000" + ], + [ + 1699439316.781, + "270600000" + ], + [ + 1699439317.781, + "270600000" + ], + [ + 1699439318.781, + "270600000" + ], + [ + 1699439319.781, + "270600000" + ], + [ + 1699439320.781, + "270600000" + ], + [ + 1699439321.781, + "270600000" + ], + [ + 1699439322.781, + "270600000" + ], + [ + 1699439323.781, + "270600000" + ], + [ + 1699439324.781, + "270600000" + ], + [ + 1699439325.781, + "270600000" + ], + [ + 1699439326.781, + "270600000" + ], + [ + 1699439327.781, + "270600000" + ], + [ + 1699439328.781, + "270600000" + ], + [ + 1699439329.781, + "270600000" + ], + [ + 1699439330.781, + "272000000" + ], + [ + 1699439331.781, + "272000000" + ], + [ + 1699439332.781, + "272000000" + ], + [ + 1699439333.781, + "272000000" + ], + [ + 1699439334.781, + "272000000" + ], + [ + 1699439335.781, + "272000000" + ], + [ + 1699439336.781, + "272000000" + ], + [ + 1699439337.781, + "272000000" + ], + [ + 1699439338.781, + "272000000" + ], + [ + 1699439339.781, + "272000000" + ], + [ + 1699439340.781, + "272000000" + ], + [ + 1699439341.781, + "272000000" + ], + [ + 1699439342.781, + "272000000" + ], + [ + 1699439343.781, + "272000000" + ], + [ + 1699439344.781, + "272000000" + ], + [ + 1699439345.781, + "272000000" + ], + [ + 1699439346.781, + "272000000" + ], + [ + 1699439347.781, + "272000000" + ], + [ + 1699439348.781, + "272000000" + ], + [ + 1699439349.781, + "272000000" + ], + [ + 1699439350.781, + "272000000" + ], + [ + 1699439351.781, + "272000000" + ], + [ + 1699439352.781, + "272000000" + ], + [ + 1699439353.781, + "272000000" + ], + [ + 1699439354.781, + "272000000" + ], + [ + 1699439355.781, + "272000000" + ], + [ + 1699439356.781, + "272000000" + ], + [ + 1699439357.781, + "272000000" + ], + [ + 1699439358.781, + "272000000" + ], + [ + 1699439359.781, + "272000000" + ], + [ + 1699439360.781, + "272000000" + ], + [ + 1699439361.781, + "272000000" + ], + [ + 1699439362.781, + "272000000" + ], + [ + 1699439363.781, + "272000000" + ], + [ + 1699439364.781, + "272000000" + ], + [ + 1699439365.781, + "272000000" + ], + [ + 1699439366.781, + "272000000" + ], + [ + 1699439367.781, + "272000000" + ], + [ + 1699439368.781, + "272000000" + ], + [ + 1699439369.781, + "272000000" + ], + [ + 1699439370.781, + "272000000" + ] +] +}